    :root {
      --purple: #2563EB;
      --purple-hover: #1D4ED8;
      --dark-blue: #081B3A;
      --text-dark: #111827;
      --text-sub: #4B5563;
      --text-body: #6B7280;
      --bg-grey: #F8FAFC;
      --bg-grey-2: #F1F5F9;
      --border: rgba(0, 0, 0, 0.08);
      --border-hover: rgba(37, 99, 235, 0.2);
      --max: 1200px;
    }

    * {
      box-sizing: border-box;
    }

    html,
    body {
      margin: 0;
      padding: 0;
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Plus Jakarta Sans', 'Mukta', sans-serif;
      color: var(--text-dark);
      background-color: #FFFFFF;
      background-image:
        linear-gradient(rgba(37, 99, 235, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.04) 1px, transparent 1px),
        radial-gradient(circle at 90% 10%, rgba(37, 99, 235, 0.05) 0%, transparent 40%),
        linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
      background-size: 16px 16px, 16px 16px, 100% 100%, 100% 100%;
      background-attachment: fixed;
      width: 100%;
      overflow-x: hidden;
      line-height: 1.6;
    }

    h1,
    h2,
    h3,
    p {
      margin: 0;
    }

    ul {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    img {
      max-width: 100%;
      display: block;
      border-radius: 12px;
    }

    .page {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      width: 100%;
      background: transparent;
    }

    /* ---------- shared ---------- */
    .section {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 50px 24px;
      border-bottom: 1px solid var(--border);
    }

    .section.grey {
      background: transparent;
    }

    .section-inner {
      width: 100%;
      max-width: var(--max);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 24px;
    }

    .section-heading {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 800;
      font-size: 40px;
      line-height: 1.2;
      text-align: center;
      color: var(--dark-blue);
      max-width: 748px;
    }

    .cta-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 18px 44px;
      gap: 10px;
      background: var(--purple);
      border-radius: 99px;
      border: none;
      cursor: pointer;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 700;
      font-size: 16px;
      line-height: 150%;
      color: #FFFFFF;
      text-align: center;
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      text-decoration: none;
      box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
      position: relative;
      overflow: hidden;
    }

    .cta-btn::after {
      content: '';
      position: absolute;
      top: 0;
      left: -150%;
      width: 50%;
      height: 100%;
      background: linear-gradient(to right,
          rgba(255, 255, 255, 0) 0%,
          rgba(255, 255, 255, 0.4) 50%,
          rgba(255, 255, 255, 0) 100%);
      transform: skewX(-25deg);
      animation: shine 3s linear infinite;
    }

    @keyframes shine {
      0% {
        left: -150%;
      }

      50% {
        left: 150%;
      }

      100% {
        left: 150%;
      }
    }

    .cta-btn:hover {
      background: var(--purple-hover);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
    }

    .cta-btn:focus-visible {
      outline: 3px solid var(--dark-blue);
      outline-offset: 2px;
    }

    .cta-btn.small {
      padding: 14px 32px;
      font-family: 'Plus Jakarta Sans';
      font-weight: 700;
      font-size: 14px;
    }

    .sticky-cta-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      min-width: 160px;
      background: #FAB319;
      border-radius: 16px;
      padding: 14px 28px;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 800;
      font-size: 16px;
      color: #000000;
      text-align: center;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
      box-shadow: 0 4px 12px rgba(250, 179, 25, 0.2);
      position: relative;
      overflow: hidden;
    }

    .sticky-cta-btn:hover {
      background: #E2A312;
      transform: translateY(-1px);
      box-shadow: 0 6px 16px rgba(250, 179, 25, 0.3);
    }

    .sticky-cta-btn::after {
      content: '';
      position: absolute;
      top: 0;
      left: -150%;
      width: 50%;
      height: 100%;
      background: linear-gradient(to right,
          rgba(255, 255, 255, 0) 0%,
          rgba(255, 255, 255, 0.6) 50%,
          rgba(255, 255, 255, 0) 100%);
      transform: skewX(-25deg);
      animation: shine 3s linear infinite;
    }

    .card {
      background: #FFFFFF;
      border: 1px solid var(--border);
      border-radius: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 48px 32px;
      flex: 1;
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
    }

    .card:hover {
      transform: translateY(-4px);
      border-color: var(--border-hover);
      box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.08);
    }

    .card h3 {
      font-family: 'Plus Jakarta Sans';
      font-weight: 700;
      font-size: 22px;
      line-height: 130%;
      margin-bottom: 12px;
      color: var(--dark-blue);
    }

    .card p {
      font-family: 'Plus Jakarta Sans';
      font-weight: 400;
      font-size: 16px;
      line-height: 150%;
      color: var(--text-sub);
    }

    .cards-row {
      width: 100%;
      display: flex;
      gap: 24px;
      align-items: stretch;
    }

    /* ---------- Nav ---------- */
    .nav {
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 20px 24px;
      background: rgba(255, 255, 255, 0.85);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      position: relative;
      z-index: 100;
    }

    .nav-inner {
      width: 100%;
      max-width: var(--max);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      padding: 8px 16px;
      background: #FFFFFF;
      border: 1px solid var(--border);
      border-radius: 12px;
      font-family: 'Plus Jakarta Sans';
      font-weight: 800;
      font-size: 15px;
      color: var(--dark-blue);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 28px;
      list-style: none;
    }

    .nav-links a {
      font-family: 'Plus Jakarta Sans';
      font-weight: 600;
      font-size: 14px;
      color: var(--text-sub);
      text-decoration: none;
      transition: color 0.2s ease;
    }

    .nav-links a:hover {
      color: var(--purple);
    }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .nav-phone {
      display: flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
      color: var(--dark-blue);
      transition: opacity 0.2s ease;
    }

    .nav-phone:hover {
      opacity: 0.8;
    }

    .nav-phone .icon {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: #E0F2FE;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--purple);
      font-size: 14px;
      flex: none;
    }

    .nav-phone span {
      font-family: 'Plus Jakarta Sans';
      font-weight: 700;
      font-size: 16px;
      white-space: nowrap;
    }

    .nav-cta {
      padding: 12px 24px;
      background: var(--purple);
      border-radius: 99px;
      border: none;
      font-family: 'Plus Jakarta Sans';
      font-weight: 700;
      font-size: 14px;
      text-decoration: none;
      color: #fff;
      white-space: nowrap;
      transition: all 0.3s ease;
    }

    .nav-cta:hover {
      background: var(--purple-hover);
      transform: translateY(-1px);
    }

    .nav-toggle {
      display: none;
    }

    /* ---------- Promo Header (Redesigned Header) ---------- */
    .promo-header {
      width: 100%;
      background: transparent;
      display: flex;
      justify-content: center;
      align-items: flex-start;
      padding: 0;
      position: relative;
      z-index: 100;
    }

    .promo-banner {
      width: 100%;
      max-width: 900px;
      background: rgb(11, 74, 141);
      color: #FFFFFF;
      border-radius: 0 0 32px 32px;
      padding: 16px 32px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 12px;
      text-align: center;
      box-shadow: 0 10px 30px -10px rgba(37, 99, 235, 0.35);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-top: none;
    }


    .promo-timer-container {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 14px;
    }

    .promo-timer-label {
      font-weight: 800;
      font-size: 30px;
      color: rgba(255, 255, 255, 1);
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .promo-timer-label::before {
      content: '';
      display: inline-block;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #EF4444;
      box-shadow: 0 0 8px #EF4444;
      animation: promo-pulse 1.5s infinite;
    }

    @keyframes promo-pulse {
      0% {
        opacity: 0.4;
      }

      50% {
        opacity: 1;
      }

      100% {
        opacity: 0.4;
      }
    }

    .promo-app-tag {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      background: rgba(37, 99, 235, 0.08);
      border-radius: 50px;
      padding: 12px 32px;
      margin-top: -30px;
      margin-bottom: 28px;
      box-shadow: 0 4px 16px rgba(37, 99, 235, 0.1);
      transition: all 0.3s ease;
    }

    .promo-app-tag:hover {
      background: rgba(37, 99, 235, 0.15);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(37, 99, 235, 0.15);
    }

    .promo-tag-logo {
      width: 54px;
      height: 54px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid rgba(37, 99, 235, 0.25);
    }

    .promo-tag-text {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 700;
      font-size: 22px;
      color: #1E40AF;
      letter-spacing: 0.3px;
    }

    .promo-timer-digits {
      font-weight: 700;
      color: #FFFFFF;
      display: flex;
      align-items: center;
    }

    .promo-timer-digits span {
      background: rgba(255, 255, 255, 0.15);
      padding: 2px 6px;
      border-radius: 4px;
      margin: 0 2px;
      font-variant-numeric: tabular-nums;
    }

    .instructor-timer-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      margin: 8px 0 4px 0;
      background: transparent;
      border: none;
      padding: 0;
    }

    .instructor-timer-label {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 700;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      color: #2563EB;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .instructor-timer-label::before {
      content: '';
      display: inline-block;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #EF4444;
      box-shadow: 0 0 8px #EF4444;
      animation: promo-pulse 1.5s infinite;
    }

    .instructor-timer-digits {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 700;
      font-size: 18px;
      color: #1F2937;
      display: flex;
      align-items: center;
    }

    .instructor-timer-digits span {
      background: #F3F4F6;
      color: #1F2937;
      padding: 4px 8px;
      border-radius: 6px;
      margin: 0 2px;
      font-variant-numeric: tabular-nums;
      border: 1px solid #E5E7EB;
    }

    @media (max-width: 768px) {
      .promo-banner {
        border-radius: 0 0 32px 32px;
        padding: 14px 20px;
        gap: 8px;
        max-width: calc(100% - 32px);
        margin: 0 16px;
      }

      .promo-title {
        font-size: 20px;
      }

      .promo-timer-container {
        padding: 4px 12px;
        font-size: 13px;
      }

      .promo-app-tag {
        padding: 8px 22px;
        gap: 10px;
        margin-top: -15px;
        margin-bottom: 20px;
      }

      .promo-tag-logo {
        width: 40px;
        height: 40px;
      }

      .promo-tag-text {
        font-size: 16px;
      }

      .instructor-timer-digits {
        font-size: 16px;
      }

      .instructor-timer-digits span {
        padding: 3px 6px;
      }
    }


    /* ---------- Hero ---------- */
    .hero {
      width: 100%;
      display: flex;
      justify-content: center;
      padding: 80px 24px;
      background: transparent;
      position: relative;
      overflow: hidden;
      border-bottom: 1px solid var(--border);
    }

    .hero-inner {
      width: 100%;
      max-width: var(--max);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 40px;
      position: relative;
      z-index: 2;
    }


    .hero-header-wrap {
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%;
    }

    .hero-body-wrap {
      display: flex;
      width: 100%;
      align-items: center;
      justify-content: center;
      gap: 64px;
      margin-top: 12px;
    }

    .hero-details-side {
      flex: 1.2;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      width: 100%;
    }

    .hero-details-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
      width: 100%;
      max-width: 720px;
      margin-bottom: 28px;
    }

    .hero-detail-card {
      background: #FFFFFF;
      border: 1px solid rgba(0, 0, 0, 0.05);
      border-radius: 18px;
      padding: 16px 18px;
      display: flex;
      align-items: center;
      gap: 14px;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.015);
    }

    .detail-icon-box {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: #2b598f;
      /* exact shade of blue from mockup */
      color: #FFFFFF;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      flex-shrink: 0;
    }

    .detail-info {
      display: flex;
      flex-direction: column;
      text-align: left;
    }

    .detail-label {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 13px;
      color: #4B5563;
      font-weight: 500;
      line-height: 1.2;
      white-space: nowrap;
    }

    .detail-value {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 15px;
      font-weight: 800;
      color: #000000;
      margin-top: 3px;
      line-height: 1.2;
      white-space: nowrap;
    }

    .hero-instructor-side {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      position: relative;
      flex: 1;
    }

    .instructor-avatar-wrap {
      width: 400px;
      height: 400px;
      border-radius: 50px;
      background: linear-gradient(135deg, #DBEAFE 0%, #EFF6FF 100%);
      /* border: 8px solid rgba(37, 99, 235, 0.08); */
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(37, 99, 235, 0.1);
      z-index: 1;
    }

    .instructor-avatar-wrap img {
      width: 100%;
      /* height: 100%; */
      object-fit: contain;
    }

    .instructor-card {
      background: #FFFFFF;
      border: 1px solid rgba(0, 0, 0, 0.04);
      border-radius: 24px;
      padding: 28px 24px;
      width: 130%;
      max-width: 380px;
      text-align: center;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
      margin-top: -55px;
      z-index: 2;
      position: relative;
    }

    .instructor-name {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 28px;
      font-weight: 800;
      color: #1E3A8A;
      /* elegant dark blue */
      margin: 0;
    }

    .instructor-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 18px;
      font-weight: 700;
      color: #111827;
      /* bold black title from mockup */
      margin: 6px 0 0;
    }

    .instructor-rating {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      margin-top: 18px;
      background: transparent;
      padding: 0;
      border-radius: 0;
      text-align: left;
    }

    .instructor-rating .google-logo {
      height: 38px;
      width: auto;
      object-fit: contain;
      border-radius: 0;
    }

    .instructor-rating .rating-details {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 2px;
    }

    .instructor-rating .rating-label {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 14px;
      font-weight: 600;
      color: #374151;
      line-height: 1.2;
    }

    .instructor-rating .rating-value-stars {
      display: flex;
      align-items: center;
      gap: 6px;
      line-height: 1;
    }

    .instructor-rating .rating-value {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 16px;
      font-weight: 700;
      color: #e05a1a;
    }

    .instructor-rating .stars {
      display: flex;
      gap: 2px;
      color: #e05a1a;
      font-size: 13px;
    }

    .mobile-pricing-card-wrap {
      display: none;
    }

    .hero-copy {
      flex: 1.2;
      display: flex;
      flex-direction: column;
      gap: 28px;
    }

    .eyebrow {
      font-family: 'Plus Jakarta Sans';
      font-weight: 700;
      font-size: 14px;
      color: var(--purple);
    }

    .hero-title {
      font-family: 'Plus Jakarta Sans';
      font-weight: 800;
      font-size: 40px;
      line-height: 1.25;
      color: #081B3A;
      margin-bottom: 20px;
      text-align: center;
      max-width: 900px;
    }

    .hero-sub {
      font-family: 'Plus Jakarta Sans';
      font-size: 18px;
      line-height: 1.6;
      color: #1F2937;
      font-weight: 400;
      margin-bottom: 32px;
      text-align: center;
      max-width: 700px;
    }


    .social-proof-line {
      font-family: 'Plus Jakarta Sans';
      font-weight: 600;
      font-size: 15px;
      color: var(--text-dark);
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .social-proof-line::before {
      content: "✓";
      color: var(--purple);
      font-weight: 900;
    }

    .social-proof-line+.social-proof-line {
      font-weight: 600;
      font-size: 15px;
    }

    .hero-media {
      flex: 1;
      background: #FFFFFF;
      border: 1px solid var(--border);
      border-radius: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
      box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.05);
    }

    .hero-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 24px;
    }

    /* stat strip */
    .strip {
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 48px 24px;
      background: var(--dark-blue);
      color: #fff;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .strip-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 32px;
      width: 100%;
      max-width: var(--max);
      margin: 0 auto;
    }

    .strip-item {
      text-align: center;
    }

    .strip-val {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 36px;
      font-weight: 800;
      color: #FFC72C;
      margin: 0;
      line-height: 1.2;
    }

    .strip-label {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 11px;
      font-weight: 700;
      color: #94A3B8;
      margin: 6px 0 0;
    }

    /* pain point */
    .pain-copy {
      max-width: 800px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 28px;
      text-align: center;
    }

    .pain-title {
      font-family: 'Plus Jakarta Sans';
      font-weight: 800;
      font-size: 38px;
      line-height: 1.2;
      color: var(--dark-blue);
    }

    .pain-body {
      font-family: 'Plus Jakarta Sans';
      font-size: 16px;
      line-height: 1.6;
      color: var(--text-sub);
    }

    /* alternating benefit sections */
    .benefit {
      width: 100%;
      max-width: var(--max);
      margin: 0 auto;
      display: flex;
      align-items: center;
      padding: 80px 24px;
      gap: 64px;
    }

    .benefit.reverse {
      flex-direction: row-reverse;
    }

    .benefit-media {
      flex: 1;
      background: transparent;
      border: none;
      border-radius: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 0;
      font-family: 'Plus Jakarta Sans';
      font-weight: 700;
      font-size: 20px;
      color: var(--text-sub);
      box-shadow: none;
    }

    .benefit-media img {
      width: 100%;
      height: auto;
      object-fit: cover;
      border-radius: 24px;
      display: block;
    }

    .benefit-copy {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .benefit-eyebrow {
      font-family: 'Plus Jakarta Sans';
      font-weight: 800;
      font-size: 18px;
      color: var(--purple);
      letter-spacing: 0.5px;
    }

    .benefit-title {
      font-family: 'Plus Jakarta Sans';
      font-weight: 800;
      font-size: 40px;
      line-height: 1.2;
      color: var(--dark-blue);
    }

    .benefit-body {
      font-family: 'Plus Jakarta Sans';
      font-size: 16px;
      line-height: 1.6;
      color: var(--text-body);
    }

    /* differentiators grid */
    .grid-3 {
      width: 100%;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .grid-3 .card {
      aspect-ratio: auto;
      min-height: 240px;
    }

    /* team */
    .team-row {
      width: 100%;
      display: flex;
      gap: 24px;
    }

    .team-row .card {
      aspect-ratio: auto;
      padding: 48px 32px;
    }

    /* FAQ */
    .faq {
      width: 100%;
      max-width: 777px;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .faq-title {
      font-family: 'Plus Jakarta Sans';
      font-weight: 800;
      font-size: 36px;
      line-height: 1.2;
      text-align: center;
      color: var(--dark-blue);
      margin-bottom: 12px;
    }

    .faq-item {
      width: 100%;
      border: 1px solid var(--border);
      border-radius: 16px;
      background: #fff;
      margin-bottom: 0;
      padding: 0;
      transition: border-color 0.2s ease;
    }

    .faq-item:hover {
      border-color: var(--border-hover);
    }

    .faq-q {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 21px;
      background: none;
      border: none;
      cursor: pointer;
      text-align: left;
      font-family: 'Plus Jakarta Sans';
      font-weight: 700;
      font-size: 18px;
      color: var(--dark-blue);
      padding: 20px 24px;
    }

    .faq-q .chev {
      flex: none;
      width: 12px;
      height: 8px;
      border-left: 6px solid transparent;
      border-right: 6px solid transparent;
      border-top: 8px solid var(--text-sub);
      transition: transform .2s ease;
    }

    .faq-item[open] .chev {
      transform: rotate(180deg);
    }

    .faq-a {
      font-family: 'Plus Jakarta Sans';
      font-size: 15px;
      line-height: 1.6;
      color: var(--text-sub);
      padding: 0 24px 20px;
      border-top: 1px solid var(--border);
    }

    /* testimonial text carousel */
    .review-section {
      padding: 80px 24px;
      background: transparent;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      border-bottom: 1px solid var(--border);
    }

    .review-carousel-container {
      width: 100vw;
      margin-left: calc(-50vw + 50%);
      overflow: hidden;
      position: relative;
      margin-top: 40px;
      padding: 70px 0;
    }

    /* Edge blurs */
    .review-carousel-container::before,
    .review-carousel-container::after {
      content: "";
      position: absolute;
      top: 0;
      width: 100px;
      height: 100%;
      z-index: 10;
      pointer-events: none;
    }

    .review-carousel-container::before {
      left: 0;
      background: linear-gradient(to right, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
    }

    .review-carousel-container::after {
      right: 0;
      background: linear-gradient(to left, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
    }

    .review-marquee-row {
      display: flex;
      width: 100%;
      overflow: visible;
    }

    .review-marquee-row+.review-marquee-row {
      margin-top: 70px;
    }

    .review-marquee-track {
      display: flex;
      gap: 20px;
      width: max-content;
    }

    /* Animations */
    .scroll-left {
      animation: marquee-left 40s linear infinite;
    }

    .scroll-right {
      animation: marquee-right 40s linear infinite;
    }

    .review-marquee-row:hover .review-marquee-track {
      animation-play-state: paused;
    }

    @keyframes marquee-left {
      0% {
        transform: translateX(0);
      }

      100% {
        transform: translateX(-50%);
      }
    }

    @keyframes marquee-right {
      0% {
        transform: translateX(-50%);
      }

      100% {
        transform: translateX(0);
      }
    }

    .review-card {
      flex: 0 0 290px;
      min-height: 320px;
      background: #FFFFFF;
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 70px 20px 24px;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      position: relative;
      margin-top: 0;
      transition: transform 0.3s ease, border-color 0.3s ease;
    }

    .review-card:hover {
      transform: translateY(-4px);
      border-color: var(--border-hover);
    }

    .review-avatar {
      position: absolute;
      top: 0;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 100px !important;
      height: 100px !important;
      border-radius: 50%;
      object-fit: cover;
      border: 4px solid #FFFFFF;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
      background: #FFFFFF;
      flex-shrink: 0;
      z-index: 2;
    }

    .review-name {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 16px;
      font-weight: 500;
      color: var(--dark-blue);
      margin: 0 0 4px 0;
      text-align: center;
    }

    .review-designation {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 12px;
      font-weight: 400;
      color: var(--purple);
      margin: 0 0 10px 0;
      text-align: center;
    }

    .review-stars {
      display: flex;
      justify-content: center;
      gap: 2px;
      margin: 0 0 12px 0;
      color: #FFC72C;
      font-size: 13px;
    }

    .review-text {
      font-family: 'Plus Jakarta Sans', 'Mukta', sans-serif;
      font-size: 14px;
      font-weight: 300;
      line-height: 1.6;
      color: #000000;
      margin: 0;
      text-align: center;
      flex-grow: 1;
    }

    /* final CTA */
    .final-copy {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 28px;
    }

    .final-title {
      font-family: 'Plus Jakarta Sans';
      font-weight: 800;
      font-size: 38px;
      line-height: 1.2;
      color: var(--dark-blue);
    }

    .final-body {
      font-family: 'Plus Jakarta Sans';
      font-size: 16px;
      line-height: 1.6;
      color: var(--text-sub);
    }

    .checklist {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .checklist li {
      display: flex;
      align-items: center;
      gap: 12px;
      font-family: 'Plus Jakarta Sans';
      font-size: 16px;
      color: var(--text-dark);
      font-weight: 600;
    }

    .check-dot {
      flex: none;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: #DCFCE7;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .check-dot::after {
      content: "";
      width: 6px;
      height: 4px;
      border-left: 2px solid #16A34A;
      border-bottom: 2px solid #16A34A;
      transform: rotate(-45deg) translateY(-1px);
    }

    /* footer */
    .footer {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 80px 24px 40px;
      background: var(--dark-blue);
      color: #fff;
      border-top: 1px solid var(--border);
    }

    .footer-title {
      font-family: 'Plus Jakarta Sans';
      font-weight: 800;
      font-size: 32px;
      line-height: 1.2;
      text-align: center;
    }

    .footer-info {
      font-family: 'Plus Jakarta Sans';
      font-size: 15px;
      line-height: 1.8;
      text-align: center;
      color: #94A3B8;
      max-width: 800px;
    }

    .footer-links {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .footer-links a {
      color: #94A3B8;
      text-decoration: none;
      font-weight: 600;
      font-size: 14px;
      transition: color 0.2s ease;
    }

    .footer-links a:hover {
      color: #fff;
      text-decoration: none;
    }


    .team-carousel-container {
      width: calc(100% + 48px);
      margin-left: -24px;
      margin-right: -24px;
      overflow: hidden;
      position: relative;
      margin-top: 20px;
      padding: 20px 0;
    }

    .team-carousel-container::before,
    .team-carousel-container::after {
      content: "";
      position: absolute;
      top: 0;
      width: 120px;
      height: 100%;
      z-index: 10;
      pointer-events: none;
    }

    .team-carousel-container::before {
      left: 0;
      background: linear-gradient(to right, #F8FAFC 0%, rgba(248, 250, 252, 0) 100%);
    }

    .team-carousel-container::after {
      right: 0;
      background: linear-gradient(to left, #F8FAFC 0%, rgba(248, 250, 252, 0) 100%);
    }

    .team-marquee-row {
      display: flex;
      width: 100%;
      overflow: visible;
    }

    .team-marquee-row+.team-marquee-row {
      margin-top: 24px;
    }

    .team-marquee-track {
      display: flex;
      gap: 20px;
      width: max-content;
    }

    .team-marquee-track.scroll-left {
      animation: marquee-left 35s linear infinite;
    }

    .team-marquee-track.scroll-right {
      animation: marquee-right 35s linear infinite;
    }

    .team-marquee-row:hover .team-marquee-track {
      animation-play-state: paused;
    }

    .team-member-card {
      flex: 0 0 220px;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 24px;
      border-radius: 16px;
      text-align: center;
      background: transparent;
      border: none;
      transition: all 0.3s ease;
    }

    .team-member-card:hover {
      transform: translateY(-4px);
    }

    .video-carousel-container {
      width: 100vw;
      margin-left: calc(-50vw + 50%);
      overflow: hidden;
      position: relative;
      margin-top: 40px;
      padding: 20px 0;
    }

    .video-marquee-row {
      display: flex;
      width: 100%;
      overflow: visible;
    }

    .video-marquee-track {
      display: flex;
      gap: 24px;
      width: max-content;
    }

    .video-marquee-track.scroll-left {
      animation: marquee-left 30s linear infinite;
    }

    .video-marquee-row:hover .video-marquee-track {
      animation-play-state: paused;
    }

    .video-card {
      flex: 0 0 280px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    /* ============ JOURNEY / HOW IT WORKS ============ */
    .journey-header {
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-bottom: 50px;
    }

    .vertical-journey-container {
      max-width: 760px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 32px;
      position: relative;
    }

    /* Vertical timeline line behind circles */
    .vertical-journey-container::before {
      content: '';
      position: absolute;
      left: 40px;
      /* Center of the 80px circle */
      top: 40px;
      bottom: 40px;
      width: 2px;
      background: rgba(8, 27, 58, 0.08);
      z-index: 1;
    }

    .v-journey-row {
      display: flex;
      align-items: center;
      gap: 40px;
      position: relative;
      z-index: 2;
    }

    .v-journey-left {
      flex: 0 0 80px;
      display: flex;
      justify-content: center;
    }

    .v-journey-circle {
      width: 80px;
      height: 80px;
      background: #081B3A;
      border: 4px solid #FAB319;
      color: #FFFFFF;
      font-size: 26px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      box-shadow: 0 8px 24px rgba(8, 27, 58, 0.15);
      transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease, border-color 0.3s ease;
    }

    .v-journey-circle.highlight {
      background: #FAB319;
      color: #081B3A;
      border-color: #081B3A;
    }

    .v-journey-badge {
      position: absolute;
      top: -6px;
      right: -6px;
      background: #FAB319;
      color: #081B3A;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 700;
      font-size: 11px;
      width: 22px;
      height: 22px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
      border: 1px solid rgba(8, 27, 58, 0.1);
    }

    .v-journey-circle.highlight .v-journey-badge {
      background: #081B3A;
      color: #FAB319;
    }

    .v-journey-right {
      flex: 1;
    }

    .v-journey-card {
      background: #FFFFFF;
      border: 1px solid rgba(8, 27, 58, 0.08);
      border-radius: 20px;
      padding: 28px 36px;
      position: relative;
      box-shadow: 0 10px 30px rgba(8, 27, 58, 0.02);
      transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
    }

    /* Left pointing arrow on the card */
    .v-journey-card-arrow {
      position: absolute;
      left: -9px;
      top: 50%;
      transform: translateY(-50%) rotate(45deg);
      width: 18px;
      height: 18px;
      background: #FFFFFF;
      border-left: 1px solid rgba(8, 27, 58, 0.08);
      border-bottom: 1px solid rgba(8, 27, 58, 0.08);
      z-index: 1;
      transition: border-color 0.3s ease;
    }

    /* Hover animations */
    .v-journey-row:hover .v-journey-circle {
      transform: scale(1.1);
    }

    .v-journey-row:hover .v-journey-card {
      transform: translateX(8px);
      border-color: rgba(250, 179, 25, 0.3);
      box-shadow: 0 15px 35px rgba(8, 27, 58, 0.05);
    }

    .v-journey-row:hover .v-journey-card-arrow {
      border-color: rgba(250, 179, 25, 0.3);
    }

    .v-journey-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 700;
      font-size: 18px;
      color: #081B3A;
      margin: 0 0 8px 0;
    }

    .v-journey-desc {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 14px;
      line-height: 1.6;
      color: #4B5563;
      font-weight: 400;
      margin: 0;
    }

    /* Responsive adjustments */
    @media (max-width: 600px) {
      .vertical-journey-container {
        gap: 24px;
      }

      .vertical-journey-container::before {
        left: 28px;
        top: 28px;
        bottom: 28px;
      }

      .v-journey-row {
        gap: 20px;
      }

      .v-journey-left {
        flex: 0 0 56px;
      }

      .v-journey-circle {
        width: 56px;
        height: 56px;
        font-size: 18px;
        border-width: 3px;
      }

      .v-journey-badge {
        width: 18px;
        height: 18px;
        font-size: 9px;
        top: -4px;
        right: -4px;
      }

      .v-journey-card {
        padding: 20px 24px;
      }

      .v-journey-title {
        font-size: 16px;
      }

      .v-journey-desc {
        font-size: 13px;
        line-height: 1.5;
      }
    }



    /* ============ RESPONSIVE ============ */
    @media (max-width:1024px) {
      .section {
        padding: 80px 24px;
      }

      .hero {
        padding: 64px 24px;
      }

      .hero-inner {
        gap: 32px;
      }

      .hero-title {
        font-size: 44px;
      }

      .benefit {
        padding: 64px 24px;
        gap: 32px;
      }

      .grid-3 {
        grid-template-columns: repeat(2, 1fr);
      }

      .nav {
        padding: 16px 24px;
      }

      .nav-links {
        gap: 20px;
      }
    }

    @media (max-width:860px) {
      .video-card {
        flex: 0 0 200px;
      }

      .nav-links {
        display: none;
      }

      .nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: none;
        border: 1px solid var(--border);
        border-radius: 8px;
        cursor: pointer;
        font-size: 20px;
        color: var(--dark-blue);
      }

      .nav-right .nav-phone span {
        display: none;
      }

      .hero-inner {
        gap: 24px;
      }

      .hero-body-wrap {
        flex-direction: column;
        gap: 20px;
        margin-top: 0;
      }

      .hero-details-side {
        align-items: center;
        width: 100%;
      }

      .hero-details-grid {
        max-width: 600px;
        gap: 12px;
      }

      .mobile-pricing-card-wrap {
        display: block;
        width: 100%;
        padding: 0 24px;
      }

      .benefit,
      .benefit.reverse {
        flex-direction: column;
        text-align: center;
        gap: 40px;
      }

      .benefit-media,
      .benefit-copy {
        max-width: 100%;
      }

      .team-row {
        flex-direction: column;
      }

      .grid-3 {
        grid-template-columns: 1fr;
      }

      .cards-row {
        flex-direction: column;
      }

      .section-heading {
        font-size: 32px;
      }

      .pain-title {
        font-size: 28px;
      }

      .benefit-title {
        font-size: 26px;
      }

      .final-title {
        font-size: 28px;
      }

      .footer-title {
        font-size: 28px;
      }

      .strip-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 16px;
        max-width: 480px;
      }

      .strip-val {
        font-size: 28px;
      }

      .strip-label {
        font-size: 10px;
      }

      .review-card {
        flex: 0 0 290px;
        min-height: 320px;
        padding-top: 70px;
        margin-top: 0;
      }
    }

    @media (max-width:600px) {
      .section {
        padding: 60px 16px;
      }

      .hero {
        padding: 48px 16px;
      }

      .nav {
        padding: 12px 16px;
      }

      .hero-title {
        font-size: 32px;
      }

      .hero-sub,
      .final-body {
        font-size: 15px;
      }

      .cta-btn {
        padding: 16px 32px;
        font-size: 15px;
        width: 100%;
      }

      .faq-title {
        font-size: 24px;
      }

      .faq-q {
        font-size: 16px;
        padding: 16px 20px;
      }

      .benefit-title {
        font-size: 22px;
      }

      .card {
        padding: 32px 20px;
      }

      .card h3 {
        font-size: 18px;
      }

      .card p {
        font-size: 14px;
      }

      .nav-cta {
        padding: 10px 16px;
        font-size: 13px;
      }

      .strip-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 12px;
        max-width: 320px;
      }

      .strip-val {
        font-size: 24px;
      }

      .strip-label {
        font-size: 9px;
      }

      .review-card {
        flex: 0 0 250px;
        min-height: 300px;
        padding: 70px 16px 20px;
        margin-top: 0;
      }

      .review-carousel-container::before,
      .review-carousel-container::after {
        width: 40px;
      }

      .hero-details-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
        width: calc(100% - 32px);
        gap: 12px;
        margin-bottom: 12px;
      }

      .hero-detail-card {
        background: #FFFFFF;
        border: 1px solid rgba(0, 0, 0, 0.05);
        border-radius: 16px;
        padding: 12px 10px;
        display: flex;
        align-items: center;
        gap: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.015);
      }

      .detail-icon-box {
        width: 36px;
        height: 36px;
        font-size: 14px;
        border-radius: 10px;
        background: #2b598f;
        color: #FFFFFF;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
      }

      .detail-label {
        font-size: 11px;
        font-weight: 500;
        color: #4B5563;
      }

      .detail-value {
        font-size: 13px;
        font-weight: 800;
        color: #000000;
        margin-top: 2px;
      }

      .instructor-card {
        background: #FFFFFF;
        border: 1px solid rgba(0, 0, 0, 0.04);
        border-radius: 24px;
        padding: 24px 20px;
        width: 100%;
        max-width: 380px;
        text-align: center;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
        margin-top: -36px;
      }

      .instructor-name {
        font-size: 24px;
        font-weight: 800;
        color: #1E3A8A;
      }

      .instructor-title {
        font-size: 16px;
        font-weight: 700;
        color: #111827;
        margin-top: 6px;
      }

      .instructor-rating {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        margin-top: 16px;
        background: transparent;
        padding: 0;
        border-radius: 0;
        text-align: left;
      }

      .instructor-rating .google-logo {
        height: 34px;
        width: auto;
        object-fit: contain;
      }

      .instructor-rating .rating-details {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 1px;
      }

      .instructor-rating .rating-label {
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-size: 13px;
        font-weight: 600;
        color: #374151;
        line-height: 1.2;
      }

      .instructor-rating .rating-value-stars {
        display: flex;
        align-items: center;
        gap: 6px;
        line-height: 1;
      }

      .instructor-rating .rating-value {
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-size: 14px;
        font-weight: 700;
        color: #e05a1a;
      }

      .instructor-rating .stars {
        display: flex;
        gap: 2px;
        color: #e05a1a;
        font-size: 11px;
      }

      .mobile-pricing-card-wrap {
        padding: 0 16px;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      * {
        transition: none !important;
      }
    }

    /* ============ REFACTORED INLINE STYLES ============ */
    .hero-glow-shape-1 {
      position: absolute;
      top: 80px;
      right: 0;
      width: 320px;
      height: 320px;
      background: rgba(37, 99, 235, 0.05);
      border-radius: 50%;
      filter: blur(80px);
      pointer-events: none;
      z-index: 1;
    }

    .hero-glow-shape-2 {
      position: absolute;
      bottom: 40px;
      left: 40px;
      width: 380px;
      height: 380px;
      background: rgba(254, 240, 138, 0.08);
      border-radius: 50%;
      filter: blur(100px);
      pointer-events: none;
      z-index: 1;
    }

    .avatar-trust-badge {
      display: flex;
      align-items: center;
      gap: 16px;
      background: transparent;
      padding: 8px 20px 8px 12px;
      border-radius: 99px;
      margin-bottom: 28px;
    }

    .avatar-stack {
      display: flex;
      align-items: center;
    }

    .avatar-stack-img {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      border: 2px solid #FFFFFF;
      object-fit: cover;
      position: relative;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      cursor: pointer;
    }

    .avatar-stack-img:not(:first-child) {
      margin-left: -12px;
    }

    .avatar-stack-img:hover {
      transform: scale(1.18) translateY(-2px);
      z-index: 10;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .avatar-stack-badge {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      border: 2px solid #FFFFFF;
      background-color: #fab319;
      color: #1A300E;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      font-weight: 800;
      font-family: 'Plus Jakarta Sans', sans-serif;
      position: relative;
      margin-left: -12px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      cursor: pointer;
      flex-shrink: 0;
    }

    .avatar-stack-badge:hover {
      transform: scale(1.18) translateY(-2px);
      z-index: 10;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .trust-badge-info {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      text-align: left;
      line-height: 1.3;
    }

    .trust-badge-heading {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 18px;
      font-weight: 800;
      color: var(--text-dark);
    }

    .trust-badge-subheading {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 13px;
      font-weight: 500;
      color: var(--text-dark);
    }

    @media (max-width: 480px) {
      .avatar-trust-badge {
        flex-direction: row;
        align-items: center;
        gap: 12px;
        padding: 6px 14px 6px 8px;
      }

      .avatar-stack-img,
      .avatar-stack-badge {
        width: 48px;
        height: 48px;
        border-width: 1.5px;
      }

      .avatar-stack-img:not(:first-child),
      .avatar-stack-badge {
        margin-left: -10px;
      }

      .trust-badge-info {
        align-items: flex-start;
        text-align: left;
      }

      .trust-badge-heading {
        font-size: 18px;
      }

      .trust-badge-subheading {
        font-size: 14px;
      }
    }

    .hero-title-year {
      color: #004ac0;
    }

    .hero-title-highlight {
      color: rgb(212, 0, 0);
    }

    .hero-cta-wrapper {
      display: flex;
      gap: 16px;
      width: 100%;
      flex-wrap: wrap;
      margin-top: 24px;
    }

    .hero-cta-btn {
      margin: 0;
      padding: 16px 36px;
      font-size: 15px;
      box-shadow: 0 10px 20px rgba(37, 99, 235, 0.15);
    }

    .hero-cta-arrow {
      font-size: 12px;
      margin-left: 4px;
    }

    .mobile-pricing-card {
      padding: 0 !important;
      overflow: hidden;
      border-radius: 24px;
      max-width: 440px;
      margin: 24px auto;
      box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.15);
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
    }

    .mobile-pricing-img {
      width: 100%;
      height: auto;
      border-radius: 24px;
      display: block;
    }

    .testimonials-inner {
      max-width: 1100px;
    }

    .video-reviews-header {
      text-align: center;
      margin-bottom: 40px;
    }

    .video-reviews-subtitle {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 500;
      font-size: 32px;
      color: #000000;
      margin: 0;
      line-height: 1.2;
    }

    .video-reviews-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 800;
      font-size: 36px;
      color: #800080;
      margin: 6px 0 0;
      line-height: 1.2;
    }

    .video-preview-wrapper {
      position: relative;
      width: 100%;
      aspect-ratio: 9/15;
      border-radius: 20px;
      overflow: hidden;
      background: #000000;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    }

    .video-preview-thumbnail {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.85;
    }

    .video-play-btn {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.4);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      border: 1.5px solid rgba(255, 255, 255, 0.6);
    }

    .video-play-icon {
      width: 16px;
      height: 16px;
      fill: #FFFFFF;
      margin-left: 2px;
    }

    .video-student-name {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 700;
      font-size: 18px;
      color: #111827;
      margin: 12px 0 2px;
    }

    .video-student-role {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 14px;
      color: #6B7280;
      margin: 0;
    }

    .carousel-dots {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 16px;
      margin-bottom: 24px;
    }

    .carousel-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #D1D5DB;
      display: inline-block;
    }

    .carousel-dot.active {
      background: #800080;
    }

    .reviews-header {
      text-align: center;
      margin-bottom: 20px;
      max-width: 600px;
    }

    .reviews-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 800;
      font-size: 36px;
      color: var(--dark-blue);
      margin: 0;
      line-height: 1.2;
    }

    .reviews-subtitle {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 16px;
      color: var(--text-sub);
      margin-top: 10px;
    }

    .benefit-card {
      padding: 0 !important;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: stretch;
      justify-content: flex-start;
      text-align: center;
      border-radius: 24px;
      flex: 1;
      min-width: 250px;
      border: 1px solid var(--border);
      transition: all 0.3s ease;
      box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.04);
    }

    .benefit-card-image-wrap {
      position: relative;
      height: auto;
      overflow: hidden;
      width: 100%;
    }

    .benefit-card-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .benefit-card-details {
      background: #E0ECFF;
      padding: 24px 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      text-align: center;
    }

    .benefit-card-badge {
      background: #FFFFFF;
      border: 1px solid rgba(220, 38, 38, 0.15);
      color: #DC2626;
      padding: 6px 16px;
      border-radius: 8px;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 800;
      font-size: 13px;
      display: inline-block;
      margin-bottom: 12px;
      box-shadow: 0 2px 8px rgba(220, 38, 38, 0.04);
    }

    .benefit-card-title {
      margin: 0 0 8px;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 800;
      font-size: 18px;
      color: #000000;
    }

    .benefit-card-desc {
      margin: 0;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 13px;
      line-height: 1.5;
      color: #1E3A8A;
      font-weight: 600;
    }

    .benefit-media-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 24px;
    }

    .differentiator-card-img {
      width: 100px;
      height: 100px;
      object-fit: contain;
      margin: 0 auto 20px;
      display: block;
    }

    .team-member-img {
      width: 100%;
      aspect-ratio: 1/1;
      object-fit: cover;
      border-radius: 12px;
      margin-bottom: 16px;
    }

    .team-member-name {
      margin: 0;
      font-size: 18px;
      font-weight: 700;
      color: var(--dark-blue);
    }

    .team-member-role {
      margin: 4px 0 0;
      font-size: 14px;
      color: var(--purple);
      font-weight: 600;
    }

    #sticky-bottom-bar {
      position: fixed;
      bottom: 0;
      left: 50%;
      transform: translate(-50%, 150%);
      width: 100%;
      max-width: 600px;
      background: #FFFFFF;
      border-top: 1px solid rgba(0, 0, 0, 0.06);
      border-left: 1px solid rgba(0, 0, 0, 0.06);
      border-right: 1px solid rgba(0, 0, 0, 0.06);
      border-radius: 24px 24px 0 0;
      padding: 20px 24px;
      z-index: 1000;
      box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.06);
      transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
      opacity: 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }

    .sticky-bar-left {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      text-align: left;
    }

    .sticky-bar-price-wrap {
      display: flex;
      align-items: baseline;
    }

    .sticky-bar-price-curr {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 28px;
      font-weight: 800;
      color: #081B3A;
      line-height: 1;
    }

    .sticky-bar-price-orig {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 18px;
      text-decoration: line-through;
      color: #94A3B8;
      font-weight: 600;
      margin-left: 8px;
    }

    .sticky-bar-seats-wrap {
      margin-top: 6px;
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .sticky-bar-seats-text {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 800;
      font-size: 14px;
      color: #DC2626;
      line-height: 1.2;
    }

    .sticky-bar-right {
      position: relative;
      display: inline-block;
    }

    .sticky-bar-badge {
      position: absolute;
      top: 0;
      left: 16px;
      transform: translateY(-50%);
      background: #DC2626;
      color: #FFFFFF;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 800;
      font-size: 10px;
      padding: 4px 10px;
      border-radius: 99px;
      display: flex;
      align-items: center;
      gap: 6px;
      z-index: 10;
      box-shadow: 0 2px 6px rgba(220, 38, 38, 0.2);
      white-space: nowrap;
    }

    .sticky-bar-badge-dot {
      display: inline-block;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #FFFFFF;
    }

    /* Footer refactored classes */
    .footer-grid {
      width: 100%;
      max-width: var(--max);
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 48px;
      margin-bottom: 48px;
      text-align: left;
    }

    .footer-col {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 16px;
    }

    .footer-brand-wrap {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .footer-brand-logo {
      height: 40px;
      width: auto;
      object-fit: contain;
    }

    .footer-brand-text {
      font-family: 'Plus Jakarta Sans';
      font-weight: 800;
      font-size: 18px;
      color: #ffffff;
    }

    .footer-col-text {
      font-family: 'Plus Jakarta Sans';
      font-size: 14px;
      line-height: 1.6;
      color: #94A3B8;
      margin: 0;
    }

    .footer-col-heading {
      margin: 0;
      font-family: 'Plus Jakarta Sans';
      font-size: 16px;
      font-weight: 700;
      color: #ffffff;
    }

    .footer-col-links {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .footer-col-link {
      color: #94A3B8;
      text-decoration: none;
      font-size: 14px;
      transition: color 0.2s;
    }

    .footer-col-link:hover {
      color: #ffffff;
    }

    .footer-directions-link {
      color: var(--purple);
      text-decoration: none;
      font-size: 14px;
      font-weight: 700;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .footer-directions-link:hover {
      text-decoration: underline;
    }

    .footer-contact-details {
      display: flex;
      flex-direction: column;
      gap: 12px;
      font-size: 14px;
      color: #94A3B8;
    }

    .footer-contact-link {
      color: #ffffff;
      text-decoration: none;
      font-weight: 600;
    }

    .footer-bottom-row {
      width: 100%;
      max-width: var(--max);
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 32px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

    .footer-copyright {
      font-family: 'Plus Jakarta Sans';
      font-size: 12px;
      color: #64748B;
      margin: 0;
    }

    /* ============ HERO PROMO BUTTON ============ */
    .hero-promo-btn-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      width: 100%;
      max-width: 480px;
      position: relative;
    }

    .hero-promo-btn-container.centered {
      margin: 32px auto 0 auto;
    }

    .hero-promo-btn {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      width: 100%;
      background: #FAB319;
      border-radius: 20px;
      padding: 22px 24px;
      text-decoration: none;
      box-shadow: 0 10px 25px rgba(250, 179, 25, 0.25);
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      border: 1px solid rgba(0, 0, 0, 0.05);
      overflow: hidden;
    }

    .hero-promo-btn::after {
      content: '';
      position: absolute;
      top: 0;
      left: -150%;
      width: 50%;
      height: 100%;
      background: linear-gradient(to right,
          rgba(255, 255, 255, 0) 0%,
          rgba(255, 255, 255, 0.4) 50%,
          rgba(255, 255, 255, 0) 100%);
      transform: skewX(-25deg);
      animation: shine 3s linear infinite;
    }

    .hero-promo-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 30px rgba(250, 179, 25, 0.35);
      background: #E2A312;
    }

    .hero-promo-badge {
      position: absolute;
      top: 0;
      left: 24px;
      transform: translateY(-50%);
      background: #DC2626;
      color: #FFFFFF;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 800;
      font-size: 11px;
      padding: 5px 12px;
      border-radius: 99px;
      display: flex;
      align-items: center;
      gap: 6px;
      z-index: 10;
      box-shadow: 0 4px 10px rgba(220, 38, 38, 0.25);
      white-space: nowrap;
    }

    .hero-promo-badge-dot {
      display: inline-block;
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #FFFFFF;
      animation: promo-dot-pulse 1.5s infinite;
    }

    @keyframes promo-dot-pulse {
      0% {
        transform: scale(0.95);
        opacity: 0.5;
      }

      50% {
        transform: scale(1.1);
        opacity: 1;
      }

      100% {
        transform: scale(0.95);
        opacity: 0.5;
      }
    }

    .hero-promo-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 19px;
      font-weight: 800;
      color: #000000;
      margin: 0;
      line-height: 1.3;
      text-align: center;
    }

    .hero-promo-subtitle {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 14px;
      font-weight: 500;
      color: #111827;
      margin-top: 4px;
      line-height: 1.2;
      text-align: center;
    }

    .hero-promo-info {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 14px;
      font-weight: 500;
      color: #374151;
      text-align: center;
      margin: 4px 0 0;
      line-height: 1.4;
    }

    .hero-promo-info .highlight {
      background: #FEF08A;
      padding: 2px 6px;
      border-radius: 4px;
      font-weight: 600;
      color: #000000;
    }

    @media (max-width: 600px) {
      .hero-promo-btn {
        padding: 18px 16px;
        border-radius: 16px;
      }

      .hero-promo-title {
        font-size: 16px;
      }

      .hero-promo-subtitle {
        font-size: 13px;
      }

      .hero-promo-info {
        font-size: 13px;
      }

      .team-carousel-container {
        width: calc(100% + 32px);
        margin-left: -16px;
        margin-right: -16px;
      }

      .team-carousel-container::before,
      .team-carousel-container::after {
        width: 40px;
      }
    }

    /* Countdown Section Styling */
    #countdown-section {
      padding: 60px 24px;
      position: relative;
    }

    .countdown-inner {
      gap: 36px;
    }

    .countdown-header {
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
    }

    .eyebrow.urgent {
      background: #EF4444;
      color: #FFFFFF;
      padding: 6px 16px;
      border-radius: 99px;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 1px;
      box-shadow: 0 4px 12px rgba(239, 68, 68, 0.2);
      animation: pulse-red 2s infinite;
    }

    @keyframes pulse-red {
      0% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(239, 68, 68, 0.2);
      }

      50% {
        transform: scale(1.05);
        box-shadow: 0 4px 20px rgba(239, 68, 68, 0.4);
      }

      100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(239, 68, 68, 0.2);
      }
    }

    .countdown-subheading {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 18px;
      color: var(--text-sub);
      max-width: 600px;
      margin: 0;
      line-height: 1.5;
    }

    .countdown-subheading strong {
      color: var(--purple);
      font-weight: 800;
    }

    .countdown-timer-container {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      margin: 12px 0;
      flex-wrap: wrap;
    }

    .countdown-box {
      background: #FFFFFF;
      border: 1px solid var(--border);
      border-radius: 20px;
      min-width: 100px;
      padding: 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease, border-color 0.3s ease;
    }

    .countdown-box:hover {
      transform: translateY(-2px);
      border-color: var(--purple-hover);
    }

    .countdown-box.highlight {
      border-color: rgba(239, 68, 68, 0.2);
    }

    .countdown-box.highlight .countdown-num {
      color: #EF4444;
    }

    .countdown-num {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 40px;
      font-weight: 800;
      color: var(--dark-blue);
      line-height: 1;
    }

    .countdown-label {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 12px;
      font-weight: 700;
      color: var(--text-sub);
      margin-top: 8px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .countdown-divider {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 32px;
      font-weight: 800;
      color: var(--text-body);
      opacity: 0.5;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100%;
    }

    .countdown-cta {
      margin-top: 12px;
    }

    .countdown-cta .cta-btn {
      padding: 20px 48px;
      font-size: 18px;
      background: #2563EB;
      box-shadow: 0 8px 24px rgba(37, 99, 235, 0.25);
    }

    .countdown-cta .cta-btn:hover {
      background: #1D4ED8;
      transform: translateY(-2px);
      box-shadow: 0 12px 32px rgba(37, 99, 235, 0.35);
    }

    @media (max-width: 600px) {
      #countdown-section {
        padding: 40px 16px;
      }

      .countdown-timer-container {
        gap: 8px;
      }

      .countdown-box {
        min-width: 70px;
        padding: 12px 8px;
        border-radius: 12px;
      }

      .countdown-num {
        font-size: 26px;
      }

      .countdown-label {
        font-size: 9px;
        margin-top: 4px;
      }

      .countdown-divider {
        font-size: 20px;
        display: none;
      }

      .countdown-subheading {
        font-size: 15px;
      }

      .countdown-cta .cta-btn {
        padding: 16px 28px;
        font-size: 15px;
        width: 100%;
      }
    }