/* ============================================================
   Tori — Landing page styles
   Dark warm premium base + vivid Tori orange
   ============================================================ */

:root {
  --accent: #FF8C1A;
  --accent-deep: #F77B00;
  --accent-soft: rgba(255, 140, 26, 0.12);
  --bg: #161009;
  --bg-2: #1F1810;
  --bg-3: #2A2014;
  --line: rgba(255, 224, 190, 0.10);
  --cream: #FBF3E8;
  --cream-2: #F4E8D7;
  --ink: #1F1810;
  --text: #F6EDE1;
  --text-dim: #BCA88E;
  --radius: 22px;
  --font-display: "Secular One", sans-serif;
  --font-body: "Assistant", sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  background-color: var(--bg);
  transition: background-color 0.25s ease;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 18px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.25s ease;
}
body.theme-cream { background-color: var(--cream); }
html.theme-cream { background-color: var(--cream); }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--accent); color: #1F1205; }

.container { width: min(1160px, 92vw); margin-inline: auto; }

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

p { text-wrap: pretty; }

.accent { color: var(--accent); }

/* ---------- iPhone mockup frame ---------- */
.iphone { container-type: inline-size; position: relative; }
.iphone-body {
  position: relative;
  background: linear-gradient(145deg, #45454C, #1A1A1F 55%, #2E2E34);
  border-radius: 15.5cqw;
  padding: 3cqw;
  box-shadow:
    inset 0 0 0 0.5cqw rgba(255, 255, 255, 0.10),
    inset 0 0 2cqw rgba(0, 0, 0, 0.6),
    0 40px 70px -20px rgba(0, 0, 0, 0.55);
}
.iphone-body::before {
  /* power button */
  content: "";
  position: absolute;
  right: -1cqw;
  top: 30cqw;
  width: 1cqw;
  height: 15cqw;
  background: linear-gradient(180deg, #3A3A40, #1F1F24);
  border-radius: 0 1cqw 1cqw 0;
}
.iphone-body::after {
  /* volume buttons */
  content: "";
  position: absolute;
  left: -1cqw;
  top: 26cqw;
  width: 1cqw;
  height: 20cqw;
  background:
    linear-gradient(180deg, #3A3A40, #1F1F24) 0 0 / 100% 42% no-repeat,
    linear-gradient(180deg, #3A3A40, #1F1F24) 0 100% / 100% 42% no-repeat;
  border-radius: 1cqw 0 0 1cqw;
}
.iphone-screen {
  position: relative;
  border-radius: 12.5cqw;
  overflow: hidden;
  aspect-ratio: 9 / 19.5;
  background: #000;
}
.iphone-screen img,
.iphone-screen video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
}
.iphone-screen video {
  background: #000;
}
.iphone-island {
  position: absolute;
  top: 5.4cqw;
  left: 50%;
  transform: translateX(-50%);
  width: 29cqw;
  height: 7.2cqw;
  background: #000;
  border-radius: 999px;
  z-index: 3;
  box-shadow: inset 0 0 0 0.4cqw rgba(255, 255, 255, 0.04);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 19px;
  padding: 16px 34px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), background 0.2s;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #221103;
  box-shadow: 0 8px 30px -8px rgba(255, 140, 26, 0.55);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 42px -8px rgba(255, 140, 26, 0.65);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn .arrow { transition: transform 0.25s var(--ease-out); }
.btn:hover .arrow { transform: translateX(-5px); }

/* ---------- nav ---------- */
.nav {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
  padding: max(18px, calc(12px + env(safe-area-inset-top, 0px))) 0 18px;
}
.nav.scrolled {
  background: rgba(22, 16, 9, 0.85);
  box-shadow: 0 1px 0 var(--line);
  padding: max(10px, calc(6px + env(safe-area-inset-top, 0px))) 0 10px;
}
body.theme-cream .nav.scrolled {
  background: rgba(251, 243, 232, 0.92);
  box-shadow: 0 1px 0 rgba(60, 35, 5, 0.08);
}
.nav.scrolled::before {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  pointer-events: none;
  z-index: -1;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-logo img { height: 44px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 30px; font-weight: 600; font-size: 16.5px; color: var(--text-dim); }
.nav-links a { transition: color 0.2s; }
.nav-links a:hover { color: var(--accent); }
.nav .btn { padding: 11px 24px; font-size: 16.5px; }
.nav-burger {
  display: none;
  width: 46px; height: 46px;
  border: 1.5px solid var(--line);
  border-radius: 13px;
  background: rgba(31, 24, 16, 0.7);
  cursor: pointer;
  place-items: center;
  flex: none;
}
.nav-burger .bars {
  display: grid;
  gap: 5px;
  width: 20px;
}
.nav-burger .bars span {
  height: 2px;
  border-radius: 2px;
  background: var(--text);
  transition: transform 0.3s var(--ease-out), opacity 0.2s;
}
body.nav-open .nav-burger .bars span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-burger .bars span:nth-child(2) { opacity: 0; }
body.nav-open .nav-burger .bars span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  width: 900px; height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 140, 26, 0.20), transparent 62%);
  top: -250px;
  inset-inline-start: -200px;
  pointer-events: none;
}
.hero-glow.two {
  inset-inline-start: auto;
  inset-inline-end: -350px;
  top: 30%;
  width: 760px; height: 760px;
  background: radial-gradient(circle, rgba(255, 140, 26, 0.12), transparent 60%);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-soft);
  border: 1px solid rgba(255, 140, 26, 0.35);
  color: var(--accent);
  font-weight: 700;
  font-size: 16px;
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 28px;
}
.hero-badge .dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 140, 26, 0.5); }
  50% { box-shadow: 0 0 0 9px rgba(255, 140, 26, 0); }
}
.hero h1 {
  font-size: clamp(52px, 6.6vw, 96px);
  margin-bottom: 26px;
}
.hero h1 .line2 { color: var(--accent); display: block; }
.hero-sub {
  font-size: clamp(19px, 1.6vw, 23px);
  color: var(--text-dim);
  max-width: 34ch;
  margin-bottom: 38px;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats { display: flex; gap: 44px; flex-wrap: wrap; }
.stat .num {
  font-family: var(--font-display);
  font-size: clamp(34px, 3vw, 44px);
  color: var(--accent);
  line-height: 1;
}
.stat .lbl { color: var(--text-dim); font-size: 16px; font-weight: 600; margin-top: 6px; }

.hero-phone-wrap { position: relative; display: flex; justify-content: center; }
.hero-phone {
  width: min(350px, 76%);
  will-change: transform;
}
.hero-ring {
  position: absolute;
  inset: -8% -16%;
  border: 1.5px dashed rgba(255, 140, 26, 0.28);
  border-radius: 50%;
  animation: spin 50s linear infinite;
  pointer-events: none;
}
@keyframes spin { to { transform: rotate(360deg); } }
.float-chip {
  position: absolute;
  background: rgba(31, 24, 16, 0.92);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 12px 18px;
  font-weight: 700;
  font-size: 15.5px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 18px 40px -12px rgba(0, 0, 0, 0.5);
  animation: floaty 5.5s ease-in-out infinite;
}
.float-chip .ico {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 17px;
}
.float-chip small { display: block; font-weight: 600; color: var(--text-dim); font-size: 13px; }
.chip-1 { top: 12%; inset-inline-end: -4%; animation-delay: 0s; }
.chip-2 { bottom: 16%; inset-inline-start: -8%; animation-delay: 2.2s; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* ---------- marquee ---------- */
.marquee {
  background: var(--accent);
  color: #221103;
  overflow: hidden;
  padding: 16px 0;
  transform: rotate(-1.2deg) scale(1.02);
  position: relative;
  z-index: 5;
}
.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 26s linear infinite;
}
.marquee span {
  font-family: var(--font-display);
  font-size: 21px;
  white-space: nowrap;
  padding-inline: 26px;
  display: flex;
  align-items: center;
  gap: 26px;
}
.marquee span::after { content: "✦"; font-size: 15px; }
@keyframes marquee { to { transform: translateX(50%); } }

/* ---------- generic section ---------- */
.section { padding: 110px 0; position: relative; }
.section-head { max-width: 720px; margin-bottom: 64px; }
.section-head.center { margin-inline: auto; text-align: center; }
.kicker {
  display: inline-block;
  color: var(--accent);
  font-weight: 800;
  font-size: 15.5px;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}
.section-head h2 { font-size: clamp(36px, 4.2vw, 58px); margin-bottom: 18px; }
.section-head p { color: var(--text-dim); font-size: 20px; }

/* ---------- pain / chat ---------- */
.chat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-bottom: 70px;
}
.chat-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.3s var(--ease-out), border-color 0.3s;
}
.chat-card:hover { transform: translateY(-6px); border-color: rgba(255, 140, 26, 0.4); }
.bubble {
  position: relative;
  background: #2E3B2E;
  color: #E9F5E4;
  border-radius: 18px 18px 4px 18px;
  padding: 14px 18px;
  font-size: 17.5px;
  font-weight: 600;
  margin-bottom: 18px;
  width: fit-content;
}
.bubble::after {
  content: attr(data-time);
  display: block;
  text-align: left;
  font-size: 11.5px;
  color: rgba(233, 245, 228, 0.55);
  margin-top: 4px;
}
.chat-card .consequence { color: var(--text-dim); font-size: 16.5px; display: flex; gap: 10px; align-items: flex-start; }
.chat-card .consequence::before { content: "←"; color: var(--accent); font-weight: 800; }

.time-callout {
  background: linear-gradient(135deg, var(--bg-3), var(--bg-2));
  border: 1px solid rgba(255, 140, 26, 0.25);
  border-radius: calc(var(--radius) + 6px);
  padding: 50px 56px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 44px;
  align-items: center;
}
.time-callout .big {
  font-family: var(--font-display);
  font-size: clamp(56px, 6vw, 84px);
  color: var(--accent);
  line-height: 1;
}
.time-callout .big small { display: block; font-size: 18px; color: var(--text-dim); font-family: var(--font-body); font-weight: 700; margin-top: 8px; }
.time-callout h3 { font-size: clamp(24px, 2.4vw, 32px); margin-bottom: 10px; }
.time-callout p { color: var(--text-dim); font-size: 19px; }

/* ---------- showcase (cream) ---------- */
.showcase {
  background: var(--cream);
  color: var(--ink);
  border-radius: 48px 48px 0 0;
}
.showcase .kicker { color: var(--accent-deep); }
.showcase .section-head p { color: #6E5C44; }
.phones-row {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 0;
  margin-bottom: 64px;
  perspective: 1200px;
}
.phone-card { width: min(290px, 30%); transition: transform 0.5s var(--ease-out); will-change: transform; }
.phone-card .iphone { filter: drop-shadow(0 40px 60px rgba(60, 35, 5, 0.28)); }
.phone-card .iphone-body { box-shadow: inset 0 0 0 0.5cqw rgba(255, 255, 255, 0.10), inset 0 0 2cqw rgba(0, 0, 0, 0.6); }
.phone-card.p1 { transform: rotate(-7deg) translateY(26px) translateX(30px); z-index: 1; }
.phone-card.p2 { z-index: 3; transform: translateY(-14px) scale(1.08); }
.phone-card.p3 { transform: rotate(7deg) translateY(26px) translateX(-30px); z-index: 2; }
.phones-row:hover .p1 { transform: rotate(-10deg) translateY(18px) translateX(16px); }
.phones-row:hover .p2 { transform: translateY(-26px) scale(1.1); }
.phones-row:hover .p3 { transform: rotate(10deg) translateY(18px) translateX(-16px); }

.check-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.check-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #FFFFFF;
  border: 1px solid #EADBC4;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 700;
  font-size: 16.5px;
  color: var(--ink);
  box-shadow: 0 6px 18px -8px rgba(60, 35, 5, 0.15);
}
.check-pill .ck {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 12.5px;
  font-weight: 800;
  flex: none;
}

/* ---------- process ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  counter-reset: step;
}
.step-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px 30px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), border-color 0.3s;
}
.step-card:hover { transform: translateY(-6px); border-color: rgba(255, 140, 26, 0.45); }
.step-card .n {
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 140, 26, 0.55);
  margin-bottom: 18px;
}
.step-card h3 { font-size: 24px; margin-bottom: 10px; }
.step-card p { color: var(--text-dim); font-size: 17px; }
.step-card::after {
  content: "";
  position: absolute;
  inset-inline-end: -40px;
  top: -40px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 140, 26, 0.14), transparent 70%);
}
.process-cta { text-align: center; margin-top: 56px; }

/* ---------- features ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.feat-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.3s var(--ease-out), border-color 0.3s, background 0.3s;
}
.feat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 140, 26, 0.45);
  background: var(--bg-3);
}
.feat-card .ico {
  width: 52px; height: 52px;
  border-radius: 15px;
  background: var(--accent-soft);
  border: 1px solid rgba(255, 140, 26, 0.3);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: var(--accent);
}
.feat-card .ico svg { width: 26px; height: 26px; }
.feat-card h3 { font-size: 22px; margin-bottom: 8px; }
.feat-card p { color: var(--text-dim); font-size: 16.5px; }

/* ---------- dashboard split ---------- */
.dash-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.dash-list { display: grid; gap: 18px; margin-top: 36px; }
.dash-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 22px;
  font-weight: 700;
  font-size: 17.5px;
  transition: transform 0.3s var(--ease-out), border-color 0.3s;
}
.dash-item:hover { transform: translateX(-6px); border-color: rgba(255, 140, 26, 0.4); }
.dash-item .ck {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--accent);
  color: #221103;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 800;
  flex: none;
}
.dash-phone-wrap { display: flex; justify-content: center; position: relative; }
.dash-phone {
  width: min(340px, 80%);
  will-change: transform;
}
.dash-glow {
  position: absolute;
  inset: 10%;
  background: radial-gradient(circle, rgba(255, 140, 26, 0.22), transparent 65%);
  z-index: -1;
}

/* ---------- pricing ---------- */
.pricing { background: var(--cream); color: var(--ink); }
.pricing .kicker { color: var(--accent-deep); }
.price-card {
  max-width: 760px;
  margin-inline: auto;
  background: #FFFFFF;
  border-radius: 34px;
  padding: 64px 58px;
  text-align: center;
  box-shadow: 0 40px 90px -30px rgba(60, 35, 5, 0.3);
  border: 1px solid #F0E2CB;
  position: relative;
  overflow: hidden;
}
.price-card::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 7px;
  background: linear-gradient(90deg, var(--accent), var(--accent-deep));
}
.price-num {
  font-family: var(--font-display);
  font-size: clamp(88px, 10vw, 132px);
  line-height: 1;
  color: var(--ink);
}
.price-num .shekel { color: var(--accent-deep); font-size: 0.55em; vertical-align: 18px; }
.price-per { color: #8A7458; font-weight: 700; font-size: 21px; margin-bottom: 10px; }
.price-card h3 { font-size: clamp(26px, 2.6vw, 34px); margin: 18px 0 28px; }
.price-checks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 38px;
}
.price-checks .check-pill { background: var(--cream); border-color: #EADBC4; }

/* ---------- faq ---------- */
.faq-list { max-width: 780px; margin-inline: auto; display: grid; gap: 14px; }
details.faq {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  transition: border-color 0.3s;
}
details.faq[open] { border-color: rgba(255, 140, 26, 0.45); }
details.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  font-weight: 700;
  font-size: 19px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary .plus {
  flex: none;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 20px;
  font-weight: 600;
  transition: transform 0.3s var(--ease-out), background 0.2s;
}
details.faq[open] summary .plus { transform: rotate(45deg); background: var(--accent); color: #221103; }
details.faq .faq-body { padding: 0 26px 24px; color: var(--text-dim); font-size: 17.5px; max-width: 60ch; }

/* ---------- lead form ---------- */
.lead {
  position: relative;
  overflow: hidden;
}
.lead-glow {
  position: absolute;
  width: 1000px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255, 140, 26, 0.16), transparent 65%);
  top: -150px;
  inset-inline-start: 50%;
  transform: translateX(50%);
  pointer-events: none;
}
.lead-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.lead-stats { display: grid; gap: 20px; margin-top: 40px; }
.lead-stat {
  display: flex;
  align-items: center;
  gap: 20px;
}
.lead-stat .num {
  font-family: var(--font-display);
  font-size: 38px;
  color: var(--accent);
  min-width: 130px;
  line-height: 1.1;
}
.lead-stat .lbl { color: var(--text-dim); font-weight: 600; font-size: 17px; }

.form-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 44px 40px;
  box-shadow: 0 50px 100px -40px rgba(0, 0, 0, 0.6);
}
.form-card h3 { font-size: 28px; margin-bottom: 6px; }
.form-card .form-sub { color: var(--text-dim); margin-bottom: 30px; font-size: 16.5px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 700; font-size: 15px; color: var(--text-dim); }
.field input, .field select, .field textarea {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--text);
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: 13px;
  padding: 13px 16px;
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field textarea { resize: vertical; min-height: 84px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(255, 140, 26, 0.15);
}
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23BCA88E' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: left 16px center; }
.form-card .btn { width: 100%; justify-content: center; margin-top: 22px; }
.form-success {
  display: none;
  text-align: center;
  padding: 60px 10px;
}
.form-success .big-check {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: var(--accent);
  color: #221103;
  display: grid;
  place-items: center;
  font-size: 36px;
  margin: 0 auto 24px;
}
.form-card.sent form { display: none; }
.form-card.sent .form-success { display: block; }

/* ---------- footer ---------- */
.footer {
  border-top: 1px solid var(--line);
  padding: 54px 0 40px;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer img { height: 40px; width: auto; }
.footer-links { display: flex; gap: 26px; color: var(--text-dim); font-size: 15.5px; font-weight: 600; }
.footer-links a:hover { color: var(--accent); }
.footer .copy { color: var(--text-dim); font-size: 14.5px; width: 100%; text-align: center; margin-top: 26px; opacity: 0.7; }

/* ---------- whatsapp float ---------- */
.wa-float {
  position: fixed;
  bottom: max(26px, calc(16px + env(safe-area-inset-bottom, 0px)));
  inset-inline-start: max(26px, calc(16px + env(safe-area-inset-left, 0px)));
  z-index: 90;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 36px -8px rgba(37, 211, 102, 0.55);
  transition: transform 0.25s var(--ease-out);
}
.wa-float:hover { transform: scale(1.1) translateY(-3px); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* ---------- scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  transition-delay: var(--d, 0s);
}
.reveal.in { opacity: 1; transform: none; }
.reveal-scale {
  opacity: 0;
  transform: scale(0.92) translateY(20px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  transition-delay: var(--d, 0s);
}
.reveal-scale.in { opacity: 1; transform: none; }

/* motion off (tweak / preference) */
body.no-motion .reveal, body.no-motion .reveal-scale { opacity: 1; transform: none; transition: none; }
body.no-motion .float-chip, body.no-motion .hero-ring, body.no-motion .marquee-track, body.no-motion .hero-badge .dot { animation: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-scale { opacity: 1; transform: none; transition: none; }
  .float-chip, .hero-ring, .marquee-track, .hero-badge .dot { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 70px; }
  .hero { padding-top: 120px; }
  .hero-phone-wrap { order: 2; }
  .chat-grid, .process-grid, .features-grid { grid-template-columns: 1fr 1fr; }
  .dash-split, .lead-grid { grid-template-columns: 1fr; gap: 50px; }

  /* mobile nav: centered logo, burger on the right */
  .nav-inner {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 46px;
  }
  .nav-logo { position: relative; z-index: 1; }
  .nav-burger {
    display: grid;
    position: absolute;
    inset-inline-start: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
  }
  .nav .btn { display: none; }
  .nav-links {
    position: fixed;
    inset: 0;
    z-index: 0;
    flex-direction: column;
    justify-content: center;
    gap: 6vh;
    background: rgba(22, 16, 9, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    font-size: 26px;
    font-weight: 700;
    color: var(--text);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s var(--ease-out), visibility 0.35s;
  }
  body.nav-open .nav { z-index: 200; }
  body.nav-open .nav-links {
    opacity: 1;
    visibility: visible;
    z-index: 1;
    pointer-events: auto;
  }
  body.nav-open .nav-logo,
  body.nav-open .nav-burger { z-index: 2; }
  .nav-links .menu-cta { display: inline-flex; }
  body.nav-open { overflow: hidden; }
}
@media (min-width: 981px) { .nav-links .menu-cta { display: none; } }
@media (max-width: 640px) {
  body { font-size: 17px; }
  .section { padding: 72px 0; }
  .section-head { margin-bottom: 44px; }
  .section-head p { font-size: 18px; }

  /* hero: centered, stacked */
  .hero { padding: 108px 0 56px; min-height: auto; }
  .hero-copy { text-align: center; }
  .hero-sub { margin-inline: auto; }
  .hero h1 { font-size: clamp(44px, 12vw, 60px); }
  .hero-badge { font-size: 14.5px; }
  .hero-cta { flex-direction: column; align-items: stretch; margin-bottom: 44px; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .hero-stats { justify-content: center; gap: 26px; }
  .stat { text-align: center; }
  .hero-phone-wrap { margin-top: 10px; }
  .hero-phone { width: min(250px, 68%); }
  .float-chip { display: none; }
  .hero-ring { inset: -6% -10%; }

  .marquee span { font-size: 17px; padding-inline: 18px; gap: 18px; }

  .chat-grid, .process-grid, .features-grid { grid-template-columns: 1fr; }
  .chat-grid { margin-bottom: 48px; }
  .time-callout { grid-template-columns: 1fr; padding: 36px 26px; gap: 22px; text-align: center; }
  .time-callout .big { margin-inline: auto; }

  /* phones trio → swipe carousel */
  .phones-row {
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 16px 8vw 34px;
    margin-inline: -4vw;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .phones-row::-webkit-scrollbar { display: none; }
  .phones-row .phone-card, .phones-row:hover .phone-card {
    flex: 0 0 62%;
    width: 62%;
    transform: none;
    scroll-snap-align: center;
  }
  .swipe-hint { display: flex; }

  .check-pill { font-size: 15px; padding: 10px 16px; }

  .step-card { padding: 28px 24px 26px; }
  .step-card .n { font-size: 52px; }

  .dash-phone { width: min(240px, 66%); }
  .dash-item { font-size: 16px; padding: 14px 18px; }

  .price-card { padding: 44px 24px; border-radius: 26px; }
  .price-card .btn { width: 100%; justify-content: center; }

  details.faq summary { padding: 18px 20px; font-size: 17.5px; }
  details.faq .faq-body { padding: 0 20px 20px; }

  .lead-stat .num { font-size: 30px; min-width: 104px; }
  .form-card { padding: 32px 22px; border-radius: 22px; }
  .form-grid { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; text-align: center; gap: 20px; }
  .footer-links { flex-wrap: wrap; justify-content: center; }

  .wa-float { width: 54px; height: 54px; bottom: 18px; inset-inline-start: 18px; }
}

/* swipe hint (mobile carousel) */
.swipe-hint {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #8A7458;
  font-weight: 700;
  font-size: 14.5px;
  margin: -10px 0 28px;
}
@media (min-width: 641px) { .swipe-hint { display: none; } }
.swipe-hint .dots { display: flex; gap: 6px; }
.swipe-hint .dots i { width: 7px; height: 7px; border-radius: 50%; background: #D9C6A8; }
.swipe-hint .dots i.on { background: var(--accent-deep); }
