   :root {
      --primary: #006fb8;
      --primary-dark: #005a94;
      --primary-light: #e8f4fd;
      --secondary: #FFD539;
      --secondary-dark: #e6be00;
      --accent: #f72585;
      --accent-dark: #d41070;
      --white: #ffffff;
      --dark: #0a1628;
      --gray: #f5f7fa;
      --text-muted: #64748b;
      --border: #e2e8f0;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }

    body {
      font-family: 'Outfit', sans-serif;
      color: var(--dark);
      background: #fff;
      overflow-x: hidden;
    }

    h1, h2, h3, h4 { font-family: 'Sora', sans-serif; }

    /* ── NAV ── */
    nav {
      background: var(--primary);
      padding: 0 6%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .nav-logo {
      font-family: 'Sora', sans-serif;
      font-weight: 800;
      font-size: 22px;
      color: var(--white);
      letter-spacing: -0.5px;
    }
    .nav-logo span { color: var(--secondary); }

    .nav-cta {
      background: var(--secondary);
      color: var(--primary);
      font-family: 'Sora', sans-serif;
      font-weight: 700;
      font-size: 13px;
      padding: 9px 22px;
      border-radius: 100px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      transition: background 0.2s;
    }
    .nav-cta:hover { background: var(--secondary-dark); }

    /* ── HERO ── */
    .hero {
      background: var(--primary);
      padding: 80px 6% 90px;
      display: grid;
      grid-template-columns: 1fr 420px;
      gap: 64px;
      align-items: center;
      min-height: 92vh;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -100px; right: -100px;
      width: 480px; height: 480px;
      background: var(--secondary);
      border-radius: 50%;
      opacity: 0.07;
      pointer-events: none;
    }

    .hero::after {
      content: '';
      position: absolute;
      bottom: -80px; left: 25%;
      width: 320px; height: 320px;
      background: var(--accent);
      border-radius: 50%;
      opacity: 0.06;
      pointer-events: none;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: rgba(255,213,57,0.12);
      border: 1px solid rgba(255,213,57,0.35);
      color: var(--secondary);
      font-size: 11.5px;
      font-weight: 600;
      padding: 6px 14px;
      border-radius: 100px;
      margin-bottom: 26px;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    .hero-badge::before {
      content: '';
      width: 6px; height: 6px;
      background: var(--secondary);
      border-radius: 50%;
      flex-shrink: 0;
    }

    .hero h1 {
      font-size: clamp(38px, 4.8vw, 62px);
      font-weight: 800;
      color: var(--white);
      line-height: 1.08;
      letter-spacing: -2px;
      margin-bottom: 22px;
    }

    .hero h1 em {
      font-style: normal;
      color: var(--secondary);
    }

    .hero-sub {
      font-size: 16px;
      color: rgba(255,255,255,0.68);
      line-height: 1.65;
      margin-bottom: 44px;
      max-width: 520px;
    }

    .hero-stats {
      display: flex;
      gap: 36px;
      flex-wrap: wrap;
    }

    .hero-stat {
      border-left: 2.5px solid var(--secondary);
      padding-left: 14px;
    }

    .hero-stat-num {
      font-family: 'Sora', sans-serif;
      font-size: 28px;
      font-weight: 800;
      color: var(--secondary);
      letter-spacing: -1px;
      line-height: 1;
    }

    .hero-stat-label {
      font-size: 12px;
      color: rgba(255,255,255,0.55);
      margin-top: 4px;
    }

    /* ── FORM ── */
    .hero-form {
      background: white;
      border-radius: 22px;
      padding: 34px 30px;
      box-shadow: 0 40px 100px rgba(0,0,0,0.28);
      position: relative;
      z-index: 1;
    }

    .form-heading {
      font-family: 'Sora', sans-serif;
      font-size: 19px;
      font-weight: 800;
      color: var(--dark);
      margin-bottom: 4px;
      letter-spacing: -0.5px;
    }

    .form-sub {
      font-size: 13px;
      color: var(--text-muted);
      margin-bottom: 22px;
    }

    .form-group { margin-bottom: 12px; }

    .form-group input,
    .form-group select {
      width: 100%;
      padding: 12px 15px;
      border: 1.5px solid var(--border);
      border-radius: 10px;
      font-family: 'Outfit', sans-serif;
      font-size: 14px;
      color: var(--dark);
      background: #fafafa;
      outline: none;
      transition: border-color 0.2s, background 0.2s;
      appearance: none;
      -webkit-appearance: none;
    }

    .form-group input:focus,
    .form-group select:focus {
      border-color: var(--primary);
      background: white;
    }

    .form-group input::placeholder { color: #adb5bd; }

    .select-wrap { position: relative; }
    .select-wrap::after {
      content: '▾';
      position: absolute;
      right: 14px; top: 50%;
      transform: translateY(-50%);
      color: var(--text-muted);
      font-size: 12px;
      pointer-events: none;
    }

    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }

    .btn-cta {
      width: 100%;
      padding: 14px;
      background: var(--accent);
      color: white;
      font-family: 'Sora', sans-serif;
      font-weight: 700;
      font-size: 15px;
      border: none;
      border-radius: 10px;
      cursor: pointer;
      margin-top: 6px;
      transition: background 0.2s, transform 0.1s;
      letter-spacing: 0.02em;
    }
    .btn-cta:hover { background: var(--accent-dark); }
    .btn-cta:active { transform: scale(0.99); }

    .form-note {
      text-align: center;
      font-size: 11.5px;
      color: var(--text-muted);
      margin-top: 10px;
    }

    /* ── TICKER ── */
    .ticker {
      background: var(--secondary);
      padding: 15px 0;
      overflow: hidden;
      white-space: nowrap;
    }

    .ticker-inner {
      display: inline-block;
      animation: tickerScroll 32s linear infinite;
      font-family: 'Sora', sans-serif;
      font-weight: 700;
      font-size: 14px;
      color: var(--primary);
    }

    @keyframes tickerScroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    .ticker-dot {
      display: inline-block;
      width: 5px; height: 5px;
      background: var(--accent);
      border-radius: 50%;
      margin: 0 22px;
      vertical-align: middle;
    }

    /* ── SHARED ── */
    .section { padding: 88px 6%; }

    .tag {
      display: inline-block;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--primary);
      background: var(--primary-light);
      padding: 5px 13px;
      border-radius: 100px;
      margin-bottom: 14px;
    }

    .section-title {
      font-size: clamp(30px, 3.8vw, 48px);
      font-weight: 800;
      line-height: 1.12;
      letter-spacing: -1.5px;
      margin-bottom: 12px;
    }

    .section-title em {
      font-style: normal;
      color: var(--primary);
    }

    .section-sub {
      font-size: 16px;
      color: var(--text-muted);
      max-width: 560px;
      line-height: 1.6;
      margin-bottom: 52px;
    }

    /* ── SOCIAL PROOF ── */
    .social-proof {
      background: var(--primary);
      text-align: center;
      padding: 72px 6%;
    }

    .social-proof h2 {
      font-size: clamp(34px, 4.5vw, 56px);
      font-weight: 800;
      color: white;
      letter-spacing: -2px;
    }

    .social-proof h2 span { color: var(--secondary); }

    .social-proof p {
      color: rgba(255,255,255,0.65);
      margin: 14px 0 32px;
      font-size: 16px;
    }

    .btn-yellow {
      display: inline-block;
      padding: 14px 36px;
      background: var(--secondary);
      color: var(--primary);
      font-family: 'Sora', sans-serif;
      font-weight: 700;
      font-size: 15px;
      border-radius: 100px;
      border: none;
      cursor: pointer;
      transition: transform 0.15s, background 0.2s;
      text-decoration: none;
    }
    .btn-yellow:hover { transform: scale(1.04); background: var(--secondary-dark); }

    /* ── RANKINGS ── */
    .rankings-section { background: #f7fafd; }

    .rankings-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .rank-card {
      background: white;
      border: 1.5px solid var(--border);
      border-radius: 18px;
      padding: 30px;
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .rank-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 40px rgba(0,111,184,0.1);
    }

    .rank-card.hero-rank {
      background: var(--primary);
      border-color: var(--primary);
      grid-column: span 1;
    }

    .rank-num {
      font-family: 'Sora', sans-serif;
      font-size: 35px;
      font-weight: 800;
      color: var(--primary);
      line-height: 1;
      margin-bottom: 15px;
    }

    .rank-card.hero-rank .rank-num { color: var(--secondary); }

    .rank-label {
      font-size: 15px;
      color: var(--dark);
      font-weight: 600;
      line-height: 1.4;
      margin-bottom: 12px;
    }

    .rank-card.hero-rank .rank-label { color: rgba(255,255,255,0.9); }

    .rank-source {
      font-size: 12px;
      color: var(--text-muted);
      font-weight: 500;
      line-height: 1.4;
      font-style: italic;
    }

    .rank-card.hero-rank .rank-source { color: rgba(255,255,255,0.5); }

    .rank-badge {
      display: inline-block;
      background: var(--secondary);
      color: var(--primary);
      font-size: 10px;
      font-weight: 800;
      padding: 3px 9px;
      border-radius: 100px;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      margin-bottom: 12px;
    }

    /* ── LEGACY ── */
    .legacy-section { background: white; }

    .legacy-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .legacy-card {
      padding: 26px 22px;
      background: var(--gray);
      border-radius: 16px;
      transition: background 0.2s;
    }

    .legacy-card:hover { background: #eef4fb; }

    .legacy-icon {
      width: 44px; height: 44px;
      background: var(--secondary);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      margin-bottom: 14px;
    }

    .legacy-card h4 {
      font-size: 25px;
      font-weight: 700;
      color: var(--accent);
      margin-bottom: 15px;
      line-height: 1.3;
    }

    .legacy-card p {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.55;
      margin-bottom: 0px;
    }

    /* ── COURSES ── */
    .courses-section { background: var(--primary); }

    .courses-section .tag {
      background: rgba(255,213,57,0.15);
      color: var(--secondary);
    }

    .courses-section .section-title { color: white; }
    .courses-section .section-title em { color: var(--secondary); font-style: normal; }
    .courses-section .section-sub { color: rgba(255,255,255,0.6); margin-bottom: 32px; }

    .course-tabs {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      margin-bottom: 28px;
    }

    .course-tab {
      padding: 8px 18px;
      border-radius: 100px;
      border: 1.5px solid rgba(255,255,255,0.2);
      color: rgba(255,255,255,0.65);
      font-family: 'Sora', sans-serif;
      font-size: 13px;
      font-weight: 600;
      cursor: pointer;
      background: transparent;
      transition: all 0.2s;
    }

    .course-tab:hover { border-color: rgba(255,255,255,0.4); color: white; }

    .course-tab.active {
      background: var(--secondary);
      border-color: var(--secondary);
      color: var(--primary);
    }

    .course-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 40px;
      min-height: 80px;
    }

    .course-pill {
      padding: 8px 17px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 100px;
      color: rgba(255,255,255,0.82);
      font-size: 13px;
      cursor: pointer;
      transition: all 0.15s;
      font-family: 'Outfit', sans-serif;
    }

    .course-pill:hover {
      background: rgba(255,213,57,0.15);
      border-color: var(--secondary);
      color: var(--secondary);
    }

    .btn-outline-yellow {
      display: inline-block;
      padding: 13px 30px;
      border: 2px solid var(--secondary);
      color: var(--secondary);
      font-family: 'Sora', sans-serif;
      font-weight: 700;
      font-size: 14px;
      border-radius: 100px;
      background: transparent;
      cursor: pointer;
      transition: all 0.2s;
    }
    .btn-outline-yellow:hover {
      background: var(--secondary);
      color: var(--primary);
    }

    /* ── PROCESS ── */
    .process-section { background: white; }

    .steps-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
      margin-bottom: 48px;
    }

    .step-card {
      padding: 30px 26px;
      border: 1.5px solid var(--border);
      border-radius: 20px;
      transition: border-color 0.2s, transform 0.2s;
      position: relative;
    }

    .step-card:hover {
      border-color: var(--primary);
      transform: translateY(-3px);
    }

    .step-num {
      font-family: 'Sora', sans-serif;
      font-size: 52px;
      font-weight: 800;
      color: var(--secondary);
      line-height: 1;
      margin-bottom: 14px;
      letter-spacing: -2px;
    }

    .step-title {
      font-family: 'Sora', sans-serif;
      font-size: 15px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 8px;
    }

    .step-desc {
      font-size: 13.5px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    .center { text-align: center; }

    .btn-pink {
      display: inline-block;
      padding: 15px 40px;
      background: var(--accent);
      font-family: 'Sora', sans-serif;
      font-weight: 700;
      font-size: 15px;
      border-radius: 100px;
      border: none;
      cursor: pointer;
      transition: transform 0.15s, background 0.2s;
      color: #fff;
    }
    .btn-pink:hover { transform: scale(1.04); background: var(--accent-dark); color: #fff;}

    /* ── WHY FATEH ── */
    .why-fateh { background: var(--secondary); }

    .why-fateh .tag {
      background: rgba(0,111,184,0.12);
      color: var(--primary);
    }

    .why-fateh .section-title { color: var(--primary); }
    .why-fateh .section-title em { color: var(--accent); }
    .why-fateh .section-sub { color: rgba(10,22,40,0.6); }

    .fateh-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    .fateh-card {
      background: white;
      border-radius: 18px;
      padding: 28px 24px;
    }

    .fateh-num {
      font-family: 'Sora', sans-serif;
      font-size: 30px;
      font-weight: 800;
      color: var(--accent);
      line-height: 1;
      margin-bottom: 8px;
    }

    .fateh-label {
      font-size: 13.5px;
      color: var(--dark);
      font-weight: 500;
      line-height: 1.45;
    }

    /* ── FINAL CTA ── */
    .final-cta {
      background: var(--dark);
      text-align: center;
      padding: 110px 6%;
      position: relative;
      overflow: hidden;
    }

    .final-cta::before {
      content: 'KCL';
      position: absolute;
      font-family: 'Sora', sans-serif;
      font-size: 300px;
      font-weight: 800;
      color: rgba(255,255,255,0.025);
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      pointer-events: none;
      white-space: nowrap;
      letter-spacing: -10px;
    }

    .final-cta h2 {
      font-size: clamp(38px, 5vw, 68px);
      font-weight: 800;
      color: white;
      letter-spacing: -2.5px;
      margin-bottom: 18px;
      position: relative;
    }

    .final-cta h2 span { 
    	color: var(--secondary); 
    	display: block;
    }

    .final-cta p {
      color: rgba(255,255,255,0.5);
      font-size: 16px;
      margin-bottom: 36px;
      position: relative;
    }

    /* ── FOOTER ── */
    footer {
      background: var(--primary);	
      padding: 10px 0;
    }
    .footer_sect{
    	display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;

    }
    footer p {
      font-size: 13px;
      color: rgba(255,255,255,0.45);
      margin-bottom: 0;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 960px) {
      .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 56px 5% 64px;
      }
      .rankings-grid { grid-template-columns: 1fr 1fr; }
      .legacy-grid { grid-template-columns: 1fr 1fr; }
      .steps-grid { grid-template-columns: 1fr 1fr; }
      .fateh-grid { grid-template-columns: 1fr 1fr; }

    }

    @media (max-width: 640px) {
      .hero-stats { gap: 22px; }
      .rankings-grid { grid-template-columns: 1fr; }
      .legacy-grid { grid-template-columns: 1fr; }
      .steps-grid { grid-template-columns: 1fr; }
      .fateh-grid { grid-template-columns: 1fr; }
      .form-grid { grid-template-columns: 1fr; }
      .rank-card.hero-rank { grid-column: span 1; }
    }