/* =========================================================
   BOT Cobranças — Landing Page
   Paleta herdada do app: #22c55e (primária), #2D5E3E (institucional),
   #7FD6A5 (accent), #F8FAFB (fundo).
   ========================================================= */

:root {
  --green: #22c55e;
  --green-dark: #16a34a;
  --green-deep: #2D5E3E;
  --green-deeper: #1f4d2f;
  --green-soft: #7FD6A5;
  --green-wash: #f0fdf4;

  --ink: #0f172a;
  --ink-2: #1f2937;
  --muted: #64748b;
  --muted-2: #94a3b8;
  --line: #e5e7eb;
  --bg: #F8FAFB;
  --white: #fff;

  --danger: #ef4444;
  --warn: #f59e0b;

  --radius-sm: 10px;
  --radius: 12px;
  --radius-lg: 20px;
  --pill: 999px;

  --shadow-1: 0 1px 3px rgba(0, 0, 0, .08);
  --shadow-2: 0 8px 24px rgba(0, 0, 0, .10);
  --shadow-3: 0 24px 60px rgba(15, 23, 42, .12);
  --shadow-green: 0 10px 30px rgba(34, 197, 94, .28);

  --maxw: 1140px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink-2);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: var(--green-dark); text-decoration: none; }

h1, h2, h3, h4 {
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -.02em;
  margin: 0 0 .6rem;
  font-weight: 800;
}

h1 { font-size: clamp(2.1rem, 5.2vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.8vw, 2.6rem); }
h3 { font-size: 1.15rem; font-weight: 700; }

p { margin: 0 0 1rem; }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

section { padding: clamp(64px, 9vw, 110px) 0; }

.section-head {
  max-width: 720px;
  margin: 0 auto clamp(36px, 5vw, 60px);
  text-align: center;
}

.section-head p {
  color: var(--muted);
  font-size: 1.08rem;
  margin: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--green-dark);
  background: var(--green-wash);
  border: 1px solid rgba(34, 197, 94, .22);
  padding: 6px 14px;
  border-radius: var(--pill);
  margin-bottom: 18px;
}

.lead { font-size: 1.15rem; color: var(--muted); }

/* ---------- Botões ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  padding: 15px 30px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff;
  box-shadow: var(--shadow-green);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(34, 197, 94, .38);
  color: #fff;
}

.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .35);
}

.btn-ghost:hover { background: rgba(255, 255, 255, .1); color: #fff; }

.btn-outline {
  background: #fff;
  color: var(--green-dark);
  border: 1.5px solid var(--green);
}

.btn-outline:hover { background: var(--green-wash); transform: translateY(-2px); }

.btn-block { width: 100%; }

.btn-lg { padding: 18px 38px; font-size: 1.05rem; }

/* ---------- Navbar ---------- */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 16px 0;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
}

.nav.is-stuck {
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line), 0 8px 24px rgba(0, 0, 0, .05);
  padding: 10px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* O logo original é branco + verde-menta (feito para fundo escuro). Sobre a
   navbar clara do estado "stuck" ele sumiria, então trocamos pela variante
   escura. Duas imagens sobrepostas em vez de filtro CSS: assim as duas versões
   preservam o bicolor da marca. */
.nav-logo { position: relative; display: block; line-height: 0; }

.nav-logo img { height: 38px; width: auto; transition: opacity .3s ease; }

.nav-logo .logo-dark { position: absolute; top: 0; left: 0; opacity: 0; }

.nav.is-stuck .logo-light { opacity: 0; }
.nav.is-stuck .logo-dark { opacity: 1; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: .95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .85);
  transition: color .2s ease;
}

.nav-links a:hover { color: #fff; }

.nav.is-stuck .nav-links a { color: var(--muted); }
.nav.is-stuck .nav-links a:hover { color: var(--green-dark); }

.nav-cta {
  padding: 10px 22px;
  font-size: .92rem;
  border-radius: var(--pill);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
  padding: 4px;
}

.nav.is-stuck .nav-toggle { color: var(--ink); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  background: linear-gradient(150deg, var(--green-deep) 0%, var(--green-deeper) 55%, #143823 100%);
  color: #fff;
  padding: clamp(130px, 16vw, 180px) 0 clamp(80px, 10vw, 120px);
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  inset: auto 0 -1px 0;
  height: 90px;
  background: var(--bg);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.hero-glow {
  position: absolute;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(127, 214, 165, .22) 0%, transparent 68%);
  top: -180px;
  right: -140px;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(36px, 5vw, 70px);
  align-items: center;
}

.hero .eyebrow {
  background: rgba(127, 214, 165, .14);
  border-color: rgba(127, 214, 165, .3);
  color: var(--green-soft);
}

.hero h1 { color: #fff; }

.hero h1 .hl {
  background: linear-gradient(120deg, var(--green-soft), var(--green));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  color: rgba(255, 255, 255, .82);
  max-width: 540px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 22px;
}

.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  font-size: .9rem;
  color: rgba(255, 255, 255, .68);
  margin: 0;
}

.hero-note span { display: inline-flex; align-items: center; gap: 7px; }

.hero-note i { color: var(--green-soft); }

/* ---------- Mockup WhatsApp ---------- */

.phone {
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  background: #0b141a;
  border-radius: 34px;
  padding: 12px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, .45), 0 0 0 1px rgba(255, 255, 255, .08);
}

.phone-screen {
  background: #0b141a url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cpath d='M0 20h40M20 0v40' stroke='%23ffffff08' stroke-width='1'/%3E%3C/svg%3E");
  border-radius: 24px;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  flex-direction: column;
}

.phone-bar {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 14px 16px;
  background: #1f2c33;
  color: #e9edef;
}

.phone-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  font-size: .8rem;
  flex-shrink: 0;
}

.phone-bar strong { display: block; font-size: .9rem; font-weight: 600; }
.phone-bar small { font-size: .72rem; color: #8696a0; }

.phone-body {
  flex: 1;
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: flex-end;
}

.bubble {
  max-width: 82%;
  padding: 9px 12px;
  border-radius: 10px;
  font-size: .86rem;
  line-height: 1.5;
  color: #e9edef;
  position: relative;
  opacity: 0;
}

.bubble.out { align-self: flex-end; background: #005c4b; border-bottom-right-radius: 3px; }
.bubble.in { align-self: flex-start; background: #202c33; border-bottom-left-radius: 3px; }

.bubble time {
  display: block;
  text-align: right;
  font-size: .64rem;
  color: rgba(233, 237, 239, .55);
  margin-top: 3px;
}

.bubble .link { color: #53bdeb; word-break: break-all; }

.bubble .tick { color: #53bdeb; margin-left: 3px; }

.phone-flag {
  align-self: center;
  background: rgba(34, 197, 94, .16);
  border: 1px solid rgba(34, 197, 94, .35);
  color: var(--green-soft);
  font-size: .72rem;
  font-weight: 700;
  padding: 6px 13px;
  border-radius: var(--pill);
  opacity: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ---------- Faixa de logos / stack ---------- */

.strip {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 30px 0;
}

.strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 34px;
}

.strip small {
  width: 100%;
  text-align: center;
  color: var(--muted-2);
  font-size: .76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .11em;
  margin-bottom: 4px;
}

.strip-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--muted);
  font-size: .98rem;
}

.strip-item i { color: var(--green); font-size: 1.15rem; }

/* ---------- Problema ---------- */

.problem { background: var(--bg); }

.pain-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
  max-width: 900px;
  margin: 0 auto;
}

.pain {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--danger);
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: var(--shadow-1);
}

.pain h3 { font-size: 1rem; margin-bottom: 4px; }

.pain p { margin: 0; color: var(--muted); font-size: .95rem; }

.pain-after {
  text-align: center;
  margin-top: 44px;
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--ink);
}

.pain-after span { color: var(--green-dark); }

/* ---------- Loop / como funciona ---------- */

.loop { background: #fff; }

.loop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  position: relative;
}

.step {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
  border-color: rgba(34, 197, 94, .4);
}

.step-num {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 16px;
  box-shadow: 0 6px 16px rgba(34, 197, 94, .3);
}

.step h3 { margin-bottom: 6px; }

.step p { margin: 0; color: var(--muted); font-size: .95rem; }

.step.is-final { border-color: rgba(34, 197, 94, .45); background: var(--green-wash); }

/* ---------- Diferenciais ---------- */

.diffs { background: var(--bg); }

.diff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.diff {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 30px;
  box-shadow: var(--shadow-1);
  transition: transform .3s ease, box-shadow .3s ease;
}

.diff-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--green-wash);
  color: var(--green-dark);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
  border: 1px solid rgba(34, 197, 94, .2);
}

.diff h3 { font-size: 1.22rem; margin-bottom: 10px; }

.diff p { margin: 0; color: var(--muted); font-size: .97rem; }

/* ---------- Comparação ---------- */

.compare { background: #fff; }

.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

table.cmp {
  width: 100%;
  min-width: 640px;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  font-size: .96rem;
}

table.cmp th, table.cmp td {
  padding: 15px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

table.cmp thead th {
  background: var(--bg);
  font-weight: 700;
  color: var(--ink);
  font-size: .88rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}

table.cmp thead th.is-us {
  background: linear-gradient(135deg, rgba(34, 197, 94, .12), rgba(22, 163, 74, .07));
  color: var(--green-dark);
}

table.cmp td.is-us { background: rgba(34, 197, 94, .04); font-weight: 600; color: var(--ink-2); }

table.cmp tbody tr:last-child th, table.cmp tbody tr:last-child td { border-bottom: none; }

table.cmp tbody th { font-weight: 600; color: var(--muted); }

table.cmp .yes { color: var(--green-dark); font-weight: 700; }
table.cmp .no { color: var(--muted-2); }

/* ---------- Recursos ---------- */

.features { background: var(--bg); }

.feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.feat {
  display: flex;
  gap: 13px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
}

.feat i { color: var(--green); font-size: 1.2rem; margin-top: 2px; flex-shrink: 0; }

.feat strong { display: block; color: var(--ink); font-size: .98rem; margin-bottom: 2px; }

.feat span { color: var(--muted); font-size: .89rem; line-height: 1.5; }

/* ---------- Preços ---------- */

.pricing { background: #fff; }

.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
  align-items: start;
}

.plan {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  box-shadow: var(--shadow-1);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  position: relative;
}

.plan:hover { transform: translateY(-5px); box-shadow: var(--shadow-2); }

.plan.is-featured {
  border-color: var(--green);
  box-shadow: var(--shadow-3);
  transform: scale(1.03);
}

.plan.is-featured:hover { transform: scale(1.03) translateY(-5px); }

.plan-tag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 6px 16px;
  border-radius: var(--pill);
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(34, 197, 94, .35);
}

.plan-name {
  font-size: .8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--green-dark);
  margin-bottom: 6px;
}

.plan-limit { color: var(--muted); font-size: .95rem; margin-bottom: 18px; }

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 22px;
  color: var(--ink);
}

.plan-price .cur { font-size: 1.1rem; font-weight: 700; }
.plan-price .val { font-size: 2.9rem; font-weight: 800; letter-spacing: -.03em; line-height: 1; }
.plan-price .per { font-size: .95rem; color: var(--muted); font-weight: 600; }

.plan ul { list-style: none; margin: 0 0 26px; padding: 0; display: grid; gap: 10px; }

.plan li {
  display: flex;
  gap: 9px;
  font-size: .94rem;
  color: var(--muted);
  align-items: flex-start;
}

.plan li i { color: var(--green); margin-top: 3px; flex-shrink: 0; }

.pricing-note {
  text-align: center;
  margin-top: 34px;
  color: var(--muted);
  font-size: .94rem;
}

.pricing-note strong { color: var(--ink); }

/* ---------- FAQ ---------- */

.faq { background: var(--bg); }

.faq-list { max-width: 800px; margin: 0 auto; display: grid; gap: 12px; }

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .25s ease, box-shadow .25s ease;
}

.faq-item.is-open { border-color: rgba(34, 197, 94, .45); box-shadow: var(--shadow-1); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  padding: 20px 24px;
  font-family: inherit;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.faq-q i { color: var(--green); font-size: 1.1rem; transition: transform .3s ease; flex-shrink: 0; }

.faq-item.is-open .faq-q i { transform: rotate(45deg); }

.faq-a { height: 0; overflow: hidden; }

.faq-a p { padding: 0 24px 22px; margin: 0; color: var(--muted); font-size: .97rem; }

/* ---------- Cadastro ---------- */

.signup {
  background: linear-gradient(150deg, var(--green-deep) 0%, var(--green-deeper) 60%, #143823 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.signup .hero-glow { top: auto; bottom: -260px; left: -180px; right: auto; }

.signup-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(36px, 5vw, 66px);
  align-items: center;
}

.signup h2 { color: #fff; }

.signup .lead { color: rgba(255, 255, 255, .82); }

.signup-checks { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 12px; }

.signup-checks li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  color: rgba(255, 255, 255, .85);
  font-size: .98rem;
}

.signup-checks i { color: var(--green-soft); margin-top: 4px; }

.form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 34px 32px;
  box-shadow: var(--shadow-3);
  color: var(--ink-2);
}

.form-steps {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-size: .82rem;
  font-weight: 700;
}

.form-steps span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted-2);
}

.form-steps b {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--line);
  color: var(--muted);
  font-size: .78rem;
}

.form-steps span.is-active { color: var(--green-dark); }
.form-steps span.is-active b { background: var(--green); color: #fff; }

.form-steps hr { flex: 1; border: none; border-top: 1px solid var(--line); margin: 0; }

.field { margin-bottom: 15px; }

.field label {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--ink-2);
  margin-bottom: 6px;
}

.field input, .field select {
  width: 100%;
  font-family: inherit;
  font-size: .97rem;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink-2);
  transition: border-color .2s ease, box-shadow .2s ease;
}

.field input:focus, .field select:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, .15);
}

.field small { display: block; color: var(--muted-2); font-size: .78rem; margin-top: 5px; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.field-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; }

.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

.form-pane[hidden] { display: none; }

.form-msg {
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-size: .92rem;
  font-weight: 600;
  margin-bottom: 16px;
  display: none;
}

.form-msg.is-error { display: block; background: #fee2e2; color: #991b1b; }
.form-msg.is-ok { display: block; background: #dcfce7; color: #065f46; }

.form-foot { text-align: center; font-size: .8rem; color: var(--muted-2); margin: 14px 0 0; }

.btn[disabled] { opacity: .65; cursor: wait; transform: none; }

/* ---------- Rodapé ---------- */

.foot {
  background: #0f1f16;
  color: rgba(255, 255, 255, .6);
  padding: 46px 0 34px;
  font-size: .9rem;
}

.foot-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}

.foot img { height: 34px; opacity: .9; }

.foot a { color: rgba(255, 255, 255, .72); }
.foot a:hover { color: var(--green-soft); }

.foot-links { display: flex; gap: 22px; flex-wrap: wrap; }

/* ---------- Estados de animação ---------- */

.reveal { opacity: 0; }

/* ---------- Responsivo ---------- */

@media (max-width: 900px) {
  .hero-grid, .signup-grid { grid-template-columns: 1fr; }
  .hero-grid .phone { margin-top: 40px; }
  .plan.is-featured { transform: none; }
  .plan.is-featured:hover { transform: translateY(-5px); }

  .nav-toggle { display: block; }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 20px;
    right: 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-2);
    padding: 8px;
    display: none;
  }

  .nav-links.is-open { display: flex; }
  .nav-links a { color: var(--ink-2); padding: 12px 14px; border-radius: 8px; }
  .nav-links a:hover { background: var(--green-wash); color: var(--green-dark); }
  .nav .nav-cta { display: none; }
}

@media (max-width: 560px) {
  .field-row, .field-row-3 { grid-template-columns: 1fr; }
  .form-card { padding: 26px 20px; }
  .hero-actions .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal, .bubble, .phone-flag { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}
