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

    :root {
      --blue:       #0A2240;
      --blue-dark:  #071829;
      --blue-bg:    #F0F4FF;
      --yellow:     #0099CC;
      --yellow-dark:#007AA3;
      --white:      #FFFFFF;
      --off-white:  #F5F7FA;
      --ink:        #0A0A14;
      --ink-mid:    #4A4A5E;
      --ink-faint:  #8A8A9E;
      --dark:       #07091A;
      --rule:       rgba(10,10,20,0.10);
      --eu:         #0A2240;
      --eu-dark:    #071829;
      --bg:         #FFFFFF;
      --surface:    #F5F7FA;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--bg);
      color: var(--ink);
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    /* ─── Animations ─── */
    @keyframes curtain {
      from { transform: translateY(108%); }
      to   { transform: translateY(0); }
    }
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes marqueeRoll {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }

    /* ─── Scroll reveal ─── */
    .sr {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.9s cubic-bezier(0.22,1,0.36,1),
                  transform 0.9s cubic-bezier(0.22,1,0.36,1);
    }
    .sr.on { opacity: 1; transform: none; }
    .sr[data-d="1"] { transition-delay: 0.06s; }
    .sr[data-d="2"] { transition-delay: 0.14s; }
    .sr[data-d="3"] { transition-delay: 0.22s; }
    .sr[data-d="4"] { transition-delay: 0.32s; }
    .sr[data-d="5"] { transition-delay: 0.44s; }

    /* ─── Nav ─── */
    .nav {
      position: fixed;
      inset: 0 0 auto;
      z-index: 200;
      height: 140px;
      padding: 0 48px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: #ffffff;
      border-bottom: 1px solid var(--md-glass-hairline, rgba(10,12,30,0.08));
    }

    .logo {
      display: flex;
      align-items: center;
      text-decoration: none;
    }
    .logo img {
      height: 132px;
      width: auto;
      display: block;
    }

    /* Burger button — glass icon button (all sizes) */
    .nav-hamburger {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 50px;
      height: 50px;
      background: #ffffff;
      border: 1px solid var(--md-glass-hairline, rgba(10,12,30,0.10));
      border-radius: 15px;
      font-size: 1.3rem;
      color: var(--ink);
      cursor: pointer;
      line-height: 1;
      transition: background .18s, border-color .18s, box-shadow .18s, transform .12s;
    }
    .nav-hamburger:hover { background: #fff; box-shadow: var(--md-e2, 0 2px 8px rgba(10,12,30,0.12)); }
    .nav-hamburger:active { transform: scale(.96); }

    /* Burger PANEL — glass dropdown card (sibling of nav, viewport-fixed) */
    .nav-links {
      list-style: none;
      position: fixed;
      top: 152px;
      right: 24px;
      width: 320px;
      max-width: calc(100vw - 32px);
      display: none;
      flex-direction: column;
      gap: 2px;
      padding: 14px;
      background: var(--md-glass-bg-strong, rgba(255,255,255,0.9));
      -webkit-backdrop-filter: var(--md-glass-blur, saturate(180%) blur(20px));
      backdrop-filter: var(--md-glass-blur, saturate(180%) blur(20px));
      border: 1px solid var(--md-glass-border, rgba(255,255,255,0.55));
      border-radius: 22px;
      box-shadow: var(--md-e3, 0 8px 24px rgba(10,12,30,0.16));
      z-index: 205;
      animation: navMenuIn .22s cubic-bezier(.05,.7,.1,1);
    }
    .nav-links.open { display: flex; }
    @keyframes navMenuIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
    .nav-menu-label {
      font-size: 0.6875rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--ink-faint);
      padding: 12px 12px 4px;
    }
    .nav-links a {
      display: flex;
      align-items: center;
      gap: 11px;
      font-size: 0.9375rem;
      font-weight: 500;
      color: var(--ink);
      text-decoration: none;
      padding: 10px 12px;
      border-radius: 12px;
      letter-spacing: 0.005em;
      transition: background .15s, color .15s;
    }
    .nav-links a i { width: 18px; text-align: center; color: var(--ink-faint); transition: color .15s; }
    .nav-links a:hover { background: var(--md-hover-dark, rgba(10,12,30,0.06)); color: var(--blue); }
    .nav-links a:hover i { color: var(--blue); }
    .nav-menu-divider { height: 1px; background: var(--md-glass-hairline, rgba(10,12,30,0.08)); margin: 8px 4px; }
    .nav-menu-cta {
      margin-top: 8px;
      justify-content: center !important;
      background: var(--blue);
      color: #fff !important;
      font-weight: 600 !important;
      border-radius: 999px !important;
    }
    .nav-menu-cta:hover { background: var(--blue-dark); color: #fff !important; }
    .nav-menu-close {
      display: none;
      align-self: flex-end;
      background: none;
      border: none;
      font-size: 1.25rem;
      color: var(--ink-mid);
      cursor: pointer;
      padding: 2px 8px;
      line-height: 1;
    }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .nav-in {
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--ink-mid);
      text-decoration: none;
      transition: color 0.2s;
      padding: 8px 0;
    }
    .nav-in:hover { color: var(--ink); }

    /* ─── Buttons ─── */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 11px 24px;
      font-family: 'Inter', sans-serif;
      font-size: 0.875rem;
      font-weight: 600;
      border-radius: 0;
      border: none;
      text-decoration: none;
      cursor: pointer;
      transition: background 0.15s, color 0.15s, border-color 0.15s;
      letter-spacing: 0.02em;
      white-space: nowrap;
    }
    .btn-blue { background: var(--blue); color: #fff; }
    .btn-blue:hover { background: var(--blue-dark); }
    .btn-blue-sm { background: var(--blue); color: #fff; font-size: 0.8125rem; padding: 9px 18px; }
    .btn-blue-sm:hover { background: var(--blue-dark); }
    .btn-ink { background: var(--ink); color: #fff; }
    .btn-ink:hover { background: #1a1a2e; }
    .btn-yellow { background: var(--yellow); color: #fff; }
    .btn-yellow:hover { background: var(--yellow-dark); }
    .btn-outline { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
    .btn-outline:hover { border-color: var(--blue); color: var(--blue); }
    .btn-outline-white { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.5); }
    .btn-outline-white:hover { background: rgba(255,255,255,0.1); }
    .btn-white { background: #fff; color: var(--ink); }
    .btn-white:hover { background: var(--yellow); }

    /* ─── HERO ─── */
    .hero {
      padding: 140px 0 0;
      background: #ffffff;
      border-bottom: 1px solid var(--rule);
      display: grid;
      grid-template-columns: 58fr 42fr;
    }

    .hero-left {
      padding: 64px 56px 64px 48px;
      border-right: 1px solid var(--rule);
    }

    .hero-eyebrow {
      font-size: 0.6875rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: 28px;
      animation: fadeUp 0.6s ease 0.2s both;
      display: block;
    }

    .hero-h {
      font-family: 'Inter', sans-serif;
      font-weight: 700;
      font-size: clamp(38px, 4vw, 56px);
      line-height: 1.05;
      letter-spacing: -0.025em;
      margin-bottom: 28px;
      color: var(--ink);
    }

    .hero-h .accent { color: var(--blue); }

    /* curtain reveal lines */
    .cl { overflow: hidden; display: block; }
    .cl span {
      display: block;
      animation: curtain 1.0s cubic-bezier(0.22,1,0.36,1) both;
    }
    .cl:nth-child(1) span { animation-delay: 0.05s; }
    .cl:nth-child(2) span { animation-delay: 0.18s; }
    .cl:nth-child(3) span { animation-delay: 0.31s; }

    .hero-desc {
      font-size: 1rem;
      line-height: 1.65;
      color: var(--ink-mid);
      max-width: 520px;
      margin-bottom: 36px;
      animation: fadeUp 0.7s ease 0.55s both;
    }

    .hero-actions {
      display: flex;
      flex-direction: column;
      gap: 12px;
      align-items: flex-start;
      animation: fadeUp 0.7s ease 0.7s both;
    }
    .hero-actions .btn { width: 260px; text-align: center; }

    .hero-right {
      background: var(--dark);
      background-image: url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?w=900&q=85');
      background-size: cover;
      background-position: center top;
      position: relative;
      overflow: hidden;
    }
    .hero-right::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(160deg, rgba(0,43,128,0.72) 0%, rgba(7,9,26,0.88) 100%);
    }
    .hero-right-inner {
      position: relative;
      z-index: 1;
      height: 100%;
      padding: 56px 48px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
    }
    @keyframes stampFloat {
      0%   { transform: rotate(14deg) translateY(0px); box-shadow: 2px 4px 16px rgba(0,0,0,0.3), 0 0 0px rgba(245,197,24,0); }
      50%  { transform: rotate(11deg) translateY(-6px); box-shadow: 2px 12px 28px rgba(0,0,0,0.25), 0 0 22px rgba(245,197,24,0.45); }
      100% { transform: rotate(14deg) translateY(0px); box-shadow: 2px 4px 16px rgba(0,0,0,0.3), 0 0 0px rgba(245,197,24,0); }
    }
    .hero-stamp {
      position: absolute;
      top: 24px;
      right: 24px;
      width: 114px;
      height: 114px;
      border-radius: 50%;
      background: #F5C518;
      box-shadow: 2px 4px 16px rgba(0,0,0,0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      z-index: 10;
      animation: stampFloat 3.5s ease-in-out infinite;
    }
    .hero-stamp span {
      font-size: 0.7rem;
      font-weight: 800;
      color: #1a1a1a;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      line-height: 1.5;
    }
    .hero-stamp span em {
      display: block;
      font-style: normal;
      font-size: 0.6rem;
      font-weight: 600;
      text-transform: none;
      letter-spacing: 0.02em;
      margin-top: 4px;
      text-decoration: underline;
      text-underline-offset: 2px;
      opacity: 0.7;
    }

    /* Privacy modal */
    .privacy-modal-backdrop {
      position: fixed; inset: 0; z-index: 600;
      background: rgba(7,9,26,0.55);
      display: flex; align-items: center; justify-content: center;
      padding: 24px;
      opacity: 0; pointer-events: none;
      transition: opacity 0.2s;
    }
    .privacy-modal-backdrop.open { opacity: 1; pointer-events: all; }
    .privacy-modal {
      background: rgba(255,255,255,0.92);
      -webkit-backdrop-filter: saturate(180%) blur(20px);
      backdrop-filter: saturate(180%) blur(20px);
      border: 1px solid rgba(255,255,255,0.55);
      border-radius: 28px;
      box-shadow: 0 24px 60px rgba(7,9,26,0.28);
      width: 100%; max-width: 480px;
      position: relative;
      transform: translateY(16px);
      transition: transform 0.25s cubic-bezier(.22,.68,0,1.2);
      padding: 44px;
    }
    .privacy-modal-backdrop.open .privacy-modal { transform: translateY(0); }
    .privacy-modal-close {
      position: absolute; top: 18px; right: 18px;
      background: none; border: none; font-size: 1.1rem;
      color: #8A8A9E; cursor: pointer; padding: 4px 8px;
    }
    .privacy-modal-close:hover { color: #0A0A14; }
    .privacy-modal-stamp {
      width: 64px; height: 64px; border-radius: 50%;
      background: #F5C518; display: flex; align-items: center;
      justify-content: center; margin-bottom: 20px;
      font-size: 1.4rem;
    }
    .privacy-modal h2 {
      font-size: 1.4rem; font-weight: 800; color: #0A0A14;
      letter-spacing: -0.02em; margin-bottom: 12px;
    }
    .privacy-modal p {
      font-size: 0.9rem; color: #4A4A5E; line-height: 1.75; margin-bottom: 16px;
    }
    .privacy-modal ul {
      list-style: none; display: flex; flex-direction: column;
      gap: 10px; margin-bottom: 28px;
    }
    .privacy-modal ul li {
      display: flex; align-items: flex-start; gap: 10px;
      font-size: 0.875rem; color: #4A4A5E; line-height: 1.5;
    }
    .privacy-modal ul li i { color: #0A2240; flex-shrink: 0; margin-top: 2px; font-size: 0.8rem; }
    @media (max-width: 768px) {
      .hero-stamp {
        width: 88px;
        height: 88px;
        top: 16px;
        right: 16px;
      }
      .hero-stamp span { font-size: 0.58rem; }
    }

    .hero-right-tag {
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--yellow);
      margin-bottom: 16px;
      display: block;
    }
    .hero-right-headline {
      font-size: clamp(22px, 2.2vw, 32px);
      font-weight: 700;
      color: #fff;
      line-height: 1.2;
      letter-spacing: -0.02em;
      margin-bottom: 24px;
    }
    .hero-right-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      justify-content: center;
    }
    .hero-right-pill {
      font-size: 0.72rem;
      font-weight: 600;
      color: rgba(255,255,255,0.75);
      border: 1px solid rgba(255,255,255,0.2);
      padding: 5px 12px;
      letter-spacing: 0.04em;
    }
    .hero-right-pill.free {
      background: var(--yellow);
      color: #fff;
      border-color: var(--yellow);
      font-weight: 700;
    }

    .fact-block {
      padding: 24px 0;
      border-bottom: 1px solid rgba(255,255,255,0.07);
    }
    .fact-block:first-child { padding-top: 0; }
    .fact-block:last-child { border-bottom: none; padding-bottom: 0; }

    .fact-label {
      font-size: 0.6875rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--yellow);
      margin-bottom: 6px;
      display: block;
    }
    .fact-value {
      font-size: 1.75rem;
      font-weight: 700;
      color: #fff;
      line-height: 1.1;
      letter-spacing: -0.02em;
    }

    /* ─── Marquee ─── */
    .marquee-strip {
      background: var(--blue);
      height: 40px;
      overflow: hidden;
      display: flex;
      align-items: center;
    }
    .marquee-track {
      display: flex;
      gap: 0;
      white-space: nowrap;
      animation: marqueeRoll 28s linear infinite;
      will-change: transform;
    }
    .marquee-item {
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #fff;
      padding: 0 24px;
      display: flex;
      align-items: center;
      gap: 24px;
    }
    .marquee-dot {
      display: inline-block;
      width: 6px;
      height: 6px;
      background: var(--yellow);
      flex-shrink: 0;
    }

    /* ─── Section utilities ─── */
    .section-wrap {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 48px;
    }

    .eyebrow {
      font-size: 0.6875rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--ink-faint);
      display: block;
      margin-bottom: 20px;
    }
    .eyebrow-blue {
      color: var(--blue);
    }

    /* ─── Intro section ─── */
    .intro-section {
      background: #fff;
      padding: 64px 0;
      border-bottom: 1px solid var(--rule);
    }
    .intro-section .section-wrap {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }
    .intro-text {
      font-size: clamp(22px, 2.4vw, 32px);
      font-weight: 300;
      line-height: 1.45;
      color: var(--ink);
      letter-spacing: -0.01em;
    }
    .intro-text strong {
      font-weight: 700;
      color: var(--ink);
    }
    .intro-text em {
      font-style: normal;
      color: var(--blue);
    }
    .intro-right {
      display: flex;
      flex-direction: column;
      gap: 0;
      border-left: 3px solid var(--blue);
      padding-left: 40px;
    }
    .intro-stat {
      padding: 16px 0;
      border-bottom: 1px solid var(--rule);
    }
    .intro-stat:last-child { border-bottom: none; }
    .intro-stat-num {
      font-size: 2rem;
      font-weight: 800;
      color: var(--blue);
      line-height: 1;
      letter-spacing: -0.03em;
    }
    .intro-stat-label {
      font-size: 0.8125rem;
      color: var(--ink-mid);
      margin-top: 4px;
    }

    /* ─── Portals section removed from landing (portals remain reachable via the burger menu) ─── */

    /* ─── Platform section ─── */
    /* ─── Why Register ─── */
    .why-section {
      background: #fff;
      border-bottom: 1px solid var(--rule);
    }
    .why-grid {
      display: grid;
      grid-template-columns: 1fr 1px 1fr;
      gap: 0;
    }
    .why-col { padding: 48px 56px 72px; }
    .why-img {
      width: calc(100% + 112px);
      height: 220px;
      object-fit: cover;
      display: block;
      margin: -48px -56px 40px;
    }
    .why-col-header {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 24px;
    }
    .why-icon {
      width: 40px; height: 40px;
      background: var(--blue);
      display: flex; align-items: center; justify-content: center;
      color: #fff;
      font-size: 1rem;
    }
    .why-icon.airline { background: var(--dark); }
    .why-label {
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--ink-faint);
    }
    .why-h {
      font-size: clamp(22px, 2.2vw, 32px);
      font-weight: 700;
      letter-spacing: -0.02em;
      line-height: 1.15;
      margin-bottom: 16px;
      color: var(--ink);
    }
    .why-body {
      font-size: 0.9375rem;
      line-height: 1.75;
      color: var(--ink-mid);
      margin-bottom: 28px;
    }
    .why-list {
      list-style: none;
      margin-bottom: 32px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .why-list li {
      font-size: 0.9rem;
      color: var(--ink-mid);
      display: flex;
      align-items: flex-start;
      gap: 10px;
      line-height: 1.5;
    }
    .why-list li i { color: var(--blue); margin-top: 3px; flex-shrink: 0; font-size: 0.8rem; }
    .why-divider { background: var(--rule); width: 1px; }

    /* ─── News carousel ─── */
    .news-section {
      background: var(--off-white);
      padding: 72px 0;
      border-bottom: 1px solid var(--rule);
    }
    .news-header {
      padding: 0 48px;
      margin-bottom: 36px;
    }
    .news-h {
      font-size: clamp(22px, 2.5vw, 36px);
      font-weight: 700;
      letter-spacing: -0.02em;
      margin-top: 8px;
    }
    .news-carousel-wrap { position: relative; overflow: hidden; padding: 0 48px; }
    .news-carousel {
      display: flex;
      gap: 24px;
    }
    .news-card {
      flex: 0 0 var(--news-card-w, 220px);
      background: #fff;
      border: 1px solid var(--rule);
      border-top: 3px solid var(--blue);
      display: flex;
      flex-direction: column;
      transition: transform 0.3s;
      min-width: 0;
    }
    .news-card:hover { transform: translateY(-3px); }
    .news-card-img {
      width: 100%; height: 160px;
      object-fit: cover;
      display: block;
      background: var(--off-white);
    }
    .news-card-body { padding: 20px 22px; flex: 1; display: flex; flex-direction: column; }
    .news-card-source {
      font-size: 0.65rem; font-weight: 700;
      letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--blue); margin-bottom: 8px;
    }
    .news-card-title {
      font-size: 0.9rem; font-weight: 600;
      line-height: 1.45; color: var(--ink);
      margin-bottom: 12px; flex: 1;
      display: -webkit-box; -webkit-line-clamp: 3;
      -webkit-box-orient: vertical; overflow: hidden;
    }
    .news-card-date { font-size: 0.75rem; color: var(--ink-faint); }
    .news-card-link {
      display: block; padding: 10px 22px;
      background: var(--off-white); color: var(--blue);
      font-size: 0.78rem; font-weight: 600;
      text-decoration: none; border-top: 1px solid var(--rule);
      letter-spacing: 0.03em;
      transition: background 0.15s;
    }
    .news-card-link:hover { background: var(--blue); color: #fff; }
    .news-controls {
      display: flex; align-items: center; justify-content: center;
      gap: 16px; margin-top: 28px;
    }
    .news-btn {
      width: 36px; height: 36px;
      background: #fff; border: 1px solid var(--rule);
      color: var(--ink-mid); cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: background 0.15s, color 0.15s;
      font-size: 0.85rem;
    }
    .news-btn:hover { background: var(--blue); color: #fff; border-color: var(--blue); }
    .news-dots { display: flex; gap: 6px; }
    .news-dot {
      width: 6px; height: 6px;
      background: var(--rule); cursor: pointer;
      transition: background 0.2s;
    }
    .news-dot.active { background: var(--blue); }
    .news-loading { padding: 40px; color: var(--ink-faint); font-size: 0.9rem; }

    .platform-section {
      background: var(--dark);
      padding: 72px 0;
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .platform-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }
    .platform-left {}
    .platform-eyebrow {
      font-size: 0.6875rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--yellow);
      display: block;
      margin-bottom: 20px;
    }
    .platform-h2 {
      font-size: clamp(32px, 3.2vw, 44px);
      font-weight: 700;
      color: #fff;
      line-height: 1.1;
      letter-spacing: -0.025em;
      margin-bottom: 20px;
    }
    .platform-sub {
      font-size: 0.9375rem;
      color: rgba(255,255,255,0.55);
      line-height: 1.65;
      max-width: 380px;
      margin-bottom: 32px;
    }
    .platform-badges {
      display: flex;
      flex-direction: column;
      gap: 0;
      border: 1px solid rgba(255,255,255,0.08);
    }
    .platform-badge {
      padding: 14px 20px;
      border-bottom: 1px solid rgba(255,255,255,0.06);
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 0.8125rem;
      color: rgba(255,255,255,0.7);
    }
    .platform-badge:last-child { border-bottom: none; }
    .platform-badge-dot {
      width: 8px;
      height: 8px;
      background: var(--yellow);
      flex-shrink: 0;
    }

    .platform-features {
      display: flex;
      flex-direction: column;
      gap: 0;
    }
    .feat-row {
      display: grid;
      grid-template-columns: 40px 1fr;
      gap: 20px;
      align-items: start;
      padding: 28px 0;
      border-bottom: 1px solid rgba(255,255,255,0.07);
    }
    .feat-row:first-child { padding-top: 0; }
    .feat-row:last-child { border-bottom: none; padding-bottom: 0; }
    .feat-icon {
      width: 32px;
      height: 32px;
      background: rgba(255,204,0,0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 2px;
    }
    .feat-icon i { color: var(--yellow); font-size: 0.875rem; }
    .feat-body {}
    .feat-name {
      font-size: 0.9375rem;
      font-weight: 600;
      color: #fff;
      margin-bottom: 6px;
    }
    .feat-desc {
      font-size: 0.8125rem;
      line-height: 1.6;
      color: rgba(255,255,255,0.5);
    }

    /* ─── Compliance / EU section ─── */
    .eu-section {
      background: #fff;
      padding: 64px 0;
      border-bottom: 1px solid var(--rule);
    }
    .eu-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr 1fr;
      gap: 0;
      align-items: start;
    }
    .eu-left {
      grid-column: span 2;
      padding-right: 56px;
      border-right: 1px solid var(--rule);
    }
    .eu-left .eyebrow { color: var(--ink-faint); }
    .eu-heading {
      font-size: clamp(26px, 2.8vw, 36px);
      font-weight: 700;
      color: var(--ink);
      line-height: 1.15;
      letter-spacing: -0.02em;
      margin-bottom: 20px;
    }
    .eu-body {
      font-size: 0.9375rem;
      line-height: 1.7;
      color: var(--ink-mid);
      margin-bottom: 24px;
    }
    .eu-right {
      grid-column: span 2;
      padding-left: 56px;
    }
    .compliance-tags {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    .compliance-tag {
      border: 1.5px solid var(--rule);
      padding: 16px 20px;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
    .compliance-tag-icon {
      color: var(--blue);
      font-size: 1rem;
      margin-bottom: 2px;
    }
    .compliance-tag-name {
      font-size: 0.8125rem;
      font-weight: 700;
      color: var(--ink);
      letter-spacing: 0.01em;
    }
    .compliance-tag-desc {
      font-size: 0.75rem;
      color: var(--ink-faint);
      line-height: 1.5;
    }

    /* ─── CTA section ─── */
    .cta-section {
      background: var(--blue);
      padding: 72px 0;
      border-bottom: 4px solid var(--yellow);
    }
    .cta-inner {
      text-align: center;
      max-width: 680px;
      margin: 0 auto;
    }
    .cta-eyebrow {
      font-size: 0.6875rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.6);
      display: block;
      margin-bottom: 20px;
    }
    .cta-h2 {
      font-size: clamp(32px, 3.5vw, 48px);
      font-weight: 700;
      color: #fff;
      line-height: 1.1;
      letter-spacing: -0.025em;
      margin-bottom: 16px;
    }
    .cta-p {
      font-size: 1rem;
      color: rgba(255,255,255,0.72);
      line-height: 1.65;
      margin-bottom: 36px;
    }
    .cta-actions {
      display: flex;
      gap: 12px;
      justify-content: center;
      flex-wrap: wrap;
    }

    /* ─── Footer ─── */
    .footer {
      background: var(--dark);
      padding: 40px 0;
    }
    .footer-inner {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      gap: 32px;
      align-items: center;
    }
    .footer-logo {
      font-size: 0.9375rem;
      font-weight: 700;
      color: #fff;
      letter-spacing: -0.01em;
    }
    .footer-logo span {
      font-weight: 300;
      color: rgba(255,255,255,0.4);
      font-size: 0.8125rem;
      display: block;
      margin-top: 2px;
    }
    .footer-links {
      list-style: none;
      display: flex;
      gap: 28px;
    }
    .footer-links a {
      font-size: 0.8125rem;
      color: rgba(255,255,255,0.45);
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-links a:hover { color: #fff; }
    .footer-copy {
      font-size: 0.75rem;
      color: rgba(255,255,255,0.3);
      text-align: right;
      line-height: 1.5;
    }


    /* ─── Attestation Why Section ─── */
    .attest-why {
      background: var(--dark);
      color: #fff;
      padding: 72px 0;
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .attest-why-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .attest-why-label {
      font-size: 0.6875rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--yellow);
      display: block;
      margin-bottom: 20px;
    }
    .attest-why-h {
      font-size: clamp(28px, 2.8vw, 40px);
      font-weight: 700;
      letter-spacing: -0.02em;
      line-height: 1.15;
      margin-bottom: 20px;
    }
    .attest-why-body {
      font-size: 0.9375rem;
      line-height: 1.75;
      color: rgba(255,255,255,0.55);
      margin-bottom: 32px;
    }
    .attest-why-cards {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      border: 1px solid rgba(255,255,255,0.08);
    }
    .attest-why-card {
      padding: 24px;
      border-right: 1px solid rgba(255,255,255,0.08);
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .attest-why-card:nth-child(even) { border-right: none; }
    .attest-why-card:nth-child(3),
    .attest-why-card:nth-child(4) { border-bottom: none; }
    .attest-why-card strong {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.875rem;
      font-weight: 600;
      margin-bottom: 8px;
      color: #fff;
    }
    .attest-why-card strong::before {
      content: '';
      display: inline-block;
      width: 8px;
      height: 8px;
      background: var(--yellow);
      flex-shrink: 0;
    }
    .attest-why-card p {
      font-size: 0.8125rem;
      color: rgba(255,255,255,0.55);
      line-height: 1.65;
    }

    /* ─── No Attestation Section ─── */
    .no-attest {
      background: var(--off-white);
      padding: 72px 0;
      border-bottom: 1px solid var(--rule);
    }
    .no-attest-header { text-align: center; margin-bottom: 56px; }
    .no-attest-h {
      font-size: clamp(28px, 2.8vw, 40px);
      font-weight: 700;
      letter-spacing: -0.02em;
      color: var(--ink);
      line-height: 1.15;
      margin-bottom: 14px;
    }
    .no-attest-sub {
      font-size: 0.9375rem;
      color: var(--ink-mid);
      max-width: 560px;
      margin: 0 auto;
      line-height: 1.75;
    }
    .no-attest-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      border: 1px solid #E0E2E8;
      margin-bottom: 40px;
    }
    .no-attest-step {
      background: #fff;
      padding: 32px 28px;
      border-right: 1px solid #E0E2E8;
      position: relative;
    }
    .no-attest-step:last-child { border-right: none; }
    .no-attest-step::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: var(--blue);
    }
    .no-attest-num {
      font-size: 0.6875rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      color: var(--blue);
      text-transform: uppercase;
      margin-bottom: 14px;
    }
    .no-attest-step strong {
      display: block;
      font-size: 0.9375rem;
      font-weight: 700;
      color: var(--ink);
      margin-bottom: 10px;
      letter-spacing: -0.01em;
    }
    .no-attest-step p {
      font-size: 0.8125rem;
      color: var(--ink-mid);
      line-height: 1.65;
    }
    .no-attest-note {
      background: #fff;
      border: 1px solid var(--rule);
      border-left: 3px solid var(--blue);
      padding: 18px 24px;
      font-size: 0.875rem;
      color: var(--ink-mid);
      line-height: 1.65;
    }
    .no-attest-note strong { color: var(--ink); font-weight: 600; }
    .no-attest-note a { color: var(--blue); }

    @media (max-width: 900px) {
      .attest-why-grid { grid-template-columns: 1fr; gap: 40px; }
      .no-attest-steps { grid-template-columns: 1fr 1fr; }
      .no-attest-step { border-bottom: 1px solid #E0E2E8; }
      .no-attest-step:nth-child(even) { border-right: none; }
    }
    @media (max-width: 560px) {
      .attest-why-cards { grid-template-columns: 1fr; }
      .attest-why-card:nth-child(odd) { border-right: none; }
      .no-attest-steps { grid-template-columns: 1fr; }
      .no-attest-step { border-right: none; }
    }

    /* Burger button is the primary nav control — visible at all sizes.
       Close button hidden (panel closes via outside-click / Esc). */
    .nav-menu-close { display: none; }

    /* ─── Mobile responsive (≤960px) ─── */
    @media (max-width: 960px) {

      /* Nav: compact glass bar; burger panel becomes a full-width glass sheet */
      .nav {
        padding: 0 18px;
        height: 88px;
      }
      .logo img {
        height: 64px;
      }
      .nav-links {
        top: 88px;
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        border-radius: 0 0 22px 22px;
        padding: 12px 14px 18px;
      }
      .nav-links a {
        font-size: 1rem;
        padding: 13px 14px;
      }
      .nav-menu-close {
        display: block;
      }

      /* Hero: stack columns */
      .hero {
        grid-template-columns: 1fr;
        padding: 88px 0 0;
      }
      .hero-left {
        padding: 40px 20px;
        border-right: none;
        border-bottom: 1px solid var(--rule);
      }
      .hero-right {
        min-height: 320px;
      }
      .hero-right-inner {
        padding: 40px 20px;
      }

      /* Section wrap horizontal padding */
      .section-wrap {
        padding: 0 20px;
      }

      /* Intro section */
      .intro-section {
        padding: 48px 0;
      }
      .intro-section .section-wrap {
        grid-template-columns: 1fr;
        gap: 36px;
      }
      .intro-right {
        border-left: none;
        border-top: 3px solid var(--blue);
        padding-left: 0;
        padding-top: 32px;
      }

      /* Portals grid: single column */
      .portals-section {
        padding: 48px 0;
      }
      .portals-grid {
        grid-template-columns: 1fr;
      }
      .portal-card {
        border-right: none;
        border-bottom: 1px solid #E0E2E8;
        min-height: auto;
      }
      .portal-card:last-child {
        border-bottom: none;
      }

      /* Why section */
      .why-grid {
        grid-template-columns: 1fr;
      }
      .why-divider {
        display: none;
      }
      .why-col {
        padding: 40px 20px;
      }
      .why-img {
        width: calc(100% + 40px);
        margin: -40px -20px 32px;
      }

      /* News section */
      .news-section {
        padding: 48px 0;
      }
      .news-header {
        padding: 0 20px;
      }
      .news-carousel-wrap {
        padding: 0 20px;
      }

      /* Platform section */
      .platform-section {
        padding: 48px 0;
      }
      .platform-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      /* EU / Compliance section */
      .eu-section {
        padding: 48px 0;
      }
      .eu-grid {
        grid-template-columns: 1fr;
      }
      .eu-left {
        grid-column: span 1;
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid var(--rule);
        padding-bottom: 40px;
        margin-bottom: 40px;
      }
      .eu-right {
        grid-column: span 1;
        padding-left: 0;
      }
      .compliance-tags {
        grid-template-columns: 1fr;
      }

      /* CTA section */
      .cta-section {
        padding: 48px 0;
      }
      .cta-inner {
        padding: 0 20px;
      }

      /* Footer: stack to 1 column, centered */
      .footer {
        padding: 32px 0;
      }
      .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 24px;
      }
      .footer-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px;
      }
      .footer-copy {
        text-align: center;
      }

      /* Attestation sections */
      .attest-why {
        padding: 48px 0;
      }
      .no-attest {
        padding: 48px 0;
      }
    }


/* ── How-it-works sub-page (shared, on-brand with the landing) ───────────────── */
.hiw-hero { background: var(--off-white, #F5F7FA); padding: 150px 0 66px; border-bottom: 1px solid var(--rule, rgba(10,10,20,0.10)); }
.hiw-hero .section-wrap { max-width: 840px; text-align: center; }
.hiw-eyebrow { font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue, #0A2240); margin-bottom: 18px; display: block; }
.hiw-h { font-size: clamp(30px, 4.2vw, 52px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.08; color: var(--ink, #0A0A14); margin-bottom: 20px; }
.hiw-sub { font-size: 1.0625rem; line-height: 1.7; color: var(--ink-mid, #4A4A5E); max-width: 640px; margin: 0 auto 30px; }
.hiw-section { padding: 76px 0; }
.hiw-section.alt { background: var(--off-white, #F5F7FA); }
.hiw-section .section-wrap { max-width: 1160px; }
.hiw-head { text-align: center; margin-bottom: 52px; }
.hiw-head h2 { font-size: clamp(24px, 3vw, 38px); font-weight: 800; letter-spacing: -0.02em; color: var(--ink, #0A0A14); margin-bottom: 14px; }
.hiw-head p { font-size: 1rem; color: var(--ink-mid, #4A4A5E); max-width: 580px; margin: 0 auto; line-height: 1.7; }
.hiw-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 22px; }
@media (min-width: 1000px) { .hiw-steps { grid-template-columns: repeat(5, 1fr); } }
.hiw-step { background: #fff; border: 1px solid var(--rule, rgba(10,10,20,0.10)); border-radius: 18px; padding: 30px 26px; transition: box-shadow .2s, transform .2s; }
.hiw-step:hover { box-shadow: 0 16px 40px rgba(10,34,64,0.08); transform: translateY(-3px); }
/* Slow sequential highlight — each step lights up in turn, then loops. */
@keyframes hiwPulse {
  0%   { border-color: var(--rule, rgba(10,10,20,0.10)); box-shadow: none; transform: translateY(0); }
  4%   { border-color: var(--blue, #0A2240); box-shadow: 0 18px 44px rgba(10,34,64,0.16); transform: translateY(-5px); }
  15%  { border-color: var(--blue, #0A2240); box-shadow: 0 18px 44px rgba(10,34,64,0.16); transform: translateY(-5px); }
  20%  { border-color: var(--rule, rgba(10,10,20,0.10)); box-shadow: none; transform: translateY(0); }
  100% { border-color: var(--rule, rgba(10,10,20,0.10)); box-shadow: none; transform: translateY(0); }
}
@keyframes hiwNumPulse {
  0%   { background: var(--blue, #0A2240); transform: scale(1); }
  4%   { background: var(--yellow, #0099CC); transform: scale(1.12); }
  15%  { background: var(--yellow, #0099CC); transform: scale(1.12); }
  20%  { background: var(--blue, #0A2240); transform: scale(1); }
  100% { background: var(--blue, #0A2240); transform: scale(1); }
}
.hiw-steps .hiw-step { animation: hiwPulse 13s ease-in-out infinite; }
.hiw-steps .hiw-step .hiw-step-num { animation: hiwNumPulse 13s ease-in-out infinite; }
.hiw-steps .hiw-step:nth-child(1), .hiw-steps .hiw-step:nth-child(1) .hiw-step-num { animation-delay: 0s; }
.hiw-steps .hiw-step:nth-child(2), .hiw-steps .hiw-step:nth-child(2) .hiw-step-num { animation-delay: 2.6s; }
.hiw-steps .hiw-step:nth-child(3), .hiw-steps .hiw-step:nth-child(3) .hiw-step-num { animation-delay: 5.2s; }
.hiw-steps .hiw-step:nth-child(4), .hiw-steps .hiw-step:nth-child(4) .hiw-step-num { animation-delay: 7.8s; }
.hiw-steps .hiw-step:nth-child(5), .hiw-steps .hiw-step:nth-child(5) .hiw-step-num { animation-delay: 10.4s; }
@media (prefers-reduced-motion: reduce) {
  .hiw-steps .hiw-step, .hiw-steps .hiw-step .hiw-step-num { animation: none; }
}
.hiw-step-num { width: 42px; height: 42px; border-radius: 999px; background: var(--blue, #0A2240); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.05rem; margin-bottom: 18px; }
.hiw-step h3 { font-size: 1.0625rem; font-weight: 700; color: var(--ink, #0A0A14); margin-bottom: 10px; }
.hiw-step p { font-size: 0.9rem; color: var(--ink-mid, #4A4A5E); line-height: 1.65; }
.hiw-points { display: grid; grid-template-columns: repeat(auto-fit, minmax(262px, 1fr)); gap: 20px; max-width: 940px; margin: 0 auto; }
.hiw-point { display: flex; gap: 14px; align-items: flex-start; background: #fff; border: 1px solid var(--rule, rgba(10,10,20,0.10)); border-radius: 16px; padding: 22px 24px; }
.hiw-point i { color: var(--blue, #0A2240); font-size: 1.1rem; margin-top: 2px; }
.hiw-point strong { display: block; font-size: 0.95rem; color: var(--ink, #0A0A14); margin-bottom: 5px; }
.hiw-point span { font-size: 0.875rem; color: var(--ink-mid, #4A4A5E); line-height: 1.6; }
@media (max-width: 640px) { .hiw-hero { padding: 104px 0 48px; } .hiw-section { padding: 54px 0; } }

/* ── Career-guide page (how-to-become) — landing-aligned components ──────────── */
.page-header { padding: 150px 0 64px; background: #fff; border-bottom: 1px solid var(--rule,rgba(10,10,20,0.10)); text-align: center; }
.page-header .section-wrap { max-width: 820px; }
.page-header-eyebrow { font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue,#0A2240); display: block; margin-bottom: 16px; }
.page-header-h { font-size: clamp(30px,4vw,50px); font-weight: 800; color: var(--ink,#0A0A14); line-height: 1.08; letter-spacing: -0.03em; margin-bottom: 18px; }
.page-header-sub { font-size: 1.0625rem; color: var(--ink-mid,#4A4A5E); max-width: 600px; line-height: 1.7; margin: 0 auto 20px; }
.page-header-meta { font-size: 0.8rem; color: var(--ink-faint,#8A8A9E); margin-bottom: 26px; }
.page-header-meta time { color: var(--ink-mid,#4A4A5E); font-weight: 600; }
.page-header-cta { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; background: var(--blue,#0A2240); color: #fff; font-size: 0.9rem; font-weight: 700; text-decoration: none; border-radius: 999px; transition: background .2s, transform .2s; }
.page-header-cta:hover { background: var(--blue-dark,#071829); transform: translateY(-2px); }
.section-eyebrow { font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue,#0A2240); display: block; margin-bottom: 18px; }
.section-eyebrow.faint { color: var(--ink-faint,#8A8A9E); }
.section-h { font-size: clamp(23px,2.6vw,36px); font-weight: 800; letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 14px; color: var(--ink,#0A0A14); }
.section-sub { font-size: 0.9688rem; color: var(--ink-mid,#4A4A5E); line-height: 1.75; max-width: 640px; margin-bottom: 30px; }
.section-header-center { text-align: center; margin-bottom: 48px; }
.section-header-center .section-sub { margin: 0 auto; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.two-col-text .section-sub { margin-bottom: 26px; }
.text-cta { display: inline-flex; align-items: center; gap: 8px; padding: 12px 26px; background: var(--blue,#0A2240); color: #fff; font-size: 0.875rem; font-weight: 700; text-decoration: none; border-radius: 999px; transition: background .2s, transform .2s; }
.text-cta:hover { background: var(--blue-dark,#071829); transform: translateY(-2px); }
.cards-2x2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.info-card { padding: 24px 26px; background: #fff; border: 1px solid var(--rule,rgba(10,10,20,0.10)); border-radius: 16px; }
.info-card strong { display: flex; align-items: center; gap: 9px; font-size: 0.9rem; font-weight: 700; margin-bottom: 9px; color: var(--ink,#0A0A14); }
.info-card strong::before { content: ''; display: inline-block; width: 9px; height: 9px; border-radius: 50%; background: var(--blue,#0A2240); flex-shrink: 0; }
.info-card p { font-size: 0.85rem; color: var(--ink-mid,#4A4A5E); line-height: 1.65; }
.cards-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.stat-card { padding: 30px 24px; background: #fff; border: 1px solid var(--rule,rgba(10,10,20,0.10)); border-radius: 16px; text-align: center; }
.stat-val { font-size: 2.1rem; font-weight: 900; color: var(--blue,#0A2240); line-height: 1; letter-spacing: -0.02em; }
.stat-lbl { font-size: 0.82rem; color: var(--ink-mid,#4A4A5E); margin-top: 8px; line-height: 1.4; }
.paths-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 36px; }
.path-col { background: #fff; padding: 32px 30px; border: 1px solid var(--rule,rgba(10,10,20,0.10)); border-radius: 18px; position: relative; overflow: hidden; }
.path-col::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; }
.path-col.path-a::before { background: var(--ink,#0A0A14); }
.path-col.path-b::before { background: var(--blue,#0A2240); }
.path-label { font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 14px; }
.path-col.path-a .path-label { color: var(--ink-faint,#8A8A9E); }
.path-col.path-b .path-label { color: var(--blue,#0A2240); }
.path-h { font-size: 1.05rem; font-weight: 700; color: var(--ink,#0A0A14); margin-bottom: 12px; letter-spacing: -0.01em; }
.path-intro { font-size: 0.875rem; color: var(--ink-mid,#4A4A5E); line-height: 1.65; margin-bottom: 22px; padding-bottom: 22px; border-bottom: 1px solid var(--rule,rgba(10,10,20,0.10)); }
.path-steps { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.path-step { display: grid; grid-template-columns: 28px 1fr; gap: 12px; align-items: start; }
.path-step-num { width: 28px; height: 28px; border-radius: 999px; display: flex; align-items: center; justify-content: center; font-size: 0.72rem; font-weight: 700; flex-shrink: 0; margin-top: 1px; color: #fff; }
.path-col.path-a .path-step-num { background: var(--ink,#0A0A14); }
.path-col.path-b .path-step-num { background: var(--blue,#0A2240); }
.path-step-body strong { display: block; font-size: 0.85rem; font-weight: 700; color: var(--ink,#0A0A14); margin-bottom: 3px; }
.path-step-body p { font-size: 0.8rem; color: var(--ink-mid,#4A4A5E); line-height: 1.6; }
.callout-bar { background: var(--off-white,#F5F7FA); border: 1px solid var(--rule,rgba(10,10,20,0.10)); border-radius: 18px; padding: 28px 32px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.callout-bar-body strong { display: block; font-size: 0.95rem; font-weight: 700; color: var(--ink,#0A0A14); margin-bottom: 6px; }
.callout-bar-body p { font-size: 0.875rem; color: var(--ink-mid,#4A4A5E); line-height: 1.6; }
.btn-callout { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; background: var(--blue,#0A2240); color: #fff; font-size: 0.85rem; font-weight: 700; text-decoration: none; white-space: nowrap; flex-shrink: 0; border-radius: 999px; transition: background .2s, transform .2s; }
.btn-callout:hover { background: var(--blue-dark,#071829); transform: translateY(-2px); }
.airline-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.airline-card { padding: 22px 24px; background: #fff; border: 1px solid var(--rule,rgba(10,10,20,0.10)); border-radius: 14px; }
.airline-card .name { font-size: 0.9rem; font-weight: 700; color: var(--ink,#0A0A14); margin-bottom: 6px; }
.airline-card .detail { font-size: 0.8rem; color: var(--ink-mid,#4A4A5E); line-height: 1.6; }
.salary-table { width: 100%; border-collapse: separate; border-spacing: 0; border: 1px solid var(--rule,rgba(10,10,20,0.10)); border-radius: 16px; overflow: hidden; font-size: 0.875rem; }
.salary-table th { background: var(--blue,#0A2240); color: #fff; padding: 13px 18px; text-align: left; font-weight: 600; font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; }
.salary-table td { padding: 14px 18px; border-bottom: 1px solid var(--rule,rgba(10,10,20,0.10)); color: var(--ink-mid,#4A4A5E); vertical-align: top; }
.salary-table td:first-child { font-weight: 600; color: var(--ink,#0A0A14); }
.salary-table tr:last-child td { border-bottom: none; }
.salary-table tr:nth-child(even) td { background: var(--off-white,#F5F7FA); }
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.pros-col, .cons-col { padding: 30px; background: #fff; border: 1px solid var(--rule,rgba(10,10,20,0.10)); border-radius: 18px; }
.pros-col::before { content: ''; display: block; width: 40px; height: 4px; border-radius: 999px; background: #10b981; margin-bottom: 18px; }
.cons-col::before { content: ''; display: block; width: 40px; height: 4px; border-radius: 999px; background: var(--ink-faint,#8A8A9E); margin-bottom: 18px; }
.pc-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; }
.pros-col .pc-label { color: #10b981; }
.cons-col .pc-label { color: var(--ink-faint,#8A8A9E); }
.pc-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.pc-item { display: flex; gap: 10px; align-items: flex-start; font-size: 0.875rem; color: var(--ink-mid,#4A4A5E); line-height: 1.6; }
.pc-item::before { content: ''; width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; margin-top: 7px; }
.pros-col .pc-item::before { background: #10b981; }
.cons-col .pc-item::before { background: var(--ink-faint,#8A8A9E); }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { padding: 22px 26px; background: #fff; border: 1px solid var(--rule,rgba(10,10,20,0.10)); border-radius: 14px; }
.faq-q { font-weight: 700; font-size: 0.95rem; color: var(--ink,#0A0A14); margin-bottom: 8px; }
.faq-a { font-size: 0.875rem; color: var(--ink-mid,#4A4A5E); line-height: 1.7; }
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 36px; }
  .paths-grid, .pros-cons, .cards-3 { grid-template-columns: 1fr; }
  .airline-grid { grid-template-columns: 1fr 1fr; }
  .callout-bar { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 560px) {
  .cards-2x2, .airline-grid { grid-template-columns: 1fr; }
}

/* ── Attestation page: rounded, landing-aligned overrides ───────────────────── */
.attest-why-cards { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; border: none; }
.attest-why-card { background: #fff; border: 1px solid var(--rule,rgba(10,10,20,0.10)); border-radius: 16px; padding: 24px 26px; border-right: 1px solid var(--rule,rgba(10,10,20,0.10)); border-bottom: 1px solid var(--rule,rgba(10,10,20,0.10)); }
.attest-why-card strong { display: flex; align-items: center; gap: 9px; font-size: 0.9rem; font-weight: 700; margin-bottom: 9px; color: var(--ink,#0A0A14); }
.attest-why-card strong::before { content: ''; display: inline-block; width: 9px; height: 9px; border-radius: 50%; background: var(--blue,#0A2240); flex-shrink: 0; }
.attest-why-card p { font-size: 0.85rem; color: var(--ink-mid,#4A4A5E); line-height: 1.65; }
.path-col.path-airline::before { content:''; position:absolute; top:0; left:0; right:0; height:4px; background: var(--ink,#0A0A14); }
.path-col.path-school::before  { content:''; position:absolute; top:0; left:0; right:0; height:4px; background: var(--blue,#0A2240); }
.path-col.path-airline .path-label { color: var(--ink-faint,#8A8A9E); }
.path-col.path-school  .path-label { color: var(--blue,#0A2240); }
.path-col.path-airline .path-step-num { background: var(--ink,#0A0A14); color:#fff; border-radius:999px; }
.path-col.path-school  .path-step-num { background: var(--blue,#0A2240); color:#fff; border-radius:999px; }
.schools-callout { background: var(--off-white,#F5F7FA); border: 1px solid var(--rule,rgba(10,10,20,0.10)); border-top: 1px solid var(--rule,rgba(10,10,20,0.10)); border-radius: 18px; padding: 28px 32px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.schools-callout-body { flex: 1; min-width: 0; }
.schools-callout-body strong { display:block; font-size:0.95rem; font-weight:700; color:var(--ink,#0A0A14); margin-bottom:6px; }
.schools-callout-body p { font-size:0.875rem; color:var(--ink-mid,#4A4A5E); line-height:1.6; margin:0; }
@media (max-width: 640px) {
  .schools-callout { flex-direction: column; align-items: flex-start; gap: 18px; padding: 22px; }
  .schools-callout .btn-callout { width: 100%; justify-content: center; }
}
.attest-cta a { border-radius: 999px; }
@media (max-width: 560px){ .attest-why-cards { grid-template-columns: 1fr; } }
/* attest-why section: light, not dark, to match the landing's section rhythm */
.attest-why { background: var(--off-white,#F5F7FA); color: var(--ink,#0A0A14); }
.attest-why-label { color: var(--blue,#0A2240); }
.attest-why-h { color: var(--ink,#0A0A14); }
.attest-why-body { color: var(--ink-mid,#4A4A5E); }
.attest-why-cta { color: var(--blue,#0A2240); }
