:root {
  --ink: #0f1f1c;
  --muted: #4d5f5b;
  --line: #dfe8e5;
  --bg: #ffffff;
  --bg-alt: #f4f8f6;
  --brand: #0e7c66;
  --brand-dark: #0a5c4c;
  --brand-soft: #e3f3ee;
  --accent: #f4b860;
  --radius: 14px;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font: 17px/1.6 var(--sans);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
h1, h2, h3 { line-height: 1.15; margin: 0 0 .5em; }
h1, h2 { font-family: var(--serif); font-weight: 600; letter-spacing: -.02em; }
h1 { font-size: clamp(2.4rem, 5.5vw, 3.9rem); }
h1 em { font-style: normal; color: var(--brand); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.1rem; font-weight: 600; }
p { margin: 0 0 1em; }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 20px; }
.narrow { max-width: 760px; }
.center { text-align: center; }

.eyebrow {
  font-size: .8rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--brand); margin-bottom: .8em;
}
.lede { font-size: 1.15rem; color: var(--muted); }
.note { font-size: .95rem; color: var(--muted); margin-top: 1.4em; }

/* Buttons */
.btn {
  display: inline-block; text-decoration: none; font-weight: 600;
  background: var(--brand); color: #fff; border-radius: 999px;
  padding: .7em 1.3em; transition: background .15s, transform .15s;
}
.btn:hover { background: var(--brand-dark); transform: translateY(-1px); }
.btn-sm { font-size: .92rem; padding: .55em 1.1em; }
.btn-lg { font-size: 1.05rem; padding: .95em 1.7em; }
.btn-block { display: block; text-align: center; }
.btn-light { background: #fff; color: var(--brand-dark); }
.btn-light:hover { background: var(--brand-soft); }
.link { font-weight: 600; color: var(--brand); text-decoration: none; }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 10;
  background: rgba(255,255,255,.9); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; gap: 24px; height: 66px; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 600; font-size: 1.2rem; color: var(--brand); }
.logo svg { width: 30px; height: 30px; }
.logo span { color: var(--ink); }
.nav-links { display: flex; gap: 26px; margin-left: auto; }
.nav-links a { text-decoration: none; color: var(--muted); font-size: .95rem; }
.nav-links a:hover { color: var(--ink); }

/* Hero */
.hero { padding: 84px 0 72px; background: radial-gradient(900px 480px at 85% 10%, var(--brand-soft), transparent 70%); }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; }
.hero-cta { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; margin-top: 1.8em; }

.call-card {
  background: #fff; border: 1px solid var(--line); border-radius: 20px;
  box-shadow: 0 30px 60px -30px rgba(14,60,50,.35); padding: 22px;
}
.call-head { display: flex; align-items: center; gap: 10px; font-size: .88rem; color: var(--muted); margin-bottom: 16px; }
.dot { width: 9px; height: 9px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 4px #dcfce7; }
.tag { margin-left: auto; background: #fff4e0; color: #9a5b00; font-weight: 600; font-size: .75rem; padding: 3px 9px; border-radius: 999px; }
.chat { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.chat li { font-size: .93rem; line-height: 1.45; padding: 10px 14px; border-radius: 14px; max-width: 88%; }
.chat .them { background: var(--bg-alt); align-self: flex-start; border-bottom-left-radius: 4px; }
.chat .us { background: var(--brand); color: #fff; align-self: flex-end; border-bottom-right-radius: 4px; }
.call-foot { display: flex; gap: 14px; margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line); }
.ok { font-size: .82rem; font-weight: 600; color: var(--brand-dark); }

/* Band */
.band { background: var(--ink); color: #fff; padding: 40px 0; }
.band-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.band strong { display: block; font-family: var(--serif); font-size: 2.2rem; color: var(--accent); }
.band span { color: #c5d3cf; font-size: .95rem; }

/* Sections */
.section { padding: 96px 0; }
.section.alt { background: var(--bg-alt); }

.steps { list-style: none; padding: 0; margin: 40px 0 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.steps li { border-top: 2px solid var(--brand); padding-top: 22px; }
.num { display: inline-block; font-family: var(--serif); font-size: 1.4rem; color: var(--brand); margin-bottom: 8px; }
.steps p, .features p { color: var(--muted); font-size: .98rem; }

.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.features article { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }

.price-card {
  text-align: left; background: #fff; border: 1px solid var(--line); border-radius: 20px;
  padding: 32px; margin: 36px auto 0; max-width: 460px; box-shadow: 0 24px 50px -30px rgba(14,60,50,.3);
}
.price-label { font-weight: 600; color: var(--brand); margin-bottom: 1em; }
.price-card ul { list-style: none; padding: 0; margin: 0 0 26px; }
.price-card li { padding: 8px 0 8px 28px; position: relative; border-bottom: 1px solid var(--line); }
.price-card li::before { content: "✓"; position: absolute; left: 4px; color: var(--brand); font-weight: 700; }

details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 22px; margin-top: 12px; }
summary { cursor: pointer; font-weight: 600; list-style: none; display: flex; justify-content: space-between; gap: 16px; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; color: var(--brand); font-size: 1.3rem; line-height: 1; }
details[open] summary::after { content: "–"; }
details p { margin: 12px 0 0; color: var(--muted); }

.cta { background: var(--brand); color: #fff; padding: 88px 0; }
.cta .lede { color: #d4efe7; margin-bottom: 1.6em; }

.footer { padding: 28px 0; font-size: .9rem; color: var(--muted); }
.footer-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer nav { display: flex; gap: 20px; }

/* Privacy page */
.prose { padding: 64px 0 96px; }
.prose h1 { font-size: 2.4rem; }
.prose h2 { font-size: 1.4rem; margin-top: 1.6em; }
.prose p, .prose li { color: var(--muted); }

@media (max-width: 900px) {
  .hero { padding: 56px 0; }
  .hero-grid, .steps, .features, .band-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-inner .btn { margin-left: auto; }
  .section { padding: 72px 0; }
}
