:root {
  --cream: #faf8f4;
  --ink: #1a1817;
  --muted: #6b6560;
  --accent: #c66b3d;
  --accent-dark: #a15630;
  --surface: #ffffff;
  --surface-alt: #f0ebe3;
  --border: #e8e3dc;
  --radius: 12px;
  --max: 1100px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  background: var(--cream);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; }
img { max-width: 100%; display: block; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ─── nav ─────────────────────────────────────────────────────── */
.site-nav { padding: 1.5rem 0; }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
}
.logo {
  font-weight: 700; font-size: 1.25rem; letter-spacing: 0;
  text-decoration: none; color: var(--ink);
}
.nav-inner nav { display: flex; gap: 1.75rem; align-items: center; }
.nav-inner nav a {
  color: var(--muted); text-decoration: none; font-size: 0.95rem;
  transition: color .15s;
}
.nav-inner nav a:hover { color: var(--ink); }
.nav-inner nav a.btn { color: white; }
@media (max-width: 600px) {
  .nav-inner nav a:not(.btn) { display: none; }
}

/* ─── buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-block; padding: 0.75rem 1.5rem;
  border-radius: var(--radius); font-weight: 500; font-size: 1rem;
  text-decoration: none; border: 0; cursor: pointer;
  transition: background .15s, transform .15s;
  font-family: inherit;
}
.btn-primary { background: var(--accent); color: white; }
.btn-primary:hover { background: var(--accent-dark); }
.btn-primary:active { transform: translateY(1px); }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.9rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1.05rem; }
.btn-block { width: 100%; text-align: center; }

/* ─── hero ────────────────────────────────────────────────────── */
.hero { padding: 3rem 0 6rem; }
.hero-grid {
  display: grid; grid-template-columns: 1fr; gap: 3.5rem;
  align-items: center;
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 5rem; }
  .hero { padding: 4rem 0 7rem; }
}
.hero h1 {
  font-size: clamp(2.25rem, 5.5vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero .lede {
  font-size: 1.15rem; color: var(--muted);
  margin-bottom: 2rem; max-width: 32rem;
}
.fine-print {
  font-size: 0.85rem; color: var(--muted);
  margin-top: 0.85rem;
}

/* ─── chat demo ───────────────────────────────────────────────── */
.chat-window {
  background: var(--surface);
  border-radius: 18px;
  box-shadow:
    0 30px 60px -25px rgba(30, 20, 10, 0.18),
    0 2px 6px rgba(30, 20, 10, 0.04);
  overflow: hidden;
  border: 1px solid var(--border);
}
.chat-header {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 0.5rem;
  background: #fbfaf7;
}
.chat-header .dot { width: 11px; height: 11px; border-radius: 50%; background: #e6e1da; }
.chat-header .dot:nth-child(1) { background: #f56a5f; }
.chat-header .dot:nth-child(2) { background: #f5c04f; }
.chat-header .dot:nth-child(3) { background: #61c554; }
.chat-title {
  margin-left: 0.75rem;
  font-size: 0.85rem; color: var(--muted);
  font-variant-numeric: tabular-nums;
}

.messages {
  padding: 1.5rem 1.25rem;
  display: flex; flex-direction: column;
  gap: 0.5rem;
  min-height: 380px;
}
.msg {
  max-width: 85%;
  opacity: 0;
  animation: popIn .4s cubic-bezier(.2, .7, .3, 1) forwards;
}
.msg p {
  padding: 0.65rem 0.95rem;
  border-radius: 18px;
  font-size: 0.95rem; line-height: 1.45;
}
.msg-out { align-self: flex-end; }
.msg-out p {
  background: var(--accent); color: white;
  border-bottom-right-radius: 5px;
}
.msg-in { align-self: flex-start; }
.msg-in p {
  background: var(--surface-alt); color: var(--ink);
  border-bottom-left-radius: 5px;
}

.msg:nth-child(1) { animation-delay: 0.4s; }
.msg:nth-child(2) { animation-delay: 1.1s; }
.msg:nth-child(3) { animation-delay: 2.0s; }
.msg:nth-child(4) { animation-delay: 2.8s; }
.msg:nth-child(5) { animation-delay: 3.7s; }
.msg:nth-child(6) { animation-delay: 4.5s; }

.msg.typing p {
  display: inline-flex; gap: 5px; align-items: center;
  padding: 0.85rem 1rem;
}
.msg.typing span {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--muted); opacity: 0.4;
  animation: bounce 1.3s infinite;
}
.msg.typing span:nth-child(2) { animation-delay: 0.15s; }
.msg.typing span:nth-child(3) { animation-delay: 0.3s; }

@keyframes popIn {
  from { opacity: 0; transform: translateY(8px) scale(.96); }
  to   { opacity: 1; transform: translateY(0)   scale(1); }
}
@keyframes bounce {
  0%, 60%, 100% { transform: translateY(0);    opacity: 0.35; }
  30%           { transform: translateY(-5px); opacity: 1; }
}

/* ─── how it works ────────────────────────────────────────────── */
.how { padding: 5rem 0; border-top: 1px solid var(--border); }
.how h2, .pricing h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  letter-spacing: 0;
  text-align: center;
  font-weight: 600;
  margin-bottom: 3rem;
}
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 800px) {
  .steps { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
}
.step-num {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  font-weight: 600; color: var(--accent);
  margin-bottom: 1rem;
}
.steps h3 {
  font-size: 1.15rem; font-weight: 600;
  margin-bottom: 0.4rem;
  letter-spacing: 0;
}
.steps p { color: var(--muted); }

/* ─── examples (before/after) ─────────────────────────────────── */
.examples { padding: 5rem 0; border-top: 1px solid var(--border); }
.examples h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  letter-spacing: 0;
  text-align: center;
  font-weight: 600;
}
.examples-sub {
  text-align: center; color: var(--muted);
  margin-top: 1rem; margin-bottom: 3.5rem;
}
.ba-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 960px;
  margin: 0 auto;
}
.ba-item figcaption {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.4rem 0.75rem;
  margin-top: 0.9rem;
  color: var(--muted);
  font-size: 0.95rem;
}
.ba-caption-name { color: var(--ink); font-weight: 600; }
.ba-caption-meta { color: var(--muted); }
.ba-live {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px dotted color-mix(in srgb, var(--accent) 50%, transparent);
  padding-bottom: 1px;
  transition: color .15s, border-color .15s;
}
.ba-live:hover { color: var(--accent-dark); border-bottom-color: var(--accent-dark); }
.examples-foot {
  text-align: center;
  color: var(--muted);
  margin-top: 2.5rem;
  font-size: 0.95rem;
}
.how-sub {
  text-align: center;
  color: var(--muted);
  margin-top: 0.5rem;
  margin-bottom: 2.5rem;
}
.ba {
  position: relative;
  aspect-ratio: 1400 / 900;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px -25px rgba(30, 20, 10, 0.2);
  cursor: ew-resize;
  user-select: none;
  background: var(--surface-alt);
  touch-action: none; /* let our pointer handlers win on touch */
}
.ba-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
  -webkit-user-drag: none;
}
.ba-before-wrap {
  position: absolute; inset: 0;
  clip-path: inset(0 calc(100% - var(--pos)) 0 0);
  will-change: clip-path;
}
.ba-divider {
  position: absolute;
  top: 0; bottom: 0;
  left: var(--pos);
  width: 2px;
  background: white;
  transform: translateX(-1px);
  box-shadow: 0 0 0 1px rgba(30, 20, 10, 0.2);
  pointer-events: none;
}
.ba-handle {
  position: absolute;
  top: 50%;
  left: var(--pos);
  transform: translate(-50%, -50%);
  width: 40px; height: 40px;
  border-radius: 50%;
  background: white;
  border: 0;
  box-shadow: 0 4px 14px rgba(30, 20, 10, 0.25);
  color: var(--ink);
  display: grid; place-items: center;
  cursor: ew-resize;
  transition: transform .15s, box-shadow .15s;
}
.ba-handle:hover { box-shadow: 0 6px 18px rgba(30, 20, 10, 0.3); }
.ba-handle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.ba-handle svg { display: block; }
.ba-label {
  position: absolute;
  top: 0.9rem;
  padding: 0.25rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  pointer-events: none;
}
.ba-label-before {
  left: 0.9rem;
  background: rgba(26, 24, 23, 0.7);
  color: white;
}
.ba-label-after {
  right: 0.9rem;
  background: rgba(255, 255, 255, 0.85);
  color: var(--ink);
}

/* ─── pricing ─────────────────────────────────────────────────── */
.pricing { padding: 5rem 0 6rem; border-top: 1px solid var(--border); }
.pricing-sub {
  text-align: center; color: var(--muted);
  margin-top: -2rem; margin-bottom: 3rem;
}
.price-card {
  max-width: 440px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 40px -20px rgba(30, 20, 10, 0.1);
}
.price { text-align: center; margin-bottom: 1rem; }
.price-kicker {
  display: block;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
}
.price .currency {
  font-size: 1.5rem; color: var(--muted);
  vertical-align: top;
  position: relative; top: 0.6rem;
}
.price .amount {
  font-size: 4rem; font-weight: 700;
  letter-spacing: 0;
}
.price .period { font-size: 1.05rem; color: var(--muted); }
.setup-fee {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 0.85rem 1rem;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--muted);
}
.setup-fee strong {
  color: var(--ink);
  font-size: 1.1rem;
}
.features { list-style: none; margin-bottom: 2rem; }
.features li {
  padding: 0.55rem 0 0.55rem 1.75rem;
  position: relative;
  color: var(--ink);
  border-bottom: 1px solid var(--border);
}
.features li:last-child { border-bottom: 0; }
.features li::before {
  content: "";
  position: absolute;
  left: 0; top: 1rem;
  width: 0.75rem; height: 0.4rem;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}

/* ─── /start page ─────────────────────────────────────────────── */
.start-main { padding: 3rem 0 6rem; }
.start-card {
  max-width: 480px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 40px -20px rgba(30, 20, 10, 0.1);
}
.start-card h1 {
  font-size: clamp(1.7rem, 3vw, 2.1rem);
  letter-spacing: 0;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.start-card .lede {
  color: var(--muted);
  margin-bottom: 2rem;
  font-size: 1rem;
}
.field { margin-bottom: 1.25rem; }
.field label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: var(--ink);
}
.field input {
  width: 100%;
  padding: 0.75rem 0.9rem;
  font-size: 1rem;
  font-family: inherit;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color .15s, box-shadow .15s, background .15s;
  -webkit-appearance: none;
}
.field input:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--surface);
  box-shadow: 0 0 0 3px rgba(198, 107, 61, 0.15);
}
.field input.has-error {
  border-color: #c04646;
  background: #fdf5f4;
}
.field-error {
  display: block;
  min-height: 1.2em;
  margin-top: 0.35rem;
  font-size: 0.85rem;
  color: #c04646;
}
.form-error {
  margin-top: 1rem;
  padding: 0.7rem 0.9rem;
  background: #fdf5f4;
  color: #c04646;
  border-radius: 10px;
  font-size: 0.9rem;
  text-align: center;
}
.start-card .fine-print {
  margin-top: 1rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
}

.start-success { text-align: center; }
.success-check {
  width: 60px; height: 60px;
  margin: 0 auto 1.25rem;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(198, 107, 61, 0.12);
  color: var(--accent);
}
.start-success .btn { margin-top: 1rem; }

/* ─── checkout page ───────────────────────────────────────────── */
.checkout-main { padding: 3rem 0 6rem; }
.checkout-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}
.checkout-grid > * {
  min-width: 0;
}
.checkout-copy {
  max-width: 560px;
}
.eyebrow {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}
.checkout-copy h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.08;
  font-weight: 650;
  margin-bottom: 1rem;
}
.checkout-copy .lede {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 34rem;
}
.checkout-summary {
  width: 100%;
  min-width: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 10px 40px -20px rgba(30, 20, 10, 0.1);
}
.checkout-summary h2 {
  font-size: 1.25rem;
  font-weight: 650;
  margin-bottom: 1.25rem;
}
.summary-rows {
  border-top: 1px solid var(--border);
}
.summary-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.summary-row span {
  display: block;
  color: var(--ink);
  font-weight: 650;
}
.summary-row p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
  margin-top: 0.2rem;
  overflow-wrap: anywhere;
}
.summary-row strong {
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.3;
  overflow-wrap: anywhere;
}
.summary-row-strong strong {
  font-size: 1.35rem;
}
.checkout-total {
  display: grid;
  gap: 0.4rem;
  margin: 1.5rem 0 1rem;
  padding: 1rem;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.checkout-total span {
  color: var(--muted);
  font-weight: 650;
}
.checkout-total strong {
  color: var(--ink);
  font-size: 1.6rem;
  line-height: 1;
}
.checkout-note {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}
.coupon-row {
  margin: 0 0 1.25rem;
}
.coupon-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.coupon-input-wrap {
  display: flex;
  gap: 0.5rem;
}
.coupon-input {
  flex: 1;
  min-width: 0;
  padding: 0.6rem 0.75rem;
  font: inherit;
  font-size: 0.95rem;
  border: 1px solid var(--border, #d4d4d8);
  border-radius: 8px;
  background: #fff;
  color: inherit;
}
.coupon-input:focus {
  outline: 2px solid var(--accent, #2563eb);
  outline-offset: 1px;
}
.coupon-apply {
  padding: 0.6rem 1rem;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid var(--border, #d4d4d8);
  border-radius: 8px;
  background: #f4f4f5;
  color: inherit;
  cursor: pointer;
}
.coupon-apply:hover { background: #e4e4e7; }
.coupon-msg {
  margin: 0.4rem 0 0;
  font-size: 0.85rem;
  min-height: 1.1em;
}
.coupon-msg-ok    { color: #15803d; }
.coupon-msg-error { color: #b91c1c; }
.summary-row-strong .strike {
  color: var(--muted);
  opacity: 0.7;
  margin-right: 0.35rem;
}
.summary-row-strong .discounted {
  color: #15803d;
}

@media (min-width: 840px) {
  .checkout-main { padding-top: 5rem; }
  .checkout-grid {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 460px);
    gap: 4rem;
  }
  .checkout-summary {
    position: sticky;
    top: 1.5rem;
    padding: 2rem;
  }
  .summary-row {
    grid-template-columns: 1fr auto;
    align-items: start;
  }
  .summary-row strong {
    text-align: right;
  }
  .checkout-total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
  }
  .checkout-total strong {
    font-size: 1.75rem;
  }
}

/* ─── footer ──────────────────────────────────────────────────── */
footer {
  margin-top: 4rem;
  padding: 3rem 0 1.5rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.9rem;
  background: #fafafa;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 2rem;
  padding-bottom: 2.5rem;
}
.footer-brand .logo { display: inline-block; margin-bottom: 0.5rem; }
.footer-tagline { color: var(--muted); margin: 0.25rem 0 0.5rem; max-width: 22ch; }
.footer-made { color: var(--muted); font-size: 0.8rem; opacity: 0.8; }
.footer-col h4 {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { padding: 0.15rem 0; }
.footer-address address { font-style: normal; line-height: 1.55; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--muted);
}
.footer-bottom-right { opacity: 0.8; }
footer a { text-decoration: none; color: var(--muted); transition: color .15s; }
footer a:hover { color: var(--ink); }
.todo {
  background: #fff3cd;
  color: #664d03;
  padding: 0 0.25rem;
  border-radius: 0.2rem;
  font-size: 0.85em;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, monospace;
}

@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; }
}

/* ─── legal pages ─────────────────────────────────────────────── */
.legal-main { padding: 2rem 0 4rem; }
.container-narrow { max-width: 760px; margin: 0 auto; padding: 0 1.25rem; }
.legal h1 { font-size: 2.25rem; margin: 0 0 0.5rem; }
.legal .legal-sub { color: var(--muted); margin: 0 0 2rem; font-size: 1.05rem; }
.legal h2 { margin: 2.5rem 0 0.75rem; font-size: 1.35rem; font-weight: 600; }
.legal h3 { margin: 1.75rem 0 0.5rem; font-size: 1.05rem; font-weight: 600; }
.legal p, .legal ul, .legal ol { line-height: 1.65; }
.legal ul, .legal ol { padding-left: 1.25rem; }
.legal a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.legal table { width: 100%; border-collapse: collapse; margin: 1rem 0 1.5rem; font-size: 0.95rem; }
.legal th, .legal td { border: 1px solid var(--border); padding: 0.5rem 0.75rem; text-align: left; vertical-align: top; }
.legal th { background: #fafafa; font-weight: 600; }
.legal-meta { margin-top: 3rem; padding-top: 1rem; border-top: 1px solid var(--border); color: var(--muted); font-size: 0.85rem; }

/* ─── contact page ─────────────────────────────────────────── */
.contact-main { padding: 2rem 0 4rem; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: start;
}
.contact-info h1 { font-size: 2.25rem; margin: 0 0 0.5rem; }
.contact-info .lede { color: var(--muted); margin: 0 0 2rem; font-size: 1.05rem; }
.info-block { margin: 1.25rem 0; }
.info-block h3 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 0.4rem;
}
.info-block address { font-style: normal; line-height: 1.55; color: var(--ink); }
.info-block a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.info-hint { color: var(--muted); font-size: 0.85rem; margin: 0.25rem 0 0; }
.contact-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.contact-card .field { margin-bottom: 1rem; }
.contact-card label { display: block; font-weight: 500; margin-bottom: 0.35rem; }
.contact-card input,
.contact-card select,
.contact-card textarea {
  width: 100%;
  font: inherit;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: white;
}
.contact-card textarea { resize: vertical; min-height: 7rem; }
.contact-card input:focus,
.contact-card select:focus,
.contact-card textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 20%, transparent);
}
.contact-card .has-error {
  border-color: #dc2626;
  background: #fff5f5;
}
.contact-card .field-error {
  display: block;
  color: #dc2626;
  font-size: 0.85rem;
  margin-top: 0.3rem;
  min-height: 1.1em;
}
.contact-card .form-error {
  color: #dc2626;
  font-size: 0.95rem;
  margin: 1rem 0 0;
  text-align: center;
}
.contact-card .fine-print {
  color: var(--muted);
  font-size: 0.85rem;
  margin: 0.75rem 0 0;
  text-align: center;
}
.contact-success { text-align: center; }
.contact-success .success-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px; height: 64px;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent) 15%, white);
  color: var(--accent);
}
.contact-success h2 { font-size: 1.6rem; margin: 0 0 0.5rem; }
.contact-success .lede { color: var(--muted); margin: 0 0 1.5rem; }

@media (max-width: 800px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ─── pricing guarantee + trust row ───────────────────────────── */
.guarantee {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  margin: 1rem 0 0;
  padding: 0.85rem 1rem;
  background: color-mix(in srgb, var(--accent) 8%, white);
  border: 1px solid color-mix(in srgb, var(--accent) 25%, var(--border));
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--ink);
}
.guarantee svg { flex: none; color: var(--accent); margin-top: 0.15rem; }
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: center;
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.85rem;
}
.trust-row li { white-space: nowrap; }

/* ─── about strip ─────────────────────────────────────────────── */
.about { padding: 4rem 0; background: #fafafa; }
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
}
.about h2 { font-size: 1.75rem; margin: 0 0 1rem; line-height: 1.25; }
.about p { line-height: 1.65; margin: 0 0 0.85rem; }
.about-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem 1.75rem;
}
.about-card h4 {
  margin: 0 0 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
}
.about-card ul { margin: 0; padding-left: 1.1rem; line-height: 1.7; }
@media (max-width: 800px) {
  .about-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ─── FAQ ─────────────────────────────────────────────────────── */
.faq { padding: 4rem 0; }
.faq h2 { text-align: center; font-size: 1.75rem; margin: 0 0 2rem; }
.faq details {
  border-top: 1px solid var(--border);
  padding: 1rem 0;
}
.faq details:last-of-type { border-bottom: 1px solid var(--border); }
.faq summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.25rem 0;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--muted);
  transition: transform .2s;
}
.faq details[open] summary::after { content: '−'; }
.faq details p { margin: 0.75rem 0 0.25rem; color: var(--muted); line-height: 1.65; }
.faq details a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
