:root {
  --bg: #f8f6f3;
  --bg-elevated: #ffffff;
  --bg-card: #ffffff;
  --ink: #16110f;
  --muted: #6c625d;
  --muted-2: #8e817a;
  --orange: #ea580c;
  --orange-dark: #c2410c;
  --orange-soft: rgba(234, 88, 12, 0.15);
  --border: rgba(22, 17, 15, 0.1);
  --green-wa: #25d366;
  --wrap: 1180px;
  --radius: 1rem;
  --radius-lg: 1.25rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  font-size: 1rem;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(22, 17, 15, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(22, 17, 15, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
  z-index: -1;
}

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

img {
  max-width: 100%;
  height: auto;
}

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 960px) {
  .wrap {
    padding: 0 1.75rem;
  }
}

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 246, 243, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4rem;
  gap: 1rem;
}

.logo {
  font-weight: 900;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  flex-shrink: 0;
}

.logo span {
  color: var(--orange);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.nav-links a:not(.btn) {
  color: var(--muted);
}

.nav-links a:not(.btn):hover {
  color: var(--ink);
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 55%, #dc4d08 100%);
  color: #fff;
  box-shadow: 0 14px 28px -14px rgba(234, 88, 12, 0.65);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #fb923c 0%, #ea580c 55%, #c2410c 100%);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  border-color: rgba(22, 17, 15, 0.18);
  background: rgba(255, 255, 255, 0.72);
}

.btn-arrow::after {
  content: '→';
  font-weight: 800;
  margin-left: 0.15rem;
}

.btn-block {
  width: 100%;
}

.btn-wa {
  background: var(--green-wa);
  color: #fff;
}

.btn-wa:hover {
  filter: brightness(1.06);
}

/* ——— Hero ——— */
.hero {
  padding: 3.25rem 0 3.8rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: -40% -20% auto -20%;
  height: 70%;
  background: radial-gradient(ellipse at 50% 0%, rgba(234, 88, 12, 0.18), transparent 55%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: auto -25% -35% -25%;
  height: 60%;
  background: radial-gradient(ellipse at 50% 100%, rgba(252, 146, 55, 0.14), transparent 62%);
  pointer-events: none;
}

@media (min-width: 768px) {
  .hero {
    padding: 5.2rem 0 4.4rem;
  }
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 960px) {
  .hero-grid {
    grid-template-columns: 1.08fr 0.92fr;
    gap: 4.1rem;
  }
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  background: var(--orange-soft);
  color: #fdba74;
  border: 1px solid rgba(234, 88, 12, 0.35);
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-size: clamp(2.1rem, 4.8vw, 3.35rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.08;
  margin-bottom: 1.05rem;
  max-width: 22rem;
}

@media (min-width: 960px) {
  .hero h1 {
    max-width: 26rem;
  }
}

.hero h1 .accent {
  background: linear-gradient(135deg, #fb923c 0%, #ea580c 52%, #c2410c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero .lead {
  font-size: 1.14rem;
  color: var(--muted);
  max-width: 38rem;
  margin-bottom: 1.95rem;
  line-height: 1.58;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 0.65rem;
}

.hero-cta-micro {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted-2);
  margin-bottom: 1rem;
}

.hero-risk {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 36rem;
  line-height: 1.5;
  margin-bottom: 1.35rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(22, 17, 15, 0.08);
  background: rgba(255, 255, 255, 0.55);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted-2);
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.hero-trust span::before {
  content: '';
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.85;
}

/* Stats strip */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin-top: 2.2rem;
}

@media (min-width: 640px) {
  .stats-strip {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-box {
  background: linear-gradient(180deg, #ffffff 0%, #f8f6f3 130%);
  border: 1px solid rgba(22, 17, 15, 0.085);
  border-radius: var(--radius);
  padding: 1.05rem 1.1rem;
  text-align: left;
  box-shadow: 0 10px 24px -20px rgba(22, 17, 15, 0.4);
}

.stat-box strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: -0.02em;
}

.stat-box span {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted-2);
  margin-top: 0.2rem;
}

.stat-box p {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.4rem;
  line-height: 1.4;
}

/* Hero preview (mockup image) */
.hero-preview {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(22, 17, 15, 0.12);
  background: linear-gradient(165deg, #f0ebe6 0%, #e8e2dc 45%, #ddd6cf 100%);
  box-shadow:
    0 46px 88px -50px rgba(22, 17, 15, 0.52),
    0 16px 40px -24px rgba(22, 17, 15, 0.24);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: block;
  text-align: left;
  transform: perspective(1100px) rotateY(-4deg) rotateX(1.6deg);
  transform-origin: left center;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  --mx: 50%;
  --my: 50%;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
}

.hero-preview-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.hero-preview::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(360px circle at var(--mx) var(--my), rgba(255, 255, 255, 0.34), transparent 58%);
  opacity: 0;
  transition: opacity 0.22s ease;
  pointer-events: none;
}

.hero-preview.is-hovered {
  transform: perspective(1100px) rotateY(calc(-4deg + var(--tilt-y))) rotateX(calc(1.6deg + var(--tilt-x))) translateY(-2px);
  box-shadow:
    0 56px 96px -52px rgba(22, 17, 15, 0.54),
    0 22px 44px -26px rgba(22, 17, 15, 0.28);
}

.hero-preview.is-hovered::after {
  opacity: 1;
}

@media (max-width: 959px) {
  .hero-preview {
    transform: none;
  }

  .hero-preview.is-hovered {
    transform: none;
  }
}

/* Téléphone : ne pas forcer un ratio “boîte vide” — le PNG définit la hauteur, cadre équilibré */
.hero-preview--phone {
  aspect-ratio: auto;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1.35rem, 4vw, 2.15rem) clamp(1.1rem, 3vw, 1.75rem);
  margin-inline: auto;
  max-width: min(320px, 100%);
  background: radial-gradient(120% 90% at 50% 42%, #f7f4f0 0%, #ebe6e0 52%, #e3ddd6 100%);
}

.hero-preview--phone .hero-preview-img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: min(68vh, 540px);
  object-fit: contain;
  object-position: center;
  flex-shrink: 0;
  filter: drop-shadow(0 18px 36px rgba(22, 17, 15, 0.18));
}

@media (min-width: 960px) {
  .hero-preview--phone {
    max-width: none;
    width: 100%;
    margin-inline: 0;
    padding: clamp(1.5rem, 3vw, 2.25rem);
    align-self: center;
  }

  .hero-preview--phone .hero-preview-img {
    max-height: min(74vh, 580px);
  }
}

/* ——— Mockups (section aperçus) ——— */
.mockup-showcase .mockups-grid {
  display: grid;
  gap: 1.75rem;
  align-items: start;
}

.mockup-figure {
  margin: 0;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(22, 17, 15, 0.1);
  background: linear-gradient(165deg, #f5f1ed 0%, #ebe5df 100%);
  box-shadow: 0 20px 48px -28px rgba(22, 17, 15, 0.35);
  overflow: hidden;
}

.mockup-figure img {
  width: 100%;
  height: auto;
  display: block;
}

.mockup-figure figcaption {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted-2);
  padding: 0.65rem 1rem 0.85rem;
  letter-spacing: 0.02em;
}

.mockup-figure--wide {
  grid-column: 1 / -1;
}

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

@media (min-width: 900px) {
  .mockup-showcase .mockups-grid {
    grid-template-columns: 1fr;
  }
}

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

/* ——— Sections génériques ——— */
.section {
  padding: 4rem 0;
  border-top: 1px solid var(--border);
}

@media (min-width: 960px) {
  .section {
    padding: 5.75rem 0;
  }
}

.section-kicker {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange);
  margin-bottom: 0.65rem;
}

.section h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.12;
  margin-bottom: 0.75rem;
}

.section h2 .accent {
  color: var(--orange);
}

.section .sub {
  color: var(--muted);
  max-width: 40rem;
  margin-bottom: 2rem;
  font-size: 1.02rem;
}

@media (min-width: 960px) {
  .section .sub {
    font-size: 1.07rem;
    margin-bottom: 2.35rem;
    max-width: 46rem;
  }
}

/* ——— Problem (tabs) ——— */
.problem-head {
  margin-bottom: 2rem;
}

.problem-layout {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .problem-layout {
    grid-template-columns: repeat(4, 1fr);
    align-items: start;
    gap: 1rem;
  }
}

.problem-item {
  background: transparent;
  border: none;
  padding: 0;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
  border-radius: var(--radius);
  transition: background 0.2s ease;
}

.problem-item:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 4px;
}

.problem-num {
  font-size: clamp(2.5rem, 6vw, 3.25rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(168, 162, 158, 0.45);
  margin-bottom: 0.65rem;
  transition: color 0.2s, -webkit-text-stroke 0.2s;
}

.problem-item.is-active .problem-num {
  color: var(--orange);
  -webkit-text-stroke: 0 transparent;
}

.problem-title {
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 0.5rem;
}

.problem-title .hl {
  color: var(--orange);
}

.problem-detail {
  display: none;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
  padding-top: 0.35rem;
  border-top: 2px solid transparent;
}

.problem-item.is-active .problem-detail {
  display: block;
  border-top-color: var(--orange);
  margin-top: 0.35rem;
  padding-top: 0.75rem;
}

.problem-bridge {
  margin-top: 2.5rem;
  padding: 1.35rem 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.pain-checklist {
  list-style: none;
  display: grid;
  gap: 1rem;
  max-width: 44rem;
}

@media (min-width: 720px) {
  .pain-checklist {
    gap: 1.15rem;
  }
}

.pain-checklist li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1rem 1.15rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--ink);
}

.pain-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg, #c2410c, #ea580c);
}

.founder-note {
  margin-top: 2rem;
  padding: 1.5rem 1.65rem;
  border-left: 4px solid var(--orange);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: rgba(234, 88, 12, 0.06);
  max-width: 42rem;
}

.founder-note p {
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--muted);
  font-style: italic;
}

.founder-note footer {
  margin-top: 1rem;
  font-size: 0.88rem;
  font-weight: 700;
  font-style: normal;
  color: var(--ink);
}

.trust-section .sub {
  max-width: 40rem;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.75rem;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--ink);
}

.trust-badge--muted {
  font-weight: 700;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.6);
}

.pioneer-section .pioneer-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(234, 88, 12, 0.35);
  background: linear-gradient(165deg, #fff 0%, rgba(255, 247, 237, 0.95) 100%);
  padding: 2rem 1.75rem;
  box-shadow: 0 24px 48px -32px rgba(234, 88, 12, 0.35);
}

@media (min-width: 640px) {
  .pioneer-section .pioneer-card {
    padding: 2.35rem 2.25rem;
  }
}

.pioneer-lead {
  margin-top: 0.75rem;
  font-size: 1.05rem;
  line-height: 1.58;
  color: var(--muted);
  max-width: 44rem;
}

.pioneer-spots {
  margin-top: 1.35rem;
  font-size: 1.05rem;
  color: var(--ink);
}

.pioneer-spots strong {
  color: var(--orange);
  font-size: 1.35rem;
  font-weight: 900;
}

.pioneer-spots-hint {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted-2);
}

.pioneer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.pioneer-legal {
  margin-top: 1.25rem;
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--muted-2);
  max-width: 40rem;
}

/* ——— Feature grids ——— */
.grid-features {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .grid-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .grid-features.cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.4rem;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: attr(data-step);
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--muted-2);
  letter-spacing: 0.08em;
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
  padding-right: 2.5rem;
}

.feature-card .tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: #fdba74;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

/* Steps */
.steps-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.35rem;
}

.step-card .step-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: -0.03em;
  margin-bottom: 0.35rem;
}

.step-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.step-card .step-meta {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted-2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ——— Pricing ——— */
.pricing-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
    gap: 1.6rem;
  }
}

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
}

@media (min-width: 960px) {
  .price-card {
    padding: 2.1rem 1.85rem;
  }
}

.price-card > a.btn {
  margin-top: auto;
}

.price-card.featured {
  border-color: rgba(234, 88, 12, 0.45);
  box-shadow: 0 0 0 1px rgba(234, 88, 12, 0.12);
}

.price-badge {
  position: absolute;
  top: -0.65rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  white-space: nowrap;
}

.price-card h3 {
  font-size: 1.35rem;
  font-weight: 900;
  margin-bottom: 0.35rem;
}

.price-card .pitch {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
  min-height: 2.8rem;
}

.price-tag {
  margin-bottom: 0.35rem;
}

.price-tag strong {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: -0.03em;
}

.price-tag span {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 600;
}

.price-tag-eur {
  display: block;
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  color: var(--muted-2) !important;
  margin-top: 0.15rem;
}

.price-card .audience {
  font-size: 0.82rem;
  color: var(--muted-2);
  margin-bottom: 1.25rem;
  line-height: 1.45;
}

.price-list-label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0.85rem 0 0.35rem;
}

.price-list-label--muted {
  color: var(--muted-2);
  margin-top: 1rem;
}

.price-card .price-list {
  list-style: none;
  margin: 0 0 0.25rem;
  flex: 0 0 auto;
}

.price-card .price-list--included {
  flex: 1;
  min-height: 0;
}

.price-card .price-list li {
  font-size: 0.86rem;
  padding: 0.4rem 0 0.4rem 1.15rem;
  position: relative;
  border-bottom: 1px solid var(--border);
  line-height: 1.4;
}

.price-card .price-list li:last-child {
  border-bottom: none;
}

.price-card .price-list--included li {
  color: var(--ink);
}

.price-card .price-list--included li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.2);
}

.price-card .price-list--excluded li {
  color: var(--muted-2);
  font-size: 0.82rem;
}

.price-card .price-list--excluded li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--muted-2);
  font-weight: 900;
  font-size: 1rem;
  line-height: 1;
}

.price-footnote {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.88rem;
  color: var(--muted);
}

/* ——— FAQ ——— */
.faq-list {
  max-width: 720px;
}

.faq-list details {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.65rem;
  overflow: hidden;
}

.faq-list summary {
  padding: 1rem 1.15rem;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.faq-list summary::after {
  content: '+';
  font-weight: 900;
  color: var(--orange);
  font-size: 1.25rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: '−';
}

.faq-list .faq-a {
  padding: 0 1.15rem 1.1rem;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
}

.faq-hint {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

/* ——— CTA band ——— */
.cta-band {
  text-align: center;
  padding: 3.5rem 1.5rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(234, 88, 12, 0.14) 0%, var(--bg-card) 45%, var(--bg-elevated) 100%);
  border: 1px solid rgba(234, 88, 12, 0.25);
  margin: 1rem 0 2rem;
}

@media (min-width: 960px) {
  .cta-band {
    padding: 4.2rem 2.2rem;
    margin: 1.25rem 0 2.75rem;
  }
  .cta-band > p {
    max-width: 42rem;
  }
}

.cta-band h2 {
  font-size: clamp(1.65rem, 3.5vw, 2.2rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

.cta-band h2 .accent {
  color: var(--orange);
}

.cta-band > p {
  color: var(--muted);
  margin-bottom: 1.5rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.cta-micro {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: center;
  font-size: 0.82rem;
  color: var(--muted-2);
  font-weight: 600;
}

/* ——— Form join ——— */
.join-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  box-shadow: 0 24px 60px -30px rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
  .join-section {
    padding: 2.5rem;
  }
}

@media (min-width: 960px) {
  .join-section {
    padding: 3rem 3rem;
  }
}

.form-grid {
  display: grid;
  gap: 1.1rem;
}

@media (min-width: 640px) {
  .form-grid.form-grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.35rem;
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--bg-elevated);
  color: var(--ink);
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  outline: 2px solid rgba(234, 88, 12, 0.45);
  border-color: var(--orange);
}

.honeypot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-msg {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  display: none;
}

.form-msg.ok {
  display: block;
  background: rgba(16, 185, 129, 0.15);
  color: #6ee7b7;
  border: 1px solid rgba(16, 185, 129, 0.35);
}

.form-msg.err {
  display: block;
  background: rgba(239, 68, 68, 0.12);
  color: #fca5a5;
  border: 1px solid rgba(239, 68, 68, 0.35);
}

.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

/* ——— Footer ——— */
.site-footer {
  padding: 3.5rem 0 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--muted);
}

.footer-top {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .footer-top {
    grid-template-columns: 1.4fr repeat(3, 1fr);
  }
}

.footer-brand .logo {
  margin-bottom: 0.75rem;
}

.footer-brand p {
  max-width: 22rem;
  line-height: 1.55;
}

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-2);
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col a {
  display: block;
  padding: 0.35rem 0;
  color: var(--muted);
}

.footer-col a:hover {
  color: var(--orange);
}

.social-row {
  display: flex;
  gap: 0.65rem;
  margin-top: 1rem;
}

.social-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--muted);
}

.social-row a:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer-legal a {
  color: var(--muted-2);
}

.footer-legal a:hover {
  color: var(--orange);
}

/* ——— WhatsApp float ——— */
.wa-float {
  position: fixed;
  right: 1.15rem;
  bottom: 1.15rem;
  z-index: 60;
  width: 3.35rem;
  height: 3.35rem;
  border-radius: 50%;
  background: var(--green-wa);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
  transition: transform 0.15s ease, filter 0.15s ease;
}

.wa-float:hover {
  transform: scale(1.06);
  filter: brightness(1.05);
}

.wa-float svg {
  width: 1.65rem;
  height: 1.65rem;
  fill: currentColor;
}

/* ——— Responsive nav ——— */
@media (max-width: 900px) {
  .nav-links {
    gap: 0.65rem;
  }
  .hide-nav-md {
    display: none;
  }
}

@media (max-width: 640px) {
  .hide-sm {
    display: none;
  }
}



/* --- Animation system --- */
.section,
.feature-card,
.step-card,
.price-card,
.hero-preview,
.stat-box,
.join-section,
.faq-list details,
.problem-item {
  will-change: transform, opacity;
}

.section,
.feature-card,
.step-card,
.price-card,
.hero-preview,
.stat-box,
.join-section,
.faq-list details {
  opacity: 0;
  transform: translateY(22px) scale(0.985);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(.22,.61,.36,1);
}

.is-visible {
  opacity: 1 !important;
  transform: none !important;
}

.hero h1,
.hero .lead,
.hero-cta,
.hero-trust,
.stats-strip {
  animation: fadeUp 0.8s cubic-bezier(.22,.61,.36,1) both;
}

.hero .lead { animation-delay: .08s; }
.hero-cta { animation-delay: .16s; }
.hero-trust { animation-delay: .24s; }
.stats-strip { animation-delay: .3s; }
.hero-preview { animation: floatIn 1s cubic-bezier(.22,.61,.36,1) .12s both; }

.feature-card:hover,
.step-card:hover,
.price-card:hover,
.stat-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -24px rgba(22, 17, 15, 0.34);
  border-color: rgba(234, 88, 12, 0.35);
}

.problem-item {
  transition: transform .25s ease, background .25s ease;
}
.problem-item:hover {
  transform: translateY(-3px);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

@keyframes floatIn {
  0% { opacity: 0; transform: translateY(16px) scale(.985); }
  100% { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .section,
  .feature-card,
  .step-card,
  .price-card,
  .hero-preview,
  .stat-box,
  .join-section,
  .faq-list details { opacity: 1; transform: none; }
  .hero-preview {
    transform: perspective(1100px) rotateY(-4deg) rotateX(1.6deg);
  }
}

/* --- Cookies banner --- */
.footer-cookie-btn {
  background: transparent;
  border: 0;
  padding: 0;
  color: inherit;
  font: inherit;
  text-decoration: underline;
  cursor: pointer;
  opacity: 0.85;
}
.footer-cookie-btn:hover { opacity: 1; }

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  display: none;
}
.cookie-banner.is-open { display: block; }
.cookie-banner__card {
  max-width: 980px;
  margin: 0 auto;
  background: rgba(16,16,16,0.92);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 16px 16px;
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 60px -30px rgba(0,0,0,0.65);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.cookie-banner__text strong {
  display: inline-block;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.cookie-banner__text p {
  margin: 0;
  color: rgba(245,245,244,0.82);
  line-height: 1.35;
}
.cookie-banner__text a {
  color: #f5f5f4;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
@media (max-width: 720px) {
  .cookie-banner__card { flex-direction: column; align-items: stretch; }
  .cookie-banner__actions { justify-content: stretch; }
  .cookie-banner__actions .btn { width: 100%; }
}

/* --- Global error banner (failsafe UX) --- */
.global-error {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: flex-end;
  justify-content: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(6px);
}
.global-error.is-open { display: flex; }
.global-error__card {
  width: 100%;
  max-width: 860px;
  background: rgba(20, 20, 20, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 18px 18px;
  box-shadow: 0 18px 60px -30px rgba(0,0,0,0.7);
}
.global-error__title {
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.global-error__msg {
  color: rgba(245,245,244,0.82);
  line-height: 1.4;
  margin-bottom: 14px;
}
.global-error__actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

/* ——— Genius Pay & Payment Partner ——— */
.trust-badge--highlight {
  background: linear-gradient(135deg, #1e3a5f 0%, #0d2137 100%);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
  font-weight: 800;
}

.trust-badge--highlight::before {
  content: '★';
  margin-right: 0.4rem;
  color: #ffd700;
}

.trust-badge--crypto {
  background: linear-gradient(135deg, #00d4aa 0%, #00a884 100%);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
  font-weight: 800;
}

.trust-badge--crypto::before {
  content: '◈';
  margin-right: 0.4rem;
  color: #ffd700;
}

.payment-partner-note {
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.08) 0%, rgba(13, 33, 55, 0.04) 100%);
  border-radius: var(--radius);
  border-left: 3px solid #1e3a5f;
}

.payment-partner-note p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink);
  margin: 0;
}

.highlight-brand {
  color: #1e3a5f;
  font-weight: 700;
}

.highlight-crypto {
  color: #00a884;
  font-weight: 700;
}

.highlight-cash {
  color: #ea580c;
  font-weight: 700;
}

.payment-options-note {
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, rgba(0, 212, 170, 0.08) 0%, rgba(0, 168, 132, 0.04) 100%);
  border-radius: var(--radius);
  border-left: 3px solid #00a884;
}

.payment-options-note p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink);
  margin: 0;
}

/* ——— Restaurants Trust Section ——— */
.restaurants-trust-section {
  background: linear-gradient(180deg, var(--bg) 0%, rgba(248, 246, 243, 0.5) 100%);
}

.restaurant-logo-carousel {
  overflow: hidden;
  margin-top: 1.75rem;
}

.restaurant-logo-track {
  display: flex;
  gap: 1rem;
  align-items: center;
  width: max-content;
  animation: scroll-logos 30s linear infinite;
  padding-bottom: 0.25rem;
}

.restaurant-logo-item {
  flex: 0 0 115px;
  aspect-ratio: 1;
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.08), rgba(234, 88, 12, 0.14));
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  box-shadow: 0 14px 32px -18px rgba(22, 17, 15, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.restaurant-logo-item::before {
  content: "";
  display: block;
  width: 54%;
  height: 54%;
  border-radius: 50%;
  background: rgba(30, 58, 95, 0.16);
  box-shadow: inset 0 0 0 10px rgba(255, 255, 255, 0.45);
}

@media (min-width: 640px) {
  .restaurant-logo-item {
    flex: 0 0 140px;
  }
}

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

/* ——— Partnership Section ——— */
.partnership-section {
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.06) 0%, rgba(13, 33, 55, 0.03) 100%);
}

.partnership-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 48px -32px rgba(30, 58, 95, 0.2);
}

@media (min-width: 768px) {
  .partnership-card {
    grid-template-columns: 1.2fr 0.8fr;
    padding: 2.5rem 2.25rem;
  }
}

.partnership-content h2 {
  font-size: clamp(1.35rem, 1.2vw + 1rem, 1.75rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-top: 0.5rem;
}

.partnership-desc {
  margin-top: 0.85rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--muted);
  max-width: 44rem;
}

.partnership-benefits {
  list-style: none;
  margin-top: 1.25rem;
  display: grid;
  gap: 0.65rem;
}

.partnership-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.95rem;
  color: var(--ink);
}

.partnership-benefits .check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  background: rgba(30, 58, 95, 0.12);
  border-radius: 50%;
  font-size: 0.75rem;
  color: #1e3a5f;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.partnership-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.geniuspay-badge {
  display: inline-flex;
  align-items: center;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.geniuspay-badge .genius {
  color: #1e3a5f;
}

.geniuspay-badge .pay {
  background: linear-gradient(135deg, #0066ff 0%, #0052cc 100%);
  color: white;
  padding: 0.2rem 0.6rem;
  border-radius: 0.4rem;
  margin-left: 0.3rem;
}

.partnership-tagline {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

