
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --ink: #0B1B33;
  --ink-2: #243750;
  --text: #465A74;
  --muted: #687A91;
  --blue: #2457C5;
  --blue-dark: #1C459D;
  --blue-soft: #EEF4FF;
  --gold: #C9962B;
  --gold-dark: #9B6D12;
  --gold-soft: #FFF7E6;
  --gold-border: #E7C879;
  --surface: #F5F7FB;
  --surface-2: #EDF1F6;
  --white: #FFFFFF;
  --border: #DDE4ED;
  --success: #147A58;
  --danger: #B54141;
  --radius: 16px;
  --radius-sm: 9px;
  --shadow-sm: 0 6px 18px rgba(11, 27, 51, .07);
  --shadow-md: 0 18px 50px rgba(11, 27, 51, .10);
  --max: 1120px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid rgba(36,87,197,.25); outline-offset: 3px; }
.skip-link { position: fixed; left: 14px; top: -100px; background: var(--ink); color: #fff; padding: 10px 14px; z-index: 1000; border-radius: 8px; }
.skip-link:focus { top: 14px; }
.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.narrow { width: min(820px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 96px 0; }
.section-surface { background: var(--surface); }
.section-warm { background: var(--gold-soft); }
.text-center { text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 18px; padding: 6px 12px;
  border: 1px solid var(--gold-border); border-radius: 999px;
  color: var(--gold-dark); background: rgba(255,255,255,.62);
  font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
}
.eyebrow::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }
.display, h1, h2 { color: var(--ink); }
h1, h2 { font-family: 'DM Serif Display', Georgia, serif; font-weight: 400; letter-spacing: -.025em; }
h1 { font-size: clamp(2.55rem, 5.2vw, 4.7rem); line-height: 1.03; margin: 0 0 24px; }
h2 { font-size: clamp(2rem, 3.4vw, 3rem); line-height: 1.12; margin: 0 0 16px; }
h3, h4 { color: var(--ink); line-height: 1.35; }
.section-heading { max-width: 760px; margin: 0 auto 52px; }
.section-heading p { max-width: 650px; margin: 0 auto; color: var(--muted); font-size: 1.03rem; }
.lead { color: var(--muted); font-size: 1.08rem; line-height: 1.75; }
.small-note { color: var(--muted); font-size: .78rem; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 300;
  height: 72px; background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(221,228,237,.9);
  backdrop-filter: blur(15px);
}
.nav-shell { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); font-weight: 800; letter-spacing: -.04em; font-size: 1.24rem; }
.brand img { width: 31px; height: 31px; border-radius: 8px; }
.brand span { color: var(--blue); }
.primary-nav { display: flex; align-items: center; gap: 28px; }
.primary-nav a:not(.btn) { color: #52647B; text-decoration: none; font-size: .88rem; font-weight: 650; }
.primary-nav a:not(.btn):hover { color: var(--ink); }
.nav-toggle { display: none; border: 0; background: transparent; color: var(--ink); padding: 8px; border-radius: 8px; }
.nav-toggle svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.btn svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; flex: 0 0 auto; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  border: 1px solid transparent; border-radius: var(--radius-sm);
  padding: 13px 22px; text-decoration: none; font-size: .92rem; font-weight: 750;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--blue); color: #fff; border-color: var(--blue); box-shadow: 0 7px 18px rgba(36,87,197,.18); }
.btn-primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); box-shadow: 0 10px 24px rgba(36,87,197,.22); }
.btn-secondary { background: #fff; color: var(--ink); border-color: #C9D3DF; }
.btn-secondary:hover { border-color: var(--blue); color: var(--blue-dark); background: var(--blue-soft); }
.btn-small { padding: 10px 16px; font-size: .82rem; }
.btn-block { width: 100%; }

/* Hero */
.hero { position: relative; padding: 88px 0 92px; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: auto -160px -260px auto; width: 600px; height: 600px; border-radius: 50%; background: var(--gold-soft); z-index: 0; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 68px; align-items: center; }
.hero-copy .lead { max-width: 670px; margin-bottom: 32px; }
.hero-highlight { color: var(--gold-dark); font-style: italic; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 10px 20px; color: var(--muted); font-size: .84rem; }
.hero-proof span { display: inline-flex; align-items: center; gap: 7px; }
.hero-proof span::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }
.workflow-panel {
  position: relative; background: #fff; border: 1px solid var(--border); border-radius: 24px;
  box-shadow: var(--shadow-md); padding: 22px; max-width: 500px; margin-left: auto;
}
.workflow-panel::before { content: ''; position: absolute; inset: -18px 34px auto -22px; height: 105%; border-radius: 28px; background: var(--gold-soft); z-index: -1; }
.workflow-top { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--border); padding-bottom: 16px; margin-bottom: 18px; }
.workflow-title { display: flex; align-items: center; gap: 11px; color: var(--ink); font-weight: 750; }
.status-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--danger); box-shadow: 0 0 0 4px rgba(181,65,65,.10); }
.workflow-time { color: var(--muted); font-size: .76rem; }
.thread { display: flex; flex-direction: column; gap: 10px; }
.bubble { max-width: 86%; border-radius: 15px; padding: 11px 13px; font-size: .82rem; line-height: 1.5; }
.bubble.business { background: var(--blue-soft); color: #213C6A; align-self: flex-start; border-bottom-left-radius: 4px; }
.bubble.customer { background: var(--surface); color: var(--ink-2); align-self: flex-end; border-bottom-right-radius: 4px; }
.lead-preview { margin-top: 18px; border: 1px solid var(--border); border-left: 4px solid var(--gold); border-radius: 13px; padding: 15px; background: #FFFCF6; }
.lead-preview-top { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-bottom: 9px; }
.lead-preview strong { color: var(--ink); font-size: .9rem; }
.tag { display: inline-flex; padding: 4px 8px; border-radius: 999px; font-size: .68rem; font-weight: 800; background: #FDECEC; color: #9E3030; }
.lead-meta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; color: var(--muted); font-size: .7rem; }

/* Cards & grids */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.card-lift { transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.card-lift:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); border-color: #C8D5E6; }
.icon-box { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 10px; color: var(--blue); background: var(--blue-soft); border: 1px solid #D9E6FF; margin-bottom: 18px; }
.icon-box.warm { color: var(--gold-dark); background: var(--gold-soft); border-color: #F0D99F; }
.icon-box svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.card h3 { font-size: 1rem; margin: 0 0 9px; }
.card p { margin: 0; color: var(--muted); font-size: .89rem; }
.problem-card { border-top: 3px solid #D68B8B; }
.problem-card .icon-box { color: var(--danger); background: #FFF2F2; border-color: #F4D4D4; }
.callout { margin-top: 32px; padding: 24px 28px; border-radius: var(--radius); border: 1px solid var(--gold-border); background: rgba(255,255,255,.72); color: var(--ink-2); text-align: center; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.step { position: relative; padding: 28px 24px 24px; border-top: 2px solid #DDE4ED; }
.step:not(:last-child)::after { content: ''; position: absolute; right: -9px; top: -6px; width: 17px; height: 10px; border-top: 2px solid var(--blue); border-right: 2px solid var(--blue); transform: rotate(45deg); background: #fff; }
.step-number { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 9px; background: var(--blue); color: #fff; font-size: .75rem; font-weight: 800; margin-bottom: 16px; }
.step h3 { margin: 0 0 8px; font-size: .92rem; }
.step p { margin: 0; color: var(--muted); font-size: .84rem; }
.sms-sample { display: block; margin-top: 10px; padding: 11px 12px; border-radius: 10px; background: var(--blue-soft); color: #31517E; font-size: .76rem; font-style: italic; }

/* Stats */
.stat-card { text-align: left; padding: 30px; }
.stat-number { color: var(--gold-dark); font-family: 'DM Serif Display', Georgia, serif; font-size: clamp(2.1rem, 4vw, 3.2rem); line-height: 1; margin-bottom: 12px; }
.stat-card h3 { font-size: .92rem; }
.disclaimer { max-width: 760px; margin: 34px auto 0; padding: 20px 24px; border-left: 4px solid var(--gold); background: var(--gold-soft); border-radius: 0 12px 12px 0; color: var(--muted); font-size: .83rem; }

/* Comparison */
.table-card { background: #fff; border: 1px solid var(--border); border-radius: 20px; box-shadow: var(--shadow-sm); overflow: auto; }
.comparison-table { width: 100%; min-width: 760px; border-collapse: separate; border-spacing: 0; }
.comparison-table th, .comparison-table td { padding: 17px 20px; text-align: left; border-bottom: 1px solid var(--border); font-size: .86rem; }
.comparison-table thead th { color: var(--ink); font-weight: 800; background: #FAFBFC; }
.comparison-table tbody th { color: var(--ink); font-weight: 700; background: #fff; }
.comparison-table tr:last-child td, .comparison-table tr:last-child th { border-bottom: 0; }
.comparison-table .adevify-col { background: #FFF9EC; border-left: 2px solid var(--gold-border); border-right: 2px solid var(--gold-border); color: var(--ink); }
.comparison-table thead .adevify-col { background: var(--gold-soft); border-top: 3px solid var(--gold); color: var(--blue-dark); }
.comparison-table tbody tr:last-child .adevify-col { border-bottom: 2px solid var(--gold-border); }
.recommended-label { display: block; color: var(--gold-dark); font-size: .63rem; letter-spacing: .1em; text-transform: uppercase; margin-top: 3px; }
.check { color: var(--success); font-weight: 800; }
.cross { color: var(--danger); font-weight: 700; }
.table-note { margin: 14px 4px 0; color: var(--muted); font-size: .75rem; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: .9fr 1.2fr .9fr; gap: 20px; align-items: start; }
.plan { position: relative; display: flex; flex-direction: column; min-width: 0; background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 32px 28px; }
.plan-featured { border: 2px solid var(--blue); background: linear-gradient(180deg, var(--gold-soft) 0, #fff 25%); box-shadow: var(--shadow-md); transform: translateY(-8px); }
.plan-badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--gold); color: #fff; border: 3px solid #fff; border-radius: 999px; padding: 5px 16px; font-size: .7rem; font-weight: 800; letter-spacing: .04em; white-space: nowrap; }
.plan-name { color: var(--ink); font-weight: 800; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; }
.plan-desc { min-height: 72px; margin: 8px 0 20px; color: var(--muted); font-size: .82rem; }
.plan-price { color: var(--ink); font-size: 2.65rem; font-weight: 800; letter-spacing: -.06em; line-height: 1; }
.plan-price-custom { font-size: 2.15rem; letter-spacing: -.04em; }
.plan-price sup { font-size: 1rem; vertical-align: top; position: relative; top: 5px; }
.plan-price small { color: var(--muted); font-size: .82rem; font-weight: 500; letter-spacing: 0; }
.plan-setup { color: var(--muted); font-size: .76rem; line-height: 1.55; margin: 8px 0 20px; }
.plan hr { width: 100%; border: 0; border-top: 1px solid var(--border); margin: 0 0 20px; }
.plan-features { display: grid; gap: 18px; margin-bottom: 24px; }
.plan-feature-groups { gap: 20px; }
.plan-group { display: grid; gap: 9px; }
.plan-group-title { color: var(--ink); font-size: .68rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.plan-features ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.plan-features li { position: relative; padding-left: 23px; color: var(--ink-2); font-size: .8rem; line-height: 1.5; }
.plan-features li::before { content: '✓'; position: absolute; left: 0; color: var(--success); font-weight: 800; }
.founding-offer { margin: 0 0 20px; padding: 15px 16px; border: 1px solid var(--gold-border); border-radius: 12px; background: rgba(255,255,255,.78); }
.founding-offer span { display: block; color: var(--gold-dark); font-size: .66rem; font-weight: 800; letter-spacing: .09em; }
.founding-offer strong { display: block; margin-top: 4px; color: var(--ink); font-size: 1rem; }
.founding-offer p { margin: 6px 0 0; color: var(--muted); font-size: .73rem; line-height: 1.55; }
.plan-note { margin: 0 0 20px; padding: 14px 15px; border-radius: 11px; background: var(--surface); color: var(--ink-2); font-size: .76rem; line-height: 1.55; }
.plan-terms { display: grid; gap: 6px; margin: 0 0 12px; padding: 16px; border-radius: 12px; background: var(--ink); color: #fff; }
.plan-terms strong { margin-bottom: 2px; font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; }
.plan-terms span { color: #D9E2ED; font-size: .75rem; }
.annual-note { margin: 0 0 20px; color: var(--muted); font-size: .72rem; line-height: 1.55; }
.plan-footnote { margin: 11px 2px 0; color: var(--muted); font-size: .69rem; line-height: 1.5; text-align: center; }

/* FAQ */
.faq-list { display: grid; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
.faq-item.open { border-color: #9BB4E9; }
.faq-question { width: 100%; border: 0; background: transparent; color: var(--ink); display: flex; align-items: center; justify-content: space-between; gap: 20px; text-align: left; padding: 20px 22px; font-weight: 750; }
.faq-plus { width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; flex: 0 0 auto; color: var(--blue); background: var(--blue-soft); transition: transform .2s ease; }
.faq-item.open .faq-plus { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 22px 20px; color: var(--muted); font-size: .88rem; }
.faq-item.open .faq-answer { display: block; }

/* Forms */
.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 48px; align-items: start; }
.contact-card { background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 30px; box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field-full { grid-column: 1 / -1; }
label { display: block; margin-bottom: 7px; color: var(--ink-2); font-size: .78rem; font-weight: 750; }
input, select, textarea { width: 100%; border: 1px solid #C9D3DF; border-radius: 9px; background: #fff; color: var(--ink); padding: 12px 13px; outline: none; transition: border-color .16s, box-shadow .16s; }
input:focus, select:focus, textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(36,87,197,.10); }
textarea { resize: vertical; min-height: 110px; }
.checkbox-row { display: grid; grid-template-columns: 18px 1fr; gap: 10px; align-items: start; }
.checkbox-row input { width: 18px; height: 18px; margin-top: 3px; }
.checkbox-row label { margin: 0; color: var(--muted); font-size: .72rem; font-weight: 500; line-height: 1.6; }
.checkbox-row a { color: var(--blue-dark); }
.form-note { color: var(--muted); font-size: .72rem; text-align: center; }
.contact-aside { padding: 32px; border-radius: 20px; background: var(--gold-soft); border: 1px solid var(--gold-border); }
.contact-aside h3 { margin-top: 0; }
.contact-list { list-style: none; padding: 0; margin: 24px 0; display: grid; gap: 16px; }
.contact-list li { display: grid; grid-template-columns: 36px 1fr; gap: 12px; color: var(--ink-2); font-size: .86rem; }
.contact-list .mini-icon { width: 36px; height: 36px; border-radius: 9px; display: grid; place-items: center; background: #fff; color: var(--blue); border: 1px solid #ECD8A5; }
.contact-list svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* Legal pages */
.page-hero { padding: 70px 0 38px; border-bottom: 1px solid var(--border); background: linear-gradient(180deg, var(--gold-soft), #fff); }
.page-hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
.page-hero p { max-width: 650px; }
.legal-wrap { padding: 64px 0 96px; }
.legal-content { max-width: 850px; margin: 0 auto; }
.legal-content h2 { font-family: 'Plus Jakarta Sans', system-ui, sans-serif; font-size: 1.12rem; font-weight: 800; letter-spacing: -.01em; margin: 36px 0 10px; }
.legal-content p, .legal-content li { color: var(--text); font-size: .93rem; }
.legal-content ul { padding-left: 22px; }
.legal-content a { color: var(--blue-dark); }
.legal-content strong { color: var(--ink); }
.legal-content .card { background: var(--gold-soft); border-color: var(--gold-border); box-shadow: none; margin: 22px 0; }
.legal-content table { width: 100%; border-collapse: collapse; margin: 18px 0 28px; font-size: .88rem; }
.legal-content th, .legal-content td { padding: 12px 14px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--border); }
.legal-content th { color: var(--ink); width: 34%; }

/* Demo */
.demo-hero { padding: 66px 0 34px; text-align: center; }
.demo-hero h1 { font-size: clamp(2.3rem, 5vw, 4rem); max-width: 900px; margin-inline: auto; }
.demo-hero .lead { max-width: 720px; margin: 0 auto; }
.demo-controls { text-align: center; margin: 24px 0 28px; }
.demo-status { min-height: 28px; color: var(--muted); font-size: .84rem; margin-top: 12px; }
.demo-status.live { color: var(--success); font-weight: 750; }
.demo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; align-items: start; }
.demo-panel { background: #fff; border: 1px solid var(--border); border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-sm); }
.demo-panel-head { display: flex; align-items: center; gap: 8px; padding: 14px 18px; border-bottom: 1px solid var(--border); color: var(--muted); font-size: .78rem; font-weight: 700; background: #FBFCFD; }
.window-dot { width: 9px; height: 9px; border-radius: 50%; background: #CDD5DF; }
.phone-stage { min-height: 530px; padding: 26px; display: grid; place-items: center; background: var(--surface); }
.phone { width: min(290px, 100%); min-height: 490px; background: #17191D; color: #fff; border: 3px solid #2E3238; border-radius: 38px; padding: 14px 12px 18px; box-shadow: 0 16px 42px rgba(11,27,51,.22); }
.phone-notch { width: 116px; height: 24px; border-radius: 0 0 15px 15px; background: #050607; margin: -14px auto 6px; }
.phone-status { display: flex; justify-content: space-between; padding: 2px 10px 8px; color: #E9EDF2; font-size: .62rem; }
.sms-header { text-align: center; border-bottom: 1px solid #30343A; padding: 9px 0 11px; margin-bottom: 14px; }
.sms-header strong { display: block; font-size: .88rem; }
.sms-header span { color: #A8AFB8; font-size: .67rem; }
.messages { display: flex; flex-direction: column; gap: 9px; min-height: 350px; }
.msg { max-width: 78%; padding: 9px 12px; border-radius: 16px; font-size: .72rem; line-height: 1.45; opacity: 0; transform: translateY(8px); transition: opacity .3s, transform .3s; }
.msg.show { opacity: 1; transform: translateY(0); }
.msg.incoming { align-self: flex-start; background: #2B2F35; }
.msg.outgoing { align-self: flex-end; background: var(--blue); }
.msg-time { color: #8F969F; font-size: .57rem; text-align: center; opacity: 0; transition: opacity .2s; }
.msg-time.show { opacity: 1; }
.timeline { padding: 25px; }
.timeline-label { color: var(--muted); font-size: .69rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 800; margin-bottom: 22px; }
.timeline-item { position: relative; display: grid; grid-template-columns: 42px 1fr; gap: 14px; padding-bottom: 24px; opacity: .32; transition: opacity .35s; }
.timeline-item.active { opacity: 1; }
.timeline-item:not(:last-child)::after { content: ''; position: absolute; left: 20px; top: 42px; bottom: 0; width: 2px; background: var(--border); }
.timeline-item.active:not(:last-child)::after { background: #AFC3EE; }
.timeline-icon { width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center; color: var(--blue); background: var(--blue-soft); border: 1px solid #D9E6FF; z-index: 1; }
.timeline-icon svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.timeline-item h3 { margin: 2px 0 4px; font-size: .85rem; }
.timeline-item p { margin: 0; color: var(--muted); font-size: .74rem; }
.timeline-time { display: inline-block; margin-top: 7px; padding: 2px 7px; border-radius: 999px; background: var(--surface); color: var(--blue-dark); font-size: .62rem; font-weight: 750; }
.metric-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin: 28px 0 56px; }
.metric { text-align: center; background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 22px; }
.metric strong { display: block; color: var(--gold-dark); font-size: 2rem; line-height: 1; margin-bottom: 8px; }
.metric span { color: var(--muted); font-size: .76rem; }
.roi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.roi-card { border-radius: 17px; padding: 26px; border: 1px solid var(--border); background: #fff; }
.roi-card.lost { border-top: 3px solid #C97070; }
.roi-card.won { border-top: 3px solid var(--success); }
.roi-card ul { list-style: none; padding: 0; display: grid; gap: 10px; color: var(--muted); font-size: .84rem; }
.roi-card li { padding-left: 22px; position: relative; }
.roi-card.lost li::before { content: '-'; position: absolute; left: 0; color: var(--danger); font-weight: 900; }
.roi-card.won li::before { content: '✓'; position: absolute; left: 0; color: var(--success); font-weight: 900; }
.money-banner { margin: 24px 0 56px; border: 1px solid var(--gold-border); background: var(--gold-soft); border-radius: 20px; padding: 32px; text-align: center; }
.money-banner small { display: block; color: var(--gold-dark); font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.money-banner strong { display: block; color: var(--ink); font-family: 'DM Serif Display', Georgia, serif; font-size: clamp(3rem, 7vw, 5rem); line-height: 1; margin: 10px 0; font-weight: 400; }

/* Thank-you */
.center-page { min-height: calc(100vh - 72px); display: grid; place-items: center; background: linear-gradient(135deg, #fff 0, var(--gold-soft) 100%); padding: 40px 20px; }
.thank-card { width: min(700px, 100%); background: #fff; border: 1px solid var(--border); border-radius: 24px; padding: 48px 40px; text-align: center; box-shadow: var(--shadow-md); }
.success-mark { width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; margin: 0 auto 22px; background: #EAF7F1; color: var(--success); }
.success-mark svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }

/* Footer */
.site-footer { background: var(--ink); color: #D6DFEA; padding: 54px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.25fr .75fr .75fr .9fr; gap: 40px; }
.site-footer .brand { color: #fff; }
.site-footer .brand span { color: #8EACEF; }
.footer-brand p { max-width: 310px; color: #9FB0C5; font-size: .84rem; }
.footer-founder { display: block; margin-top: 6px; white-space: nowrap; }
.footer-heading { color: #fff; font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; margin: 0 0 14px; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.footer-links li { color: #AAB9CA; font-size: .82rem; line-height: 1.55; }
.footer-links a { color: #AAB9CA; text-decoration: none; font-size: inherit; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-top: 38px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.10); color: #8294AA; font-size: .74rem; }

/* Reveal */
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.js .reveal.visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .primary-nav { gap: 18px; }
  .primary-nav a:not(.btn) { font-size: .8rem; }
  .hero-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-copy .lead { margin-inline: auto; }
  .hero-actions, .hero-proof { justify-content: center; }
  .workflow-panel { margin: 26px auto 0; }
  .grid-4, .steps { grid-template-columns: repeat(2, 1fr); }
  .step:not(:last-child)::after { display: none; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 640px; margin-inline: auto; }
  .plan-featured { transform: none; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .section { padding: 72px 0; }
  .site-header { height: 66px; }
  .nav-toggle { display: block; }
  .primary-nav { display: none; position: fixed; top: 66px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--border); padding: 18px 20px 24px; flex-direction: column; align-items: stretch; gap: 4px; box-shadow: var(--shadow-sm); }
  .site-header.open .primary-nav { display: flex; }
  .primary-nav a:not(.btn) { padding: 11px 4px; font-size: .9rem; }
  .primary-nav .btn { margin-top: 8px; }
  .hero { padding: 64px 0 72px; }
  .hero-grid { gap: 34px; }
  .workflow-panel::before { inset: -12px 18px auto -12px; }
  .grid-3, .grid-4, .steps, .demo-grid, .metric-grid, .roi-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .lead-meta { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .legal-content table { display: block; overflow-x: auto; }
}

@media (max-width: 520px) {
  .container, .narrow { width: min(100% - 28px, var(--max)); }
  h1 { font-size: 2.45rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .workflow-panel { padding: 16px; }
  .card, .contact-card, .contact-aside { padding: 22px; }
  .footer-grid { grid-template-columns: 1fr; }
  .thank-card { padding: 38px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .001ms !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}
