  /* ── Variables ── */
    :root {
      --navy:    #0f1f3d;
      --blue:    #1a3a6b;
      --gold:    #c8a84b;
      --gold-lt: #e8c96e;
      --cream:   #faf8f4;
      --gray:    #6b7280;
      --white:   #ffffff;
      --radius:  14px;
      --shadow:  0 8px 32px rgba(15,31,61,.12);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--cream);
      color: var(--navy);
      line-height: 1.65;
    }

    /* ── Hero ── */
    .hero {
      background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
      color: var(--white);
      padding: 80px 24px 72px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(200,168,75,.18) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero__breadcrumb {
      font-size: .8rem;
      font-weight: 500;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--gold-lt);
      margin-bottom: 20px;
    }

    .hero__breadcrumb a {
      color: inherit;
      text-decoration: none;
      opacity: .75;
      transition: opacity .2s;
    }
    .hero__breadcrumb a:hover { opacity: 1; }
    .hero__breadcrumb span { margin: 0 8px; opacity: .5; }

    .hero__tag {
      display: inline-block;
      background: rgba(200,168,75,.22);
      border: 1px solid rgba(200,168,75,.45);
      color: var(--gold-lt);
      font-size: .75rem;
      font-weight: 600;
      letter-spacing: .12em;
      text-transform: uppercase;
      padding: 5px 14px;
      border-radius: 100px;
      margin-bottom: 22px;
    }

    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 5vw, 3.4rem);
      font-weight: 900;
      line-height: 1.15;
      max-width: 740px;
      margin: 0 auto 22px;
    }

    .hero h1 em {
      font-style: normal;
      color: var(--gold-lt);
    }

    .hero__sub {
      font-size: 1.05rem;
      font-weight: 300;
      max-width: 560px;
      margin: 0 auto 36px;
      opacity: .88;
    }

    .hero__cta {
      display: inline-block;
      background: var(--gold);
      color: var(--navy);
      font-weight: 700;
      font-size: .95rem;
      padding: 14px 34px;
      border-radius: 100px;
      text-decoration: none;
      transition: background .2s, transform .2s;
      box-shadow: 0 4px 20px rgba(200,168,75,.4);
    }
    .hero__cta:hover { background: var(--gold-lt); transform: translateY(-2px); }

    /* ── Intro ── */
    .intro {
      max-width: 760px;
      margin: 64px auto;
      padding: 0 24px;
      text-align: center;
    }

    .intro h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.4rem, 3vw, 2rem);
      margin-bottom: 16px;
    }

    .intro p {
      font-size: 1.05rem;
      color: #374151;
      font-weight: 300;
    }

    /* ── Cards grid ── */
    .exams {
      max-width: 1100px;
      margin: 0 auto 80px;
      padding: 0 24px;
    }

    .exams__title {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem;
      font-weight: 700;
      letter-spacing: .06em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 32px;
      text-align: center;
    }

    .exams__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 24px;
    }

    .card {
      background: var(--white);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 36px 28px 32px;
      display: flex;
      flex-direction: column;
      text-decoration: none;
      color: var(--navy);
      border: 2px solid transparent;
      transition: border-color .25s, transform .25s, box-shadow .25s;
      position: relative;
      overflow: hidden;
    }

    .card::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--gold), var(--gold-lt));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .3s ease;
    }

    .card:hover {
      border-color: var(--gold);
      transform: translateY(-4px);
      box-shadow: 0 16px 48px rgba(15,31,61,.16);
    }
    .card:hover::after { transform: scaleX(1); }

    .card__icon {
      width: 52px;
      height: 52px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.6rem;
      margin-bottom: 20px;
      background: linear-gradient(135deg, rgba(200,168,75,.15), rgba(200,168,75,.05));
    }

    .card__name {
      font-family: 'Playfair Display', serif;
      font-size: 1.35rem;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .card__level {
      display: inline-block;
      font-size: .72rem;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--gold);
      background: rgba(200,168,75,.1);
      padding: 3px 10px;
      border-radius: 100px;
      margin-bottom: 14px;
    }

    .card__desc {
      font-size: .92rem;
      color: #4b5563;
      font-weight: 300;
      flex: 1;
      margin-bottom: 24px;
    }

    .card__link {
      font-size: .88rem;
      font-weight: 600;
      color: var(--navy);
      display: flex;
      align-items: center;
      gap: 6px;
      transition: gap .2s;
    }
    .card:hover .card__link { gap: 10px; }

    .card__link svg {
      width: 16px; height: 16px;
      stroke: var(--gold);
    }

    /* ── Why section ── */
    .why {
      background: var(--white);
      padding: 64px 24px;
    }

    .why__inner {
      max-width: 1000px;
      margin: 0 auto;
    }

    .why h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.5rem, 3vw, 2.1rem);
      text-align: center;
      margin-bottom: 48px;
    }

    .why__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 32px;
    }

    .why__item {
      text-align: center;
    }

    .why__num {
      font-family: 'Playfair Display', serif;
      font-size: 3rem;
      font-weight: 900;
      color: var(--gold);
      line-height: 1;
      margin-bottom: 8px;
    }

    .why__label {
      font-size: .95rem;
      font-weight: 500;
      margin-bottom: 6px;
    }

    .why__detail {
      font-size: .85rem;
      color: var(--gray);
      font-weight: 300;
    }

    /* ── CTA final ── */
    .cta-final {
      background: linear-gradient(135deg, var(--navy), var(--blue));
      color: var(--white);
      text-align: center;
      padding: 72px 24px;
    }

    .cta-final h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.6rem, 4vw, 2.4rem);
      margin-bottom: 14px;
    }

    .cta-final p {
      font-size: 1rem;
      opacity: .8;
      margin-bottom: 36px;
      font-weight: 300;
    }

    .cta-final__btns {
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn-primary {
      background: var(--gold);
      color: var(--navy);
      font-weight: 700;
      padding: 14px 32px;
      border-radius: 100px;
      text-decoration: none;
      font-size: .95rem;
      transition: background .2s, transform .2s;
    }
    .btn-primary:hover { background: var(--gold-lt); transform: translateY(-2px); }

    .btn-secondary {
      background: transparent;
      color: var(--white);
      font-weight: 500;
      padding: 14px 32px;
      border-radius: 100px;
      text-decoration: none;
      font-size: .95rem;
      border: 2px solid rgba(255,255,255,.4);
      transition: border-color .2s, transform .2s;
    }
    .btn-secondary:hover { border-color: var(--white); transform: translateY(-2px); }

    /* ── Animations ── */
    .fade-up {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity .5s ease, transform .5s ease;
    }
    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }

    @media (max-width: 600px) {
      .hero { padding: 56px 20px 52px; }
    }