/* ============================================================
   WG-Lotse — styles.css
   Brand palette (from logo):
     Navy 900: #000B2F  headings, dark backgrounds
     Navy 700: #042356  secondary dark
     Navy 500: #345382  medium blue
     Navy 400: #667A95  secondary text
     Navy 200: #C3D2E0  borders, dividers
     Navy 100: #EEF1F7  tinted backgrounds
     Navy 50:  #F5F7FB  very light bg
     Orange:   #FE4C02  CTAs, primary accent
     Gold:     #FECE34  warnings
     White:    #FFFFFF
   ============================================================ */

:root {
  --navy-900: #000B2F;
  --navy-700: #042356;
  --navy-500: #345382;
  --navy-400: #667A95;
  --navy-200: #C3D2E0;
  --navy-100: #EEF1F7;
  --navy-50:  #F5F7FB;
  --orange:      #FE4C02;
  --orange-dark: #D93E00;
  --orange-light: #FFF1EC;
  --gold:     #FECE34;
  --white:    #FFFFFF;
  --border:   #E2E8F0;
  --success:  #10b981;
  --text-heading: var(--navy-900);
  --text-body: #3D4F6B;
  --text-muted: var(--navy-400);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scroll-padding-top: 80px;
}

body {
  padding-top: 64px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--white);
  color: var(--text-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

/* ── Typography ──────────────────────────────────────────── */
h1, h2, h3, h4 {
  color: var(--text-heading);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.875rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.125rem, 2vw, 1.5rem); font-weight: 600; }
h4 { font-size: 0.8125rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── Layout ──────────────────────────────────────────────── */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-narrow {
  max-width: 740px;
}

.section {
  padding: 104px 0;
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-sub {
  margin-top: 0.875rem;
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange);
  margin-bottom: 0.875rem;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease,
              border-color 0.15s ease, box-shadow 0.15s ease, transform 0.1s ease;
  border: 2px solid transparent;
  text-decoration: none;
}

.btn:active { transform: translateY(1px); }

.btn-primary {
  background-color: var(--orange);
  color: #fff;
  border-color: var(--orange);
  box-shadow: 0 2px 8px rgba(254,76,2,0.25);
}
.btn-primary:hover {
  background-color: var(--orange-dark);
  border-color: var(--orange-dark);
  box-shadow: 0 4px 16px rgba(254,76,2,0.35);
}

.btn-outline {
  background-color: transparent;
  color: var(--navy-900);
  border-color: var(--border);
}
.btn-outline:hover {
  border-color: var(--navy-900);
  background-color: var(--navy-50);
}

.btn-ghost {
  background-color: transparent;
  color: var(--navy-500);
  border-color: var(--border);
}
.btn-ghost:hover {
  background-color: var(--navy-50);
  border-color: var(--navy-200);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
  border-radius: 10px;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  border-radius: 6px;
}

.btn-full { width: 100%; }

/* ── Placeholders ────────────────────────────────────────── */
.placeholder {
  background-color: var(--navy-50);
  border: 2px dashed var(--navy-200);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  width: 100%;
}

.placeholder-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy-400);
  letter-spacing: 0.04em;
  line-height: 1.6;
}

.placeholder-label small {
  display: block;
  font-weight: 400;
  font-size: 0.75rem;
  color: var(--navy-200);
  margin-top: 0.25rem;
}

.placeholder-16-9 { aspect-ratio: 16 / 9; }
.placeholder-4-3  { aspect-ratio: 4 / 3; }

/* ── Sticky nav ──────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.25s ease;
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-logo-img {
  width: 28px;
  height: 28px;
  display: block;
}

.logo-text {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy-900);
  letter-spacing: -0.025em;
}

.nav-links {
  display: flex;
  gap: 1.75rem;
  align-items: center;
  flex: 1;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy-400);
  transition: color 0.15s ease;
}

.nav-links a:hover { color: var(--navy-900); }

.nav-cta {
  margin-left: auto;
  font-weight: 700;
  animation: nav-cta-pulse 2.5s ease-in-out infinite;
}

@keyframes nav-cta-pulse {
  0%, 100% { box-shadow: 0 2px 8px rgba(254,76,2,0.25), 0 0 0 0 rgba(254,76,2,0.4); }
  50%       { box-shadow: 0 2px 8px rgba(254,76,2,0.25), 0 0 0 6px rgba(254,76,2,0); }
}

.nav-cta:hover { animation: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--navy-900);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-mobile {
  border-top: 1px solid var(--border);
  padding: 1rem 1.5rem 1.5rem;
}

.nav-mobile ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.nav-mobile a {
  font-weight: 500;
  color: var(--navy-900);
}

@media (max-width: 768px) {
  .nav-links, .lang-switcher, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
}

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  padding: 80px 0 104px;
  background: linear-gradient(155deg, var(--navy-50) 0%, var(--white) 55%);
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.hero-content h1 {
  margin-bottom: 1.375rem;
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 2.25rem;
  max-width: 460px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.hero-note {
  font-size: 0.8125rem;
  color: var(--navy-400);
  margin-bottom: 0.375rem;
}

.hero-disclaimer {
  font-size: 0.8125rem;
  color: var(--navy-400);
  margin-bottom: 0;
}

.hero-media {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-screenshot-frame {
  position: relative;
  padding: 1.75rem;
  background: var(--navy-100);
  border-radius: 24px;
  box-shadow:
    0 0 0 1px rgba(0,11,47,0.06),
    0 8px 24px rgba(0,11,47,0.07),
    0 40px 80px rgba(0,11,47,0.12);
}

.hero-screenshot-img {
  border-radius: 14px;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  box-shadow:
    0 2px 4px rgba(0,11,47,0.08),
    0 8px 32px rgba(0,11,47,0.16);
}

/* Legacy centered hero variant (unused now but kept as fallback) */
.hero-content-centered {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.hero-content-centered .hero-actions { justify-content: center; }
.hero-content-centered .hero-sub { max-width: 100%; margin-left: auto; margin-right: auto; }

.break-lg { display: none; }
@media (min-width: 900px) { .break-lg { display: inline; } }

@media (max-width: 900px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-sub { max-width: 100%; }
}

@media (max-width: 480px) { .hero { padding: 56px 0 72px; } }

/* ── Early adopter banner ────────────────────────────────── */
.early-banner {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
  color: #fff;
  padding: 0.875rem 1.5rem;
}

.early-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.early-banner-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
  min-width: 0;
}

.early-banner-icon { font-size: 1.25rem; flex-shrink: 0; }

.early-banner-content p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.4;
}

.early-code {
  display: inline-block;
  background: rgba(254,206,52,0.15);
  border: 1px solid rgba(254,206,52,0.45);
  border-radius: 4px;
  padding: 1px 7px;
  font-family: 'Courier New', Courier, monospace;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--gold);
}

.early-banner-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.early-banner-actions .btn-primary {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
  white-space: nowrap;
}
.early-banner-actions .btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
}

.early-banner-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.45);
  font-size: 1rem;
  cursor: pointer;
  padding: 2px 4px;
  line-height: 1;
  transition: color 0.15s;
}
.early-banner-close:hover { color: #fff; }
.early-banner[hidden] { display: none; }

/* ── Founder story section ───────────────────────────────── */
.section-story {
  background: var(--white);
  color: var(--navy-900);
}

.story-inner {
  position: relative;
  padding: 1rem 0;
}

.story-quote {
  display: block;
  font-size: 7rem;
  line-height: 0.55;
  color: var(--navy-200);
  font-family: Georgia, serif;
  margin-bottom: 1.5rem;
  user-select: none;
}

.section-story .eyebrow { color: var(--orange); }

.section-story h2 {
  color: var(--navy-900);
  margin-top: 0.5rem;
  margin-bottom: 1.375rem;
}

.section-story p {
  color: var(--navy-500);
  font-size: 1.0625rem;
  line-height: 1.8;
  max-width: 680px;
}

.story-attribution {
  margin-top: 2rem !important;
  font-style: italic;
  color: var(--navy-400) !important;
  font-size: 0.9rem !important;
}

.section-story .btn-primary { margin-top: 1.75rem; }

/* ── Features section ────────────────────────────────────── */
.section-features {
  background-color: var(--white);
  padding-bottom: 0;
}

.features-list {
  display: flex;
  flex-direction: column;
}

/* Each alternating feature row */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: 88px 0;
  border-top: 1px solid var(--border);
}

.feature-row:first-child { border-top: none; }

/* Flip: media right, text left */
.feature-row--media-right .feature-row-media { order: 2; }
.feature-row--media-right .feature-row-text  { order: 1; }

.feature-row-text .eyebrow { margin-bottom: 0.625rem; }

.feature-row-text h3 {
  font-size: clamp(1.375rem, 2.5vw, 1.875rem);
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
}

.feature-row-text p {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.78;
}

.feature-row-media {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Screenshot background frame */
.feature-screenshot-frame {
  width: 100%;
  background: var(--navy-50);
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

/* Single screenshot */
.feature-img-single {
  border-radius: 12px;
  width: auto;
  max-width: 100%;
  max-height: 380px;
  box-shadow:
    0 1px 3px rgba(0,11,47,0.06),
    0 6px 20px rgba(0,11,47,0.10),
    0 24px 56px rgba(0,11,47,0.08);
}

/* Duo screenshots */
.feature-img-duo {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  width: 100%;
}

.feature-img-duo figure {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.feature-img-duo img {
  border-radius: 10px;
  width: 100%;
  box-shadow:
    0 1px 3px rgba(0,11,47,0.06),
    0 6px 20px rgba(0,11,47,0.10),
    0 24px 56px rgba(0,11,47,0.07);
}

.feature-img-duo figcaption {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--navy-400);
  text-align: center;
}

/* AI badge inline with eyebrow */
.feature-ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--orange-light);
  color: var(--orange);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  padding: 3px 8px;
  border-radius: 4px;
  margin-left: 0.5rem;
  vertical-align: middle;
  border: 1px solid rgba(254,76,2,0.18);
}

/* Privacy feature — full-width navy card */
.feature-row--privacy {
  grid-template-columns: 1fr;
  background: var(--navy-900);
  border-radius: 20px;
  padding: 4rem 3rem;
  margin-top: 2rem;
  border-top: none;
}

.feature-row--privacy .feature-row-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.feature-row--privacy h3 { color: #fff; }
.feature-row--privacy p  { color: rgba(255,255,255,0.65); }

.feature-row--privacy .privacy-icon {
  color: var(--orange);
  margin-bottom: 1.375rem;
}

.feature-row--privacy .eyebrow { color: var(--orange); }

/* Add bottom padding after the features list */
.features-list-wrap {
  padding-bottom: 104px;
}

@media (max-width: 900px) {
  .feature-row {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 56px 0;
  }
  /* Reset order on mobile */
  .feature-row--media-right .feature-row-media,
  .feature-row--media-right .feature-row-text { order: unset; }
}

/* ── Problem section ─────────────────────────────────────── */
.section-problem { background-color: var(--white); }

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.problem-card {
  background-color: var(--navy-50);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

.problem-card .placeholder {
  border-radius: 0;
  border: none;
  border-bottom: 1px solid var(--border);
}

.problem-card h3 { padding: 1.25rem 1.25rem 0.5rem; }
.problem-card p  { padding: 0 1.25rem 1.25rem; font-size: 0.9375rem; }

.problem-card-text-only {
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.problem-stat {
  font-size: 4rem;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  margin-bottom: 1rem;
}

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

/* ── How it works ────────────────────────────────────────── */
.section-how { background-color: var(--navy-50); }

.steps-list {
  display: flex;
  flex-direction: column;
  max-width: 680px;
  margin: 0 auto;
}

.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.step:last-child { border-bottom: none; }

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: var(--orange);
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-content h3 {
  margin-bottom: 0.5rem;
  padding-top: 0.5rem;
}

.step-content p {
  font-size: 0.9375rem;
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.step-content .btn { margin-top: 0.25rem; }

/* ── Pricing section ─────────────────────────────────────── */
.section-pricing { background-color: var(--white); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.pricing-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.625rem;
  background-color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.pricing-card:hover {
  box-shadow: 0 8px 32px rgba(0,11,47,0.08);
  transform: translateY(-2px);
}

.pricing-card-featured {
  border-color: var(--orange);
  box-shadow: 0 0 0 2px var(--orange), 0 8px 32px rgba(254,76,2,0.10);
}

.pricing-card-featured:hover {
  box-shadow: 0 0 0 2px var(--orange), 0 12px 40px rgba(254,76,2,0.18);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--orange);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-card-header h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.375rem;
  color: var(--navy-900);
}

.price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.price-amount {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--navy-900);
  letter-spacing: -0.04em;
}

.price-note {
  font-size: 0.8rem;
  color: var(--navy-200);
  margin: 0;
}

.pricing-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
}

.pricing-features li::before {
  content: '✓';
  color: var(--success);
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-features li.feature-included {
  color: var(--navy-900);
  font-weight: 500;
}

.pricing-features li.feature-included::before { color: var(--orange); }

.pricing-features li.feature-excluded { color: var(--navy-200); }
.pricing-features li.feature-excluded::before { content: '–'; color: var(--navy-200); }

.pricing-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0.25rem 0;
  padding: 0;
}
.pricing-divider::before { content: none; }

.pricing-footnote {
  font-size: 0.8rem;
  color: var(--navy-400);
  line-height: 1.4;
  margin: 0;
}

.pricing-note-global {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.875rem;
  color: var(--navy-200);
}

@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }
}

/* ── Privacy section ─────────────────────────────────────── */
.section-privacy { background-color: var(--navy-50); }

.privacy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.privacy-block {
  border-radius: 14px;
  padding: 2rem;
  border: 1px solid var(--border);
  background: var(--white);
}

.privacy-block-local  { background: var(--navy-50); border-color: var(--navy-200); }
.privacy-block-ai     { background: #fffbee; border-color: #f5e6b8; }
.privacy-block-never  { background: #fff8f5; border-color: #ffd4c2; }

.privacy-block-icon { margin-bottom: 1rem; color: var(--orange); }
.privacy-block-ai   .privacy-block-icon { color: #b07d12; }
.privacy-block-never .privacy-block-icon { color: #c0392b; }

.privacy-block h3 { font-size: 1rem; margin-bottom: 0.875rem; }

.privacy-block ul {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.privacy-block ul li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding-left: 1rem;
  position: relative;
}

.privacy-block ul li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--navy-200);
}

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

/* ── FAQ section ─────────────────────────────────────────── */
.section-faq { background-color: var(--white); }

.section-faq .container { max-width: 740px; }

.faq-list { display: flex; flex-direction: column; }

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

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.375rem 0;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy-900);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.15s ease;
}

.faq-question:hover { color: var(--orange); }

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background-color: var(--navy-400);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.faq-icon::before { width: 8px; height: 1.5px; }
.faq-icon::after  { width: 1.5px; height: 8px; }

.faq-question[aria-expanded="true"] .faq-icon {
  background-color: var(--orange);
  border-color: var(--orange);
}

.faq-question[aria-expanded="true"] .faq-icon::before,
.faq-question[aria-expanded="true"] .faq-icon::after {
  background-color: #fff;
}

.faq-question[aria-expanded="true"] .faq-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-answer { padding-bottom: 1.375rem; }

.faq-answer p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* ── Final CTA section ───────────────────────────────────── */
.section-cta {
  background: linear-gradient(145deg, var(--navy-900) 0%, var(--navy-700) 100%);
  text-align: center;
  padding: 104px 0;
}

.section-cta h2 { color: #fff; margin-bottom: 1rem; }

.section-cta p {
  color: rgba(255,255,255,0.6);
  font-size: 1.0625rem;
  max-width: 440px;
  margin: 0 auto 2.25rem;
  line-height: 1.7;
}

.section-cta .btn-primary {
  background-color: var(--orange);
  border-color: var(--orange);
  box-shadow: 0 4px 24px rgba(254,76,2,0.4);
}
.section-cta .btn-primary:hover {
  background-color: var(--orange-dark);
  border-color: var(--orange-dark);
}

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
  background-color: var(--navy-900);
  color: var(--navy-400);
  padding: 64px 0 36px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand .footer-logo {
  color: #fff;
  font-size: 1.125rem;
  display: block;
  margin-bottom: 0.875rem;
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.65;
  margin: 0;
  color: var(--navy-400);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-links-col h4 {
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
  font-size: 0.72rem;
}

.footer-links-col ul { display: flex; flex-direction: column; gap: 0.65rem; }

.footer-links-col a {
  font-size: 0.875rem;
  color: var(--navy-400);
  transition: color 0.15s ease;
}
.footer-links-col a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.18);
}

.footer-disclaimer {
  margin-top: 0.75rem;
  padding: 0.625rem 0.875rem;
  border-left: 3px solid var(--orange);
  background: rgba(254,76,2,0.08);
  border-radius: 0 4px 4px 0;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
}

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

/* ── Fade-in animation ───────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; transition: none; }
}

/* ── Language switcher ───────────────────────────────────── */
.lang-switcher {
  display: flex;
  gap: 2px;
  align-items: center;
  background: var(--navy-50);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 3px;
  flex-shrink: 0;
}

.lang-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--navy-400);
  padding: 3px 8px;
  border-radius: 4px;
  line-height: 1.4;
  letter-spacing: 0.04em;
  transition: background 0.15s, color 0.15s;
}

.lang-btn:hover { color: var(--navy-900); }

.lang-btn[aria-pressed="true"] {
  background: var(--white);
  color: var(--navy-900);
  box-shadow: 0 1px 3px rgba(0,11,47,0.1);
}

/* ── Cookie consent banner ───────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--navy-900);
  color: #f5f5f5;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.875rem;
  line-height: 1.5;
  box-shadow: 0 -4px 24px rgba(0,11,47,0.25);
}

.cookie-banner[hidden] { display: none; }

.cookie-banner p {
  margin: 0;
  color: var(--navy-400);
  flex: 1;
  min-width: 0;
}

.cookie-banner p a { color: var(--orange); text-decoration: underline; }

.cookie-banner-actions { display: flex; gap: 0.5rem; flex-shrink: 0; }

.cookie-banner-actions .btn-outline {
  color: #fff;
  border-color: rgba(255,255,255,0.35);
  background-color: transparent;
}
.cookie-banner-actions .btn-outline:hover {
  background-color: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}

/* ── Utility ─────────────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Legacy screenshot classes (used by old card layout, kept for safety) */
.screenshot-popup {
  display: block;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,11,47,0.14);
  max-height: 320px;
  width: auto;
  max-width: 100%;
}
.screenshot-popup--wide {
  max-height: 240px;
  max-width: 100%;
}
.feature-media-screenshot {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: var(--navy-50);
  border-radius: 8px 8px 0 0;
  min-height: 200px;
}
.feature-media-duo {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--navy-50);
  border-radius: 8px 8px 0 0;
}
.feature-media-duo figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 0;
}
.feature-media-duo .screenshot-popup {
  max-height: 260px;
  width: 100%;
  object-fit: contain;
}
.feature-media-duo figcaption {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy-400);
  text-align: center;
}
