:root {
  --orange: #e4572e;
  --orange-dark: #bd3f1c;
  --orange-soft: #fff0e9;
  --cream: #fbf7f1;
  --cream-2: #f4ede4;
  --ink: #17120e;
  --ink-2: #2b241f;
  --muted: #6f655c;
  --line: rgba(23, 18, 14, 0.12);
  --white: #fff;
  --green: #0d6b5e;
  --green-soft: #e8f5f1;
  --shadow-sm: 0 10px 30px rgba(34, 20, 11, 0.08);
  --shadow-md: 0 28px 70px rgba(34, 20, 11, 0.15);
  --shadow-lg: 0 44px 110px rgba(44, 20, 7, 0.3);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --wrap: 1180px;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Outfit", "Inter", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* Dégage la hauteur de la barre collante mobile : sans cette marge, elle
     recouvre les derniers liens du pied de page (mentions légales, CGU). */
  padding-bottom: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.35;
  background-image:
    radial-gradient(circle at 18% 6%, rgba(228, 87, 46, 0.055), transparent 28%),
    radial-gradient(circle at 82% 40%, rgba(166, 121, 81, 0.045), transparent 24%);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #ffbd9e;
  outline-offset: 4px;
}

.wrap {
  width: min(calc(100% - 40px), var(--wrap));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--white);
  border-radius: 10px;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 5vw, 4.5rem);
}

h3 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
}

.section {
  position: relative;
  padding: clamp(86px, 11vw, 150px) 0;
}

.section--soft {
  background: var(--cream-2);
}

.section--ink {
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 20%, rgba(228, 87, 46, 0.2), transparent 34%),
    var(--ink);
}

.section-kicker,
.eyebrow {
  margin-bottom: 18px;
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.25;
  text-transform: uppercase;
}

.eyebrow--light,
.section-kicker--light {
  color: #ffd2bf;
}

.section-head {
  max-width: 820px;
  margin-bottom: clamp(48px, 7vw, 78px);
}

.section-head p:last-child {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 750;
  line-height: 1.2;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 12px 26px rgba(228, 87, 46, 0.2);
}

.btn-primary:hover {
  background: var(--orange-dark);
  box-shadow: 0 16px 34px rgba(228, 87, 46, 0.28);
}

.btn-light {
  color: var(--orange-dark);
  background: var(--white);
  box-shadow: 0 16px 34px rgba(75, 25, 4, 0.2);
}

.btn-light:hover {
  color: var(--ink);
  box-shadow: 0 20px 44px rgba(75, 25, 4, 0.28);
}

/*
  Bouton WhatsApp — canal principal de conversion.
  Vert WhatsApp officiel (#25D366), volontairement la SEULE surface verte de la
  page : le contraste fait tout le travail de saillance. Ne pas introduire
  d'autres boutons verts, sous peine de diluer ce repère.
*/
.btn-wa {
  color: #fff;
  background: #25d366;
  box-shadow: 0 16px 34px rgba(11, 94, 51, 0.32);
}

.btn-wa:hover {
  color: #fff;
  background: #1fb855;
  box-shadow: 0 20px 44px rgba(11, 94, 51, 0.4);
}

.btn-wa-icon {
  font-size: 1.1em;
  line-height: 1;
}

/*
  Micro-texte de réassurance, collé sous les CTA. La proximité est le point
  essentiel : reléguée en pied de page, cette information ne rassure personne au
  moment où le doute apparaît.
*/
.hero-microcopy {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
}

/*
  Barre d'action collante — mobile uniquement.
  Sans elle, passé le premier écran, plus aucune action n'est visible : le
  visiteur quitte la page sans jamais avoir eu de moyen de contact sous les yeux.
  Masquée à l'impression et pour les utilisateurs qui réduisent les animations
  n'a pas lieu d'être ici — c'est un élément statique.
*/
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  padding: 0.6rem 0.75rem calc(0.6rem + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 28px rgba(34, 20, 11, 0.12);
}

.sticky-cta .btn {
  flex: 1;
  min-height: 48px; /* zone tactile confortable */
  justify-content: center;
  font-size: 0.95rem;
}

.sticky-cta-note {
  display: none;
}

/* Visible uniquement sur mobile : en desktop les CTA restent accessibles. */
@media (min-width: 761px) {
  .sticky-cta {
    display: none;
  }
}

@media print {
  .sticky-cta {
    display: none;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 76px;
  }
}

/* Réassurance sous le bouton du formulaire, même logique que .hero-microcopy :
   l'information doit être là où naît le doute, pas en pied de page. */
.form-microcopy {
  margin: 0.6rem 0 0;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--muted);
  text-align: center;
}

.btn-outline {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
}

.btn-outline:hover {
  background: var(--white);
  border-color: rgba(23, 18, 14, 0.24);
}

.text-link {
  display: inline-flex;
  align-items: center;
  color: var(--orange-dark);
  font-weight: 750;
  transition: opacity 160ms ease;
}

.text-link:hover {
  opacity: 0.7;
}

.text-link--light {
  color: var(--white);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  padding: 18px 0;
  color: var(--white);
  transition:
    padding 220ms ease,
    color 220ms ease,
    background 220ms ease;
}

.site-header.is-scrolled {
  padding: 10px 0;
  color: var(--ink);
  background: transparent;
}

.nav-shell {
  display: flex;
  width: min(calc(100% - 40px), var(--wrap));
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  margin-inline: auto;
  border: 1px solid transparent;
  border-radius: 999px;
  transition:
    padding 220ms ease,
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.site-header.is-scrolled .nav-shell {
  padding: 8px 12px 8px 18px;
  background: rgba(255, 252, 248, 0.78);
  border-color: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 36px rgba(43, 31, 23, 0.1);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
}

.brand-logo {
  width: 154px;
  height: auto;
}

.brand-logo--dark {
  display: none;
}

.site-header.is-scrolled .brand-logo--light {
  display: none;
}

.site-header.is-scrolled .brand-logo--dark {
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav > a:not(.btn) {
  font-size: 0.92rem;
  font-weight: 650;
}

.site-nav > a:not(.btn):hover {
  opacity: 0.7;
}

.btn-nav {
  min-height: 42px;
  padding: 10px 18px;
  color: var(--ink);
  background: var(--white);
}

.site-header.is-scrolled .btn-nav {
  color: var(--white);
  background: var(--orange);
}

.site-header.is-scrolled .site-nav > a:not(.btn) {
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  border-radius: 50%;
  color: inherit;
  background: rgba(255, 255, 255, 0.12);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

/* Hero */
.hero {
  position: relative;
  min-height: 0;
  padding-bottom: clamp(72px, 8vw, 110px);
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(155deg, rgba(168, 50, 16, 0.18), transparent 38%),
    var(--orange);
}

.hero::after {
  position: absolute;
  right: -10%;
  bottom: 8%;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  content: "";
}

.hero-glow {
  position: absolute;
  top: 8%;
  left: 50%;
  width: 900px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255, 187, 147, 0.24);
  filter: blur(120px);
  transform: translateX(-50%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 960px;
  padding-top: 160px;
  text-align: center;
}

.hero-copy h1,
.hero-copy .hero-lead,
.hero-copy .hero-actions,
.hero-copy .hero-reassurance {
  position: relative;
  z-index: 3;
}

.hero h1 {
  max-width: 940px;
  margin: 0 auto 28px;
  font-size: clamp(3.4rem, 7vw, 6.3rem);
  letter-spacing: -0.06em;
}

.hero h1 span {
  color: #ffe2d2;
}

.hero-lead {
  max-width: 740px;
  margin: 0 auto 34px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-lead strong {
  color: var(--white);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.hero-reassurance {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 0;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.84rem;
  font-weight: 650;
  list-style: none;
}

.hero-reassurance li {
  position: relative;
}

.hero-reassurance li + li::before {
  position: absolute;
  top: 50%;
  left: -16px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  content: "";
  transform: translateY(-50%);
}

.hero-device {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), 1080px);
  margin-top: 72px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
}

.hero-device picture {
  display: block;
}

.hero-device img {
  width: 100%;
  aspect-ratio: 1024 / 682;
  object-fit: cover;
}

.hero-window-bar {
  display: flex;
  height: 42px;
  align-items: center;
  gap: 7px;
  padding: 0 16px;
  color: var(--muted);
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.hero-window-bar > span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #d8d0c7;
}

.hero-window-bar > span:first-child {
  background: var(--orange);
}

.hero-window-bar small {
  margin-left: auto;
  font-size: 0.7rem;
  font-weight: 650;
}

/* Trust */
.trust-section {
  position: relative;
  z-index: 4;
  padding: 92px 0 56px;
  background: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 70px;
}

.trust-copy h2 {
  max-width: 650px;
  margin-bottom: 14px;
  font-size: clamp(2.1rem, 4.6vw, 4rem);
}

.trust-copy > p:last-child {
  max-width: 580px;
  margin-bottom: 0;
  color: var(--muted);
}

.payment-proof {
  position: relative;
  padding: 28px 32px;
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.payment-proof::after {
  position: absolute;
  right: -30px;
  bottom: -45px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(228, 87, 46, 0.12);
  content: "";
}

.payment-label {
  display: block;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.kkiapay-logo {
  width: 170px;
  height: auto;
}

.operator-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.operator-row img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  padding: 5px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 11px;
}

.trust-marquee {
  margin-top: 45px;
  overflow: hidden;
}

.restaurant-logo-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 18px;
  animation: trust-marquee 30s linear infinite;
}

.restaurant-logo-track:empty {
  display: none;
}

.restaurant-logo-track--static {
  width: 100%;
  justify-content: center;
  animation: none;
}

.trust-logo-slide {
  display: grid;
  width: 160px;
  height: 76px;
  flex: 0 0 auto;
  place-items: center;
  padding: 13px 18px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.trust-logo-slide img {
  max-width: 120px;
  max-height: 46px;
  object-fit: contain;
}

.trust-logo-fallback {
  display: none;
  color: var(--ink);
  font-weight: 750;
  text-align: center;
}

.trust-logo-slide--text .trust-logo-fallback {
  display: block;
}

.restaurant-logo-track:hover {
  animation-play-state: paused;
}

@keyframes trust-marquee {
  to {
    transform: translateX(calc(-50% - 9px));
  }
}

/* Audiences */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.audience-card {
  position: relative;
  min-height: 440px;
  padding: 34px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.audience-card--accent {
  color: var(--white);
  background: var(--orange);
  border-color: transparent;
  transform: translateY(-18px);
}

.audience-card::after {
  position: absolute;
  right: -60px;
  bottom: -70px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(228, 87, 46, 0.18);
  border-radius: 50%;
  content: "";
}

.audience-card--accent::after {
  border-color: rgba(255, 255, 255, 0.22);
}

.audience-index {
  display: inline-grid;
  width: 44px;
  height: 44px;
  margin-bottom: 70px;
  color: var(--orange);
  background: var(--orange-soft);
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 800;
  place-items: center;
}

.audience-card--accent .audience-index {
  color: var(--orange-dark);
  background: var(--white);
}

.audience-card h3 {
  margin-bottom: 16px;
}

.audience-card p {
  color: var(--muted);
}

.audience-card--accent p,
.audience-card--accent li {
  color: rgba(255, 255, 255, 0.86);
}

.audience-card ol {
  padding-left: 19px;
  margin: 28px 0 0;
  color: var(--ink-2);
  font-size: 0.9rem;
}

.audience-card li + li {
  margin-top: 9px;
}

.section-cta {
  margin-top: 42px;
  text-align: center;
}

/* Problem */
.problem-intro {
  max-width: 840px;
  margin-bottom: 65px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.problem-card {
  padding: 30px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
}

.problem-card > span {
  display: block;
  margin-bottom: 60px;
  color: #ffb08c;
  font-weight: 800;
}

.problem-card h3 {
  margin-bottom: 14px;
}

.problem-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
}

.problem-answer {
  margin: 46px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.25rem;
  text-align: center;
}

.problem-answer strong {
  color: var(--white);
}

/* Field: scan + manager */
.field-section {
  background: var(--cream);
}

.field-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  margin-top: 48px;
}

.field-split--reverse {
  margin-top: 64px;
}

.field-split--reverse .field-media {
  order: 2;
}

.field-split--reverse .field-copy {
  order: 1;
}

.field-split--showcase {
  grid-template-columns: minmax(340px, 0.76fr) minmax(0, 1.24fr);
  min-height: 430px;
  gap: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(238, 85, 47, 0.1), transparent 34%),
    #fffaf7;
  border: 1px solid rgba(238, 85, 47, 0.14);
  border-radius: 32px;
  box-shadow: 0 28px 70px rgba(68, 42, 31, 0.12);
}

.field-split--showcase .field-copy {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 5vw, 68px);
}

.field-split--showcase .field-label {
  color: var(--orange-dark);
}

.field-split--showcase .field-copy h3 {
  max-width: 480px;
  color: var(--ink);
}

.field-split--showcase .field-copy > p {
  max-width: 500px;
  color: var(--muted);
}

.field-showcase-cta {
  align-self: flex-start;
  margin-top: 28px;
}

.field-split--showcase .field-checks {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
}

.field-split--showcase .field-checks li {
  color: var(--ink);
  font-size: 0.9rem;
}

.field-split--showcase .field-checks li::before {
  color: var(--green);
}

.field-media {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.field-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.field-media--ui {
  background: var(--white);
}

.field-media--ui img {
  aspect-ratio: 1024 / 682;
}

.field-split--showcase .field-media--tablet {
  align-self: stretch;
  display: grid;
  min-width: 0;
  min-height: 100%;
  place-items: stretch;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(160deg, rgba(68, 42, 31, 0.08), transparent 42%),
    #efe4db;
  box-shadow: none;
}

.field-split--showcase .field-media--tablet picture {
  display: block;
  width: 100%;
  height: 100%;
}

.field-media--tablet img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: 58% center;
}

.field-label {
  margin-bottom: 12px;
  color: var(--orange-dark);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field-copy h3 {
  margin-bottom: 16px;
  font-size: clamp(1.85rem, 3.5vw, 2.55rem);
  letter-spacing: -0.035em;
}

.field-copy > p {
  color: var(--muted);
  font-size: 1.05rem;
}

.field-checks {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  list-style: none;
}

.field-checks li {
  position: relative;
  padding-left: 28px;
  font-weight: 650;
}

.field-checks li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--green);
  content: "✓";
  font-weight: 900;
}

/* Modules */
.modules-section {
  background: var(--white);
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.module-card {
  padding: 26px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.module-card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.module-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.module-card--wide {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  grid-column: span 2;
  align-items: center;
  gap: 22px;
  padding: 18px;
  overflow: hidden;
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.module-card--wide img {
  width: 100%;
  max-height: 260px;
  object-fit: cover;
  border-radius: 18px;
}

.module-card--wide p {
  color: rgba(255, 255, 255, 0.68);
}

.module-card--accent {
  background:
    linear-gradient(180deg, rgba(234, 84, 43, 0.1), transparent 40%),
    var(--cream);
  border-color: rgba(234, 84, 43, 0.28);
}

/* Pourquoi */
.why-section {
  background: var(--cream-2);
}

.why-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.why-intro h2 {
  margin-bottom: 18px;
}

.why-intro p {
  margin-bottom: 28px;
  color: var(--muted);
}

.why-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.why-card {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.why-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.why-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

/* Product split */
.product-section {
  overflow: hidden;
  background: var(--white);
}

.product-split {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  align-items: center;
  gap: clamp(45px, 8vw, 110px);
}

.product-copy h2 {
  margin-bottom: 26px;
}

.product-lead {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.08rem;
}

.flow-list {
  display: grid;
  gap: 6px;
  margin-top: 38px;
}

.flow-list > div {
  display: grid;
  grid-template-columns: 42px 130px 1fr;
  align-items: center;
  gap: 14px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.flow-list span {
  display: grid;
  width: 32px;
  height: 32px;
  color: var(--orange);
  background: var(--orange-soft);
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 800;
  place-items: center;
}

.flow-list small {
  color: var(--muted);
  font-size: 0.85rem;
}

.phone-stage {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin-inline: auto;
}

.phone-stage img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: contain;
  border-radius: 46px;
  box-shadow: var(--shadow-md);
}

.phone-halo {
  position: absolute;
  top: 18%;
  left: 50%;
  width: 116%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--orange-soft);
  transform: translateX(-50%);
}

/* Pillars */
.pillar-list {
  display: grid;
  gap: 28px;
}

.pillar-row {
  display: grid;
  min-height: 500px;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 70px;
  padding: clamp(26px, 4vw, 52px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.pillar-row--reverse .pillar-visual {
  order: 2;
}

.pillar-visual {
  display: grid;
  min-width: 0;
  min-height: 380px;
  overflow: hidden;
  background: var(--cream);
  border-radius: var(--radius-md);
  place-items: center;
}

.pillar-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pillar-visual--qr > img {
  object-position: center;
}

.pillar-visual--stats-phone {
  padding: 24px;
  background:
    radial-gradient(circle at 18% 15%, rgba(52, 117, 220, 0.24), transparent 34%),
    radial-gradient(circle at 82% 86%, rgba(238, 85, 47, 0.28), transparent 34%),
    #102a4c;
}

.pillar-visual--stats-phone picture {
  display: block;
  width: min(100%, 320px);
}

.pillar-visual--stats-phone img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 16;
  object-fit: contain;
  border-radius: 22px;
}

.pillar-copy {
  max-width: 470px;
}

.pillar-copy > span {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pillar-copy h3 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.pillar-copy p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.pillar-visual--payment {
  background:
    radial-gradient(circle at 80% 20%, rgba(228, 87, 46, 0.2), transparent 35%),
    var(--ink);
}

.payment-mini {
  display: flex;
  width: min(84%, 390px);
  flex-direction: column;
  align-items: flex-start;
  padding: 34px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  backdrop-filter: blur(12px);
}

.payment-mini > img {
  width: 150px;
  margin-bottom: 44px;
}

.payment-mini strong {
  margin-bottom: 6px;
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.payment-mini > span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
}

.payment-operators {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.payment-operators img {
  width: 36px;
  height: 36px;
  padding: 4px;
  object-fit: contain;
  background: var(--white);
  border-radius: 9px;
}

/* Pricing */
.pricing-section {
  background: var(--white);
}

.billing-switch {
  display: flex;
  width: fit-content;
  gap: 4px;
  padding: 5px;
  margin: -26px 0 48px;
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.billing-switch button {
  min-height: 42px;
  padding: 8px 17px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 750;
}

.billing-switch button.is-active {
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 4px 15px rgba(34, 20, 11, 0.08);
}

.billing-switch button span {
  margin-left: 5px;
  color: var(--green);
  font-size: 0.72rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 18px;
}

.price-card {
  display: flex;
  min-height: 640px;
  flex-direction: column;
  padding: 34px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.price-card--featured {
  position: relative;
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: var(--shadow-md);
  transform: translateY(-16px);
}

.price-card--pro {
  position: relative;
  background:
    linear-gradient(180deg, rgba(234, 84, 43, 0.08), transparent 28%),
    var(--cream);
  border-color: rgba(234, 84, 43, 0.34);
}

.plan-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 7px 12px;
  color: var(--orange-dark);
  background: #ffe0d1;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
}

.plan-badge--pro {
  color: var(--white);
  background: var(--orange);
}

.plan-name {
  margin-bottom: 28px;
  font-weight: 800;
}

.plan-fit {
  margin-bottom: 12px;
  color: var(--orange-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-card--featured .plan-fit {
  color: #ffb797;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 14px;
}

.plan-price strong {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.plan-price span,
.plan-summary {
  color: var(--muted);
}

.price-card--featured .plan-price span,
.price-card--featured .plan-summary {
  color: rgba(255, 255, 255, 0.62);
}

.plan-summary {
  min-height: 52px;
}

.plan-count {
  width: fit-content;
  padding: 9px 12px;
  margin-top: 8px;
  color: var(--orange-dark);
  background: #ffe5d8;
  border-radius: 10px;
  font-size: 0.76rem;
}

.plan-count strong {
  font-weight: 850;
}

.price-card ul {
  display: grid;
  gap: 14px;
  padding: 26px 0 30px;
  margin: 16px 0 30px;
  border-top: 1px solid var(--line);
  list-style: none;
}

.price-card--featured ul {
  border-color: rgba(255, 255, 255, 0.14);
}

.price-card--pro ul {
  gap: 10px;
  padding-top: 20px;
  font-size: 0.92rem;
}

.price-card li {
  position: relative;
  padding-left: 27px;
}

.price-card li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--green);
  content: "✓";
  font-weight: 900;
}

.price-card--featured li::before {
  color: #7de2ca;
}

.price-card .btn {
  width: 100%;
  margin-top: auto;
}

.price-card--featured .btn-primary {
  color: var(--orange-dark);
  background: var(--white);
}

.pricing-note {
  margin: 34px auto 0;
  color: var(--muted);
  font-size: 0.86rem;
  text-align: center;
}

.pricing-transparency {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 22px;
  padding: 20px 24px;
  margin-top: 30px;
  color: var(--muted);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 18px;
  font-size: 0.8rem;
}

.pricing-transparency strong {
  color: var(--ink);
}

.pricing-transparency span {
  position: relative;
}

.pricing-transparency span::before {
  margin-right: 7px;
  color: var(--green);
  content: "✓";
  font-weight: 900;
}

.pricing-note a {
  color: var(--orange-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* FAQ */
.faq-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: start;
  gap: clamp(50px, 9vw, 120px);
}

.faq-intro {
  position: sticky;
  top: 120px;
}

.faq-intro p:not(.section-kicker) {
  color: var(--muted);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 28px 50px 28px 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.14rem;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 25px;
  right: 3px;
  color: var(--orange);
  content: "+";
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 680px;
  padding: 0 45px 26px 0;
  margin: 0;
  color: var(--muted);
}

/* Closing form */
.closing-section {
  padding: clamp(86px, 11vw, 140px) 0;
  color: var(--white);
  background:
    radial-gradient(circle at 8% 14%, rgba(255, 201, 176, 0.24), transparent 28%),
    linear-gradient(145deg, #e4572e, #ca421e);
}

.closing-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: clamp(45px, 9vw, 110px);
}

.closing-copy h2 {
  margin-bottom: 24px;
}

.closing-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.08rem;
}

.closing-copy ul {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
}

.closing-copy li::before {
  margin-right: 10px;
  content: "✓";
  font-weight: 900;
}

.join-form {
  position: relative;
  padding: clamp(28px, 4vw, 48px);
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.honeypot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.field--wide {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.82rem;
  font-weight: 750;
}

.field label span {
  color: var(--muted);
  font-weight: 500;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid transparent;
  border-radius: 13px;
  outline: none;
  transition:
    background 160ms ease,
    border 160ms ease,
    box-shadow 160ms ease;
}

.field input {
  height: 52px;
  padding: 0 15px;
}

.field textarea {
  min-height: 94px;
  padding: 14px 15px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  background: var(--white);
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(228, 87, 46, 0.11);
}

.btn-form {
  width: 100%;
  margin-top: 22px;
  color: var(--white);
  background: var(--ink);
}

.btn-form:hover {
  background: var(--orange);
}

.btn-form:disabled {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

.form-msg {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--green);
  font-size: 0.88rem;
  font-weight: 700;
}

.form-msg.is-error {
  color: #a82721;
}

.form-privacy {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  text-align: center;
}

.form-privacy a {
  text-decoration: underline;
}

.success-panel {
  padding: 70px 20px;
  text-align: center;
}

.success-check {
  display: grid;
  width: 76px;
  height: 76px;
  margin: 0 auto 28px;
  color: var(--orange);
  background: var(--white);
  border-radius: 50%;
  font-size: 2rem;
  font-weight: 900;
  place-items: center;
}

.success-panel h2 {
  margin-bottom: 20px;
}

.success-panel > p:not(.section-kicker) {
  max-width: 620px;
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, 0.8);
}

.success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.btn-outline--on-dark {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-outline--on-dark:hover {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

/* Footer */
.site-footer {
  padding: 76px 0 28px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr repeat(3, 1fr);
  gap: 50px;
  padding-bottom: 64px;
}

.footer-brand img {
  margin-bottom: 22px;
}

.footer-brand p {
  max-width: 340px;
}

.footer-grid h3 {
  margin-bottom: 20px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  font-size: 0.75rem;
}

.footer-bottom > div {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
}

.footer-bottom button {
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
}

/* Cookie & mobile CTA */
.cookie-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 300;
  display: none;
  width: min(calc(100% - 40px), 760px);
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 22px;
  margin-inline: auto;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-md);
}

.cookie-banner.is-open {
  display: flex;
}

.cookie-banner p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.cookie-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
}

.cookie-actions .btn {
  min-height: 42px;
  padding: 9px 16px;
  font-size: 0.82rem;
}

.mobile-cta {
  position: fixed;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 90;
  display: none;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--ink);
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  font-weight: 800;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.mobile-cta.is-hidden {
  display: none !important;
  pointer-events: none;
  opacity: 0;
  transform: translateY(20px);
}

/* WhatsApp dock */
.wa-dock {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 120;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.wa-float {
  display: grid;
  width: 58px;
  height: 58px;
  color: #fff;
  background: #128c7e;
  border: 0;
  border-radius: 50%;
  box-shadow: 0 14px 28px rgba(18, 140, 126, 0.28);
  cursor: pointer;
  place-items: center;
  transition: transform 160ms ease, background 160ms ease;
}

.wa-float:hover {
  background: #0f7a6e;
  transform: translateY(-1px);
}

.wa-float:focus-visible {
  outline: 3px solid rgba(18, 140, 126, 0.35);
  outline-offset: 3px;
}

.wa-dock.is-open .wa-float {
  background: #0b5f56;
}

.wa-panel {
  width: min(calc(100vw - 36px), 300px);
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-md);
}

.wa-panel[hidden] {
  display: none;
}

.wa-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.wa-panel-title {
  margin: 0;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 800;
}

.wa-panel-close {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  padding: 0;
  color: var(--ink);
  background: var(--cream);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.35rem;
  line-height: 1;
  place-items: center;
}

.wa-panel-close:hover {
  background: var(--line);
}

.wa-panel-lead {
  margin: 5px 0 14px;
  color: var(--muted);
  font-size: 0.8rem;
}

.wa-intent {
  display: grid;
  gap: 2px;
  padding: 12px 12px;
  margin-bottom: 8px;
  color: inherit;
  background: var(--cream);
  border: 1px solid transparent;
  border-radius: 14px;
  text-decoration: none;
  transition: border-color 140ms ease, background 140ms ease;
}

.wa-intent:last-child {
  margin-bottom: 0;
}

.wa-intent:hover {
  background: #fff;
  border-color: rgba(18, 140, 126, 0.28);
}

.wa-intent strong {
  color: var(--ink);
  font-size: 0.9rem;
}

.wa-intent span {
  color: var(--muted);
  font-size: 0.76rem;
}

/* Reveal */
.reveal {
  opacity: 1;
  transform: none;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Tablet */
@media (max-width: 980px) {
  .site-nav {
    gap: 18px;
  }

  .hero {
    min-height: 0;
  }

  .trust-grid,
  .product-split,
  .closing-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    gap: 34px;
  }

  .payment-proof {
    max-width: 540px;
  }

  .audience-grid {
    gap: 14px;
  }

  .audience-card {
    min-height: 470px;
    padding: 26px;
  }

  .problem-grid {
    grid-template-columns: 1fr;
  }

  .field-split,
  .field-split--reverse,
  .modules-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .field-split--reverse .field-media,
  .field-split--reverse .field-copy {
    order: initial;
  }

  .field-split--showcase {
    min-height: 0;
  }

  .field-split--showcase .field-copy {
    order: 1;
  }

  .field-split--showcase .field-media {
    order: 2;
  }

  .field-split--showcase .field-media--tablet {
    min-height: 280px;
  }

  .field-split--showcase .field-media--tablet img {
    min-height: 280px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: 55% center;
  }

  .module-card--wide {
    grid-column: auto;
  }

  .problem-card > span {
    margin-bottom: 24px;
  }

  .phone-stage {
    max-width: 400px;
  }

  .pillar-row {
    gap: 40px;
  }

  .pricing-grid {
    gap: 10px;
  }

  .price-card {
    padding: 26px;
  }

  .footer-grid {
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 26px;
  }
}

/* Mobile */
@media (max-width: 760px) {
  .wrap,
  .nav-shell {
    width: min(calc(100% - 28px), var(--wrap));
  }

  .section {
    padding: 82px 0;
  }

  h2 {
    font-size: clamp(2.3rem, 11vw, 3.3rem);
  }

  .site-header {
    padding: 11px 0;
  }

  .site-header,
  .site-header.is-scrolled {
    color: var(--ink);
    background: rgba(251, 247, 241, 0.94);
    box-shadow: 0 1px 0 var(--line);
    backdrop-filter: blur(16px);
  }

  .site-header .brand-logo--light {
    display: none;
  }

  .site-header .brand-logo--dark {
    display: block;
  }

  .brand-logo {
    width: 132px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 2px);
    right: 14px;
    left: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav > a:not(.btn) {
    padding: 13px 10px;
    border-bottom: 1px solid var(--line);
  }

  .btn-nav {
    margin-top: 12px;
    color: var(--white);
    background: var(--orange);
  }

  .hero {
    min-height: 0;
    padding-bottom: 22px;
  }

  .hero::after {
    display: none;
  }

  .hero-copy {
    padding-top: 108px;
    padding-bottom: 4px;
    text-align: left;
  }

  .hero-copy .eyebrow {
    max-width: 330px;
    margin-bottom: 16px;
    font-size: 0.7rem;
    letter-spacing: 0.14em;
  }

  .hero h1 {
    max-width: 600px;
    margin: 0 0 20px;
    font-size: clamp(2.45rem, 11vw, 3.25rem);
    line-height: 0.98;
    letter-spacing: -0.052em;
  }

  .hero-lead {
    max-width: none;
    margin: 0 0 24px;
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 54px;
    padding-inline: 18px;
    color: var(--orange-dark);
    background: var(--white);
  }

  .hero-actions .text-link {
    align-self: flex-start;
    min-height: 36px;
  }

  .hero-reassurance {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 7px 18px;
    margin-top: 18px;
  }

  .hero-reassurance li + li::before {
    left: -11px;
  }

  .hero-device {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    z-index: 2;
    width: min(calc(100% - 28px), var(--wrap));
    margin: 22px auto 0;
    border-radius: 18px;
  }

  .hero-window-bar {
    height: 34px;
    padding-inline: 12px;
  }

  .hero-window-bar small {
    font-size: 0.62rem;
  }

  .hero-device picture {
    overflow: hidden;
  }

  .hero-device img {
    width: 138%;
    max-width: none;
    aspect-ratio: 1024 / 682;
    object-position: left top;
    border-width: 0;
    border-radius: 0;
  }

  .trust-section {
    padding: 70px 0 42px;
  }

  .trust-copy h2 {
    font-size: 2.5rem;
  }

  .payment-proof {
    padding: 24px;
  }

  .problem-grid {
    grid-template-columns: 1fr;
  }

  .field-split,
  .field-split--reverse {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .field-split--reverse .field-media,
  .field-split--reverse .field-copy {
    order: initial;
  }

  .field-split--showcase {
    border-radius: 22px;
  }

  .field-split--showcase .field-copy {
    order: 1;
    padding: 34px 24px;
  }

  .field-split--showcase .field-media {
    order: 2;
  }

  .field-split--showcase .field-checks {
    grid-template-columns: 1fr;
  }

  .modules-grid {
    grid-template-columns: 1fr;
  }

  .module-card--wide {
    grid-template-columns: 1fr;
    grid-column: auto;
  }

  .why-grid,
  .why-list {
    grid-template-columns: 1fr;
  }

  .product-split {
    grid-template-columns: 1fr;
  }

  .audience-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .audience-card,
  .audience-card--accent {
    min-height: 390px;
    transform: none;
  }

  .audience-index {
    margin-bottom: 44px;
  }

  .product-split {
    gap: 55px;
  }

  .flow-list > div {
    grid-template-columns: 38px 1fr;
  }

  .flow-list small {
    grid-column: 2;
  }

  .phone-stage img {
    border-radius: 30px;
  }

  .phone-stage {
    max-width: 340px;
  }

  .pillar-row,
  .pillar-row--reverse {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 38px;
    padding: 20px;
    border-radius: 25px;
  }

  .pillar-row--reverse .pillar-visual {
    order: 0;
  }

  .pillar-visual {
    min-height: 280px;
  }

  .pillar-copy {
    padding: 0 8px 18px;
  }

  .pillar-copy h3 {
    font-size: 2.35rem;
  }

  .price-card,
  .price-card--featured {
    min-height: 520px;
    transform: none;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq-intro {
    position: static;
  }

  .closing-grid {
    gap: 46px;
  }

  .join-form {
    padding: 24px 18px;
    border-radius: 24px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .field--wide {
    grid-column: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .cookie-banner {
    right: 10px;
    bottom: 10px;
    left: 10px;
    width: auto;
    align-items: center;
    flex-direction: row;
    gap: 12px;
    padding: 13px;
    border-radius: 16px;
  }

  .cookie-banner > div:first-child {
    min-width: 0;
  }

  .cookie-banner strong {
    font-size: 0.84rem;
  }

  .cookie-banner p {
    font-size: 0.7rem;
    line-height: 1.35;
  }

  .cookie-actions {
    flex: 0 0 94px;
    flex-direction: column;
    gap: 6px;
  }

  .cookie-actions .btn {
    width: 100%;
    min-height: 34px;
    padding: 6px 9px;
    font-size: 0.72rem;
  }

  .mobile-cta {
    display: flex;
  }

  .wa-dock {
    right: 16px;
    bottom: 78px;
  }

  body {
    padding-bottom: 74px;
  }
}

@media (max-width: 430px) {
  .hero h1 {
    font-size: 2.52rem;
  }

  .hero-reassurance {
    font-size: 0.72rem;
  }

  .audience-card {
    padding: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }
}

@media (max-width: 360px) {
  .hero h1 {
    font-size: 2.28rem;
  }

  .hero-copy {
    padding-top: 102px;
  }

  .hero-actions .btn {
    font-size: 0.86rem;
  }
}

/* ── Growth redesign: hero shell + type selector ─────────────────────────── */
.hero-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  padding-top: 140px;
}

.hero-shell .hero-copy {
  max-width: none;
  padding-top: 0;
  text-align: left;
}

.hero-shell .hero-copy h1,
.hero-shell .hero-copy .hero-lead,
.hero-shell .hero-copy .hero-actions,
.hero-shell .hero-copy .hero-reassurance {
  margin-left: 0;
  margin-right: 0;
}

.hero-shell h1 {
  margin: 0 0 22px;
  font-size: clamp(2.4rem, 4.6vw, 4.2rem);
}

.hero-shell .hero-lead {
  max-width: 38rem;
  margin-bottom: 28px;
}

.hero-shell .hero-actions {
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 14px;
}

.hero-shell .hero-actions .btn {
  text-align: center;
}

.hero-shell .hero-reassurance {
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px 22px;
  margin-top: 22px;
}

.hero-stage {
  position: relative;
  min-height: 420px;
  padding: 18px 8px 8px;
}

.hero-phone {
  position: absolute;
  z-index: 3;
  left: 0;
  bottom: 12px;
  width: min(42%, 210px);
  margin: 0;
  overflow: hidden;
  background: #111;
  border: 3px solid rgba(255, 255, 255, 0.55);
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
}

.hero-phone img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-tablet {
  position: relative;
  z-index: 1;
  width: min(92%, 460px);
  margin: 0 0 0 auto;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
}

.hero-tablet img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: top;
}

.hero-qr {
  position: absolute;
  z-index: 4;
  right: 6%;
  bottom: 8%;
  width: 78px;
  height: 78px;
  padding: 8px;
  object-fit: contain;
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
}

.hero-paid-pill {
  position: absolute;
  z-index: 5;
  top: 28%;
  left: 34%;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  margin: 0;
  color: #0f5132;
  font-size: 0.78rem;
  font-weight: 700;
  background: #d1f5e1;
  border: 1px solid #9fe0bc;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

.hero-paid-pill::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1a9d5c;
  content: "";
}

.type-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.type-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
  overflow: hidden;
  color: inherit;
  text-align: left;
  cursor: pointer;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.type-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  background: var(--cream);
}

.type-card strong,
.type-card span {
  display: block;
  padding: 0 14px;
}

.type-card strong {
  margin-top: 4px;
  font-size: 1.05rem;
}

.type-card span {
  padding-bottom: 16px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.35;
}

.type-card:hover,
.type-card:focus-visible {
  border-color: rgba(228, 87, 46, 0.45);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  outline: none;
}

.type-card.is-selected {
  border-color: var(--orange);
  box-shadow: 0 0 0 2px rgba(228, 87, 46, 0.2), var(--shadow-md);
  background: #fff7f3;
}

.type-other {
  margin: 18px 0 0;
  text-align: center;
}

.type-demo {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 28px;
  align-items: center;
  margin-top: 36px;
  padding: 22px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 24px;
}

.type-demo-media {
  overflow: hidden;
  background: var(--white);
  border-radius: 18px;
}

.type-demo-media img {
  display: block;
  width: 100%;
  max-height: 360px;
  object-fit: cover;
}

.type-demo-copy h3 {
  margin: 8px 0 12px;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.type-demo-steps {
  padding-left: 1.15rem;
  margin: 0 0 22px;
  color: var(--muted);
}

.type-demo-steps li + li {
  margin-top: 8px;
}

.type-demo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.journey-grid,
.serve-grid {
  display: grid;
  gap: 16px;
}

.journey-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.serve-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.journey-card,
.serve-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.journey-card img,
.serve-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: var(--cream);
}

.journey-card h3,
.serve-card h3 {
  margin: 14px 14px 8px;
  font-size: 1.05rem;
}

.journey-card p,
.serve-card p {
  margin: 0 14px 16px;
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 980px) {
  .hero-shell {
    grid-template-columns: 1fr;
    padding-top: 120px;
  }

  .hero-shell .hero-copy {
    text-align: center;
  }

  .hero-shell .hero-actions,
  .hero-shell .hero-reassurance {
    justify-content: center;
  }

  .hero-stage {
    min-height: 360px;
    margin-top: 8px;
  }

  .type-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .type-demo,
  .journey-grid {
    grid-template-columns: 1fr;
  }

  .serve-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .hero-shell h1 {
    font-size: clamp(2rem, 9vw, 2.6rem);
  }

  .hero-shell .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-shell .hero-reassurance {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .hero-shell .hero-reassurance li + li::before {
    display: none;
  }

  .hero-stage {
    min-height: 300px;
  }

  .hero-phone {
    width: 38%;
  }

  .hero-qr {
    width: 64px;
    height: 64px;
  }

  .hero-paid-pill {
    left: 28%;
    top: 22%;
    font-size: 0.7rem;
  }

  .type-grid,
  .serve-grid {
    grid-template-columns: 1fr;
  }

  .type-card img {
    height: 160px;
  }

  .type-demo {
    padding: 14px;
  }

  .type-demo-actions .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto;
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
    transition-duration: 0.01ms;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
