:root {
  --ink: #0b1220;
  --ink-2: #142033;
  --teal: #0f766e;
  --teal-d: #115e59;
  --teal-b: #2dd4bf;
  --flame: #ea580c;
  --flame-s: #f97316;
  --paper: #f3f6f5;
  --card: #fff;
  --line: rgba(15, 118, 110, .16);
  --muted: #4b5c66;
  --text: #14202b;
  --radius: 18px;
  --shadow: 0 18px 50px rgba(11, 18, 32, .12);
  --max: 1160px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  color: var(--text);
  background: var(--paper);
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: var(--teal-d); }
button, input, select, textarea { font: inherit; }

.wrap { width: min(var(--max), calc(100% - 2rem)); margin-inline: auto; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

.nav {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: .7rem 0;
}
.logo img { height: 46px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 1.15rem; }
.nav-links a { color: var(--ink); text-decoration: none; font-weight: 600; font-size: .92rem; }
.nav-links a:hover { color: var(--teal); }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
  min-height: 48px; padding: 0 1.15rem; border-radius: 999px;
  border: 0; text-decoration: none; font-weight: 700; cursor: pointer;
}
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--flame-s), var(--flame));
  box-shadow: 0 10px 24px rgba(234, 88, 12, .28);
}
.btn-ghost {
  color: #fff; background: transparent;
  border: 1px solid rgba(255,255,255,.35);
}
.btn-teal {
  color: #fff;
  background: linear-gradient(135deg, #14b8a6, var(--teal));
}
.nav-call { display: none; }
.nav-toggle {
  display: none; width: 44px; height: 44px; border: 0; background: transparent; padding: 0;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px;
  position: relative;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0;
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }

.hero {
  position: relative; color: #fff;
  min-height: clamp(620px, 86vh, 820px);
  display: flex; align-items: center;
  background: #0b1220 center/cover no-repeat;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(11,18,32,.88) 0%, rgba(11,18,32,.62) 52%, rgba(11,18,32,.28) 100%),
    linear-gradient(180deg, rgba(11,18,32,.15), rgba(11,18,32,.45));
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.15fr .85fr;
  gap: 2.4rem; padding: 3.2rem 0 3.6rem; align-items: center;
}
.kicker {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  color: var(--teal-b); margin-bottom: .85rem;
}
.hero h1 {
  margin: 0 0 .8rem; font-size: clamp(2rem, 4.6vw, 3.35rem);
  line-height: 1.08; letter-spacing: -.035em;
}
.hero h1 em { font-style: normal; color: var(--teal-b); }
.hero-lead { margin: 0 0 1.4rem; max-width: 36rem; color: #d7e5e3; font-size: 1.05rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-bottom: 1.5rem; }
.trust-row { display: flex; flex-wrap: wrap; gap: .5rem; }
.pill {
  font-size: .78rem; font-weight: 700; padding: .38rem .7rem; border-radius: 999px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.16);
}

.lead-card {
  background: #fff; color: var(--text);
  border-radius: 22px; padding: 1.25rem 1.2rem 1.3rem;
  box-shadow: var(--shadow);
}
.lead-card h2 { margin: 0 0 .25rem; font-size: 1.2rem; color: var(--ink); }
.lead-card .sub { margin: 0 0 1rem; color: var(--muted); font-size: .9rem; }
.step-bar { display: flex; gap: .35rem; margin-bottom: 1rem; }
.step-bar i {
  flex: 1; height: 5px; border-radius: 99px; background: #d7ebe8;
}
.step-bar i.on { background: linear-gradient(90deg, var(--teal-b), var(--teal)); }
.funnel-step[hidden] { display: none !important; }
.choice-grid { display: grid; gap: .5rem; }
.choice-grid.two { grid-template-columns: 1fr 1fr; }
.choice {
  width: 100%; text-align: left; border-radius: 12px; min-height: 50px;
  padding: .8rem .9rem; background: #f4faf9; color: var(--ink);
  border: 1px solid var(--line); font-weight: 650; cursor: pointer;
}
.choice:hover, .choice.is-on {
  border-color: var(--teal); background: #e6f7f4; color: var(--teal-d);
}
.field { margin-bottom: .75rem; }
.field label { display: block; font-size: .82rem; font-weight: 700; margin-bottom: .28rem; }
.field input, .field textarea, .field select {
  width: 100%; border: 1px solid var(--line); border-radius: 12px;
  padding: .75rem .85rem; background: #fff;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(45, 212, 191, .25);
}
.hp { position: absolute; left: -9999px; }
.check { display: flex; gap: .6rem; align-items: flex-start; font-size: .8rem; color: var(--muted); margin: .85rem 0; }
.check input { margin-top: .2rem; }
.form-msg { min-height: 1.3em; font-size: .9rem; font-weight: 700; margin: .4rem 0 0; }
.form-msg.err { color: #b91c1c; }
.form-nav { display: flex; gap: .5rem; margin-top: .9rem; }
.form-nav .btn { flex: 1; }
.btn-back { background: #eef3f2; color: var(--ink); }

.band { padding: 4.2rem 0; }
.band-dark { background: var(--ink); color: #fff; }
.band h2 { margin: 0 0 .6rem; font-size: clamp(1.55rem, 3vw, 2.15rem); letter-spacing: -.03em; }
.band .intro { margin: 0 0 1.8rem; color: var(--muted); max-width: 40rem; }
.band-dark .intro { color: #b7c7c4; }

.svc-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem;
}
.svc {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); box-shadow: 0 8px 24px rgba(11,18,32,.05);
  text-decoration: none; color: inherit; display: block;
}
.svc img { width: 100%; height: 190px; object-fit: cover; }
.svc div { padding: 1rem 1.1rem 1.15rem; }
.svc h3 { margin: 0 0 .3rem; font-size: 1.1rem; color: var(--ink); }
.svc p { margin: 0; color: var(--muted); font-size: .92rem; }

.why-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 2rem; align-items: center; }
.why-list { margin: 0; padding: 0; list-style: none; display: grid; gap: .8rem; }
.why-list li {
  display: grid; grid-template-columns: 2.2rem 1fr; gap: .8rem; align-items: start;
}
.why-list b {
  width: 2.2rem; height: 2.2rem; border-radius: 10px;
  background: linear-gradient(145deg, var(--teal-b), var(--teal));
  color: #fff; display: grid; place-items: center; font-size: .85rem;
}
.why-photo { border-radius: 22px; overflow: hidden; min-height: 340px; }
.why-photo img { width: 100%; height: 100%; object-fit: cover; min-height: 340px; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.step {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px; padding: 1.15rem;
}
.step span { display: block; color: var(--teal-b); font-weight: 800; margin-bottom: .4rem; }
.step h3 { margin: 0 0 .35rem; font-size: 1.02rem; }
.step p { margin: 0; color: #b7c7c4; font-size: .9rem; }

.area-chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.area-chips span {
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: .45rem .85rem; font-weight: 650; font-size: .9rem;
}

.cta-strip {
  background: linear-gradient(135deg, var(--teal-d), #0b1220 70%);
  color: #fff; border-radius: 24px; padding: 1.6rem 1.5rem;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.cta-strip h2 { margin: 0 0 .25rem; font-size: 1.35rem; }
.cta-strip p { margin: 0; color: #cde8e4; }

.site-footer { background: #081018; color: #9cb0ad; padding: 2.2rem 0 5.5rem; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 1.5rem; }
.site-footer a { color: #e8f4f2; text-decoration: none; }
.site-footer h3 { margin: 0 0 .6rem; color: #fff; font-size: 1rem; }
.site-footer p, .site-footer li { margin: 0 0 .35rem; font-size: .92rem; }
.site-footer ul { margin: 0; padding: 0; list-style: none; }
.legal { margin-top: 1.4rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.08); font-size: .82rem; }

.page { padding: 2.5rem 0 4rem; }
.page-card {
  background: #fff; border-radius: 20px; padding: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid var(--line);
}
.page-card h1 { margin-top: 0; }
.thanks { text-align: center; padding: 4rem 1rem; }
.thanks h1 { font-size: clamp(1.8rem, 4vw, 2.5rem); }

.sticky-cta {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  padding: .65rem .85rem calc(.65rem + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.96); border-top: 1px solid var(--line);
  gap: .5rem;
}
.sticky-cta .btn { flex: 1; }

@media (max-width: 900px) {
  .hero-grid, .why-grid, .svc-grid, .steps, .foot-grid, .choice-grid.two { grid-template-columns: 1fr; }
  .nav-links {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    background: #fff; flex-direction: column; align-items: stretch;
    padding: .8rem 1rem 1rem; border-bottom: 1px solid var(--line);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: grid; place-items: center; }
  .nav-cta { display: none; }
  .nav-call { display: inline-flex; }
  .hero { min-height: auto; background-position: 62% center; }
  .hero-grid { padding: 2rem 0 2.2rem; }
  .cta-strip { flex-direction: column; align-items: stretch; }
  .sticky-cta { display: flex; }
  .site-footer { padding-bottom: 6.5rem; }
}

@media (min-width: 901px) {
  .nav-call { display: none !important; }
}
