/* ============================================================
   GEAFIRST — Main Stylesheet
   ============================================================ */

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

:root {
  --black:       #050508;
  --white:       #f5f4f0;
  --accent:      #e8ff47;
  --accent2:     #ff4d4d;
  --grey:        #1a1a22;
  --grey2:       #2e2e3a;
  --text-muted:  #7a7a8c;
  --font:        'Bricolage Grotesque', sans-serif;
  --max-width:   1200px;
  --radius:      2px;
}

html { scroll-behavior: smooth; background: var(--black); }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Noise overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  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)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.4;
  will-change: transform;
  transform: translateZ(0);
}

/* Grid background */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(232,255,71,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,255,71,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
  transform: translateZ(0);
}


/* ============================================================
   NAV
   ============================================================ */
.site-nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 500;
  width: calc(100% - 48px);
  max-width: 1200px;
  padding: 18px 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;

  /* Glassmorphism */
  background: rgba(5, 5, 8, 0.45);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);

  /* Floating look */
  border: 1px solid rgba(232, 255, 71, 0.08);
  border-radius: 14px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03),
    0 8px 32px 0 rgba(0, 0, 0, 0.5),
    0 2px 8px 0 rgba(232, 255, 71, 0.04);

  transition: background 0.3s ease, box-shadow 0.3s ease, top 0.3s ease;
  will-change: transform;
  transform: translateX(-50%) translateZ(0);
}

/* Iets solider als je naar beneden scrollt */
.site-nav.scrolled {
  background: rgba(5, 5, 8, 0.72);
  border-color: rgba(232, 255, 71, 0.12);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 12px 40px 0 rgba(0, 0, 0, 0.7),
    0 2px 12px 0 rgba(232, 255, 71, 0.06);
}

.logo {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
  text-decoration: none;
}
.logo span { color: var(--accent); }

.nav-links { display: flex; align-items: center; }

.nav-menu {
  list-style: none;
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-menu a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(200,200,210,0.8);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.nav-menu a:hover { color: var(--white); }

.nav-menu .nav-cta {
  background: var(--accent);
  color: var(--black);
  padding: 8px 16px;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s;
}
.nav-menu .nav-cta:hover { background: #d4eb30; color: var(--black); }

/* Dropdown */
.menu-item-has-children { position: relative; }

.nav-dropdown-toggle {
  font-size: 13px;
  font-weight: 500;
  color: rgba(200,200,210,0.8);
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle[aria-expanded="true"] { color: var(--white); }

/* Subtiel accent-streepje onder "Learn" als dropdown open is */
.nav-dropdown-toggle[aria-expanded="true"]::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--accent);
  border-radius: 1px;
}

.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  /* padding-top overbrugt de visuele gap zonder hover te breken */
  padding: 16px 0 0;
  list-style: none;
  z-index: 600;
}

.nav-dropdown::before {
  content: '';
  position: absolute;
  top: 16px; left: 0; right: 0; bottom: 0;
  background: rgba(10, 10, 14, 0.92);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid rgba(232,255,71,0.1);
  border-radius: 10px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.6);
  z-index: -1;
}

/* Desktop: open via CSS hover — geen JS gap-probleem */
@media (min-width: 769px) {
  .menu-item-has-children:hover .nav-dropdown { display: block; animation: fadeDown 0.18s ease; }
  .menu-item-has-children:hover .nav-dropdown-toggle { color: var(--white); }
  .menu-item-has-children:hover .nav-dropdown-toggle::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0; right: 0;
    height: 1px;
    background: var(--accent);
    border-radius: 1px;
  }
}

/* Mobiel: open via JS .open class */
@media (max-width: 768px) {
  .nav-dropdown.open { display: block; }
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateX(-50%) translateY(-6px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.nav-dropdown li {
  padding: 0 8px;
}
.nav-dropdown li:first-child { padding-top: 8px; }
.nav-dropdown li:last-child  { padding-bottom: 8px; }

.nav-dropdown li a {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 14px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.15s;
}
.nav-dropdown li a:hover { background: rgba(255,255,255,0.05); }

.dropdown-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.01em;
}
.dropdown-desc {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 300;
}

@media (max-width: 768px) {
  .nav-dropdown {
    position: static;
    transform: none;
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: none;
    border-radius: 6px;
    box-shadow: none;
    padding: 4px 0;
    margin-top: 8px;
  }
  .nav-dropdown.open { animation: none; }
  .nav-dropdown-toggle { font-size: 15px; color: var(--white); }
}

/* Mobile toggle */
.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* ── Language switcher ───────────────────────────────────────── */
.lang-switcher {
  position: relative;
  margin-left: 8px;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(232,255,71,0.06);
  border: 1px solid rgba(232,255,71,0.14);
  border-radius: 8px;
  padding: 5px 10px 5px 8px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  color: rgba(200,200,210,0.8);
  font-family: inherit;
}
.lang-toggle:hover,
.lang-toggle[aria-expanded="true"] {
  background: rgba(232,255,71,0.10);
  border-color: rgba(232,255,71,0.28);
  color: var(--white);
}

.lang-globe {
  flex-shrink: 0;
  opacity: 0.7;
}
.lang-toggle:hover .lang-globe,
.lang-toggle[aria-expanded="true"] .lang-globe {
  opacity: 1;
}

.lang-current {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1;
}

/* Dropdown positie: rechts uitlijnen */
.lang-dropdown {
  right: 0;
  left: auto !important;
  transform: none !important;
  min-width: 180px;
}

.lang-item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 8px 14px;
  border-radius: 6px;
  transition: background 0.15s;
}
.lang-item a:hover {
  background: rgba(255,255,255,0.05);
}

.lang-name {
  font-size: 12px;
  font-weight: 400;
  color: rgba(200,200,210,0.8);
  transition: color 0.15s;
}
.lang-code {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(200,200,210,0.35);
  transition: color 0.15s;
}

.lang-item--active .lang-name { color: var(--accent); }
.lang-item--active .lang-code { color: rgba(232,255,71,0.5); }
.lang-item a:hover .lang-name { color: var(--white); }
.lang-item a:hover .lang-code { color: rgba(200,200,210,0.6); }

@media (max-width: 768px) {
  .lang-switcher { display: none !important; }
}

/* ── Mobiele taalknop (fixed, rechtsonder) ───────────────────── */
.mobile-lang-btn,
.mobile-lang-popup {
  display: none;
}
@media (max-width: 768px) {
  .mobile-lang-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    position: fixed;
    bottom: 20px;
    right: 16px;
    z-index: 999;
    background: rgba(15,15,20,0.92);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 20px;
    padding: 7px 12px;
    color: rgba(200,200,210,0.85);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.09em;
    font-family: inherit;
    cursor: pointer;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.5);
  }
  .mobile-lang-btn:hover {
    border-color: rgba(232,255,71,0.3);
    color: var(--white);
  }
  .mobile-lang-popup {
    position: fixed;
    bottom: 60px;
    right: 16px;
    z-index: 998;
    background: rgba(15,15,20,0.96);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 8px;
    min-width: 160px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: none;
  }
  .mobile-lang-popup.open { display: block; }
  .mobile-lang-popup .lang-item a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 12px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.15s;
  }
  .mobile-lang-popup .lang-item a:hover {
    background: rgba(255,255,255,0.06);
  }
  .mobile-lang-popup .lang-item--active a {
    background: rgba(232,255,71,0.08);
  }
  .mobile-lang-popup .lang-name {
    font-size: 13px;
    color: rgba(200,200,210,0.8);
  }
  .mobile-lang-popup .lang-code {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: rgba(200,200,210,0.5);
  }
  .mobile-lang-popup .lang-item--active .lang-name { color: var(--accent); }
  .mobile-lang-popup .lang-item--active .lang-code { color: rgba(232,255,71,0.5); }
}

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
}
.container--narrow {
  max-width: 780px;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1 { font-size: clamp(52px, 8vw, 110px); font-weight: 800; line-height: 0.92; letter-spacing: -0.04em; }
h2 { font-size: clamp(32px, 4vw, 52px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.05; margin-bottom: 24px; }
h3 { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; }
h4 { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 16px; }

.body-text {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-muted);
}
.body-text + .body-text { margin-top: 16px; }

a { color: var(--white); }

.text-link {
  display: inline-block;
  margin-top: 24px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: opacity 0.2s;
}
.text-link:hover { opacity: 0.7; }

.section-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--grey2);
  max-width: 80px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--black);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: none;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-primary:hover { background: #d4eb30; color: var(--black); }

.btn-outline {
  display: inline-block;
  margin-top: 40px;
  border: 1px solid var(--grey2);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

.news-footer {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.news-footer .btn-outline { margin-top: 40px; }

.text-link {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
  margin-top: 40px;
  display: inline-block;
}
.text-link:hover { color: var(--accent); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 160px 48px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  width: 100%;
}

/* ── 1. Accent glow achter de hero headline ── */
.hero::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 5%;
  width: 600px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(232, 255, 71, 0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  filter: blur(40px);
}

/* Hero text links, float-accent rechts als flex-item */
.hero-content {
  flex: 1;
  max-width: 580px;
  position: relative;
  z-index: 1;
}

.hero-label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}
.hero-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: rgba(255,255,255,0.3);
}

.hero h1 {
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.4s forwards;
}

.hero-sub {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(200,200,210,0.85);
  max-width: 520px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.6s forwards;
}

/* ── Contact Form 7 ── */

/* Wrapper animatie */
.waitlist-wrap {
  max-width: 480px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.8s forwards;
}

/* CF7 voegt een div.wpcf7 toe als buitenste wrapper */
.waitlist-wrap .wpcf7,
.cta-form-wrap .wpcf7 { width: 100%; }

/* Het form zelf als flex-rij */
.waitlist-wrap .wpcf7-form,
.cta-form-wrap .wpcf7-form {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 0;
}

/* CF7 wikkelt elk veld in een <p> — die moet flex-kind worden */
.waitlist-wrap .wpcf7-form > p,
.cta-form-wrap .wpcf7-form > p {
  display: contents;
  margin: 0;
}

/* CF7 wikkelt het input ook nog in een span.wpcf7-form-control-wrap */
.waitlist-wrap .wpcf7-form-control-wrap,
.cta-form-wrap .wpcf7-form-control-wrap {
  flex: 1;
  display: flex;
}

/* Het email-veld */
.waitlist-wrap input[type="email"],
.cta-form-wrap input[type="email"] {
  flex: 1;
  width: 100%;
  background: var(--grey);
  border: 1px solid var(--grey2);
  border-right: none;
  color: var(--white);
  font-family: var(--font);
  font-size: 13px;
  padding: 16px 20px;
  outline: none;
  border-radius: var(--radius) 0 0 var(--radius);
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.waitlist-wrap input[type="email"]::placeholder,
.cta-form-wrap input[type="email"]::placeholder { color: var(--text-muted); }
.waitlist-wrap input[type="email"]:focus,
.cta-form-wrap input[type="email"]:focus { border-color: var(--accent); }

/* De submit-knop */
.waitlist-wrap input[type="submit"],
.cta-form-wrap input[type="submit"] {
  flex-shrink: 0;
  background: var(--accent);
  color: var(--black);
  border: none;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 24px;
  cursor: pointer;
  border-radius: 0 var(--radius) var(--radius) 0;
  transition: background 0.2s;
  white-space: nowrap;
}
.waitlist-wrap input[type="submit"]:hover,
.cta-form-wrap input[type="submit"]:hover { background: #d4eb30; }

/* Validatie & response */
.wpcf7-not-valid-tip {
  display: block;
  font-size: 11px;
  color: var(--accent2);
  margin-top: 6px;
}
.wpcf7-response-output {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 12px;
  border: none !important;
  padding: 0 !important;
  background: none !important;
}

/* Na succesvol verzenden: verberg het formulier, toon netjes bedankje */
.wpcf7-form.sent > p {
  display: none !important;
}
.wpcf7-form.sent .wpcf7-response-output {
  font-size: 14px;
  color: var(--accent) !important;
  letter-spacing: 0.03em;
  padding: 16px 0 !important;
  margin-top: 0 !important;
}

/* CF7 spinner verbergen */
.wpcf7-spinner { display: none !important; }

.form-note {
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 12px;
  opacity: 0;
  animation: fadeUp 0.8s ease 1s forwards;
}

/* Floating accent */
.float-accent {
  flex-shrink: 0;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(232,255,71,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 1s ease 1.4s forwards;
}
.float-accent::before {
  content: '';
  position: absolute;
  width: 200px; height: 200px;
  border: 1px solid rgba(232,255,71,0.08);
  border-radius: 50%;
}
.float-accent::after {
  content: '';
  position: absolute;
  width: 120px; height: 120px;
  border: 1px solid rgba(232,255,71,0.12);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,255,71,0.06) 0%, transparent 70%);
}
.float-inner-text {
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--accent);
  text-align: center;
  text-transform: uppercase;
  line-height: 1.6;
  z-index: 1;
}

/* ── 5. Actieve nav-link indicator ── */
.nav-menu .current-menu-item > a,
.nav-menu .current_page_item > a,
.nav-menu .nav-item--active > a,
.nav-menu .nav-item--active > .nav-dropdown-toggle {
  color: var(--white);
  position: relative;
}
.nav-menu .current-menu-item > a::after,
.nav-menu .current_page_item > a::after,
.nav-menu .nav-item--active > a::after,
.nav-menu .nav-item--active > .nav-dropdown-toggle::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 1px;
  background: var(--accent);
  border-radius: 1px;
}

/* ── 2. Marquee ticker ── */
.marquee-outer {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  padding: 14px 0;
  background: rgba(232, 255, 71, 0.02);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
  will-change: transform;
  transform: translateZ(0);
}
.marquee-track:hover { animation-play-state: paused; }

.marquee-inner {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  padding-right: 0;
}

.marquee-inner span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0 20px;
  transition: color 0.2s;
}
.marquee-inner span:hover { color: var(--white); }

.marquee-inner .dot {
  color: var(--accent);
  font-size: 14px;
  padding: 0;
  opacity: 0.5;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   STATS
   ============================================================ */
/* Borders full-width, content gecentreerd */
.stats-outer {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  opacity: 0;
  animation: fadeUp 0.8s ease 1.2s forwards;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px 48px;
}

.stat {
  padding: 0 40px;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.stat:first-child { padding-left: 0; }
.stat:last-child { border-right: none; padding-right: 0; }

.stat-number {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 12px;
  color: rgba(180,180,195,0.8);
  letter-spacing: 0.03em;
  line-height: 1.6;
  margin-top: 4px;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 100px 48px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* Comparison table */
.comparison { margin-top: 48px; }

.comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid var(--grey2);
  padding: 16px 0;
}
.comparison-row.header {
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding-bottom: 12px;
  margin-bottom: 4px;
}
.comparison-cell {
  font-size: 12px;
  color: var(--text-muted);
  padding-right: 16px;
}
.comparison-row.header .comparison-cell {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
}
.comparison-cell.highlight { color: var(--accent); }

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--grey2);
  border: 1px solid var(--grey2);
  margin-top: 48px;
}

.service-card {
  background: var(--black);
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: background 0.2s;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 2px; height: 0;
  background: var(--accent);
  transition: height 0.3s ease;
}
.service-card:hover { background: var(--grey); }
.service-card:hover::before { height: 100%; }

.service-num {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  margin-bottom: 20px;
}
.service-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.service-desc {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   NEWS PREVIEW (homepage)
   ============================================================ */
.news-preview { border-top: 1px solid rgba(255,255,255,0.06); }

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--grey2);
  border: 1px solid var(--grey2);
  margin-top: 48px;
}

.news-card {
  background: var(--black);
  padding: 28px;
  text-decoration: none;
  color: var(--white);
  display: block;
  transition: background 0.2s;
}
.news-card:hover { background: var(--grey); }

.news-card-img { margin-bottom: 20px; overflow: hidden; }
.news-card-img img { width: 100%; height: 180px; object-fit: cover; display: block; }

.news-card-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

.news-tag, .post-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(232,255,71,0.3);
  padding: 3px 8px;
  border-radius: var(--radius);
}

.news-date, .post-date {
  font-size: 11px;
  color: var(--text-muted);
}

.news-card-title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin-bottom: 10px;
}

.news-card-excerpt {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
}

/* Homepage news preview — slightly larger excerpt */
.news-preview .news-card-excerpt {
  font-size: 13px;
  color: rgba(245,244,240,0.55);
  line-height: 1.75;
  font-weight: 300;
  margin-top: 6px;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 100px 48px;
  text-align: center;
  overflow: hidden;
}
.cta-section::before {
  content: 'GEA';
  position: absolute;
  font-size: 180px;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.04);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  letter-spacing: -0.05em;
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
}

.cta-inner {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  z-index: 1;
}

.cta-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.cta-sub {
  font-size: 14px;
  color: rgba(200,200,210,0.85);
  margin-bottom: 40px;
  line-height: 1.8;
}

.cta-form-wrap {
  max-width: 420px;
  margin: 0 auto;
}

/* ============================================================
   MAIN CONTENT (inner pages)
   ============================================================ */
.main-content {
  position: relative;
  z-index: 1;
  padding: 80px 0 80px;
}

/* Post grid (archive / news) */
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--grey2);
  border: 1px solid var(--grey2);
  margin-top: 48px;
}

.post-card {
  background: var(--black);
  display: flex;
  flex-direction: column;
  transition: background 0.2s;
}
.post-card:hover { background: var(--grey); }

.post-card-img { overflow: hidden; display: block; }
.post-card-img img { width: 100%; height: 200px; object-fit: cover; display: block; transition: transform 0.4s ease; }
.post-card:hover .post-card-img img { transform: scale(1.03); }

.post-card-body { padding: 24px 28px 28px; flex: 1; }

.post-card-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

.post-card-title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin-bottom: 10px;
}
.post-card-title a { text-decoration: none; color: var(--white); transition: color 0.2s; }
.post-card-title a:hover { color: var(--accent); }

.post-card-excerpt {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
}

/* Archive header */
.archive-header { margin-bottom: 8px; }
.archive-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0;
}

/* Single post */
.post-header { margin-bottom: 48px; }
.post-header-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 20px;
}
.post-title {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 20px;
}
.post-intro {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(200,200,210,0.85);
  font-weight: 300;
}
.post-featured-img { margin-bottom: 48px; }
.post-featured-img img { width: 100%; border-radius: var(--radius); display: block; }

.post-content {
  font-size: 16px;
  line-height: 1.85;
  color: rgba(220,220,230,0.9);
  font-weight: 300;
}
.post-content h2 { font-size: 28px; margin: 48px 0 16px; }
.post-content h3 { font-size: 22px; margin: 36px 0 12px; }
.post-content p { margin-bottom: 20px; }
.post-content ul, .post-content ol { margin: 0 0 20px 24px; }
.post-content li { margin-bottom: 8px; }
.post-content a { color: var(--accent); text-decoration: underline; }
.post-content blockquote {
  border-left: 2px solid var(--accent);
  padding-left: 24px;
  margin: 32px 0;
  color: var(--text-muted);
  font-style: italic;
}

.post-sources {
  font-size: 11px;
  color: var(--text-muted);
  border-top: 1px solid var(--grey2);
  padding-top: 20px;
  margin-top: 40px;
}
.post-sources a { color: var(--text-muted); text-decoration: underline; transition: color 0.2s; }
.post-sources a:hover { color: var(--accent); }
.post-sources strong { color: var(--white); }

.post-nav {
  display: flex;
  justify-content: space-between;
  padding-top: 48px;
  border-top: 1px solid var(--grey2);
  margin-top: 64px;
  gap: 24px;
}
.post-nav a { font-size: 13px; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.post-nav a:hover { color: var(--white); }

/* Pagination */
.pagination { margin-top: 48px; display: flex; gap: 8px; }
.pagination .page-numbers {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid var(--grey2);
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  border-radius: var(--radius);
  transition: border-color 0.2s, color 0.2s;
}
.pagination .page-numbers.current,
.pagination .page-numbers:hover { border-color: var(--accent); color: var(--accent); }

/* ============================================================
   GEA VS SEO VS GEO — PAGE STYLES
   ============================================================ */

/* 2×2 matrix */
.matrix {
  display: grid;
  grid-template-columns: 140px 1fr 1fr;
  gap: 1px;
  background: var(--grey2);
  border: 1px solid var(--grey2);
  margin-top: 48px;
}
.matrix-corner { background: var(--black); }
.matrix-col-label {
  background: var(--black);
  padding: 14px 20px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
}
.matrix-row-label {
  background: var(--black);
  padding: 28px 16px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex;
  align-items: center;
}
.matrix-cell {
  background: var(--black);
  padding: 24px 20px;
  transition: background 0.2s;
}
.matrix-cell:hover { background: var(--grey); }
.matrix-cell--accent { background: rgba(232,255,71,0.04); }
.matrix-cell--accent:hover { background: rgba(232,255,71,0.07); }
.matrix-acronym {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
  color: var(--white);
}
.matrix-acronym.accent { color: var(--accent); }
.matrix-full {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.matrix-desc {
  font-size: 12px;
  color: rgba(160,160,175,0.8);
  line-height: 1.6;
  font-weight: 300;
}

/* Stat cards */
.stat-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--grey2);
  border: 1px solid var(--grey2);
  margin-top: 40px;
}
.stat-card {
  background: var(--black);
  padding: 32px 28px;
}
.stat-card--accent { background: rgba(232,255,71,0.03); }
.stat-card-number {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
}
.stat-card-label {
  font-size: 13px;
  color: rgba(180,180,195,0.9);
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 12px;
}
.stat-card-source {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* Discipline list */
.discipline-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 48px;
  border: 1px solid var(--grey2);
}
.discipline-item {
  padding: 40px;
  border-bottom: 1px solid var(--grey2);
}
.discipline-item:last-child { border-bottom: none; }
.discipline-item--accent { background: rgba(232,255,71,0.02); }

.discipline-header { margin-bottom: 16px; }
.discipline-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--grey2);
  padding: 4px 10px;
  border-radius: var(--radius);
  margin-bottom: 12px;
}
.discipline-tag.accent-tag {
  color: var(--accent);
  border-color: rgba(232,255,71,0.25);
}
.discipline-item h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.discipline-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--grey2);
  margin-top: 24px;
}
.discipline-fact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px;
  border-right: 1px solid var(--grey2);
  border-bottom: 1px solid var(--grey2);
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  font-weight: 300;
}
.discipline-fact:nth-child(2n) { border-right: none; }
.discipline-fact:nth-last-child(-n+2) { border-bottom: none; }
.fact-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2px;
}

/* Comparison table */
.compare-table {
  border: 1px solid var(--grey2);
  margin-top: 40px;
  overflow-x: auto;
}
.compare-row {
  display: grid;
  grid-template-columns: 140px repeat(4, 1fr);
  border-bottom: 1px solid var(--grey2);
}
.compare-row:last-child { border-bottom: none; }
.compare-row--header { background: rgba(255,255,255,0.02); }

.compare-cell {
  padding: 16px 20px;
  font-size: 12px;
  color: var(--text-muted);
  border-right: 1px solid var(--grey2);
  line-height: 1.5;
}
.compare-cell:last-child { border-right: none; }
.compare-row--header .compare-cell {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}
.compare-cell--label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.compare-cell--accent {
  background: rgba(232,255,71,0.03);
  color: var(--accent);
}
.compare-row--header .compare-cell--accent { color: var(--accent); }

/* Strategy list */
.strategy-list {
  display: flex;
  flex-direction: column;
  margin-top: 40px;
  border: 1px solid var(--grey2);
}
.strategy-item {
  display: flex;
  gap: 28px;
  padding: 32px;
  border-bottom: 1px solid var(--grey2);
  transition: background 0.2s;
}
.strategy-item:last-child { border-bottom: none; }
.strategy-item:hover { background: rgba(255,255,255,0.02); }
.strategy-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--accent);
  flex-shrink: 0;
  width: 28px;
  padding-top: 4px;
}
.strategy-body h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.strategy-body p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.75;
  font-weight: 300;
}

/* Responsive */
@media (max-width: 768px) {
  .matrix { grid-template-columns: 90px 1fr 1fr; }
  .matrix-cell { padding: 16px 12px; }
  .matrix-acronym { font-size: 16px; }
  .stat-cards { grid-template-columns: 1fr; }
  .discipline-item { padding: 28px 20px; }
  .discipline-facts { grid-template-columns: 1fr; }
  .discipline-fact:nth-child(2n) { border-right: 1px solid var(--grey2); }
  .discipline-fact:nth-last-child(-n+2) { border-bottom: 1px solid var(--grey2); }
  .discipline-fact:last-child { border-bottom: none; }
  .compare-row { grid-template-columns: 100px repeat(4, minmax(100px, 1fr)); }
  .strategy-item { gap: 16px; padding: 24px 20px; }
}

/* ============================================================
   NEWS ARCHIVE & SINGLE
   ============================================================ */

.news-container { padding-top: 64px; padding-bottom: 80px; }

/* Featured artikel */
.news-featured {
  margin-bottom: 64px;
  border: 1px solid var(--grey2);
  transition: border-color 0.2s;
}
.news-featured:hover { border-color: rgba(232,255,71,0.2); }

.news-featured-inner {
  display: block;
  padding: 48px;
  text-decoration: none;
  color: var(--white);
}

.news-featured-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 20px;
}

.news-featured-title {
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
  transition: color 0.2s;
}
.news-featured:hover .news-featured-title { color: var(--accent); }

.news-featured-excerpt {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(180,180,195,0.85);
  font-weight: 300;
  max-width: 680px;
  margin-bottom: 28px;
}

.news-read-more {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.03em;
}

/* Grid header */
.news-grid-header {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

/* News grid */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--grey2);
  border: 1px solid var(--grey2);
  margin-bottom: 48px;
}

.news-card {
  background: var(--black);
  transition: background 0.2s;
}
.news-card:hover { background: var(--grey); }

.news-card-link {
  display: flex;
  flex-direction: column;
  padding: 28px 28px 24px;
  text-decoration: none;
  color: var(--white);
  height: 100%;
}

.news-card-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.news-card-title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin-bottom: 10px;
  flex: 1;
  transition: color 0.2s;
}
.news-card:hover .news-card-title { color: var(--accent); }

.news-card-excerpt {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 20px;
}

.news-card-arrow {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s, transform 0.2s;
  display: inline-block;
}
.news-card:hover .news-card-arrow {
  color: var(--accent);
  transform: translateX(4px);
}

/* Read time */
.read-time {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* Single artikel */
.article-hero {
  position: relative;
  z-index: 1;
  padding: 90px 0 64px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 32px;
  transition: color 0.2s;
}
.back-link:hover { color: var(--accent); }

.article-body {
  position: relative;
  z-index: 1;
  padding: 64px 0 80px;
}

/* Gerelateerde artikelen */
.related-articles {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 64px 0 80px;
}

/* Responsive news */
@media (max-width: 1024px) {
  .news-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .news-featured-inner { padding: 28px 20px; }
  .news-grid { grid-template-columns: 1fr; }
  .news-card-link { padding: 24px 20px; }
}

/* ============================================================
   WHAT IS GEA — PAGE STYLES
   ============================================================ */

/* Page hero */
.page-hero {
  position: relative;
  z-index: 1;
  padding: 90px 0 64px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.page-hero-inner { max-width: 720px; }
.page-hero h1 {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 16px 0 24px;
}
.page-hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(200,200,210,0.85);
  font-weight: 300;
  max-width: 580px;
  margin-bottom: 24px;
}
.page-hero-meta {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  display: flex;
  gap: 8px;
  align-items: center;
}
.dot-sep { color: var(--grey2); }

/* GEA sections */
.gea-section {
  position: relative;
  z-index: 1;
  padding: 80px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.gea-section--alt { background: rgba(255,255,255,0.015); }

/* Definition block */
.definition-block {
  border-left: 2px solid var(--accent);
  padding: 20px 28px;
  margin: 32px 0;
  background: rgba(232,255,71,0.03);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.definition-block p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--white);
  font-weight: 300;
}
.definition-block strong { font-weight: 700; color: var(--accent); }

/* SEO/GEA relation grid */
.relation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--grey2);
  border: 1px solid var(--grey2);
  margin-top: 48px;
}
.relation-card {
  background: var(--black);
  padding: 28px 32px;
}
.relation-label {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.relation-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 13px;
  color: var(--text-muted);
}
.relation-row:last-child { border-bottom: none; }
.relation-row .arrow { color: var(--grey2); }
.relation-row .highlight { color: var(--white); }
.relation-row.accent { color: var(--accent); }
.relation-row.accent .arrow { color: rgba(232,255,71,0.3); }
.relation-row.accent .highlight { color: var(--accent); font-weight: 600; }

/* Steps */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 48px;
  border: 1px solid var(--grey2);
}
.step {
  display: flex;
  gap: 32px;
  padding: 32px;
  border-bottom: 1px solid var(--grey2);
  transition: background 0.2s;
}
.step:last-child { border-bottom: none; }
.step:hover { background: rgba(255,255,255,0.02); }
.step-num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--accent);
  flex-shrink: 0;
  width: 28px;
  padding-top: 4px;
}
.step-body h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.step-body p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
}

/* Platform grid */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--grey2);
  border: 1px solid var(--grey2);
}
.platform-card {
  background: var(--black);
  padding: 36px;
  position: relative;
}
.platform-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
}
.platform-card--live::before    { background: var(--accent); }
.platform-card--limited::before { background: rgba(232,255,71,0.3); }
.platform-card--inactive::before { background: var(--grey2); }

.platform-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.status-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.status-dot.live    { background: var(--accent); box-shadow: 0 0 6px var(--accent); }
.status-dot.limited { background: rgba(232,255,71,0.5); }
.status-dot.inactive { background: var(--grey2); }

.platform-card h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.platform-desc {
  font-size: 13px;
  color: rgba(180,180,195,0.9);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 20px;
}
.platform-facts {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.platform-facts li {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
  padding-left: 16px;
  position: relative;
}
.platform-facts li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--accent);
}
.platform-card--inactive .platform-facts li::before { color: var(--grey2); }
.platform-note {
  font-size: 10px;
  color: var(--grey2);
  letter-spacing: 0.04em;
  border-top: 1px solid var(--grey2);
  padding-top: 14px;
}

/* Reality list */
.reality-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 40px;
  border: 1px solid var(--grey2);
}
.reality-item {
  display: flex;
  gap: 20px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--grey2);
  font-size: 13px;
  line-height: 1.7;
  font-weight: 300;
}
.reality-item:last-child { border-bottom: none; }
.reality-item--positive { background: rgba(232,255,71,0.02); }
.reality-icon {
  flex-shrink: 0;
  width: 20px;
  font-size: 14px;
  font-weight: 700;
  padding-top: 1px;
}
.reality-item--caution .reality-icon { color: var(--text-muted); }
.reality-item--positive .reality-icon { color: var(--accent); }
.reality-item strong { color: var(--white); font-weight: 600; }

/* FAQ accordion */
.faq-list {
  margin-top: 48px;
  border: 1px solid var(--grey2);
}
.faq-item { border-bottom: 1px solid var(--grey2); }
.faq-item:last-child { border-bottom: none; }

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 24px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  letter-spacing: -0.01em;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--accent); }
.faq-q::after {
  content: '+';
  font-size: 20px;
  font-weight: 300;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform 0.3s ease, color 0.2s;
}
.faq-q[aria-expanded="true"] { color: var(--accent); }
.faq-q[aria-expanded="true"]::after {
  transform: rotate(45deg);
  color: var(--accent);
}

.faq-a {
  display: none;
  padding: 0 24px 22px;
}
.faq-a.open { display: block; }
.faq-a p {
  font-size: 13px;
  line-height: 1.8;
  color: var(--text-muted);
  font-weight: 300;
}

/* Responsive — what is gea page */
@media (max-width: 768px) {
  .main-content { padding-top: 70px; }
  .page-hero { padding: 32px 0 36px; }
  .relation-grid { grid-template-columns: 1fr; }
  .platform-grid { grid-template-columns: 1fr; }
  .step { gap: 16px; padding: 24px 20px; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 64px 48px 40px;
}

.footer-inner { max-width: var(--max-width); margin: 0 auto; }

.footer-top {
  display: flex;
  align-items: baseline;
  gap: 32px;
  margin-bottom: 48px;
}

.footer-logo {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
  text-decoration: none;
}
.footer-logo span { color: var(--accent); }

.footer-tagline {
  font-size: 12px;
  color: var(--text-muted);
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 32px;
  justify-items: center;
}

.footer-col {
  width: 100%;
  max-width: 200px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }

.footer-bottom { display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 11px; color: var(--text-muted); }
.footer-copy.muted { color: var(--grey2); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

.blink { animation: pulse 2s ease infinite; }

/* ============================================================
   GUIDES
   ============================================================ */

/* Level badge */
.guide-level {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 2px;
  width: fit-content;
}

.guide-level--beginner {
  background: rgba(232,255,71,0.1);
  color: var(--accent);
  border: 1px solid rgba(232,255,71,0.2);
}

.guide-level--intermediate {
  background: rgba(255,165,0,0.1);
  color: #ffa500;
  border: 1px solid rgba(255,165,0,0.2);
}

.guide-level--advanced {
  background: rgba(255,77,77,0.1);
  color: var(--accent2);
  border: 1px solid rgba(255,77,77,0.2);
}

/* Featured guide */
.guide-featured {
  background: var(--grey);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  margin-bottom: 2px;
  transition: border-color 0.2s;
}

.guide-featured:hover {
  border-color: rgba(232,255,71,0.2);
}

.guide-featured-link {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
  padding: 48px;
  text-decoration: none;
  color: inherit;
}

.guide-featured-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.guide-featured-body h2 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.guide-featured-body .guide-excerpt {
  font-size: 15px;
  color: rgba(245,244,240,0.65);
  line-height: 1.7;
  max-width: 620px;
}

.guide-read-more {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.04em;
}

.guide-featured-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  white-space: nowrap;
}

/* Guides grid */
.guides-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.guides-grid--2col {
  grid-template-columns: repeat(2, 1fr);
}

.guide-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  transition: border-color 0.2s, background 0.2s;
}

.guide-card:hover {
  background: rgba(232,255,71,0.03);
  border-color: rgba(232,255,71,0.15);
}

.guide-card-link {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 28px;
  text-decoration: none;
  color: inherit;
  min-height: 200px;
}

.guide-card-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.guide-card-body h3 {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
}

.guide-excerpt {
  font-size: 13px;
  color: rgba(245,244,240,0.6);
  line-height: 1.65;
}

.guide-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.guide-arrow {
  font-size: 14px;
  color: var(--accent);
}

/* Guide CTA block inside single */
.guide-cta-block {
  background: var(--grey);
  border: 1px solid rgba(232,255,71,0.12);
  border-radius: var(--radius);
  padding: 40px;
  margin: 56px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.guide-cta-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.guide-cta-block h3 {
  font-size: 22px;
  font-weight: 700;
}

.guide-cta-block p {
  font-size: 14px;
  color: rgba(245,244,240,0.65);
  line-height: 1.65;
  max-width: 480px;
}

.guide-cta-block .btn-primary {
  width: fit-content;
  margin-top: 8px;
}

/* ============================================================
   FAQ PAGE
   ============================================================ */

.faq-group {
  margin-bottom: 64px;
}

.faq-group:last-child { margin-bottom: 0; }

.faq-group-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(232,255,71,0.15);
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */

.about-prose {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.about-prose p {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(245,244,240,0.8);
  max-width: 680px;
}

.about-prose p:first-child {
  font-size: 19px;
  color: var(--white);
}

.about-diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 48px;
}

.about-diff-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.2s;
}

.about-diff-card:hover {
  border-color: rgba(232,255,71,0.15);
}

.about-diff-icon {
  font-size: 20px;
  color: var(--accent);
  line-height: 1;
}

.about-diff-card h3 {
  font-size: 18px;
  font-weight: 700;
}

.about-diff-card p {
  font-size: 14px;
  color: rgba(245,244,240,0.65);
  line-height: 1.7;
}

/* Timeline */
.about-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 48px;
  border-left: 2px solid rgba(255,255,255,0.08);
  padding-left: 0;
}

.about-timeline-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 32px;
  padding: 28px 0 28px 32px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: relative;
}

.about-timeline-item::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 36px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--grey2);
}

.about-timeline-item--now::before {
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}

.about-timeline-item:last-child { border-bottom: none; }

.about-timeline-year {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  padding-top: 2px;
}

.about-timeline-item--now .about-timeline-year {
  color: var(--accent);
}

.about-timeline-body h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.about-timeline-body p {
  font-size: 14px;
  color: rgba(245,244,240,0.65);
  line-height: 1.7;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* Left column */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.contact-step:first-child { padding-top: 0; }
.contact-step:last-child  { border-bottom: none; }

.contact-step-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  padding-top: 3px;
}

.contact-step-body h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}

.contact-step-body p {
  font-size: 14px;
  color: rgba(245,244,240,0.6);
  line-height: 1.65;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-link-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.contact-link-item:hover {
  background: rgba(232,255,71,0.04);
  border-color: rgba(232,255,71,0.15);
}

.contact-link-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}

.contact-link-desc {
  font-size: 12px;
  color: var(--text-muted);
}

/* Right column — form */
.contact-form-wrap {
  position: sticky;
  top: 100px;
}

.contact-form-inner {
  background: var(--grey);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 40px;
}

.contact-form-inner h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-form-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.6;
}

/* CF7 contact form styling */
.contact-form-inner .wpcf7 form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form-inner .wpcf7 form p {
  display: contents;
}

.contact-form-inner .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.contact-form-inner input[type="text"],
.contact-form-inner input[type="email"],
.contact-form-inner select,
.contact-form-inner textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font);
  font-size: 14px;
  padding: 14px 16px;
  transition: border-color 0.2s;
  outline: none;
  -webkit-appearance: none;
}

.contact-form-inner input[type="text"]:focus,
.contact-form-inner input[type="email"]:focus,
.contact-form-inner select:focus,
.contact-form-inner textarea:focus {
  border-color: rgba(232,255,71,0.4);
  background: rgba(232,255,71,0.03);
}

.contact-form-inner select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a7a8c' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.contact-form-inner select option {
  background: var(--grey);
  color: var(--white);
}

.contact-form-inner textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form-inner input[type="submit"] {
  background: var(--accent);
  color: var(--black);
  border: none;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 16px 28px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  width: 100%;
  margin-top: 4px;
}

.contact-form-inner input[type="submit"]:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.contact-form-inner .wpcf7-response-output {
  border: none;
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 13px;
  margin: 8px 0 0;
}

.contact-form-inner .wpcf7-mail-sent-ok {
  background: rgba(232,255,71,0.1);
  color: var(--accent);
}

.contact-form-inner .wpcf7-validation-errors,
.contact-form-inner .wpcf7-spam-blocked {
  background: rgba(255,77,77,0.1);
  color: var(--accent2);
}

.contact-form-inner .wpcf7-not-valid-tip {
  font-size: 11px;
  color: var(--accent2);
  margin-top: 4px;
  display: block;
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */

.services-full-grid {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.service-full-card {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0 48px;
  background: var(--grey);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 48px 48px 48px 0;
  transition: border-color 0.2s;
}

.service-full-card:hover {
  border-color: rgba(232,255,71,0.18);
}

.service-full-num {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  padding: 4px 0 0 48px;
}

.service-full-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-full-body h3 {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.service-full-desc {
  color: rgba(245,244,240,0.7);
  font-size: 15px;
  line-height: 1.7;
  max-width: 680px;
}

.service-full-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  width: fit-content;
}

.service-full-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.service-full-tag.available {
  background: rgba(232,255,71,0.1);
  color: var(--accent);
  border: 1px solid rgba(232,255,71,0.25);
}

.service-full-tag.available::before {
  background: var(--accent);
}

.service-full-tag.coming {
  background: rgba(255,255,255,0.05);
  color: var(--text-muted);
  border: 1px solid rgba(255,255,255,0.1);
}

.service-full-tag.coming::before {
  background: var(--text-muted);
}

.service-full-includes {
  list-style: none;
  padding: 0;
  margin: 8px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-full-includes li {
  font-size: 14px;
  color: rgba(245,244,240,0.75);
  padding-left: 20px;
  position: relative;
}

.service-full-includes li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 13px;
}

.service-full-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}

/* Coming soon grid */
.coming-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.coming-grid--single {
  grid-template-columns: 1fr;
  max-width: 560px;
}

.coming-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.coming-card h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
}

.coming-desc {
  color: rgba(245,244,240,0.6);
  font-size: 15px;
  line-height: 1.7;
  flex: 1;
}

/* ============================================================
   404 PAGE
   ============================================================ */

.not-found-wrap {
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
}

.not-found-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.not-found-code {
  font-size: 120px;
  font-weight: 800;
  color: rgba(232,255,71,0.12);
  line-height: 1;
  letter-spacing: -4px;
}

.not-found-inner h1 {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.not-found-sub {
  font-size: 16px;
  color: rgba(245,244,240,0.6);
  max-width: 480px;
  line-height: 1.7;
}

.not-found-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.not-found-links .btn-outline { margin-top: 0; }

/* ============================================================
   COOKIE NOTICE
   ============================================================ */

.cookie-notice {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 640px;
  background: rgba(26,26,34,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 20px 24px;
  z-index: 9999;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.cookie-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-inner p {
  font-size: 13px;
  color: rgba(245,244,240,0.7);
  line-height: 1.6;
  flex: 1;
  min-width: 200px;
  margin: 0;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
}

.cookie-actions .btn-primary {
  padding: 10px 20px;
  font-size: 12px;
}

.cookie-decline {
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: var(--font);
  font-size: 12px;
  cursor: pointer;
  padding: 10px 8px;
  transition: color 0.2s;
}

.cookie-decline:hover { color: var(--white); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .post-grid, .news-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-nav { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  html, body { overflow-x: hidden; width: 100%; }

  .site-nav {
    top: 12px;
    width: calc(100% - 32px);
    padding: 12px 16px;
    border-radius: 12px;
  }
  .logo { font-size: 16px; }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 8px); left: 0; right: 0;
    background: rgba(5, 5, 8, 0.85);
    backdrop-filter: blur(24px) saturate(160%);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    border: 1px solid rgba(232, 255, 71, 0.08);
    border-radius: 12px;
    padding: 24px 20px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.6);
  }
  .nav-links.open { display: flex; }
  .nav-menu { flex-direction: column; align-items: flex-start; gap: 20px; width: 100%; }
  .nav-menu .nav-cta { width: 100%; text-align: center; }

  .nav-mobile-toggle { display: flex; }

  .section, .container { padding-left: 20px; padding-right: 20px; }
  .hero-inner {
    padding: 32px 20px 56px;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }

  .hero h1 { font-size: 42px; margin-bottom: 28px; }
  .hero-sub { font-size: 15px; margin-bottom: 32px; }
  .float-accent { display: none; }

  .waitlist-wrap .wpcf7-form,
  .cta-form-wrap .wpcf7-form { flex-direction: column; }
  .waitlist-wrap .wpcf7-form-control-wrap,
  .cta-form-wrap .wpcf7-form-control-wrap { display: block; width: 100%; }
  .waitlist-wrap input[type="email"],
  .cta-form-wrap input[type="email"] {
    border-right: 1px solid var(--grey2);
    border-bottom: none;
    border-radius: var(--radius) var(--radius) 0 0;
    width: 100%;
  }
  .waitlist-wrap input[type="submit"],
  .cta-form-wrap input[type="submit"] {
    border-radius: 0 0 var(--radius) var(--radius);
    width: 100%;
    padding: 16px;
  }

  .stats {
    padding: 32px 20px;
    grid-template-columns: 1fr;
    gap: 0;
  }
  .stat {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 24px 0;
    text-align: center;
  }
  .stat:last-child { border-bottom: none; }

  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .comparison-row { grid-template-columns: 1fr 1fr; }
  .comparison-row .comparison-cell:nth-child(2) { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 28px 20px; }

  .guide-featured-link { grid-template-columns: 1fr; gap: 24px; padding: 28px 24px; }
  .guide-featured-body h2 { font-size: 20px; }
  .guide-featured-meta { align-items: flex-start; flex-direction: row; }
  .guides-grid, .guides-grid--2col { grid-template-columns: 1fr; }

  .about-diff-grid { grid-template-columns: 1fr; }
  .about-diff-card { padding: 28px 24px; }
  .about-timeline-item { grid-template-columns: 56px 1fr; gap: 16px; padding-left: 20px; }

  .contact-split {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .contact-form-wrap { position: static; }
  .contact-form-inner { padding: 28px 24px; }

  .service-full-card {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    gap: 12px;
  }
  .service-full-num { padding: 0; }
  .service-full-body h3 { font-size: 20px; }
  .coming-grid { grid-template-columns: 1fr; }
  .coming-card { padding: 28px 24px; }

  .post-grid, .news-grid { grid-template-columns: 1fr; }

  .cta-section { padding: 56px 20px; }
  .cta-section::before { font-size: 70px; }

  .site-footer { padding: 48px 20px 32px; }
  .footer-top { flex-direction: column; align-items: flex-start; gap: 8px; margin-bottom: 32px; }
  .footer-nav { grid-template-columns: 1fr 1fr; gap: 24px; justify-items: start; }
  .footer-col { max-width: 100%; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .footer-nav { grid-template-columns: 1fr; gap: 28px; }
}
