/*
TemplateMo 622 Clearwave
https://templatemo.com/tm-622-clearwave
Free for personal and commercial use
*/

    /* ── TOKENS ── */
    :root {
      --bg:           #FFF8D9;
      --bg-alt:       #F7EFC8;
      --surface:      #FFFCED;
      --surface-2:    #FFFFFF;
      --accent:       #4F7D43;
      --accent-mid:   #6F9658;
      --accent-light: #A9C873;
      --earth:        #6A2E0E;
      --earth-mid:    #8B4A22;
      --accent-ghost: rgba(79,125,67,0.10);
      --accent-border:rgba(79,125,67,0.20);
      --text-1:       #2F1A0E;
      --text-2:       #5B4C37;
      --text-3:       #867A5A;
      --border:       rgba(106,46,14,0.12);
      --shadow-sm:    0 2px 12px rgba(106,46,14,0.07);
      --shadow-md:    0 8px 32px rgba(106,46,14,0.12);
      --shadow-lg:    0 24px 64px rgba(106,46,14,0.16);
      --silk:         cubic-bezier(0.16, 1, 0.3, 1);
      --silk-dur:     0.8s;
      --radius:       16px;
      --radius-lg:    24px;
    }

    /* ── RESET ── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; scroll-padding-top: 80px; }
    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--bg);
      color: var(--text-1);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }
    img { display: block; max-width: 100%; }
    button { cursor: pointer; border: none; background: none; font-family: inherit; }

    /* ── SUBTLE NOISE TEXTURE ── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      opacity: 0.022;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
      background-size: 128px 128px;
    }

    /* ── UTILITY ── */
    .container { max-width: 1160px; margin: 0 auto; padding: 0 32px; }
    .section-label {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
      text-transform: uppercase; color: var(--accent);
      background: var(--accent-ghost);
      border: 1px solid var(--accent-border);
      padding: 6px 14px; border-radius: 100px;
      margin-bottom: 20px;
    }
    .section-label::before {
      content: ''; width: 6px; height: 6px;
      background: var(--accent); border-radius: 50%;
    }
    .section-title {
      font-family: 'DM Sans', sans-serif;
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 700; letter-spacing: 0;
      line-height: 1.15; color: var(--text-1);
    }
    .section-title em {
      font-style: italic;
      font-family: 'Playfair Display', serif;
      color: var(--accent);
    }
    .section-sub {
      font-size: 1.0625rem; line-height: 1.75;
      color: var(--text-2); max-width: 520px; margin-top: 16px;
    }

    /* ── SCROLL REVEAL ── */
    .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--silk), transform 0.7s var(--silk); }
    .reveal.visible { opacity: 1; transform: none; }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }

    /* ══════════════════════════════════════════
       1. NAV
    ══════════════════════════════════════════ */
    .nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      padding: 12px 0;
      transition: padding var(--silk-dur) var(--silk), background var(--silk-dur) var(--silk), box-shadow var(--silk-dur) var(--silk);
    }
    .nav.scrolled {
      padding: 8px 0;
      background: rgba(255,248,217,0.94);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      box-shadow: 0 1px 0 var(--border);
    }
    .nav-inner {
      display: flex; align-items: center; justify-content: space-between;
      max-width: 1160px; margin: 0 auto; padding: 0 32px;
      gap: 32px;
      min-height: 64px;
    }
    .nav-logo {
      display: inline-flex; align-items: center; gap: 10px;
      font-size: 1.25rem; font-weight: 700; letter-spacing: 0;
      color: var(--text-1);
      flex-shrink: 0;
    }
    .nav-logo img {
      width: 42px; height: 42px; object-fit: cover; border-radius: 50%;
      box-shadow: 0 5px 16px rgba(106,46,14,0.16);
    }
    .nav-logo .brand-text span { color: var(--accent); }
    .nav-links {
      display: flex; align-items: center; gap: 16px;
      justify-content: center;
      flex: 0 1 auto;
    }
    .nav-links a {
      font-size: 0.9rem; font-weight: 500; color: var(--text-2);
      position: relative; padding: 8px 16px; border-radius: 100px;
      background: transparent;
      box-shadow: inset 0 0 0 0px var(--accent-border);
      transition: color 0.4s var(--silk), background 0.4s var(--silk), box-shadow 0.4s var(--silk);
      white-space: nowrap;
      line-height: 1.2;
    }
    .nav-links a:hover {
      color: var(--accent);
      background: var(--accent-ghost);
      box-shadow: inset 0 0 0 1px var(--accent-border);
    }
    .nav-cta {
      display: flex; align-items: center; gap: 16px;
      flex-shrink: 0;
    }
    .btn-ghost {
      font-size: 0.85rem; font-weight: 500; color: var(--text-2);
      padding: 8px 18px; border-radius: 100px;
      transition: color 0.3s, background 0.3s;
      white-space: nowrap;
      line-height: 1.2;
    }
    .btn-ghost:hover { color: var(--accent); background: var(--accent-ghost); }
    .btn-primary {
      font-size: 0.9rem; font-weight: 600; color: #fff;
      background: var(--earth); padding: 10px 24px; border-radius: 100px;
      transition: background var(--silk-dur) var(--silk), transform var(--silk-dur) var(--silk), box-shadow var(--silk-dur) var(--silk);
      box-shadow: 0 4px 16px rgba(106,46,14,0.25);
      white-space: nowrap;
      line-height: 1.2;
    }
    .btn-primary:hover {
      background: var(--earth-mid);
      transform: scale(1.02);
      box-shadow: 0 6px 24px rgba(106,46,14,0.35);
    }

    /* Hamburger */
    .nav-hamburger {
      display: none; flex-direction: column; gap: 5px;
      width: 28px; padding: 4px; cursor: pointer;
    }
    .nav-hamburger span {
      display: block; height: 2px; background: var(--text-1);
      border-radius: 2px; transition: all 0.4s var(--silk);
    }
    .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* Mobile Menu */
    .mobile-menu {
      position: fixed; inset: 0; z-index: 999;
      background: var(--bg);
      display: flex; flex-direction: column; align-items: center;
      justify-content: flex-start;
      gap: 0;
      opacity: 0; pointer-events: none;
      transition: opacity 0.4s var(--silk);
      overflow-y: auto;
      padding: 100px 32px 100px;
      -webkit-overflow-scrolling: touch;
    }
    .mobile-menu.open { opacity: 1; pointer-events: all; }
    .mobile-menu a {
      font-size: 1.1rem; font-weight: 600; letter-spacing: 0;
      color: var(--text-1); padding: 14px 0; width: 100%; text-align: center;
      border-bottom: 1px solid var(--border);
      opacity: 0; transform: translateY(16px);
      transition: opacity 0.5s var(--silk), transform 0.5s var(--silk), color 0.3s;
    }
    .mobile-menu a:first-child { border-top: 1px solid var(--border); }
    .mobile-menu.open a { opacity: 1; transform: none; }
    .mobile-menu a:hover { color: var(--accent); }
    .mobile-menu a:nth-child(1) { transition-delay: 0.05s; }
    .mobile-menu a:nth-child(2) { transition-delay: 0.10s; }
    .mobile-menu a:nth-child(3) { transition-delay: 0.15s; }
    .mobile-menu a:nth-child(4) { transition-delay: 0.20s; }
    .mobile-menu a:nth-child(5) { transition-delay: 0.25s; }
    .mobile-menu a:nth-child(6) { transition-delay: 0.30s; }
    .mobile-menu .mobile-cta {
      margin-top: 28px;
      font-size: 0.9375rem; font-weight: 600;
      background: var(--accent); color: #fff;
      padding: 14px 40px; border-radius: 100px;
      border: none;
      opacity: 0; transform: translateY(16px);
      transition: opacity 0.5s var(--silk) 0.35s, transform 0.5s var(--silk) 0.35s, background 0.3s;
    }
    .mobile-menu.open .mobile-cta { opacity: 1; transform: none; }
    .mobile-menu .mobile-cta:hover { background: var(--accent-mid); }

    /* ══════════════════════════════════════════
       2. HERO
    ══════════════════════════════════════════ */
    .hero {
      min-height: 100vh;
      display: flex; align-items: center;
      padding: 120px 0 80px;
      position: relative; overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute; inset: 0;
      background:
        linear-gradient(120deg, rgba(255,248,217,0.94) 0%, rgba(255,252,237,0.84) 45%, rgba(169,200,115,0.24) 100%);
      pointer-events: none;
    }
    .hero::after {
      content: '';
      position: absolute; inset: auto 0 0;
      height: 170px;
      background: linear-gradient(0deg, rgba(106,46,14,0.08), transparent);
      pointer-events: none;
    }
    .hero-inner {
      position: relative; z-index: 1;
      display: grid; grid-template-columns: 1fr 1fr;
      align-items: center; gap: 64px;
    }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--surface-2); border: 1px solid var(--accent-border);
      border-radius: 100px; padding: 6px 16px 6px 8px;
      margin-bottom: 28px; box-shadow: var(--shadow-sm);
    }
    .hero-badge-dot {
      width: 24px; height: 24px; border-radius: 50%;
      background: var(--earth); display: flex; align-items: center; justify-content: center;
      font-size: 11px; color: #fff; font-weight: 700; flex-shrink: 0;
    }
    .hero-badge span { font-size: 0.8125rem; font-weight: 500; color: var(--text-2); }
    .hero-badge strong { color: var(--accent); }
    .hero-title {
      font-size: clamp(2.6rem, 5vw, 4.2rem);
      font-weight: 700; letter-spacing: 0; line-height: 1.1;
      margin-bottom: 24px;
    }
    .hero-title em {
      font-style: italic;
      font-family: 'Playfair Display', serif;
      color: var(--accent);
    }
    .typewriter {
      display: inline-block;
      overflow: hidden;
      white-space: nowrap;
      border-right: 3px solid var(--earth);
      max-width: 0;
      animation: typing 2.8s steps(17, end) 0.45s forwards, caret 0.75s step-end infinite;
    }
    @keyframes typing {
      from { max-width: 0; }
      to { max-width: 17ch; }
    }
    @keyframes caret {
      50% { border-color: transparent; }
    }
    .hero-sub {
      font-size: 1.0625rem; line-height: 1.75;
      color: var(--text-2); max-width: 480px; margin-bottom: 40px;
    }
    .hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
    .btn-primary-lg {
      font-size: 0.9375rem; font-weight: 600; color: #fff;
      background: var(--earth); padding: 14px 32px; border-radius: 100px;
      display: flex; align-items: center; gap: 10px;
      transition: background var(--silk-dur) var(--silk), transform var(--silk-dur) var(--silk), box-shadow var(--silk-dur) var(--silk);
      box-shadow: 0 6px 24px rgba(106,46,14,0.30);
    }
    .btn-primary-lg:hover { background: var(--earth-mid); transform: scale(1.02); box-shadow: 0 8px 32px rgba(106,46,14,0.40); }
    .btn-primary-lg .btn-arrow { transition: transform 0.4s var(--silk); }
    .btn-primary-lg:hover .btn-arrow { transform: translateX(4px); }
    .btn-outline-lg {
      font-size: 0.9375rem; font-weight: 500; color: var(--accent);
      border: 1.5px solid var(--accent-border); padding: 13px 28px; border-radius: 100px;
      display: flex; align-items: center; gap: 8px;
      transition: background 0.4s var(--silk), border-color 0.4s var(--silk), transform var(--silk-dur) var(--silk);
    }
    .btn-outline-lg:hover { background: var(--accent-ghost); border-color: var(--accent); transform: scale(1.02); }

    /* Trust badges */
    .hero-trust {
      display: flex; align-items: center; gap: 20px;
      margin-top: 48px; flex-wrap: wrap;
    }
    .trust-item {
      display: flex; align-items: center; gap: 8px;
      font-size: 0.8125rem; color: var(--text-3); font-weight: 500;
    }
    .trust-item svg { color: var(--accent); flex-shrink: 0; }
    .trust-divider { width: 1px; height: 20px; background: var(--border); }

    /* Hero visual */
    .hero-visual {
      position: relative; display: flex; justify-content: flex-end; align-items: center;
      min-height: 570px;
    }
    .hero-visual::before {
      content: '';
      position: absolute;
      inset: 5% -10% 3% 2%;
      border-radius: 42px;
      background:
        radial-gradient(circle at 70% 42%, rgba(79,125,67,0.2), transparent 42%),
        linear-gradient(135deg, rgba(255,252,237,0.45), rgba(169,200,115,0.18));
      filter: blur(2px);
      pointer-events: none;
    }
    .hero-image-card {
      position: relative;
      width: min(108%, 720px);
      aspect-ratio: auto;
      border-radius: 30px;
      overflow: visible;
      border: 0;
      box-shadow: none;
      background: #fff9e5;
      transition: none;
      transform: translateX(28px);
      flex: 0 0 auto;
      -webkit-mask-image: none;
      mask-image: none;
      clip-path: none;
      padding: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .hero-image-card::after {
      content: none;
    }
    .hero-image-card img {
      width: 100%;
      height: auto;
      max-height: 540px;
      display: block;
      object-fit: contain;
      object-position: center center;
      transform: none;
      filter: saturate(0.95) contrast(0.98);
    }
    .hero-dashboard {
      width: 100%; max-width: 520px;
      background: var(--surface-2);
      border-radius: var(--radius-lg);
      border: 1px solid var(--border);
      box-shadow: var(--shadow-lg);
      overflow: hidden;
      transition: transform var(--silk-dur) var(--silk);
    }
    .hero-dashboard:hover { transform: scale(1.01); }
    .timer-card {
      width: 100%; max-width: 560px;
      background: rgba(255,252,237,0.88);
      border: 1px solid rgba(106,46,14,0.14);
      border-radius: 24px;
      box-shadow: 0 28px 70px rgba(106,46,14,0.16), inset 0 1px 0 rgba(255,255,255,0.9);
      padding: 34px;
      overflow: hidden;
      position: relative;
      backdrop-filter: blur(16px);
    }
    .timer-card::before {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(79,125,67,0.12), rgba(255,255,255,0.12), rgba(106,46,14,0.08));
      pointer-events: none;
    }
    .timer-brand {
      position: relative;
      text-align: center;
      font-weight: 800;
      font-size: 1.35rem;
      color: var(--earth);
      margin-bottom: 26px;
    }
    .timer-brand span { color: var(--accent); }
    .timer-grid {
      position: relative;
      display: grid;
      grid-template-columns: 1fr auto 1fr auto 1fr;
      align-items: center;
      gap: 12px;
      padding: 22px;
      border-radius: 18px;
      background: rgba(255,255,255,0.72);
      border: 1px solid var(--border);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
    }
    .timer-unit {
      display: grid;
      place-items: center;
      gap: 6px;
      min-width: 0;
    }
    .timer-unit strong {
      font-family: 'DM Sans', sans-serif;
      font-size: clamp(2rem, 5vw, 3.4rem);
      line-height: 1;
      color: var(--text-1);
      letter-spacing: 0;
    }
    .timer-unit span {
      font-size: 0.78rem;
      font-weight: 700;
      color: var(--text-3);
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }
    .timer-separator {
      color: var(--accent);
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      font-weight: 700;
      transform: translateY(-10px);
    }
    .timer-controls {
      position: relative;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      margin: 18px 0 26px;
    }
    .timer-chip {
      text-align: center;
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 10px 12px;
      color: var(--text-3);
      font-weight: 700;
      background: rgba(255,255,255,0.42);
    }
    .timer-chip.active {
      color: #fff;
      background: var(--accent);
      border-color: var(--accent);
    }
    .timer-clock {
      position: relative;
      display: grid;
      grid-template-columns: 160px 1fr;
      gap: 22px;
      align-items: center;
    }
    .clock-face {
      width: 160px;
      aspect-ratio: 1;
      border-radius: 50%;
      border: 2px solid rgba(79,125,67,0.25);
      position: relative;
      background: rgba(255,255,255,0.48);
    }
    .tick {
      position: absolute;
      width: 8px; height: 8px;
      border-radius: 50%;
      background: var(--accent);
    }
    .tick.top { top: 10px; left: calc(50% - 4px); }
    .tick.right { right: 10px; top: calc(50% - 4px); }
    .tick.bottom { bottom: 10px; left: calc(50% - 4px); }
    .tick.left { left: 10px; top: calc(50% - 4px); }
    .hand {
      position: absolute;
      left: 50%; top: 50%;
      width: 3px;
      border-radius: 4px;
      transform-origin: bottom center;
      background: var(--earth);
    }
    .hand.hour { height: 48px; transform: translate(-50%, -100%) rotate(-42deg); }
    .hand.minute { height: 64px; transform: translate(-50%, -100%) rotate(-6deg); }
    .hand.second { height: 70px; width: 2px; background: var(--accent); transform: translate(-50%, -100%) rotate(48deg); opacity: 0.75; }
    .clock-center {
      position: absolute;
      width: 12px; height: 12px;
      left: calc(50% - 6px); top: calc(50% - 6px);
      border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 0 5px rgba(79,125,67,0.12);
    }
    .timer-note strong {
      display: block;
      color: var(--earth);
      font-size: 1.35rem;
      margin-bottom: 6px;
    }
    .timer-note span {
      color: var(--text-2);
      line-height: 1.6;
      display: block;
    }
    .dashboard-bar {
      background: var(--bg-alt); padding: 12px 16px;
      display: flex; align-items: center; gap: 8px;
      border-bottom: 1px solid var(--border);
    }
    .db-dot { width: 10px; height: 10px; border-radius: 50%; }
    .db-dot:nth-child(1) { background: #FF5F57; }
    .db-dot:nth-child(2) { background: #FFBD2E; }
    .db-dot:nth-child(3) { background: #28CA41; }
    .dashboard-body { padding: 24px; }
    .db-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
    .db-title { font-size: 0.875rem; font-weight: 600; color: var(--text-1); }
    .db-tag {
      font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em;
      text-transform: uppercase; color: var(--accent);
      background: var(--accent-ghost); border: 1px solid var(--accent-border);
      padding: 3px 10px; border-radius: 100px;
    }
    .db-chart {
      height: 80px; display: flex; align-items: flex-end; gap: 6px; margin-bottom: 20px;
    }
    .db-bar {
      flex: 1; border-radius: 4px 4px 0 0;
      background: var(--accent-ghost); border: 1px solid var(--accent-border);
      transition: height 1s var(--silk);
    }
    .db-bar.active { background: var(--accent); border-color: var(--accent); }
    .db-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
    .db-stat {
      background: var(--bg); border-radius: var(--radius);
      padding: 14px; border: 1px solid var(--border);
    }
    .db-stat-val { font-size: 1.25rem; font-weight: 700; color: var(--text-1); letter-spacing: 0; }
    .db-stat-label { font-size: 0.72rem; color: var(--text-3); margin-top: 2px; }
    .db-stat-change { font-size: 0.72rem; font-weight: 600; color: var(--accent); margin-top: 4px; }

    /* ══════════════════════════════════════════
       3. LOGO TICKER
    ══════════════════════════════════════════ */
    .ticker-section {
      padding: 48px 0;
      border-top: 1px solid rgba(255,255,255,0.08);
      border-bottom: 1px solid rgba(255,255,255,0.08);
      background:
        radial-gradient(circle at 12% 15%, rgba(240,200,90,0.12), transparent 30%),
        radial-gradient(circle at 88% 90%, rgba(79,125,67,0.14), transparent 30%),
        linear-gradient(135deg, #2A130B 0%, #431E0F 48%, #281309 100%);
      overflow: hidden; position: relative;
    }
    .ticker-section::before {
      content: '';
      position: absolute;
      inset: 0;
      opacity: 0.13;
      background-image:
        linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
      background-size: 32px 32px;
      pointer-events: none;
    }
    .ticker-label {
      text-align: center; font-size: 0.75rem; letter-spacing: 0.12em;
      text-transform: uppercase; color: #F2D36B; font-weight: 800;
      margin-bottom: 28px;
      position: relative;
      z-index: 1;
    }
    .ticker-track-wrap { overflow: hidden; }
    .ticker-track {
      display: flex; align-items: center; gap: 64px;
      width: max-content;
      animation: ticker 28s linear infinite;
      position: relative;
      z-index: 1;
    }
    .ticker-track:hover { animation-play-state: paused; }
    @keyframes ticker {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }
    .ticker-item {
      display: flex; align-items: center; gap: 10px;
      font-size: 1.0625rem; font-weight: 700; letter-spacing: 0;
      color: rgba(255,252,237,0.72); white-space: nowrap; flex-shrink: 0;
      transition: color 0.3s;
    }
    .ticker-item:hover { color: #fff; }
    .ticker-item-icon {
      width: 32px; height: 32px; border-radius: 8px;
      background: rgba(242,211,107,0.12); border: 1px solid rgba(242,211,107,0.24);
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .ticker-item-icon svg { fill: #F2D36B; }
    .ticker-dot {
      width: 5px; height: 5px; border-radius: 50%;
      background: #F2D36B; flex-shrink: 0; opacity: 0.55;
    }

    /* ══════════════════════════════════════════
       4. ABOUT US
    ══════════════════════════════════════════ */
    .about-section {
      padding: 82px 0;
      background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 100%);
      border-bottom: 1px solid var(--border);
      position: relative;
    }
    .about-grid {
      display: grid;
      grid-template-columns: minmax(320px, 0.95fr) 1.05fr;
      gap: 54px;
      align-items: center;
    }
    .about-media {
      min-width: 0;
    }
    .about-content {
      min-width: 0;
      order: -1;
    }
    .about-video-card {
      position: relative;
      width: 100%;
      aspect-ratio: 16 / 10;
      border-radius: 24px;
      overflow: hidden;
      border: 1px solid rgba(106,46,14,0.14);
      box-shadow: var(--shadow-lg);
      background: var(--surface-2);
      text-align: left;
      transition: transform var(--silk-dur) var(--silk), box-shadow var(--silk-dur) var(--silk);
    }
    .about-video-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 30px 80px rgba(106,46,14,0.18);
    }
    .about-video-card video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: saturate(0.95) brightness(0.9);
      background: var(--bg-alt);
    }
    .about-video-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 42%, rgba(47,26,14,0.72) 100%);
      pointer-events: none;
    }
    .video-play-btn {
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      width: 74px;
      height: 74px;
      border-radius: 50%;
      background: rgba(255,252,237,0.92);
      color: var(--earth);
      display: grid;
      place-items: center;
      box-shadow: 0 16px 38px rgba(47,26,14,0.22);
      z-index: 2;
    }
    .video-play-btn span {
      transform: translateX(2px);
      font-size: 1.45rem;
      line-height: 1;
    }
    .about-video-caption {
      position: absolute;
      left: 24px;
      right: 24px;
      bottom: 22px;
      z-index: 2;
      color: #fff;
    }
    .about-video-caption strong {
      display: block;
      font-size: 1.25rem;
      margin-bottom: 4px;
    }
    .about-video-caption span {
      color: rgba(255,255,255,0.74);
      font-size: 0.92rem;
    }
    .about-video-info-card {
      margin-top: 16px;
      display: grid;
      grid-template-columns: auto 1fr;
      column-gap: 14px;
      align-items: start;
      background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,248,217,0.78));
      border-color: rgba(79,125,67,0.18);
    }
    .about-video-info-card .about-card-icon {
      grid-row: 1 / span 2;
      margin-bottom: 0;
    }
    .about-content .section-sub {
      max-width: 640px;
      font-size: 0.98rem;
      line-height: 1.65;
      margin-top: 12px;
    }
    .about-content .section-title {
      font-size: clamp(1.8rem, 3vw, 2.45rem);
      line-height: 1.12;
    }
    .about-card-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
      margin-top: 20px;
    }
    .about-mini-card {
      background: rgba(255,255,255,0.74);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 14px;
      box-shadow: var(--shadow-sm);
    }
    .about-mini-card-wide {
      grid-column: 1 / -1;
      display: grid;
      grid-template-columns: auto 1fr;
      column-gap: 14px;
      align-items: start;
    }
    .about-mini-card-wide h3,
    .about-mini-card-wide p {
      grid-column: 2;
    }
    .about-mini-card-wide .about-card-icon {
      grid-row: 1 / span 2;
    }
    .about-card-icon {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: #fff;
      background: var(--accent);
      font-size: 0.78rem;
      font-weight: 800;
      margin-bottom: 12px;
    }
    .about-mini-card h3 {
      color: var(--text-1);
      font-size: 0.96rem;
      margin-bottom: 6px;
    }
    .about-mini-card p {
      color: var(--text-2);
      font-size: 0.82rem;
      line-height: 1.52;
    }
    .video-modal {
      position: fixed;
      inset: 0;
      z-index: 2000;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 28px;
    }
    .video-modal.open {
      display: flex;
    }
    .video-modal-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(47,26,14,0.72);
      backdrop-filter: blur(10px);
    }
    .video-modal-dialog {
      position: relative;
      width: min(980px, 100%);
      background: #000;
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 30px 90px rgba(0,0,0,0.38);
      z-index: 1;
    }
    .video-modal-dialog video {
      width: 100%;
      max-height: 82vh;
      display: block;
      background: #000;
    }
    .video-modal-close {
      position: absolute;
      top: 12px;
      right: 12px;
      z-index: 2;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: rgba(255,255,255,0.92);
      color: var(--earth);
      font-size: 1.6rem;
      line-height: 1;
      display: grid;
      place-items: center;
    }

    .registration-popup {
      position: fixed;
      inset: 0;
      z-index: 3000;
      display: none;
      place-items: center;
      padding: 18px;
    }
    .registration-popup.open { display: grid; }
    .registration-popup-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(24,10,5,0.7);
      backdrop-filter: blur(10px);
    }
    .registration-popup-card {
      position: relative;
      width: min(430px, 100%);
      border-radius: 24px;
      padding: 22px 22px 20px;
      text-align: center;
      color: #fff;
      background:
        radial-gradient(circle at 18% 16%, rgba(242,211,107,0.16), transparent 30%),
        radial-gradient(circle at 82% 86%, rgba(79,125,67,0.18), transparent 30%),
        linear-gradient(135deg, #2A130B 0%, #431E0F 52%, #281309 100%);
      border: 1px solid rgba(255,255,255,0.14);
      box-shadow: 0 32px 90px rgba(0,0,0,0.42);
      overflow: hidden;
      animation: popupEnter 0.35s var(--silk) both;
    }
    @keyframes popupEnter {
      from { opacity: 0; transform: translateY(12px) scale(0.98); }
      to { opacity: 1; transform: none; }
    }
    .registration-popup-card::before {
      content: '';
      position: absolute;
      inset: 0;
      opacity: 0.12;
      background-image:
        linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
      background-size: 26px 26px;
      pointer-events: none;
    }
    .registration-popup-close {
      position: absolute;
      top: 12px;
      right: 12px;
      z-index: 2;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.16);
      color: #fff;
      font-size: 1.35rem;
      display: grid;
      place-items: center;
    }
    .popup-kicker {
      position: relative;
      z-index: 1;
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 6px 13px;
      border-radius: 999px;
      color: #F2D36B;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.16);
      font-size: 0.72rem;
      font-weight: 900;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 10px;
    }
    .popup-kicker::before {
      content: '';
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #F2D36B;
    }
    .registration-popup-card h2 {
      position: relative;
      z-index: 1;
      font-size: clamp(1.45rem, 3.5vw, 2.05rem);
      line-height: 1.1;
      margin-bottom: 12px;
    }
    .popup-countdown {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 8px;
      margin-bottom: 12px;
    }
    .popup-countdown div {
      padding: 10px 8px;
      border-radius: 12px;
      background: rgba(255,252,237,0.1);
      border: 1px solid rgba(255,255,255,0.12);
    }
    .popup-countdown strong {
      display: block;
      font-size: clamp(1.25rem, 3.5vw, 1.8rem);
      line-height: 1;
      margin-bottom: 4px;
    }
    .popup-countdown span {
      color: rgba(255,255,255,0.64);
      font-size: 0.68rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }
    .popup-watch {
      position: relative;
      z-index: 1;
      display: grid;
      place-items: center;
      gap: 6px;
      margin: 0 0 12px;
    }
    .popup-watch-face {
      width: 92px;
      height: 92px;
      border-radius: 50%;
      background: radial-gradient(circle at 50% 50%, rgba(255,252,237,0.14), rgba(255,252,237,0.04));
      border: 2px solid rgba(242,211,107,0.46);
      box-shadow: inset 0 0 0 8px rgba(255,255,255,0.04), 0 16px 36px rgba(0,0,0,0.2);
      position: relative;
    }
    .watch-tick { position: absolute; width: 6px; height: 6px; border-radius: 50%; background: #F2D36B; }
    .tick-12 { left: 50%; top: 9px; transform: translateX(-50%); }
    .tick-3 { right: 9px; top: 50%; transform: translateY(-50%); }
    .tick-6 { left: 50%; bottom: 9px; transform: translateX(-50%); }
    .tick-9 { left: 9px; top: 50%; transform: translateY(-50%); }
    .watch-hand { position: absolute; left: 50%; bottom: 50%; transform-origin: bottom center; border-radius: 999px; background: #fff; }
    .watch-hand.hour { width: 4px; height: 24px; margin-left: -2px; background: rgba(255,255,255,0.86); }
    .watch-hand.minute { width: 3px; height: 34px; margin-left: -1.5px; background: rgba(255,255,255,0.92); }
    .watch-hand.second { width: 2px; height: 38px; margin-left: -1px; background: #F2D36B; }
    .watch-center { position: absolute; left: 50%; top: 50%; width: 12px; height: 12px; border-radius: 50%; transform: translate(-50%, -50%); background: #F2D36B; box-shadow: 0 0 0 4px rgba(242,211,107,0.14); }
    .popup-live-time { color: rgba(255,255,255,0.7); font-weight: 800; letter-spacing: 0.16em; font-size: 0.8rem; }
    .registration-popup-card p {
      position: relative;
      z-index: 1;
      max-width: 380px;
      margin: 0 auto 12px;
      color: rgba(255,255,255,0.72);
      font-size: 0.84rem;
      line-height: 1.45;
    }
    .popup-register-link {
      position: relative;
      z-index: 1;
      display: inline-flex;
      justify-content: center;
      min-width: 170px;
      padding: 11px 22px;
      border-radius: 999px;
      background: #F2D36B;
      color: #2A130B;
      font-weight: 900;
      box-shadow: 0 16px 38px rgba(242,211,107,0.22);
    }

    @media (max-width: 640px) {
      .registration-popup {
        padding: 14px;
        align-items: center;
      }
      .registration-popup-card {
        width: min(390px, 100%);
        max-height: calc(100vh - 28px);
        overflow-y: auto;
        border-radius: 20px;
        padding: 22px 18px 20px;
      }
      .popup-countdown {
        grid-template-columns: repeat(2, 1fr);
        gap: 7px;
        margin-bottom: 12px;
      }
      .popup-countdown div {
        padding: 10px 8px;
      }
      .popup-watch-face {
        width: 84px;
        height: 84px;
      }
      .watch-hand.hour { height: 22px; }
      .watch-hand.minute { height: 30px; }
      .watch-hand.second { height: 34px; }
      .registration-popup-card p {
        font-size: 0.84rem;
        margin-bottom: 12px;
      }
      .popup-register-link {
        width: 100%;
        min-width: 0;
        padding: 12px 18px;
      }
    }

    /* ══════════════════════════════════════════
       4. FEATURES
    ══════════════════════════════════════════ */
    .features-section { padding: 84px 0; }
    .features-header { text-align: center; margin-bottom: 42px; }
    .features-header .section-sub { margin: 16px auto 0; text-align: center; }
    .features-section .reveal {
      opacity: 1;
      transform: none;
    }
    .mnmse-feature-grid {
      position: relative;
      height: clamp(430px, 48vw, 560px);
      max-width: 980px;
      margin: 0 auto;
      overflow: visible;
      perspective: 1200px;
    }
    .mnmse-feature-grid .mnmse-feature-card {
      position: absolute;
      inset: 0;
      min-height: 100%;
      background:
        radial-gradient(circle at 18% 16%, rgba(242,211,107,0.14), transparent 30%),
        radial-gradient(circle at 86% 82%, rgba(79,125,67,0.16), transparent 30%),
        linear-gradient(135deg, #2A130B 0%, #431E0F 52%, #281309 100%);
      border: 1px solid rgba(255,255,255,0.14);
      border-radius: 18px;
      padding: clamp(28px, 4vw, 48px);
      box-shadow: 0 34px 90px rgba(0,0,0,0.3);
      display: flex;
      flex-direction: column;
      justify-content: center;
      opacity: var(--stack-opacity, 0);
      pointer-events: none;
      z-index: var(--stack-z, 1);
      transform: translateY(var(--stack-y, 44px)) scale(var(--stack-scale, 0.94));
      transition: opacity 0.55s var(--silk), transform 0.65s var(--silk), box-shadow var(--silk-dur) var(--silk), border-color 0.3s;
    }
    .mnmse-feature-grid .mnmse-feature-card.is-active {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0) scale(1);
    }
    .mnmse-feature-grid .mnmse-feature-card.is-before {
      transform: translateY(-44px) scale(0.94);
    }
    .mnmse-feature-grid .mnmse-feature-card.is-after {
      transform: translateY(44px) scale(0.94);
    }
    .mnmse-feature-card:hover {
      transform: translateY(0) scale(1.01);
      border-color: rgba(242,211,107,0.32);
      box-shadow: 0 40px 110px rgba(0,0,0,0.36);
    }
    .mnmse-feature-icon {
      width: 58px;
      height: 58px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: rgba(242,211,107,0.14);
      border: 1px solid rgba(242,211,107,0.28);
      color: #F2D36B;
      font-size: 1rem;
      font-weight: 800;
      margin-bottom: 28px;
    }
    .mnmse-tile-content {
      display: grid;
      grid-template-columns: minmax(0, 1.25fr) minmax(220px, 0.75fr);
      gap: clamp(24px, 5vw, 58px);
      align-items: center;
    }
    .mnmse-feature-card h3 {
      color: #fff;
      font-size: clamp(2rem, 4vw, 3.2rem);
      line-height: 1.05;
      margin-bottom: 18px;
      max-width: 680px;
    }
    .mnmse-feature-card p {
      color: rgba(255,255,255,0.72);
      font-size: clamp(1rem, 1.4vw, 1.18rem);
      line-height: 1.72;
      max-width: 620px;
    }
    .mnmse-tile-points {
      display: grid;
      gap: 10px;
      margin-top: 24px;
      max-width: 560px;
    }
    .mnmse-tile-points span {
      display: flex;
      align-items: center;
      gap: 10px;
      color: rgba(255,255,255,0.78);
      font-size: 0.95rem;
      font-weight: 600;
    }
    .mnmse-tile-points span::before {
      content: '';
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #F2D36B;
      flex-shrink: 0;
    }
    .mnmse-tile-visual {
      min-height: 230px;
      border-radius: 18px;
      background:
        linear-gradient(145deg, rgba(255,252,237,0.14), rgba(242,211,107,0.08));
      border: 1px solid rgba(242,211,107,0.22);
      display: grid;
      place-items: center;
      text-align: center;
      padding: 28px;
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
    }
    .mnmse-tile-visual strong {
      display: block;
      font-size: clamp(2.8rem, 5vw, 4.4rem);
      line-height: 1;
      color: #F2D36B;
      margin-bottom: 12px;
    }
    .mnmse-tile-visual span {
      color: rgba(255,255,255,0.76);
      font-weight: 700;
      line-height: 1.45;
    }
    .mnmse-tile-nav {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-top: 24px;
    }
    .mnmse-tile-dot {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: rgba(242,211,107,0.28);
      transition: width 0.35s var(--silk), background 0.35s var(--silk);
    }
    .mnmse-tile-dot.is-active {
      width: 28px;
      border-radius: 999px;
      background: #F2D36B;
    }
    .features-section .feature-row {
      display: none;
    }

    .feature-row {
      display: grid; grid-template-columns: 1fr 1fr;
      align-items: center; gap: 80px; margin-bottom: 100px;
    }
    .feature-row:last-child { margin-bottom: 0; }
    .feature-row.reverse { direction: rtl; }
    .feature-row.reverse > * { direction: ltr; }

    .feature-content {}
    .feature-number {
      font-size: 0.75rem; font-weight: 700; letter-spacing: 0.14em;
      text-transform: uppercase; color: var(--accent-light);
      margin-bottom: 16px;
    }
    .feature-title {
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      font-weight: 700; letter-spacing: 0; line-height: 1.2;
      margin-bottom: 16px;
    }
    .feature-desc {
      font-size: 1rem; line-height: 1.75; color: var(--text-2); margin-bottom: 28px;
    }
    .feature-checklist { display: flex; flex-direction: column; gap: 10px; }
    .feature-check {
      display: flex; align-items: flex-start; gap: 10px;
      font-size: 0.9rem; color: var(--text-2);
    }
    .check-icon {
      width: 20px; height: 20px; border-radius: 50%;
      background: var(--accent-ghost); border: 1px solid var(--accent-border);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; margin-top: 1px;
      color: var(--accent); font-size: 11px; font-weight: 700;
    }

    .feature-visual {
      background: var(--surface);
      border-radius: var(--radius-lg);
      border: 1px solid var(--border);
      box-shadow: var(--shadow-md);
      overflow: hidden;
      aspect-ratio: 4/3;
      display: flex; align-items: center; justify-content: center;
      position: relative;
      transition: transform var(--silk-dur) var(--silk), box-shadow var(--silk-dur) var(--silk);
    }
    .feature-visual:hover { transform: scale(1.015); box-shadow: var(--shadow-lg); }
    .feature-visual-inner {
      width: 85%; display: flex; flex-direction: column; gap: 12px;
    }
    .fv-row { display: flex; gap: 12px; }
    .fv-card {
      flex: 1; background: var(--surface-2); border-radius: var(--radius);
      border: 1px solid var(--border); padding: 16px;
      box-shadow: var(--shadow-sm);
    }
    .fv-card-label { font-size: 0.72rem; color: var(--text-3); font-weight: 500; margin-bottom: 6px; }
    .fv-card-val { font-size: 1.3rem; font-weight: 700; color: var(--text-1); letter-spacing: 0; }
    .fv-card-bar {
      height: 4px; border-radius: 2px; margin-top: 10px;
      background: var(--bg); overflow: hidden;
    }
    .fv-card-bar-fill { height: 100%; border-radius: 2px; background: var(--accent); }
    .fv-wide { flex: 2; }
    .fv-list { display: flex; flex-direction: column; gap: 8px; }
    .fv-list-item {
      display: flex; align-items: center; justify-content: space-between;
      padding: 8px 12px; background: var(--bg); border-radius: 8px;
      font-size: 0.8rem;
    }
    .fv-list-name { color: var(--text-2); font-weight: 500; }
    .fv-pill {
      font-size: 0.7rem; font-weight: 600; padding: 3px 10px; border-radius: 100px;
    }
    .fv-pill.green { background: rgba(26,122,110,0.12); color: var(--accent); }
    .fv-pill.blue  { background: rgba(42,157,143,0.12); color: var(--accent-mid); }
    .fv-pill.dim   { background: var(--border); color: var(--text-3); }

    /* ══════════════════════════════════════════
       5. MOBILE CAROUSEL
    ══════════════════════════════════════════ */
    .carousel-section {
      display: block;
      padding: 120px 0; background: var(--surface);
      border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
      overflow: hidden;
    }
    .carousel-header { text-align: center; margin-bottom: 0; }
    .carousel-header .section-sub { margin: 16px auto 0; text-align: center; }

    .carousel-stage {
      position: relative;
      height: clamp(480px, 52vw, 780px);
      perspective: clamp(900px, 120vw, 1800px);
      perspective-origin: center center;
      display: flex; align-items: center; justify-content: center;
    }
    .carousel-track {
      position: relative; width: 100%; height: 100%;
      transform-style: preserve-3d;
      display: flex; align-items: center; justify-content: center;
    }

    /* Single source of truth: --pw = phone width, drives all offsets */
    :root {
      --pw: clamp(180px, 14vw, 300px);
      --gap1: clamp(200px, 19vw, 380px);
      --gap2: clamp(360px, 34vw, 660px);
      --gap-hide: clamp(500px, 48vw, 900px);
    }

    .phone-card {
      position: absolute;
      transition: transform 0.6s var(--silk), opacity 0.6s var(--silk);
      cursor: pointer;
    }
    .phone-shell {
      background: #C8D4D2;
      border-radius: 32px;
      padding: 5px;
      border: none;
      box-shadow:
        0 0 0 1px rgba(150,175,170,0.5),
        0 24px 56px rgba(13,30,28,0.18),
        inset 0 1px 0 rgba(255,255,255,0.6);
      position: relative;
      transition: box-shadow 0.6s var(--silk);
    }
    .phone-screen {
      background: var(--bg);
      border-radius: 28px;
      overflow: hidden;
      aspect-ratio: 9/19.5;
    }
    .phone-screen-inner {
      width: 100%; height: 100%;
      display: flex; flex-direction: column;
    }
    .step-screen {
      padding: 14px 12px;
      gap: 10px;
      background:
        linear-gradient(180deg, rgba(255,252,237,0.96), rgba(247,239,200,0.88)),
        var(--bg);
      color: var(--text-1);
    }
    .step-phone-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-bottom: 8px;
      border-bottom: 1px solid var(--border);
    }
    .step-phone-top span {
      font-size: 7px;
      font-weight: 800;
      color: var(--accent);
    }
    .step-phone-top strong {
      width: 26px;
      height: 26px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: var(--earth);
      color: #fff;
      font-size: 9px;
    }
    .step-phone-hero {
      background: rgba(255,255,255,0.78);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 14px 12px;
      box-shadow: var(--shadow-sm);
    }
    .step-kicker {
      display: inline-flex;
      color: var(--accent);
      background: var(--accent-ghost);
      border: 1px solid var(--accent-border);
      border-radius: 100px;
      padding: 3px 8px;
      font-size: 6px;
      font-weight: 800;
      text-transform: uppercase;
      margin-bottom: 8px;
    }
    .step-phone-hero h3 {
      font-size: 17px;
      line-height: 1.05;
      margin-bottom: 7px;
      color: var(--text-1);
    }
    .step-phone-hero p {
      font-size: 8px;
      line-height: 1.45;
      color: var(--text-2);
    }
    .step-phone-card {
      display: flex;
      gap: 8px;
      align-items: flex-start;
      background: rgba(255,255,255,0.74);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 10px;
    }
    .step-icon {
      width: 27px;
      height: 27px;
      border-radius: 9px;
      flex-shrink: 0;
      display: grid;
      place-items: center;
      color: #fff;
      background: var(--accent);
      font-size: 8px;
      font-weight: 800;
    }
    .step-phone-card strong {
      display: block;
      color: var(--text-1);
      font-size: 8px;
      margin-bottom: 3px;
    }
    .step-phone-card span:last-child {
      display: block;
      color: var(--text-3);
      font-size: 6.5px;
      line-height: 1.35;
    }
    .step-phone-action {
      margin-top: auto;
      text-align: center;
      color: #fff;
      background: var(--earth);
      border-radius: 100px;
      padding: 9px 10px;
      font-size: 8px;
      font-weight: 800;
      box-shadow: 0 8px 20px rgba(106,46,14,0.18);
    }
    .step-field {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(255,255,255,0.72);
      border: 1px solid var(--border);
      border-radius: 11px;
      padding: 10px;
      color: var(--text-2);
      font-size: 7.5px;
      font-weight: 700;
    }
    .step-field b {
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: var(--accent);
      position: relative;
    }
    .step-field b::after {
      content: '';
      position: absolute;
      width: 8px;
      height: 4px;
      border-left: 2px solid #fff;
      border-bottom: 2px solid #fff;
      transform: rotate(-45deg);
      left: 5px;
      top: 5px;
    }
    .step-upload-box {
      display: grid;
      place-items: center;
      min-height: 82px;
      border: 1.5px dashed var(--accent-border);
      border-radius: 14px;
      color: var(--accent);
      background: var(--accent-ghost);
      font-size: 8px;
      font-weight: 800;
    }
    .step-price {
      text-align: center;
      font-size: 42px;
      line-height: 1;
      color: var(--earth);
      font-weight: 800;
      padding: 8px 0 2px;
    }
    .step-payment-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 6px;
    }
    .step-payment-row span {
      background: rgba(255,255,255,0.76);
      border: 1px solid var(--border);
      border-radius: 9px;
      text-align: center;
      padding: 8px 3px;
      color: var(--text-2);
      font-size: 6px;
      font-weight: 800;
    }
    .step-calendar {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 8px;
      background: rgba(255,255,255,0.74);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 12px;
    }
    .step-calendar span {
      grid-column: 1 / -1;
      color: var(--accent);
      font-size: 8px;
      font-weight: 800;
      text-transform: uppercase;
    }
    .step-calendar div {
      display: grid;
      place-items: center;
      border-radius: 10px;
      background: var(--bg);
      border: 1px solid var(--border);
      min-height: 38px;
      color: var(--text-1);
      font-weight: 800;
      font-size: 13px;
    }
    .ps-topbar {
      padding: 10px 12px 6px;
      display: flex; justify-content: space-between; align-items: center;
    }
    .ps-topbar-label { font-size: 8px; font-weight: 700; color: var(--text-1); letter-spacing: 0; }
    .ps-dot { width: 20px; height: 20px; border-radius: 50%; background: var(--accent); }
    .ps-hero-block { padding: 6px 12px 10px; }
    .ps-hero-title { font-size: 9px; font-weight: 700; color: var(--text-1); line-height: 1.3; margin-bottom: 4px; }
    .ps-hero-sub { font-size: 6.5px; color: var(--text-3); line-height: 1.4; }
    .ps-btn {
      display: inline-block; margin-top: 6px;
      background: var(--accent); color: #fff;
      font-size: 6px; font-weight: 700; padding: 4px 10px; border-radius: 100px;
    }
    .ps-cards { padding: 6px 8px; display: flex; flex-direction: column; gap: 5px; }
    .ps-card {
      background: var(--surface-2); border-radius: 8px; padding: 8px 10px;
      border: 1px solid var(--border);
      display: flex; align-items: center; gap: 8px;
    }
    .ps-card-icon {
      width: 22px; height: 22px; border-radius: 6px;
      background: var(--accent-ghost); border: 1px solid var(--accent-border);
      flex-shrink: 0;
    }
    .ps-card-text { flex: 1; }
    .ps-card-title { height: 5px; background: var(--border); border-radius: 2px; width: 60%; margin-bottom: 4px; }
    .ps-card-sub { height: 4px; background: var(--bg-alt); border-radius: 2px; width: 80%; }
    .ps-card-val { font-size: 8px; font-weight: 700; color: var(--accent); }
    .ps-nav {
      margin-top: auto; padding: 6px 8px;
      display: flex; justify-content: space-around;
      border-top: 1px solid var(--border); background: var(--surface-2);
    }
    .ps-nav-item { display: flex; flex-direction: column; align-items: center; gap: 2px; }
    .ps-nav-dot { width: 14px; height: 14px; border-radius: 50%; background: var(--bg-alt); }
    .ps-nav-dot.active { background: var(--accent); }
    .ps-nav-label { font-size: 4.5px; color: var(--text-3); }
    .ps-nav-label.active { color: var(--accent); }

    /* Card positions — z-index only, transforms set entirely by JS */
    .phone-card[data-pos="center"]       { z-index: 10; }
    .phone-card[data-pos="left1"],
    .phone-card[data-pos="right1"]       { z-index: 8; }
    .phone-card[data-pos="left2"],
    .phone-card[data-pos="right2"]       { z-index: 6; }
    .phone-card[data-pos="hidden-left"],
    .phone-card[data-pos="hidden-right"] { z-index: 4; }

    /* Reflection floor line */
    .carousel-stage::after {
      content: '';
      position: absolute; bottom: 60px; left: 0; right: 0;
      height: 1px; background: linear-gradient(90deg, transparent, var(--border), transparent);
    }

    /* Controls */
    .carousel-controls {
      display: flex; align-items: center; justify-content: center; gap: 24px;
      width: 100%; margin-top: 48px;
    }
    .carousel-btn {
      width: 44px; height: 44px; border-radius: 50%;
      border: 1.5px solid var(--accent-border);
      background: var(--surface-2);
      display: flex; align-items: center; justify-content: center;
      color: var(--accent); cursor: pointer;
      transition: all 0.4s var(--silk);
    }
    .carousel-btn:hover {
      background: var(--accent); color: #fff;
      border-color: var(--accent);
      transform: scale(1.05);
    }
    .carousel-dots { display: flex; gap: 8px; align-items: center; }
    .carousel-dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: var(--accent-border); cursor: pointer;
      transition: all 0.4s var(--silk);
    }
    .carousel-dot.active {
      background: var(--accent); width: 24px; border-radius: 4px;
    }

    /* Zoom control */
    .carousel-zoom {
      display: flex; align-items: center; justify-content: center;
      gap: 8px; padding: 30px 0 0;
    }
    .zoom-btn {
      width: 32px; height: 32px; border-radius: 50%;
      border: 1.5px solid var(--accent-border);
      background: var(--surface-2);
      display: flex; align-items: center; justify-content: center;
      color: var(--accent); cursor: pointer; font-size: 16px; line-height: 1;
      transition: all 0.35s var(--silk);
      user-select: none;
    }
    .zoom-btn:hover:not(:disabled) {
      background: var(--accent); color: #fff; border-color: var(--accent);
    }
    .zoom-btn:disabled { opacity: 0.28; cursor: not-allowed; }
    .zoom-pips { display: flex; gap: 5px; align-items: center; }
    .zoom-pip {
      width: 6px; height: 6px; border-radius: 50%;
      background: var(--accent-border);
      transition: background 0.3s var(--silk), transform 0.3s var(--silk);
      cursor: pointer;
    }
    .zoom-pip.active { background: var(--accent); transform: scale(1.4); }
    .zoom-label {
      font-size: 0.72rem; font-weight: 500; color: var(--text-3);
      letter-spacing: 0.06em; text-transform: uppercase; width: 36px; text-align: center;
    }

    /* ══════════════════════════════════════════
       6. STATS
    ══════════════════════════════════════════ */
    .stats-section {
      padding: 92px 0;
      border-top: 1px solid rgba(255,255,255,0.08);
      border-bottom: 1px solid rgba(255,255,255,0.08);
      background:
        radial-gradient(circle at 14% 18%, rgba(240,200,90,0.12), transparent 30%),
        radial-gradient(circle at 86% 92%, rgba(79,125,67,0.14), transparent 30%),
        linear-gradient(135deg, #2A130B 0%, #431E0F 48%, #281309 100%);
      position: relative;
      overflow: hidden;
    }
    .stats-section::before {
      content: '';
      position: absolute;
      inset: 0;
      opacity: 0.13;
      background-image:
        linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
      background-size: 32px 32px;
      pointer-events: none;
    }
    .stats-section .container {
      position: relative;
      z-index: 1;
    }
    .stats-header {
      max-width: 760px;
      margin-bottom: 48px;
    }
    .stats-header .section-sub {
      max-width: 680px;
      margin-top: 16px;
      color: rgba(255,255,255,0.72);
    }
    .stats-header .section-title {
      color: #fff;
    }
    .stats-header .section-title em {
      color: #F2D36B;
    }
    .stats-grid {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }
    .stat-card {
      padding: 34px 28px;
      min-height: 290px;
      border: 1px solid rgba(255,255,255,0.14);
      border-radius: 8px;
      background: rgba(255,252,237,0.94);
      box-shadow: 0 24px 60px rgba(0,0,0,0.24);
      text-align: center;
      transition: transform var(--silk-dur) var(--silk), box-shadow var(--silk-dur) var(--silk), border-color 0.3s;
    }
    .stat-card:last-child { border-right: 1px solid rgba(255,255,255,0.14); }
    .stat-card:hover {
      transform: translateY(-4px);
      border-color: rgba(242,211,107,0.34);
      box-shadow: 0 30px 72px rgba(0,0,0,0.3);
    }
    .stat-medal {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 34px;
      padding: 7px 13px;
      border-radius: 100px;
      background: rgba(79,125,67,0.1);
      border: 1px solid rgba(79,125,67,0.2);
      color: var(--accent);
      font-size: 0.72rem;
      font-weight: 800;
      text-transform: uppercase;
      margin-bottom: 24px;
    }
    .stat-value {
      font-size: clamp(2.4rem, 3.5vw, 3.6rem);
      font-weight: 700; letter-spacing: 0;
      color: var(--text-1); line-height: 1; margin-bottom: 12px;
      display: flex; align-items: baseline; justify-content: center; gap: 2px;
    }
    .stat-suffix { font-size: 55%; color: var(--accent); font-weight: 600; }
    .stat-label {
      font-size: 0.82rem; font-weight: 800;
      color: var(--text-1); margin-bottom: 18px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }
    .stat-sublabel {
      font-size: 0.9rem;
      color: var(--text-2);
      line-height: 1.65;
      border-top: 1px solid rgba(106,46,14,0.12);
      padding-top: 18px;
    }

    /* ══════════════════════════════════════════
       7. ELIGIBLE COUNTRIES
    ══════════════════════════════════════════ */
    .countries-section {
      padding: 110px 0;
      background:
        linear-gradient(135deg, rgba(255,252,237,0.92), rgba(247,239,200,0.72)),
        var(--surface);
      border-bottom: 1px solid var(--border);
      position: relative;
      overflow: hidden;
    }
    .countries-section::before {
      content: '';
      position: absolute;
      inset: 12% auto auto -8%;
      width: 420px;
      height: 420px;
      border-radius: 50%;
      background: rgba(79,125,67,0.08);
      pointer-events: none;
    }
    .countries-layout {
      display: grid;
      grid-template-columns: minmax(360px, 0.98fr) 1.02fr;
      gap: 46px;
      align-items: center;
      position: relative;
      z-index: 1;
    }
    .countries-copy {
      position: sticky;
      top: 110px;
    }
    .countries-proof {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 28px;
    }
    .countries-proof span {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 9px 13px;
      border-radius: 999px;
      background: rgba(255,255,255,0.78);
      border: 1px solid var(--border);
      color: var(--text-2);
      font-size: 0.84rem;
      font-weight: 700;
    }
    .countries-proof span::before {
      content: '';
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--accent);
    }
    .countries-overview {
      margin-top: 28px;
      border-radius: 24px;
      padding: 20px;
      background:
        radial-gradient(circle at 18% 20%, rgba(235, 188, 77, 0.2), transparent 34%),
        linear-gradient(135deg, rgba(79,125,67,0.13), rgba(255,255,255,0.82));
      border: 1px solid rgba(79,125,67,0.18);
      box-shadow: var(--shadow-sm);
    }
    .countries-overview-main {
      min-height: 176px;
      border-radius: 18px;
      padding: 24px;
      background:
        linear-gradient(135deg, rgba(48, 87, 40, 0.94), rgba(91, 128, 62, 0.86)),
        var(--accent);
      color: #fff;
      position: relative;
      overflow: hidden;
    }
    .countries-overview-main::after {
      content: '';
      position: absolute;
      right: -44px;
      top: -56px;
      width: 190px;
      height: 190px;
      border-radius: 50%;
      border: 28px solid rgba(255,255,255,0.1);
    }
    .countries-overview-main span {
      display: block;
      font-size: 0.78rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      font-weight: 800;
      opacity: 0.78;
      margin-bottom: 12px;
    }
    .countries-overview-main strong {
      display: block;
      font-size: clamp(3rem, 7vw, 5.4rem);
      line-height: 0.9;
      letter-spacing: 0;
      margin-bottom: 14px;
      position: relative;
      z-index: 1;
    }
    .countries-overview-main p {
      max-width: 330px;
      color: rgba(255,255,255,0.82);
      font-size: 0.95rem;
      line-height: 1.65;
      position: relative;
      z-index: 1;
    }
    .countries-region-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      margin-top: 10px;
    }
    .countries-region-grid div {
      min-height: 112px;
      border-radius: 16px;
      padding: 16px 14px;
      background: rgba(255,255,255,0.76);
      border: 1px solid var(--border);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .countries-region-grid strong {
      color: var(--text-1);
      font-size: 1.8rem;
      line-height: 1;
    }
    .countries-region-grid span {
      color: var(--text-3);
      font-size: 0.78rem;
      font-weight: 700;
      line-height: 1.35;
    }
    .countries-showcase {
      position: relative;
      display: grid;
      gap: 8px;
      padding-left: 34px;
    }
    .country-rail {
      position: absolute;
      left: 12px;
      top: 24px;
      bottom: 24px;
      width: 2px;
      background: linear-gradient(180deg, transparent, var(--accent-border), var(--accent), var(--accent-border), transparent);
    }
    .country-node {
      position: relative;
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 12px;
      align-items: center;
      padding: 9px 16px;
      border-radius: 16px;
      background: rgba(255,255,255,0.74);
      border: 1px solid var(--border);
      box-shadow: var(--shadow-sm);
      transition: transform var(--silk-dur) var(--silk), box-shadow var(--silk-dur) var(--silk), border-color 0.3s;
    }
    .country-node::before {
      content: '';
      position: absolute;
      left: -27px;
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 0 6px rgba(79,125,67,0.12);
    }
    .country-node:hover {
      transform: translateX(8px);
      border-color: var(--accent-border);
      box-shadow: var(--shadow-md);
    }
    .country-node-large {
      padding: 12px 18px;
      background:
        linear-gradient(135deg, rgba(79,125,67,0.12), rgba(255,255,255,0.82)),
        rgba(255,255,255,0.78);
    }
    .country-flag {
      width: 42px;
      height: 42px;
      border-radius: 12px;
      display: grid;
      place-items: center;
      background: var(--surface);
      border: 1px solid var(--border);
      font-size: 1.38rem;
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
      overflow: hidden;
    }
    .country-flag img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .country-node-large .country-flag {
      width: 48px;
      height: 48px;
      font-size: 1.55rem;
    }
    .text-flag {
      color: #fff;
      background: var(--accent);
      font-size: 1rem;
      font-weight: 800;
    }
    .country-node h3 {
      font-size: 1.02rem;
      color: var(--text-1);
      margin-bottom: 2px;
    }
    .country-node strong {
      display: block;
      color: var(--accent);
      font-size: 0.82rem;
      margin-bottom: 2px;
    }
    .country-node span {
      color: var(--text-3);
      font-size: 0.76rem;
      line-height: 1.3;
    }

    /* ══════════════════════════════════════════
       8. EXAMINATION CALENDAR
    ══════════════════════════════════════════ */
    .exam-calendar-section {
      padding: 108px 0 116px;
      background:
        radial-gradient(circle at 12% 18%, rgba(79,125,67,0.12), transparent 28%),
        radial-gradient(circle at 92% 14%, rgba(235,188,77,0.18), transparent 24%),
        linear-gradient(180deg, var(--surface), var(--bg));
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      overflow: hidden;
      position: relative;
    }
    .exam-calendar-section::after {
      content: '';
      position: absolute;
      inset: auto -8% -38% auto;
      width: 520px;
      height: 520px;
      border-radius: 50%;
      background: rgba(106,46,14,0.05);
      pointer-events: none;
    }
    .exam-calendar-header {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 260px;
      gap: 40px;
      align-items: end;
      margin-bottom: 74px;
      position: relative;
      z-index: 1;
    }
    .calendar-summary {
      border-radius: 24px;
      padding: 24px;
      background:
        linear-gradient(135deg, rgba(255,255,255,0.82), rgba(247,239,200,0.62));
      border: 1px solid var(--border);
      box-shadow: var(--shadow-sm);
    }
    .calendar-summary span {
      display: block;
      color: var(--accent);
      font-size: 0.75rem;
      font-weight: 800;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 10px;
    }
    .calendar-summary strong {
      display: block;
      color: var(--text-1);
      font-size: 2.3rem;
      line-height: 1;
      margin-bottom: 10px;
    }
    .calendar-summary p {
      color: var(--text-3);
      font-size: 0.9rem;
      line-height: 1.55;
    }
    .exam-path {
      position: relative;
      display: grid;
      grid-template-columns: repeat(7, minmax(130px, 1fr));
      gap: 14px;
      min-height: 360px;
      z-index: 1;
    }
    .exam-path-line {
      position: absolute;
      left: 5%;
      right: 5%;
      top: 50%;
      height: 4px;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--earth), var(--accent), #D8A21E, var(--accent));
      box-shadow: 0 10px 30px rgba(79,125,67,0.18);
      z-index: 0;
    }
    .exam-milestone {
      position: relative;
      z-index: 1;
      align-self: start;
      min-height: 190px;
      padding: 18px 14px 16px;
      border-radius: 22px;
      text-align: center;
      background:
        linear-gradient(135deg, rgba(79,125,67,0.95), rgba(106,46,14,0.88));
      color: #fff;
      border: 1px solid rgba(255,255,255,0.16);
      box-shadow: 0 22px 55px rgba(79,125,67,0.24);
      backdrop-filter: blur(10px);
      transition: transform var(--silk-dur) var(--silk), box-shadow var(--silk-dur) var(--silk), border-color 0.3s;
    }
    .exam-milestone:nth-of-type(even) {
      align-self: end;
      margin-top: 112px;
    }
    .exam-milestone::before {
      content: '';
      position: absolute;
      left: 50%;
      top: calc(100% + 18px);
      width: 2px;
      height: 42px;
      transform: translateX(-50%);
      background: linear-gradient(180deg, var(--accent-border), transparent);
    }
    .exam-milestone:nth-of-type(even)::before {
      top: auto;
      bottom: calc(100% + 18px);
      background: linear-gradient(0deg, var(--accent-border), transparent);
    }
    .exam-milestone::after {
      content: '';
      position: absolute;
      left: 50%;
      top: calc(100% + 56px);
      width: 13px;
      height: 13px;
      border-radius: 50%;
      transform: translate(-50%, -50%);
      background: var(--accent);
      box-shadow: 0 0 0 8px rgba(79,125,67,0.12);
    }
    .exam-milestone:nth-of-type(even)::after {
      top: auto;
      bottom: calc(100% + 49px);
      transform: translate(-50%, 50%);
    }
    .exam-milestone:hover {
      transform: translateY(-8px);
      border-color: rgba(255,255,255,0.28);
      box-shadow: 0 28px 70px rgba(79,125,67,0.3);
    }
    .exam-icon {
      width: 58px;
      height: 58px;
      margin: 0 auto 14px;
      border-radius: 18px;
      display: grid;
      place-items: center;
      background: var(--surface);
      border: 1px solid var(--border);
      font-size: 1.55rem;
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.75);
    }
    .exam-milestone time {
      display: block;
      color: #fff;
      font-size: 0.76rem;
      font-weight: 800;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      margin-bottom: 6px;
    }
    .exam-milestone h3 {
      color: #fff;
      font-size: 1rem;
      line-height: 1.2;
      margin-bottom: 8px;
    }
    .exam-milestone p {
      color: rgba(255,255,255,0.78);
      font-size: 0.78rem;
      line-height: 1.48;
    }
    .exam-milestone:nth-of-type(2),
    .exam-milestone:nth-of-type(4),
    .exam-milestone:nth-of-type(6) {
      background: rgba(255,255,255,0.94);
      color: var(--text-1);
      border-color: rgba(106,46,14,0.13);
      box-shadow: var(--shadow-sm);
    }
    .exam-milestone:nth-of-type(2):hover,
    .exam-milestone:nth-of-type(4):hover,
    .exam-milestone:nth-of-type(6):hover {
      border-color: var(--accent-border);
      box-shadow: var(--shadow-md);
    }
    .exam-milestone:nth-of-type(2) time,
    .exam-milestone:nth-of-type(4) time,
    .exam-milestone:nth-of-type(6) time {
      color: var(--earth);
    }
    .exam-milestone:nth-of-type(2) h3,
    .exam-milestone:nth-of-type(4) h3,
    .exam-milestone:nth-of-type(6) h3 {
      color: var(--text-1);
    }
    .exam-milestone:nth-of-type(2) p,
    .exam-milestone:nth-of-type(4) p,
    .exam-milestone:nth-of-type(6) p {
      color: var(--text-3);
    }
    .exam-milestone .exam-icon {
      background: rgba(255,255,255,0.95);
    }

    /* ══════════════════════════════════════════
       9. EXAMINATION PATTERN
    ══════════════════════════════════════════ */
    .exam-pattern-section {
      padding: 108px 0;
      background:
        radial-gradient(circle at 82% 18%, rgba(79,125,67,0.1), transparent 26%),
        linear-gradient(180deg, var(--bg), var(--surface));
      border-bottom: 1px solid var(--border);
      position: relative;
      overflow: hidden;
    }
    .exam-pattern-section::before {
      content: '';
      position: absolute;
      left: -80px;
      top: 34%;
      width: 320px;
      height: 320px;
      border-radius: 50%;
      background: rgba(235,188,77,0.12);
      animation: patternFloat 8s ease-in-out infinite;
      pointer-events: none;
    }
    @keyframes patternFloat {
      0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
      50% { transform: translate3d(28px, -18px, 0) scale(1.05); }
    }
    .pattern-header {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 290px;
      gap: 40px;
      align-items: end;
      margin-bottom: 44px;
      position: relative;
      z-index: 1;
    }
    .pattern-total-card {
      padding: 26px;
      border-radius: 26px;
      background:
        linear-gradient(135deg, rgba(79,125,67,0.95), rgba(106,46,14,0.9));
      color: #fff;
      box-shadow: 0 24px 60px rgba(79,125,67,0.25);
      position: relative;
      overflow: hidden;
    }
    .pattern-total-card::after {
      content: '';
      position: absolute;
      right: -42px;
      bottom: -48px;
      width: 150px;
      height: 150px;
      border-radius: 50%;
      border: 24px solid rgba(255,255,255,0.1);
    }
    .pattern-total-card span {
      display: block;
      font-size: 0.76rem;
      font-weight: 800;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      opacity: 0.8;
      margin-bottom: 12px;
    }
    .pattern-total-card strong {
      display: block;
      font-size: 4rem;
      line-height: 0.9;
      margin-bottom: 12px;
      position: relative;
      z-index: 1;
    }
    .pattern-total-card p {
      color: rgba(255,255,255,0.76);
      font-size: 0.9rem;
      line-height: 1.55;
      position: relative;
      z-index: 1;
    }
    .pattern-dashboard {
      display: grid;
      grid-template-columns: 0.94fr 1.06fr;
      gap: 24px;
      position: relative;
      z-index: 1;
    }
    .pattern-format-panel,
    .subject-panel {
      border-radius: 28px;
      background: rgba(255,255,255,0.74);
      border: 1px solid var(--border);
      box-shadow: var(--shadow-md);
      padding: 26px;
      backdrop-filter: blur(12px);
    }
    .panel-kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--accent);
      font-size: 0.78rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 22px;
    }
    .panel-kicker::before {
      content: '';
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 0 7px rgba(79,125,67,0.11);
    }
    .format-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }
    .format-tile {
      min-height: 104px;
      border-radius: 18px;
      padding: 17px;
      background: var(--surface);
      border: 1px solid var(--border);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: transform 0.55s var(--silk), border-color 0.3s, box-shadow 0.55s var(--silk);
    }
    .format-tile:hover {
      transform: translateY(-6px);
      border-color: var(--accent-border);
      box-shadow: var(--shadow-sm);
    }
    .format-tile span,
    .language-strip span {
      color: var(--text-3);
      font-size: 0.78rem;
      font-weight: 700;
    }
    .format-tile strong {
      color: var(--text-1);
      font-size: 1.2rem;
      line-height: 1.15;
    }
    .language-strip {
      margin-top: 12px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      border-radius: 18px;
      padding: 17px 18px;
      color: #fff;
      background:
        linear-gradient(135deg, rgba(79,125,67,0.94), rgba(106,46,14,0.86));
      box-shadow: 0 16px 38px rgba(79,125,67,0.18);
    }
    .language-strip span { color: rgba(255,255,255,0.72); }
    .language-strip strong { font-size: 1.1rem; }
    .subject-panel {
      display: flex;
      flex-direction: column;
    }
    .subject-bars {
      display: grid;
      gap: 18px;
    }
    .subject-row {
      animation: subjectRise 0.8s var(--silk) both;
    }
    .subject-row:nth-child(2) { animation-delay: 0.08s; }
    .subject-row:nth-child(3) { animation-delay: 0.16s; }
    .subject-row:nth-child(4) { animation-delay: 0.24s; }
    @keyframes subjectRise {
      from { opacity: 0; transform: translateY(16px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .subject-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 8px;
    }
    .subject-meta span {
      color: var(--text-1);
      font-size: 0.92rem;
      font-weight: 800;
    }
    .subject-meta strong {
      color: var(--text-3);
      font-size: 0.8rem;
      font-weight: 700;
      white-space: nowrap;
    }
    .subject-track {
      height: 12px;
      border-radius: 999px;
      background: rgba(79,125,67,0.1);
      overflow: hidden;
      position: relative;
    }
    .subject-fill {
      height: 100%;
      width: var(--bar);
      border-radius: inherit;
      background: linear-gradient(90deg, var(--earth), var(--accent), #D8A21E);
      transform-origin: left;
      animation: barGrow 1.3s var(--silk) both;
    }
    .subject-row:nth-child(2) .subject-fill { animation-delay: 0.1s; }
    .subject-row:nth-child(3) .subject-fill { animation-delay: 0.2s; }
    .subject-row:nth-child(4) .subject-fill { animation-delay: 0.3s; }
    @keyframes barGrow {
      from { transform: scaleX(0); }
      to { transform: scaleX(1); }
    }
    .syllabus-card {
      margin-top: auto;
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 16px;
      padding: 20px;
      border-radius: 22px;
      background:
        linear-gradient(135deg, rgba(79,125,67,0.12), rgba(247,239,200,0.66));
      border: 1px solid var(--accent-border);
    }
    .syllabus-icon {
      width: 48px;
      height: 48px;
      border-radius: 15px;
      display: grid;
      place-items: center;
      background: var(--surface);
      border: 1px solid var(--border);
      font-size: 1.35rem;
    }
    .syllabus-card h3 {
      color: var(--text-1);
      font-size: 1rem;
      margin-bottom: 7px;
    }
    .syllabus-card p {
      color: var(--text-2);
      font-size: 0.88rem;
      line-height: 1.62;
    }

    /* ══════════════════════════════════════════
       10. GALLERY
    ══════════════════════════════════════════ */
    .gallery-section {
      padding: 110px 0;
      background:
        radial-gradient(circle at 15% 20%, rgba(79,125,67,0.12), transparent 28%),
        radial-gradient(circle at 88% 82%, rgba(235,188,77,0.16), transparent 26%),
        linear-gradient(180deg, var(--surface), var(--bg));
      border-bottom: 1px solid var(--border);
      position: relative;
      overflow: hidden;
    }
    .gallery-section::before {
      content: '';
      position: absolute;
      right: -160px;
      top: 80px;
      width: 430px;
      height: 430px;
      border-radius: 50%;
      background: rgba(106,46,14,0.05);
      pointer-events: none;
    }
    .gallery-header {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 32px;
      align-items: end;
      margin-bottom: 46px;
      position: relative;
      z-index: 1;
    }
    .gallery-counter {
      min-width: 150px;
      border-radius: 24px;
      padding: 20px 22px;
      background: rgba(255,255,255,0.72);
      border: 1px solid var(--border);
      box-shadow: var(--shadow-sm);
      display: flex;
      align-items: center;
      gap: 12px;
      color: var(--text-1);
    }
    .gallery-counter span {
      color: var(--accent);
      font-size: 2.25rem;
      line-height: 1;
      font-weight: 800;
    }
    .gallery-counter div {
      width: 1px;
      height: 42px;
      background: var(--border);
    }
    .gallery-counter strong {
      color: var(--text-3);
      font-size: 1rem;
    }
    .gallery-stage {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, 1.35fr) 0.65fr;
      gap: 24px;
      align-items: stretch;
    }
    .gallery-main {
      position: relative;
      min-height: 520px;
      border-radius: 30px;
      padding: 16px;
      background:
        linear-gradient(135deg, rgba(79,125,67,0.16), rgba(255,255,255,0.68));
      border: 1px solid var(--border);
      box-shadow: var(--shadow-lg);
      overflow: hidden;
    }
    .gallery-main::after {
      content: '';
      position: absolute;
      inset: auto 18px 18px 18px;
      height: 34%;
      border-radius: 24px;
      background: linear-gradient(180deg, transparent, rgba(47,26,14,0.18));
      pointer-events: none;
      z-index: 1;
    }
    .gallery-frame {
      height: 488px;
      min-height: 488px;
      max-height: 488px;
      border-radius: 24px;
      overflow: hidden;
      position: relative;
      background: var(--text-1);
    }
    .gallery-frame img {
      width: 100%;
      height: 100%;
      min-height: 0;
      max-height: 100%;
      object-fit: cover;
      object-position: top center;
      transition: opacity 0.45s var(--silk), transform 0.7s var(--silk);
    }
    .gallery-frame.is-switching img {
      opacity: 0;
      transform: scale(1.04) translateX(18px);
    }
    .gallery-frame figcaption {
      position: absolute;
      left: 22px;
      right: 22px;
      bottom: 22px;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 16px 18px;
      border-radius: 18px;
      background: rgba(255,252,237,0.86);
      border: 1px solid rgba(255,255,255,0.42);
      backdrop-filter: blur(10px);
      box-shadow: 0 18px 42px rgba(47,26,14,0.18);
    }
    .gallery-frame figcaption span {
      color: var(--accent);
      font-size: 0.75rem;
      font-weight: 800;
      letter-spacing: 0.09em;
      text-transform: uppercase;
    }
    .gallery-frame figcaption strong {
      color: var(--text-1);
      font-size: 1rem;
      text-align: right;
    }
    .gallery-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 46px;
      height: 46px;
      border-radius: 50%;
      z-index: 3;
      display: grid;
      place-items: center;
      background: rgba(255,252,237,0.9);
      border: 1px solid var(--border);
      color: var(--earth);
      font-size: 2rem;
      line-height: 1;
      box-shadow: var(--shadow-sm);
      transition: transform 0.35s var(--silk), background 0.35s var(--silk);
    }
    .gallery-nav:hover {
      transform: translateY(-50%) scale(1.08);
      background: #fff;
    }
    .gallery-prev { left: 30px; }
    .gallery-next { right: 30px; }
    .gallery-story {
      border-radius: 30px;
      padding: 28px;
      background:
        linear-gradient(135deg, rgba(79,125,67,0.96), rgba(106,46,14,0.9));
      color: #fff;
      box-shadow: 0 24px 60px rgba(79,125,67,0.22);
      display: flex;
      flex-direction: column;
      gap: 24px;
      position: relative;
      overflow: hidden;
    }
    .gallery-story::after {
      content: '';
      position: absolute;
      right: -70px;
      top: -60px;
      width: 180px;
      height: 180px;
      border-radius: 50%;
      border: 28px solid rgba(255,255,255,0.1);
    }
    .gallery-story-top {
      position: relative;
      z-index: 1;
    }
    .gallery-story-top span {
      display: block;
      font-size: 0.78rem;
      font-weight: 800;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.7);
      margin-bottom: 10px;
    }
    .gallery-story-top strong {
      display: block;
      font-size: clamp(2rem, 4vw, 3.1rem);
      line-height: 1.05;
      letter-spacing: 0;
      max-width: 320px;
    }
    .gallery-story p {
      color: rgba(255,255,255,0.78);
      font-size: 1rem;
      line-height: 1.7;
      position: relative;
      z-index: 1;
    }
    .gallery-progress {
      height: 8px;
      border-radius: 999px;
      background: rgba(255,255,255,0.18);
      overflow: hidden;
      position: relative;
      z-index: 1;
    }
    .gallery-progress span {
      display: block;
      width: 12%;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, #fff, #F0C85A);
      transition: width 0.45s var(--silk);
    }
    .gallery-mini-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-top: auto;
      position: relative;
      z-index: 1;
    }
    .gallery-mini-grid img {
      width: 100%;
      height: 118px;
      min-height: 118px;
      max-height: 118px;
      aspect-ratio: auto;
      object-fit: cover;
      object-position: top center;
      border-radius: 18px;
      border: 1px solid rgba(255,255,255,0.22);
      box-shadow: 0 18px 36px rgba(0,0,0,0.16);
    }
    .gallery-thumbs {
      position: relative;
      z-index: 1;
      display: grid;
      grid-auto-flow: column;
      grid-auto-columns: 96px;
      gap: 12px;
      overflow-x: auto;
      padding: 20px 2px 4px;
      scrollbar-width: thin;
      scrollbar-color: var(--accent-border) transparent;
    }
    .gallery-thumb {
      height: 72px;
      border-radius: 16px;
      border: 2px solid transparent;
      padding: 0;
      background: transparent;
      overflow: hidden;
      opacity: 0.66;
      transition: opacity 0.3s var(--silk), transform 0.3s var(--silk), border-color 0.3s;
    }
    .gallery-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center;
    }
    .gallery-thumb:hover,
    .gallery-thumb.is-active {
      opacity: 1;
      transform: translateY(-4px);
      border-color: var(--accent);
    }

    /* ══════════════════════════════════════════
       11. REGISTER
    ══════════════════════════════════════════ */
    .register-section {
      padding: 112px 0;
      background:
        radial-gradient(circle at 16% 18%, rgba(240,200,90,0.12), transparent 28%),
        radial-gradient(circle at 82% 82%, rgba(79,125,67,0.14), transparent 28%),
        linear-gradient(135deg, #2A130B 0%, #431E0F 48%, #281309 100%);
      color: #fff;
      position: relative;
      overflow: hidden;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .register-section::before {
      content: '';
      position: absolute;
      inset: 0;
      opacity: 0.18;
      background-image:
        linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
      background-size: 32px 32px;
      mask-image: linear-gradient(90deg, rgba(0,0,0,0.85), transparent 78%);
    }
    .register-section::after {
      content: '';
      position: absolute;
      right: -160px;
      top: -160px;
      width: 520px;
      height: 520px;
      border-radius: 50%;
      border: 72px solid rgba(255,255,255,0.04);
      pointer-events: none;
    }
    .register-shell {
      display: grid;
      grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1.14fr);
      gap: 48px;
      align-items: center;
      position: relative;
      z-index: 1;
    }
    .register-copy .section-label {
      color: #F2D36B;
      background: rgba(255,255,255,0.08);
      border-color: rgba(255,255,255,0.16);
    }
    .register-copy .section-label::before {
      background: #F2D36B;
    }
    .register-copy .section-title {
      color: #fff;
    }
    .register-copy .section-title em {
      color: #F2D36B;
    }
    .register-copy .section-sub {
      color: rgba(255,255,255,0.72);
      max-width: 520px;
    }
    .register-benefits {
      margin-top: 34px;
      display: grid;
      gap: 0;
      max-width: 560px;
      border-top: 1px solid rgba(255,255,255,0.12);
    }
    .register-benefits div {
      display: flex;
      align-items: center;
      gap: 14px;
      min-height: 56px;
      border-bottom: 1px solid rgba(255,255,255,0.1);
      color: rgba(255,255,255,0.86);
      font-size: 0.95rem;
      line-height: 1.45;
    }
    .register-benefits span {
      width: 28px;
      height: 28px;
      border-radius: 9px;
      display: grid;
      place-items: center;
      flex-shrink: 0;
      background: rgba(242,211,107,0.14);
      color: #F2D36B;
      font-size: 0.86rem;
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
    }
    .register-form {
      padding: 30px;
      border-radius: 30px;
      background:
        linear-gradient(135deg, rgba(255,252,237,0.98), rgba(255,255,255,0.94));
      border: 1px solid rgba(255,255,255,0.38);
      box-shadow: 0 34px 90px rgba(0,0,0,0.32);
      color: var(--text-1);
      position: relative;
      overflow: hidden;
    }
    .register-form::before {
      content: '';
      position: absolute;
      inset: 0 0 auto 0;
      height: 5px;
      background: linear-gradient(90deg, var(--earth), var(--accent), #D8A21E);
    }
    .student-type-group {
      position: relative;
      z-index: 1;
      margin-bottom: 20px;
    }

    .student-type-label {
      display: block;
      margin-bottom: 12px;
      color: var(--earth);
      font-size: 0.72rem;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .student-type-options {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .student-type-option {
      display: block;
      cursor: pointer;
    }

    .student-type-option input {
      position: absolute;
      opacity: 0;
      width: 0;
      height: 0;
      pointer-events: none;
    }

    .student-type-box {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 14px 16px;
      border-radius: 14px;
      border: 1.5px solid rgba(106, 46, 14, 0.14);
      background: rgba(255, 255, 255, 0.72);
      transition: border-color 0.25s var(--silk), background 0.25s var(--silk), box-shadow 0.25s var(--silk);
      min-height: 52px;
    }

    .student-type-check {
      flex-shrink: 0;
      width: 20px;
      height: 20px;
      margin-top: 1px;
      border-radius: 6px;
      border: 2px solid rgba(106, 46, 14, 0.25);
      background: #fff;
      position: relative;
      transition: border-color 0.25s, background 0.25s;
    }

    .student-type-check::after {
      content: '';
      position: absolute;
      left: 5px;
      top: 1px;
      width: 5px;
      height: 10px;
      border: solid #fff;
      border-width: 0 2px 2px 0;
      transform: rotate(45deg) scale(0);
      transition: transform 0.2s var(--silk);
    }

    .student-type-text {
      font-size: 0.88rem;
      font-weight: 600;
      color: var(--text-1);
      line-height: 1.4;
      text-transform: none;
      letter-spacing: 0;
    }

    .student-type-option input:checked + .student-type-box {
      border-color: var(--accent);
      background: rgba(234, 243, 220, 0.65);
      box-shadow: 0 0 0 3px rgba(79, 125, 67, 0.12);
    }

    .student-type-option input:checked + .student-type-box .student-type-check {
      background: var(--accent);
      border-color: var(--accent);
    }

    .student-type-option input:checked + .student-type-box .student-type-check::after {
      transform: rotate(45deg) scale(1);
    }

    .student-type-option input:focus-visible + .student-type-box {
      outline: 2px solid var(--accent);
      outline-offset: 2px;
    }

    .form-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      position: relative;
      z-index: 1;
    }
    .register-form label {
      display: grid;
      gap: 8px;
    }
    .register-form label span {
      color: var(--earth);
      font-size: 0.72rem;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }
    .register-form input,
    .register-form select {
      width: 100%;
      min-height: 48px;
      border-radius: 14px;
      border: 1px solid rgba(106,46,14,0.14);
      background: rgba(255,255,255,0.72);
      color: var(--text-1);
      font: inherit;
      font-size: 0.92rem;
      padding: 0 15px;
      outline: none;
      transition: border-color 0.3s var(--silk), box-shadow 0.3s var(--silk), background 0.3s var(--silk);
    }
    .register-form input:focus,
    .register-form select:focus {
      border-color: var(--accent);
      background: #fff;
      box-shadow: 0 0 0 4px rgba(79,125,67,0.13);
    }
    .register-form input::placeholder {
      color: rgba(91,76,55,0.48);
    }
    .otp-row {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 8px;
    }
    .otp-row button {
      min-width: 58px;
      min-height: 48px;
      border-radius: 14px;
      background: var(--text-1);
      color: #fff;
      font-weight: 800;
      font-size: 0.8rem;
      transition: transform 0.3s var(--silk), background 0.3s var(--silk);
    }
    .otp-row button:hover {
      transform: translateY(-2px);
      background: var(--earth);
    }
    .register-note {
      margin-top: 18px;
      padding: 16px 18px;
      border-radius: 16px;
      background: rgba(79,125,67,0.1);
      border: 1px solid rgba(79,125,67,0.13);
      color: var(--text-2);
      font-size: 0.82rem;
      line-height: 1.65;
    }
    .register-note a,
    .register-login a {
      color: var(--earth);
      font-weight: 900;
    }
    .register-submit {
      width: 100%;
      min-height: 56px;
      margin-top: 18px;
      border-radius: 16px;
      background: linear-gradient(135deg, var(--earth), #9B5724);
      color: #fff;
      font-size: 0.98rem;
      font-weight: 900;
      box-shadow: 0 18px 38px rgba(106,46,14,0.24);
      transition: transform 0.35s var(--silk), box-shadow 0.35s var(--silk);
    }
    .register-submit:hover {
      transform: translateY(-3px);
      box-shadow: 0 24px 48px rgba(106,46,14,0.3);
    }
    .register-login {
      margin-top: 14px;
      text-align: center;
      color: var(--text-3);
      font-size: 0.86rem;
    }

    /* ══════════════════════════════════════════
       12. PRICING
    ══════════════════════════════════════════ */
    .pricing-section { padding: 100px 0; background: var(--surface); border-top: 1px solid var(--border); }
    .pricing-header { text-align: center; margin-bottom: 48px; }
    .pricing-header .section-sub { margin: 16px auto 0; text-align: center; }

    .pricing-toggle {
      display: flex; align-items: center; justify-content: center; gap: 14px;
      margin-bottom: 56px;
    }
    .toggle-label { font-size: 0.9rem; font-weight: 500; color: var(--text-2); }
    .toggle-label.active { color: var(--accent); font-weight: 600; }
    .toggle-switch {
      width: 52px; height: 28px; border-radius: 100px;
      background: var(--accent); cursor: pointer; position: relative;
      transition: background 0.4s var(--silk);
    }
    .toggle-switch::after {
      content: ''; position: absolute; top: 3px; left: 3px;
      width: 22px; height: 22px; border-radius: 50%; background: #fff;
      transition: transform 0.4s var(--silk);
    }
    .toggle-switch.annual::after { transform: translateX(24px); }
    .toggle-badge {
      font-size: 0.7rem; font-weight: 700; color: var(--accent);
      background: var(--accent-ghost); border: 1px solid var(--accent-border);
      padding: 3px 10px; border-radius: 100px;
    }

    .pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .pricing-card {
      background: var(--surface-2); border-radius: var(--radius-lg);
      border: 1px solid var(--border); padding: 36px 32px;
      box-shadow: var(--shadow-sm);
      transition: transform var(--silk-dur) var(--silk), box-shadow var(--silk-dur) var(--silk);
      position: relative;
    }
    .pricing-card:hover { transform: scale(1.02); box-shadow: var(--shadow-md); }
    .pricing-card.featured {
      border-color: var(--accent); background: var(--text-1);
      box-shadow: 0 20px 60px rgba(26,122,110,0.25);
    }
    .pricing-card.featured:hover { transform: scale(1.025); box-shadow: 0 28px 80px rgba(26,122,110,0.35); }
    .pricing-badge {
      position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
      background: var(--accent); color: #fff;
      font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
      padding: 5px 16px; border-radius: 100px;
      white-space: nowrap;
    }
    .pricing-tier { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-3); margin-bottom: 12px; }
    .pricing-card.featured .pricing-tier { color: rgba(255,255,255,0.5); }
    .pricing-price { display: flex; align-items: baseline; gap: 2px; margin-bottom: 4px; }
    .price-annual-note {
      font-size: 0.78rem; color: var(--text-3); margin-bottom: 16px;
      min-height: 1.2em;
      transition: opacity 0.4s var(--silk);
    }
    .pricing-card.featured .price-annual-note { color: rgba(255,255,255,0.4); }
    .price-currency { font-size: 1.4rem; font-weight: 600; color: var(--text-2); margin-top: 6px; }
    .price-amount { font-size: 3.2rem; font-weight: 700; letter-spacing: 0; color: var(--text-1); line-height: 1; }
    .pricing-card.featured .price-currency,
    .pricing-card.featured .price-amount { color: #fff; }
    .price-period { font-size: 0.875rem; color: var(--text-3); }
    .pricing-card.featured .price-period { color: rgba(255,255,255,0.5); }
    .pricing-desc { font-size: 0.875rem; color: var(--text-2); line-height: 1.6; margin-bottom: 28px; }
    .pricing-card.featured .pricing-desc { color: rgba(255,255,255,0.65); }
    .pricing-divider { height: 1px; background: var(--border); margin-bottom: 24px; }
    .pricing-card.featured .pricing-divider { background: rgba(255,255,255,0.1); }
    .pricing-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
    .pricing-feature {
      display: flex; align-items: flex-start; gap: 10px;
      font-size: 0.875rem; color: var(--text-2);
    }
    .pricing-card.featured .pricing-feature { color: rgba(255,255,255,0.8); }
    .pricing-check {
      width: 18px; height: 18px; border-radius: 50%;
      background: var(--accent-ghost); border: 1px solid var(--accent-border);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; color: var(--accent); font-size: 10px; font-weight: 700;
      margin-top: 1px;
    }
    .pricing-card.featured .pricing-check {
      background: rgba(91,191,181,0.2); border-color: rgba(91,191,181,0.4); color: var(--accent-light);
    }
    .pricing-cta {
      display: block; text-align: center; font-size: 0.9rem; font-weight: 600;
      padding: 13px; border-radius: 100px;
      border: 1.5px solid var(--accent-border); color: var(--accent);
      transition: all 0.4s var(--silk);
    }
    .pricing-cta:hover { background: var(--accent-ghost); }
    .pricing-card.featured .pricing-cta {
      background: var(--accent); border-color: var(--accent); color: #fff;
      box-shadow: 0 6px 24px rgba(26,122,110,0.35);
    }
    .pricing-card.featured .pricing-cta:hover { background: var(--accent-mid); }

    /* ══════════════════════════════════════════
       8. TESTIMONIALS
    ══════════════════════════════════════════ */
    .testimonials-section { padding: 100px 0; }
    .testimonials-header { text-align: center; margin-bottom: 64px; }
    .testimonials-header .section-sub { margin: 16px auto 0; text-align: center; }
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: auto auto;
      gap: 24px;
    }
    .testimonial-card {
      background: var(--surface-2); border-radius: var(--radius-lg);
      border: 1px solid var(--border); padding: 32px;
      box-shadow: var(--shadow-sm);
      transition: transform var(--silk-dur) var(--silk), box-shadow var(--silk-dur) var(--silk);
    }
    .testimonial-card:hover { transform: scale(1.015); box-shadow: var(--shadow-md); }
    .testimonial-card.tall { grid-row: span 2; }
    .testimonial-stars { display: flex; gap: 3px; margin-bottom: 16px; }
    .testimonial-stars span { color: var(--accent); font-size: 14px; }
    .testimonial-quote {
      font-size: 0.9375rem; line-height: 1.7; color: var(--text-2);
      margin-bottom: 24px; font-style: italic;
    }
    .testimonial-card.tall .testimonial-quote { font-size: 1.0625rem; }
    .testimonial-author { display: flex; align-items: center; gap: 12px; }
    .author-avatar {
      width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
      border: 2px solid var(--accent-border);
      display: flex; align-items: center; justify-content: center;
      font-weight: 700; font-size: 0.875rem; color: var(--accent);
      background: var(--accent-ghost);
    }
    .author-name { font-size: 0.875rem; font-weight: 600; color: var(--text-1); }
    .author-role { font-size: 0.75rem; color: var(--text-3); margin-top: 1px; }

    /* ══════════════════════════════════════════
       9. INTEGRATIONS
    ══════════════════════════════════════════ */
    .integrations-section {
      padding: 100px 0; background: var(--surface);
      border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    }
    .integrations-header { text-align: center; margin-bottom: 56px; }
    .integrations-header .section-sub { margin: 16px auto 0; text-align: center; }
    .integrations-grid {
      display: flex; flex-wrap: wrap; gap: 12px;
      justify-content: center; max-width: 860px; margin: 0 auto;
    }
    .integration-tile {
      background: var(--surface-2); border-radius: 100px;
      border: 1px solid var(--border); padding: 10px 22px;
      box-shadow: var(--shadow-sm);
      transition: transform var(--silk-dur) var(--silk), box-shadow var(--silk-dur) var(--silk),
                  border-color 0.4s, color 0.4s, background 0.4s;
      cursor: default;
    }
    .integration-tile:hover {
      transform: translateY(-2px); box-shadow: var(--shadow-md);
      border-color: var(--accent-border); background: var(--accent-ghost);
    }
    .integration-name {
      font-size: 0.875rem; font-weight: 600; color: var(--text-2);
      white-space: nowrap; letter-spacing: 0;
    }
    .integration-tile:hover .integration-name { color: var(--accent); }

    /* ══════════════════════════════════════════
       10. FAQ
    ══════════════════════════════════════════ */
    .faq-section { padding: 100px 0; }
    .faq-inner { display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; align-items: start; }
    .faq-sidebar { position: sticky; top: 100px; }
    .faq-sidebar .section-sub { margin-top: 16px; margin-bottom: 32px; }
    .faq-toggle-all {
      font-size: 0.875rem; font-weight: 600; color: var(--accent);
      display: flex; align-items: center; gap: 6px;
      transition: opacity 0.3s;
    }
    .faq-toggle-all:hover { opacity: 0.75; }

    .faq-list { display: flex; flex-direction: column; gap: 0; }
    .faq-item {
      border-bottom: 1px solid var(--border);
    }
    .faq-item:first-child { border-top: 1px solid var(--border); }
    .faq-question {
      display: flex; justify-content: space-between; align-items: center;
      padding: 22px 0; cursor: pointer; gap: 16px;
      font-size: 0.9375rem; font-weight: 600; color: var(--text-1);
      transition: color 0.3s;
    }
    .faq-question:hover { color: var(--accent); }
    .faq-icon {
      width: 28px; height: 28px; border-radius: 50%;
      border: 1.5px solid var(--accent-border); flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      color: var(--accent); font-size: 16px; font-weight: 300;
      transition: transform 0.5s var(--silk), background 0.4s, color 0.4s;
    }
    .faq-item.open .faq-icon { transform: rotate(45deg); background: var(--accent); color: #fff; border-color: var(--accent); }
    .faq-answer {
      display: grid; grid-template-rows: 0fr;
      transition: grid-template-rows 0.5s var(--silk);
    }
    .faq-item.open .faq-answer { grid-template-rows: 1fr; }
    .faq-answer-inner {
      overflow: hidden;
      font-size: 0.9rem; line-height: 1.75; color: var(--text-2);
      padding-bottom: 0;
      transition: padding-bottom 0.5s var(--silk);
    }
    .faq-item.open .faq-answer-inner { padding-bottom: 20px; }

    /* ══════════════════════════════════════════
       11. CTA BANNER
    ══════════════════════════════════════════ */
    .cta-section { padding: 100px 0; }
    .cta-inner {
      background: var(--text-1);
      border-radius: var(--radius-lg);
      padding: 80px;
      display: flex; align-items: center; justify-content: space-between; gap: 48px;
      position: relative; overflow: hidden;
    }
    .cta-inner::before {
      content: '';
      position: absolute; top: -40%; right: -5%;
      width: 500px; height: 500px;
      background: radial-gradient(ellipse at center, rgba(91,191,181,0.15) 0%, transparent 70%);
      border-radius: 50%; pointer-events: none;
    }
    .cta-content { position: relative; z-index: 1; max-width: 560px; }
    .cta-label {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
      text-transform: uppercase; color: var(--accent-light);
      border: 1px solid rgba(91,191,181,0.3);
      padding: 6px 14px; border-radius: 100px; margin-bottom: 20px;
    }
    .cta-title {
      font-size: clamp(2rem, 4vw, 3rem); font-weight: 700;
      letter-spacing: 0; line-height: 1.15; color: #fff; margin-bottom: 16px;
    }
    .cta-title em { font-style: italic; font-family: 'Playfair Display', serif; color: var(--accent-light); }
    .cta-sub { font-size: 1rem; line-height: 1.7; color: rgba(255,255,255,0.6); }
    .cta-actions { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 14px; flex-shrink: 0; }
    .btn-cta-primary {
      display: flex; align-items: center; gap: 10px;
      font-size: 0.9375rem; font-weight: 600; color: #fff;
      background: var(--accent); padding: 16px 36px; border-radius: 100px;
      white-space: nowrap;
      transition: background var(--silk-dur) var(--silk), transform var(--silk-dur) var(--silk);
      box-shadow: 0 8px 32px rgba(26,122,110,0.40);
    }
    .btn-cta-primary:hover { background: var(--accent-mid); transform: scale(1.02); }
    .btn-cta-ghost {
      display: flex; align-items: center; justify-content: center; gap: 8px;
      font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,0.6);
      padding: 14px; border-radius: 100px; border: 1px solid rgba(255,255,255,0.1);
      white-space: nowrap;
      transition: color 0.3s, border-color 0.3s;
    }
    .btn-cta-ghost:hover { color: #fff; border-color: rgba(255,255,255,0.3); }

    /* ══════════════════════════════════════════
       12. FOOTER
    ══════════════════════════════════════════ */
    .footer {
      background: var(--text-1); padding: 80px 0 40px;
      border-top: 1px solid rgba(255,255,255,0.06);
    }
    .footer-grid {
      display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
      gap: 48px; margin-bottom: 64px;
    }
    .footer-brand .nav-logo { color: #fff; font-size: 1.3rem; margin-bottom: 16px; display: inline-flex; }
    .footer-brand .nav-logo img { width: 46px; height: 46px; }
    .footer-brand-desc { font-size: 0.875rem; line-height: 1.7; color: rgba(255,255,255,0.45); max-width: 240px; }
    .footer-socials { display: flex; gap: 10px; margin-top: 24px; }
    .social-btn {
      width: 36px; height: 36px; border-radius: 10px;
      border: 1px solid rgba(255,255,255,0.1);
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,0.4); font-size: 14px; font-weight: 700;
      transition: all 0.4s var(--silk);
    }
    .social-btn:hover { border-color: var(--accent-light); color: var(--accent-light); }
    .footer-col-label {
      font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
      text-transform: uppercase; color: rgba(255,255,255,0.25);
      margin-bottom: 20px;
    }
    .footer-links { display: flex; flex-direction: column; gap: 12px; }
    .footer-links a {
      font-size: 0.875rem; color: rgba(255,255,255,0.5);
      transition: color 0.3s;
    }
    .footer-links a:hover { color: var(--accent-light); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.06);
      padding-top: 32px;
      display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
    }
    .footer-copy { font-size: 0.8125rem; color: rgba(255,255,255,0.3); }
    .footer-copy a { color: rgba(255,255,255,0.45); transition: color 0.3s; }
    .footer-copy a:hover { color: var(--accent-light); }
    .footer-legal { display: flex; gap: 24px; }
    .footer-legal a { font-size: 0.8125rem; color: rgba(255,255,255,0.3); transition: color 0.3s; }
    .footer-legal a:hover { color: rgba(255,255,255,0.6); }

    /* ══════════════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════════════ */
    @media (max-width: 1024px) {
      .hero-inner { grid-template-columns: 1fr; gap: 56px; }
      .hero-visual { max-width: 650px; margin: 0 auto; justify-content: center; }
      .hero-image-card { width: min(104%, 680px); transform: translateX(0); }
      .about-grid { grid-template-columns: 1fr; gap: 40px; }
      .mnmse-feature-grid { max-width: 760px; height: 560px; }
      .mnmse-tile-content { grid-template-columns: 1fr; gap: 24px; }
      .mnmse-tile-visual { min-height: 150px; }
      .feature-row { grid-template-columns: 1fr; gap: 40px; }
      .feature-row.reverse { direction: ltr; }
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
      .stat-card { border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
      .stat-card:last-child { border-bottom: none; }
      .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
      .countries-layout { grid-template-columns: 1fr; gap: 38px; }
      .countries-copy { position: static; }
      .exam-calendar-header { grid-template-columns: 1fr; gap: 24px; margin-bottom: 44px; }
      .calendar-summary { max-width: 360px; }
      .exam-path {
        grid-template-columns: 1fr;
        gap: 14px;
        min-height: auto;
        padding-left: 34px;
      }
      .exam-path-line {
        left: 10px;
        right: auto;
        top: 18px;
        bottom: 18px;
        width: 4px;
        height: auto;
        background: linear-gradient(180deg, var(--earth), var(--accent), #D8A21E, var(--accent));
      }
      .exam-calendar-section:not(.calendar-match-section) .exam-milestone,
      .exam-calendar-section:not(.calendar-match-section) .exam-milestone:nth-of-type(even) {
        margin-top: 0;
        align-self: stretch;
        min-height: auto;
        text-align: left;
        display: grid;
        grid-template-columns: auto 1fr;
        column-gap: 16px;
        padding: 16px 18px;
      }
      .exam-calendar-section:not(.calendar-match-section) .exam-icon { margin: 0; grid-row: span 3; }
      .exam-milestone::before,
      .exam-milestone:nth-of-type(even)::before {
        left: -26px;
        top: 50%;
        bottom: auto;
        width: 26px;
        height: 2px;
        transform: none;
        background: linear-gradient(90deg, var(--accent-border), transparent);
      }
      .exam-milestone::after,
      .exam-milestone:nth-of-type(even)::after {
        left: -26px;
        top: 50%;
        bottom: auto;
        transform: translate(-50%, -50%);
      }
      .pattern-header,
      .pattern-dashboard {
        grid-template-columns: 1fr;
      }
      .pattern-total-card { max-width: 360px; }
      .gallery-header,
      .gallery-stage {
        grid-template-columns: 1fr;
      }
      .gallery-story {
        min-height: 360px;
      }
      .gallery-main {
        min-height: 0;
      }
      .gallery-frame {
        height: 460px;
        min-height: 460px;
        max-height: 460px;
      }
      .gallery-frame img {
        min-height: 0;
        max-height: 100%;
        object-position: top center;
      }
      .register-shell {
        grid-template-columns: 1fr;
        gap: 36px;
      }
      .register-form {
        max-width: 720px;
      }

      .footer-grid { grid-template-columns: 1fr 1fr; }
      .cta-inner { flex-direction: column; padding: 56px 40px; }
      .faq-inner { grid-template-columns: 1fr; }
      .faq-sidebar { position: static; }
    }
    @media (max-width: 768px) {
      .carousel-zoom { padding: 30px 0 0; }
      .container { padding: 0 20px; }
      .nav-links, .nav-cta { display: none; }
      .nav-hamburger { display: flex; }
      .about-section { padding: 76px 0; }
      .features-section { padding: 84px 0; }
      .features-header { margin-bottom: 44px; }
      .mnmse-feature-grid { height: 620px; }
      .mnmse-feature-card { padding: 28px; border-radius: 14px; }
      .mnmse-feature-icon { width: 46px; height: 46px; margin-bottom: 20px; }
      .exam-calendar-section { padding: 78px 0; }
      .exam-milestone { border-radius: 18px; }
      .exam-pattern-section { padding: 78px 0; }
      .pattern-header { gap: 24px; margin-bottom: 32px; }
      .pattern-format-panel,
      .subject-panel { border-radius: 22px; padding: 20px; }
      .format-grid { grid-template-columns: 1fr; }
      .subject-meta { align-items: flex-start; flex-direction: column; gap: 4px; }
      .subject-meta strong { white-space: normal; }
      .syllabus-card { grid-template-columns: 1fr; }
      .gallery-section { padding: 78px 0; }
      .gallery-counter { width: fit-content; }
      .gallery-main { border-radius: 22px; padding: 10px; }
      .gallery-frame {
        height: 380px;
        min-height: 380px;
        max-height: 380px;
        border-radius: 18px;
      }
      .gallery-frame img {
        min-height: 0;
        max-height: 100%;
        object-position: top center;
      }
      .gallery-frame figcaption {
        left: 14px;
        right: 14px;
        bottom: 14px;
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
      }
      .gallery-frame figcaption strong { text-align: left; }
      .gallery-nav { width: 40px; height: 40px; }
      .gallery-prev { left: 18px; }
      .gallery-next { right: 18px; }
      .gallery-thumbs { grid-auto-columns: 78px; }
      .gallery-thumb { height: 60px; border-radius: 12px; }
      .register-section { padding: 78px 0; }
      .register-form { padding: 22px; border-radius: 22px; }
      .student-type-options { grid-template-columns: 1fr; }
      .form-grid { grid-template-columns: 1fr; }
      .register-benefits div { min-height: 52px; font-size: 0.9rem; }
      .about-card-grid { grid-template-columns: 1fr; }
      .about-video-card { border-radius: 18px; }
      .hero-visual { min-height: 360px; }
      .hero-image-card { width: min(104%, 560px); transform: translateX(0); }
      .timer-card { padding: 24px; }
      .timer-clock { grid-template-columns: 1fr; justify-items: center; text-align: center; }
      .testimonials-grid { grid-template-columns: 1fr; }
      .testimonial-card.tall { grid-row: auto; }
      .footer-grid { grid-template-columns: 1fr; }
      .cta-inner { padding: 40px 24px; }
      .pricing-grid { max-width: 100%; }
      .countries-section { padding: 78px 0; }
      .countries-showcase { padding-left: 24px; }
      .countries-overview { padding: 14px; border-radius: 20px; }
      .countries-overview-main { min-height: 150px; padding: 20px; border-radius: 16px; }
      .countries-region-grid { grid-template-columns: 1fr; }
      .countries-region-grid div { min-height: auto; gap: 12px; }
      .country-node { padding: 16px; border-radius: 14px; }
      .country-node-large { padding: 18px; }
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
      /* Carousel mobile */
      .carousel-stage { height: 400px; }
      :root {
        --pw: 150px;
        --gap1: 168px;
        --gap2: 300px;
        --gap-hide: 430px;
      }
      .phone-card[data-pos="left2"],
      .phone-card[data-pos="right2"] { opacity: 0.35; }
    }
    @media (max-width: 480px) {

      .stats-grid { grid-template-columns: 1fr; }
      .stats-section { padding: 72px 0; }
      .stats-header { margin-bottom: 32px; }
      .countries-proof { gap: 8px; }
      .countries-proof span { font-size: 0.78rem; }
      .country-flag,
      .country-node-large .country-flag { width: 48px; height: 48px; font-size: 1.5rem; border-radius: 13px; }
      .country-node h3 { font-size: 1rem; }
      .hero-trust { gap: 12px; }
      .trust-divider { display: none; }
      .mnmse-feature-grid { height: 650px; }
      .mnmse-feature-card h3 { font-size: 1.75rem; }
      .mnmse-feature-card p { font-size: 0.95rem; }
      .mnmse-tile-points span { font-size: 0.86rem; }
      .mnmse-tile-visual { min-height: 128px; padding: 20px; }
      .timer-grid { gap: 6px; padding: 16px 10px; }
      .timer-controls { grid-template-columns: 1fr; }
      .clock-face { width: 132px; }
      .timer-card { padding: 20px; border-radius: 18px; }
      .hero-image-card { box-shadow: none; }
      .video-play-btn { width: 58px; height: 58px; }
      .about-video-caption { left: 18px; right: 18px; bottom: 16px; }
      .video-modal { padding: 14px; }
      
      /* Mobile responsive for Examination Calendar */
      .calendar-match-section { padding: 48px 0 28px; }
      .calendar-match-section .container { padding: 0 16px; }
      .calendar-match-section .section-title { font-size: 2rem; }
      .exam-calendar-header { grid-template-columns: 1fr; gap: 16px; margin-bottom: 24px; }
      .calendar-summary { min-height: auto; grid-template-columns: 1fr; gap: 8px; padding: 16px 18px; }
      .calendar-summary-icon { width: 48px; height: 48px; margin: 0 auto; }
      .exam-path { padding-left: 28px; gap: 12px; }
      .exam-path-line { left: 8px; top: 10px; bottom: 10px; }
      .exam-calendar-section:not(.calendar-match-section) .exam-milestone { min-height: auto; padding: 14px 12px 12px; grid-template-columns: 50px 1fr; gap: 12px; }
      .exam-milestone time { font-size: 0.78rem; }
      .exam-milestone h3 { font-size: 0.95rem; }
      .exam-milestone p { font-size: 0.8rem; }
      .exam-milestone::before { height: 32px; top: calc(100% + 10px); }
      .exam-milestone:nth-of-type(even)::before { bottom: calc(100% + 10px); }
      .calendar-benefits { grid-template-columns: 1fr; gap: 0; margin: 16px 0 16px; padding: 16px 16px; }
      .calendar-benefit { grid-template-columns: 48px 1fr; gap: 12px; min-height: auto; padding: 14px 0; }
      .calendar-benefit span { width: 48px; height: 48px; }
      .calendar-benefit strong { font-size: 0.9rem; }
      .calendar-benefit p { font-size: 0.78rem; }
      
      /* Mobile responsive for Examination Pattern */
      .pattern-match-section { padding: 48px 0 28px; }
      .pattern-match-section .container { padding: 0 16px; max-width: 100%; }
      .pattern-match-section .section-title { font-size: 1.85rem; }
      .pattern-header { grid-template-columns: 1fr; gap: 16px; margin-bottom: 20px; }
      .pattern-total-card { max-width: 100%; padding: 20px; min-height: auto; }
      .pattern-total-card strong { font-size: 2.5rem; }
      .pattern-total-stats { grid-template-columns: 1fr; gap: 10px; }
      .pattern-total-stats div { min-height: auto; padding: 12px; }
      .pattern-pills { grid-template-columns: 1fr; gap: 0; max-width: 100%; }
      .pattern-pills div { grid-template-columns: 44px 1fr; gap: 12px; min-height: auto; padding: 12px 0; }
      .pattern-pills div:not(:last-child) { border-right: 0; border-bottom: 1px solid rgba(106,46,14,0.12); margin-right: 0; margin-bottom: 12px; }
      .pattern-pills span { width: 44px; height: 44px; }
      .pattern-pills strong { font-size: 0.75rem; line-height: 1.2; }
      .format-grid { grid-template-columns: 1fr; gap: 10px; }
      .format-tile { min-height: 90px; padding: 14px; }
      .pattern-dashboard { grid-template-columns: 1fr; gap: 16px; }
    }

    @media (max-width: 375px) {
      /* Extra small phone optimizations for Examination sections */
      .calendar-match-section .section-title { font-size: 1.75rem; }
      .calendar-summary { padding: 12px 14px; }
      .calendar-summary-icon { width: 40px; height: 40px; }
      .exam-path { padding-left: 24px; }
      .exam-path-line { left: 6px; }
      .exam-calendar-section:not(.calendar-match-section) .exam-milestone { grid-template-columns: 44px 1fr; padding: 12px 10px 10px; }
      .exam-calendar-section:not(.calendar-match-section) .exam-milestone time { font-size: 0.75rem; }
      .exam-calendar-section:not(.calendar-match-section) .exam-milestone h3 { font-size: 0.9rem; }
      .exam-calendar-section:not(.calendar-match-section) .exam-icon img { max-width: 36px; }
      .calendar-benefits { padding: 12px 12px; margin: 12px 0; }
      .calendar-benefit span { width: 44px; height: 44px; }
      
      .pattern-match-section .section-title { font-size: 1.65rem; }
      .pattern-total-card strong { font-size: 2rem; }
      .pattern-pills strong { font-size: 0.7rem; }
      .pattern-pills span { width: 40px; height: 40px; }
      .format-tile { min-height: 85px; padding: 12px; font-size: 0.85rem; }
    }

/* ══════════════════════════════════════════
   2026 Redesign Pass
══════════════════════════════════════════ */
.section-label {
  background: rgba(79,125,67,0.12);
  color: var(--accent);
  border: 1px solid rgba(79,125,67,0.18);
  border-radius: 999px;
  padding: 6px 13px;
  width: fit-content;
}

.hero {
  padding: 150px 0 88px;
  background:
    radial-gradient(circle at 88% 28%, rgba(79,125,67,0.12), transparent 30%),
    linear-gradient(135deg, #FFFDF0 0%, #FFF7DA 58%, #EFF5D9 100%);
}
.hero-inner {
  gap: 54px;
  align-items: center;
}
.hero-badge {
  margin-bottom: 22px;
  background: rgba(255,255,255,0.86);
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 6.4vw, 5.65rem);
  line-height: 0.98;
  color: #2A130B;
}
.hero-title em {
  display: inline-block;
  color: var(--accent);
}
.hero-sub {
  max-width: 560px;
  font-size: 1rem;
  line-height: 1.72;
}
.hero-image-card {
  width: min(112%, 760px);
  aspect-ratio: auto;
  transform: translateX(18px);
  border-radius: 28px;
  overflow: visible;
  clip-path: none;
  padding: 10px;
}
.hero-image-card img {
  object-fit: contain;
  object-position: center center;
  transform: none;
  height: auto;
  max-height: 540px;
}
.hero-trust {
  gap: 16px;
  margin-top: 34px;
}
.trust-item {
  background: rgba(79,125,67,0.08);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--accent);
}
.trust-divider { display: none; }

.about-section {
  background:
    radial-gradient(circle at 94% 6%, rgba(79,125,67,0.16), transparent 20%),
    linear-gradient(135deg, #FFFDF0, #FFF8E2);
}
.about-grid {
  grid-template-columns: 0.96fr 1.04fr;
  gap: 42px;
  align-items: start;
}
.about-content { order: -1; }
.about-content .section-title {
  font-size: clamp(2rem, 4vw, 3.6rem);
}
.about-content .section-title em {
  display: block;
}
.about-content .section-sub {
  border-left: 3px solid var(--accent);
  padding-left: 18px;
  max-width: 680px;
}
.about-video-card {
  min-height: 360px;
  border-radius: 34px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(42,19,11,0.08), rgba(79,125,67,0.12)),
    var(--surface);
  box-shadow: 0 22px 60px rgba(79,125,67,0.18);
}
.about-video-card video {
  opacity: 0.62;
  filter: saturate(1.05) contrast(1.04);
}
.about-video-caption {
  max-width: 440px;
}
.about-video-caption strong {
  font-size: clamp(1.15rem, 2vw, 1.55rem);
}
.video-play-btn {
  width: 88px;
  height: 88px;
  background: rgba(255,252,237,0.95);
  color: var(--accent);
  box-shadow: 0 18px 44px rgba(42,19,11,0.18);
}
.about-video-info-card {
  display: none;
}
.about-card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.about-mini-card {
  border-radius: 16px;
  min-height: 118px;
  background: rgba(255,255,255,0.88);
}
.about-card-icon {
  background: var(--accent);
}

.features-section {
  display: none;
}

.stats-section {
  padding: 92px 0;
  background:
    radial-gradient(circle at 78% 10%, rgba(242,211,107,0.15), transparent 22%),
    linear-gradient(135deg, #2A130B 0%, #4A240F 52%, #2B1309 100%);
}
.stats-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 32px;
  max-width: none;
  align-items: end;
}
.stats-header .section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 4.8vw, 4.6rem);
}
.stats-grid {
  gap: 22px;
}
.stat-card {
  border-radius: 12px;
  min-height: 330px;
  background: #FFF9E9;
  position: relative;
}
.stat-card::before {
  content: '★';
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  margin: -2px auto 12px;
  border-radius: 50%;
  color: #D7A326;
  background: rgba(215,163,38,0.1);
  border: 1px solid rgba(215,163,38,0.22);
  font-size: 1.6rem;
}
.stat-medal {
  background: var(--accent);
  color: #FFFDF0;
  margin-bottom: 16px;
}
.stat-value {
  font-size: clamp(3rem, 5vw, 4.4rem);
}

.countries-section {
  background: linear-gradient(135deg, #FFFDF0, #FFF8E1);
}
.countries-layout {
  grid-template-columns: minmax(360px, 0.95fr) minmax(420px, 1.05fr);
}
.countries-copy .section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4.2vw, 4rem);
}
.countries-overview {
  min-height: 320px;
  background:
    radial-gradient(circle at 56% 52%, rgba(79,125,67,0.24), transparent 8%),
    radial-gradient(circle at 62% 44%, rgba(79,125,67,0.2), transparent 7%),
    radial-gradient(circle at 70% 62%, rgba(79,125,67,0.18), transparent 7%),
    radial-gradient(circle at 80% 72%, rgba(79,125,67,0.18), transparent 7%),
    linear-gradient(135deg, rgba(255,255,255,0.88), rgba(239,245,217,0.78));
}
.countries-overview-main {
  background:
    repeating-radial-gradient(circle at 48% 50%, rgba(79,125,67,0.14) 0 2px, transparent 2px 7px),
    linear-gradient(135deg, rgba(79,125,67,0.08), rgba(255,255,255,0.55));
  color: var(--text-1);
}
.countries-overview-main strong,
.countries-overview-main span { color: var(--accent); }
.countries-overview-main p { color: var(--text-2); }
.country-node {
  min-height: 82px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.95) 0%, rgba(255,252,237,0.92) 62%, rgba(202,222,171,0.6) 100%);
  overflow: hidden;
}
.country-node::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 170px;
  height: 60px;
  opacity: 0.42;
  background: linear-gradient(135deg, transparent 35%, rgba(79,125,67,0.22) 36% 44%, transparent 45%);
}
.country-flag {
  border-radius: 10px;
  width: 58px;
  height: 40px;
}
.country-node-large .country-flag {
  width: 58px;
  height: 40px;
}

.exam-calendar-section {
  background: linear-gradient(135deg, #FFFDF0, #FFF8E5);
}
.exam-calendar-header {
  margin-bottom: 42px;
}
.exam-calendar-header .section-title,
.pattern-header .section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4.8vw, 4.5rem);
}
.calendar-summary {
  text-align: center;
  padding: 28px;
}
.calendar-summary::before {
  content: '▣';
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: #FFFDF0;
  color: var(--accent);
  font-size: 2rem;
  box-shadow: var(--shadow-sm);
}
.exam-path {
  grid-template-columns: repeat(5, minmax(150px, 1fr));
  min-height: 300px;
  align-items: start;
}
.exam-path-line {
  top: auto;
  bottom: 48px;
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(79,125,67,0.45) 0 8px, transparent 8px 14px);
}
.exam-milestone,
.exam-milestone:nth-of-type(2),
.exam-milestone:nth-of-type(4),
.exam-milestone:nth-of-type(6) {
  align-self: start;
  margin-top: 0;
  min-height: 220px;
  padding: 0 0 22px;
  overflow: hidden;
  background: rgba(255,255,255,0.92);
  color: var(--text-1);
  border-color: rgba(106,46,14,0.12);
  box-shadow: var(--shadow-sm);
}
.exam-milestone::before {
  top: calc(100% + 10px);
  height: 28px;
}
.exam-milestone::after {
  top: calc(100% + 42px);
}
.exam-milestone:nth-of-type(even)::before {
  top: calc(100% + 10px);
  bottom: auto;
  background: linear-gradient(180deg, var(--accent-border), transparent);
}
.exam-milestone:nth-of-type(even)::after {
  top: calc(100% + 42px);
  bottom: auto;
  transform: translate(-50%, -50%);
}
.exam-icon {
  width: 100%;
  height: 74px;
  margin: 0 0 20px;
  border-radius: 0;
  background: linear-gradient(135deg, var(--accent), #6B8D43);
  color: #fff;
}
.exam-milestone.highlight .exam-icon {
  background: linear-gradient(135deg, var(--earth), #7A3A16);
}
.exam-milestone time,
.exam-milestone:nth-of-type(2) time,
.exam-milestone:nth-of-type(4) time,
.exam-milestone:nth-of-type(6) time {
  color: var(--accent);
}
.exam-milestone h3,
.exam-milestone:nth-of-type(2) h3,
.exam-milestone:nth-of-type(4) h3,
.exam-milestone:nth-of-type(6) h3 {
  color: var(--text-1);
  padding: 0 16px;
}
.exam-milestone p,
.exam-milestone:nth-of-type(2) p,
.exam-milestone:nth-of-type(4) p,
.exam-milestone:nth-of-type(6) p {
  color: var(--text-3);
  padding: 0 16px;
}

.exam-pattern-section {
  background: linear-gradient(135deg, #FFFDF0, #FFF8E4);
}
.pattern-header {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 470px);
}
.pattern-total-card {
  padding: 30px;
  background: linear-gradient(135deg, var(--accent), #325C2D);
}
.pattern-total-card strong {
  font-size: 4.8rem;
}
.pattern-dashboard {
  grid-template-columns: 0.9fr 1.1fr;
}
.format-tile {
  background: #FFFDF0;
}
.format-tile strong {
  font-size: 1rem;
}
.subject-row {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
}
.subject-track {
  display: none;
}
.language-strip {
  background: linear-gradient(135deg, var(--accent), #325C2D);
  color: #fff;
  border: 0;
}
.language-strip span,
.language-strip strong {
  color: #fff;
}

@media (max-width: 1024px) {
  .about-grid,
  .countries-layout,
  .pattern-header,
  .pattern-dashboard,
  .stats-header {
    grid-template-columns: 1fr;
  }
  .about-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .exam-path {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .exam-path-line,
  .exam-milestone::before,
  .exam-milestone::after {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 120px;
  }
  .hero-title {
    font-size: clamp(2.6rem, 13vw, 4rem);
  }
  .about-card-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .country-node {
    min-height: 76px;
  }
}

/* Compact MNMSE FAQ */
.faq-section {
  padding: 78px 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(79,125,67,0.08), transparent 28%),
    linear-gradient(135deg, #FFFDF0, #FFF8E4);
}
.faq-inner {
  grid-template-columns: minmax(260px, 0.45fr) minmax(0, 1fr);
  gap: 34px;
}
.faq-sidebar {
  top: 92px;
  padding: 22px;
  border-radius: 18px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(79,125,67,0.14);
  box-shadow: var(--shadow-sm);
}
.faq-sidebar .section-title {
  font-size: clamp(1.8rem, 2.7vw, 2.7rem);
  line-height: 1.06;
}
.faq-sidebar .section-sub {
  font-size: 0.9rem;
  line-height: 1.58;
  margin-bottom: 18px;
}
.faq-toggle-all {
  width: 100%;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(79,125,67,0.1);
  border: 1px solid rgba(79,125,67,0.18);
}
.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-items: start;
}
.faq-category {
  grid-column: 1 / -1;
  width: fit-content;
  margin: 12px 0 2px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(79,125,67,0.12);
  color: var(--accent);
  border: 1px solid rgba(79,125,67,0.16);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.faq-category:first-child {
  margin-top: 0;
}
.faq-item,
.faq-item:first-child {
  border: 1px solid rgba(106,46,14,0.1);
}
.faq-item {
  border-radius: 14px;
  background: rgba(255,255,255,0.84);
  box-shadow: 0 12px 28px rgba(106,46,14,0.06);
  overflow: hidden;
}
.faq-question {
  min-height: 58px;
  padding: 13px 14px;
  gap: 12px;
  font-size: 0.88rem;
  line-height: 1.38;
}
.faq-icon {
  width: 24px;
  height: 24px;
  font-size: 14px;
}
.faq-answer-inner {
  padding: 0 14px;
  font-size: 0.82rem;
  line-height: 1.58;
}
.faq-item.open {
  background: #fff;
  border-color: rgba(79,125,67,0.22);
  box-shadow: 0 16px 34px rgba(79,125,67,0.1);
}
.faq-item.open .faq-answer-inner {
  padding-bottom: 14px;
}

@media (max-width: 1024px) {
  .faq-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .faq-sidebar {
    position: static;
  }
}

/* Hero exact-match pass */
body {
  background: #fff9e8;
}
.container {
  max-width: 1600px;
  padding: 0 64px;
}
.nav {
  height: 82px;
  background: rgba(255,250,231,0.94);
  border-bottom: 1px solid rgba(106,46,14,0.16);
}
.nav-inner {
  max-width: 1600px;
  padding: 0 54px;
  height: 82px;
}
.nav-logo {
  font-size: 1.65rem;
}
.nav-logo img {
  width: 54px;
  height: 54px;
  box-shadow: 0 4px 20px rgba(42,19,11,0.12);
}
.nav-links {
  gap: 46px;
}
.nav-links a,
.btn-ghost {
  font-size: 1rem;
  color: #2A211C;
}
.btn-primary {
  padding: 14px 31px;
  font-size: 1.05rem;
  box-shadow: 0 8px 20px rgba(106,46,14,0.28);
}

.hero {
  min-height: 760px;
  padding: 126px 0 66px;
  background:
    radial-gradient(circle at 87% 38%, rgba(79,125,67,0.1), transparent 28%),
    linear-gradient(135deg, #FFFDF3 0%, #FFF9E7 58%, #F4F3D6 100%);
}
.hero::before {
  background:
    radial-gradient(circle at 9% 42%, rgba(106,46,14,0.055), transparent 18%),
    linear-gradient(120deg, rgba(255,253,240,0.92), rgba(255,249,230,0.58));
}
.hero::after {
  height: 110px;
  background: linear-gradient(0deg, rgba(106,46,14,0.035), transparent);
}
.hero-inner {
  grid-template-columns: minmax(0, 0.98fr) minmax(580px, 1.02fr);
  gap: 52px;
}
.hero-badge {
  padding: 7px 18px 7px 10px;
  margin-bottom: 30px;
  border-radius: 999px;
  background: rgba(255,255,255,0.8);
  border-color: rgba(79,125,67,0.26);
}
.hero-badge-dot {
  width: 36px;
  height: 36px;
  font-size: 18px;
  background: #77340F;
}
.hero-badge span {
  font-size: 0.78rem;
}
.hero-title {
  font-size: clamp(3.25rem, 4.35vw, 4.65rem);
  line-height: 1.02;
  margin-bottom: 30px;
  letter-spacing: 0;
}
.hero-title span,
.hero-title em {
  white-space: nowrap;
}
.hero-title em {
  color: #477948;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.94;
}
.hero-sub {
  max-width: 760px;
  margin-bottom: 31px;
  color: #37312B;
}
.hero-sub-lead {
  display: block;
  margin-bottom: 16px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.5;
}
.hero-sub strong {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1.2rem, 1.55vw, 1.38rem);
  font-weight: 600;
  font-style: normal;
  line-height: 1.45;
  color: #2A130B;
  margin: 0;
}
.hero-sub em {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1.15rem, 1.45vw, 1.32rem);
  font-weight: 500;
  font-style: normal;
  line-height: 1.45;
  color: #477948;
  margin: 0;
}
.hero-sub > span:not(.hero-sub-lead) {
  display: block;
  max-width: 640px;
  font-size: 1rem;
  line-height: 1.48;
  color: #4B4640;
}
.hero-actions {
  gap: 23px;
}
.btn-primary-lg {
  min-width: 200px;
  justify-content: center;
  padding: 17px 30px;
  font-size: 1.02rem;
  font-weight: 800;
  background: #78310E;
  box-shadow: 0 12px 28px rgba(106,46,14,0.32);
}
.btn-outline-lg {
  min-width: 210px;
  justify-content: center;
  padding: 15px 27px;
  font-size: 0.98rem;
  font-weight: 800;
  border: 1.5px solid rgba(79,125,67,0.32);
  background: rgba(255,255,255,0.28);
}
.hero-trust {
  margin-top: 36px;
  gap: 0;
  flex-wrap: nowrap;
}
.trust-item {
  min-width: 154px;
  padding: 0 22px 0 0;
  gap: 14px;
  background: transparent;
  border-radius: 0;
  color: #2A211C;
}
.trust-item:not(:last-child) {
  border-right: 1px solid rgba(106,46,14,0.16);
  margin-right: 28px;
}
.trust-item svg {
  width: 38px;
  height: 38px;
  padding: 9px;
  border-radius: 50%;
  background: rgba(79,125,67,0.11);
  color: #477948;
}
.trust-item span {
  display: grid;
  gap: 1px;
  font-size: 0.92rem;
  line-height: 1.15;
  color: #241B16;
}
.trust-item span strong {
  font-size: 1.05rem;
  color: #477948;
}
.hero-visual {
  min-height: auto;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
}
.hero-visual::before {
  display: none;
}
.hero-image-card {
  width: min(100%, 590px);
  aspect-ratio: auto;
  transform: translateX(0);
  border-radius: 30px;
  overflow: visible;
  clip-path: none;
  background: #fff9e5;
  box-shadow: 0 16px 50px rgba(79,125,67,0.13), inset 0 0 0 1px rgba(106,46,14,0.07);
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image-card img {
  width: 100%;
  height: auto;
  max-height: 540px;
  display: block;
  object-fit: contain;
  object-position: center center;
  transform: none;
  border-radius: 22px;
  filter: saturate(0.98) contrast(0.99);
}

@media (max-width: 1280px) {
  .container,
  .nav-inner {
    padding-left: 34px;
    padding-right: 34px;
  }
  .hero-inner {
    grid-template-columns: minmax(0, 0.95fr) minmax(520px, 1.05fr);
    gap: 38px;
  }
  .hero-title {
    font-size: clamp(3.15rem, 4.35vw, 4.55rem);
  }
  .hero-image-card {
    width: min(100%, 520px);
  }
}

/* About exact-match pass */
.about-section {
  padding: 72px 0 54px;
  background:
    radial-gradient(circle at 96% 24%, rgba(215,163,38,0.1), transparent 18%),
    linear-gradient(135deg, #FFFDF0, #FFF8E1);
  position: relative;
  overflow: hidden;
}
.about-section::before,
.about-section::after {
  content: '';
  position: absolute;
  width: 118px;
  height: 118px;
  opacity: 0.26;
  background-image: radial-gradient(rgba(106,46,14,0.32) 2px, transparent 2px);
  background-size: 17px 17px;
  pointer-events: none;
}
.about-section::before {
  right: 12px;
  top: 214px;
}
.about-section::after {
  left: -8px;
  bottom: 2px;
}
.about-top-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(560px, 1.02fr);
  gap: 34px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.about-copy .section-label {
  margin-bottom: 24px;
  padding: 9px 22px;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
}
.about-copy .section-title {
  font-size: clamp(2.15rem, 3.35vw, 3.65rem);
  line-height: 1.02;
  color: #2A130B;
  margin-bottom: 22px;
}
.about-copy .section-title em {
  display: block;
  color: #477948;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 600;
}
.about-lead {
  font-size: clamp(0.98rem, 1.25vw, 1.18rem);
  color: #332822;
  margin-bottom: 24px;
}
.about-lead strong {
  color: var(--accent);
}
.about-copy .section-sub {
  max-width: 610px;
  padding-left: 18px;
  border-left: 3px solid var(--accent);
  color: #49413B;
  font-size: 0.94rem;
  line-height: 1.62;
  margin-bottom: 26px;
}
.about-feature-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-radius: 18px;
  border: 1px solid rgba(106,46,14,0.12);
  background: rgba(255,255,255,0.86);
  box-shadow: 0 14px 34px rgba(106,46,14,0.08);
  overflow: hidden;
  max-width: 100%;
}
.about-feature-strip div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 9px;
  align-items: center;
  min-height: 78px;
  padding: 14px 13px;
}
.about-feature-strip div:not(:last-child) {
  border-right: 1px solid rgba(106,46,14,0.12);
}
.about-feature-strip span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 25%, rgba(255,255,255,0.65), transparent 38%),
    rgba(79,125,67,0.13);
  border: 1px solid rgba(79,125,67,0.14);
  font-size: 1.35rem;
}
.about-feature-strip span img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  display: block;
}
.about-feature-strip strong {
  color: #2A211C;
  font-size: 0.78rem;
  line-height: 1.15;
}
.about-media {
  position: relative;
}
.about-video-card {
  min-height: 430px;
  width: 100%;
  border-radius: 42px;
  border: 7px solid rgba(255,252,237,0.88);
  box-shadow: 0 22px 58px rgba(42,19,11,0.18);
  overflow: hidden;
}
.about-video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  filter: saturate(1.03) contrast(1.04);
}
.about-video-card::after {
  background: linear-gradient(180deg, transparent 32%, rgba(20,15,12,0.82) 100%);
}
.video-play-btn {
  width: 110px;
  height: 110px;
  top: 42%;
  background: rgba(255,253,240,0.96);
  color: var(--accent);
  box-shadow: 0 18px 44px rgba(42,19,11,0.18);
}
.video-play-btn span {
  font-size: 2.1rem;
  transform: translateX(4px);
}
.about-video-caption {
  left: 38px;
  bottom: 28px;
  max-width: 540px;
}
.about-video-caption strong {
  font-size: clamp(1.5rem, 2.2vw, 2.25rem);
  line-height: 1.08;
}
.about-video-caption span {
  font-size: 1.1rem;
  line-height: 1.45;
}
.about-video-sign {
  position: absolute;
  right: 38px;
  bottom: 34px;
  z-index: 2;
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.28rem;
  line-height: 1.1;
  transform: rotate(-8deg);
  text-shadow: 0 2px 10px rgba(0,0,0,0.28);
}
.about-card-grid {
  position: relative;
  z-index: 1;
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 24px;
}
.about-mini-card {
  min-height: 292px;
  border-radius: 16px;
  padding: 26px 22px 22px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(106,46,14,0.12);
  box-shadow: 0 18px 42px rgba(106,46,14,0.09);
  position: relative;
  overflow: hidden;
}
.about-mini-card::after {
  content: '';
  position: absolute;
  left: 22px;
  bottom: 20px;
  width: 56px;
  height: 3px;
  background: var(--accent);
}
.about-card-icon {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 22px;
  top: 22px;
  margin: 0;
  background: var(--accent);
  color: #fff;
  font-size: 1rem;
  z-index: 2;
}
.about-card-art {
  height: 102px;
  display: grid;
  place-items: center;
  margin: 4px 0 16px;
  background: radial-gradient(circle, rgba(215,163,38,0.14), transparent 62%);
}

.about-card-art img {
  width: min(116px, 94%);
  height: 98px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 12px 16px rgba(43, 20, 10, 0.16));
}
.about-mini-card h3 {
  color: #241B16;
  font-size: 1.25rem;
  line-height: 1.08;
  margin-bottom: 10px;
}
.about-mini-card p {
  color: #4E4740;
  font-size: 0.98rem;
  line-height: 1.45;
}
.about-commitment {
  width: fit-content;
  max-width: 880px;
  margin: 28px auto 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 30px;
  border-radius: 999px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(106,46,14,0.12);
  color: #3A322C;
  box-shadow: 0 12px 28px rgba(106,46,14,0.08);
}
.about-commitment strong {
  color: #241B16;
}
.about-commitment em {
  color: var(--accent);
  font-style: normal;
  font-weight: 800;
}

@media (max-width: 1100px) {
  .about-top-grid {
    grid-template-columns: 1fr;
  }
  .about-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .about-section {
    padding: 58px 0 42px;
  }
  .about-copy .section-title {
    font-size: clamp(2.2rem, 10vw, 3.4rem);
  }
  .about-feature-strip {
    grid-template-columns: 1fr;
  }
  .about-feature-strip div:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid rgba(106,46,14,0.12);
  }
  .about-video-card {
    min-height: 320px;
    border-radius: 26px;
  }
  .about-card-grid {
    grid-template-columns: 1fr;
  }
  .about-commitment {
    border-radius: 18px;
    align-items: flex-start;
  }
}

@media (max-width: 1024px) {
  .nav {
    height: 78px;
  }
  .nav-inner {
    height: 78px;
  }
  .hero {
    min-height: auto;
    padding: 120px 0 68px;
  }
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    min-height: auto;
  }
  .hero-image-card {
    width: min(100%, 760px);
  }
  .hero-trust {
    flex-wrap: wrap;
    gap: 18px;
  }
  .trust-item:not(:last-child) {
    border-right: 0;
    margin-right: 0;
  }
}

@media (max-width: 640px) {
  .container,
  .nav-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
  .hero-title span,
  .hero-title em {
    white-space: normal;
  }
  .hero-title {
    font-size: clamp(2.85rem, 13vw, 4.2rem);
  }
  .hero-sub-lead strong {
    font-size: 1.15rem;
    line-height: 1.45;
  }
  .hero-sub-lead em {
    font-size: 1.1rem;
    line-height: 1.45;
  }
  .hero-sub > span:not(.hero-sub-lead) {
    font-size: 1rem;
  }
  .hero-actions {
    align-items: stretch;
  }
  .btn-primary-lg,
  .btn-outline-lg {
    width: 100%;
  }
  .trust-item {
    min-width: 100%;
  }
}

@media (max-width: 760px) {
  .faq-section {
    padding: 64px 0;
  }
  .faq-list {
    grid-template-columns: 1fr;
  }
  .faq-question {
    min-height: 54px;
  }
}

/* Scholarship Levels exact-match pass */
.scholarship-levels-section {
  padding: 58px 0 44px;
  background:
    radial-gradient(circle at 22% 14%, rgba(194, 123, 45, 0.24), transparent 23%),
    radial-gradient(circle at 74% 0%, rgba(136, 74, 26, 0.2), transparent 25%),
    radial-gradient(circle at 50% 112%, rgba(36, 13, 5, 0.55), transparent 34%),
    linear-gradient(105deg, #4b210e 0%, #321305 43%, #210b03 100%);
  color: #fffaf0;
  border: 0;
  position: relative;
  overflow: hidden;
}
.scholarship-levels-section::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background:
    radial-gradient(circle at 17% 28%, rgba(255, 210, 137, 0.1), transparent 17%),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: auto, 54px 54px;
  pointer-events: none;
}
.scholarship-levels-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.13));
  pointer-events: none;
}
.scholarship-levels-section .container {
  position: relative;
  z-index: 1;
  max-width: 1660px;
  padding: 0 54px;
}
.scholarship-levels-section .stats-header {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(510px, 0.78fr);
  align-items: center;
  gap: 66px;
  margin: 0 0 44px;
  max-width: none;
}
.scholarship-levels-section .stats-header::after {
  content: none;
  display: none;
}
.scholarship-levels-section .section-label {
  width: fit-content;
  min-height: 34px;
  margin-bottom: 30px;
  padding: 8px 24px;
  border-radius: 999px;
  background: rgba(255, 253, 237, 0.94);
  border: 1px solid rgba(255, 253, 237, 0.58);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7), 0 8px 20px rgba(16,6,2,0.2);
  color: #527d41;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.09em;
}
.scholarship-levels-section .section-label::before {
  width: 10px;
  height: 10px;
  background: #a8c98c;
}
.scholarship-levels-section .section-title {
  margin: 0 0 20px;
  max-width: 820px;
  color: #fffaf3;
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.6rem, 4.4vw, 5.3rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.scholarship-levels-section .section-title em {
  display: block;
  color: #9fc07e;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 600;
}
.scholarship-levels-section .section-sub {
  max-width: 750px;
  color: rgba(255, 250, 240, 0.9);
  font-size: 1.17rem;
  line-height: 1.52;
}
.scholarship-levels-section .section-sub strong {
  color: #99bf72;
  font-weight: 900;
}
.stats-info-card {
  min-height: 160px;
  display: grid;
  grid-template-columns: 112px 1fr;
  align-items: center;
  gap: 24px;
  padding: 22px 30px;
  border-radius: 20px;
  background: rgba(54, 23, 8, 0.54);
  border: 1px solid rgba(233, 208, 147, 0.32);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 22px 58px rgba(0,0,0,0.18);
}
.stats-info-icon {
  width: 96px;
  height: 96px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(159,192,126,0.12);
}
.stats-info-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.stats-info-divider {
  display: none;
}
.stats-info-card h3 {
  margin: 0 0 10px;
  color: #fff7e8;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.35rem, 1.75vw, 1.85rem);
  line-height: 1.12;
}
.stats-info-card p {
  margin: 0;
  max-width: 500px;
  color: rgba(255, 250, 240, 0.88);
  font-size: 0.98rem;
  line-height: 1.42;
}
.scholarship-levels-section .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}
.scholarship-levels-section .stat-card {
  min-height: 448px;
  padding: 24px 30px 28px;
  border: 1px solid rgba(255, 248, 221, 0.72);
  border-radius: 15px;
  background:
    radial-gradient(circle at 50% 7%, rgba(255, 244, 197, 0.78), transparent 31%),
    linear-gradient(180deg, #fffced 0%, #fff7df 45%, #fff9e8 100%);
  box-shadow: 0 24px 60px rgba(12, 4, 1, 0.3);
  color: #160b07;
  text-align: center;
  overflow: visible;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.scholarship-levels-section .stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 72px rgba(12, 4, 1, 0.38);
}
.scholarship-levels-section .stat-card::before {
  content: '';
  display: none;
}
.stat-art {
  width: 82px;
  height: 82px;
  margin: 0 auto 8px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255, 246, 216, 0.72);
  box-shadow: 0 10px 24px rgba(106,46,14,0.08);
}
.stat-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.scholarship-levels-section .stat-medal {
  min-width: 188px;
  min-height: 25px;
  margin: 0 auto 17px;
  padding: 5px 16px;
  border: 0;
  border-radius: 3px;
  background: linear-gradient(180deg, #44733b, #2f5e2f);
  box-shadow: 0 5px 10px rgba(26, 77, 34, 0.18);
  color: #dce8c6;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  position: relative;
}
.scholarship-levels-section .stat-medal::before,
.scholarship-levels-section .stat-medal::after {
  content: '';
  position: absolute;
  top: 0;
  width: 16px;
  height: 100%;
  background: #2f5e2f;
}
.scholarship-levels-section .stat-medal::before {
  left: -10px;
  clip-path: polygon(0 0, 100% 0, 68% 50%, 100% 100%, 0 100%, 30% 50%);
}
.scholarship-levels-section .stat-medal::after {
  right: -10px;
  clip-path: polygon(0 0, 100% 0, 70% 50%, 100% 100%, 0 100%, 32% 50%);
}
.scholarship-levels-section .stat-value {
  margin: 0 0 8px;
  color: #100908;
  font-size: clamp(3.55rem, 4.45vw, 4.85rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 0.9;
}
.scholarship-levels-section .stat-suffix {
  margin-left: 4px;
  color: #2d5b2e;
  font-size: 40%;
  font-weight: 900;
}
.scholarship-levels-section .stat-label {
  margin: 0 0 12px;
  color: #31582b;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.2;
}
.stat-separator {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  margin: 0 0 14px;
  color: #d6a33f;
  font-size: 1.12rem;
}
.stat-separator::before,
.stat-separator::after {
  content: '';
  height: 1px;
  background: rgba(106, 46, 14, 0.12);
}
.scholarship-levels-section .stat-sublabel {
  display: grid;
  gap: 12px;
  padding: 0;
  border: 0;
  color: #201713;
  font-size: 0.88rem;
  line-height: 1.44;
}
.scholarship-levels-section .stat-sublabel strong {
  color: #160d09;
  font-size: 0.92rem;
  line-height: 1.36;
}
.scholarship-levels-section .stat-sublabel span {
  display: block;
}
.stats-note {
  width: fit-content;
  max-width: min(1320px, 92%);
  margin: 24px auto 0;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 28px;
  border-radius: 20px;
  background: rgba(82, 36, 13, 0.46);
  border: 1px solid rgba(233, 208, 147, 0.25);
  color: rgba(255, 250, 240, 0.9);
  font-size: 1rem;
  line-height: 1.35;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}
.stats-note-icon {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 2px solid #9fc07e;
  color: #9fc07e;
  font-weight: 900;
  font-family: Georgia, serif;
}
.stats-note-divider {
  width: 1px;
  height: 22px;
  background: rgba(255, 250, 240, 0.45);
}
.stats-note a {
  color: #9fc07e;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

@media (max-width: 1180px) {
  .scholarship-levels-section .stats-header {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .stats-info-card {
    max-width: 780px;
  }
  .scholarship-levels-section .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1400px) and (min-width: 1181px) {
  .scholarship-levels-section .container {
    padding: 0 38px;
  }
  .scholarship-levels-section .stats-header {
    grid-template-columns: minmax(0, 0.95fr) minmax(455px, 0.78fr);
    gap: 42px;
  }
  .stats-info-card {
    grid-template-columns: 100px 1fr;
    gap: 22px;
    padding: 20px 26px;
  }
  .stats-info-icon {
    width: 88px;
    height: 88px;
  }
  .scholarship-levels-section .stats-grid {
    gap: 20px;
  }
  .scholarship-levels-section .stat-card {
    min-height: 454px;
    padding: 22px 20px 26px;
  }
  .stat-art {
    width: 74px;
    height: 74px;
  }
  .scholarship-levels-section .stat-medal {
    min-width: 172px;
    font-size: 0.64rem;
  }
  .scholarship-levels-section .stat-value {
    font-size: clamp(3.2rem, 4.55vw, 4.25rem);
  }
  .scholarship-levels-section .stat-label {
    font-size: 0.78rem;
  }
  .scholarship-levels-section .stat-sublabel {
    gap: 10px;
    font-size: 0.8rem;
    line-height: 1.42;
  }
  .scholarship-levels-section .stat-sublabel strong {
    font-size: 0.82rem;
  }
}

@media (max-width: 700px) {
  .scholarship-levels-section {
    padding: 54px 0 38px;
  }
  .scholarship-levels-section .container {
    padding: 0 20px;
  }
  .scholarship-levels-section .section-title {
    font-size: clamp(2.6rem, 12vw, 3.9rem);
  }
  .stats-info-card {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 16px;
    padding: 24px;
  }
  .stats-info-divider {
    width: 100%;
    height: 1px;
  }
  .scholarship-levels-section .stats-grid {
    grid-template-columns: 1fr;
  }
  .scholarship-levels-section .stat-card {
    min-height: auto;
  }
  .stats-note {
    width: 100%;
    max-width: 100%;
    align-items: flex-start;
    flex-wrap: wrap;
  }
}

/* Examination Calendar exact-match pass */
.calendar-match-section {
  padding: 58px 0 36px;
  background:
    radial-gradient(circle at 82% 14%, rgba(79,125,67,0.08), transparent 24%),
    radial-gradient(circle at 14% 40%, rgba(215,163,38,0.08), transparent 28%),
    linear-gradient(135deg, #FFFDF0 0%, #FFF8E6 58%, #FFF6DC 100%);
  overflow: hidden;
  position: relative;
}
.calendar-match-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(106,46,14,0.035) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.35;
  pointer-events: none;
}
.calendar-match-section .container {
  position: relative;
  z-index: 1;
  max-width: 1660px;
  padding: 0 70px;
}
.calendar-match-section .exam-calendar-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 455px;
  align-items: start;
  gap: 52px;
  margin-bottom: 48px;
}
.calendar-match-section .section-label {
  width: fit-content;
  min-height: 38px;
  margin-bottom: 24px;
  padding: 9px 24px;
  border-radius: 999px;
  background: rgba(255, 253, 240, 0.68);
  border: 1px solid rgba(79,125,67,0.18);
  color: #43743b;
  font-size: 0.83rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  box-shadow: 0 8px 18px rgba(106,46,14,0.04);
}
.calendar-match-section .section-label::before {
  width: 9px;
  height: 9px;
  background: #528246;
}
.calendar-match-section .section-title {
  margin: 0 0 22px;
  color: #26130c;
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(3.3rem, 5vw, 5rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.calendar-match-section .section-title em {
  color: #3e7140;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 500;
}
.calendar-match-section .section-sub {
  margin: 0;
  max-width: 920px;
  color: #5f554b;
  font-size: 1.22rem;
  line-height: 1.45;
}
.calendar-match-section .section-sub strong {
  color: #2f6b35;
  font-weight: 900;
}
.calendar-title-rule {
  display: block;
  width: 66px;
  height: 3px;
  margin-top: 26px;
  background: #39713a;
  border-radius: 999px;
}
.calendar-match-section .calendar-summary {
  min-height: 184px;
  display: grid;
  grid-template-columns: 118px 1fr;
  grid-template-areas:
    "icon label"
    "icon value"
    "icon copy";
  column-gap: 28px;
  align-items: center;
  padding: 28px 34px;
  border-radius: 24px;
  background: rgba(255, 253, 240, 0.64);
  border: 1px solid rgba(106,46,14,0.08);
  box-shadow: 0 18px 46px rgba(106,46,14,0.07), inset 0 1px 0 rgba(255,255,255,0.62);
}
.calendar-match-section .calendar-summary::before {
  display: none;
}
.calendar-summary-icon {
  grid-area: icon;
  width: 108px;
  height: 108px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.86);
  box-shadow: 0 16px 34px rgba(106,46,14,0.12);
}
.calendar-summary-icon svg,
.calendar-benefit svg {
  width: 58%;
  height: 58%;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.calendar-match-section .exam-icon svg {
  width: 72px;
  height: 72px;
  min-width: 72px;
  min-height: 72px;
  max-width: 72px;
  max-height: 72px;
  padding: 16px;
  box-sizing: border-box;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  border-radius: 50%;
  background: #fffdf4;
  box-shadow: 0 10px 24px rgba(42,19,11,0.12);
}
.calendar-summary-icon svg {
  color: #4b7e42;
}
.calendar-match-section .calendar-summary span {
  grid-area: label;
  color: #35743b;
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}
.calendar-match-section .calendar-summary strong {
  grid-area: value;
  margin: -2px 0 0;
  color: #2a130b;
  font-size: 2.1rem;
  font-weight: 900;
  line-height: 1;
}
.calendar-match-section .calendar-summary p {
  grid-area: copy;
  margin: 0;
  color: #6a5d51;
  font-size: 1.08rem;
  line-height: 1.45;
}
.calendar-match-section .exam-path {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 64px;
  min-height: 450px;
  padding: 0 12px 52px;
  position: relative;
  align-items: start;
}
.calendar-match-section .exam-path-line {
  position: absolute;
  left: 10.5%;
  right: 10.5%;
  bottom: 44px;
  top: auto;
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(64,118,59,0.54) 0 6px, transparent 6px 10px);
  transform: none;
  z-index: 0;
}
.calendar-match-section .exam-milestone,
.calendar-match-section .exam-milestone:nth-of-type(2),
.calendar-match-section .exam-milestone:nth-of-type(4),
.calendar-match-section .exam-milestone:nth-of-type(6) {
  min-height: 384px;
  align-self: start;
  margin: 0;
  padding: 0 0 28px;
  border: 0;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(106,46,14,0.1);
  color: #2a130b;
  text-align: center;
  overflow: visible;
  position: relative;
  z-index: 1;
}
.calendar-match-section .exam-milestone::before,
.calendar-match-section .exam-milestone:nth-of-type(even)::before {
  content: '';
  position: absolute;
  left: 50%;
  top: calc(100% - 2px);
  width: 0;
  height: 0;
  background: transparent;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 20px solid #3c7838;
  transform: translateX(-50%);
}
.calendar-match-section .exam-milestone.highlight::before {
  border-top-color: #6e3a17;
}
.calendar-match-section .exam-milestone::after,
.calendar-match-section .exam-milestone:nth-of-type(even)::after {
  content: '';
  position: absolute;
  left: 50%;
  top: calc(100% + 36px);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle, #3f793a 0 8px, #fff 9px 14px, #3f793a 15px 17px, #fff 18px);
  border: 1px solid rgba(63,121,58,0.36);
  box-shadow: 0 2px 0 rgba(63,121,58,0.18);
  z-index: 2;
}
.calendar-match-section .exam-milestone.highlight::after {
  background:
    radial-gradient(circle, #6e3a17 0 8px, #fff 9px 14px, #6e3a17 15px 17px, #fff 18px);
  border-color: rgba(106,58,23,0.36);
}
.calendar-match-section .exam-icon {
  width: 100%;
  height: 132px;
  margin: 0 0 24px;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(135deg, #6b974f 0%, #477a3f 100%);
  color: #4c7d42;
  display: flex;
  align-items: center;
  justify-content: center;
}
.calendar-match-section .exam-milestone.highlight .exam-icon {
  background: linear-gradient(135deg, #8a5429 0%, #623315 100%);
  color: #8a5429;
}
.calendar-match-section .exam-milestone time,
.calendar-match-section .exam-milestone:nth-of-type(2) time,
.calendar-match-section .exam-milestone:nth-of-type(4) time,
.calendar-match-section .exam-milestone:nth-of-type(6) time {
  display: block;
  margin: 0 0 16px;
  padding: 0 14px;
  color: #337237;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.calendar-match-section .exam-milestone.highlight time {
  color: #5b2b12;
}
.calendar-match-section .exam-milestone time::after {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  margin: 16px auto 0;
  border-radius: 999px;
  background: currentColor;
}
.calendar-match-section .exam-milestone h3,
.calendar-match-section .exam-milestone:nth-of-type(2) h3,
.calendar-match-section .exam-milestone:nth-of-type(4) h3,
.calendar-match-section .exam-milestone:nth-of-type(6) h3 {
  margin: 0 0 22px;
  padding: 0 18px;
  color: #2a130b;
  font-size: 1.28rem;
  font-weight: 900;
  line-height: 1.16;
}
.calendar-match-section .exam-milestone p,
.calendar-match-section .exam-milestone:nth-of-type(2) p,
.calendar-match-section .exam-milestone:nth-of-type(4) p,
.calendar-match-section .exam-milestone:nth-of-type(6) p {
  max-width: 180px;
  margin: 0 auto;
  padding: 0 10px;
  color: #5e5a58;
  font-size: 1.02rem;
  line-height: 1.55;
}
.calendar-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 26px 6px 22px;
  padding: 28px 34px;
  border-radius: 16px;
  background: rgba(255, 253, 240, 0.72);
  border: 1px solid rgba(106,46,14,0.08);
  box-shadow: 0 14px 40px rgba(106,46,14,0.06);
}
.calendar-benefit {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 92px;
  padding: 0 28px;
}
.calendar-benefit:not(:last-child) {
  border-right: 1px solid rgba(106,46,14,0.12);
}
.calendar-benefit span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #74a34f, #3f7438);
  box-shadow: 0 10px 24px rgba(63,116,56,0.18);
}
.calendar-benefit span svg {
  width: 31px;
  height: 31px;
}
.calendar-benefit strong {
  display: block;
  margin-bottom: 7px;
  color: #255d3d;
  font-size: 1rem;
  font-weight: 900;
}
.calendar-benefit p {
  margin: 0;
  color: #5f625f;
  font-size: 0.98rem;
  line-height: 1.48;
}
.calendar-note {
  width: fit-content;
  max-width: 1020px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 44px;
  border-radius: 14px;
  background: rgba(239, 238, 209, 0.7);
  color: #477743;
  font-size: 1.02rem;
}
.calendar-note > span:first-child {
  flex: 0 0 24px;
  align-self: flex-start;
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  max-width: 24px;
  max-height: 24px;
  aspect-ratio: 1 / 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #40763a;
  color: #fffdf0;
  font-weight: 900;
  font-family: Georgia, serif;
  font-size: 0.72rem;
  line-height: 1;
  overflow: hidden;
}
.calendar-note p {
  margin: 0;
  color: #477743;
  line-height: 1.35;
}

@media (max-width: 1280px) {
  .calendar-match-section .container {
    padding: 0 38px;
  }
  .calendar-match-section .exam-path {
    gap: 38px;
  }
  .calendar-benefit {
    padding: 0 18px;
  }
}

@media (max-width: 1050px) {
  .calendar-match-section .exam-calendar-header {
    grid-template-columns: 1fr;
  }
  .calendar-match-section .calendar-summary {
    max-width: 455px;
  }
  .calendar-match-section .exam-path,
  .calendar-benefits {
    grid-template-columns: 1fr;
  }
  .calendar-match-section .exam-path {
    gap: 28px;
    padding-bottom: 0;
  }
  .calendar-match-section .exam-path-line,
  .calendar-match-section .exam-milestone::before,
  .calendar-match-section .exam-milestone::after {
    display: none;
  }
  .calendar-benefit {
    padding: 20px 0;
  }
  .calendar-benefit:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid rgba(106,46,14,0.12);
  }
}

@media (max-width: 640px) {
  .calendar-match-section {
    padding: 52px 0 32px;
  }
  .calendar-match-section .container {
    padding: 0 20px;
  }
  .calendar-match-section .section-title {
    font-size: clamp(2.55rem, 12vw, 3.7rem);
  }
  .calendar-match-section .calendar-summary {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 10px;
  }
  .calendar-summary-icon {
    margin: 0 auto;
  }
  .calendar-benefits {
    padding: 18px 24px;
  }
  .calendar-note {
    width: 100%;
    align-items: flex-start;
    padding: 12px 18px;
  }
}

/* Calendar compact scale pass */
.calendar-match-section {
  padding: 46px 0 30px;
}
.calendar-match-section .container {
  max-width: 1500px;
  padding: 0 58px;
}
.calendar-match-section .exam-calendar-header {
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 42px;
  margin-bottom: 36px;
}
.calendar-match-section .section-label {
  min-height: 32px;
  margin-bottom: 18px;
  padding: 7px 20px;
  font-size: 0.72rem;
}
.calendar-match-section .section-title {
  margin-bottom: 14px;
  font-size: clamp(2.8rem, 4.2vw, 4.15rem);
}
.calendar-match-section .section-sub {
  font-size: 1.02rem;
}
.calendar-title-rule {
  width: 56px;
  height: 2px;
  margin-top: 20px;
}
.calendar-match-section .calendar-summary {
  min-height: 142px;
  grid-template-columns: 88px 1fr;
  column-gap: 22px;
  padding: 22px 26px;
  border-radius: 20px;
}
.calendar-summary-icon {
  width: 84px;
  height: 84px;
}
.calendar-match-section .calendar-summary span {
  font-size: 1.02rem;
}
.calendar-match-section .calendar-summary strong {
  font-size: 1.75rem;
}
.calendar-match-section .calendar-summary p {
  font-size: 0.92rem;
}
.calendar-match-section .exam-path {
  gap: 46px;
  min-height: 360px;
  padding: 0 8px 44px;
}
.calendar-match-section .exam-path-line {
  bottom: 38px;
}
.calendar-match-section .exam-milestone,
.calendar-match-section .exam-milestone:nth-of-type(2),
.calendar-match-section .exam-milestone:nth-of-type(4),
.calendar-match-section .exam-milestone:nth-of-type(6) {
  min-height: 310px;
  border-radius: 16px;
}
.calendar-match-section .exam-icon {
  height: 104px;
  margin-bottom: 18px;
  border-radius: 16px 16px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.calendar-match-section .exam-icon svg {
  width: 72px;
  height: 72px;
  min-width: 72px;
  min-height: 72px;
  max-width: 72px;
  max-height: 72px;
  padding: 16px;
  box-sizing: border-box;
}
.calendar-match-section .exam-icon img {
  width: 72px;
  height: 72px;
  min-width: 72px;
  min-height: 72px;
  border-radius: 50%;
  background: #fffdf4;
  box-shadow: 0 10px 24px rgba(42,19,11,0.12);
  object-fit: cover;
  display: block;
}
.calendar-match-section .exam-milestone time,
.calendar-match-section .exam-milestone:nth-of-type(2) time,
.calendar-match-section .exam-milestone:nth-of-type(4) time,
.calendar-match-section .exam-milestone:nth-of-type(6) time {
  margin-bottom: 12px;
  font-size: 0.84rem;
}
.calendar-match-section .exam-milestone time::after {
  width: 30px;
  height: 2px;
  margin-top: 12px;
}
.calendar-match-section .exam-milestone h3,
.calendar-match-section .exam-milestone:nth-of-type(2) h3,
.calendar-match-section .exam-milestone:nth-of-type(4) h3,
.calendar-match-section .exam-milestone:nth-of-type(6) h3 {
  margin-bottom: 14px;
  padding: 0 14px;
  font-size: 1.04rem;
}
.calendar-match-section .exam-milestone p,
.calendar-match-section .exam-milestone:nth-of-type(2) p,
.calendar-match-section .exam-milestone:nth-of-type(4) p,
.calendar-match-section .exam-milestone:nth-of-type(6) p {
  max-width: 150px;
  font-size: 0.86rem;
  line-height: 1.48;
}
.calendar-match-section .exam-milestone::before,
.calendar-match-section .exam-milestone:nth-of-type(even)::before {
  border-left-width: 10px;
  border-right-width: 10px;
  border-top-width: 16px;
}
.calendar-match-section .exam-milestone::after,
.calendar-match-section .exam-milestone:nth-of-type(even)::after {
  top: calc(100% + 31px);
  width: 30px;
  height: 30px;
}
.calendar-benefits {
  margin: 20px 4px 18px;
  padding: 20px 26px;
  border-radius: 14px;
}
.calendar-benefit {
  min-height: 76px;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  padding: 0 20px;
}
.calendar-benefit span {
  width: 48px;
  height: 48px;
}
.calendar-benefit span svg {
  width: 26px;
  height: 26px;
}
.calendar-benefit strong {
  margin-bottom: 5px;
  font-size: 0.86rem;
}
.calendar-benefit p {
  font-size: 0.82rem;
}
.calendar-note {
  padding: 10px 34px;
  font-size: 0.88rem;
}
.calendar-note > span:first-child {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
}

@media (max-width: 1280px) {
  .calendar-match-section .container {
    padding: 0 32px;
  }
  .calendar-match-section .exam-path {
    gap: 30px;
  }
}

/* Examination Pattern exact-match pass */
.pattern-match-section {
  padding: 46px 0 34px;
  background:
    radial-gradient(circle at 8% 18%, rgba(215,163,38,0.07), transparent 24%),
    radial-gradient(circle at 84% 10%, rgba(79,125,67,0.08), transparent 26%),
    linear-gradient(135deg, #FFFDF0 0%, #FFF8E5 62%, #FFF5D9 100%);
  position: relative;
  overflow: hidden;
}
.pattern-match-section .container {
  max-width: 1500px;
  padding: 0 48px;
}
.pattern-match-section svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.pattern-match-section .pattern-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 548px;
  gap: 42px;
  align-items: start;
  margin-bottom: 24px;
}
.pattern-match-section .section-label {
  width: fit-content;
  min-height: 34px;
  margin-bottom: 28px;
  padding: 8px 22px;
  border-radius: 999px;
  background: rgba(239, 244, 219, 0.78);
  border: 1px solid rgba(79,125,67,0.14);
  color: #477743;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}
.pattern-match-section .section-label::before {
  width: 9px;
  height: 9px;
  background: #467d43;
}
.pattern-eyebrow {
  color: #3b733e;
  font-size: 1.18rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}
.pattern-match-section .section-title {
  margin: 0 0 18px;
  font-family: 'DM Sans', sans-serif;
  color: #24130d;
  font-size: clamp(3rem, 4.5vw, 4.65rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.035em;
}
.pattern-match-section .section-title em {
  color: #3d7343;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0;
}
.pattern-match-section .section-sub {
  margin: 0 0 28px;
  color: #655f58;
  font-size: 1.02rem;
  line-height: 1.45;
}
.pattern-pills {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  max-width: 820px;
}
.pattern-pills div {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 64px;
  padding: 0 18px 0 0;
}
.pattern-pills div:not(:last-child) {
  border-right: 1px solid rgba(106,46,14,0.12);
  margin-right: 18px;
}
.pattern-pills span,
.format-tile i,
.subject-icon,
.syllabus-icon {
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(79,125,67,0.11);
  color: #3f743f;
}
.pattern-pills span {
  width: 50px;
  height: 50px;
}
.pattern-pills svg {
  width: 28px;
  height: 28px;
}
.pattern-pills strong {
  color: #3c332c;
  font-size: 0.82rem;
  line-height: 1.23;
}
.pattern-match-section .pattern-total-card {
  min-height: 310px;
  padding: 28px 40px 30px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 91% 3%, rgba(255,255,255,0.22) 0 72px, rgba(255,255,255,0.08) 73px 118px, transparent 119px),
    radial-gradient(circle at 95% 24%, rgba(255,255,255,0.22) 1.5px, transparent 2px),
    linear-gradient(135deg, #3b743b 0%, #618b4d 100%);
  background-size: auto, 16px 16px, auto;
  color: #fff;
  box-shadow: 0 20px 52px rgba(63,116,56,0.22);
  overflow: hidden;
}
.pattern-match-section .pattern-total-card::after {
  display: none;
}
.pattern-match-section .pattern-total-card > span {
  color: rgba(255,255,255,0.82);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.15em;
}
.pattern-match-section .pattern-total-card > strong {
  display: block;
  margin: 6px 0 0;
  color: #fff;
  font-size: 4.8rem;
  font-weight: 900;
  line-height: 0.9;
}
.pattern-match-section .pattern-total-card > p {
  margin: 6px 0 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  font-size: 1.18rem;
  font-weight: 800;
}
.pattern-total-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.pattern-total-stats div {
  min-height: 82px;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
}
.pattern-total-stats div:not(:last-child) {
  border-right: 1px solid rgba(255,255,255,0.28);
}
.pattern-total-stats svg {
  width: 32px;
  height: 32px;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.9);
}
.pattern-total-stats strong {
  color: #fff;
  font-size: 1.12rem;
  line-height: 1.05;
}
.pattern-total-stats small {
  color: rgba(255,255,255,0.86);
  font-size: 0.78rem;
  line-height: 1.15;
}
.pattern-match-section .pattern-dashboard {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 28px;
}
.pattern-match-section .pattern-format-panel,
.pattern-match-section .subject-panel {
  padding: 24px 28px 26px;
  border-radius: 20px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(106,46,14,0.08);
  box-shadow: 0 16px 42px rgba(106,46,14,0.07);
}
.pattern-match-section .panel-kicker {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
  color: #467743;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.pattern-match-section .panel-kicker::before {
  content: '';
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: radial-gradient(circle, #447b42 0 5px, rgba(79,125,67,0.12) 6px 100%);
}
.pattern-match-section .format-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 20px;
}
.pattern-match-section .format-tile {
  min-height: 96px;
  display: grid;
  grid-template-columns: 58px 1fr;
  grid-template-areas: "icon label" "icon value";
  align-items: center;
  column-gap: 16px;
  padding: 20px;
  border-radius: 14px;
  background: rgba(255,253,240,0.78);
  border: 1px solid rgba(106,46,14,0.1);
  box-shadow: none;
}
.pattern-match-section .format-tile i {
  grid-area: icon;
  width: 52px;
  height: 52px;
  font-style: normal;
}
.pattern-match-section .format-tile i svg {
  width: 30px;
  height: 30px;
}
.pattern-match-section .format-tile span {
  grid-area: label;
  color: #5d574f;
  font-size: 0.88rem;
  line-height: 1.1;
}
.pattern-match-section .format-tile strong {
  grid-area: value;
  color: #19100c;
  font-size: 1.12rem;
  line-height: 1.15;
  font-weight: 900;
}
.pattern-match-section .subject-bars {
  display: grid;
  gap: 0;
  border: 1px solid rgba(106,46,14,0.1);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}
.pattern-match-section .subject-row {
  min-height: 84px;
  display: grid;
  grid-template-columns: 68px 1fr 110px 110px;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  border: 0;
  border-radius: 0;
  background: #fff;
}
.pattern-match-section .subject-row:not(:last-child) {
  border-bottom: 1px solid rgba(106,46,14,0.1);
}
.subject-icon {
  width: 52px;
  height: 52px;
}
.subject-icon svg {
  width: 30px;
  height: 30px;
}
.pattern-match-section .subject-meta span {
  color: #170f0c;
  font-size: 1.12rem;
  font-weight: 900;
}
.subject-stat {
  min-height: 50px;
  display: grid;
  place-items: center;
  text-align: center;
  border-left: 1px solid rgba(106,46,14,0.12);
}
.subject-stat strong {
  color: #477743;
  font-size: 1.35rem;
  line-height: 1;
  font-weight: 900;
}
.subject-stat small {
  color: #1c140f;
  font-size: 0.68rem;
}
.pattern-match-section .subject-track {
  display: none;
}
.pattern-match-section .syllabus-card {
  margin-top: 10px;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px 24px;
  border-radius: 14px;
  background: rgba(235,238,218,0.72);
  border: 1px solid rgba(106,46,14,0.08);
}
.pattern-match-section .syllabus-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #5c9148, #3d743b);
  color: #fff;
}
.pattern-match-section .syllabus-icon svg {
  width: 28px;
  height: 28px;
}
.pattern-match-section .syllabus-card h3 {
  margin: 0 0 4px;
  color: #477743;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.pattern-match-section .syllabus-card p {
  margin: 0;
  color: #201813;
  font-size: 0.86rem;
  line-height: 1.42;
}
.pattern-match-section .language-strip {
  margin-top: 16px;
  min-height: 88px;
  display: grid;
  grid-template-columns: 70px 1fr 70px;
  gap: 20px;
  align-items: center;
  padding: 18px 26px;
  border-radius: 12px;
  background: linear-gradient(135deg, #315f2f, #477d43);
  color: #fff;
  border: 0;
  box-shadow: 0 14px 38px rgba(63,116,56,0.18);
}
.pattern-match-section .language-strip > span {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
}
.pattern-match-section .language-strip > span svg,
.pattern-match-section .language-strip > i svg {
  width: 34px;
  height: 34px;
}
.pattern-match-section .language-strip strong {
  color: #fff;
  font-size: 1rem;
  line-height: 1.25;
}
.pattern-match-section .language-strip p {
  margin: 4px 0 0;
  color: rgba(255,255,255,0.82);
  font-size: 0.8rem;
}
.pattern-match-section .language-strip > i {
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.45);
  font-style: normal;
}

@media (max-width: 1280px) {
  .pattern-match-section .container {
    padding: 0 32px;
  }
  .pattern-match-section .pattern-header {
    grid-template-columns: minmax(0, 1fr) 470px;
  }
  .pattern-match-section .pattern-total-card {
    padding: 24px 30px;
  }
  .pattern-match-section .pattern-dashboard {
    gap: 22px;
  }
  .pattern-match-section .subject-row {
    grid-template-columns: 58px 1fr 82px 82px;
    padding: 14px 18px;
  }
}

@media (max-width: 1050px) {
  .pattern-match-section .pattern-header,
  .pattern-match-section .pattern-dashboard {
    grid-template-columns: 1fr;
  }
  .pattern-match-section .pattern-total-card {
    max-width: 560px;
  }
}

@media (max-width: 700px) {
  .pattern-match-section {
    padding: 42px 0 30px;
  }
  .pattern-match-section .container {
    padding: 0 20px;
  }
  .pattern-match-section .section-title {
    font-size: clamp(2.55rem, 12vw, 3.6rem);
  }
  .pattern-pills,
  .pattern-match-section .format-grid,
  .pattern-total-stats {
    grid-template-columns: 1fr;
  }
  .pattern-pills div:not(:last-child),
  .pattern-total-stats div:not(:last-child) {
    border-right: 0;
  }
  .pattern-match-section .subject-row {
    grid-template-columns: 52px 1fr;
  }
  .subject-stat {
    grid-column: span 1;
    border-left: 0;
  }
  .pattern-match-section .language-strip {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .pattern-match-section .language-strip > span,
  .pattern-match-section .language-strip > i {
    margin: 0 auto;
  }
}

/* Examination Pattern compact scale pass */
.pattern-match-section {
  padding: 34px 0 26px;
}
.pattern-match-section .container {
  max-width: 1380px;
  padding: 0 42px;
}
.pattern-match-section .pattern-header {
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 34px;
  margin-bottom: 18px;
}
.pattern-match-section .section-label {
  min-height: 30px;
  margin-bottom: 18px;
  padding: 7px 18px;
  font-size: 0.68rem;
}
.pattern-eyebrow {
  margin-bottom: 6px;
  font-size: 1rem;
}
.pattern-match-section .section-title {
  margin-bottom: 12px;
  font-size: clamp(2.55rem, 3.85vw, 3.85rem);
}
.pattern-match-section .section-sub {
  margin-bottom: 18px;
  font-size: 0.9rem;
}
.pattern-pills {
  max-width: 740px;
}
.pattern-pills div {
  grid-template-columns: 42px 1fr;
  gap: 9px;
  min-height: 48px;
  padding-right: 12px;
}
.pattern-pills div:not(:last-child) {
  margin-right: 12px;
}
.pattern-pills span {
  width: 40px;
  height: 40px;
}
.pattern-pills svg {
  width: 23px;
  height: 23px;
}
.pattern-pills strong {
  font-size: 0.7rem;
}
.pattern-match-section .pattern-total-card {
  min-height: 246px;
  padding: 22px 28px 22px;
  border-radius: 18px;
}
.pattern-match-section .pattern-total-card > span {
  font-size: 0.72rem;
}
.pattern-match-section .pattern-total-card > strong {
  font-size: 3.7rem;
}
.pattern-match-section .pattern-total-card > p {
  margin-bottom: 14px;
  padding-bottom: 13px;
  font-size: 0.98rem;
}
.pattern-total-stats div {
  min-height: 66px;
}
.pattern-total-stats svg {
  width: 26px;
  height: 26px;
  margin-bottom: 6px;
}
.pattern-total-stats strong {
  font-size: 0.95rem;
}
.pattern-total-stats small {
  font-size: 0.66rem;
}
.pattern-match-section .pattern-dashboard {
  gap: 20px;
}
.pattern-match-section .pattern-format-panel,
.pattern-match-section .subject-panel {
  padding: 18px 22px 20px;
  border-radius: 16px;
}
.pattern-match-section .panel-kicker {
  margin-bottom: 16px;
  font-size: 0.72rem;
}
.pattern-match-section .panel-kicker::before {
  width: 18px;
  height: 18px;
}
.pattern-match-section .format-grid {
  gap: 12px 14px;
}
.pattern-match-section .format-tile {
  min-height: 78px;
  grid-template-columns: 46px 1fr;
  column-gap: 12px;
  padding: 14px;
  border-radius: 12px;
}
.pattern-match-section .format-tile i {
  width: 42px;
  height: 42px;
}
.pattern-match-section .format-tile i svg {
  width: 24px;
  height: 24px;
}
.pattern-match-section .format-tile span {
  font-size: 0.76rem;
}
.pattern-match-section .format-tile strong {
  font-size: 0.96rem;
}
.pattern-match-section .subject-row {
  min-height: 66px;
  grid-template-columns: 50px 1fr 82px 82px;
  gap: 12px;
  padding: 10px 16px;
}
.subject-icon {
  width: 42px;
  height: 42px;
}
.subject-icon svg {
  width: 24px;
  height: 24px;
}
.pattern-match-section .subject-meta span {
  font-size: 0.96rem;
}
.subject-stat {
  min-height: 42px;
}
.subject-stat strong {
  font-size: 1.08rem;
}
.subject-stat small {
  font-size: 0.58rem;
}
.pattern-match-section .syllabus-card {
  margin-top: 8px;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  padding: 13px 18px;
  border-radius: 12px;
}
.pattern-match-section .syllabus-icon {
  width: 42px;
  height: 42px;
}
.pattern-match-section .syllabus-icon svg {
  width: 24px;
  height: 24px;
}
.pattern-match-section .syllabus-card h3 {
  font-size: 0.66rem;
}
.pattern-match-section .syllabus-card p {
  font-size: 0.74rem;
  line-height: 1.36;
}
.pattern-match-section .language-strip {
  min-height: 68px;
  grid-template-columns: 54px 1fr 54px;
  gap: 16px;
  margin-top: 12px;
  padding: 13px 22px;
}
.pattern-match-section .language-strip > span {
  width: 46px;
  height: 46px;
}
.pattern-match-section .language-strip > span svg,
.pattern-match-section .language-strip > i svg {
  width: 28px;
  height: 28px;
}
.pattern-match-section .language-strip strong {
  font-size: 0.86rem;
}
.pattern-match-section .language-strip p {
  font-size: 0.68rem;
}

/* Eligible Countries image placement */
.countries-overview-image {
  min-height: 350px;
  padding: 0;
  overflow: hidden;
  border-radius: 18px;
  background: #fff9e8;
}
.countries-overview-image::after {
  display: none;
}
.countries-overview-image img {
  width: 100%;
  height: 100%;
  min-height: 350px;
  display: block;
  object-fit: contain;
  object-position: center;
}
.countries-image-showcase {
  padding: 0;
  min-height: auto;
  border-radius: 24px;
  background: transparent;
  overflow: visible;
}
.countries-image-showcase::before,
.countries-image-showcase::after {
  display: none;
}
.countries-image-showcase img {
  width: 100%;
  max-height: 760px;
  display: block;
  object-fit: contain;
  object-position: center top;
  border-radius: 22px;
  filter: drop-shadow(0 22px 42px rgba(106,46,14,0.12));
}

@media (max-width: 1280px) {
  .countries-image-showcase img {
    max-height: 680px;
  }
  .countries-overview-image,
  .countries-overview-image img {
    min-height: 300px;
  }
}

/* Header + countries balance fix */
.nav {
  height: 74px;
}
.nav-inner {
  height: 74px;
  max-width: 1440px;
  padding: 0 34px;
  gap: 24px;
}
.nav-logo {
  font-size: 1.42rem;
  gap: 10px;
  flex: 0 0 auto;
}
.nav-logo img {
  width: 46px;
  height: 46px;
}
.nav-links {
  gap: 20px;
  margin-left: auto;
  margin-right: 12px;
}
.nav-links a,
.btn-ghost {
  font-size: 0.93rem;
  padding: 8px 4px;
  white-space: nowrap;
}
.nav-cta {
  flex: 0 0 auto;
}
.nav .btn-primary,
.nav-cta .btn-primary {
  padding: 11px 24px;
  font-size: 0.94rem;
}

.countries-section {
  padding: 82px 0;
}
.countries-layout {
  grid-template-columns: minmax(360px, 0.9fr) minmax(440px, 1.1fr);
  gap: 34px;
  align-items: stretch;
}
.countries-copy {
  top: 86px;
}
.countries-copy .section-label {
  margin-bottom: 16px;
  font-size: 0.72rem;
  padding: 7px 16px;
}
.countries-copy .section-title {
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.08;
  margin-bottom: 14px;
}
.countries-copy .section-sub {
  font-size: 0.92rem;
  line-height: 1.52;
  margin-bottom: 16px;
}
.countries-proof {
  gap: 8px;
  margin-bottom: 16px;
}
.countries-proof span {
  padding: 8px 12px;
  font-size: 0.72rem;
}
.countries-overview {
  min-height: auto;
}
.countries-overview-image {
  min-height: 430px;
}
.countries-overview-image img {
  min-height: 430px;
}
.countries-region-grid {
  gap: 10px;
  margin-top: 12px;
}
.countries-image-showcase {
  height: 100%;
  display: flex;
  align-items: stretch;
}
.countries-image-showcase img {
  width: 100%;
  height: 100%;
  min-height: 760px;
  max-height: none;
  object-fit: contain;
  object-position: center top;
}

@media (max-width: 1280px) {
  .nav-inner {
    padding: 0 24px;
    gap: 16px;
  }
  .nav-links {
    gap: 14px;
    margin-right: 8px;
  }
  .nav-links a,
  .btn-ghost {
    font-size: 0.86rem;
  }
  .nav-logo {
    font-size: 1.25rem;
  }
  .nav-logo img {
    width: 42px;
    height: 42px;
  }
  .nav .btn-primary,
  .nav-cta .btn-primary {
    padding: 10px 18px;
    font-size: 0.88rem;
  }
  .countries-image-showcase img {
    min-height: 700px;
  }
  .countries-overview-image,
  .countries-overview-image img {
    min-height: 390px;
  }
}

/* About page */
.about-page-body {
  background: #fff9e8;
}
.about-page-hero {
  padding: 132px 0 72px;
  background:
    radial-gradient(circle at 82% 18%, rgba(79,125,67,0.12), transparent 26%),
    linear-gradient(135deg, #FFFDF0, #FFF7DE);
}
.about-page-hero-grid,
.about-page-split,
.about-story-grid,
.about-cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: 44px;
  align-items: center;
}
.about-page-copy h1 {
  margin: 0 0 22px;
  color: #2a130b;
  font-size: clamp(3rem, 5vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
}
.about-page-copy h1 em,
.about-page-section .section-title em,
.about-story-card h2 em,
.about-page-gallery-placeholders .section-title em {
  color: #477948;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 600;
}
.about-page-copy p {
  max-width: 720px;
  margin: 0;
  color: #4e4740;
  font-size: 1.12rem;
  line-height: 1.65;
}
.about-page-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.about-page-hero-visual {
  aspect-ratio: 3 / 2;
  min-height: 0;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #2a130b, #4f7d43);
  box-shadow: 0 28px 72px rgba(42,19,11,0.2);
}
.about-page-hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,253,240,0.16), inset 0 -80px 120px rgba(42,19,11,0.24);
  pointer-events: none;
}
.about-page-hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: none;
}
.about-page-image-slot {
  min-height: 340px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  padding: 28px;
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.78), rgba(255,253,240,0.52)),
    radial-gradient(circle at 50% 50%, rgba(79,125,67,0.12), transparent 42%);
  border: 1.5px dashed rgba(79,125,67,0.32);
  box-shadow: 0 18px 44px rgba(106,46,14,0.08);
  color: #477948;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--silk), box-shadow 0.35s var(--silk), border-color 0.35s var(--silk);
}
.about-page-image-slot::before {
  content: '';
  position: absolute;
  inset: 18px;
  border-radius: 22px;
  border: 1px solid rgba(79,125,67,0.12);
  pointer-events: none;
}
.about-page-image-slot::after {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215,163,38,0.16), transparent 66%);
  right: -60px;
  top: -60px;
  animation: aboutFloatGlow 5.8s ease-in-out infinite;
  pointer-events: none;
}
.about-page-image-slot:hover {
  transform: translateY(-6px);
  border-color: rgba(79,125,67,0.45);
  box-shadow: 0 28px 64px rgba(106,46,14,0.14);
}
.about-page-image-slot span {
  color: #2a130b;
  font-size: 1.2rem;
  font-weight: 900;
  position: relative;
  z-index: 1;
}
.about-page-image-slot small {
  color: #6d6258;
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}
.about-page-section,
.about-page-story,
.about-page-impact,
.about-page-gallery-placeholders {
  padding: 76px 0;
  background: linear-gradient(135deg, #FFFDF0, #FFF8E3);
}
.about-page-story,
.about-page-gallery-placeholders {
  background: #fff9e8;
}
.about-page-note {
  padding: 28px;
  border-radius: 20px;
  background: linear-gradient(135deg, #3a1608, #6a2e0e);
  color: #fffdf0;
  box-shadow: 0 20px 44px rgba(106,46,14,0.22);
  position: relative;
  overflow: hidden;
}
.about-page-note::after {
  content: '';
  position: absolute;
  right: -42px;
  top: -42px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(215,163,38,0.16);
  box-shadow: 0 0 70px rgba(215,163,38,0.18);
}
.about-page-note strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
}
.about-page-note p {
  margin: 0;
  color: rgba(255,253,240,0.82);
  line-height: 1.65;
  position: relative;
  z-index: 1;
}
.about-page-values,
.about-process-grid,
.about-placeholder-grid,
.impact-grid {
  display: grid;
  gap: 18px;
}
.about-page-values {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 38px;
}
.about-page-values article,
.about-process-grid div,
.impact-card {
  padding: 24px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,252,237,0.82)),
    radial-gradient(circle at 86% 12%, rgba(79,125,67,0.12), transparent 34%);
  border: 1px solid rgba(106,46,14,0.1);
  box-shadow: 0 16px 38px rgba(106,46,14,0.07);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--silk), box-shadow 0.35s var(--silk), border-color 0.35s var(--silk);
}
.about-page-values article::before,
.about-process-grid div::before,
.impact-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #477948, #d7a326);
  opacity: 0.9;
}
.about-page-values article::after,
.about-process-grid div::after,
.impact-card::after {
  content: '';
  position: absolute;
  right: -36px;
  bottom: -36px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(79,125,67,0.08);
  transition: transform 0.35s var(--silk), opacity 0.35s var(--silk);
}
.about-page-values article:hover,
.about-process-grid div:hover,
.impact-card:hover {
  transform: translateY(-7px);
  border-color: rgba(79,125,67,0.22);
  box-shadow: 0 24px 54px rgba(106,46,14,0.14);
}
.about-page-values article:hover::after,
.about-process-grid div:hover::after,
.impact-card:hover::after {
  transform: scale(1.28);
  opacity: 0.85;
}
.about-page-values span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 42px;
  border-radius: 50%;
  background: #477948;
  color: #fff;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(79,125,67,0.24);
  position: relative;
  z-index: 1;
}
.about-page-values h3,
.about-process-grid span {
  margin: 0 0 10px;
  color: #24130c;
  font-size: 1.08rem;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}
.about-page-values p,
.about-process-grid p {
  margin: 0;
  color: #5e554d;
  line-height: 1.55;
  position: relative;
  z-index: 1;
}
.about-story-card {
  padding: 34px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255,255,255,0.86), rgba(255,253,240,0.7));
  border: 1px solid rgba(106,46,14,0.1);
  box-shadow: 0 18px 46px rgba(106,46,14,0.08);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--silk), box-shadow 0.35s var(--silk);
}
.about-story-card::before {
  content: '';
  position: absolute;
  inset: auto 28px 0;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, #477948, #d7a326);
}
.about-story-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 62px rgba(106,46,14,0.13);
}
.about-story-card h2 {
  margin: 0 0 18px;
  color: #2a130b;
  font-size: clamp(2rem, 3.3vw, 3.5rem);
  line-height: 1.02;
}
.about-story-card p,
.about-story-card li {
  color: #4e4740;
  line-height: 1.6;
}
.about-story-card ul {
  margin: 22px 0 0;
  padding-left: 20px;
}
.about-page-image-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: end;
}
.about-page-image-slot.tall {
  min-height: 430px;
}
.about-page-image-slot.small {
  min-height: 240px;
}
.about-page-image-tall,
.about-page-image-small {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 26px;
  display: block;
}
.about-page-image-tall {
  min-height: 430px;
}
.about-page-image-small {
  min-height: 240px;
}
.impact-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.impact-card {
  text-align: center;
  min-height: 150px;
  display: grid;
  place-items: center;
  align-content: center;
}
.impact-card strong {
  display: block;
  color: #477948;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1;
}
.impact-card span {
  display: block;
  margin-top: 10px;
  color: #2a130b;
  font-weight: 800;
  position: relative;
  z-index: 1;
}
.about-process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 34px;
}
.about-process-grid span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #477948;
  font-weight: 900;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(79,125,67,0.1);
}
.about-process-grid span::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #477948;
  box-shadow: 0 0 0 5px rgba(79,125,67,0.1);
}
.about-placeholder-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 30px;
}
.about-moment-card {
  min-height: 320px;
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  background: #fffdf0;
  border: 1px solid rgba(106,46,14,0.1);
  box-shadow: 0 18px 46px rgba(106,46,14,0.1);
  transition: transform 0.35s var(--silk), box-shadow 0.35s var(--silk);
}
.about-moment-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(42,19,11,0.86));
  z-index: 1;
  pointer-events: none;
}
.about-moment-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(106,46,14,0.16);
}
.about-moment-card img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  display: block;
  object-fit: cover;
  transition: transform 0.5s var(--silk);
}
.about-moment-card:hover img {
  transform: scale(1.05);
}
.about-moment-card figcaption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  color: #fffdf0;
}
.about-moment-card figcaption strong,
.about-moment-card figcaption span {
  display: block;
}
.about-moment-card figcaption strong {
  font-size: 1.08rem;
  margin-bottom: 6px;
}
.about-moment-card figcaption span {
  color: rgba(255,253,240,0.82);
  font-size: 0.9rem;
  line-height: 1.45;
}
.about-page-cta {
  padding: 72px 0;
  background: linear-gradient(135deg, #2a130b, #6a2e0e);
}
.about-cta-card {
  grid-template-columns: 1fr auto;
  padding: 34px;
  border-radius: 24px;
  background: rgba(255,253,240,0.08);
  border: 1px solid rgba(255,253,240,0.16);
  color: #fffdf0;
  position: relative;
  overflow: hidden;
}
.about-cta-card::before {
  content: '';
  position: absolute;
  inset: -80px -40px auto auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(168,201,140,0.12);
}
.about-cta-card > * {
  position: relative;
  z-index: 1;
}
.about-cta-card span {
  color: #a8c98c;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.about-cta-card h2 {
  margin: 8px 0 8px;
  color: #fffdf0;
  font-size: clamp(1.8rem, 3vw, 3.1rem);
}
.about-cta-card p {
  margin: 0;
  color: rgba(255,253,240,0.75);
}

@media (max-width: 1024px) {
  .about-page-hero-grid,
  .about-page-split,
  .about-story-grid,
  .about-cta-card {
    grid-template-columns: 1fr;
  }
  .about-page-values,
  .impact-grid,
  .about-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .about-page-hero {
    padding: 112px 0 52px;
  }
  .about-page-section,
  .about-page-story,
  .about-page-impact,
  .about-page-gallery-placeholders {
    padding: 56px 0;
  }
  .about-page-values,
  .impact-grid,
  .about-process-grid,
  .about-placeholder-grid,
  .about-page-image-stack {
    grid-template-columns: 1fr;
  }
}

@keyframes aboutFloatGlow {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.72;
  }
  50% {
    transform: translate3d(-18px, 14px, 0) scale(1.12);
    opacity: 1;
  }
}

/* Home page general FAQ only */
.faq-list-general {
  grid-template-columns: 1fr;
  max-width: 100%;
}

.faq-list-general .faq-category {
  margin-top: 0;
}

/* 2026-06-09 home polish fixes */
.hero-title .hero-title-green {
  color: #477948;
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.02;
}

.hero-title em {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
}

.hero-image-card {
  width: min(100%, 610px);
  aspect-ratio: auto;
  min-height: 0;
  border-radius: 30px;
  overflow: visible;
  clip-path: none;
  -webkit-mask-image: none;
  mask-image: none;
  background: #fff9e5;
  box-shadow: 0 18px 54px rgba(79,125,67,0.14), inset 0 0 0 1px rgba(106,46,14,0.08);
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-card img {
  width: 100%;
  height: auto;
  max-height: 540px;
  display: block;
  border-radius: 22px;
  object-fit: contain;
  object-position: center center;
  transform: none;
  background: transparent;
}

.about-mini-card {
  min-height: 254px;
  padding: 22px 18px 20px;
}

.about-card-art {
  height: 88px;
  margin-bottom: 12px;
}

.about-card-art img {
  width: min(96px, 88%);
  height: 82px;
}

.about-card-icon {
  width: 36px;
  height: 36px;
  left: 18px;
  top: 18px;
  font-size: 0.86rem;
}

.about-mini-card h3 {
  font-size: 1rem;
  line-height: 1.12;
  margin-bottom: 8px;
}

.about-mini-card p {
  font-size: 0.82rem;
  line-height: 1.42;
}

.about-mini-card::after {
  left: 18px;
  bottom: 16px;
  width: 44px;
}

.simple-page-hero {
  min-height: auto;
  align-items: flex-start;
  padding-top: 120px !important;
  padding-bottom: 64px !important;
}

.simple-page-hero::after {
  height: 70px;
}

.simple-page-hero .container {
  position: relative;
  z-index: 1;
}

.simple-page-hero .hero-content {
  max-width: 980px !important;
  padding: 34px;
  border-radius: 28px;
  background: rgba(255,253,240,0.68);
  border: 1px solid rgba(106,46,14,0.1);
  box-shadow: 0 18px 52px rgba(106,46,14,0.08);
}

.simple-page-hero .hero-title {
  font-size: clamp(2.65rem, 4.3vw, 4.65rem);
  line-height: 1.04;
  margin-top: 22px !important;
  margin-bottom: 16px !important;
}

.simple-page-hero .hero-title em {
  color: #477948;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 600;
}

.simple-page-hero .hero-sub {
  max-width: 760px;
  margin-bottom: 0;
}

.simple-page-hero .hero-actions {
  margin-top: 24px !important;
}

@media (max-width: 760px) {
  .hero-title span,
  .hero-title em,
  .hero-title .hero-title-green {
    white-space: normal;
  }

  .hero-image-card {
    width: min(100%, 520px);
    clip-path: none;
    border-radius: 26px;
    overflow: hidden;
  }

  .simple-page-hero {
    padding-top: 102px !important;
  }

  .simple-page-hero .hero-content {
    padding: 24px;
    border-radius: 22px;
  }
}

/* 2026-06-09 home mobile fixes: calendar + pattern */
@media (max-width: 900px) {
  .calendar-match-section,
  .pattern-match-section {
    overflow-x: clip;
  }

  .calendar-match-section .container,
  .pattern-match-section .container {
    padding-left: 20px;
    padding-right: 20px;
    max-width: 100%;
  }

  .calendar-match-section .exam-calendar-header,
  .pattern-match-section .pattern-header {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 24px;
  }

  .calendar-match-section .section-title,
  .pattern-match-section .section-title {
    font-size: clamp(2rem, 8vw, 2.8rem);
    line-height: 1.08;
  }

  .calendar-match-section .section-sub,
  .pattern-match-section .section-sub {
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .calendar-match-section .calendar-summary,
  .pattern-match-section .pattern-total-card {
    width: 100%;
    max-width: 100%;
  }

  .calendar-match-section .exam-path {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    min-height: auto;
    padding: 0 0 8px;
  }

  .calendar-match-section .exam-path-line,
  .calendar-match-section .exam-milestone::before,
  .calendar-match-section .exam-milestone::after,
  .calendar-match-section .exam-milestone:nth-of-type(even)::before,
  .calendar-match-section .exam-milestone:nth-of-type(even)::after {
    display: none !important;
  }

  .calendar-match-section .exam-milestone,
  .calendar-match-section .exam-milestone:nth-of-type(2),
  .calendar-match-section .exam-milestone:nth-of-type(4),
  .calendar-match-section .exam-milestone:nth-of-type(6) {
    display: block;
    grid-template-columns: none;
    min-height: auto;
    padding: 0 0 18px;
    text-align: left;
  }

  .calendar-match-section .exam-icon {
    width: 100%;
    height: 88px;
    min-height: 88px;
    margin: 0 0 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px 16px 0 0;
  }

  .calendar-match-section .exam-icon svg {
    width: 72px;
    height: 72px;
    min-width: 72px;
    min-height: 72px;
    max-width: 72px;
    max-height: 72px;
    padding: 16px;
    box-sizing: border-box;
    flex-shrink: 0;
  }

  .calendar-match-section .exam-milestone h3,
  .calendar-match-section .exam-milestone:nth-of-type(2) h3,
  .calendar-match-section .exam-milestone:nth-of-type(4) h3,
  .calendar-match-section .exam-milestone:nth-of-type(6) h3 {
    padding: 0 16px;
    font-size: 1rem;
    text-align: left;
  }

  .calendar-match-section .exam-milestone p,
  .calendar-match-section .exam-milestone:nth-of-type(2) p,
  .calendar-match-section .exam-milestone:nth-of-type(4) p,
  .calendar-match-section .exam-milestone:nth-of-type(6) p {
    max-width: none;
    margin: 0;
    padding: 0 16px;
    text-align: left;
    font-size: 0.88rem;
  }

  .calendar-match-section .exam-milestone time,
  .calendar-match-section .exam-milestone:nth-of-type(2) time,
  .calendar-match-section .exam-milestone:nth-of-type(4) time,
  .calendar-match-section .exam-milestone:nth-of-type(6) time {
    display: block;
    padding: 0 16px;
    text-align: left;
  }

  .calendar-benefits {
    grid-template-columns: 1fr;
    margin: 16px 0;
    padding: 8px 16px;
  }

  .calendar-benefit {
    min-height: auto;
    padding: 14px 0;
    grid-template-columns: 48px 1fr;
    gap: 12px;
  }

  .calendar-benefit:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid rgba(106,46,14,0.12);
  }

  .calendar-note {
    width: 100%;
    max-width: 100%;
    padding: 12px 16px;
    font-size: 0.86rem;
    align-items: flex-start;
  }

  .calendar-note > span:first-child {
    flex: 0 0 24px;
    align-self: flex-start;
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
    max-width: 24px;
    max-height: 24px;
    margin-top: 1px;
    border-radius: 50%;
  }

  .pattern-match-section .pattern-pills {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    max-width: 100%;
  }

  .pattern-pills div {
    min-height: auto;
    padding: 10px 0;
    grid-template-columns: 40px 1fr;
    gap: 10px;
  }

  .pattern-pills div:not(:last-child) {
    border-right: 0;
    border-bottom: 0;
    margin-right: 0;
    margin-bottom: 0;
  }

  .pattern-match-section .pattern-dashboard {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pattern-match-section .format-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .pattern-match-section .format-tile {
    min-height: auto;
    padding: 12px 14px;
  }

  .pattern-total-stats {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .pattern-total-stats div:not(:last-child) {
    border-right: 0;
  }

  .pattern-match-section .subject-row {
    grid-template-columns: 44px 1fr;
    gap: 10px;
    padding: 12px 14px;
  }

  .pattern-match-section .subject-stat {
    grid-column: 2;
    border-left: 0;
    justify-self: start;
    min-height: auto;
    padding-top: 0;
  }

  .pattern-match-section .language-strip {
    grid-template-columns: 1fr;
    gap: 10px;
    text-align: center;
    padding: 14px 16px;
  }

  .pattern-match-section .language-strip > span,
  .pattern-match-section .language-strip > i {
    margin: 0 auto;
  }
}

@media (max-width: 520px) {
  .calendar-match-section,
  .pattern-match-section {
    padding-top: 40px;
    padding-bottom: 28px;
  }

  .calendar-match-section .section-title,
  .pattern-match-section .section-title {
    font-size: clamp(1.75rem, 10vw, 2.35rem);
  }

  .pattern-match-section .pattern-pills {
    grid-template-columns: 1fr;
  }

  .pattern-total-stats {
    grid-template-columns: 1fr;
  }

  .calendar-match-section .calendar-summary {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 18px 16px;
  }

  .calendar-summary-icon {
    margin: 0 auto;
  }
}

/* Global title typography — match MNMSE process hero */
.section-title,
.hero-title,
.about-content .section-title,
.about-copy .section-title,
.about-page-section .section-title,
.about-page-gallery-placeholders .section-title,
.stats-header .section-title,
.countries-copy .section-title,
.exam-calendar-header .section-title,
.pattern-header .section-title,
.calendar-match-section .section-title,
.pattern-match-section .section-title,
.scholarship-levels-section .section-title,
.register-copy .section-title,
.about-page-copy h1,
.about-story-card h2,
.about-cta-card h2,
.simple-page-hero .hero-title,
.register-page-hero .hero-title,
.faq-page-hero .hero-title,
.university-page-hero h1,
.process-hero h1,
.process-section-title,
.carousel-header .section-title,
.faq-sidebar .section-title,
.cta-inner h2 {
  font-family: 'DM Sans', sans-serif !important;
  font-size: clamp(1.85rem, 3.2vw, 2.45rem) !important;
  font-weight: 700 !important;
  line-height: 1.18 !important;
  letter-spacing: -0.02em !important;
}

.section-title em,
.hero-title em,
.hero-title .hero-title-green,
.about-content .section-title em,
.about-copy .section-title em,
.about-page-section .section-title em,
.about-page-gallery-placeholders .section-title em,
.stats-header .section-title em,
.countries-copy .section-title em,
.exam-calendar-header .section-title em,
.pattern-header .section-title em,
.calendar-match-section .section-title em,
.pattern-match-section .section-title em,
.scholarship-levels-section .section-title em,
.register-copy .section-title em,
.about-page-copy h1 em,
.about-story-card h2 em,
.about-cta-card h2 em,
.simple-page-hero .hero-title em,
.register-page-hero .hero-title em,
.faq-page-hero .hero-title em,
.university-page-hero h1 em,
.process-hero h1 em,
.process-section-title em,
.carousel-header .section-title em,
.faq-sidebar .section-title em,
.cta-inner h2 em {
  color: #477948 !important;
  font-family: 'DM Sans', sans-serif !important;
  font-style: normal !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em !important;
}

.hero-title span,
.hero-title em {
  white-space: normal;
}

@media (max-width: 900px) {
  .calendar-match-section .section-title,
  .pattern-match-section .section-title {
    font-size: clamp(1.85rem, 3.2vw, 2.45rem) !important;
    line-height: 1.18 !important;
  }
}

@media (max-width: 720px) {
  .section-title,
  .hero-title,
  .about-page-copy h1,
  .about-story-card h2,
  .simple-page-hero .hero-title,
  .register-page-hero .hero-title,
  .process-hero h1,
  .process-section-title,
  .calendar-match-section .section-title,
  .pattern-match-section .section-title {
    font-size: clamp(1.65rem, 5.5vw, 2rem) !important;
  }
}

/* About page — Matrachaya intro section */
.about-page-intro {
  padding: 68px 0;
  background: #fff9e8;
  border-top: 1px solid rgba(106, 46, 14, 0.08);
}

.about-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 40px;
  align-items: start;
}

.about-intro-copy p {
  max-width: 680px;
  margin: 16px 0 0;
  color: #51463e;
  font-size: 1rem;
  line-height: 1.7;
}

.about-intro-copy p + p {
  margin-top: 14px;
}

.about-intro-list {
  display: grid;
  gap: 14px;
}

.about-intro-list div {
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(106, 46, 14, 0.1);
  box-shadow: 0 12px 28px rgba(106, 46, 14, 0.06);
}

.about-intro-list strong {
  display: block;
  margin-bottom: 6px;
  color: #2a130b;
  font-size: 1rem;
}

.about-intro-list span {
  display: block;
  color: #5f625f;
  font-size: 0.92rem;
  line-height: 1.55;
}

.about-trustees-section {
  padding: 74px 0 78px;
  background:
    radial-gradient(circle at 88% 12%, rgba(168,201,140,0.14), transparent 28%),
    radial-gradient(circle at 8% 92%, rgba(215,163,38,0.12), transparent 24%),
    linear-gradient(135deg, #2a130b, #5f270c);
  color: #fffdf0;
  position: relative;
  overflow: hidden;
}

.about-trustees-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,253,240,0.08) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.32;
  pointer-events: none;
}

.about-trustees-section .container {
  position: relative;
  z-index: 1;
}

.about-trustees-section .section-label {
  background: rgba(255,253,240,0.1);
  border-color: rgba(255,253,240,0.18);
  color: #d9efbd;
}

.about-trustees-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.58fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 34px;
}

.about-trustees-section .section-title {
  max-width: 760px;
  color: #fffdf0;
}

.about-trustees-section .section-title em {
  color: #a8c98c;
}

.about-trustees-section .section-sub {
  max-width: 720px;
  color: rgba(255,253,240,0.78);
}

.trustees-note {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255,253,240,0.08);
  border: 1px solid rgba(255,253,240,0.16);
  box-shadow: 0 18px 44px rgba(0,0,0,0.12);
}

.trustees-note strong,
.trustees-note span {
  display: block;
}

.trustees-note strong {
  margin-bottom: 8px;
  color: #fffdf0;
  font-size: 1.05rem;
}

.trustees-note span {
  color: rgba(255,253,240,0.72);
  line-height: 1.58;
  font-size: 0.92rem;
}

.trustee-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.trustee-card {
  min-height: 286px;
  padding: 30px 26px;
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255,253,240,0.11), rgba(255,253,240,0.055));
  border: 1px solid rgba(255,253,240,0.16);
  box-shadow: 0 24px 60px rgba(0,0,0,0.16);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--silk), border-color 0.35s var(--silk), box-shadow 0.35s var(--silk);
}

.trustee-card::before {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  right: -74px;
  top: -74px;
  background: radial-gradient(circle, rgba(168,201,140,0.16), transparent 68%);
  transition: transform 0.45s var(--silk);
}

.trustee-card::after {
  content: '';
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 0;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, #d7a326, #a8c98c);
  opacity: 0.82;
}

.trustee-card:hover {
  transform: translateY(-8px);
  border-color: rgba(168,201,140,0.3);
  box-shadow: 0 34px 78px rgba(0,0,0,0.22);
}

.trustee-card:hover::before {
  transform: scale(1.18);
}

.trustee-avatar {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d7a326, #f4c844);
  color: #2a130b;
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  box-shadow: 0 16px 34px rgba(215,163,38,0.2);
  position: relative;
  z-index: 1;
}

.trustee-role {
  display: inline-flex;
  margin-bottom: 10px;
  color: #d9efbd;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.trustee-card h3 {
  margin: 0 0 12px;
  color: #fffdf0;
  font-size: 1.2rem;
  position: relative;
  z-index: 1;
}

.trustee-card p {
  margin: 0;
  color: rgba(255,253,240,0.74);
  line-height: 1.62;
  font-size: 0.93rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-page-intro {
    padding: 52px 0;
  }

  .about-trustees-header,
  .trustee-grid {
    grid-template-columns: 1fr;
  }

  .about-trustees-section {
    padding: 58px 0;
  }
}
