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

/* ── Design Tokens ── */
:root {
  /* ── Cyber-Doll Theme: jet-black + Barbiecore pink + chrome + mint glow ── */
  --pink: #FF2E93;
  --pink-soft: #FF85B5;
  --pink-deep: #D91670;
  --chrome: #B8B8C8;
  --chrome-light: #E8E8F0;
  --chrome-dark: #6B6B78;
  --mint: #00F5C9;
  --mint-soft: rgba(0,245,201,0.18);
  --ivory: #FAFAFE;
  --ivory-dim: rgba(250,250,254,0.72);
  --ivory-faint: rgba(250,250,254,0.45);

  /* Background & Cards */
  --bg: #0A0A0F;
  --bg-2: #14141A;
  --footer-bg: #050508;
  --inner-bg: rgba(255,255,255,0.03);
  --card-bg: rgba(255,255,255,0.04);
  --glass: rgba(255,255,255,0.06);
  --glass-strong: rgba(255,255,255,0.10);
  --border: rgba(255,255,255,0.08);
  --border-glass: rgba(255,255,255,0.10);
  --border-pink: rgba(255,46,147,0.32);
  --border-chrome: rgba(184,184,200,0.22);

  /* Brand (Pink) */
  --brand: var(--pink);
  --brand-dark: var(--pink-deep);
  --brand-light: rgba(255,46,147,0.18);
  --brand-faint: rgba(255,46,147,0.08);

  /* Accent Colors */
  --amber: #F5B847;
  --amber-light: rgba(245,184,71,0.18);
  --red: #FF5570;
  --red-light: rgba(255,85,112,0.18);
  --blue: #6BA8FF;

  /* Text */
  --text: var(--ivory);
  --text-2: var(--ivory-dim);
  --text-3: var(--ivory-faint);

  /* Spacing & Effects */
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 4px 16px rgba(0,0,0,0.32), 0 0 0 1px rgba(255,255,255,0.04) inset;
  --shadow-md: 0 12px 36px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.06) inset;
  --transition: 0.2s ease;
}

/* ── Base ── */
html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'Geist', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ivory);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Ambient glow behind everything */
body::before {
  content: '';
  position: fixed; inset: 0;
  background:
    radial-gradient(ellipse 800px 600px at 15% 10%, rgba(255,46,147,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 600px 400px at 90% 30%, rgba(0,245,201,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 700px 500px at 50% 100%, rgba(255,133,181,0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: -1;
}

/* Form element baseline */
input, textarea, select { color: var(--ivory); }
input::placeholder, textarea::placeholder { color: var(--ivory-faint); opacity: 1; }

/* ── Utility Classes ── */

.display {
  font-family: 'Unbounded', 'Geist', sans-serif;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.section {
  padding: clamp(64px,9vw,110px) clamp(16px,5vw,48px);
  max-width: 1200px;
  margin: 0 auto;
  scroll-margin-top: 80px; /* Anker landen nicht unter der Sticky-Nav */
}

.section-eyebrow {
  font-family: 'Geist', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--mint);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  width: 22px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--mint), transparent);
}

.glass-card {
  background: var(--glass);
  border: 1px solid var(--border-glass);
  border-radius: 22px;
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.glass-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-pink);
}

.btn-pill {
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-deep) 100%);
  color: #fff;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: 'Geist', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 30px;
  transition: transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  box-shadow: 0 4px 18px rgba(255,46,147,0.32);
  display: inline-flex;
  align-items: center;
}
.btn-pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(255,46,147,0.55);
}

.btn-outline {
  background: var(--glass);
  border: 1px solid var(--border-glass);
  color: var(--ivory);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: pointer;
  font-family: 'Geist', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 30px;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.btn-outline:hover {
  border-color: var(--border-pink);
  color: var(--pink-soft);
  background: var(--glass-strong);
}

/* ── Ticker Bar ── */
.ticker-wrap {
  background: linear-gradient(180deg, #050508 0%, var(--bg) 100%);
  overflow: hidden;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-pink);
}

.ticker {
  display: flex;
  animation: ticker 28s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--mint);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  padding: 0 32px;
  text-transform: uppercase;
  font-family: 'Geist', sans-serif;
  flex-shrink: 0;
}

.ticker-dot {
  width: 5px;
  height: 5px;
  background: var(--pink);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 12px var(--pink);
}

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

/* ── Sticky Glass Nav ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,15,0.72);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--border-glass);
  padding: 0 clamp(16px, 5vw, 48px);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ivory);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
}
.logo strong {
  background: linear-gradient(135deg, var(--chrome-light) 0%, var(--pink) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  text-decoration: none;
  font-family: 'Geist', sans-serif;
  font-size: 0.84rem;
  color: var(--ivory-dim);
  font-weight: 400;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--pink); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

#langSelect {
  background: var(--glass);
  border: 1px solid var(--border-glass);
  color: var(--ivory-dim);
  font-family: 'Geist', sans-serif;
  font-size: 0.8rem;
  padding: 6px 10px;
  border-radius: 8px;
  cursor: pointer;
  outline: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color var(--transition);
}
#langSelect:hover { border-color: var(--border-pink); }

/* ── Mobile Nav Toggle (hamburger button) ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  flex-shrink: 0;
  transition: background var(--transition);
}
.nav-toggle:hover { background: var(--glass); }
.nav-toggle:focus-visible {
  outline: 2px solid var(--mint);
  outline-offset: 2px;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ivory);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  pointer-events: none;
}

/* Mobile-only CTA inside dropdown — hidden on desktop */
.nav-mobile-cta { display: none; }

/* ── Mobile Nav (≤ 640 px) ── */
@media (max-width: 640px) {
  /* Show burger, hide desktop Apply-CTA from nav-actions */
  .nav-toggle { display: flex; }
  .nav-actions .btn-pill { display: none; }

  /* Nav-links become an absolute dropdown panel */
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; /* directly below the nav, height-independent */
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: rgba(10, 10, 15, 0.97);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid var(--border-glass);
    padding: 4px 24px 20px;
    gap: 0;
    z-index: 50;
  }

  /* Open state */
  .nav.open .nav-links { display: flex; }

  /* Nav link rows */
  .nav-links a:not(.nav-mobile-cta) {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.92rem;
  }

  /* Mobile CTA at bottom of dropdown */
  .nav-mobile-cta {
    display: inline-flex;
    margin-top: 20px;
    align-self: flex-start;
  }

  /* Hamburger → X animation */
  .nav.open .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.open .nav-toggle-bar:nth-child(2) { opacity: 0; }
  .nav.open .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Hero eyebrow: tighten letter-spacing to prevent overflow at 390 px */
  .hero-eyebrow {
    letter-spacing: 0.18em;
    font-size: 0.65rem;
  }

  /* Hero H1: safe word-break for long German compound words */
  .hero h1 {
    overflow-wrap: break-word;
    word-break: break-word;
  }
}

/* ── Gradient Text Utility ── */
.grad {
  display: inline-block;
  background: linear-gradient(135deg, #E8E8F0, #FF2E93 50%, #FF85B5);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 32px rgba(255,46,147,0.32));
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: clamp(48px, 10vh, 120px);
  padding-bottom: clamp(64px, 10vh, 120px);
  padding-left: clamp(16px, 5vw, 48px);
  padding-right: clamp(16px, 5vw, 48px);
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 30%, rgba(255,46,147,0.20) 0%, transparent 55%),
    radial-gradient(ellipse 35% 30% at 80% 70%, rgba(0,245,201,0.10) 0%, transparent 55%),
    radial-gradient(ellipse 30% 25% at 15% 80%, rgba(255,133,181,0.10) 0%, transparent 55%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(184,184,200,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,184,200,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 30%, transparent 80%);
  pointer-events: none;
}

.hero > * { position: relative; z-index: 1; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Geist', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--mint);
  letter-spacing: 0.36em;
  text-transform: uppercase;
  margin-bottom: 28px;
  padding: 7px 16px;
  border: 1px solid var(--border-glass);
  border-radius: 30px;
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--pink);
  border-radius: 50%;
  box-shadow: 0 0 14px var(--pink), 0 0 28px rgba(255,46,147,0.6);
  animation: pulseGlow 2.4s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}

.hero h1 {
  font-size: clamp(2.6rem, 8vw, 6rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--ivory);
  margin-bottom: 28px;
}

.hero-sub {
  font-family: 'Geist', sans-serif;
  font-size: clamp(0.98rem, 2.3vw, 1.15rem);
  color: var(--ivory-dim);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.7;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.hero-actions .btn-pill,
.hero-actions .btn-outline {
  font-size: 0.92rem;
  padding: 14px 32px;
}

.hero-noupfront {
  font-family: 'Geist', sans-serif;
  font-size: 0.78rem;
  color: var(--ivory-faint);
  letter-spacing: 0.04em;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Geist', sans-serif;
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--ivory-dim);
  letter-spacing: 0.04em;
  padding: 8px 16px;
  border: 1px solid var(--border-glass);
  border-radius: 30px;
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.trust-pill::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--mint);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--mint);
  flex-shrink: 0;
}

/* ── Cards Grid (reusable) ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

/* ── Pain Section ── */
#pain .display {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-top: 20px;
  line-height: 1.1;
}

.pain-card {
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pain-card-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--ivory);
}

.pain-card-body {
  font-family: 'Geist', sans-serif;
  font-size: 0.9rem;
  color: var(--ivory-dim);
  line-height: 1.7;
  font-weight: 400;
}

/* ── Dream Section ── */
#dream {
  position: relative;
}

#dream::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0,245,201,0.04), transparent);
  pointer-events: none;
}

#dream .display {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-top: 20px;
  line-height: 1.1;
}

.dream-card {
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dream-card:hover {
  border-color: rgba(0,245,201,0.32);
  box-shadow: 0 8px 32px rgba(0,245,201,0.08);
}

.dream-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0,245,201,0.22) 0%, rgba(0,245,201,0.06) 100%);
  border: 1px solid rgba(0,245,201,0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: var(--mint);
  flex-shrink: 0;
}

.dream-card-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--ivory);
}

.dream-card-body {
  font-family: 'Geist', sans-serif;
  font-size: 0.9rem;
  color: var(--ivory-dim);
  line-height: 1.7;
  font-weight: 400;
}

/* ── Services Section ── */
#services {
  position: relative;
}

#services::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(255,46,147,0.04), transparent);
  pointer-events: none;
}

#services .display {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-top: 20px;
  line-height: 1.1;
}

.feature-card {
  position: relative;
  overflow: hidden;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Diagonal pink shimmer on hover (vaultstrike pattern) */
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255,46,147,0.10) 50%,
    transparent 65%
  );
  transform: skewX(-12deg);
  transition: left 0.55s ease;
  pointer-events: none;
}

.feature-card:hover::before {
  left: 160%;
}

.feature-card:hover {
  border-color: var(--border-pink);
  box-shadow: 0 8px 32px rgba(255,46,147,0.08);
}

/* Pink gradient icon box — mirrors dream-card-icon but uses brand pink */
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,46,147,0.22) 0%, rgba(255,46,147,0.06) 100%);
  border: 1px solid rgba(255,46,147,0.24);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--pink-soft);
  flex-shrink: 0;
}

.feature-card-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--ivory);
}

.feature-card-body {
  font-family: 'Geist', sans-serif;
  font-size: 0.9rem;
  color: var(--ivory-dim);
  line-height: 1.7;
  font-weight: 400;
}

/* ── Why Section ── */
#why .display {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-top: 20px;
  line-height: 1.1;
}

.why-card {
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.why-card-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--ivory);
}

.why-card-body {
  font-family: 'Geist', sans-serif;
  font-size: 0.9rem;
  color: var(--ivory-dim);
  line-height: 1.7;
  font-weight: 400;
}

/* ── How it works Section ── */
#how .display {
  font-size: clamp(1.6rem, 4.5vw, 3rem);
  margin-top: 20px;
  line-height: 1.1;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

@media (max-width: 900px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

.step-card {
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.step-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-deep) 100%);
  box-shadow: 0 4px 14px rgba(255,46,147,0.40);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Unbounded', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.step-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--ivory);
}

.step-body {
  font-family: 'Geist', sans-serif;
  font-size: 0.9rem;
  color: var(--ivory-dim);
  line-height: 1.7;
  font-weight: 400;
}

/* ── FAQ Section ── */
#faq .display {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-top: 20px;
  line-height: 1.1;
}

.faq-list {
  max-width: 720px;
  margin: 48px auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--border-glass);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: none;
  color: var(--ivory);
  font-family: 'Unbounded', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 22px 0;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}

.faq-q:focus-visible {
  outline: 2px solid var(--mint);
  outline-offset: 2px;
  border-radius: 4px;
}

.faq-ic {
  color: var(--pink);
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.25s ease, color 0.25s ease;
}

.faq-a {
  display: none;
  padding: 0 0 22px;
  font-family: 'Geist', sans-serif;
  font-size: 0.92rem;
  color: var(--ivory-dim);
  line-height: 1.7;
}

.faq-item.open .faq-a {
  display: block;
}

.faq-item.open .faq-ic {
  transform: rotate(45deg);
  color: var(--mint);
}

/* ── Stats Bar ── */
.stats-bar {
  width: 100%;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-inner {
  display: flex;
  justify-content: space-around;
  gap: 24px;
  flex-wrap: wrap;
  padding: clamp(32px, 5vw, 56px) clamp(16px, 5vw, 48px);
  max-width: 1200px;
  margin: 0 auto;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  flex: 1 1 160px;
}

.stat-num {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1;
}

.stat-label {
  font-family: 'Geist', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--ivory-faint);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

/* ── Utility ── */
.hidden { display: none !important; }

/* ── Apply Section ── */
#apply .display {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-top: 20px;
  line-height: 1.1;
}

.apply-intro {
  font-family: 'Geist', sans-serif;
  font-size: clamp(0.96rem, 2vw, 1.08rem);
  color: var(--ivory-dim);
  max-width: 560px;
  margin: 20px 0 40px;
  line-height: 1.7;
  font-weight: 400;
}

.apply-form {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-family: 'Geist', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ivory-dim);
  letter-spacing: 0.02em;
}

.apply-form input[type="text"],
.apply-form input[type="email"],
.apply-form select,
.apply-form textarea {
  background: var(--glass);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  padding: 12px 14px;
  font-family: 'Geist', sans-serif;
  font-size: 0.9rem;
  color: var(--ivory);
  width: 100%;
  outline: 2px solid transparent;
  transition: border-color var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.apply-form select {
  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='%23FAFAFE' stroke-opacity='.45' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.apply-form textarea {
  resize: vertical;
  min-height: 110px;
}

.apply-form input[type="text"]:focus,
.apply-form input[type="email"]:focus,
.apply-form select:focus,
.apply-form textarea:focus {
  border-color: var(--pink);
}

/* File input */
.apply-form input[type="file"] {
  font-family: 'Geist', sans-serif;
  font-size: 0.84rem;
  color: var(--ivory-dim);
  cursor: pointer;
}
.apply-form input[type="file"]::file-selector-button {
  background: var(--glass);
  border: 1px solid var(--border-glass);
  border-radius: 8px;
  color: var(--ivory-dim);
  font-family: 'Geist', sans-serif;
  font-size: 0.8rem;
  padding: 6px 12px;
  cursor: pointer;
  margin-right: 10px;
  transition: border-color var(--transition);
}
.apply-form input[type="file"]::file-selector-button:hover {
  border-color: var(--border-pink);
}

/* Consent row */
.form-consent {
  gap: 0;
}

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Geist', sans-serif;
  font-size: 0.83rem;
  color: var(--ivory-dim);
  line-height: 1.55;
  cursor: pointer;
}

.consent-label input[type="checkbox"] {
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--pink);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.consent-link {
  color: var(--pink-soft);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition);
}
.consent-link:hover {
  color: var(--pink);
}

/* Submit button */
.apply-submit {
  width: 100%;
  justify-content: center;
  font-size: 0.92rem;
  padding: 14px 32px;
  margin-top: 4px;
}

/* Status message */
#formStatus {
  font-family: 'Geist', sans-serif;
  font-size: 0.88rem;
  color: var(--ivory-dim);
  min-height: 1.4em;
  text-align: center;
}

/* ── Footer ── */
.footer {
  background: var(--footer-bg);
  border-top: 1px solid var(--border);
  padding: clamp(48px, 5vw, 80px) clamp(16px, 5vw, 48px);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: clamp(32px, 4vw, 64px);
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1 1 auto;
  min-width: 200px;
}

.footer-col-left {
  flex: 0 1 auto;
  min-width: 180px;
}

.footer-col-center {
  flex: 0 1 auto;
  gap: 12px;
}

.footer-col-right {
  flex: 0 1 auto;
  align-items: flex-end;
  text-align: right;
}

.footer-logo {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ivory);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
}

.footer-logo strong {
  background: linear-gradient(135deg, var(--chrome-light) 0%, var(--pink) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.footer-tagline {
  font-family: 'Geist', sans-serif;
  font-size: 0.8rem;
  color: var(--ivory-faint);
  line-height: 1.6;
  margin: 0;
}

.footer-email {
  font-weight: 500;
  color: var(--ivory-dim);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-email:hover {
  color: var(--pink-soft);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-link {
  font-family: 'Geist', sans-serif;
  font-size: 0.8rem;
  color: var(--ivory-faint);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-link:hover {
  color: var(--pink-soft);
}

.footer-copyright {
  font-family: 'Geist', sans-serif;
  font-size: 0.75rem;
  color: var(--ivory-faint);
  margin: 0;
  line-height: 1.6;
}

#langSelectFooter {
  background: var(--glass);
  border: 1px solid var(--border-glass);
  color: var(--ivory-faint);
  font-family: 'Geist', sans-serif;
  font-size: 0.75rem;
  padding: 6px 10px;
  border-radius: 8px;
  cursor: pointer;
  outline: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color var(--transition), color var(--transition);
}

#langSelectFooter:hover {
  border-color: var(--border-pink);
  color: var(--pink-soft);
}

/* ── Stats bar: force 2×2 grid on tablet/phone ── */
@media (max-width: 768px) {
  .stat {
    flex: 1 1 calc(50% - 12px); /* 2 per row; 12px = half of 24px gap */
  }
}

/* Mobile stacking */
@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    gap: 24px;
  }

  .footer-col {
    min-width: 100%;
  }

  .footer-col-right {
    align-items: flex-start;
    text-align: left;
  }

  .footer-nav {
    flex-direction: row;
    gap: 16px;
  }
}
