    /* ═══════════ ROOT TOKENS ═══════════ */
    :root {
      --bg: #f8e6f0;
      --card: #ffffff;
      --text: #14171f;
      --muted: #5b4a60;
      --accent: #7c3aed;
      --accent2: #ef4444;
      --accent3: #f59e0b;
      --green: #16a34a;
      --ring: 0 0 0 .22rem rgba(124, 58, 237, .28);
      --border: #ead7e4;
      --border-purple: rgba(124, 58, 237, .18);
      --container: 1160px;
      --plum: #f5f0ff;
      --rose: #fdf2f8;
      --grad: linear-gradient(135deg, #7c3aed 0%, #ef4444 100%);
      --grad-soft: linear-gradient(135deg, #c026d3 0%, #7c3aed 100%);
      --sh-sm: 0 2px 10px rgba(124, 58, 237, .08);
      --sh-md: 0 8px 32px rgba(124, 58, 237, .14);
      --sh-lg: 0 24px 64px rgba(124, 58, 237, .22);
    }

    @media(prefers-color-scheme:dark) {
      :root {
        --text: #eaeefb;
        --muted: #a1a1aa;
        --card: #0f0f14;
        --border: #242335;
        --plum: #100d1a;
        --rose: #130d18;
      }

      body {
        background: radial-gradient(closest-corner at 50% 60%, #0c0d12 0%, rgba(16, 12, 18, .6) 35%, rgba(16, 12, 18, 0) 60%), radial-gradient(circle at 50% 50%, #1a1420 0%, #201728 30%, #241a2c 55%, #271c31 70%, #2a1d35 85%, #2e1f3a 100%);
      }
    }

    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'DM Sans', system-ui, sans-serif;
      font-size: 16px;
      line-height: 1.65;
      color: var(--text);
      background: radial-gradient(closest-corner at 50% 60%, #fff 0%, rgba(255, 255, 255, .6) 35%, rgba(255, 255, 255, 0) 60%), radial-gradient(circle at 50% 50%, #f6ddea 0%, #f3d5e8 30%, #f0cfe6 55%, #edd0e8 70%, #e8c7e3 85%, #e3c0e0 100%);
      background-attachment: fixed;
      -webkit-font-smoothing: antialiased;
    }

    a {
      color: var(--accent);
      text-decoration: none;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    /* ═══════════ LAYOUT ═══════════ */
    .container {
      max-width: var(--container);
      margin-inline: auto;
      padding: 0 clamp(14px, 4vw, 28px);
    }

    .section {
      padding: 72px 0;
    }

    .section-sm {
      padding: 48px 0;
    }

    .sec-head {
      text-align: center;
      margin-bottom: 52px;
    }

    .sec-head p {
      color: var(--muted);
      max-width: 580px;
      margin: 10px auto 0;
      font-size: 17px;
    }

    .pill {
      display: inline-block;
      font-size: 11.5px;
      font-weight: 700;
      letter-spacing: 1.6px;
      text-transform: uppercase;
      background: var(--plum);
      color: var(--accent);
      border: 1px solid var(--border-purple);
      padding: 5px 14px;
      border-radius: 999px;
      margin-bottom: 16px;
    }

    .bg-alt {
      background: rgba(124, 58, 237, .033);
    }

    .bg-rose {
      background: rgba(249, 168, 212, .08);
    }

    /* ═══════════ TYPE ═══════════ */
    h1,
    h2,
    h3,
    h4,
    h5 {
      font-family: 'Sora', system-ui, sans-serif;
      line-height: 1.15;
    }

    .h2 {
      font-size: clamp(22px, 3vw, 36px);
      margin-bottom: 10px;
    }

    .h3 {
      font-size: clamp(17px, 2vw, 22px);
    }

    .muted {
      color: var(--muted);
    }

    .grad-text {
      background: var(--grad);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    /* ═══════════ BUTTONS ═══════════ */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: .82rem 1.55rem;
      border-radius: 13px;
      background: var(--grad);
      color: #fff;
      font-family: 'DM Sans', sans-serif;
      font-weight: 700;
      font-size: 15px;
      letter-spacing: .2px;
      border: none;
      cursor: pointer;
      box-shadow: 0 8px 24px rgba(124, 58, 237, .28);
      transition: transform .15s, box-shadow .15s;
      text-decoration: none;
    }

    .btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 32px rgba(124, 58, 237, .36);
    }

    .btn:focus-visible {
      outline: 3px solid rgba(124, 58, 237, .4);
    }

    .btn-outline {
      background: transparent;
      border: 2px solid var(--accent);
      color: var(--accent);
      box-shadow: none;
    }

    .btn-outline:hover {
      background: var(--plum);
    }

    .btn-lg {
      padding: 1rem 1.9rem;
      font-size: 16px;
      border-radius: 15px;
    }

    .btn-full {
      width: 100%;
      justify-content: center;
    }

    .btn-white {
      background: #fff;
      color: var(--accent);
      box-shadow: 0 8px 28px rgba(0, 0, 0, .18);
    }

    .btn-white:hover {
      box-shadow: 0 14px 36px rgba(0, 0, 0, .24);
    }

    .btn-ghost {
      background: rgba(255, 255, 255, .14);
      border: 2px solid rgba(255, 255, 255, .38);
      color: #fff;
      box-shadow: none;
    }

    .btn-ghost:hover {
      background: rgba(255, 255, 255, .22);
    }

    /* ═══════════ CARDS ═══════════ */
    .card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 24px;
      box-shadow: var(--sh-sm);
    }

    /* ═══════════ TICK ═══════════ */
    .tick {
      flex: 0 0 20px;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: conic-gradient(from 180deg at 50% 50%, #22c55e, #06b6d4);
      -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='white' d='M7.629 13.233L3.9 9.504l1.414-1.414 2.315 2.315L14.687 3.35l1.414 1.414z'/%3E%3C/svg%3E") center/14px no-repeat;
      mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='white' d='M7.629 13.233L3.9 9.504l1.414-1.414 2.315 2.315L14.687 3.35l1.414 1.414z'/%3E%3C/svg%3E") center/14px no-repeat;
    }

    .list {
      list-style: none;
    }

    .list li {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      margin: 10px 0;
    }

    /* ═══════════ REVEAL ANIMATION ═══════════ */
    .reveal {
      opacity: 0;
      transform: translateY(26px);
      transition: opacity .62s ease, transform .62s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: none;
    }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ STICKY HEADER ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    header {
      position: sticky;
      top: 0;
      z-index: 100;
      padding: 11px 0;
      backdrop-filter: saturate(160%) blur(10px);
      -webkit-backdrop-filter: saturate(160%) blur(10px);
      background: rgba(255, 255, 255, .55);
      border-bottom: 1px solid var(--border);
    }

    @media(prefers-color-scheme:dark) {
      header {
        background: rgba(15, 12, 20, .55);
      }
    }

    .nav-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
    }

    .logo img {
      height: 42px;
    }

    .nav-badges {
      display: flex;
      gap: 7px;
      flex-wrap: wrap;
    }

    .nav-badge {
      font-size: 11.5px;
      font-weight: 600;
      border: 1px solid var(--border);
      color: var(--muted);
      padding: .28rem .6rem;
      border-radius: 999px;
      background: rgba(255, 255, 255, .48);
    }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ ① HERO + LEAD CAPTURE FORM ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    .hero {
      padding: 16px 0 0;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -180px;
      right: -180px;
      width: 560px;
      height: 560px;
      background: radial-gradient(circle, rgba(124, 58, 237, .13) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero-wrap {
      display: grid;
      grid-template-columns: minmax(0, 1.18fr) minmax(0, .82fr);
      gap: 36px;
      align-items: start;
      padding: 36px 0 18px;
    }

    /* eyebrow */
    .hero-eye {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      font-weight: 700;
      color: var(--accent);
      background: var(--plum);
      border: 1px solid var(--border-purple);
      padding: 5px 14px 5px 8px;
      border-radius: 999px;
      margin-bottom: 14px;
    }

    .live-dot {
      width: 8px;
      height: 8px;
      background: #22c55e;
      border-radius: 50%;
      animation: pulse-g 2s infinite;
    }

    @keyframes pulse-g {

      0%,
      100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, .5);
      }

      50% {
        box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
      }
    }

    .hero h1 {
      font-size: clamp(28px, 4vw, 50px);
      margin-bottom: 14px;
      letter-spacing: -.4px;
    }

    .hero-sub {
      font-size: 17px;
      color: var(--muted);
      margin-bottom: 24px;
      max-width: 510px;
    }

    /* feature bullets */
    .hero-bullets {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px 20px;
      margin-bottom: 28px;
    }

    .hb-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
      font-weight: 500;
    }

    .hb-icon {
      font-size: 18px;
      flex-shrink: 0;
    }

    /* hero actions */
    .hero-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-bottom: 32px;
    }

    /* KPI row */
    .kpis {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
    }

    .kpi {
      padding: 14px 10px;
      text-align: center;
      border-radius: 16px;
      background: var(--card);
      border: 1px solid var(--border);
      box-shadow: var(--sh-sm);
      transition: transform .2s;
    }

    .kpi:hover {
      transform: translateY(-3px);
    }

    .kpi h3 {
      font-size: clamp(18px, 2.2vw, 26px);
      margin-bottom: 2px;
    }

    .kpi p {
      color: var(--muted);
      font-size: 11.5px;
      font-weight: 600;
    }

    /* rating row */
    .rating-row {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
      align-items: center;
      margin-top: 12px;
    }

    .rating-chip {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      font-weight: 600;
    }

    .stars {
      color: #f59e0b;
      font-size: 13px;
    }

    /* ── LEAD FORM CARD ── */
    .form-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 22px;
      padding: 26px;
      box-shadow: 0 14px 52px rgba(124, 58, 237, .16);
      position: sticky;
      top: 76px;
    }

    .urgency-bar {
      background: linear-gradient(90deg, #fef3c7, #fde68a);
      border: 1px solid #fbbf24;
      border-radius: 10px;
      padding: 8px 13px;
      font-size: 12.5px;
      font-weight: 700;
      color: #92400e;
      text-align: center;
      margin-bottom: 14px;
    }

    .form-trust {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      font-size: 12px;
      font-weight: 700;
      color: #16a34a;
      background: #f0fdf4;
      border: 1px solid #bbf7d0;
      border-radius: 8px;
      padding: 6px 12px;
      margin-bottom: 14px;
    }

    .form-card h2 {
      font-size: 19px;
      margin-bottom: 3px;
    }

    .form-card .fs {
      font-size: 13px;
      color: var(--muted);
      margin-bottom: 16px;
    }

    label {
      display: block;
      font-size: 12.5px;
      font-weight: 700;
      color: var(--text);
      margin: 11px 0 4px;
    }

    @media(prefers-color-scheme:dark) {
      label {
        color: #d1d5db;
      }
    }

    input,
    select {
      width: 100%;
      padding: 12px 14px;
      border-radius: 11px;
      border: 1.5px solid var(--border);
      background: #fff;
      color: #111827;
      font-size: 15px;
      font-family: inherit;
      outline: none;
      transition: border-color .14s, box-shadow .14s;
      appearance: none;
    }

    input:focus,
    select:focus {
      border-color: var(--accent);
      box-shadow: var(--ring);
    }

    select {
      background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%23555"><path d="M4 6l4 4 4-4"/></svg>');
      background-repeat: no-repeat;
      background-position: right 12px center;
      background-size: 13px;
      padding-right: 36px;
    }

    .form-privacy {
      font-size: 11.5px;
      color: var(--muted);
      margin-top: 9px;
      text-align: center;
    }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ TRUST BAR (below hero) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    .trust-bar {
      background: var(--card);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 16px 0;
    }

    .trust-items {
      display: flex;
      align-items: stretch;
      justify-content: center;
      flex-wrap: wrap;
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 7px 22px;
      border-right: 1px solid var(--border);
      font-size: 13.5px;
      font-weight: 600;
    }

    .trust-item:last-child {
      border-right: none;
    }

    .ti-icon {
      font-size: 20px;
    }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ ② COURSES WE OFFER ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    .courses-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }

    .course-card {
      background: var(--card);
      border: 1.5px solid var(--border);
      border-radius: 20px;
      padding: 24px;
      position: relative;
      overflow: hidden;
      transition: transform .22s, box-shadow .22s, border-color .22s;
      cursor: default;
    }

    .course-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--sh-md);
      border-color: rgba(124, 58, 237, .32);
    }

    .course-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--grad);
    }

    .course-tag {
      display: inline-block;
      font-size: 10.5px;
      font-weight: 700;
      letter-spacing: .8px;
      text-transform: uppercase;
      padding: 3px 10px;
      border-radius: 999px;
      background: var(--plum);
      color: var(--accent);
      margin-bottom: 10px;
    }

    .course-card h3 {
      font-size: 18px;
      margin-bottom: 8px;
    }

    .course-card p {
      font-size: 13px;
      color: var(--muted);
      margin-bottom: 16px;
      line-height: 1.6;
    }

    .course-meta {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      font-size: 11.5px;
      color: var(--muted);
      font-weight: 600;
    }

    .course-meta span {
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .hot-badge {
      position: absolute;
      top: 14px;
      right: 14px;
      background: var(--grad);
      color: #fff;
      font-size: 10.5px;
      font-weight: 700;
      padding: 3px 10px;
      border-radius: 999px;
    }

    .course-cta {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      margin-top: 14px;
      font-size: 13px;
      font-weight: 700;
      color: var(--accent);
      background: var(--plum);
      border: 1px solid var(--border-purple);
      padding: 6px 14px;
      border-radius: 8px;
      transition: background .15s;
    }

    .course-cta:hover {
      background: #ede9fe;
    }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ ③ STUDENT VIDEO TESTIMONIALS ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    .videos-wrap {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 22px;
      margin-bottom: 36px;
    }

    .vid-card {
      border-radius: 18px;
      overflow: hidden;
      border: 1px solid var(--border);
      background: var(--card);
      box-shadow: var(--sh-sm);
      transition: transform .2s, box-shadow .2s;
    }

    .vid-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--sh-md);
    }

    .vid-embed {
      aspect-ratio: 16/9;
    }

    .vid-embed iframe {
      width: 100%;
      height: 100%;
      border: 0;
      display: block;
    }

    .vid-cap {
      padding: 13px 16px;
      display: flex;
      align-items: center;
      gap: 10px;
      border-top: 1px solid var(--border);
      background: var(--card);
    }

    .vid-cap-av {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 14px;
      color: #fff;
    }

    .vid-cap-name {
      font-size: 13.5px;
      font-weight: 700;
    }

    .vid-cap-role {
      font-size: 11.5px;
      color: var(--muted);
    }

    .vid-stars {
      color: #f59e0b;
      font-size: 11px;
    }

    /* text review cards */
    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .review-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 24px;
      position: relative;
    }

    .review-card::before {
      content: '"';
      position: absolute;
      top: 10px;
      left: 18px;
      font-size: 64px;
      font-family: Georgia, serif;
      color: rgba(124, 58, 237, .12);
      line-height: 1;
    }

    .review-text {
      font-size: 14px;
      color: var(--muted);
      font-style: italic;
      margin-bottom: 18px;
      padding-top: 18px;
      line-height: 1.7;
    }

    .review-auth {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .rev-av {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 15px;
      color: #fff;
      flex-shrink: 0;
    }

    .rev-name {
      font-size: 14px;
      font-weight: 700;
    }

    .rev-meta {
      font-size: 11.5px;
      color: var(--muted);
    }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ ④ TRUST & SOCIAL PROOF (classroom images) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    .proof-wrap {
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 40px;
      align-items: center;
    }

    /* masonry-style photo grid */
    .photo-mosaic {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto auto;
      gap: 12px;
    }

    .photo-tile {
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid var(--border);
      background: var(--plum);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 52px;
      transition: transform .2s;
    }

    .photo-tile:hover {
      transform: scale(1.02);
    }

    .photo-tile.tall {
      grid-row: span 2;
      aspect-ratio: auto;
      min-height: 260px;
    }

    .photo-tile.wide {
      grid-column: span 2;
      aspect-ratio: 16/7;
    }

    .photo-tile-std {
      aspect-ratio: 4/3;
    }

    .proof-stats-col {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .proof-stat {
      display: flex;
      gap: 14px;
      align-items: center;
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 18px 20px;
      box-shadow: var(--sh-sm);
      transition: transform .2s;
    }

    .proof-stat:hover {
      transform: translateX(4px);
    }

    .proof-stat-icon {
      font-size: 32px;
      flex-shrink: 0;
    }

    .proof-stat-num {
      font-family: 'Sora', sans-serif;
      font-size: clamp(24px, 3vw, 32px);
      font-weight: 800;
      line-height: 1;
    }

    .proof-stat-label {
      font-size: 13px;
      color: var(--muted);
      font-weight: 500;
      margin-top: 2px;
    }

    .proof-checklist {
      margin-top: 18px;
    }

    .proof-checklist li {
      font-size: 14px;
      color: var(--muted);
      margin: 9px 0;
      display: flex;
      gap: 8px;
      align-items: flex-start;
    }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ ⑤ HIRING PARTNERS ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    .partners-wrap {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 22px;
      padding: 32px;
      overflow: hidden;
      position: relative;
    }

    .marquee-track {
      overflow: hidden;
    }

    .marquee-inner {
      display: flex;
      gap: 16px;
      align-items: center;
      animation: marquee 28s linear infinite;
      width: max-content;
    }

    @keyframes marquee {
      0% {
        transform: translateX(0);
      }

      100% {
        transform: translateX(-50%);
      }
    }

    .partner-chip {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 10px 20px;
      border-radius: 12px;
      border: 1px solid var(--border);
      background: var(--rose);
      font-weight: 700;
      font-size: 13.5px;
      color: var(--muted);
      white-space: nowrap;
      flex-shrink: 0;
      min-width: 130px;
    }

    .partner-chip span {
      font-size: 18px;
    }

    /* second row of partners */
    .marquee-inner2 {
      display: flex;
      gap: 16px;
      align-items: center;
      margin-top: 14px;
      animation: marquee2 22s linear infinite;
      width: max-content;
    }

    @keyframes marquee2 {
      0% {
        transform: translateX(-50%);
      }

      100% {
        transform: translateX(0);
      }
    }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ ⑥ CERTIFICATIONS ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    .cert-wrap {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
    }

    /* certificate mockup */
    .cert-mock {
      background: linear-gradient(135deg, #faf5ff 0%, #f5f0ff 50%, #fdf2f8 100%);
      border: 2px solid var(--border-purple);
      border-radius: 20px;
      padding: 36px;
      text-align: center;
      box-shadow: var(--sh-md);
      position: relative;
      overflow: hidden;
    }

    .cert-mock::before {
      content: '';
      position: absolute;
      top: -30px;
      right: -30px;
      width: 120px;
      height: 120px;
      background: rgba(124, 58, 237, .08);
      border-radius: 50%;
    }

    .cert-seal {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background: var(--grad);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 30px;
      margin: 0 auto 16px;
    }

    .cert-mock h3 {
      font-size: 20px;
      margin-bottom: 4px;
    }

    .cert-mock p {
      font-size: 13px;
      color: var(--muted);
      margin-bottom: 20px;
    }

    .cert-border-inner {
      border: 2px dashed rgba(124, 58, 237, .3);
      border-radius: 14px;
      padding: 20px 16px;
      margin-top: 12px;
    }

    .cert-name-line {
      height: 2px;
      background: var(--grad);
      border-radius: 2px;
      margin: 12px auto;
      width: 60%;
    }

    .cert-meta {
      font-size: 11px;
      color: var(--muted);
      margin-top: 10px;
    }

    /* cert benefits */
    .cert-benefits {
      display: grid;
      gap: 14px;
    }

    .cert-benefit {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 16px;
      transition: transform .2s, box-shadow .2s;
    }

    .cert-benefit:hover {
      transform: translateX(4px);
      box-shadow: var(--sh-sm);
    }

    .cb-icon {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: var(--plum);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      flex-shrink: 0;
    }

    .cb-title {
      font-size: 15px;
      font-weight: 700;
      margin-bottom: 3px;
    }

    .cb-desc {
      font-size: 13px;
      color: var(--muted);
    }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ ⑦ FAQ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    .faq-col {
      max-width: 760px;
      margin: 0 auto;
    }

    .faq-item {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 14px;
      margin-bottom: 10px;
      overflow: hidden;
      transition: box-shadow .2s, border-color .2s;
    }

    .faq-item.open {
      border-color: rgba(124, 58, 237, .28);
      box-shadow: var(--sh-sm);
    }

    .faq-q {
      padding: 17px 20px;
      font-weight: 700;
      font-family: 'Sora', sans-serif;
      font-size: 14.5px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      user-select: none;
      gap: 12px;
    }

    .faq-q:hover {
      background: var(--plum);
    }

    .faq-icon {
      font-size: 22px;
      color: var(--accent);
      transition: transform .22s;
      flex-shrink: 0;
      line-height: 1;
    }

    .faq-item.open .faq-icon {
      transform: rotate(45deg);
    }

    .faq-a {
      display: none;
      padding: 0 20px 17px;
      font-size: 14px;
      color: var(--muted);
      line-height: 1.75;
    }

    .faq-item.open .faq-a {
      display: block;
    }

    /* CTA below FAQ */
    .faq-cta-bar {
      margin-top: 32px;
      background: var(--plum);
      border: 1px solid var(--border-purple);
      border-radius: 16px;
      padding: 22px 28px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .faq-cta-bar p {
      font-weight: 700;
      font-size: 16px;
      color: var(--text);
    }

    .faq-cta-bar small {
      font-size: 13px;
      color: var(--muted);
      display: block;
      margin-top: 3px;
    }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ ⑧ FINAL CTA ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    .final-cta {
      background: var(--grad);
      border-radius: 28px;
      padding: 60px 48px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .final-cta::before {
      content: '';
      position: absolute;
      top: -90px;
      right: -90px;
      width: 320px;
      height: 320px;
      background: rgba(255, 255, 255, .07);
      border-radius: 50%;
    }

    .final-cta::after {
      content: '';
      position: absolute;
      bottom: -70px;
      left: -70px;
      width: 260px;
      height: 260px;
      background: rgba(255, 255, 255, .05);
      border-radius: 50%;
    }

    .final-cta h2 {
      color: #fff;
      font-size: clamp(24px, 4vw, 44px);
      margin-bottom: 12px;
      position: relative;
      z-index: 1;
    }

    .final-cta p {
      color: rgba(255, 255, 255, .88);
      font-size: 17px;
      max-width: 540px;
      margin: 0 auto 28px;
      position: relative;
      z-index: 1;
    }

    .final-cta-btns {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
      position: relative;
      z-index: 1;
      margin-bottom: 24px;
    }

    .final-micros {
      display: flex;
      justify-content: center;
      gap: 24px;
      flex-wrap: wrap;
      position: relative;
      z-index: 1;
    }

    .final-micros span {
      color: rgba(255, 255, 255, .8);
      font-size: 13.5px;
      display: flex;
      align-items: center;
      gap: 5px;
    }

    /* what you get + journey */
    .cta-bottom {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin-top: 32px;
    }

    .journey-step {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      margin-bottom: 14px;
    }

    .step-num {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: var(--grad);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 14px;
      flex-shrink: 0;
    }

    .step-done {
      background: linear-gradient(135deg, #22c55e, #16a34a);
    }

    .step-title {
      font-weight: 700;
      font-size: 14.5px;
    }

    .step-sub {
      font-size: 12.5px;
      color: var(--muted);
    }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ ⑨ WHATSAPP / CHAT SUPPORT (float) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    .float-actions {
      position: fixed;
      bottom: 26px;
      right: 26px;
      z-index: 999;
      display: flex;
      flex-direction: column;
      gap: 10px;
      align-items: flex-end;
    }

    .float-btn {
      width: 54px;
      height: 54px;
      border-radius: 50%;
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 26px;
      box-shadow: 0 6px 22px rgba(0, 0, 0, .22);
      transition: transform .18s, box-shadow .18s;
      text-decoration: none;
      position: relative;
    }

    .float-btn:hover {
      transform: scale(1.12);
    }

    .float-btn.wa {
      background: #25d366;
      box-shadow: 0 6px 22px rgba(37, 211, 102, .4);
    }

    .float-btn.call {
      background: #7c3aed;
      box-shadow: 0 6px 22px rgba(124, 58, 237, .4);
    }

    .float-tooltip {
      position: absolute;
      right: 62px;
      background: #fff;
      color: #14171f;
      font-size: 12.5px;
      font-weight: 700;
      padding: 5px 12px;
      border-radius: 20px;
      box-shadow: var(--sh-sm);
      white-space: nowrap;
      opacity: 0;
      transform: translateX(8px);
      transition: opacity .18s, transform .18s;
      pointer-events: none;
    }

    .float-btn:hover .float-tooltip {
      opacity: 1;
      transform: translateX(0);
    }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ ⑩ FOOTER ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    footer {
      background: var(--card);
      border-top: 1px solid var(--border);
      padding: 52px 0 28px;
      margin-top: 48px;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr 1fr;
      gap: 36px;
      margin-bottom: 40px;
    }

    .footer-brand p {
      font-size: 13.5px;
      color: var(--muted);
      line-height: 1.7;
      margin-top: 12px;
      max-width: 240px;
    }

    .footer-social {
      display: flex;
      gap: 8px;
      margin-top: 16px;
    }

    .soc-btn {
      width: 36px;
      height: 36px;
      border-radius: 10px;
      background: var(--plum);
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      transition: transform .15s, background .15s;
      text-decoration: none;
    }

    .soc-btn:hover {
      transform: translateY(-2px);
      background: var(--accent);
    }

    .footer-col h5 {
      font-family: 'Sora', sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      color: var(--text);
      margin-bottom: 16px;
    }

    .footer-col ul {
      list-style: none;
    }

    .footer-col li {
      margin-bottom: 10px;
    }

    .footer-col li a {
      font-size: 13.5px;
      color: var(--muted);
      transition: color .14s;
    }

    .footer-col li a:hover {
      color: var(--accent);
    }

    .footer-contact-item {
      display: flex;
      gap: 8px;
      align-items: flex-start;
      margin-bottom: 10px;
      font-size: 13.5px;
      color: var(--muted);
    }

    .footer-contact-item a {
      color: var(--muted);
      transition: color .14s;
    }

    .footer-contact-item a:hover {
      color: var(--accent);
    }

    .footer-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 16px;
    }

    .footer-badge {
      font-size: 11px;
      font-weight: 700;
      background: var(--plum);
      color: var(--accent);
      border: 1px solid var(--border-purple);
      padding: 4px 10px;
      border-radius: 999px;
    }

    .footer-bottom {
      border-top: 1px solid var(--border);
      padding-top: 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
    }

    .footer-bottom small {
      font-size: 12.5px;
      color: var(--muted);
    }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ COUPON POPUP (original preserved) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    .overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, .62);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 9999;
      backdrop-filter: blur(5px);
      animation: fadeIn .3s ease;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
      }

      to {
        opacity: 1;
      }
    }

    .bubbles {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      overflow: hidden;
      z-index: 0;
    }

    .bubbles span {
      position: absolute;
      bottom: -50px;
      width: 40px;
      height: 40px;
      background: rgba(255, 255, 255, .2);
      border-radius: 50%;
      animation: rise 10s infinite ease-in;
    }

    .bubbles span:nth-child(1) {
      left: 10%;
      animation-duration: 12s;
      width: 30px;
      height: 30px;
    }

    .bubbles span:nth-child(2) {
      left: 20%;
      animation-duration: 10s;
      width: 50px;
      height: 50px;
    }

    .bubbles span:nth-child(3) {
      left: 35%;
      animation-duration: 14s;
    }

    .bubbles span:nth-child(4) {
      left: 50%;
      animation-duration: 9s;
      width: 60px;
      height: 60px;
    }

    .bubbles span:nth-child(5) {
      left: 65%;
      animation-duration: 11s;
    }

    .bubbles span:nth-child(6) {
      left: 80%;
      animation-duration: 13s;
      width: 25px;
      height: 25px;
    }

    .bubbles span:nth-child(7) {
      left: 90%;
      animation-duration: 15s;
      width: 45px;
      height: 45px;
    }

    .bubbles span:nth-child(8) {
      left: 25%;
      animation-duration: 16s;
      width: 35px;
      height: 35px;
    }

    .bubbles span:nth-child(9) {
      left: 75%;
      animation-duration: 12s;
    }

    .bubbles span:nth-child(10) {
      left: 55%;
      animation-duration: 18s;
      width: 40px;
      height: 40px;
    }

    @keyframes rise {
      0% {
        transform: translateY(0) scale(1);
        opacity: .6;
      }

      50% {
        opacity: 1;
      }

      100% {
        transform: translateY(-110vh) scale(1.2);
        opacity: 0;
      }
    }

    .popup {
      background: linear-gradient(180deg, #7c3aed 0%, #ef4444 100%);
      color: #fff;
      padding: 36px 28px;
      border-radius: 24px;
      width: 380px;
      max-width: 95%;
      text-align: center;
      position: relative;
      z-index: 1;
      box-shadow: 0 20px 60px rgba(0, 0, 0, .4);
      animation: scaleUp .4s cubic-bezier(.175, .885, .32, 1.275);
    }

    @keyframes scaleUp {
      from {
        transform: scale(.8);
        opacity: 0;
      }

      to {
        transform: scale(1);
        opacity: 1;
      }
    }

    .popup h1 {
      font-size: 42px;
      margin-bottom: 8px;
    }

    .popup .subtitle {
      font-size: 15px;
      opacity: .9;
      margin-bottom: 20px;
    }

    .timer {
      font-size: 32px;
      font-weight: 800;
      background: rgba(255, 255, 255, .2);
      border-radius: 12px;
      padding: 10px 20px;
      display: inline-block;
      margin-bottom: 20px;
      letter-spacing: 3px;
    }

    .coupon-box {
      margin: 20px auto;
      display: flex;
      justify-content: center;
      align-items: center;
      border: 2.5px dashed rgba(255, 255, 255, .6);
      border-radius: 12px;
      overflow: hidden;
      width: fit-content;
      background: rgba(255, 255, 255, .15);
    }

    .coupon-box span {
      padding: 12px 20px;
      font-size: 22px;
      font-weight: 800;
      letter-spacing: 2px;
    }

    .coupon-box button {
      background: #fff;
      border: none;
      color: var(--accent);
      font-weight: 800;
      padding: 12px 18px;
      cursor: pointer;
      font-size: 14px;
      transition: background .2s;
    }

    .coupon-box button:hover {
      background: #f5f0ff;
    }

    .coupon-box button.copied {
      background: #22c55e !important;
      color: #fff;
    }

    .popup-cta {
      background: #fff;
      color: var(--accent);
      border: none;
      padding: 14px 28px;
      font-size: 15px;
      font-weight: 800;
      border-radius: 12px;
      cursor: pointer;
      margin-top: 16px;
      transition: transform .15s, box-shadow .15s;
      width: 100%;
    }

    .popup-cta:hover {
      transform: translateY(-1px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, .2);
    }

    .popup .small {
      font-size: 12px;
      margin-top: 12px;
      opacity: .8;
    }

    .popup .close {
      position: absolute;
      top: 12px;
      right: 14px;
      font-size: 28px;
      background: rgba(255, 255, 255, .2);
      border: none;
      color: #fff;
      cursor: pointer;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      line-height: 1;
      transition: background .15s;
    }

    .popup .close:hover {
      background: rgba(255, 255, 255, .35);
    }

    /* ── MISC ── */
    .price-old {
      font-size: 20px;
      text-decoration: line-through;
      color: #9ca3af;
    }

    .price-new {
      font-size: clamp(34px, 4.5vw, 50px);
      font-weight: 800;
      color: var(--green);
      font-family: 'Sora', sans-serif;
    }

    .price-badge {
      font-size: 12px;
      font-weight: 700;
      color: var(--accent2);
      background: #fef2f2;
      border: 1px solid #fecaca;
      border-radius: 8px;
      padding: 4px 10px;
      display: inline-block;
      margin-left: 8px;
    }

    .emi-note {
      background: linear-gradient(135deg, #ecfdf5, #d1fae5);
      border: 1px solid #a7f3d0;
      border-radius: 11px;
      padding: 11px 14px;
      font-size: 13.5px;
      font-weight: 600;
      color: #065f46;
      display: flex;
      align-items: center;
      gap: 7px;
      margin: 14px 0;
    }

    /* ── RESPONSIVE ── */
    @media(max-width:1060px) {

      .hero-wrap,
      .cert-wrap,
      .proof-wrap {
        grid-template-columns: 1fr;
      }

      .form-card {
        position: static;
      }

      .courses-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .footer-top {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media(max-width:768px) {
      .kpis {
        grid-template-columns: 1fr 1fr;
      }

      .hero-bullets {
        grid-template-columns: 1fr;
      }

      .courses-grid {
        grid-template-columns: 1fr;
      }

      .videos-wrap {
        grid-template-columns: 1fr;
      }

      .reviews-grid {
        grid-template-columns: 1fr;
      }

      .cta-bottom {
        grid-template-columns: 1fr;
      }

      .final-cta {
        padding: 40px 22px;
      }

      .trust-item {
        padding: 7px 12px;
        font-size: 12.5px;
      }

      .footer-top {
        grid-template-columns: 1fr;
      }

      .photo-mosaic {
        grid-template-columns: 1fr 1fr;
      }

      .photo-tile.tall {
        grid-row: auto;
        min-height: 160px;
      }
    }

    @media(max-width:480px) {
      .nav-badges {
        display: none;
      }

      .hero-actions {
        flex-direction: column;
      }

      .btn-lg {
        width: 100%;
        justify-content: center;
      }

      .kpis {
        grid-template-columns: 1fr 1fr;
      }

      .rating-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
      }
    }

    @media(prefers-reduced-motion:reduce) {

      *,
      .reveal {
        animation: none !important;
        transition: none !important;
      }
    }

    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    /* ── WHY OMNILEARN — feature cards ── */
    .feat-card {
      background: var(--card);
      border: 1.5px solid var(--border);
      border-radius: 18px;
      padding: 26px;
      position: relative;
      overflow: hidden;
      transition: transform .2s, box-shadow .2s;
    }

    .feat-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--grad);
    }

    .feat-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--sh-md);
    }

    .feat-icon {
      width: 50px;
      height: 50px;
      border-radius: 13px;
      background: var(--plum);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 23px;
      margin-bottom: 14px;
    }

    .feat-card h4 {
      font-family: 'Sora', sans-serif;
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 7px;
    }

    .feat-card p {
      font-size: 13.5px;
      color: var(--muted);
      line-height: 1.65;
    }

    /* ── CURRICULUM accordion ── */
    .curr-item {
      margin-bottom: 10px;
    }

    .curr-item details {
      background: var(--card);
      border: 1.5px solid var(--border);
      border-radius: 14px;
      overflow: hidden;
      transition: border-color .2s, box-shadow .2s;
    }

    .curr-item details[open] {
      border-color: rgba(124, 58, 237, .3);
      box-shadow: var(--sh-sm);
    }

    .curr-q {
      cursor: pointer;
      list-style: none;
      padding: 15px 18px;
      display: flex;
      align-items: center;
      gap: 12px;
      font-family: 'Sora', sans-serif;
      font-weight: 700;
      font-size: 14.5px;
      user-select: none;
    }

    .curr-q:hover {
      background: var(--plum);
    }

    .curr-num {
      width: 28px;
      height: 28px;
      border-radius: 8px;
      background: var(--grad);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      font-weight: 800;
      flex-shrink: 0;
    }

    .curr-list {
      list-style: none;
      padding: 0 18px 14px 58px;
    }

    .curr-list li {
      font-size: 13.5px;
      color: var(--muted);
      margin: 7px 0;
      display: flex;
      gap: 7px;
      align-items: flex-start;
    }

    .curr-list li::before {
      content: '▸';
      color: var(--accent);
      flex-shrink: 0;
    }

    /* ── INSTRUCTOR stat boxes ── */
    .inst-stat-box {
      background: var(--rose);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 14px 16px;
      text-align: center;
    }

    .isb-num {
      font-family: 'Sora', sans-serif;
      font-size: 22px;
      font-weight: 800;
      color: var(--accent);
      line-height: 1;
      margin-bottom: 3px;
    }

    .isb-lbl {
      font-size: 12px;
      color: var(--muted);
      font-weight: 500;
    }

    /* ── FEES card ── */
    .fees-card {
      background: var(--card);
      border: 1.5px solid var(--border);
      border-radius: 20px;
      padding: 28px;
      box-shadow: var(--sh-sm);
      margin-top: 20px;
    }

    /* ── extra responsive for new sections ── */
    @media(max-width:768px) {
      .feat-icon {
        width: 44px;
        height: 44px;
        font-size: 20px;
      }
    }

    @media(max-width:1060px) {

      /* curriculum 2-col becomes 1-col */
      section .container>div[style*="grid-template-columns:1fr 1fr"] {
        grid-template-columns: 1fr !important;
      }
    }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ CAMPUS GALLERY ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    .campus-gallery {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto auto;
      gap: 12px;
    }

    .cg-main {
      grid-row: span 1;
      grid-column: 1;
      border-radius: 20px;
      overflow: hidden;
      position: relative;
      cursor: pointer;
      aspect-ratio: 4/3;
    }

    .cg-secondary {
      grid-column: 2;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .cg-wide {
      grid-column: 1/-1;
      border-radius: 20px;
      overflow: hidden;
      position: relative;
      cursor: pointer;
      aspect-ratio: 16/5;
    }

    .cg-tile {
      border-radius: 14px;
      overflow: hidden;
      position: relative;
      cursor: pointer;
      aspect-ratio: 4/3;
    }

    .cg-main img,
    .cg-tile img,
    .cg-wide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .4s ease, filter .4s ease;
    }

    .cg-main:hover img,
    .cg-tile:hover img,
    .cg-wide:hover img {
      transform: scale(1.05);
      filter: brightness(0.9);
    }

    .cg-overlay {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: flex-end;
      padding: 14px 16px;
      background: linear-gradient(to top, rgba(20, 10, 30, .7) 0%, transparent 60%);
      opacity: 0;
      transition: opacity .3s;
    }

    .cg-overlay span {
      color: #fff;
      font-weight: 700;
      font-size: 13px;
      font-family: 'Sora', sans-serif;
    }

    .cg-main:hover .cg-overlay,
    .cg-tile:hover .cg-overlay,
    .cg-wide:hover .cg-overlay {
      opacity: 1;
    }

    .cg-wide .cg-overlay {
      opacity: 1;
      background: linear-gradient(to top, rgba(20, 10, 30, .65) 0%, transparent 55%);
    }

    .cg-wide .cg-overlay span {
      font-size: 16px;
    }

    /* Lightbox */
    .lightbox {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 9000;
      background: rgba(0, 0, 0, .88);
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 12px;
      cursor: pointer;
    }

    .lightbox.open {
      display: flex;
    }

    .lightbox img {
      max-width: 90vw;
      max-height: 80vh;
      border-radius: 14px;
      object-fit: contain;
      box-shadow: 0 24px 80px rgba(0, 0, 0, .5);
      cursor: default;
    }

    .lb-close {
      position: absolute;
      top: 18px;
      right: 22px;
      font-size: 32px;
      background: rgba(255, 255, 255, .15);
      border: none;
      color: #fff;
      cursor: pointer;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background .15s;
    }

    .lb-close:hover {
      background: rgba(255, 255, 255, .28);
    }

    .lb-prev,
    .lb-next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      font-size: 28px;
      background: rgba(255, 255, 255, .15);
      border: none;
      color: #fff;
      cursor: pointer;
      width: 52px;
      height: 52px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background .15s;
      line-height: 1;
    }

    .lb-prev {
      left: 20px;
    }

    .lb-next {
      right: 20px;
    }

    .lb-prev:hover,
    .lb-next:hover {
      background: rgba(255, 255, 255, .28);
    }

    .lb-caption {
      color: rgba(255, 255, 255, .82);
      font-size: 14px;
      font-weight: 600;
      text-align: center;
    }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ VIDEO CAROUSEL ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    .vc-root {
      position: relative;
      padding: 0 52px;
    }

    .vc-track-wrap {
      overflow: hidden;
      border-radius: 20px;
    }

    .vc-track {
      display: flex;
      gap: 24px;
      transition: transform .42s cubic-bezier(.4, 0, .2, 1);
      will-change: transform;
    }

    .vc-slide {
      flex: 0 0 calc((100% - 48px)/3);
      min-width: 0;
    }

    .vc-card {
      background: var(--card);
      border: 1.5px solid var(--border);
      border-radius: 18px;
      overflow: hidden;
      box-shadow: var(--sh-sm);
      height: 100%;
      transition: transform .22s, box-shadow .22s;
    }

    .vc-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--sh-md);
    }

    /* thumbnail / click-to-play */
    .vc-thumb {
      position: relative;
      aspect-ratio: 16/9;
      cursor: pointer;
      background: #000;
      overflow: hidden;
    }

    .vc-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .3s, opacity .3s;
    }

    .vc-thumb:hover img {
      transform: scale(1.04);
      opacity: .85;
    }

    .vc-play-btn {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      pointer-events: none;
    }

    .vc-play-btn svg {
      filter: drop-shadow(0 4px 12px rgba(0, 0, 0, .5));
      transition: transform .2s;
    }

    .vc-thumb:hover .vc-play-btn svg {
      transform: scale(1.12);
    }

    .vc-thumb iframe {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: 0;
      display: block;
    }

    /* card info row */
    .vc-info {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px 16px;
      border-top: 1px solid var(--border);
    }

    .vc-av {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 15px;
      color: #fff;
    }

    .vc-stars {
      color: #f59e0b;
      font-size: 12px;
      margin-bottom: 2px;
    }

    .vc-name {
      font-size: 13.5px;
      font-weight: 700;
      line-height: 1.2;
    }

    .vc-role {
      font-size: 11.5px;
      color: var(--muted);
    }

    /* arrows */
    .vc-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-calc(50% + 28px));
      width: 42px;
      height: 42px;
      border-radius: 50%;
      border: 1.5px solid var(--border);
      background: var(--card);
      color: var(--text);
      font-size: 18px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: var(--sh-sm);
      transition: background .15s, box-shadow .15s, opacity .15s;
      z-index: 2;
    }

    .vc-arrow:hover {
      background: var(--accent);
      color: #fff;
      border-color: var(--accent);
      box-shadow: var(--sh-md);
    }

    .vc-arrow:disabled {
      opacity: .3;
      cursor: default;
      pointer-events: none;
    }

    .vc-prev {
      left: 0;
    }

    .vc-next {
      right: 0;
    }

    /* dots */
    .vc-dots {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 20px;
    }

    .vc-dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: var(--border);
      border: none;
      cursor: pointer;
      padding: 0;
      transition: background .2s, width .2s;
    }

    .vc-dot.active {
      background: var(--accent);
      width: 24px;
    }

    /* responsive */
    @media(max-width:960px) {
      .vc-slide {
        flex: 0 0 calc((100% - 24px)/2);
      }
    }

    @media(max-width:600px) {
      .vc-slide {
        flex: 0 0 100%;
      }

      .vc-root {
        padding: 0 40px;
      }
    }

    /* OLD testi classes kept for safety (unused) */
    .testi-layout,
    .testi-featured,
    .testi-sidebar {
      display: none;
    }

    /* MODERN LUCIDE ICONS */
    .lucide {
      width: 18px;
      height: 18px;
      stroke-width: 2.2;
      vertical-align: middle;
    }

    .hb-icon .lucide,
    .ti-icon .lucide,
    .feat-icon .lucide,
    .cb-icon .lucide,
    .float-btn .lucide,
    .footer-contact-item .lucide,
    .partner-chip .lucide,
    .nav-badge .lucide,
    .course-meta .lucide,
    .rating-chip .lucide {
      width: 18px;
      height: 18px;
    }

    .feat-icon .lucide,
    .cb-icon .lucide {
      width: 24px;
      height: 24px;
    }

    .float-btn .lucide {
      width: 24px;
      height: 24px;
      stroke: #fff;
    }

    .nav-badge,
    .trust-item,
    .course-meta span,
    .rating-chip,
    .hb-item {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    /* ANIMATED COUNTERS */
    .counter,
    .animated-price {
      transition: all .3s ease;
    }

    .animated-price {
      display: inline-block;
      font-weight: 800;
      color: var(--green);
      font-family: 'Sora', sans-serif;
      font-size: clamp(34px, 4.5vw, 50px);
    }


    /* FOOTER MODERN ICONS */
    .footer-contact-item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
    }

    .footer-contact-item .lucide {
      width: 18px;
      height: 18px;
      color: var(--accent);
      flex-shrink: 0;
      margin-top: 2px;
    }


    /* FAST FORM SUBMIT */
    .spin-loader {
      animation: spinLoader 1s linear infinite;
    }

    <blade keyframes|%20spinLoader%7B>from {
      transform: rotate(0deg);
    }

    to {
      transform: rotate(360deg);
    }
    }

    #submitBtn {
      transition: all .2s ease;
    }
 
 .hero-title{
    font-size:clamp(1.3rem,3vw,3rem) !important;
    line-height:1.12;
    font-weight:800;
    letter-spacing:-1px;
    margin-bottom:20px;
}

/* Laptop */
@media(max-width:1200px){

    .hero-title{
        font-size:clamp(1.8rem,4.2vw,3.6rem);
    }

}

/* Tablet */
@media(max-width:991px){

    .hero-title{
        font-size:clamp(1.8rem,5vw,3rem);
        line-height:1.15;
    }

}

/* Mobile */
@media(max-width:767px){

    .hero-title{
        font-size:clamp(1.7rem,7vw,2.5rem);
        line-height:1.2;
        letter-spacing:-0.5px;
    }

}
/* ONLY ADD THIS */

.partner-chip{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
}

.partner-chip img{
    width:110px;
    height:40px;
    object-fit:contain;
    object-position:center;
    display:block;
}

/* Better look for tall logos */
.partner-chip img[alt="Infosys"]{
    width:120px;
}

.partner-chip img[alt="Accenture"]{
    width:130px;
}

.partner-chip img[alt="Tech Mahindra"]{
    width:125px;
}

/* Mobile */
@media(max-width:768px){

    .partner-chip img{
        width:90px;
        height:32px;
    }

}



/* =========================================================
   FORCE SAME DESIGN IN LIGHT + DARK MODE
========================================================= */

:root{
    color-scheme: light;
}

/* Prevent browser auto dark mode */
html{
    color-scheme: light;
    background:#fdf2f8 !important;
}

body{
    background:
        radial-gradient(circle at top left,#fce7f3 0%,#fdf2f8 40%,#fae8ff 100%) !important;
    color:#111827 !important;
}

/* Main headings */
h1,
h2,
h3,
.h1,
.h2,
.h3,
.hero-title,
.sec-head h2{
    color:#111827 !important;
}

/* Paragraphs */
p,
li,
span,
label,
.review-text,
.cb-desc,
.faq-a,
.hero-sub{
    color:#4b5563 !important;
}

/* Gradient text */
.grad-text{
    background:linear-gradient(135deg,#7c3aed,#ec4899) !important;
    -webkit-background-clip:text !important;
    -webkit-text-fill-color:transparent !important;
    background-clip:text !important;
}

/* Cards */
.course-card,
.feat-card,
.review-card,
.cert-benefit,
.fees-card,
.form-card,
.faq-item,
.partner-chip,
.kpi,
.inst-stat-box{
    background:#ffffff !important;
    color:#111827 !important;
    border-color:rgba(124,58,237,.12) !important;
}

/* Dark sections keep readable */
.bg-alt,
.bg-rose{
    background:transparent !important;
}

/* Inputs */
input,
select,
textarea{
    background:#ffffff !important;
    color:#111827 !important;
    border:1px solid rgba(124,58,237,.18) !important;
}

input::placeholder,
textarea::placeholder{
    color:#6b7280 !important;
}

/* FAQ */
.faq-q{
    color:#111827 !important;
}

/* Pills */
.pill{
    background:rgba(124,58,237,.08) !important;
    color:#7c3aed !important;
    border:1px solid rgba(124,58,237,.12) !important;
}

/* Navigation badges */
.nav-badge{
    background:#ffffff !important;
    color:#111827 !important;
}

/* Footer */
footer,
.footer{
    background:#ffffff !important;
    color:#111827 !important;
}

/* Buttons keep original */
.btn{
    color:#ffffff !important;
}

/* Outline buttons */
.btn-outline{
    color:#7c3aed !important;
    border-color:#7c3aed !important;
    background:#ffffff !important;
}

/* White button */
.btn-white{
    color:#111827 !important;
}

/* Icons */
svg,
i{
    color:inherit;
}

/* Counter + stats */
.kpi p,
.isb-lbl,
.cert-meta,
.rev-meta{
    color:#6b7280 !important;
}

/* Fix hidden text inside dark browser mode */
*{
    -webkit-text-fill-color:unset;
}

/* Force sections visible */
.section{
    opacity:1 !important;
}

/* Keep marquee logos visible */
.partner-chip img{
    filter:none !important;
    opacity:1 !important;
}

/* Form labels */
form label{
    color:#111827 !important;
    font-weight:600;
}

/* Hero section */
.hero{
    background:transparent !important;
}

/* Final CTA */
.final-cta{
    color:#ffffff !important;
}

.final-cta h2,
.final-cta p,
.final-cta span{
    color:#ffffff !important;
}

/* Mobile fixes */
@media(max-width:768px){

    h1,
    .hero-title{
        color:#111827 !important;
    }

    .sec-head h2{
        color:#111827 !important;
    }

    .course-card,
    .feat-card,
    .review-card,
    .faq-item{
        background:#ffffff !important;
    }
}