/* =====================================================
   MFNXT HERO
===================================================== */
.mfnxt-hero {
    position: relative;
    padding: clamp(20px, 6vw, 40px) 0;
    overflow: hidden;
    isolation: isolate;
    background: #fff;
  }
  
  .mfnxt-hero .container {
    position: relative;
    z-index: 2;
  }
  
  /* =====================================================
     BACKGROUND GLOWS
  ===================================================== */
  
  .hero-red-glow,
  .hero-blue-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: -2;
  }
  
  .hero-red-glow {
    width: 650px;
    height: 650px;
    top: -200px;
    left: -250px;
    background: rgba(227, 6, 21, 0.07);
  }
  
  .hero-blue-glow {
    width: 700px;
    height: 700px;
    top: -180px;
    right: -280px;
    background: rgba(0, 92, 200, 0.09);
  }
  
  /* =====================================================
     HERO CONTENT
  ===================================================== */
  
  .hero-content {
    position: relative;
    z-index: 5;
    max-width: 700px;
  }
  
  .hero-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 13px;
    margin-bottom: 24px;
    border: 1px solid rgba(0, 92, 200, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 5px 18px rgba(15, 23, 42, 0.035);
  }
  
  .hero-trust-badge::before {
    content: "";
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
    border-radius: 50%;
    background: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 92, 200, 0.08);
  }
  
  .hero-trust-badge span {
    color: var(--secondary-color);
    font-family: var(--third-font);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1.3;
    text-transform: uppercase;
  }
  
  /* =====================================================
     HERO TITLE
  ===================================================== */
  
  .hero-title {
    margin: 0 0 24px;
    color: var(--c-ink);
    font-family: var(--third-font);
    font-size: clamp(48px, 5.1vw, 76px);
    font-weight: 600;
    line-height: 0.97;
    letter-spacing: -3px;
  }
  
  .hero-title span {
    display: block;
  }
  
  .hero-title .blue {
    color: var(--primary-color);
  }
  
  .hero-title .black {
    color: var(--c-ink);
  }
  
  .hero-title .red {
    color: var(--secondary-color);
  }
  
  /* =====================================================
     HERO DESCRIPTION
  ===================================================== */
  
  .hero-description {
    max-width: 570px;
    margin: 0 0 18px;
    color: var(--c-slate);
    font-family: var(--third-font);
    font-size: clamp(16px, 1.2vw, 18px);
    line-height: 1.65;
  }
  
  .hero-description strong {
    color: var(--c-ink);
    font-weight: 700;
  }
  
  /* =====================================================
     AMFI BADGE
  ===================================================== */
  
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 9px 16px;
    border: 1px solid var(--c-line);
    border-radius: 9px;
    background: #fff;
    box-shadow: var(--shadow-sm);
  }
  
  .hero-badge .seal {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 43px;
    height: 43px;
    flex: 0 0 43px;
    border-radius: 50%;
    background: conic-gradient(
      from 220deg,
      var(--primary-color),
      var(--c-gold),
      var(--secondary-color),
      var(--primary-color)
    );
  }
  
  .hero-badge .seal i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #fff;
    color: var(--primary-color);
    font-family: var(--third-font);
    font-size: 14px;
    font-style: normal;
    font-weight: 800;
  }
  
  .hero-badge-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  
  .hero-badge-text strong {
    color: var(--c-ink);
    font-family: var(--third-font);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
  }
  
  .hero-badge-text span {
    color: var(--c-muted);
    font-family: var(--third-font);
    font-size: 11px;
    line-height: 1.3;
  }
  
  /* =====================================================
     HERO ACTIONS
  ===================================================== */
  .hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 21px;
  }
  
  .hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    text-decoration: none;
    font-family: var(--third-font);
    font-size: 14px;
    font-weight: 600;
    transition:
      transform 0.3s ease,
      box-shadow 0.3s ease,
      background 0.3s ease,
      border-color 0.3s ease;
  }
  
  .hero-btn i {
    font-size: 16px;
    transition: transform 0.3s ease;
  }
  
  .hero-btn-primary {
    color: #fff;
    background: linear-gradient(180deg, #f31c26 0%, var(--secondary-color) 100%);
    box-shadow: 0 12px 28px rgba(227, 6, 19, 0.23);
  }
  
  .hero-btn-primary:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 17px 35px rgba(227, 6, 19, 0.3);
  }
  
  .hero-btn-primary:hover i {
    transform: translateX(4px);
  }
  
  .hero-btn-outline {
    color: var(--c-ink);
    border: 1px solid var(--c-line);
    background: #fff;
    box-shadow: var(--shadow-sm);
  }
  
  .hero-btn-outline:hover {
    color: var(--primary-color);
    border-color: rgba(0, 92, 200, 0.22);
    background: var(--primary-color-soft);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
  }
  
  .hero-btn-outline:hover i {
    transform: translateX(4px);
  }
  
  /* =====================================================
     HERO VISUAL
  ===================================================== */
  
  .hero-visual {
    position: relative;
    width: 100%;
    min-height: 680px;
    display: flex;
    align-items: center;
    justify-content: center;
    isolation: isolate;
  }
  
  /* =====================================================
     CENTRAL GLOW
  ===================================================== */
  
  .hero-glow {
    position: absolute;
    width: 560px;
    height: 560px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(
      circle,
      rgba(0, 92, 200, 0.15) 0%,
      rgba(0, 92, 200, 0.055) 55%,
      transparent 74%
    );
    filter: blur(28px);
    z-index: -2;
    pointer-events: none;
  }
  
  /* =====================================================
     CIRCULAR RINGS
  ===================================================== */
  
  .hero-rings {
    position: absolute;
    width: 520px;
    height: 520px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(0, 92, 200, 0.08);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
  }
  
  .hero-rings::before,
  .hero-rings::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(0, 92, 200, 0.055);
    border-radius: 50%;
  }
  
  .hero-rings::before {
    inset: 38px;
  }
  
  .hero-rings::after {
    inset: 80px;
  }
  
  /* =====================================================
     CENTRAL IMAGE
  ===================================================== */
  
  .hero-person {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .hero-person img {
    display: block;
    width: 100%;
    max-width: 520px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 32px 50px rgba(15, 23, 42, 0.17));
  }
  
  /* =====================================================
     FLOATING CARDS
  ===================================================== */
  
  .hero-orbit {
    position: absolute;
    inset: 0;
    z-index: 10;
    pointer-events: none;
  }
  
  .orbit-item {
    position: absolute;
    width: auto;
    height: auto;
    pointer-events: auto;
  }
  
  /* =====================================================
     CARD POSITIONS
  ===================================================== */
  
  .orbit-item-1 {
    top: 8%;
    left: 0;
    animation: cardFloatOne 5s ease-in-out infinite;
  }
  
  .orbit-item-2 {
    top: 16%;
    left: 64%;
    animation: cardFloatTwo 5.5s ease-in-out infinite;
  }
  
  .orbit-item-3 {
    top: 55%;
    left: 0;
    animation: cardFloatThree 5.2s ease-in-out infinite;
  }
  
  .orbit-item-4 {
    top: 70%;
    left: 64%;
    animation: cardFloatFour 5.7s ease-in-out infinite;
  }
  
  /* =====================================================
     CARD BASE
  ===================================================== */
  
  .orbit-card {
    display: flex;
    align-items: center;
    gap: 11px;
    min-width: 205px;
    padding: 16px 18px;
    border: 1px solid rgba(15, 23, 42, 0.075);
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow:
      0 18px 42px rgba(15, 23, 42, 0.1),
      0 4px 12px rgba(15, 23, 42, 0.035);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    white-space: nowrap;
  }
  
  /* =====================================================
     HERO FLOATING CARDS
  ===================================================== */
  
  .orbit-card {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 215px;
    padding: 15px 17px;
    border: 1px solid rgba(15, 23, 42, 0.075);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow:
      0 18px 42px rgba(15, 23, 42, 0.09),
      0 4px 12px rgba(15, 23, 42, 0.035);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition:
      box-shadow 0.3s ease,
      border-color 0.3s ease;
  }
  
  /* =====================================================
     COMMON ICON
  ===================================================== */
  
  .orbit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    border-radius: 50%;
    background: var(--primary-color-soft);
    color: var(--primary-color);
    font-size: 17px;
  }
  
  /* =====================================================
     COMMON CARD CONTENT
  ===================================================== */
  
  .orbit-card h5,
  .orbit-card strong {
    display: block;
    margin: 0 0 4px;
    color: var(--c-ink);
    font-family: var(--third-font);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
  }
  
  .orbit-card p,
  .orbit-card span {
    display: block;
    margin: 0;
    color: var(--c-muted);
    font-family: var(--third-font);
    font-size: 11px;
    font-weight: 500;
    line-height: 1.35;
  }
  
  /* =====================================================
     CARD 1 — INDEX FUND
  ===================================================== */
  
  .orbit-item-1 .orbit-card {
    min-width: 225px;
  }
  
  .orbit-item-1 .orbit-card p {
    color: var(--primary-color);
    font-weight: 700;
  }
  
  /* =====================================================
     CARD 2 — RATING
  ===================================================== */
  
  .orbit-rating {
    min-width: 205px;
  }
  
  .orbit-rating .rating-icon {
    background: #fff7dd;
    color: #e5a900;
  }
  
  .orbit-rating strong {
    font-size: 14px;
  }
  
  .orbit-rating span {
    font-size: 11px;
  }
  
  /* =====================================================
     CARD 3 — AMFI
  ===================================================== */
  
  .orbit-small-card {
    min-width: 225px;
  }
  
  .orbit-small-card .orbit-icon {
    background: rgba(0, 92, 200, 0.08);
    color: var(--primary-color);
  }
  
  .orbit-small-card strong {
    font-size: 14px;
  }
  
  .orbit-small-card span {
    font-size: 11px;
  }
  
  /* =====================================================
     CARD 4 — DIRECT AMC
  ===================================================== */
  
  .amc-card {
    min-width: 225px;
  }
  
  .amc-card .orbit-icon {
    background: rgba(227, 6, 19, 0.07);
    color: var(--secondary-color);
  }
  
  .amc-card strong {
    font-size: 14px;
  }
  
  .amc-card span {
    font-size: 11px;
  }
  
  /* =====================================================
     CARD HOVER
  ===================================================== */
  
  .orbit-card:hover {
    border-color: rgba(0, 92, 200, 0.12);
    box-shadow:
      0 24px 52px rgba(15, 23, 42, 0.13),
      0 5px 14px rgba(15, 23, 42, 0.05);
  }
  
  /* =====================================================
     FLOATING ANIMATION
  ===================================================== */
  
  @keyframes cardFloatOne {
    0%,
    100% {
      transform: translate(0, 0);
    }
  
    50% {
      transform: translate(4px, -8px);
    }
  }
  
  @keyframes cardFloatTwo {
    0%,
    100% {
      transform: translate(0, 0);
    }
  
    50% {
      transform: translate(-5px, -7px);
    }
  }
  
  @keyframes cardFloatThree {
    0%,
    100% {
      transform: translate(0, 0);
    }
  
    50% {
      transform: translate(5px, -6px);
    }
  }
  
  @keyframes cardFloatFour {
    0%,
    100% {
      transform: translate(0, 0);
    }
  
    50% {
      transform: translate(-4px, -8px);
    }
  }
  
  /* =====================================================
     LARGE DESKTOP
     1440px+
  ===================================================== */
  
  @media (min-width: 1440px) {
    .hero-visual {
      min-height: 720px;
    }
  
    .hero-person {
      max-width: 520px;
    }
  
    .hero-rings {
      width: 550px;
      height: 550px;
    }
  
    .hero-glow {
      width: 590px;
      height: 590px;
    }
  
    .orbit-item-1 {
      top: 8%;
      left: -2%;
    }
  
    .orbit-item-2 {
      top: 25%;
      left: 65%;
    }
  
    .orbit-item-3 {
      top: 45%;
      left: -25%;
    }
  
    .orbit-item-4 {
      top: 70%;
      left: 65%;
    }
  
    .orbit-card {
      min-width: 220px;
      padding: 17px 19px;
    }
  
    .orbit-item-1 .orbit-card {
      min-width: 230px;
    }
  }
  
  /* =====================================================
     DESKTOP
     1200px - 1439px
  ===================================================== */
  
  @media (min-width: 1200px) and (max-width: 1439px) {
    .hero-visual {
      min-height: 660px;
    }
  
    .hero-person {
      max-width: 450px;
    }
  
    .hero-rings {
      width: 500px;
      height: 500px;
    }
  
    .hero-glow {
      width: 540px;
      height: 540px;
    }
  
    .orbit-item-1 {
      top: 8%;
      left: -2%;
    }
  
    .orbit-item-2 {
      top: 18%;
      left: 64%;
    }
  
    .orbit-item-3 {
      top: 55%;
      left: -2%;
    }
  
    .orbit-item-4 {
      top: 70%;
      left: 64%;
    }
  
    .orbit-card {
      min-width: 195px;
      padding: 15px 17px;
    }
  
    .orbit-item-1 .orbit-card {
      min-width: 205px;
    }
  }
  
  /* =====================================================
     LAPTOP
     992px - 1199px
  ===================================================== */
  
  @media (min-width: 992px) and (max-width: 1199px) {
    .hero-visual {
      min-height: 600px;
    }
  
    .hero-person {
      max-width: 380px;
    }
  
    .hero-rings {
      width: 430px;
      height: 430px;
    }
  
    .hero-glow {
      width: 460px;
      height: 460px;
    }
  
    .orbit-item-1 {
      top: 8%;
      left: -2%;
    }
  
    .orbit-item-2 {
      top: 20%;
      left: 61%;
    }
  
    .orbit-item-3 {
      top: 57%;
      left: -2%;
    }
  
    .orbit-item-4 {
      top: 70%;
      left: 61%;
    }
  
    .orbit-card {
      min-width: 170px;
      padding: 13px 14px;
      border-radius: 14px;
    }
  
    .orbit-item-1 .orbit-card {
      min-width: 180px;
    }
  
    .orbit-item-1 .orbit-card h5 {
      font-size: 12px;
    }
  
    .orbit-item-1 .orbit-card p {
      font-size: 9px;
    }
  
    .orbit-rating strong {
      font-size: 11px;
    }
  
    .orbit-rating span {
      font-size: 9px;
    }
  
    .rating-icon {
      width: 34px;
      height: 34px;
      flex-basis: 34px;
    }
  
    .orbit-small-card .orbit-icon,
    .amc-card .orbit-icon {
      width: 30px;
      height: 30px;
      flex-basis: 30px;
    }
  
    .orbit-small-card strong,
    .amc-card strong {
      font-size: 11px;
    }
  
    .orbit-small-card span,
    .amc-card span {
      font-size: 9px;
    }
  }
  
  /* =====================================================
     TABLET
     BELOW 992px
  ===================================================== */
  
  @media (max-width: 991px) {
    .mfnxt-hero {
      padding: 55px 0 60px;
    }
  
    .hero-content {
      max-width: 720px;
      margin: 0 auto;
      text-align: center;
    }
  
    .hero-trust-badge {
      margin-right: auto;
      margin-left: auto;
    }
  
    .hero-description {
      margin-right: auto;
      margin-left: auto;
    }
  
    .hero-badge {
      margin-right: auto;
      margin-left: auto;
      text-align: center;
    }
  
    .hero-actions {
      justify-content: center;
    }
  
    /* Hide complete visual on tablet and mobile */
    .hero-visual {
      display: none;
    }
  }
  
  /* =====================================================
     MOBILE
     BELOW 576px
  ===================================================== */
  
  @media (max-width: 575px) {
    .mfnxt-hero {
      padding: 45px 0 50px;
    }
  
    .hero-title {
      margin-bottom: 20px;
      font-size: clamp(42px, 12vw, 56px);
      letter-spacing: -2px;
    }
  
    .hero-description {
      max-width: 520px;
      font-size: 16px;
      line-height: 1.6;
    }
  
    .hero-badge {
      max-width: 100%;
      padding: 8px 13px;
    }
  
    .hero-badge .seal {
      width: 38px;
      height: 38px;
      flex-basis: 38px;
    }
  
    .hero-badge-text strong {
      font-size: 11px;
    }
  
    .hero-badge-text span {
      font-size: 9px;
    }
  
    .hero-actions {
      width: 100%;
      flex-direction: column;
      gap: 10px;
    }
  
    .hero-btn {
      width: 100%;
      max-width: 320px;
    }
  }
  
  /* =====================================================
     EXTRA SMALL MOBILE
     BELOW 380px
  ===================================================== */
  
  @media (max-width: 380px) {
    .mfnxt-hero {
      padding: 40px 0 45px;
    }
  
    .hero-title {
      font-size: 40px;
      letter-spacing: -1.7px;
    }
  
    .hero-description {
      font-size: 15px;
    }
  
    .hero-trust-badge {
      padding: 7px 10px;
    }
  
    .hero-trust-badge span {
      font-size: 9px;
    }
  
    .hero-badge-text strong {
      font-size: 10px;
    }
  
    .hero-badge-text span {
      font-size: 8px;
    }
  }
  
  /* =====================================================
     REDUCED MOTION
  ===================================================== */
  
  @media (prefers-reduced-motion: reduce) {
    .orbit-item {
      animation: none;
    }
  
    .hero-btn {
      transition: none;
    }
  }
  