body {
  font-family: 'Poppins', sans-serif;
}

/* Container sits inline with your header items */
.sis-userbox{
  position: relative;
  display: inline-flex;
  align-items: center;
}

/* Round icon button */
.sis-userbtn{
  display:inline-flex; align-items:center; justify-content:center;
  width:0;
  height: auto;
  border-radius:100%; border:1px solid #e5e7eb; background:#fff;
  cursor:pointer;
  transition: box-shadow .2s ease, transform .06s ease, border-color .2s ease;
}
.sis-userbtn i{ font-size:16px; color:#222; line-height:1; }
.sis-userbtn:hover{ box-shadow:0 6px 16px rgba(8,60,113,.12); border-color:#d1d5db; background-color: #1FAB89;}
.sis-userbtn:active{ transform: translateY(1px); }

/* Dropdown */
.sis-userdropdown{
  position:absolute; right:0; top:calc(100% + 10px);
  min-width: 200px;
  background:#fff; border:1px solid #e5e7eb; border-radius:12px;
  box-shadow:0 14px 28px rgba(8,60,113,.12);
  padding:8px;
  display:none; /* toggled via JS */
  z-index: 1000;
}
.sis-userdropdown a{
  display:flex; align-items:center; gap:10px;
  padding:10px 12px; border-radius:10px; color:#0f172a; text-decoration:none;
  font-weight:600;
}
.sis-userdropdown a:hover{ background:#f3f4f6; color:#083c71; }

/* Tiny arrow */
.sis-userdropdown::before{
  content:""; position:absolute; right:12px; top:-8px;
  width:12px; height:12px; background:#fff; border-left:1px solid #e5e7eb; border-top:1px solid #e5e7eb;
  transform: rotate(45deg);
}

/* Mobile: smaller icon */
@media (max-width: 640px){
  .sis-userbtn{ width:34px; height:34px; }
  .sis-userbtn i{ font-size:16px; }
  .sis-userdropdown{ min-width: 170px; }
}


#myCustomScrollTop {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 9999;
    border: none;
    outline: none;
    background-color: #1FAB89;
    color: white;
    cursor: pointer;
    padding: 12px 16px;
    border-radius: 50%;
    font-size: 18px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

#myCustomScrollTop.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

#myCustomScrollTop:hover {
    background-color: #0a2842;
}

.header-nav ul,
.header-nav ol,
.header-nav li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.header-nav {
  left: 0;
  top: 0;
  width: 100%;
  z-index: 99999;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.container {
  max-width: 95%;
  margin: auto;
  padding: 0 15px;
}

.header-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-nav .logo img {
  vertical-align: middle;
}

.logo {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  height: 100%;
}

.logo a {
  display: inline-block;
  text-decoration: none;
}

.logo img {
  max-height: 50px; 
  height: auto;
  width: auto;
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
  opacity: 0.9;
}


.header-nav .menu .head {
  display: none;
}

.header-nav .menu ul {
  list-style: none;
}

.header-nav .menu > ul > li {
  display: inline-block;
}

.header-nav .menu > ul > li:not(:last-child) {
  margin-right: 30px;
}

.header-nav .menu .dropdown {
  position: relative;
}

.header-nav .menu a {
  text-decoration: none;
  text-transform: capitalize;
  font-size: 15px;
  color: #072E33;
  line-height: 1.5;
  display: block;

}

.header-nav .menu > ul > li > a {
  padding: 20px 0;
}

.header-nav .menu > ul > .dropdown > a {
  padding-right: 15px;
}

.header-nav .menu i {
  font-size: 10px;
  pointer-events: none;
  user-select: none;
  position: absolute;
  color: #072E33;
  top: calc(50% - 5px);
}

.header-nav .menu > ul > li > i {
  right: 0;
}

.header-nav .menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 200px;
  margin: 0;
  padding: 8px 0;
  list-style: none;
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(7, 46, 51, 0.2);
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  transform-origin: top;
  transform: scaleY(0);
  visibility: hidden;
  opacity: 0;
  transition: all 0.25s ease;
  z-index: 99;
}

.header-nav .menu .sub-menu-right {
  left: 100%;
  top: 0;
}

.header-nav .menu .sub-menu-left {
  left: auto;
  top: 0;
  right: 100%;
}

.header-nav .menu li:hover > .sub-menu {
  opacity: 1;
  transform: none;
  visibility: visible;
  transition: all 0.5s ease;
}

.header-nav .menu .sub-menu a {
  padding: 10px 14px;
}

.header-nav .menu .sub-menu .dropdown a {
  padding-right: 34px;
}

.header-nav .menu .sub-menu span {
  background-image: linear-gradient(to right, #0F969C, #0F7075);
  background-size: 0 1px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition: background-size 0.5s ease;
}

.header-nav .menu .sub-menu li:hover > a > span {
  background-size: 100% 1px;
}

.header-nav .menu .sub-menu i {
  transform: rotate(-90deg);
  right:24px;
}

.header-nav .menu li li.dropdown > i {
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
}

.header-right {
  display: flex;
}

.header-right > *{
  margin-left: 10px;
}

.header-right .icon-btn {
  background-color: transparent;
  border: none;
  cursor: pointer;
  color: #072E33;
  font-size: 16px;
}

.header-right .open-menu-btn {
  display: none;
}

.header-search-container {
  position: relative;
  display: flex;
  align-items: center;
}

.header-search-btn {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  z-index: 100;
  color: #333;
  box-shadow: none !important;
}

.header-search-input {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  opacity: 0;
  padding: 10px 15px;
  font-size: 14px;
  border: 1px solid #0F7075;
  border-radius: 10px !important;
  outline: none;
  transition: all 0.3s ease !important;
  background-color: #fff;
  color: #0F7075 !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15) !important;
  z-index: 10000;
  pointer-events: none;
}

.header-search-input.active {
  width: 250px;
  opacity: 1;
  pointer-events: auto;
}

.header-search-results {
  position: absolute;
  top: 100%;
  right: 60px;
  width: 260px;
  max-height: 320px;
  overflow-y: auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  display: none;
  z-index: 10000;
  animation: fadeIn 0.25s ease-in-out;
}

/* Each result item */
.header-search-result-item {
  padding: 10px 16px;
  transition: background-color 0.2s ease;
  cursor: pointer;
  font-size: 15px;
  line-height: 1.5;
  word-wrap: break-word;  
  white-space: normal; 
}

/* Link inside result */
.header-search-result-item a {
  color: #072E33;
  border-bottom: 1px solid #f9f9f9;
  text-decoration: none;
  display: block;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
   word-wrap: break-word;  
  white-space: normal;   
}

.header-search-result-item a.active {
  background-color: #f0f0f0;
  color: #000;
  padding: 8px;
  display: block;
}

/* Hover effect */
.header-search-result-item:hover {
  background-color: #f5f7fa;
}

/* No results message */
.no-results {
  padding: 10px 16px;
  color: #777;
  font-style: italic;
  font-size: 14px;
}

/* Optional fade-in animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.header-search-results::-webkit-scrollbar {
  width: 6px;
}
.header-search-results::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 3px;
}
.header-search-results::-webkit-scrollbar-track {
  background-color: transparent;
}

.header-search-results.active {
  display: block;
}

/* Tablet: <991px */
@media screen and (max-width: 991px) {
  .header-search-input.active {
    width: 200px;
  }

  .header-search-results {
    width: 200px;
  }
}

@media(max-width:991px) {
 
  .header-nav {
  position: relative; /* creates the positioning context */
  z-index: 1000; /* keep it above normal content but below ad if needed */
}


.header-nav .menu { 
    position: absolute; 
    top: 100%; 
    right: 0; 
    width: 320px; 
    background: linear-gradient(to bottom, #072E33, #0F7075); 
    padding: 20px; 
    overflow-y: auto; 
    z-index: 9999991; 
    color: #fff; 
    transition: transform 0.3s ease-in-out; 
    box-shadow: -4px 0 10px rgba(0, 0, 0, 0.3); 
}

.header-nav .menu {
    display: none;
}

  .header-nav .menu.open {
    display: block;
  }

  .header-nav .menu .head {
  display: flex;
  align-items: center;
  justify-content: flex-end; 
  margin-bottom: 25px;
  }

  .header-nav .menu .close-menu-btn {
    width: 35px;
    height: 35px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    cursor: pointer;
    border: none;
  }

  .header-nav .menu .close-menu-btn::before,
  .header-nav .menu .close-menu-btn::after {
    content: '';
    position: absolute;
    width: 80%;
    height: 2px;
    background-color: #f9f9f9;
  }

  .header-nav .menu .close-menu-btn::before {
    transform: rotate(45deg);
  }

  .header-nav .menu .close-menu-btn::after {
    transform: rotate(-45deg);
  }

  .header-nav .menu > ul >li {
    display: block;
  }

  .header-nav .menu > ul >li:not(:last-child) {
    margin-right: 0;
  }

  .header-nav .menu li {
    border-bottom: 1px solid #072E33;
  }

  .header-nav .menu li:first-child {
    border-top: 1px solid #072E33;
  }

  .header-nav .menu > ul > li > a {
    color: #fff;
    padding: 12px 0;
  }

  .header-nav .menu > ul > .dropdown > a {
    padding-right: 34px;
  }

  .header-nav .menu i {
    height: 34px;
    width: 34px;
    border: 1px solid #0F969C;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    pointer-events: auto;
    cursor: pointer;
    top: 7px;
    color: #0F969C;
  }
  
  .header-nav .menu .dropdown.active > i {
    top: 7px;
    transform: rotate(180deg);
  }

  .header-nav .menu .sub-menu {
  display: none; /* Default: hidden; show via JS */
  position: static;
  opacity: 1;
  transform: none;
  visibility: visible;
  padding-left: 15px;
  margin-top: 5px;
  border-left: 2px solid rgba(255, 255, 255, 0.2);
  transition: max-height 0.3s ease-in-out;
  box-shadow: none;
  width: 100%;
  background-color: rgba(7, 46, 51, 0.85); 
}

  .header-nav .menu .dropdown.active > .sub-menu {
    display: block;
  }

  .header-nav .menu .sub-menu li:last-child {
    border: none;
  }

  .header-nav .menu .sub-menu a {
    color: #fff;
    padding: 12px 0 12px 15px;
  }

  .header-nav .menu .sub-menu .sub-menu a {
    padding-left: 30px;
  }

  .header-nav .menu .sub-menu .sub-menu .sub-menu a {
    padding-left: 40px;
  }

  .header-nav .menu .sub-menu span {
    background-image: none;
  }

  .header-nav .menu .sub-menu i {
    transform: none;
    right: 0;
  }

  .header-right .open-menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 44px;
    cursor: pointer;
    position: relative;
    background-color: transparent; 
    border: none;
  }

  .header-right .open-menu-btn .line {
    height: 2px;
    width: 30px;
    background-color: #0F7075;
    position: absolute;
  }

  .header-right .open-menu-btn .line-1{
    transform: translateY(-8px);
  }
  .header-right .open-menu-btn .line-3{
    transform: translateY(8px);
  }
  .header-nav .menu .dropdown > i.fa-chevron-right,
  .header-nav .menu .dropdown > i.fa-chevron-left {
    top: 7px;
    transition: transform 0.3s ease;
  }
  
  .header-nav .menu .dropdown > i.fa-chevron-right {
    transform: rotate(90deg); /* right -> down */
  }

  .header-nav .menu .dropdown > i.fa-chevron-left {
    transform: rotate(-90deg); /* left -> down */
  }
}

.page-container {
  width: 100%;    
  display: flex;
  justify-content: center; /* centers content + sidebar */
  gap: 10px;
  margin: 0 10px;
}

.main-content {
    flex: 0 0 85%;   /* content takes 80% */
  max-width: 85%;
}

@media (max-width: 480px) {
    .page-container {
        margin: 0;
    }
    .main-content {
        flex: 1 1 90%;
        max-width: 90%;
        margin: 0 auto;
    }
}

.page-wrapper-block {
  display: block;
  width: 90%;
  margin: 0 auto;
  justify-content: flex-start;
}

.page-wrapper-flex {
  display: flex;
  flex: 0 0 90%;   /* content takes 80% */
  max-width: 90%;
  margin: 0 auto;
  gap: 30px;
  flex-wrap: nowrap;    
  align-items: stretch; 
}

.page-wrapper-flex-70 {
  display: flex;
  width: 70%;           
  margin: 0 auto;
  gap: 30px;
  flex-wrap: nowrap;    
  align-items: stretch;
}

.section-flex-full {
  display: flex;
  width: 100%;
  gap: 30px;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: flex-start;
  margin-bottom: 50px;
}

.wrapper-box {
  background-color: #ffffff;
  padding: 20px;
  margin: 20px auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.wrapper-box-90 { width: 90%; }

.col-50 {
    width: 50%;
}

.returns-bar-section {
    margin: 50px 0; 
}

.returns-bar-section h3 {
  margin-top: 20px;
  margin-bottom: 50px;
  font-size: 18px;
  color: #444;
}

.flex-15 { width: 15%; }
.flex-20 { width: 20%; }
.flex-30 { width: 30%; }
.flex-35 { width: 35%; } 
.flex-40 { width: 40%; }
.flex-50 { width: 50%; }
.flex-60 { width: 60%; }
.flex-70 { width: 70%; }
.flex-75 { width: 75%; }
.flex-80 { width: 80%; }


.wrapper-box h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.title {
    font-weight: 600;
    font-size: 32px;
    color: #072E33;
    margin: 30px 0;
}

.info-box {
  padding: 12px 0;
  border-bottom: 1px solid #ccc;
  margin-bottom: 20px;
}

.info-box p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}


@media (max-width: 480px) {
    .info-box {
        padding: 6px 10px;
        margin: 20px 0;
    }
}

.formula-box {
border: 1px solid #ccc;
padding: 20px;
width: fit-content;
margin: 20px auto;
background-color: #f9f9f9;
border-radius: 8px;
}

.faq-section {
  padding: 2rem;
  border-left: 4px solid #0C7075;
  max-width: 800px;
}

.faq-title {
  font-size: 28px;
  color: #0F969C;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #0C7075;
  display: inline-block;
  padding-bottom: 5px;
}

.faq-item {
  margin-bottom: 1.2rem;
  padding-left: 1rem;
  border-left: 3px solid #0F969C;
  transition: all 0.3s ease;
}

.faq-item h3 {
  font-weight: 600;
  font-size: 18px;
  color: #444;
  margin-bottom: 0.5rem;
}

.faq-item p {
  color: #333;
  font-size: 16px;
  line-height: 1.6;
}

.notes {
  font-size: 15px;
  line-height: 1.6;
  margin: 20px 0;
  padding: 15px 20px;
}

.notes h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #072E33;
  border-left: 4px solid #0C7075;
  padding-left: 10px;
}

.notes ul {
  list-style-type: disc;
  padding-left: 20px;
  margin: 0;
}

.notes li {
  margin-bottom: 10px;
  color: #222; 
}

.notes strong {
  color: #0C7075;
}

.site-footer {
  background-color: #f9f9f9;
  width: 100%;
  padding: 50px;
}

.footer-disclaimer {
  padding: 20px;
  font-size: 12px;
  color: #555;
  line-height: 1.6;
  border-bottom: 1px solid #e0e0e0;
}

.footer-middle {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 30px 20px;
  gap: 30px;
}

.footer-left span {
  font-weight: 500;
  font-size: 18px;
  padding-bottom: 20px;
}

.footer-left,
.footer-right {
  flex: 1 1 300px;
}

.footer-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.footer-bottom {
  text-align: center;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  font-size: 24px;
}

.footer-links ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 15px; 
}

.footer-links li {
  margin: 0; 
}

@media screen and (max-width: 768px) {
    .header-nav .container {
      width: 100%;
      padding: 10px;
      margin: 0 auto;
    }
    .header-nav .container .logo {
      justify-content: start;
      margin: 0;
      padding: 0;
    }
    .header-right {
    gap: 5px;
    }
    .header-right button {
      font-size: 16px;
      padding: 0;
    }

    .header-search-input.active {
      width: 220px;
      z-index: 10;
      right: 0;
    }

    .header-search-results {
      width: 220px;
      right: 0;
    }

    .page-wrapper-flex,
    .page-wrapper-block {
        width: 100%;
        padding: 0 10px;
        gap: 10px;  
        flex-direction: column;
        margin: 5px 0;
    }
    
    .flex-15,
    .flex-20,
    .flex-30,
    .flex-35,
    .flex-40,
    .flex-50,
    .flex-60,
    .flex-70,
    .flex-75,
    .flex-80 {
      width: 100%;
    }
    
    .section-flex-full {
      flex-direction: column;
      gap: 10px;
      padding: 0 10px;
    }
    
    .wrapper-box {
      padding: 10px;
    }
    
    .title {
        margin: 10px 0;
        font-size: 22px;
        padding: 12px;
    }
    
    .info-box {
        padding: 8px 12px;
        margin: 30px 0;
    }

    .info-box p {
        font-size: 14px;
    }
    
    .post-intro {
        font-size: 15px;
        padding: 12px 16px;
    }
    
    .table {
        font-size: 14px; 
    }

    .table td, .table th {
        padding: 8px; 
    }
    
    .site-footer {
      padding: 10px;
    }
    
    .footer-middle {
    flex-direction: column;
    gap: 20px;
   }
}

.sio-report-line { 
    text-align:center; 
    margin: 10px 15px; 
    color:#083c71; 
}
.sio-report-line a { 
    font-weight:500;
    color: #1FAB89;
    text-decoration:underline;
    letter-spacing: 1px;
}

.sio-modal { 
    position:fixed; 
    inset:0; 
    display:none; 
    z-index:9999; 
}
.sio-modal.active {
    display:block; 
}
.sio-modal-backdrop { 
    position:absolute; 
    inset:0; 
    background:rgba(0,0,0,.4); 
}
.sio-modal-card {
  position:relative;
  max-width:520px; 
  margin:8vh auto; 
  background:#fff; 
  border-radius:16px;
  padding:20px; 
  box-shadow:0 10px 30px rgba(0,0,0,.2);
}
.sio-close { 
    position:absolute; 
    top:8px; 
    right:12px; 
    border:0; 
    background:transparent; 
    font-size:28px; 
    cursor:pointer; 
}
.sio-label { 
    font-size:14px; 
    margin:10px 0 6px; 
    display:block; 
    color:#1a1d23; 
}
.sio-input, .sio-input:focus, .sio-input:active {
  width:100%; 
  padding:10px 12px; 
  border:1px solid #d6d6d6; 
  border-radius:10px; 
  outline:none; 
  height: 50px;
}
.sio-input:focus { 
    border-color:#083c71; 
    box-shadow:0 0 0 3px rgba(8,60,113,.12); 
}

.sio-btn {
  margin-top:12px; 
  width:100%; 
  padding:12px; 
  border:0; 
  border-radius:12px; 
  cursor:pointer;
  background:#083c71; 
  color:#fff; 
  font-weight:600;
}
.sio-btn:hover { filter:brightness(1.05); }
.sio-msg { margin-top:10px; font-size:14px; }
.sio-msg.ok { color:#1f7a1f; }
.sio-msg.err { color:#b00020; }

/* Generic ad container */
.ad-box {
  display: block;
  margin: 18px 0;
  text-align: center;   /* center the ad */
  line-height: 0;       /* remove extra vertical gap */
}

/* Inline content ad (inside article) */
.ad-inline {
  margin: 24px auto;
  max-width: 100%;
  width: 100%;
}

/* Sidebar ad (desktop) */
.ad-sidebar {
  flex: 0 0 300px; 
  width: 300px;     /* default sidebar width */
  max-width: 10%;
}

/* Large desktop slot */
.ad-large {
  width: 728px;
  max-width: 100%;
}

/* Small mobile banner */
.ad-mobile {
  width: 320px;
  max-width: 100%;
}

/* Control responsive behavior */
@media (min-width: 992px) {
  .ad-inline { max-width: 728px; }   /* desktop inline can be large */
}
@media (max-width: 767px) {
  .ad-sidebar { display: none; }     /* hide sidebar on small screens */
}

    /* ===== MockVest Slide 1 Styles ===== */
.mv-slide {
  --brand:#083c71;            /* your primary */
  --brand-2:#0a2842;          /* deep navy */
  --accent:#1FAB89;           /* green accent */
  --text:#ffffff;
  --panel: rgba(255,255,255,0.06);
  --chip: rgba(255,255,255,0.08);
  display:block;
  width:100%;
  border-radius:18px;
  text-decoration:none;
  color:var(--text);
  background: linear-gradient(135deg, #0d2f4f 0%, #0e3a5f 40%, #0a2842 70%, #092238 100%);
  /* subtle green sheen */
  position:relative;
  overflow:hidden;
  box-shadow: 0 10px 28px rgba(0,0,0,0.25);
  margin: 30px 0;
}

/* soft glow accent sweep */
.mv-slide::after{
  content:"";
  position:absolute; inset:-30%;
  background: radial-gradient(40% 40% at 80% 10%, rgba(31,171,137,0.35), transparent 60%),
              radial-gradient(30% 30% at 20% 90%, rgba(31,171,137,0.18), transparent 60%);
  pointer-events:none;
}

.mv-slide__inner{
  display:grid;
  grid-template-columns: 1.2fr 1fr;
  gap:28px;
  padding:28px;
}

.mv-slide__copy h2 {
    color: #f2f2f2;
    padding: 10px 0;
    font-size: clamp(15px, 1.8vw, 26px);
    font-weight: 500;
}

.mv-lead{
  margin:0 0 16px;
  font-size: clamp(14px, 1.4vw, 18px);
  line-height:1.55;
  color: rgba(255,255,255,0.92);
}

.mv-cta-row{
  display:flex; align-items:center; gap:12px; flex-wrap:wrap;
}

.mv-btn{
  display:inline-block;
  padding:12px 18px;
  border-radius:999px;
  background: linear-gradient(135deg, var(--accent), #19a27c);
  color:#062a24;
  font-weight:700;
  transition: transform .15s ease, box-shadow .15s ease;
  box-shadow: 0 6px 16px rgba(31,171,137,0.35);
}

.mv-link{
  font-weight:600;
  opacity:.9;
  border-bottom:1px dashed rgba(255,255,255,0.35);
  color: #fff;
}

.mv-slide:hover .mv-btn{ transform: translateY(-1px); }
.mv-slide:active .mv-btn{ transform: translateY(0); }

.mv-slide__viz{
  display:grid;
  grid-template-rows: auto 1fr;
  gap:16px;
}

.mv-card{
  background: var(--panel);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius:16px;
  padding:16px;
  backdrop-filter: blur(6px);
}

.mv-card h4 {
    color: #fff;
}

.mv-card--hero .mv-label{
  font-size:12px; text-transform:uppercase; letter-spacing:.12em;
  opacity:.8;
}
.mv-card--hero .mv-value{
  font-size: clamp(22px, 3vw, 32px);
  font-weight:800;
  margin-top:4px;
}
.mv-spread{
  display:flex; align-items:center; justify-content:space-between;
  margin-top:10px;
}
.mv-sub{ font-size:13px; opacity:.85; }
.mv-pos{ color:#7CFFB3; }

.mv-kpis{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:12px;
}
.mv-chip{
  background: var(--chip);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius:14px;
  padding:12px;
}
.mv-chip-label{ font-size:12px; opacity:.8; }
.mv-chip-val{ font-weight:700; margin-top:2px; }

@media (max-width: 860px){
  .mv-slide__inner{
    grid-template-columns: 1fr;
    gap:20px;
    padding:18px;
  }
  .mv-slide__viz{
    grid-template-rows: auto auto;
  }
}

@media (max-width: 420px){
  .mv-kpis{ grid-template-columns: 1fr; }
  .mv-btn{ padding:10px 14px; font-size:14px; }
}

.domain-sale-strip{
    background: linear-gradient(90deg, #083c71, #296CA5);
    padding: 10px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.sale-strip-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:16px;
}

.domain-sale-strip span{
    color:#fff;
    font-size:14px;
    font-weight:500;
}

.sale-strip-btn{
    background:#fff;
    color:#083c71;
    padding:8px 16px;
    border-radius:8px;
    text-decoration:none;
    font-size:13px;
    font-weight:600;
    transition:0.3s ease;
}

.sale-strip-btn:hover{
    transform:translateY(-1px);
    box-shadow:0 4px 10px rgba(0,0,0,0.15);
}