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

[hidden] { display: none !important; }

:root {
  /* ── Sage & Stone palette ─────────────────────────────────
     Ported from react-app/src/styles/globals.css :root.
     The website's semantic variable names are KEPT (so the rule
     bodies below need no rewrite); only their values flip from
     the old dark "Nuit Alpine" theme to the app's LIGHT theme. */

  /* Surfaces (page → light) */
  --bg-primary:    #faf8f3; /* app --color-bg        — page background */
  --bg-secondary:  #f4efe6; /* app --color-surface-2 — alternating sections */
  --bg-card:       #ffffff; /* app --color-surface   — cards / panels */
  --bg-card-hover: #f4efe6; /* app --color-surface-2 — card hover surface */

  /* Sage primary (rare — primary CTAs, links, focus, logo) */
  --teal-deep:     #4f6b3a; /* app --color-primary */
  --teal-mid:      #4f6b3a; /* primary, used where the old theme used a
                              bright accent for text/links/logo on dark;
                              on a light bg this needs the strong sage for
                              AA contrast (the soft #87a273 fails AA here) */
  --teal-dark:     #3d5430; /* app --color-primary-hover */
  --teal-glow:     rgba(79, 107, 58, 0.10); /* subtle sage tint (decorative) */

  /* On-primary text (white on sage button — was the dark bg in old theme) */
  --on-primary:    #ffffff;

  /* Warm accent (stat numbers) — strong ocre for AA text on light */
  --terracotta:    #98641e; /* app --color-warning-strong (AA 5.0:1 on white) */
  --terracotta-glow: rgba(152, 100, 30, 0.10); /* subtle ocre tint (decorative) */

  /* Text (flip: light text → dark text on light bg) */
  --near-black:    #1f2421; /* app --color-text        — primary text */
  --warm-gray:     #6b6e6a; /* app --color-text-muted  — secondary text */
  --text-subtle:   #a8aba6; /* app --color-text-subtle — faint labels */

  /* Borders (flip: white-alpha on dark → stone border on light) */
  --border:        #e8e4d8;                  /* app --color-border */
  --border-light:  rgba(31, 36, 33, 0.06);   /* faint hairline on light */

  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --font-mono:    'DM Mono', 'Courier New', monospace;

  --container: 1200px;
  --gutter:    clamp(24px, 5vw, 80px);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--near-black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── UTILITIES ─────────────────────────────────────────── */

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.rule {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

.tag {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-gray);
}

/* ── SCROLL REVEAL ─────────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── NAVIGATION ────────────────────────────────────────── */

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 243, 0.85); /* --bg-primary, translucent for blur */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 18px 0;
}

.nav-logo {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  color: var(--teal-mid);
  text-decoration: none;
  letter-spacing: -0.01em;
  font-optical-sizing: auto;
}

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

.nav-links a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--warm-gray);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--near-black);
}

.btn-nav {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--teal-mid);
  border: 1.5px solid var(--teal-deep);
  background: transparent;
  padding: 8px 20px;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
  letter-spacing: 0.01em;
}

.btn-nav:hover {
  background: var(--teal-deep);
  color: var(--on-primary);
}

.nav--scrolled .btn-nav {
  background: var(--teal-deep);
  color: #fff;
  border-color: var(--teal-deep);
}

/* ── HERO ──────────────────────────────────────────────── */

.hero {
  padding: clamp(64px, 10vw, 120px) 0 clamp(64px, 8vw, 100px);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -5%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse at 40% 40%, rgba(79, 107, 58, 0.07) 0%, transparent 65%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-tag {
  margin-bottom: 24px;
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(48px, 7vw, 80px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--near-black);
  font-optical-sizing: auto;
  margin-bottom: 28px;
}

.hero-headline em {
  font-style: italic;
  color: var(--teal-mid);
}

.hero-body {
  font-size: 17px;
  color: var(--warm-gray);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.btn-primary {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--on-primary);
  background: var(--teal-deep);
  border: none;
  padding: 14px 28px;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, box-shadow 0.2s ease;
  letter-spacing: 0.01em;
}

.btn-primary:hover {
  background: var(--teal-mid);
  box-shadow: 0 0 24px rgba(79, 107, 58, 0.3);
}

.btn-text {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--warm-gray);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.btn-text:hover {
  color: var(--teal-mid);
  border-color: var(--teal-mid);
}

.hero-trust {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--warm-gray);
  letter-spacing: 0.05em;
  opacity: 0.7;
}

/* ── HERO ADAPTIVE CTA (desktop / mobile variants) ─────── */

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

/* The primary CTA inside the adaptive block is not in a flex row, so it
   needs to render as an inline-block (the shared .btn-primary base only
   styles colour/padding). */
.hero-cta .btn {
  display: inline-block;
  align-self: flex-start;
}

.hero-sub {
  font-size: 17px;
  color: var(--warm-gray);
  line-height: 1.7;
  max-width: 480px;
  font-weight: 300;
  margin: 0;
}

.hero-cross {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--warm-gray);
  letter-spacing: 0.04em;
  opacity: 0.8;
  margin: 0;
}

.hero-alt {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--warm-gray);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.hero-alt:hover {
  color: var(--teal-mid);
  border-color: var(--teal-mid);
}

/* ── HERO PHONE FRAME ─────────────────────────────────── */

.hero-shot {
  position: relative;
  display: flex;
  justify-content: center;
}

.phone-frame {
  position: relative;
  width: 100%;
  max-width: 320px;
  border-radius: 32px;
  overflow: hidden;
  /* Device mockup: a black bezel is realistic phone hardware (kept dark);
     ambient shadow softened to light-theme elevation (was rgba(0,0,0,.4-.5)). */
  box-shadow:
    0 0 60px rgba(79, 107, 58, 0.12),
    0 18px 40px rgba(31, 36, 33, 0.16),
    0 4px 12px rgba(31, 36, 33, 0.10);
  border: 2px solid #1f2421;
  background: #1f2421;
}

.phone-frame img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-shot {
    max-width: 320px;
    margin: 0 auto;
  }
}

/* ── PLATFORM BADGE ROW ────────────────────────────────── */

.platforms-row {
  padding: clamp(32px, 4vw, 48px) 0;
  border-bottom: 1px solid var(--border);
  border-top: 1px solid var(--border);
  background: var(--bg-secondary);
}

.platforms-inner {
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 48px);
  flex-wrap: wrap;
}

.platforms-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--warm-gray);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
  opacity: 0.6;
}

.platforms-rule {
  width: 1px;
  height: 20px;
  background: var(--border);
  flex-shrink: 0;
}

.platforms-list {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 32px);
  flex-wrap: wrap;
}

.platform-chip {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 5px 12px;
  border-radius: 4px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.platform-chip.active {
  color: var(--teal-mid);
  border: 1px solid rgba(79, 107, 58, 0.30);
  background: rgba(79, 107, 58, 0.07);
}

.platform-chip.active .chip-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal-mid);
  box-shadow: 0 0 6px var(--teal-mid);
  flex-shrink: 0;
  animation: pulse-dot 2.4s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 6px var(--teal-mid); }
  50%       { opacity: 0.5; box-shadow: 0 0 2px var(--teal-mid); }
}

/* ── REASSURANCE STRIP ─────────────────────────────────── */

.reassure-strip {
  padding: clamp(16px, 2.5vw, 22px) 0;
  background: var(--bg-primary);
}

.reassure-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(12px, 2vw, 24px);
}

.reassure-chip {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--warm-gray);
  white-space: nowrap;
}

.reassure-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--teal-mid);
  opacity: 0.45;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .reassure-inner {
    flex-direction: column;
    gap: 10px;
  }
  .reassure-sep { display: none; }
}

/* ── HOW IT WORKS ──────────────────────────────────────── */

.how {
  padding: clamp(80px, 10vw, 128px) 0;
  background: var(--bg-primary);
}

.section-header {
  margin-bottom: clamp(48px, 6vw, 72px);
}

.section-tag {
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 42px);
  letter-spacing: -0.02em;
  color: var(--near-black);
  font-optical-sizing: auto;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.how-grid::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 33.333%;
  width: 1px;
  background: var(--border);
}

.how-grid::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 66.666%;
  width: 1px;
  background: var(--border);
}

.how-step {
  padding: 0 clamp(24px, 4vw, 48px);
}

.how-step:first-child {
  padding-left: 0;
}

.how-step:last-child {
  padding-right: 0;
}

.step-number {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--teal-mid);
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  display: block;
}

.step-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(22px, 2.5vw, 30px);
  color: var(--near-black);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.15;
  font-optical-sizing: auto;
}

.step-desc {
  font-size: 15px;
  color: var(--warm-gray);
  line-height: 1.7;
  font-weight: 300;
}

.how-cta {
  text-align: center;
  margin-top: 48px;
}
.how-cta-link {
  font-size: 0.9rem;
  color: var(--warm-gray);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.how-cta-link:hover {
  color: var(--near-black);
  border-color: var(--near-black);
}

@media (max-width: 768px) {
  .how-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .how-grid::before,
  .how-grid::after {
    display: none;
  }
  .how-step {
    padding: 0;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border);
  }
  .how-step:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}

/* ── FEATURES ──────────────────────────────────────────── */

.features {
  padding: clamp(80px, 10vw, 128px) 0 0;
}

.features-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(40px, 5vw, 64px);
}

.features-inner-odd {
  background: var(--bg-secondary);
}

.features-inner-even {
  background: var(--bg-primary);
}

.features-inner-odd,
.features-inner-even {
  padding: 0;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  padding: clamp(48px, 6vw, 72px) var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
}

.feature-row-wrap {
  border-bottom: 1px solid var(--border);
}

.feature-row-wrap:last-child {
  border-bottom: none;
}

.feature-row.reverse .feature-text {
  order: 2;
}

.feature-row.reverse .feature-visual {
  order: 1;
}

.feature-text {
  border-left: 2px solid var(--teal-deep);
  padding-left: clamp(20px, 3vw, 32px);
}

.feature-label {
  display: block;
  margin-bottom: 16px;
}

.feature-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(24px, 3vw, 36px);
  letter-spacing: -0.02em;
  color: var(--near-black);
  margin-bottom: 18px;
  line-height: 1.15;
  font-optical-sizing: auto;
}

.feature-desc {
  font-size: 15px;
  color: var(--warm-gray);
  line-height: 1.75;
  font-weight: 300;
}

.feature-img-frame {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-img-frame::before {
  content: '';
  position: absolute;
  background: radial-gradient(circle at 50% 50%, rgba(79, 107, 58, 0.12) 0%, transparent 70%);
  inset: -20%;
  z-index: -1;
  border-radius: 24px;
}

.feature-img-frame img {
  border-radius: 24px;
  max-width: 320px;
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 20px 50px rgba(31, 36, 33, 0.14), 0 0 0 1px var(--border);
}

@media (max-width: 768px) {
  .feature-row {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
  }
  .feature-row.reverse .feature-text,
  .feature-row.reverse .feature-visual {
    order: unset;
  }
}

/* ── FEATURE PLACEHOLDER (owner asset pending) ─────────── */

.feature-shot {
  position: relative;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}

.feature-shot--placeholder {
  aspect-ratio: 9 / 16;
  border: 2px dashed rgba(79, 107, 58, 0.35);
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 45%, rgba(79, 107, 58, 0.08) 0%, transparent 70%),
    var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-shot--placeholder::after {
  content: 'Visuel à venir';
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-mid);
  opacity: 0.7;
}


/* ── CAPABILITIES GRID ────────────────────────────────── */

.capabilities {
  padding: clamp(80px, 10vw, 128px) 0;
  background: var(--bg-secondary);
}

.capabilities-header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 64px);
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.cap-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 24px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.cap-card:hover {
  border-color: rgba(79, 107, 58, 0.2);
  box-shadow: 0 0 24px rgba(79, 107, 58, 0.06);
}

.cap-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(79, 107, 58, 0.08);
  border: 1px solid rgba(79, 107, 58, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--teal-mid);
}

.cap-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cap-title {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--near-black);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.cap-desc {
  font-size: 13px;
  color: var(--warm-gray);
  line-height: 1.6;
  font-weight: 300;
}

@media (max-width: 768px) {
  .capabilities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

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

/* ── CHROME EXTENSION SECTION ─────────────────────────── */

.extension-section {
  padding: clamp(64px, 10vw, 128px) 0;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.extension-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.ext-feature-card {
  background: rgba(79, 107, 58, 0.06);
  border: 1px solid rgba(79, 107, 58, 0.15);
  border-radius: 8px;
  padding: 20px 16px;
  text-align: center;
}

.ext-feature-icon {
  width: 36px;
  height: 36px;
  margin: 0 auto 10px;
  border-radius: 8px;
  background: rgba(79, 107, 58, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-mid);
}

.ext-feature-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ext-feature-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--teal-mid);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.ext-feature-desc {
  font-size: 13px;
  color: var(--warm-gray);
  line-height: 1.5;
}

.extension-web-link {
  font-size: 15px;
  font-weight: 400;
  color: var(--warm-gray);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--border);
  transition: color 0.2s ease;
}

.extension-web-link:hover {
  color: var(--teal-mid);
}

/* ── COMPARE SECTION (Avec / sans Loxiva) ──────────────── */

.compare {
  padding: clamp(64px, 9vw, 110px) 0;
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 44px;
}

.compare-col {
  padding: 30px;
  border-radius: 18px;
  border: 1px solid var(--border);
}

.compare-col--without {
  background: var(--bg-card);
}

.compare-col--with {
  background: var(--bg-card);
  border-color: var(--teal-deep);
  box-shadow: 0 18px 48px rgba(31, 36, 33, 0.10);
}

.compare-col-title {
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 20px;
}

.compare-col--with .compare-col-title {
  color: var(--teal-mid);
}

.compare-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.compare-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.5;
}

.compare-item-icon {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 11px;
  margin-top: 1px;
}

.compare-col--without .compare-item {
  color: var(--warm-gray);
}

.compare-col--without .compare-item-icon {
  background: var(--terracotta-glow);
  color: var(--terracotta);
}

.compare-col--with .compare-item {
  color: var(--near-black);
}

.compare-col--with .compare-item-icon {
  background: var(--teal-glow);
  color: var(--teal-mid);
}

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

/* ── TRUST & PRIVACY ───────────────────────────────────── */

.trust {
  padding: clamp(64px, 9vw, 110px) 0;
  background: var(--bg-secondary);
}

.trust-inner {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.trust-title {
  margin: 16px 0 18px;
}

.trust-desc {
  font-size: 17px;
  line-height: 1.7;
  color: var(--warm-gray);
  font-weight: 300;
  margin-bottom: 20px;
}

.trust-link {
  display: inline-block;
  font-size: 15px;
  color: var(--teal-mid);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--border);
  transition: text-decoration-color 0.2s ease;
}

.trust-link:hover {
  text-decoration-color: var(--teal-mid);
}

.trust-cta-wrap {
  margin-top: 32px;
}

/* ── FAQ SECTION ───────────────────────────────────────── */

.faq {
  padding: clamp(64px, 9vw, 110px) 0;
}

.faq-list {
  max-width: 760px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--near-black);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-family: var(--font-body);
  font-size: 24px;
  line-height: 1;
  color: var(--teal-mid);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 22px 20px;
  color: var(--warm-gray);
  font-size: 15px;
  line-height: 1.65;
  font-weight: 300;
}

/* ── STATS ROW ─────────────────────────────────────────── */

.stats {
  padding: clamp(56px, 7vw, 88px) 0;
  background: var(--bg-secondary);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.stats-grid::before {
  content: '';
  position: absolute;
  top: 10%;
  bottom: 10%;
  left: 33.333%;
  width: 1px;
  background: var(--border);
}

.stats-grid::after {
  content: '';
  position: absolute;
  top: 10%;
  bottom: 10%;
  left: 66.666%;
  width: 1px;
  background: var(--border);
}

.stat-item {
  padding: 0 clamp(24px, 4vw, 56px);
  text-align: center;
}

.stat-item:first-child {
  padding-left: 0;
}

.stat-item:last-child {
  padding-right: 0;
}

.stat-number {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 56px);
  color: var(--terracotta);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 10px;
  font-optical-sizing: auto;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--warm-gray);
  font-weight: 300;
}

@media (max-width: 600px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .stats-grid::before,
  .stats-grid::after {
    display: none;
  }
  .stat-item {
    padding: 0;
    text-align: left;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
  }
  .stat-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}

/* ── PRICING ──────────────────────────────────────────── */

.pricing {
  padding: clamp(80px, 10vw, 128px) 0;
  background: var(--bg-primary);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 700px;
  margin: 0 auto;
}

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

/* ── FINAL CTA ─────────────────────────────────────────── */

.final-cta {
  background: var(--bg-primary);
  padding: clamp(80px, 10vw, 128px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  bottom: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse at 50% 80%, rgba(79, 107, 58, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

.final-cta-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.final-cta-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(32px, 5vw, 60px);
  letter-spacing: -0.02em;
  color: var(--near-black);
  line-height: 1.1;
  margin-bottom: 40px;
  font-optical-sizing: auto;
  position: relative;
  z-index: 1;
}

.btn-cta-luminous {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--on-primary);
  background: var(--teal-deep);
  border: none;
  padding: 16px 36px;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, box-shadow 0.2s ease;
  letter-spacing: 0.01em;
  display: inline-block;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 32px rgba(79, 107, 58, 0.25), 0 4px 16px rgba(79, 107, 58, 0.15);
}

.btn-cta-luminous:hover {
  background: var(--teal-dark);
  box-shadow: 0 0 48px rgba(79, 107, 58, 0.30), 0 4px 20px rgba(79, 107, 58, 0.20);
}

.final-cta-sub {
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-subtle);
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1;
}

/* ── FOOTER ────────────────────────────────────────────── */

footer {
  padding: clamp(32px, 4vw, 56px) 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
  gap: 24px;
  padding-bottom: clamp(24px, 3vw, 40px);
}

.footer-logo {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--teal-mid);
  text-decoration: none;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  list-style: none;
}

.footer-links a {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--warm-gray);
  text-decoration: none;
  transition: color 0.2s ease;
  opacity: 0.7;
}

.footer-links a:hover {
  color: var(--near-black);
  opacity: 1;
}

.footer-swiss {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.footer-swiss-text {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--warm-gray);
  letter-spacing: 0.05em;
  opacity: 0.6;
}

.swiss-flag {
  width: 18px;
  height: 18px;
  border-radius: 2px;
  background: #D52B1E;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.swiss-cross {
  position: relative;
  width: 10px;
  height: 10px;
}

.swiss-cross::before,
.swiss-cross::after {
  content: '';
  position: absolute;
  background: white;
}

.swiss-cross::before {
  width: 2.5px;
  height: 8px;
  top: 1px;
  left: 3.75px;
}

.swiss-cross::after {
  width: 8px;
  height: 2.5px;
  top: 3.75px;
  left: 1px;
}

.footer-langs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 24px;
  padding-top: clamp(20px, 2.5vw, 32px);
}

.footer-langs a {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--warm-gray);
  text-decoration: none;
  opacity: 0.7;
  transition: color 0.2s ease;
}

.footer-langs a:hover {
  color: var(--near-black);
  opacity: 1;
}

.footer-langs a[aria-current='true'] {
  color: var(--teal-mid);
  opacity: 1;
  font-weight: 500;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: clamp(20px, 2.5vw, 32px);
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--warm-gray);
  letter-spacing: 0.04em;
  opacity: 0.5;
}

.footer-tagline {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--warm-gray);
  letter-spacing: 0.04em;
  opacity: 0.5;
}

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }
  .footer-links {
    flex-wrap: wrap;
  }
  .footer-swiss {
    justify-content: center;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

/* ── LANG SWITCHER ─────────────────────────────────────── */

.lang-switcher { position: relative; }
.lang-btn {
  display: flex; align-items: center; gap: 4px; padding: 5px 8px;
  border-radius: 8px; background: var(--bg-secondary);
  border: 1px solid var(--border); color: var(--near-black);
  font-size: 16px; cursor: pointer; transition: background .15s;
}
.lang-btn:hover { background: var(--bg-card-hover); }
.lang-dropdown {
  display: none; position: absolute; top: calc(100% + 8px); right: 0;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 10px; padding: 4px; min-width: 140px;
  box-shadow: 0 8px 32px rgba(31, 36, 33, 0.14); z-index: 200;
}
.lang-dropdown.open { display: block; }
.lang-dropdown button, .lang-dropdown a {
  display: flex; width: 100%; align-items: center; gap: 8px;
  padding: 8px 10px; border-radius: 6px; background: none; border: none;
  color: var(--near-black); font-size: 13px; cursor: pointer; text-align: left;
  text-decoration: none; transition: background .12s;
}
.lang-dropdown button:hover, .lang-dropdown a:hover { background: var(--bg-secondary); color: var(--teal-deep); }

/* ── MISC ──────────────────────────────────────────────── */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
}

/* ── MOBILE HAMBURGER MENU ─────────────────────────── */

.mobile-menu-btn { display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:8px; z-index:102; }
.hamburger-line { display:block; width:22px; height:2px; background:var(--warm-gray); border-radius:1px; transition:transform 0.3s, opacity 0.3s; }

.mobile-drawer-overlay { position:fixed; inset:0; background:rgba(0,0,0,0.6); z-index:998; opacity:0; pointer-events:none; transition:opacity 0.3s; }
.mobile-drawer-overlay.active { opacity:1; pointer-events:auto; }

.mobile-drawer { position:fixed; top:0; right:0; width:min(320px,85vw); height:100%; background:var(--bg-secondary); border-left:1px solid var(--border); z-index:999; transform:translateX(100%); transition:transform 0.3s; display:flex; flex-direction:column; padding:24px; overflow-y:auto; }
.mobile-drawer.open { transform:translateX(0); }
.mobile-drawer-header { display:flex; align-items:center; justify-content:space-between; margin-bottom:32px; }
.mobile-drawer-close { background:none; border:none; color:var(--warm-gray); font-size:28px; cursor:pointer; padding:4px 8px; line-height:1; }
.mobile-drawer-links { list-style:none; display:flex; flex-direction:column; }
.mobile-drawer-links li { border-bottom:1px solid var(--border); }
.mobile-drawer-links a { display:block; padding:16px 0; font-family:var(--font-body); font-size:16px; color:var(--near-black); text-decoration:none; transition:color 0.2s; }
.mobile-drawer-links a:hover { color:var(--teal-mid); }
.mobile-drawer-cta { display:block; text-align:center; margin-top:24px; padding:14px 24px; background:var(--teal-deep); color:var(--on-primary); border-radius:4px; font-family:var(--font-body); font-size:14px; font-weight:500; text-decoration:none; }

/* ── MOBILE RESPONSIVE ────────────────────────────── */

@media (max-width: 768px) {
  /* Nav */
  .nav-inner { grid-template-columns: 1fr auto; gap: 12px; }
  .nav-links { display: none; }
  .mobile-menu-btn { display: flex; }

  /* Hero */
  .hero { padding: 28px 0 20px; }
  .hero-headline { font-size: clamp(32px,8vw,48px); }
  .hero-body { max-width:100%; font-size:15px; }
  .hero-sub { max-width:100%; font-size:15px; }
  .hero-cta { align-items: stretch; }
  .hero-cta .btn { display:block; align-self:auto; text-align:center; }
  .hero-cross { text-align:center; }
  .hero-alt { align-self:center; }

  /* Platforms */
  .platforms-inner { justify-content:center; gap:12px; }
  .platforms-rule { display:none; }
  .platforms-label { width:100%; text-align:center; }
  .platforms-list { justify-content:center; }

  /* Touch targets */
  .btn-nav { padding:12px 20px; min-height:44px; display:inline-flex; align-items:center; }
  .btn-primary { padding:16px 28px; min-height:44px; }
  .btn-text { padding:12px 0; min-height:44px; display:inline-flex; align-items:center; }
  .btn-cta-luminous { padding:16px 32px; min-height:44px; width:100%; text-align:center; }
  .lang-btn { min-height:44px; padding:8px 12px; }
  .footer-links { gap:16px 20px; justify-content:center; }
  .footer-links a { padding:8px 0; min-height:44px; display:inline-flex; align-items:center; }
}

@media (max-width: 380px) {
  .hero-headline { font-size:28px; }
  .phone-frame { max-width:100%; border-radius:24px; }
}

/* ── iOS ADD-TO-HOME-SCREEN SHEET ──────────────────────── */

.a2hs-sheet {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 16px;
  background: rgba(31, 36, 33, 0.45);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.a2hs-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px calc(24px + env(safe-area-inset-bottom));
  width: 100%;
  max-width: 420px;
  box-shadow: 0 -8px 40px rgba(31, 36, 33, 0.18);
}

.a2hs-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--near-black);
  margin-bottom: 18px;
  line-height: 1.2;
  font-optical-sizing: auto;
}

.a2hs-card ol {
  list-style: none;
  counter-reset: a2hs;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0 0 24px;
  padding: 0;
}

.a2hs-card ol li {
  counter-increment: a2hs;
  position: relative;
  padding-left: 36px;
  font-size: 15px;
  color: var(--warm-gray);
  line-height: 1.6;
  font-weight: 300;
}

.a2hs-card ol li::before {
  content: counter(a2hs);
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(79, 107, 58, 0.10);
  border: 1px solid rgba(79, 107, 58, 0.20);
  color: var(--teal-mid);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}

.a2hs-close {
  width: 100%;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--on-primary);
  background: var(--teal-deep);
  border: none;
  padding: 14px 28px;
  border-radius: 4px;
  cursor: pointer;
  letter-spacing: 0.01em;
  min-height: 44px;
  transition: background 0.2s ease;
}

.a2hs-close:hover {
  background: var(--teal-dark);
}

@media (min-width: 600px) {
  .a2hs-sheet { align-items: center; }
  .a2hs-card { border-radius: 16px; }
}

