:root {
  --green-950: #07342d;
  --green-900: #1f514c;
  --green-800: #0f5f4c;
  --green-500: #1c9a72;
  --green-200: #bfead7;
  --ivory: #f7f3ea;
  --cream: #fffdf8;
  --paper: #fbf7ef;
  --whatsapp: #ece5dd;
  --charcoal: #141414;
  --muted: #525252;
  --border: #e7e2d8;
  --shadow: 0 18px 45px rgba(16, 42, 35, 0.11);
  --shadow-soft: 0 10px 28px rgba(16, 42, 35, 0.08);
  --serif: "Hedvig Letters Serif", "Playfair Display", Georgia, serif;
  --sans: Outfit, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  overflow-x: hidden;
}

.hero,
section[id] {
  scroll-margin-top: 96px;
}

body {
  position: relative;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 80% 12%, rgba(191, 234, 215, 0.28), transparent 30rem),
    radial-gradient(circle at 10% 30%, rgba(11, 61, 53, 0.06), transparent 24rem),
    var(--cream);
  color: var(--charcoal);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.28;
  background:
    radial-gradient(ellipse at 14% 58%, transparent 0 20%, rgba(11, 61, 53, 0.08) 20.3% 20.7%, transparent 21% 100%),
    radial-gradient(ellipse at 18% 62%, transparent 0 28%, rgba(11, 61, 53, 0.06) 28.3% 28.7%, transparent 29% 100%),
    radial-gradient(ellipse at 82% 38%, transparent 0 18%, rgba(15, 95, 76, 0.06) 18.3% 18.7%, transparent 19% 100%),
    radial-gradient(ellipse at 84% 42%, transparent 0 27%, rgba(15, 95, 76, 0.045) 27.3% 27.7%, transparent 28% 100%);
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 40px, 1180px);
  margin-inline: auto;
}

.section-pad {
  padding: 88px 0;
}

.section-pad.compact {
  padding-top: 28px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 12px 10px 0;
  transition: padding 220ms ease;
}

.nav-shell {
  width: min(100%, 1260px);
  margin: 0 auto;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 28px;
  border: 1px solid rgba(231, 226, 216, 0.9);
  border-radius: 12px;
  background: rgba(255, 253, 248, 0.86);
  box-shadow: 0 10px 25px rgba(17, 17, 17, 0.06);
  backdrop-filter: blur(18px);
  transition: min-height 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  padding-top: 8px;
}

.site-header.is-scrolled .nav-shell {
  min-height: 58px;
  box-shadow: 0 16px 38px rgba(17, 17, 17, 0.11);
}

.brand {
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2vw, 2.2rem);
  color: var(--green-900);
  font-weight: 700;
  letter-spacing: 0;
}

.brand span {
  color: var(--green-800);
  font-style: italic;
}

.nav-links {
  display: flex;
  gap: 44px;
  align-items: center;
  color: #143d36;
  font-size: 0.88rem;
  font-weight: 650;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 3px;
  height: 1px;
  background: var(--green-800);
  transition: right 200ms ease;
}

.nav-links a:hover::after {
  right: 0;
}

.nav-cta {
  background: #141414;
}

.nav-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--green-900);
  transform: translateY(104%);
  transition: transform 260ms ease;
}

.nav-cta:hover::before {
  transform: translateY(0);
}

.button {
  position: relative;
  isolation: isolate;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 10px;
  border: 1px solid transparent;
  padding: 0 22px;
  font-size: 0.89rem;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button span:last-child {
  transition: transform 180ms ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.26), transparent);
  transform: translateX(-120%);
  transition: transform 550ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:hover span:last-child {
  transform: translateX(4px);
}

.button:hover::after {
  transform: translateX(120%);
}

.button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.button-dark {
  color: #fff;
  background: var(--green-950);
  box-shadow: 0 11px 22px rgba(7, 52, 45, 0.18);
}

.button-light {
  color: var(--green-900);
  background: rgba(255, 253, 248, 0.72);
  border-color: var(--border);
  box-shadow: 0 8px 20px rgba(16, 42, 35, 0.06);
}

.button-white {
  background: var(--cream);
  color: var(--green-900);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 690px;
  padding-top: 68px;
  padding-bottom: 56px;
}

.hero::before {
  content: "";
  position: absolute;
  right: -12vw;
  top: 18%;
  width: 52vw;
  height: 52vw;
  max-width: 760px;
  max-height: 760px;
  pointer-events: none;
  opacity: 0.26;
  background:
    repeating-radial-gradient(circle, rgba(11, 61, 53, 0.16) 0 1px, transparent 1px 8px),
    radial-gradient(circle, rgba(191, 234, 215, 0.36), transparent 58%);
  -webkit-mask-image: radial-gradient(circle, #000 0 52%, transparent 72%);
  mask-image: radial-gradient(circle, #000 0 52%, transparent 72%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  gap: 38px;
  align-items: center;
}

.eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  border: 1px solid rgba(11, 61, 53, 0.22);
  border-radius: 999px;
  color: var(--green-900);
  background: rgba(255, 253, 248, 0.72);
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.mini-icon {
  display: grid;
  width: 16px;
  height: 16px;
  place-items: center;
  border-radius: 50%;
  background: var(--ivory);
}

.hero-title {
  margin: 22px 0 18px;
  color: var(--green-900);
  font-family: var(--serif);
  font-size: clamp(3.2rem, 5.2vw, 4.75rem);
  line-height: 0.95;
  font-weight: 600;
  letter-spacing: 0;
}

.hero-title span {
  display: block;
}

.hero-subtitle {
  max-width: 560px;
  color: #1e2e2a;
  font-size: 1.05rem;
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 32px;
}

.whatsapp-dot {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  border: 2px solid currentColor;
}

.social-proof {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 34px;
}

.avatars {
  display: flex;
}

.avatars img,
.avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid var(--cream);
  object-fit: cover;
  background: var(--ivory);
  box-shadow: 0 7px 15px rgba(16, 42, 35, 0.12);
}

.avatars img + img {
  margin-left: -12px;
}

.social-proof p {
  max-width: 315px;
  margin: 0;
  color: #293632;
  font-size: 0.86rem;
  line-height: 1.45;
}

.hero-visual {
  position: relative;
}

.hero-assets {
  display: block;
  overflow: visible;
}

.hero-map {
  position: absolute;
  right: -30px;
  top: 18px;
  width: min(108%, 760px);
  height: 530px;
  object-fit: cover;
  object-position: 100% 50%;
  border-radius: 120px 8px 8px 120px;
  filter: drop-shadow(0 28px 48px rgba(7, 52, 45, 0.17));
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, transparent 31%, #000 45%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, transparent 31%, #000 45%, #000 100%);
}

.hero-stage {
  position: relative;
  width: calc(100% + 320px);
  margin-right: -320px;
  aspect-ratio: 1.32 / 1;
  container-type: inline-size;
  isolation: isolate;
  --phone-left: 34.2%;
  --phone-top: 23.6%;
  --phone-width: 21.2%;
  --phone-height: 55.4%;
}

.hero-stage::before,
.hero-stage::after {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 2;
  pointer-events: none;
}

.hero-stage::before {
  background:
    radial-gradient(ellipse at 25% 52%, rgba(255, 253, 248, 0.88) 0 15%, rgba(255, 253, 248, 0.42) 28%, rgba(255, 253, 248, 0) 42%),
    linear-gradient(90deg, var(--cream) 0%, rgba(255, 253, 248, 0.98) 10%, rgba(255, 253, 248, 0.58) 24%, rgba(255, 253, 248, 0) 42%),
    linear-gradient(180deg, var(--cream) 0%, rgba(255, 253, 248, 0.78) 4%, rgba(255, 253, 248, 0) 19%, rgba(255, 253, 248, 0) 78%, rgba(255, 253, 248, 0.92) 100%);
}

.hero-stage::after {
  opacity: 0;
  background:
    radial-gradient(circle at 70% 62%, rgba(191, 234, 215, 0.28), transparent 14%),
    radial-gradient(circle at 83% 38%, rgba(15, 95, 76, 0.18), transparent 11%),
    linear-gradient(90deg, transparent 0 58%, rgba(255, 253, 248, 0) 58%, rgba(255, 253, 248, 0.32) 100%);
  mix-blend-mode: screen;
}

.hero-bg {
  position: absolute;
  left: -70px;
  top: -34px;
  width: calc(100% + 112px);
  height: calc(100% + 88px);
  object-fit: cover;
  object-position: 100% 50%;
  filter: contrast(1.08) saturate(1.04) drop-shadow(0 28px 48px rgba(7, 52, 45, 0.22));
  transform-origin: 62% 48%;
  animation: heroDrift 9s ease-in-out infinite;
  -webkit-mask-image:
    radial-gradient(ellipse 88% 82% at 76% 53%, #000 0 58%, rgba(0, 0, 0, 0.9) 70%, transparent 90%);
  mask-image:
    radial-gradient(ellipse 88% 82% at 76% 53%, #000 0 58%, rgba(0, 0, 0, 0.9) 70%, transparent 90%);
}

.hero-phone-img {
  position: absolute;
  left: 28%;
  top: -18px;
  z-index: 2;
  width: min(48vw, 405px);
  height: 575px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 34px 38px rgba(0, 0, 0, 0.22));
  animation: phoneFloatAsset 7s ease-in-out infinite;
}

.map-panel {
  position: absolute;
  right: 0;
  top: 38px;
  width: 95%;
  height: 470px;
  overflow: hidden;
  border-radius: 120px 8px 8px 120px;
  background:
    linear-gradient(100deg, rgba(11, 61, 53, 0.2), transparent 35%),
    radial-gradient(circle at 28% 70%, rgba(191, 234, 215, 0.65), transparent 80px),
    radial-gradient(circle at 75% 45%, rgba(34, 218, 178, 0.35), transparent 88px),
    #0a2926;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 30px 70px rgba(7, 52, 45, 0.22);
}

.map-grid {
  position: absolute;
  inset: -20px;
  opacity: 0.38;
  background-image:
    linear-gradient(32deg, transparent 49%, rgba(191, 234, 215, 0.3) 50%, transparent 51%),
    linear-gradient(118deg, transparent 49%, rgba(191, 234, 215, 0.18) 50%, transparent 51%),
    radial-gradient(circle, rgba(255, 255, 255, 0.17) 1px, transparent 1.5px);
  background-size: 95px 95px, 120px 120px, 34px 34px;
}

.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  mix-blend-mode: screen;
  transform: perspective(1100px) rotateX(9deg) rotateZ(-3deg);
  transform-origin: 60% 50%;
}

.hg {
  position: absolute;
  width: 1.4cqw;
  height: 1.4cqw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(190, 255, 220, 0.95) 0%, rgba(120, 240, 180, 0.55) 35%, rgba(60, 200, 140, 0) 70%);
  filter: blur(0.15cqw);
  animation: hgBreathe 3.4s ease-in-out infinite;
}

.hg::after {
  content: "";
  position: absolute;
  inset: -45%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(140, 255, 200, 0.4) 0%, rgba(60, 200, 140, 0) 60%);
  filter: blur(0.4cqw);
}

.hg1 { left: 49%; top: 30%; animation-delay: 0s; }
.hg2 { left: 68.5%; top: 46%; width: 1.7cqw; height: 1.7cqw; animation-delay: 0.6s; }
.hg3 { left: 84%; top: 51%; animation-delay: 1.1s; }
.hg4 { left: 60%; top: 66%; width: 1.2cqw; height: 1.2cqw; animation-delay: 1.6s; }
.hg5 { left: 43.5%; top: 72%; width: 1cqw; height: 1cqw; animation-delay: 0.9s; }

@keyframes hgBreathe {
  0%, 100% { opacity: 0.55; transform: scale(0.92); }
  50%      { opacity: 1;    transform: scale(1.08); }
}

@keyframes heroDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1.005);
  }
  50% {
    transform: translate3d(-10px, -7px, 0) scale(1.018);
  }
}

/* Hero refresh: separate territorial background + CSS iPhone */
.hero .container.hero-grid {
  width: min(100% - 40px, 1120px);
}

.hero-grid {
  grid-template-columns: minmax(0, 1.3fr) minmax(360px, 1fr);
  gap: clamp(36px, 5vw, 72px);
}

.hero-copy {
  position: relative;
  z-index: 4;
}

.hero-title {
  max-width: 720px;
  color: var(--charcoal);
  font-family: "Playfair Display", "Hedvig Letters Serif", Georgia, serif;
  font-size: clamp(4.2rem, 7.1vw, 5.15rem);
  line-height: 0.88;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.hero-title span {
  display: inline-block;
  margin-right: 0.12em;
}

.hero-title .title-highlight {
  background-image: linear-gradient(180deg, transparent 62%, rgba(191, 234, 215, 0.86) 62%);
  background-size: 100% 0.84em;
  background-repeat: no-repeat;
  background-position: 0 0.18em;
}

.hero-stage {
  width: 100%;
  min-height: 650px;
  margin: 0;
  aspect-ratio: auto;
  overflow: visible;
  perspective: 1200px;
}

.hero-stage::before,
.hero-stage::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-stage::before {
  inset: -8% -24vw -12% -112%;
  z-index: 0;
  opacity: 1;
  border-radius: 0;
  background: url("./assets/hero-map-board.png") center right / contain no-repeat;
  filter: contrast(1.04) saturate(1.04) drop-shadow(0 44px 54px rgba(17, 17, 17, 0.16));
  -webkit-mask-image: none;
  mask-image: none;
  animation: none;
  transform: translate(12px, 42px) scale(0.78);
  transform-origin: 67% 58%;
}

.hero-stage::after {
  right: -16%;
  top: 16%;
  z-index: 1;
  width: 42%;
  height: 64%;
  opacity: 0.08;
  background: repeating-radial-gradient(circle, rgba(31, 81, 76, 0.35) 0 1px, transparent 1px 7px);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 0 50%, transparent 76%);
  mask-image: radial-gradient(ellipse at center, #000 0 50%, transparent 76%);
}

.hero-map-bg {
  position: absolute;
  inset: auto 8% 8% 6%;
  z-index: 1;
  height: 44%;
  pointer-events: none;
  opacity: 0.22;
  background:
    radial-gradient(circle at 72% 36%, rgba(191, 234, 215, 0.58), transparent 9%),
    radial-gradient(circle at 52% 64%, rgba(31, 81, 76, 0.2), transparent 24%);
  filter: blur(14px);
}

.phone-halo {
  position: absolute;
  z-index: 2;
  right: 2%;
  top: 16%;
  width: min(38vw, 470px);
  height: min(38vw, 470px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(191, 234, 215, 0.58), rgba(15, 95, 76, 0.2) 38%, transparent 70%);
  filter: blur(22px);
  animation: glowBreath 6.5s ease-in-out infinite;
}

.iphone-wrap {
  position: absolute;
  z-index: 3;
  right: 5%;
  top: 4%;
  transform-style: preserve-3d;
  animation: phoneFloatHero 7s ease-in-out infinite;
}

.iphone {
  position: relative;
  width: 318px;
  height: 650px;
  padding: 10px;
  border-radius: 54px;
  background:
    linear-gradient(115deg, #61615e 0%, #151515 8%, #030303 42%, #8d8c86 49%, #202020 55%, #050505 100%);
  box-shadow:
    0 50px 100px -30px rgba(0, 0, 0, 0.74),
    18px 24px 42px -26px rgba(255, 255, 255, 0.35) inset,
    -12px 0 24px rgba(0, 0, 0, 0.72) inset,
    inset 0 0 0 1px rgba(255, 255, 255, 0.16),
    inset 12px 0 20px rgba(255, 255, 255, 0.08);
}

.iphone::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    inset 0 0 0 2px rgba(0, 0, 0, 0.88),
    inset 0 0 0 4px rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.iphone::after {
  display: none;
}

.phone-button {
  position: absolute;
  width: 3px;
  border-radius: 4px;
  background: linear-gradient(180deg, #767676 0%, #252525 18%, #070707 80%, #494949 100%);
  box-shadow:
    inset 1px 0 rgba(255, 255, 255, 0.22),
    0 2px 5px rgba(0, 0, 0, 0.35);
}

.silent { left: -3px; top: 104px; height: 34px; }
.vol1 { left: -4px; top: 158px; height: 64px; }
.vol2 { left: -4px; top: 239px; height: 64px; }
.power { right: -4px; top: 188px; height: 92px; }

.dynamic-island {
  position: absolute;
  top: 21px;
  left: 50%;
  z-index: 8;
  width: 104px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background:
    radial-gradient(circle at 72% 50%, #10151a 0 7px, transparent 8px),
    #050505;
  transform: translateX(-50%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    inset 14px 0 18px rgba(255, 255, 255, 0.025);
}

.di-dot {
  position: absolute;
  right: 25px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #263f5b, #020304 65%);
  box-shadow: 0 0 0 1px rgba(65, 110, 160, 0.25);
}

.phone-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  border: 2px solid #050505;
  border-radius: 43px;
  background: #ece5dd;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.14),
    inset 0 18px 28px rgba(255, 255, 255, 0.02);
}

.wa-screen-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.wa-typing-bubble {
  position: absolute;
  z-index: 2;
  top: 22%;
  left: 9%;
  width: 44px;
  height: 25px;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 10px;
  border-radius: 10px 10px 10px 4px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 24px rgba(20, 20, 20, 0.1);
  opacity: 0;
  animation: phoneTypingPop 9.5s ease-in-out infinite;
}

.wa-typing-bubble::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 0;
  width: 10px;
  height: 12px;
  background: inherit;
  clip-path: polygon(100% 0, 100% 100%, 0 0);
}

.wa-typing-bubble span {
  width: 4.5px;
  height: 4.5px;
  border-radius: 50%;
  background: #77817c;
  animation: typingDot 900ms ease-in-out infinite;
}

.wa-typing-bubble span:nth-child(2) { animation-delay: 130ms; }
.wa-typing-bubble span:nth-child(3) { animation-delay: 260ms; }

.wa-signal-pop {
  position: absolute;
  z-index: 2;
  top: 21.8%;
  left: 1%;
  width: 94%;
  height: auto;
  transform: translateY(18px) scale(0.95);
  opacity: 0;
  filter: blur(5px);
  animation: phoneSignalPop 9.5s ease-in-out infinite;
}

@keyframes phoneTypingPop {
  0%, 8%, 33%, 100% {
    opacity: 0;
    transform: translateY(8px) scale(0.96);
  }
  12%, 26% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes phoneSignalPop {
  0%, 27%, 88%, 100% {
    opacity: 0;
    filter: blur(5px);
    transform: translateY(18px) scale(0.95);
  }
  34%, 78% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}

.ios-status {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 4;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 25px 0;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
}

.ios-status svg {
  width: 86px;
  height: 18px;
}

.wa-top {
  position: relative;
  z-index: 3;
  height: 96px;
  display: flex;
  align-items: end;
  gap: 9px;
  padding: 0 14px 14px;
  color: #fff;
  background:
    radial-gradient(circle at 65% -20%, rgba(191, 234, 215, 0.22), transparent 42%),
    #075e54;
}

.wa-back {
  display: grid;
  width: 18px;
  height: 39px;
  place-items: center;
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.92);
}

.wa-back svg,
.wa-actions svg {
  width: 18px;
  height: 18px;
}

.wa-avatar {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border-radius: 50%;
  color: var(--cream);
  background: var(--green-900);
  border: 2px solid rgba(255, 255, 255, 0.78);
  font-family: var(--serif);
  font-size: 1.25rem;
}

.wa-top strong {
  display: block;
  font-size: 0.97rem;
  line-height: 1;
}

.wa-top > div:nth-of-type(2) span {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.74rem;
}

.wa-top > div:nth-of-type(2) {
  min-width: 0;
  flex: 1;
}

.wa-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.94);
}

.wa-conversation {
  position: absolute;
  inset: 96px 0 65px;
  padding: 16px 14px 18px;
  background:
    radial-gradient(circle at 18px 18px, rgba(31, 81, 76, 0.035) 1px, transparent 1.5px) 0 0 / 24px 24px,
    #ece5dd;
}

.date-chip {
  width: fit-content;
  margin: 0 auto 14px;
  padding: 5px 10px;
  border-radius: 999px;
  color: #68716c;
  background: rgba(255, 255, 255, 0.76);
  font-size: 0.62rem;
  font-weight: 700;
}

.typing {
  width: 58px;
  height: 31px;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 12px;
  border-radius: 10px 10px 10px 3px;
  background: #fff;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.08);
  opacity: 0;
}

.typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #8b948f;
  animation: typingDot 900ms ease-in-out infinite;
}

.typing span:nth-child(2) { animation-delay: 130ms; }
.typing span:nth-child(3) { animation-delay: 260ms; }

.typing-one {
  animation: typingOne 12s ease-in-out infinite;
}

.typing-two {
  margin-top: 10px;
  animation: typingTwo 12s ease-in-out infinite;
}

.wa-message {
  position: relative;
  width: 100%;
  margin-top: 8px;
  padding: 13px 13px 22px;
  border-radius: 15px 15px 15px 4px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 13px 28px rgba(0, 0, 0, 0.1);
  transform-origin: left top;
  opacity: 0;
}

.wa-message::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 0;
  width: 12px;
  height: 14px;
  background: inherit;
  clip-path: polygon(100% 0, 100% 100%, 0 0);
}

.wa-message > strong {
  display: block;
  margin: 10px 0 9px;
  color: #171717;
  font-size: 0.92rem;
  line-height: 1.15;
}

.wa-message dl {
  display: grid;
  gap: 5px;
}

.wa-message dl div {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 10px;
}

.wa-message dt,
.wa-message dd {
  margin: 0;
  font-size: 0.68rem;
  line-height: 1.22;
}

.wa-message dt {
  color: #66706c;
}

.wa-message dd {
  color: #18241f;
  font-weight: 700;
}

.wa-message time {
  position: absolute;
  right: 12px;
  bottom: 7px;
  color: #838b87;
  font-size: 0.61rem;
}

.message-alert {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 9px;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.message-alert span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  animation: alertPulse 1.55s ease-in-out infinite;
}

.alert-red {
  color: #8c2525;
  background: #fde4e4;
}

.alert-red span {
  background: #d73d3d;
}

.alert-green {
  color: #1f514c;
  background: #d8ebd8;
}

.alert-green span {
  background: #1f9f68;
}

.msg-one {
  animation: messageOne 12s ease-in-out infinite;
}

.msg-two {
  animation: messageTwo 12s ease-in-out infinite;
}

.wa-inputbar {
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 13px;
  z-index: 3;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-left: 17px;
  border-radius: 999px;
  color: #8b8b8b;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 9px 24px rgba(0, 0, 0, 0.09);
  font-size: 0.78rem;
}

.wa-inputbar button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: #128c7e;
  cursor: pointer;
}

.wa-inputbar svg {
  width: 19px;
  height: 19px;
}

@keyframes mapDrift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1.01); }
  50% { transform: translate3d(-12px, -8px, 0) scale(1.035); }
}

@keyframes glowBreath {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

@keyframes phoneFloatHero {
  0%, 100% { transform: translateY(0) rotateY(-2deg) rotateZ(1.2deg); }
  50% { transform: translateY(-10px) rotateY(2deg) rotateZ(-0.4deg); }
}

@keyframes islandPulse {
  0%, 100% { opacity: 0.65; transform: scale(0.82); }
  50% { opacity: 1; transform: scale(1.08); }
}

@keyframes typingDot {
  0%, 100% { transform: translateY(0); opacity: 0.42; }
  50% { transform: translateY(-4px); opacity: 1; }
}

@keyframes typingOne {
  0%, 5% { opacity: 0; transform: translateY(7px); }
  8%, 18% { opacity: 1; transform: translateY(0); }
  21%, 100% { opacity: 0; transform: translateY(-4px); }
}

@keyframes typingTwo {
  0%, 31% { opacity: 0; transform: translateY(7px); }
  34%, 43% { opacity: 1; transform: translateY(0); }
  46%, 100% { opacity: 0; transform: translateY(-4px); }
}

@keyframes messageOne {
  0%, 19% { opacity: 0; filter: blur(4px); transform: translateY(12px) scale(0.94); }
  23%, 86% { opacity: 1; filter: blur(0); transform: translateY(0) scale(1); }
  92%, 100% { opacity: 0; filter: blur(5px); transform: translateY(-8px) scale(0.985); }
}

@keyframes messageTwo {
  0%, 44% { opacity: 0; filter: blur(4px); transform: translateY(12px) scale(0.94); }
  48%, 86% { opacity: 1; filter: blur(0); transform: translateY(0) scale(1); }
  92%, 100% { opacity: 0; filter: blur(5px); transform: translateY(-8px) scale(0.985); }
}

@keyframes alertPulse {
  0%, 100% { box-shadow: 0 0 0 0 currentColor; }
  50% { box-shadow: 0 0 0 5px rgba(215, 61, 61, 0.12); }
}

.arc {
  position: absolute;
  inset: 68px 48px auto auto;
  width: 340px;
  height: 260px;
  fill: none;
  stroke: rgba(191, 234, 215, 0.86);
  stroke-width: 3;
  stroke-linecap: round;
  filter: drop-shadow(0 0 8px rgba(191, 234, 215, 0.7));
}

.arc path:first-child {
  stroke-dasharray: 8 13;
}

.signal-label {
  position: absolute;
  right: 11%;
  bottom: 28%;
  display: grid;
  gap: 3px;
  padding: 13px 17px;
  border-radius: 13px;
  color: #fff;
  background: rgba(11, 61, 53, 0.86);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22), inset 0 0 0 1px rgba(191, 234, 215, 0.16);
  font-weight: 800;
}

.signal-label small {
  font-family: var(--mono);
  color: var(--green-200);
  font-size: 0.67rem;
  text-transform: uppercase;
}

.phone {
  position: absolute;
  left: 22%;
  top: 0;
  width: 280px;
  height: 548px;
  padding: 12px;
  border-radius: 43px;
  background: linear-gradient(130deg, #1f2420, #050706 45%, #a9aaa3 48%, #151613 52%, #0b0c0b);
  box-shadow: 0 36px 70px rgba(0, 0, 0, 0.24), 0 6px 0 rgba(255, 255, 255, 0.3) inset;
  transform: rotate(7deg);
  animation: phoneFloat 7s ease-in-out infinite;
}

.phone-notch {
  position: absolute;
  top: 18px;
  left: 50%;
  z-index: 3;
  width: 88px;
  height: 23px;
  border-radius: 0 0 14px 14px;
  transform: translateX(-50%);
  background: #050706;
}

.phone-screen {
  height: 100%;
  overflow: hidden;
  border-radius: 33px;
  background: var(--whatsapp);
}

.chat-header {
  height: 75px;
  display: grid;
  grid-template-columns: 22px 36px 1fr 20px;
  gap: 8px;
  align-items: end;
  padding: 0 14px 12px;
  color: #fff;
  background: #075e54;
}

.chat-header strong {
  display: block;
  font-size: 0.84rem;
}

.chat-header span {
  display: block;
  color: #bfead7;
  font-size: 0.61rem;
}

.back,
.chat-menu {
  font-size: 1.35rem;
}

.chat-avatar {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--green-900);
  font-family: var(--serif);
  font-size: 0.82rem;
}

.chat-body {
  padding: 15px 13px;
}

.chat-alert {
  width: fit-content;
  margin: 0 auto 9px;
  padding: 8px 11px;
  border-radius: 8px;
  color: #3c3a31;
  background: #fff7d6;
  font-family: var(--mono);
  font-size: 0.62rem;
  text-transform: uppercase;
}

.chat-alert time {
  margin-left: 8px;
  color: #777063;
}

.wa-card {
  position: relative;
  margin-left: 12px;
  padding: 8px 8px 22px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  animation: popIn 720ms 450ms both ease;
}

.commerce-photo {
  height: 105px;
  border-radius: 7px;
  background:
    linear-gradient(rgba(14, 20, 18, 0.1), rgba(14, 20, 18, 0.26)),
    linear-gradient(90deg, transparent 0 14%, #1d211e 14% 17%, transparent 17% 49%, #1d211e 49% 52%, transparent 52% 83%, #1d211e 83% 86%, transparent 86%),
    linear-gradient(0deg, #2a2018 0 22%, #e6b861 22% 25%, #151b18 25% 72%, #526057 72% 75%, #202721 75%);
  background-color: #26322d;
}

.wa-card-head {
  display: grid;
  gap: 6px;
  margin: 9px 0 7px;
}

.wa-card-head strong {
  font-size: 0.67rem;
}

.wa-card-head span,
.signal-image span {
  width: fit-content;
  padding: 5px 9px;
  border-radius: 999px;
  color: #fff;
  background: #179e62;
  font-size: 0.58rem;
  font-weight: 800;
  text-transform: uppercase;
  animation: softPulse 2.4s ease-in-out infinite;
}

dl {
  margin: 0;
}

.wa-card dl div,
.signal-data dl div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.wa-card dt,
.wa-card dd {
  margin: 0;
  font-size: 0.58rem;
  line-height: 1.58;
}

.wa-card dt {
  color: #424b47;
}

.wa-card dd {
  color: #111;
  font-weight: 650;
}

.wa-card time {
  position: absolute;
  right: 9px;
  bottom: 7px;
  color: #777;
  font-size: 0.55rem;
}

.chat-input {
  height: 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  padding-left: 14px;
  border-radius: 999px;
  color: #868686;
  background: #fff;
  font-size: 0.66rem;
}

.chat-input b {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #128c7e;
}

.metrics {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  margin-top: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: var(--shadow-soft);
}

.metrics::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background:
    linear-gradient(90deg, transparent 0 22%, rgba(11, 61, 53, 0.08) 22.2% 22.4%, transparent 22.6% 100%),
    radial-gradient(circle at 8% 45%, rgba(191, 234, 215, 0.42), transparent 10%),
    radial-gradient(circle at 93% 50%, rgba(11, 61, 53, 0.08), transparent 12%);
}

.metric {
  position: relative;
  min-height: 96px;
  display: grid;
  grid-template-columns: 52px auto;
  grid-template-rows: auto auto;
  column-gap: 14px;
  align-content: center;
  padding: 12px 24px;
  transition: transform 180ms ease, background 180ms ease;
}

.metric + .metric {
  border-left: 1px solid var(--border);
}

.metric:hover {
  transform: translateY(-4px);
  background: rgba(247, 243, 234, 0.6);
}

.metric-icon {
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--green-900);
  border: 2px solid currentColor;
  font-weight: 800;
}

.metric-illu {
  grid-row: 1 / 3;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  object-fit: contain;
  background: rgba(255, 253, 248, 0.72);
  filter: drop-shadow(0 4px 8px rgba(7, 52, 45, 0.08));
  transition: transform 320ms ease;
}

.metric:hover .metric-illu {
  transform: scale(1.06) rotate(-2deg);
}

.metric-illu {
  animation: iconHover 5.5s ease-in-out infinite;
}

.metric:nth-child(2) .metric-illu { animation-delay: 0.7s; }
.metric:nth-child(3) .metric-illu { animation-delay: 1.4s; }
.metric:nth-child(4) .metric-illu { animation-delay: 2.1s; }

.metric strong {
  color: var(--green-900);
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
}

.metric p {
  margin: 2px 0 0;
  color: #313b38;
  font-size: 0.76rem;
  letter-spacing: 0;
}

.section-title,
.use-cases h2,
.signal-shell h2,
.territory-form h2,
.cta-panel h2 {
  margin: 0 0 34px;
  color: #191d1b;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0;
}

.section-title::after {
  content: "";
  display: block;
  width: 31px;
  height: 2px;
  margin: 14px auto 0;
  background: var(--green-900);
}

.section-lede {
  max-width: 620px;
  margin: -18px auto 36px;
  color: #3a4744;
  font-size: 1rem;
  line-height: 1.55;
  text-align: center;
}

#probleme,
.method-section,
.signal-section,
.territory-section,
.use-section,
.faq-section {
  position: relative;
  overflow: hidden;
}

#probleme::before {
  content: "";
  position: absolute;
  left: -11rem;
  top: 2rem;
  width: 32rem;
  height: 32rem;
  pointer-events: none;
  opacity: 0.32;
  background:
    radial-gradient(ellipse at 42% 44%, transparent 0 19%, rgba(11, 61, 53, 0.1) 19.3% 19.7%, transparent 20%),
    radial-gradient(ellipse at 48% 52%, transparent 0 31%, rgba(11, 61, 53, 0.07) 31.3% 31.7%, transparent 32%),
    radial-gradient(ellipse at 52% 58%, transparent 0 43%, rgba(11, 61, 53, 0.055) 43.3% 43.7%, transparent 44%);
  transform: rotate(-14deg);
}

#probleme::after {
  content: "";
  position: absolute;
  right: -5rem;
  bottom: -3rem;
  width: 20rem;
  height: 20rem;
  pointer-events: none;
  opacity: 0.16;
  background:
    radial-gradient(circle, var(--green-900) 0 2px, transparent 2.5px);
  background-size: 13px 13px;
  -webkit-mask-image: radial-gradient(circle, #000 0 52%, transparent 73%);
  mask-image: radial-gradient(circle, #000 0 52%, transparent 73%);
}

.cards {
  display: grid;
  gap: 18px;
}

.three-cols {
  grid-template-columns: repeat(3, 1fr);
}

.info-card,
.step-card,
.benefit-card,
.territory-form,
.territory-table,
.access-form {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(255, 253, 248, 0.78);
  box-shadow: 0 8px 26px rgba(16, 42, 35, 0.055);
}

.info-card,
.step-card {
  min-height: 120px;
  padding: 22px 24px 22px 78px;
  position: relative;
  transition: transform 190ms ease, box-shadow 190ms ease, border-color 190ms ease;
}

.info-card:hover,
.step-card:hover,
.signal-card:hover,
.benefit-card:hover,
.compact-card:hover {
  transform: translateY(-7px);
  border-color: rgba(15, 95, 76, 0.32);
  box-shadow: var(--shadow);
}

.line-icon {
  position: absolute;
  left: 24px;
  top: 28px;
  display: grid;
  place-items: center;
  width: 37px;
  height: 37px;
  border-radius: 50%;
  color: var(--green-800);
  border: 1px solid var(--border);
  font-size: 1.35rem;
}

.problem-grid {
  gap: 22px;
}

.illu-card {
  isolation: isolate;
  padding: 28px 26px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(247, 243, 234, 0.85));
  overflow: hidden;
}

.illu-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background: linear-gradient(135deg, rgba(191, 234, 215, 0.2), transparent 46%);
  transition: opacity 260ms ease;
}

.illu-card:hover::after {
  opacity: 1;
}

.illu-card::before {
  content: "";
  position: absolute;
  inset: auto -40% -60% auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(28, 154, 114, 0.16), transparent 70%);
  pointer-events: none;
  transition: transform 420ms ease;
}

.illu-card:hover::before {
  transform: translate(-12px, -10px) scale(1.08);
}

.card-illu {
  position: relative;
  width: 132px;
  height: 132px;
  margin: 0;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: rgba(255, 253, 248, 0.85);
  border: 1px solid rgba(15, 95, 76, 0.12);
  box-shadow: 0 8px 22px rgba(7, 52, 45, 0.08);
  overflow: hidden;
  transition: transform 320ms ease, box-shadow 320ms ease;
}

.card-illu img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 420ms ease;
}

.illu-card:hover .card-illu {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(7, 52, 45, 0.14);
}

.illu-card:hover .card-illu img {
  transform: scale(1.06);
}

.illu-card h3 {
  margin: 6px 0 0;
}

.illu-card p {
  margin: 0;
}

.info-card h3,
.step-card h3,
.territory-table h3,
.compact-card h3 {
  margin: 0 0 9px;
  color: #20201c;
  font-size: 1rem;
  line-height: 1.25;
}

.info-card p,
.step-card p,
.compact-card p {
  margin: 0;
  color: #303835;
  font-size: 0.88rem;
  line-height: 1.55;
}

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

.timeline::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(11, 61, 53, 0.3), transparent);
}

.method-section {
  padding-bottom: 96px;
}

.method-section::before {
  content: "";
  position: absolute;
  inset: 6rem 0 auto;
  height: 34rem;
  pointer-events: none;
  opacity: 0.28;
  background:
    radial-gradient(circle at 50% 52%, rgba(191, 234, 215, 0.36), transparent 8rem),
    radial-gradient(circle at 50% 52%, transparent 0 5.7rem, rgba(11, 61, 53, 0.11) 5.75rem 5.85rem, transparent 5.9rem),
    radial-gradient(circle at 50% 52%, transparent 0 9.8rem, rgba(11, 61, 53, 0.08) 9.85rem 9.95rem, transparent 10rem),
    radial-gradient(circle at 50% 52%, transparent 0 14rem, rgba(11, 61, 53, 0.055) 14.05rem 14.15rem, transparent 14.2rem);
}

.method-track {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding-top: 32px;
}

.method-progress {
  position: absolute;
  top: 92px;
  left: 16%;
  right: 16%;
  height: 2px;
  background: rgba(11, 61, 53, 0.12);
  border-radius: 2px;
  overflow: hidden;
  pointer-events: none;
}

.method-progress-fill {
  display: block;
  height: 100%;
  width: 100%;
  transform: scaleX(var(--method-progress, 0));
  transform-origin: left center;
  background: linear-gradient(90deg, var(--green-900), var(--green-500), var(--green-200));
  box-shadow: 0 0 14px rgba(28, 154, 114, 0.45);
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
  animation: signalFlow 3.8s linear infinite;
}

.method-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 14px;
}

.method-illu {
  position: relative;
  width: 132px;
  height: 132px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 35%, rgba(255, 253, 248, 0.95), rgba(247, 243, 234, 0.7));
  border: 1px solid rgba(15, 95, 76, 0.16);
  box-shadow: 0 14px 30px rgba(7, 52, 45, 0.1);
  z-index: 1;
  overflow: hidden;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 420ms ease;
}

.method-illu img {
  width: 88%;
  height: 88%;
  object-fit: contain;
  transform: scale(0.92);
  opacity: 0.85;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1), opacity 420ms ease;
}

.method-glow {
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: conic-gradient(from 220deg, rgba(28, 154, 114, 0.0), rgba(28, 154, 114, 0.32), rgba(28, 154, 114, 0));
  opacity: 0;
  filter: blur(8px);
  transition: opacity 420ms ease;
  animation: methodSpin 8s linear infinite;
}

.method-step.is-active .method-illu {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 22px 44px rgba(7, 52, 45, 0.18);
}

.method-step.is-active .method-illu img {
  transform: scale(1);
  opacity: 1;
}

.method-step.is-active .method-glow {
  opacity: 1;
}

.method-step[data-step="1"].is-active .method-illu img {
  animation: methodPing 2.4s ease-in-out infinite;
}

.method-step[data-step="2"].is-active .method-illu img {
  animation: methodFunnel 3s ease-in-out infinite;
}

.method-step[data-step="3"].is-active .method-illu img {
  animation: methodLand 2.6s ease-in-out infinite;
}

.method-num {
  margin: 18px 0 4px;
  color: var(--green-800);
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
}

.method-step h3 {
  margin: 0 0 8px;
  color: #18201d;
  font-size: 1.05rem;
  line-height: 1.3;
}

.method-step p {
  margin: 0;
  max-width: 280px;
  color: #303835;
  font-size: 0.88rem;
  line-height: 1.55;
}

@keyframes methodSpin {
  to { transform: rotate(360deg); }
}

@keyframes methodPing {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.04); filter: drop-shadow(0 0 6px rgba(28, 154, 114, 0.45)); }
}

@keyframes methodFunnel {
  0%, 100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-3px) scale(1.02); }
}

@keyframes methodLand {
  0%, 100% { transform: translateY(0) scale(1); }
  35%      { transform: translateY(-5px) scale(1.03); }
  65%      { transform: translateY(2px) scale(0.99); }
}

@keyframes signalFlow {
  0% {
    filter: hue-rotate(0deg) brightness(1);
    background-position: 0 0;
  }
  50% {
    filter: hue-rotate(8deg) brightness(1.12);
  }
  100% {
    filter: hue-rotate(0deg) brightness(1);
    background-position: 160px 0;
  }
}

@keyframes iconHover {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

@media (max-width: 1080px) {
  .method-track {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .method-progress {
    top: 0;
    bottom: 0;
    left: 50%;
    right: auto;
    width: 2px;
    height: auto;
    transform: translateX(-50%);
  }
  .method-progress-fill {
    width: 100%;
    height: 100%;
    transform: scaleY(var(--method-progress, 0));
    transform-origin: top center;
    background: linear-gradient(180deg, var(--green-900), var(--green-500), var(--green-200));
  }
}

.step-card {
  background: rgba(255, 253, 248, 0.86);
}

.step-number {
  position: absolute;
  top: -18px;
  left: 50%;
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border-radius: 50%;
  transform: translateX(-50%);
  color: #fff;
  background: var(--green-900);
  font-family: var(--mono);
  font-size: 0.72rem;
}

.signal-section {
  padding-top: 36px;
}

.free-signals-strip {
  padding-top: 0;
  padding-bottom: 34px;
}

.free-signals-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  padding: 30px 34px;
  border: 1px solid rgba(231, 226, 216, 0.92);
  border-radius: 14px;
  background:
    radial-gradient(circle at 6% 50%, rgba(191, 234, 215, 0.34), transparent 210px),
    linear-gradient(135deg, rgba(255, 253, 248, 0.94), rgba(247, 243, 234, 0.78));
  box-shadow: var(--shadow-soft);
}

.free-signals-panel h2 {
  max-width: 620px;
  margin: 12px 0 10px;
  text-align: left;
  font-size: clamp(2rem, 4vw, 3.45rem);
}

.free-signals-panel p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.free-signals-actions {
  display: grid;
  justify-items: end;
  gap: 14px;
}

.text-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--green-800);
  font-size: 0.86rem;
  font-weight: 800;
}

.text-cta span {
  transition: transform 180ms ease;
}

.text-cta:hover span {
  transform: translateX(4px);
}

.signal-shell {
  padding: 22px 28px 30px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(247, 243, 234, 0.95), rgba(255, 253, 248, 0.82));
  box-shadow: var(--shadow-soft);
}

.signal-shell h2 {
  margin: 16px 0 22px;
  text-align: left;
}

.signal-layout {
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 22px;
  align-items: stretch;
}

.signal-asset {
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 18px 44px rgba(16, 42, 35, 0.1);
}

.signal-asset img {
  display: block;
  width: 100%;
  margin-bottom: -14%;
  transform: translateY(-9%);
}

.signal-card {
  display: grid;
  grid-template-columns: 45% 55%;
  min-height: 250px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 9px 28px rgba(16, 42, 35, 0.06);
  transition: transform 190ms ease, box-shadow 190ms ease, border-color 190ms ease;
}

.signal-image {
  position: relative;
  min-height: 250px;
  background:
    linear-gradient(rgba(10, 22, 18, 0.1), rgba(10, 22, 18, 0.22)),
    linear-gradient(90deg, #19231f 0 8%, transparent 8% 32%, #151d19 32% 38%, transparent 38% 64%, #151d19 64% 70%, transparent 70% 92%, #19231f 92%),
    linear-gradient(0deg, #111814 0 16%, #d7a657 16% 18%, #24312b 18% 73%, #4f635a 73% 76%, #1c2823 76%);
}

.signal-image::before {
  content: "MAISON DE THE";
  position: absolute;
  top: 79px;
  left: 50%;
  color: #e9ddc6;
  font-family: var(--serif);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  transform: translateX(-50%);
}

.signal-image span {
  position: absolute;
  left: 18px;
  bottom: 18px;
}

.signal-data {
  position: relative;
  padding: 23px 25px;
}

.signal-data h3 {
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  color: #18201d;
  font-size: 1.12rem;
}

.signal-data dl div {
  padding: 3px 0;
}

.signal-data dt,
.signal-data dd {
  margin: 0;
  color: #252c29;
  font-size: 0.82rem;
}

.signal-data dt {
  color: #545d58;
}

.signal-data dd {
  font-weight: 650;
}

.signal-data i {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 2px;
  border-radius: 50%;
  background: var(--green-500);
  vertical-align: middle;
}

.signal-data time {
  position: absolute;
  right: 20px;
  bottom: 12px;
  color: #8a8a82;
  font-size: 0.72rem;
}

.benefit-card {
  display: grid;
  align-content: center;
  gap: 19px;
  padding: 25px;
  transition: transform 190ms ease, box-shadow 190ms ease, border-color 190ms ease;
}

.benefit-card div {
  display: grid;
  grid-template-columns: 38px 1fr;
  column-gap: 12px;
  align-items: start;
}

.benefit-card span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--green-800);
  border: 1px solid var(--border);
}

.benefit-card strong {
  font-size: 0.88rem;
}

.benefit-card p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.territory-section {
  padding: 0 0 58px;
}

.territory-grid {
  display: grid;
  grid-template-columns: 1.12fr 1.2fr 0.95fr;
  gap: 22px;
  align-items: stretch;
  padding: 22px 28px;
  border-radius: 12px;
  background: rgba(247, 243, 234, 0.72);
}

.territory-form,
.territory-table {
  padding: 24px;
}

.territory-form h2 {
  margin: 13px 0 10px;
  text-align: left;
  font-size: 2.4rem;
}

.territory-form p {
  margin: 0 0 20px;
  color: var(--muted);
  line-height: 1.5;
}

.field-note {
  display: block;
  margin-top: 10px;
  color: var(--green-800);
  font-size: 0.76rem;
  font-weight: 800;
}

label {
  display: grid;
  gap: 8px;
  color: #1c2925;
  font-size: 0.83rem;
  font-weight: 700;
}

.input-row {
  display: grid;
  grid-template-columns: minmax(132px, 1fr) auto;
  gap: 10px;
}

.territory-form .button {
  padding-inline: 16px;
  font-size: 0.84rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  color: var(--charcoal);
  outline: none;
  padding: 13px 14px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(15, 95, 76, 0.55);
  box-shadow: 0 0 0 4px rgba(191, 234, 215, 0.42);
}

.form-message {
  min-height: 21px;
  margin: 10px 0 0;
  color: var(--green-800);
  font-size: 0.82rem;
  font-weight: 700;
}

.form-message.is-error {
  color: #9d3d2a;
}

.form-message a {
  color: var(--green-900);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.territory-table h3 {
  margin-bottom: 18px;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.83rem;
}

th,
td {
  padding: 12px 8px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}

th {
  color: #6b706d;
  font-size: 0.72rem;
  font-weight: 700;
}

td {
  font-weight: 650;
}

.territory-live {
  position: relative;
  min-height: 210px;
  display: grid;
  align-content: space-between;
  overflow: hidden;
  padding: 26px 24px;
  border-radius: 10px;
  color: #fff;
  background:
    radial-gradient(circle at 72% 62%, rgba(191, 234, 215, 0.22), transparent 95px),
    linear-gradient(135deg, var(--green-800), var(--green-950));
  box-shadow: var(--shadow-soft);
}

.territory-live p {
  width: 72%;
  margin: 0;
  line-height: 1.55;
  font-weight: 700;
}

.territory-live small {
  justify-self: end;
  font-family: var(--mono);
  font-size: 0.66rem;
  text-transform: uppercase;
}

.radar {
  position: absolute;
  right: 26px;
  bottom: 34px;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  border: 1px solid rgba(191, 234, 215, 0.36);
  background:
    radial-gradient(circle, rgba(191, 234, 215, 0.5) 0 4px, transparent 5px),
    repeating-radial-gradient(circle, transparent 0 20px, rgba(191, 234, 215, 0.2) 21px 22px),
    conic-gradient(from 0deg, rgba(191, 234, 215, 0.42), transparent 40%, rgba(191, 234, 215, 0.22));
  animation: rotate 6s linear infinite;
}

.radar span {
  position: absolute;
  inset: 44px;
  border-radius: 50%;
  background: var(--green-200);
  box-shadow: 0 0 28px 8px rgba(191, 234, 215, 0.55);
}

.use-section {
  padding-top: 6px;
}

.use-grid {
  display: grid;
  grid-template-columns: 1fr 370px;
  gap: 22px;
  align-items: stretch;
}

.use-cases {
  min-width: 0;
}

.use-cases h2 {
  margin-bottom: 28px;
  text-align: left;
}

.compact-card {
  min-height: 168px;
  padding: 24px 22px 22px 68px;
}

.compact-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--green-800);
  font-size: 0.82rem;
  font-weight: 800;
}

.testimonial,
.cta-panel {
  overflow: hidden;
  border-radius: 12px;
  color: #fff;
  background:
    radial-gradient(circle at 90% 10%, rgba(191, 234, 215, 0.2), transparent 170px),
    linear-gradient(135deg, var(--green-800), var(--green-950));
  box-shadow: var(--shadow);
}

.testimonial {
  min-height: 258px;
  padding: 34px 34px 28px;
}

.testimonial > span {
  color: #dfc35c;
  font-family: var(--serif);
  font-size: 4rem;
  line-height: 0.5;
}

blockquote {
  margin: 8px 0 24px;
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.25;
}

.author {
  display: flex;
  gap: 12px;
  align-items: center;
}

.author p {
  display: grid;
  gap: 2px;
  margin: 0;
  font-size: 0.74rem;
}

.author strong {
  font-size: 0.9rem;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 22px;
}

.dots b {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
}

.dots b:first-child {
  background: #fff;
}

.faq-section {
  padding-top: 10px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 20px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.82);
  transition: height 320ms cubic-bezier(0.22, 1, 0.36, 1), border-color 180ms ease, box-shadow 180ms ease;
}

.faq-item[open] {
  border-color: rgba(15, 95, 76, 0.22);
  box-shadow: 0 14px 32px rgba(16, 42, 35, 0.07);
}

.faq-item.is-animating {
  overflow: hidden;
}

.faq-item summary {
  position: relative;
  display: block;
  padding: 18px 48px 18px 22px;
  color: #1d2724;
  font-size: 0.88rem;
  font-weight: 750;
  cursor: pointer;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--green-900);
  font-size: 1.2rem;
  transition: transform 160ms ease;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 22px 18px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.faq-item[open] p {
  animation: faqAnswerIn 260ms ease both;
}

@keyframes faqAnswerIn {
  from {
    opacity: 0;
    filter: blur(5px);
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

.final-cta {
  padding-top: 28px;
  padding-bottom: 76px;
}

.access-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: start;
}

.cta-panel {
  position: sticky;
  top: 92px;
  padding: 46px 42px;
}

.cta-panel .eyebrow {
  display: inline-flex;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.88);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.cta-panel h2 {
  margin: 0 0 15px;
  color: #fff;
  text-align: left;
}

.cta-panel p {
  max-width: 430px;
  margin: 0 0 22px;
  line-height: 1.55;
}

.cta-panel small {
  display: block;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.8);
}

.access-form {
  display: grid;
  gap: 16px;
  padding: 25px;
}

.form-intro {
  padding: 4px 0 10px;
  border-bottom: 1px solid rgba(231, 226, 216, 0.92);
}

.form-intro h3 {
  margin: 12px 0 8px;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.05;
}

.form-intro p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.form-pair {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

textarea {
  resize: vertical;
}

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

.footer {
  padding: 38px 0;
  color: #fff;
  background: linear-gradient(135deg, var(--green-800), var(--green-950));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.78fr 0.78fr 0.78fr 1.3fr;
  gap: 34px;
}

.footer-brand {
  color: #fff;
  font-size: 1.8rem;
}

.footer p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}

.footer h3 {
  margin: 0 0 13px;
  font-size: 0.82rem;
}

.footer a:not(.brand) {
  display: block;
  margin: 9px 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
}

.socials {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}

.footer-trust {
  padding-left: 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.footer-trust small {
  display: block;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.68);
}

.reveal-item,
.reveal-title span {
  opacity: 0;
  filter: blur(12px);
  transform: translateY(24px);
  transition: opacity 850ms ease, filter 850ms ease, transform 850ms ease;
}

body:not(.motion-ready) .reveal-item,
body:not(.motion-ready) .reveal-title span {
  opacity: 1;
  filter: none;
  transform: none;
}

.reveal-title span {
  transition-delay: calc(var(--line-index, 0) * 90ms);
}

.is-visible,
.is-visible span,
.reveal-title.is-visible span {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

@keyframes pulse {
  0% {
    transform: scale(0.5);
    opacity: 0.8;
  }
  100% {
    transform: scale(2.6);
    opacity: 0;
  }
}

@keyframes phoneFloat {
  0%,
  100% {
    transform: rotate(7deg) translateY(0);
  }
  50% {
    transform: rotate(7deg) translateY(-12px);
  }
}

@keyframes phoneFloatAsset {
  0%,
  100% {
    transform: rotate(2deg) translateY(0);
  }
  50% {
    transform: rotate(2deg) translateY(-12px);
  }
}

@keyframes popIn {
  0% {
    opacity: 0;
    transform: translateY(10px) scale(0.96);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes softPulse {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(23, 158, 98, 0);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(23, 158, 98, 0.16);
  }
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .access-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-stage {
    width: 100%;
    margin-right: 0;
    aspect-ratio: 1.32 / 1;
    --phone-left: 37.5%;
    --phone-top: 23.6%;
    --phone-width: 23.5%;
    --phone-height: 55.5%;
  }

  .map-panel {
    width: 100%;
    border-radius: 80px 10px 10px 80px;
  }

  .hero-map {
    width: 100%;
    right: 0;
    border-radius: 80px 10px 10px 80px;
  }

  .phone {
    left: 50%;
    transform: translateX(-50%) rotate(7deg);
  }

  .hero-phone-img {
    left: 50%;
    width: min(66vw, 390px);
    transform: translateX(-50%);
    animation-name: phoneFloatAssetCentered;
  }

  .metrics,
  .territory-grid,
  .use-grid,
  .signal-layout {
    grid-template-columns: 1fr 1fr;
  }

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

  .metric:nth-child(3) {
    border-left: 0;
    border-bottom: 0;
  }

  .metric:nth-child(4) {
    border-bottom: 0;
  }

  .territory-live,
  .testimonial {
    grid-column: span 2;
  }

  .cta-panel {
    position: relative;
    top: auto;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    padding-inline: 6px;
  }

  .nav-shell {
    min-height: 58px;
    padding: 0 13px 0 17px;
    border-radius: 10px;
  }

  .nav-links {
    display: none;
  }

  .brand {
    font-size: 1.5rem;
  }

  .nav-cta {
    min-height: 39px;
    padding-inline: 14px;
    font-size: 0.78rem;
  }

  .section-pad {
    padding: 58px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
  }

  .hero-title {
    font-size: clamp(3rem, 13vw, 4rem);
    line-height: 1.02;
  }

  .hero-actions,
  .social-proof,
  .input-row,
  .form-pair {
    align-items: stretch;
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    margin-top: 10px;
  }

  .hero-stage {
    width: calc(100% + 210px);
    margin-left: -92px;
    margin-right: -118px;
    aspect-ratio: 1.32 / 1;
    --phone-left: 37%;
    --phone-top: 23.2%;
    --phone-width: 24%;
    --phone-height: 56%;
  }

  .map-panel {
    top: 42px;
    height: 385px;
    border-radius: 46px 8px 8px 46px;
  }

  .hero-map {
    top: 58px;
    left: 0;
    right: auto;
    width: 114%;
    height: 355px;
    border-radius: 46px 8px 8px 46px;
    object-position: 100% 50%;
    -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 100%);
    mask-image: linear-gradient(90deg, #000 0%, #000 100%);
  }


  .phone {
    width: 235px;
    height: 460px;
    left: 42%;
  }

  .hero-phone-img {
    top: 2px;
    left: 58%;
    width: 320px;
    height: 455px;
  }

  .chat-header {
    height: 66px;
  }

  .commerce-photo {
    height: 78px;
  }

  .wa-card dt,
  .wa-card dd {
    font-size: 0.51rem;
  }

  .signal-label,
  .arc {
    display: none;
  }

  .metrics,
  .three-cols,
  .timeline,
  .signal-layout,
  .signal-card,
  .territory-grid,
  .use-grid,
  .faq-grid,
  .access-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .metrics {
    margin-top: 4px;
  }

  .metric,
  .metric:nth-child(3),
  .metric:nth-child(4) {
    border-left: 0;
    border-bottom: 1px solid var(--border);
  }

  .metric:last-child {
    border-bottom: 0;
  }

  .timeline::before {
    display: none;
  }

  .card-illu {
    height: 150px;
  }

  .method-track {
    padding-top: 14px;
  }

  .signal-shell,
  .territory-grid {
    padding: 18px;
  }

  .signal-asset {
    margin-inline: -8px;
    overflow-x: auto;
  }

  .signal-asset img {
    min-width: 760px;
    margin-bottom: -13%;
    transform: translateY(-8%);
  }

  .section-title,
  .use-cases h2,
  .signal-shell h2,
  .territory-form h2,
  .cta-panel h2 {
    font-size: 2.15rem;
  }

  .signal-image {
    min-height: 220px;
  }

  .territory-live,
  .testimonial {
    grid-column: auto;
  }

  table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .cta-panel,
  .testimonial {
    padding: 30px 24px;
  }

  .footer-trust {
    padding-left: 0;
    border-left: 0;
  }
}

@keyframes phoneFloatAssetCentered {
  0%,
  100% {
    transform: translateX(-50%) rotate(2deg) translateY(0);
  }
  50% {
    transform: translateX(-50%) rotate(2deg) translateY(-12px);
  }
}

@media (max-width: 1080px) {
  .hero .container.hero-grid {
    width: min(100% - 40px, 760px);
  }

  .hero-title {
    max-width: 760px;
  }

  .hero-stage {
    width: min(100%, 650px);
    min-height: 650px;
    margin: 0 auto;
  }

  .hero-stage::before {
    inset: -4% -28% -10% -42%;
    background-position: center center;
    transform: translate(0, 48px) scale(0.9);
    transform-origin: center bottom;
  }

  .iphone-wrap {
    right: 50%;
    transform-origin: center;
    animation-name: phoneFloatHeroTablet;
  }

  .phone-halo {
    right: calc(50% - 235px);
  }

  @keyframes phoneFloatHeroTablet {
    0%, 100% { transform: translateX(50%) translateY(0) rotateY(-2deg) rotateZ(1.2deg); }
    50% { transform: translateX(50%) translateY(-10px) rotateY(2deg) rotateZ(-0.4deg); }
  }
}

@media (max-width: 760px) {
  .hero .container.hero-grid {
    width: min(100% - 28px, 1180px);
  }

  .hero-title {
    font-size: clamp(3.45rem, 14vw, 4.55rem);
    line-height: 0.9;
  }

  .hero-title span {
    margin-right: 0.08em;
  }

  .hero-stage {
    width: 100%;
    min-height: 565px;
    margin: 20px auto 0;
    aspect-ratio: auto;
  }

  .hero-stage::before {
    inset: 10% -46% -16% -46%;
    border-radius: 80px 0 0 80px;
    background-position: center center;
    background-size: contain;
    transform: translate(0, 52px) scale(1.1);
    transform-origin: center bottom;
  }

  .hero-stage::after {
    right: -42%;
    width: 70%;
  }

  .iphone-wrap {
    top: 2%;
    right: 50%;
    animation-name: phoneFloatHeroMobile;
  }

  .iphone {
    width: 268px;
    height: 548px;
    border-radius: 46px;
  }

  .phone-halo {
    top: 12%;
    right: calc(50% - 180px);
    width: 360px;
    height: 360px;
  }

  .phone-screen {
    border-radius: 37px;
  }

  .dynamic-island {
    width: 90px;
    height: 23px;
    top: 19px;
  }

  .wa-message dl div {
    grid-template-columns: 66px 1fr;
  }

  .wa-message dt,
  .wa-message dd {
    font-size: 0.62rem;
  }

  @keyframes phoneFloatHeroMobile {
    0%, 100% { transform: translateX(50%) translateY(0) rotateY(-2deg) rotateZ(1.2deg) scale(0.98); }
    50% { transform: translateX(50%) translateY(-9px) rotateY(2deg) rotateZ(-0.4deg) scale(0.98); }
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 76px;
  }

  .hero,
  section[id] {
    scroll-margin-top: 76px;
  }

  .container {
    width: min(100% - 24px, 1180px);
  }

  .site-header {
    padding: 8px 8px 0;
  }

  .nav-shell {
    min-height: 54px;
    gap: 10px;
    padding: 0 9px 0 14px;
    border-radius: 12px;
  }

  .brand {
    font-size: clamp(1.28rem, 8vw, 1.75rem);
    line-height: 1;
  }

  .nav-cta {
    min-height: 42px;
    padding-inline: 15px;
    border-radius: 11px;
    font-size: 0.76rem;
  }

  .section-pad {
    padding: 48px 0;
  }

  .section-title,
  .use-cases h2,
  .signal-shell h2,
  .territory-form h2,
  .cta-panel h2 {
    margin-bottom: 20px;
    font-size: clamp(1.85rem, 10vw, 2.45rem);
    line-height: 1.02;
  }

  .section-lede {
    margin: -8px auto 22px;
    font-size: 0.95rem;
  }

  .hero {
    padding-top: 34px;
    padding-bottom: 30px;
  }

  .eyebrow {
    max-width: 100%;
    padding: 5px 10px;
    font-size: 0.58rem;
    letter-spacing: 0.105em;
  }

  .hero-title {
    margin-top: 16px;
    font-size: clamp(3.05rem, 13.2vw, 4.05rem);
    line-height: 0.91;
  }

  .hero-subtitle {
    font-size: 0.98rem;
    line-height: 1.48;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 22px;
  }

  .social-proof {
    gap: 12px;
    margin-top: 24px;
  }

  .social-proof p {
    font-size: 0.82rem;
  }

  .hero-stage {
    min-height: 470px;
    margin-top: 10px;
  }

  .hero-stage::before {
    inset: 12% -44% -18% -44%;
    background-position: center center;
    background-size: contain;
    transform: translate(0, 48px) scale(1.08);
    transform-origin: center bottom;
  }

  .iphone {
    width: 242px;
    height: 495px;
  }

  .phone-halo {
    right: calc(50% - 155px);
    width: 310px;
    height: 310px;
  }

  .hero-stage::before {
    inset: 14% -48% -21% -48%;
    background-position: center center;
    transform: translate(0, 58px) scale(1.12);
  }

  .ios-status {
    height: 38px;
    padding: 8px 22px 0;
    font-size: 0.62rem;
  }

  .ios-status svg {
    width: 64px;
    height: 14px;
  }

  .dynamic-island {
    top: 16px;
    width: 88px;
    height: 22px;
  }

  .di-dot {
    right: 21px;
    width: 6px;
    height: 6px;
  }

  .wa-top {
    height: 82px;
    gap: 7px;
    padding: 0 12px 10px;
  }

  .wa-back {
    width: 16px;
    height: 32px;
  }

  .wa-back svg,
  .wa-actions svg {
    width: 15px;
    height: 15px;
  }

  .wa-avatar {
    width: 33px;
    height: 33px;
    font-size: 1rem;
    border-width: 1.5px;
  }

  .wa-top strong {
    max-width: 92px;
    overflow: hidden;
    font-size: 0.78rem;
    line-height: 1.02;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .wa-top > div:nth-of-type(2) span {
    margin-top: 2px;
    font-size: 0.6rem;
  }

  .wa-actions {
    gap: 8px;
  }

  .wa-conversation {
    inset: 82px 0 56px;
    padding: 12px 12px 14px;
  }

  .date-chip {
    margin-bottom: 12px;
    padding: 4px 9px;
    font-size: 0.52rem;
  }

  .typing {
    width: 48px;
    height: 26px;
    padding-inline: 10px;
  }

  .typing span {
    width: 5px;
    height: 5px;
  }

  .wa-message {
    width: 92%;
    padding: 10px 10px 18px;
    border-radius: 13px 13px 13px 4px;
  }

  .message-alert {
    gap: 5px;
    padding: 5px 8px;
    font-size: 0.5rem;
  }

  .message-alert span {
    width: 6px;
    height: 6px;
  }

  .wa-message > strong {
    margin: 8px 0 7px;
    font-size: 0.72rem;
    line-height: 1.12;
  }

  .wa-message dl {
    gap: 4px;
  }

  .wa-message dl div {
    grid-template-columns: 58px 1fr;
    gap: 8px;
  }

  .wa-message dt,
  .wa-message dd {
    font-size: 0.53rem;
    line-height: 1.16;
  }

  .wa-message time {
    right: 10px;
    bottom: 6px;
    font-size: 0.5rem;
  }

  .wa-inputbar {
    left: 11px;
    right: 11px;
    bottom: 11px;
    height: 38px;
    padding-left: 14px;
    font-size: 0.66rem;
  }

  .wa-inputbar button {
    width: 38px;
    height: 38px;
  }

  .wa-inputbar svg {
    width: 17px;
    height: 17px;
  }

  .metrics {
    grid-template-columns: 1fr 1fr;
    border-radius: 14px;
  }

  .metric {
    min-height: 86px;
    grid-template-columns: 42px auto;
    column-gap: 10px;
    padding: 12px;
  }

  .metric:nth-child(2) {
    border-left: 1px solid var(--border);
  }

  .metric:nth-child(3) {
    border-bottom: 0;
  }

  .metric-illu {
    width: 40px;
    height: 40px;
    border-radius: 11px;
  }

  .metric strong {
    font-size: 1.55rem;
  }

  .metric p {
    font-size: 0.68rem;
    line-height: 1.2;
  }

  .info-card {
    padding: 20px;
  }

  .card-illu {
    height: 118px;
    margin-bottom: 16px;
  }

  .method-section {
    padding-top: 42px;
    padding-bottom: 44px;
  }

  .method-section::before {
    inset: 4rem -60% auto;
    height: 26rem;
    opacity: 0.16;
  }

  .method-track {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    padding-top: 4px;
  }

  .method-progress {
    top: 18px;
    bottom: 18px;
    left: 31px;
    width: 2px;
    transform: none;
    opacity: 0.55;
  }

  .method-step {
    display: grid;
    grid-template-columns: 58px 1fr;
    grid-template-rows: auto auto auto;
    column-gap: 14px;
    align-items: center;
    min-height: 124px;
    padding: 14px 14px 14px 12px;
    border: 1px solid rgba(231, 226, 216, 0.9);
    border-radius: 16px;
    background: rgba(255, 253, 248, 0.82);
    box-shadow: 0 12px 30px rgba(16, 42, 35, 0.07);
    text-align: left;
    backdrop-filter: blur(10px);
  }

  .method-illu {
    grid-column: 1;
    grid-row: 1 / 4;
    width: 58px;
    height: 58px;
    box-shadow: 0 10px 20px rgba(7, 52, 45, 0.09);
  }

  .method-illu img {
    width: 84%;
    height: 84%;
  }

  .method-step.is-active .method-illu {
    transform: none;
    box-shadow: 0 14px 26px rgba(7, 52, 45, 0.14);
  }

  .method-num {
    grid-column: 2;
    grid-row: 1;
    margin: 0 0 4px;
    font-size: 0.62rem;
    letter-spacing: 0.14em;
  }

  .method-step h3 {
    grid-column: 2;
    grid-row: 2;
    margin: 0;
    font-size: 1rem;
    line-height: 1.18;
  }

  .method-step p {
    grid-column: 2;
    grid-row: 3;
    max-width: none;
    margin-top: 6px;
    font-size: 0.82rem;
    line-height: 1.42;
  }

  .signal-shell,
  .territory-grid {
    padding: 14px;
    border-radius: 14px;
  }

  .territory-grid,
  .signal-layout,
  .use-grid,
  .access-grid {
    width: min(100% - 24px, 1180px);
    margin-inline: auto;
  }

  .territory-grid > *,
  .signal-layout > *,
  .use-grid > *,
  .access-grid > * {
    min-width: 0;
  }

  .signal-asset {
    margin-inline: 0;
    border-radius: 12px;
  }

  .signal-asset img {
    min-width: 620px;
  }

  .territory-form,
  .territory-table {
    padding: 20px;
    border-radius: 12px;
  }

  .territory-form h2 {
    max-width: 260px;
    font-size: 2rem;
    line-height: 1.02;
  }

  .territory-form p {
    font-size: 0.94rem;
  }

  .input-row {
    gap: 10px;
    width: 100%;
  }

  .territory-form input {
    width: 100%;
    min-height: 48px;
  }

  .territory-form .button {
    min-height: 48px;
  }

  .territory-table {
    overflow: visible;
  }

  .territory-table h3 {
    min-width: 0;
    font-size: 0.95rem;
    line-height: 1.35;
  }

  .territory-table table {
    min-width: 0;
    font-size: 0.76rem;
  }

  .territory-table thead {
    display: none;
  }

  .territory-table tbody {
    display: grid;
    gap: 10px;
  }

  .territory-table tr {
    display: grid;
    gap: 8px;
    padding: 12px;
    border: 1px solid rgba(231, 226, 216, 0.92);
    border-radius: 12px;
    background: rgba(255, 253, 248, 0.74);
  }

  .territory-table th,
  .territory-table td {
    padding: 0;
    border-bottom: 0;
  }

  .territory-table td {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.82rem;
  }

  .territory-table td::before {
    color: #6b706d;
    font-size: 0.68rem;
    font-weight: 700;
  }

  .territory-table td:nth-child(1)::before { content: "Zone"; }
  .territory-table td:nth-child(2)::before { content: "Signaux"; }
  .territory-table td:nth-child(3)::before { content: "Potentiel élevé"; }
  .territory-table td:nth-child(4)::before { content: "Avance moyenne"; }

  .territory-table td:first-child {
    padding-bottom: 4px;
    color: var(--green-900);
    font-size: 0.94rem;
    border-bottom: 1px solid rgba(231, 226, 216, 0.9);
  }

  .territory-table td:first-child::before {
    content: "Zone active";
  }

  .use-grid {
    gap: 12px;
  }

  .use-card {
    padding: 18px;
  }

  .faq-item button {
    min-height: 52px;
    padding: 0 16px;
  }

  .cta-panel {
    padding: 28px 20px;
  }

  .free-signals-strip {
    padding-bottom: 28px;
  }

  .free-signals-panel {
    grid-template-columns: 1fr;
    gap: 22px;
    width: min(100% - 24px, 1180px);
    margin-inline: auto;
    padding: 24px 20px;
    border-radius: 14px;
  }

  .free-signals-panel h2 {
    max-width: 310px;
    font-size: 2rem;
    line-height: 1.04;
  }

  .free-signals-panel p {
    font-size: 0.94rem;
  }

  .free-signals-actions {
    justify-items: stretch;
  }

  .text-cta {
    justify-content: center;
    min-height: 42px;
  }

  .form-intro {
    padding-top: 0;
  }

  .form-intro h3 {
    font-size: 1.85rem;
  }
}

.method-section {
  padding-bottom: 88px;
}

.method-section .section-lede {
  max-width: 620px;
}

.method-track {
  gap: 18px;
  padding-top: 44px;
}

.method-progress {
  top: 44px;
  left: 18px;
  right: 18px;
  height: 3px;
  background: rgba(11, 61, 53, 0.1);
}

.method-step {
  min-height: 360px;
  align-items: flex-start;
  justify-content: flex-end;
  overflow: hidden;
  padding: 34px 30px 30px;
  border: 1px solid rgba(231, 226, 216, 0.95);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.92), rgba(247, 243, 234, 0.76)),
    radial-gradient(circle at 72% 28%, rgba(191, 234, 215, 0.35), transparent 190px);
  box-shadow: 0 18px 44px rgba(16, 42, 35, 0.065);
  text-align: left;
  transform: translateY(calc((1 - var(--method-card-progress, 0)) * 18px));
  transition:
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 420ms ease,
    box-shadow 420ms ease,
    background 420ms ease;
}

.method-step::before {
  content: "";
  position: absolute;
  inset: auto -12% -36% 34%;
  height: 68%;
  pointer-events: none;
  opacity: 0.24;
  background:
    radial-gradient(circle, transparent 0 26%, rgba(15, 95, 76, 0.12) 26.4% 26.9%, transparent 27.3% 44%, rgba(15, 95, 76, 0.08) 44.5% 45%, transparent 45.5%),
    radial-gradient(circle at center, rgba(191, 234, 215, 0.2), transparent 60%);
  transform: scale(0.84);
  transition: opacity 520ms ease, transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.method-step::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(180deg, transparent 0 45%, rgba(11, 61, 53, 0.035));
  transition: opacity 420ms ease;
}

.method-step:hover,
.method-step.is-active {
  border-color: rgba(15, 95, 76, 0.28);
  box-shadow: 0 28px 64px rgba(7, 52, 45, 0.13);
  transform: translateY(calc((1 - var(--method-card-progress, 0)) * 4px - 8px));
}

.method-step:hover::before,
.method-step.is-active::before {
  opacity: 0.48;
  transform: scale(1);
}

.method-step.is-active::after {
  opacity: 1;
}

.method-illu {
  position: relative;
  top: auto;
  right: auto;
  z-index: 0;
  width: 82px;
  height: 82px;
  margin-bottom: auto;
  border: 1px solid rgba(15, 95, 76, 0.18);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 38%, rgba(191, 234, 215, 0.48), transparent 56%),
    rgba(255, 253, 248, 0.82);
  box-shadow: 0 16px 34px rgba(7, 52, 45, 0.08);
  opacity: 1;
  transform: translate3d(0, calc((1 - var(--method-card-progress, 0)) * 12px), 0) scale(0.96);
  transition:
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 420ms ease,
    box-shadow 420ms ease;
}

.method-illu img {
  width: 76%;
  height: 76%;
  object-fit: contain;
  transform: scale(1.04);
  opacity: 0.9;
  filter: saturate(0.92) contrast(1.02);
}

.method-glow {
  display: none;
}

.method-step:hover .method-illu,
.method-step.is-active .method-illu {
  transform: translate3d(0, -6px, 0) scale(1.04);
  border-color: rgba(15, 95, 76, 0.34);
  box-shadow: 0 22px 44px rgba(7, 52, 45, 0.14);
}

.method-step.is-active .method-illu img,
.method-step[data-step="1"].is-active .method-illu img,
.method-step[data-step="2"].is-active .method-illu img,
.method-step[data-step="3"].is-active .method-illu img {
  animation: none;
  transform: none;
}

.method-num {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 28px 0 18px;
  color: var(--green-800);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
}

.method-num::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-800);
  box-shadow: 0 0 0 6px rgba(191, 234, 215, 0.38);
}

.method-step h3,
.method-step p {
  position: relative;
  z-index: 1;
}

.method-step h3 {
  max-width: 280px;
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  line-height: 1.05;
}

.method-step p {
  max-width: 320px;
  font-size: 0.96rem;
}

@media (max-width: 1080px) {
  .method-track {
    gap: 18px;
    padding-top: 22px;
  }

  .method-progress {
    top: 22px;
    bottom: 22px;
    left: 28px;
    width: 3px;
    transform: none;
  }

  .method-step {
    min-height: 300px;
    padding: 30px 28px 28px;
  }

  .method-illu {
    width: 78px;
    height: 78px;
  }
}

@media (max-width: 760px) {
  .method-section {
    padding-bottom: 54px;
  }

  .method-track {
    gap: 14px;
  }

  .method-step {
    min-height: 265px;
    padding: 28px 22px 24px;
    border-radius: 14px;
  }

  .method-progress {
    display: none;
  }

  .method-illu {
    width: 72px;
    height: 72px;
    margin-bottom: 20px;
  }

  .method-step h3 {
    max-width: 240px;
    font-size: 1.45rem;
  }

  .method-step p {
    max-width: 270px;
    font-size: 0.93rem;
  }
}

.method-step {
  min-height: 340px;
  justify-content: center;
  padding: 34px 150px 34px 30px;
}

.method-step::before {
  inset: auto -18% -34% 28%;
}

.method-illu,
.method-step[data-step="1"] .method-illu,
.method-step[data-step="2"] .method-illu,
.method-step[data-step="3"] .method-illu {
  position: absolute;
  top: 50%;
  right: -46px;
  width: 205px;
  height: 255px;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  opacity: calc(0.24 + (var(--method-card-progress, 0) * 0.5));
  transform: translate3d(calc((1 - var(--method-card-progress, 0)) * 34px), -50%, 0) scale(calc(0.92 + (var(--method-card-progress, 0) * 0.08)));
  filter: drop-shadow(0 26px 36px rgba(7, 52, 45, 0.1));
  transition:
    opacity 520ms ease,
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 520ms ease;
}

.method-step[data-step="2"] .method-illu {
  right: -58px;
  width: 220px;
  height: 275px;
}

.method-step[data-step="3"] .method-illu {
  right: -42px;
  width: 190px;
  height: 240px;
}

.method-illu img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 1;
  transform: none;
  filter: none;
}

.method-step:hover .method-illu,
.method-step.is-active .method-illu {
  opacity: 0.88;
  transform: translate3d(-8px, -50%, 0) scale(1.03);
  filter: drop-shadow(0 34px 42px rgba(7, 52, 45, 0.15));
}

.method-num {
  margin-top: 0;
}

.method-step h3,
.method-step p {
  max-width: 230px;
}

@media (max-width: 1080px) {
  .method-step {
    min-height: 265px;
    padding: 32px 180px 30px 34px;
  }

  .method-step h3,
  .method-step p {
    max-width: 360px;
  }

  .method-illu,
  .method-step[data-step="1"] .method-illu,
  .method-step[data-step="2"] .method-illu,
  .method-step[data-step="3"] .method-illu {
    right: -24px;
    width: 210px;
    height: 260px;
  }
}

@media (max-width: 760px) {
  .method-step {
    min-height: 230px;
    padding: 26px 138px 26px 22px;
  }

  .method-step h3,
  .method-step p {
    max-width: 220px;
  }

  .method-step h3 {
    font-size: 1.4rem;
  }

  .method-illu,
  .method-step[data-step="1"] .method-illu,
  .method-step[data-step="2"] .method-illu,
  .method-step[data-step="3"] .method-illu {
    top: 50%;
    right: -42px;
    width: 178px;
    height: 222px;
  }

  .method-step[data-step="2"] .method-illu {
    right: -54px;
    width: 190px;
    height: 238px;
  }

  .method-step[data-step="3"] .method-illu {
    right: -46px;
    width: 168px;
    height: 210px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal-item,
  .reveal-title span {
    opacity: 1;
    filter: none;
    transform: none;
  }
}
