/* ==========================================================================
   Hygge — site vitrine
   Palette & typographie reprises de l'app (Flutter) et du tunnel web.
   Mobile-first, responsive, compatible RTL via propriétés logiques.
   ========================================================================== */

:root {
  /* Brand tokens (repris de l'app) */
  --white: #ffffff;
  --cream: #fbfaf7;
  --cream-2: #f4f1ea;
  --deep-blue: #242f67;
  --ink: #2b2f45;
  --muted: #6b7088;
  --hint: #a1a4b2;

  --button-fg: #3f414e;
  --button-bg: #c1dbf5;
  --button-shadow: #83a5c7;

  --accent-bg: #ffe66b;
  --accent-shadow: #ffbd60;

  --blue-1: #b1cafb;
  --blue-2: #8baef9;
  --blue-3: #5973cc;
  --blue-4: #394e97;
  --blue-5: #273f87;

  --home-bg: #cbe5ff;
  --home-cloud: #dfefff;

  --happy-bg: #ffcaf1;
  --calm-bg: #ffe66b;
  --sad-bg: #c1dbf5;

  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 8px rgba(36, 47, 103, 0.06);
  --shadow-md: 0 12px 32px rgba(36, 47, 103, 0.10);
  --shadow-lg: 0 24px 60px rgba(36, 47, 103, 0.14);

  --font-display: 'Madimi One', 'Tilt Warp', system-ui, sans-serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --maxw: 1140px;
  --gutter: clamp(20px, 5vw, 48px);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--deep-blue);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.12; color: var(--deep-blue); margin: 0 0 0.4em; letter-spacing: -0.01em; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(56px, 9vw, 112px); position: relative; }
.section--tint { background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%); }
.section-head { max-width: 720px; margin-inline: auto; text-align: center; margin-bottom: clamp(36px, 6vw, 64px); }
.section-head .eyebrow { color: var(--blue-3); }
.eyebrow {
  display: inline-block; font-weight: 700; font-size: 0.82rem;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue-3);
  margin-bottom: 14px;
}
.lead { font-size: clamp(1.05rem, 2.2vw, 1.2rem); color: var(--muted); }

h2 { font-size: clamp(1.9rem, 4.6vw, 2.9rem); }
h3 { font-size: clamp(1.2rem, 2.6vw, 1.45rem); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 26px; border-radius: var(--radius-pill); font-weight: 700; font-size: 1rem;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--accent { background: var(--accent-bg); color: var(--deep-blue); box-shadow: 0 6px 0 var(--accent-shadow); }
.btn--accent:hover { box-shadow: 0 8px 0 var(--accent-shadow); transform: translateY(-2px); }
.btn--blue { background: var(--button-bg); color: var(--button-fg); box-shadow: 0 6px 0 var(--button-shadow); }
.btn--blue:hover { box-shadow: 0 8px 0 var(--button-shadow); transform: translateY(-2px); }
.btn--ghost { background: var(--white); color: var(--deep-blue); box-shadow: var(--shadow-sm); border: 1.5px solid rgba(36,47,103,0.08); }
.btn--ghost:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
/* CTA compact dans la barre d'en-tete : plus petit + ombre plus plate pour rester
   bien integre dans la hauteur du header (sinon l'ombre 3D deborde sous la barre). */
.header-actions .btn--accent { padding: 10px 20px; font-size: 0.95rem; box-shadow: 0 3px 0 var(--accent-shadow); }
.header-actions .btn--accent:hover { box-shadow: 0 5px 0 var(--accent-shadow); transform: translateY(-2px); }

/* Store badges */
.stores { display: flex; flex-wrap: wrap; gap: 14px; }
.store-badge {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--deep-blue); color: var(--white);
  padding: 12px 20px; border-radius: 14px; box-shadow: var(--shadow-md);
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}
.store-badge:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.store-badge svg { width: 26px; height: 26px; flex: none; fill: currentColor; }
.store-badge .store-badge__text { display: flex; flex-direction: column; line-height: 1.1; text-align: start; }
.store-badge .store-badge__small { font-size: 0.68rem; opacity: 0.8; font-weight: 500; }
.store-badge .store-badge__big { font-size: 1.08rem; font-weight: 700; font-family: var(--font-display); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 250, 247, 0.82);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid rgba(36, 47, 103, 0.06);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 16px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 1.3rem; color: var(--deep-blue); }
.brand img { width: 34px; height: 34px; border-radius: 9px; box-shadow: var(--shadow-sm); }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a { color: var(--muted); font-weight: 600; font-size: 0.95rem; transition: color 0.15s; }
.main-nav a:hover { color: var(--deep-blue); }
.header-actions { display: flex; align-items: center; gap: 14px; }

/* Language switcher (native <details>) */
.lang-switch { position: relative; }
.lang-switch > summary {
  list-style: none; cursor: pointer; display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 14px; border-radius: var(--radius-pill); background: var(--white);
  box-shadow: var(--shadow-sm); font-weight: 600; font-size: 0.9rem; color: var(--deep-blue);
  border: 1.5px solid rgba(36,47,103,0.08);
}
.lang-switch > summary::-webkit-details-marker { display: none; }
.lang-switch > summary svg { width: 16px; height: 16px; opacity: 0.7; }
.lang-menu {
  position: absolute; inset-inline-end: 0; top: calc(100% + 10px);
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 10px; width: min(86vw, 240px);
  display: grid; grid-template-columns: 1fr; gap: 2px;
  max-height: 60vh; overflow: auto; z-index: 60;
}
.lang-menu a {
  display: block; padding: 8px 12px; border-radius: 10px; font-size: 0.9rem;
  color: var(--ink); font-weight: 500; transition: background 0.12s;
}
.lang-menu a:hover { background: var(--cream-2); }
.lang-menu a[aria-current="true"] { background: var(--button-bg); font-weight: 700; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: radial-gradient(120% 90% at 80% 0%, var(--home-cloud) 0%, var(--cream) 55%);
}
.hero .container { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(24px, 5vw, 64px); align-items: center; padding-block: clamp(48px, 8vw, 96px); }
.hero-copy { max-width: 560px; }
.badge-pill {
  display: inline-flex; align-items: center; gap: 8px; background: var(--white);
  color: var(--blue-4); font-weight: 700; font-size: 0.82rem; padding: 8px 16px;
  border-radius: var(--radius-pill); box-shadow: var(--shadow-sm); margin-bottom: 22px;
}
.badge-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--grass, #80a848); }
.hero h1 { font-size: clamp(2.3rem, 6vw, 3.8rem); margin-bottom: 0.5em; }
.hero h1 .hl { color: var(--blue-3); }
.hero .hero-sub { font-size: clamp(1.08rem, 2.4vw, 1.3rem); color: var(--muted); margin-bottom: 1.6em; }
.hero .stores { margin-bottom: 18px; }
.hero-rating { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; color: var(--muted); font-size: 0.95rem; font-weight: 600; }
.hero-rating .stars { color: #ffb74d; letter-spacing: 2px; font-size: 1.05rem; }
.hero-note { margin-top: 14px; color: var(--hint); font-size: 0.88rem; }

.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
/* Pre-framed app mockups (transparent PNG, device frame baked in) */
.mockup {
  width: min(300px, 78vw); height: auto; display: block;
  filter: drop-shadow(0 26px 44px rgba(36, 47, 103, 0.20));
  animation: float 6s ease-in-out infinite;
}
.mockup--angled { animation: none; width: min(340px, 90%); }
@media (prefers-reduced-motion: reduce) { .mockup { animation: none; } }
.float-card {
  position: absolute; background: var(--white); border-radius: 16px; box-shadow: var(--shadow-md);
  padding: 12px 16px; display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 0.9rem;
}
.float-card img { width: 34px; height: 34px; animation: none; filter: none; }
.float-card--tl { top: 17%; inset-inline-start: -7%; animation: float 5s ease-in-out infinite; }
.float-card--br { bottom: 10%; inset-inline-end: -6%; animation: float 7s ease-in-out infinite 0.5s; }
.float-card small { display: block; color: var(--hint); font-weight: 600; font-size: 0.72rem; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ---------- Trust band (stats) ---------- */
.trust-band { background: var(--deep-blue); color: var(--white); }
.trust-band .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding-block: 38px; text-align: center; }
.stat .stat-val { font-family: var(--font-display); font-size: clamp(1.7rem, 4vw, 2.5rem); color: var(--accent-bg); line-height: 1; }
.stat .stat-label { font-size: 0.9rem; opacity: 0.78; margin-top: 6px; }

/* ---------- Features ---------- */
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(18px, 3vw, 28px); }
.feature-card {
  background: var(--white); border-radius: var(--radius-lg); padding: clamp(24px, 3.5vw, 36px);
  box-shadow: var(--shadow-sm); border: 1px solid rgba(36,47,103,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease; position: relative; overflow: hidden;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-card .ficon {
  width: 64px; height: 64px; border-radius: 18px; display: grid; place-items: center;
  margin-bottom: 18px; background: var(--sad-bg);
}
.feature-card .ficon img { width: 38px; height: 38px; }
.feature-card:nth-child(1) .ficon { background: var(--sad-bg); }
.feature-card:nth-child(2) .ficon { background: #d9f0d0; }
.feature-card:nth-child(3) .ficon { background: var(--happy-bg); }
.feature-card:nth-child(4) .ficon { background: var(--calm-bg); }
.feature-card h3 { margin-bottom: 0.35em; }
.feature-card p { color: var(--muted); margin: 0; }
.feature-card .lock { position: absolute; top: 18px; inset-inline-end: 18px; font-size: 0.7rem; color: var(--hint); font-weight: 700; }
/* Carte cliquable -> page detail */
.feature-card-link { display: flex; flex-direction: column; height: 100%; color: inherit; }
.feature-more { margin-top: 16px; font-weight: 700; color: var(--deep-blue); display: inline-flex; align-items: center; gap: 6px; transition: gap 0.2s ease; }
.feature-card:hover .feature-more { gap: 11px; }
.feature-more svg { width: 17px; height: 17px; }

/* ---------- Feature detail page ---------- */
.feat-hero { text-align: center; padding-block: clamp(40px, 7vw, 84px);
  background: linear-gradient(180deg, color-mix(in srgb, var(--feat) 16%, var(--cream)) 0%, var(--cream) 100%); }
.feat-icon { width: 116px; height: 116px; border-radius: 30px; margin: 0 auto 22px;
  display: grid; place-items: center; background: color-mix(in srgb, var(--feat) 22%, #fff); box-shadow: var(--shadow-md); }
.feat-icon img { width: 58px; height: 58px; }
.feat-hero .eyebrow { color: color-mix(in srgb, var(--feat) 60%, var(--ink)); }
.feat-hero h1 { font-size: clamp(2rem, 5.5vw, 3.2rem); }
.feat-lead { font-family: var(--font-display); font-size: clamp(1.15rem, 3vw, 1.5rem); color: var(--muted); max-width: 660px; margin: 0 auto; }
.feat-tips { list-style: none; margin-top: 0.8em; }
.feat-tips li { position: relative; padding: 12px 0 12px 34px; font-size: 1.05rem; color: var(--ink); border-bottom: 1px solid rgba(36,47,103,0.06); }
.feat-tips li::before { content: ""; position: absolute; inset-inline-start: 4px; top: 20px; width: 11px; height: 11px; border-radius: 50%; background: var(--feat); }
.feat-faq { margin-top: 1.2em; }

/* ---------- Legal pages (privacy, terms) ---------- */
.legal { max-width: 760px; margin-inline: auto; color: var(--ink); }
.legal h1 { font-size: clamp(2rem, 5vw, 2.8rem); margin-bottom: 0.15em; }
.legal .legal-updated { color: var(--hint); font-size: 0.9rem; margin-bottom: 1.8em; }
.legal h2 { font-size: clamp(1.4rem, 3.2vw, 1.85rem); margin-top: 1.8em; margin-bottom: 0.4em; }
.legal h3 { font-size: clamp(1.15rem, 2.6vw, 1.4rem); margin-top: 1.4em; margin-bottom: 0.3em; }
.legal h4 { font-size: 1.08rem; margin-top: 1.1em; margin-bottom: 0.2em; color: var(--deep-blue); }
.legal p { color: var(--muted); line-height: 1.75; margin: 0 0 1em; }
.legal ul { margin: 0 0 1.2em; padding-inline-start: 22px; }
.legal li { color: var(--muted); line-height: 1.7; margin-bottom: 0.5em; }
.legal li strong { color: var(--ink); }
.legal a { color: var(--blue-3); font-weight: 600; }
.legal a:hover { color: var(--deep-blue); text-decoration: underline; }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 4vw, 40px); counter-reset: step; }
.step { text-align: center; position: relative; }
.step .step-num {
  width: 56px; height: 56px; border-radius: 50%; background: var(--accent-bg); color: var(--deep-blue);
  font-family: var(--font-display); font-size: 1.5rem; display: grid; place-items: center;
  margin: 0 auto 18px; box-shadow: 0 5px 0 var(--accent-shadow);
}
.step p { color: var(--muted); }

/* ---------- Benefits (split) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.benefit-list li { display: flex; gap: 14px; align-items: flex-start; padding: 12px 0; font-size: 1.05rem; }
.benefit-list li::before {
  content: "✓"; flex: none; width: 28px; height: 28px; border-radius: 50%;
  background: #d9f0d0; color: var(--grass, #5a8a2a); font-weight: 800; display: grid; place-items: center; font-size: 0.9rem;
}
.benefit-visual { background: linear-gradient(160deg, var(--happy-bg), var(--home-cloud) 60%, var(--cream)); border-radius: var(--radius-xl); padding: clamp(28px, 4vw, 48px); text-align: center; box-shadow: var(--shadow-sm); display: flex; justify-content: center; align-items: center; }

/* ---------- Archetypes / Onboarding ---------- */
.archetypes { background: linear-gradient(180deg, var(--cream) 0%, var(--home-cloud) 100%); }
.archetype-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(12px, 1.4vw, 18px); }
.arch-card {
  background: var(--white); border-radius: var(--radius-lg); padding: clamp(20px, 2.4vw, 28px) 16px;
  text-align: center; box-shadow: var(--shadow-sm); border: 1px solid rgba(36,47,103,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.arch-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.arch-avatar { width: 74px; height: 74px; border-radius: 50%; display: grid; place-items: center; margin: 0 auto 14px; }
.arch-avatar img { width: 46px; height: 46px; }
.arch-card h3 { font-size: 1.12rem; margin-bottom: 0.35em; }
.arch-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.45; margin: 0; }

.arch-result {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(28px, 5vw, 64px);
  align-items: center; margin-top: clamp(40px, 6vw, 72px);
}
.arch-result .mockup { margin-inline: auto; }
.arch-result-copy h3 { font-size: clamp(1.4rem, 3vw, 1.9rem); margin-bottom: 0.5em; }
.arch-result-copy > p { color: var(--muted); font-size: 1.05rem; }
.arch-note { color: var(--hint); font-size: 0.9rem; font-style: italic; margin: 14px 0 22px; }
.arch-card-link { display: block; color: inherit; height: 100%; }

/* ---------- Archetype detail page ---------- */
.breadcrumb { background: var(--cream); font-size: 0.85rem; padding-block: 14px; border-bottom: 1px solid rgba(36,47,103,0.06); }
.breadcrumb .container { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.breadcrumb a { color: var(--blue-3); font-weight: 600; }
.breadcrumb a:hover { color: var(--deep-blue); }
.breadcrumb [aria-current="page"] { color: var(--ink); font-weight: 600; }
.breadcrumb span[aria-hidden] { color: var(--hint); }

.arch-hero { text-align: center; padding-block: clamp(40px, 7vw, 84px);
  background: linear-gradient(180deg, color-mix(in srgb, var(--arch) 16%, var(--cream)) 0%, var(--cream) 100%); }
.arch-hero-avatar { width: 132px; height: 132px; border-radius: 50%; margin: 0 auto 22px;
  display: grid; place-items: center; background: color-mix(in srgb, var(--arch) 24%, #fff); box-shadow: var(--shadow-md); }
.arch-hero-avatar img { width: 84px; height: 84px; }
.arch-hero .eyebrow { color: color-mix(in srgb, var(--arch) 55%, var(--ink)); }
.arch-hero h1 { font-size: clamp(2.2rem, 6vw, 3.4rem); }
.arch-tagline { font-family: var(--font-display); font-size: clamp(1.15rem, 3vw, 1.5rem); color: var(--muted); margin: 0; }

.arch-narrow { max-width: 720px; }
.arch-body h2 { font-size: clamp(1.35rem, 3.2vw, 1.85rem); margin-top: 1.7em; }
.arch-portrait { font-size: 1.15rem; color: var(--ink); line-height: 1.75; }
.arch-signs li { position: relative; padding: 12px 0 12px 34px; font-size: 1.05rem; color: var(--ink); border-bottom: 1px solid rgba(36,47,103,0.06); }
.arch-signs li::before { content: ""; position: absolute; inset-inline-start: 4px; top: 20px; width: 11px; height: 11px; border-radius: 50%; background: var(--arch); }

.arch-callout { border-radius: var(--radius-lg); padding: clamp(22px, 3vw, 30px); margin-top: 1.5em;
  border-inline-start: 5px solid var(--arch); background: color-mix(in srgb, var(--arch) 9%, #fff); }
.arch-callout h2 { margin-top: 0; }
.arch-callout p { margin: 0; color: var(--ink); font-size: 1.05rem; line-height: 1.7; }
.arch-need { border-inline-start-color: #80a848; background: #f1f7ec; }

.arch-plan { display: grid; gap: 14px; }
.arch-step { display: flex; gap: 16px; align-items: flex-start; background: var(--white);
  border: 1px solid rgba(36,47,103,0.06); border-radius: var(--radius); padding: 18px 20px; box-shadow: var(--shadow-sm); }
.arch-step-num { flex: none; width: 40px; height: 40px; border-radius: 50%; background: var(--arch); color: #fff;
  font-family: var(--font-display); font-size: 1.15rem; display: grid; place-items: center; }
.arch-step-body h3 { margin: 0 0 0.2em; font-size: 1.1rem; }
.arch-step-body p { margin: 0; color: var(--muted); }

.arch-timeline { margin-top: 0.6em; border-inline-start: 2px solid color-mix(in srgb, var(--arch) 35%, #fff); padding-inline-start: 24px; }
.arch-ms { position: relative; padding: 11px 0; }
.arch-ms::before { content: ""; position: absolute; inset-inline-start: -31px; top: 17px; width: 12px; height: 12px;
  border-radius: 50%; background: var(--arch); box-shadow: 0 0 0 4px color-mix(in srgb, var(--arch) 20%, #fff); }
.arch-ms-week { display: inline-block; min-width: 44px; font-family: var(--font-display);
  color: color-mix(in srgb, var(--arch) 55%, var(--ink)); margin-inline-end: 10px; }
.arch-ms-label { color: var(--ink); }

.arch-cta .stores { justify-content: center; margin-top: 26px; }
.arch-cta .store-badge { background: #fff; color: var(--deep-blue); }
.arch-others .archetype-grid { grid-template-columns: repeat(4, 1fr); }

/* ---------- Social proof ---------- */
.proof-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.proof-card { background: var(--white); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); border: 1px solid rgba(36,47,103,0.05); }
.proof-card .stars { color: #ffb74d; letter-spacing: 2px; margin-bottom: 12px; }
.proof-card p { color: var(--ink); font-size: 1.02rem; }
.proof-card .who { color: var(--hint); font-weight: 700; font-size: 0.85rem; margin-top: 8px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 800px; margin-inline: auto; }
.faq-item { background: var(--white); border-radius: var(--radius); margin-bottom: 12px; box-shadow: var(--shadow-sm); border: 1px solid rgba(36,47,103,0.05); overflow: hidden; }
.faq-item > summary {
  list-style: none; cursor: pointer; padding: 20px 24px; font-weight: 700; font-size: 1.05rem;
  color: var(--deep-blue); display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary::after { content: "+"; font-size: 1.5rem; color: var(--blue-3); flex: none; transition: transform 0.2s; font-family: var(--font-display); }
.faq-item[open] > summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 24px 22px; color: var(--muted); }
.faq-item .faq-body p { margin: 0; }

/* ---------- Final CTA ---------- */
.cta-final { background: linear-gradient(155deg, var(--blue-3), var(--blue-5)); color: var(--white); text-align: center; border-radius: 0; }
.cta-final h2 { color: var(--white); }
.cta-final .lead { color: rgba(255,255,255,0.85); }
.cta-final .stores { justify-content: center; margin-top: 28px; }
.cta-final .store-badge { background: var(--white); color: var(--deep-blue); }
.cta-final .cta-note { margin-top: 18px; color: rgba(255,255,255,0.75); font-size: 0.88rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--cream-2); color: var(--muted); padding-block: clamp(48px, 7vw, 72px) 32px; font-size: 0.92rem; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; margin-bottom: 36px; }
.footer-brand .brand { margin-bottom: 14px; }
.footer-brand p { max-width: 420px; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; align-items: flex-start; justify-content: flex-end; }
.footer-links a { font-weight: 600; color: var(--muted); }
.footer-links a:hover { color: var(--deep-blue); }
.footer-langs { border-top: 1px solid rgba(36,47,103,0.10); padding-top: 26px; margin-bottom: 26px; }
.footer-langs .lang-title { font-weight: 700; color: var(--deep-blue); margin-bottom: 14px; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; }
.footer-langs ul { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 6px 16px; }
.footer-langs a { color: var(--muted); font-size: 0.86rem; }
.footer-langs a:hover, .footer-langs a[aria-current="true"] { color: var(--deep-blue); font-weight: 700; }
.footer-bottom { border-top: 1px solid rgba(36,47,103,0.10); padding-top: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; align-items: center; }
.footer-bottom a { color: var(--muted); font-weight: 600; }
.footer-bottom a:hover { color: var(--deep-blue); }
.footer-disclaimer { font-size: 0.8rem; color: var(--hint); max-width: 760px; margin-top: 14px; }

/* ---------- Skip link / a11y ---------- */
.skip-link { position: absolute; inset-inline-start: -9999px; top: 0; background: var(--deep-blue); color: #fff; padding: 10px 16px; border-radius: 0 0 10px 0; z-index: 100; }
.skip-link:focus { inset-inline-start: 0; }
:focus-visible { outline: 3px solid var(--blue-2); outline-offset: 2px; border-radius: 4px; }

/* ---------- RTL ---------- */
[dir="rtl"] .hero-rating, [dir="rtl"] .stores { direction: rtl; }
[dir="rtl"] .store-badge .store-badge__text { text-align: start; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { max-width: none; margin-inline: auto; }
  .hero .stores, .hero-rating { justify-content: center; }
  .hero-visual { order: -1; }
  .split { grid-template-columns: 1fr; }
  .benefit-visual { order: -1; }
  .trust-band .container { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  .archetype-grid { grid-template-columns: repeat(3, 1fr); }
  .arch-result { grid-template-columns: 1fr; text-align: center; }
  .arch-result-copy .btn { margin-inline: auto; }
}
@media (max-width: 760px) {
  .main-nav { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .archetype-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; gap: 28px; }
  .proof-cards { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 420px) {
  .stores { width: 100%; }
  .store-badge { flex: 1 1 auto; justify-content: center; }
}
