/* ============================================================
   Cutvey marketing site — cutvey.com
   Brand: purple #7048ff on white; ink #0c0c10 for dark surfaces
   Type: Inter
   ============================================================ */

:root {
  --brand-50: #f3f1ff;
  --brand-100: #e9e5ff;
  --brand-200: #d5cfff;
  --brand-300: #b7a9ff;
  --brand-400: #937aff;
  --brand-500: #7048ff;
  --brand-600: #6028f7;
  --brand-700: #521ce3;
  --brand-900: #39159c;
  --ink-950: #0c0c10;
  --ink-900: #131318;
  --ink-800: #1b1b23;
  --ink-700: #26262f;
  --zinc-50: #fafafa;
  --zinc-100: #f4f4f5;
  --zinc-200: #e4e4e7;
  --zinc-300: #d4d4d8;
  --zinc-400: #a1a1aa;
  --zinc-500: #71717a;
  --zinc-600: #52525b;
  --zinc-700: #3f3f46;
  --zinc-900: #18181b;
  --green: #059669;
  --amber: #d97706;
  --radius: 14px;
  --shadow-sm: 0 1px 2px rgba(12, 12, 16, 0.06);
  --shadow-md: 0 4px 16px rgba(12, 12, 16, 0.08);
  --shadow-lg: 0 12px 40px rgba(12, 12, 16, 0.14);
  --max: 1160px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--zinc-900);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}

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

a { color: var(--brand-600); text-decoration: none; }
a:hover { text-decoration: underline; }

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

h1, h2, h3, h4 { line-height: 1.15; letter-spacing: -0.02em; font-weight: 700; color: var(--ink-950); }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
h3 { font-size: 1.25rem; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-600);
  margin-bottom: 14px;
}

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 10px;
  padding: 12px 22px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
  text-decoration: none !important;
}
.btn-primary { background: var(--brand-600); color: #fff; }
.btn-primary:hover { background: var(--brand-700); }
.btn-secondary { background: #fff; color: var(--zinc-900); border: 1px solid var(--zinc-300); }
.btn-secondary:hover { border-color: var(--zinc-400); background: var(--zinc-50); }
.btn-light { background: #fff; color: var(--brand-700); }
.btn-light:hover { background: var(--brand-50); }
.btn-lg { padding: 15px 30px; font-size: 1.05rem; border-radius: 12px; }
.btn-sm { padding: 8px 16px; font-size: 0.88rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--zinc-100);
}
.site-header .container {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 68px;
}
.logo { display: inline-flex; align-items: center; gap: 9px; font-weight: 800; font-size: 1.25rem; letter-spacing: -0.02em; color: var(--ink-950); text-decoration: none !important; }
.logo svg { flex-shrink: 0; }

.main-nav { display: flex; align-items: center; gap: 4px; flex: 1; }
.main-nav a {
  color: var(--zinc-600);
  font-size: 0.93rem;
  font-weight: 500;
  padding: 8px 13px;
  border-radius: 8px;
  text-decoration: none !important;
}
.main-nav a:hover { color: var(--ink-950); background: var(--zinc-100); }
.main-nav a.active { color: var(--brand-700); }

.header-actions { display: flex; align-items: center; gap: 10px; }
.header-actions .login { color: var(--zinc-600); font-weight: 600; font-size: 0.93rem; padding: 8px 12px; text-decoration: none !important; }
.header-actions .login:hover { color: var(--ink-950); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink-950); margin: 5px 0; border-radius: 2px; transition: transform 0.2s, opacity 0.2s; }

/* ---------- Hero ---------- */
.hero {
  padding: 88px 0 40px;
  background:
    radial-gradient(900px 420px at 85% -10%, var(--brand-100) 0%, transparent 60%),
    radial-gradient(700px 380px at 0% 10%, #f3f1ff 0%, transparent 55%),
    #fff;
  overflow: hidden;
}
.hero-inner { max-width: 780px; margin: 0 auto; text-align: center; }
.hero .lead { margin: 22px auto 34px; max-width: 640px; }
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-note { margin-top: 14px; font-size: 0.86rem; color: var(--zinc-500); }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--zinc-200);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--zinc-600);
  box-shadow: var(--shadow-sm);
  margin-bottom: 26px;
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); }

/* ---------- Product mockup ---------- */
.mockup-wrap { max-width: 1020px; margin: 56px auto 0; padding: 0 24px; }
.mockup {
  border-radius: 16px;
  border: 1px solid var(--zinc-200);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  background: #fff;
}
.mockup-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  background: var(--zinc-50);
  border-bottom: 1px solid var(--zinc-100);
}
.mockup-bar .dots { display: flex; gap: 6px; }
.mockup-bar .dots i { width: 11px; height: 11px; border-radius: 50%; display: block; }
.mockup-bar .dots i:nth-child(1) { background: #fca5a5; }
.mockup-bar .dots i:nth-child(2) { background: #fcd34d; }
.mockup-bar .dots i:nth-child(3) { background: #86efac; }
.mockup-bar .url {
  flex: 1;
  max-width: 340px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--zinc-200);
  border-radius: 7px;
  font-size: 0.74rem;
  color: var(--zinc-400);
  text-align: center;
  padding: 4px 12px;
}
.mockup-body { display: flex; min-height: 380px; }
.mockup-side {
  width: 168px;
  background: var(--ink-950);
  padding: 16px 10px;
  flex-shrink: 0;
}
.mockup-side .m-logo { display: flex; align-items: center; gap: 7px; color: #fff; font-weight: 700; font-size: 0.82rem; padding: 4px 8px 14px; }
.mockup-side .m-item {
  color: #9d9dab;
  font-size: 0.72rem;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 7px;
  margin-bottom: 2px;
}
.mockup-side .m-item.on { background: var(--brand-600); color: #fff; }
.mockup-side .m-group { color: #4e4e5c; font-size: 0.6rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 12px 10px 4px; }
.mockup-main { flex: 1; padding: 22px; background: var(--zinc-50); min-width: 0; }
.mockup-main .m-title { font-weight: 700; font-size: 0.95rem; margin-bottom: 3px; color: var(--ink-950); }
.mockup-main .m-sub { font-size: 0.72rem; color: var(--zinc-400); margin-bottom: 16px; }
.m-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 16px; }
.m-kpi { background: #fff; border: 1px solid var(--zinc-200); border-radius: 10px; padding: 10px 12px; }
.m-kpi .k-label { font-size: 0.58rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--zinc-400); font-weight: 600; }
.m-kpi .k-val { font-size: 1rem; font-weight: 800; color: var(--ink-950); margin-top: 2px; }
.m-kpi .k-val.green { color: var(--green); }
.m-kpi .k-val.purple { color: var(--brand-600); }
.m-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.m-col { background: #fff; border: 1px solid var(--zinc-200); border-radius: 10px; padding: 10px; }
.m-col .c-head { font-size: 0.62rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--zinc-500); padding: 2px 4px 8px; display: flex; justify-content: space-between; }
.m-card { background: var(--zinc-50); border: 1px solid var(--zinc-100); border-radius: 8px; padding: 8px 9px; margin-bottom: 7px; }
.m-card .t { font-size: 0.68rem; font-weight: 600; color: var(--zinc-700); line-height: 1.3; }
.m-card .s { font-size: 0.58rem; color: var(--zinc-400); margin-top: 3px; }
.m-card .pill { display: inline-block; font-size: 0.53rem; font-weight: 700; border-radius: 99px; padding: 1px 7px; margin-top: 5px; }
.pill-green { background: #d1fae5; color: #047857; }
.pill-amber { background: #fef3c7; color: #b45309; }
.pill-purple { background: var(--brand-100); color: var(--brand-700); }

/* ---------- Sections ---------- */
section { padding: 84px 0; }
section.tight { padding: 56px 0; }
.section-head { max-width: 680px; margin: 0 auto 52px; text-align: center; }
.section-head p { margin-top: 14px; color: var(--zinc-600); font-size: 1.05rem; }

.alt { background: var(--zinc-50); }

/* Logo/trust strip */
.trust-strip { padding: 34px 0; border-top: 1px solid var(--zinc-100); border-bottom: 1px solid var(--zinc-100); }
.trust-strip .container { display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap; text-align: center; }
.trust-strip p { font-size: 0.92rem; color: var(--zinc-500); }
.trust-strip strong { color: var(--zinc-700); }

/* Lifecycle steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.step {
  background: #fff;
  border: 1px solid var(--zinc-200);
  border-radius: var(--radius);
  padding: 26px 22px;
  position: relative;
}
.step .num {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--brand-600);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.step h3 { font-size: 1.02rem; margin-bottom: 8px; }
.step p { font-size: 0.9rem; color: var(--zinc-600); }

/* Feature grid */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feat {
  background: #fff;
  border: 1px solid var(--zinc-200);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: box-shadow 0.15s ease, border-color 0.15s ease;
}
.feat:hover { box-shadow: var(--shadow-md); border-color: var(--zinc-300); }
.feat .icon {
  width: 42px; height: 42px;
  border-radius: 11px;
  background: var(--brand-50);
  color: var(--brand-600);
  font-size: 1.15rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.feat h3 { font-size: 1.05rem; margin-bottom: 8px; }
.feat p { font-size: 0.92rem; color: var(--zinc-600); }
.feat ul { margin: 12px 0 0 0; padding: 0; list-style: none; }
.feat ul li { font-size: 0.88rem; color: var(--zinc-600); padding: 4px 0 4px 22px; position: relative; }
.feat ul li::before { content: "✓"; position: absolute; left: 0; color: var(--brand-500); font-weight: 700; }

/* Split rows (feature deep dives) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; margin-bottom: 88px; }
.split:last-child { margin-bottom: 0; }
.split.rev .split-media { order: 2; }
.split h2 { margin-bottom: 16px; }
.split p { color: var(--zinc-600); margin-bottom: 12px; }
.split ul { list-style: none; margin-top: 18px; }
.split ul li { padding: 7px 0 7px 30px; position: relative; color: var(--zinc-700); font-size: 0.97rem; }
.split ul li::before {
  content: "✓";
  position: absolute; left: 0; top: 7px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--brand-100);
  color: var(--brand-700);
  font-size: 0.7rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.split-media {
  background: linear-gradient(135deg, var(--brand-50), #fff 60%);
  border: 1px solid var(--zinc-200);
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--shadow-md);
}

/* Mini UI cards used inside split-media */
.ui-card { background: #fff; border: 1px solid var(--zinc-200); border-radius: 12px; padding: 16px; box-shadow: var(--shadow-sm); }
.ui-card + .ui-card { margin-top: 12px; }
.ui-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 9px 0; border-bottom: 1px solid var(--zinc-100); font-size: 0.85rem; }
.ui-row:last-child { border-bottom: none; }
.ui-row .name { font-weight: 600; color: var(--zinc-700); }
.ui-row .meta { font-size: 0.75rem; color: var(--zinc-400); }
.ui-title { font-weight: 700; font-size: 0.9rem; margin-bottom: 8px; color: var(--ink-950); }
.badge { display: inline-block; font-size: 0.68rem; font-weight: 700; border-radius: 99px; padding: 2px 10px; }
.badge-green { background: #d1fae5; color: #047857; }
.badge-amber { background: #fef3c7; color: #b45309; }
.badge-purple { background: var(--brand-100); color: var(--brand-700); }
.badge-red { background: #fee2e2; color: #b91c1c; }
.progress { height: 7px; background: var(--zinc-100); border-radius: 99px; overflow: hidden; margin-top: 8px; }
.progress i { display: block; height: 100%; background: var(--brand-500); border-radius: 99px; }

/* Stats band */
.stats-band { background: var(--ink-950); color: #fff; }
.stats-band h2 { color: #fff; }
.stats-band .section-head p { color: #a7a7b4; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: center; }
.stat .big { font-size: 2.6rem; font-weight: 800; letter-spacing: -0.03em; color: var(--brand-300); }
.stat .cap { color: #a7a7b4; font-size: 0.95rem; margin-top: 6px; }

/* Replace-stack table */
.stack-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--zinc-200); }
.stack-table th, .stack-table td { padding: 14px 18px; text-align: left; font-size: 0.92rem; border-bottom: 1px solid var(--zinc-100); }
.stack-table th { background: var(--zinc-50); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--zinc-500); }
.stack-table tr:last-child td { border-bottom: none; }
.stack-table .yes { color: var(--green); font-weight: 700; }
.stack-table .price { color: var(--zinc-500); }
.stack-table tfoot td { background: var(--brand-50); font-weight: 700; color: var(--ink-950); }

/* Quote / founder */
.founder-quote {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.founder-quote blockquote {
  font-size: clamp(1.25rem, 2.6vw, 1.7rem);
  font-weight: 600;
  line-height: 1.45;
  color: var(--ink-950);
  letter-spacing: -0.01em;
}
.founder-quote .who { margin-top: 26px; display: flex; align-items: center; justify-content: center; gap: 14px; }
.founder-quote .avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--brand-600);
  color: #fff; font-weight: 700; font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
}
.founder-quote .who-name { text-align: left; }
.founder-quote .who-name strong { display: block; color: var(--ink-950); font-size: 0.98rem; }
.founder-quote .who-name span { color: var(--zinc-500); font-size: 0.86rem; }

/* Pricing */
.toggle-wrap { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 44px; font-weight: 600; font-size: 0.95rem; }
.toggle-wrap .save { color: var(--green); font-size: 0.8rem; font-weight: 700; background: #d1fae5; border-radius: 99px; padding: 2px 10px; }
.switch { position: relative; width: 52px; height: 28px; background: var(--zinc-200); border-radius: 99px; border: none; cursor: pointer; transition: background 0.15s; }
.switch.on { background: var(--brand-600); }
.switch i { position: absolute; top: 3px; left: 3px; width: 22px; height: 22px; background: #fff; border-radius: 50%; transition: transform 0.18s ease; box-shadow: var(--shadow-sm); }
.switch.on i { transform: translateX(24px); }

.plans { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: stretch; }
.plan {
  background: #fff;
  border: 1px solid var(--zinc-200);
  border-radius: 16px;
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.plan.popular { border: 2px solid var(--brand-600); box-shadow: var(--shadow-md); }
.plan .flag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--brand-600); color: #fff;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.04em;
  border-radius: 99px; padding: 4px 14px; white-space: nowrap;
}
.plan h3 { font-size: 1.15rem; }
.plan .for { color: var(--zinc-500); font-size: 0.86rem; margin: 4px 0 18px; min-height: 2.6em; }
.plan .price { font-size: 2.5rem; font-weight: 800; letter-spacing: -0.03em; color: var(--ink-950); }
.plan .price span { font-size: 0.95rem; font-weight: 500; color: var(--zinc-500); letter-spacing: 0; }
.plan .bill-note { font-size: 0.78rem; color: var(--zinc-400); margin-bottom: 20px; min-height: 1.2em; }
.plan ul { list-style: none; margin: 20px 0 26px; flex: 1; }
.plan ul li { font-size: 0.89rem; color: var(--zinc-700); padding: 6px 0 6px 26px; position: relative; }
.plan ul li::before { content: "✓"; position: absolute; left: 2px; color: var(--brand-500); font-weight: 800; }
.plan ul li.head { font-weight: 700; color: var(--ink-950); padding-left: 0; margin-top: 4px; }
.plan ul li.head::before { content: none; }
.plan .btn { width: 100%; }

/* Comparison table (pricing page) */
.compare-scroll { overflow-x: auto; }
.compare { width: 100%; min-width: 760px; border-collapse: collapse; background: #fff; border: 1px solid var(--zinc-200); border-radius: var(--radius); overflow: hidden; }
.compare th, .compare td { padding: 13px 16px; font-size: 0.9rem; border-bottom: 1px solid var(--zinc-100); text-align: center; }
.compare th:first-child, .compare td:first-child { text-align: left; }
.compare thead th { background: var(--zinc-50); font-size: 0.85rem; }
.compare thead th.pop { background: var(--brand-50); color: var(--brand-700); }
.compare td.pop { background: #faf9ff; }
.compare .group td { background: var(--zinc-50); font-weight: 700; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--zinc-500); text-align: left; }
.compare .tick { color: var(--green); font-weight: 800; }
.compare .dash { color: var(--zinc-300); }

/* FAQ */
.faq { max-width: 760px; margin: 0 auto; }
.faq details {
  background: #fff;
  border: 1px solid var(--zinc-200);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq summary {
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 600;
  font-size: 1rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.3rem; color: var(--zinc-400); font-weight: 400; flex-shrink: 0; }
.faq details[open] summary::after { content: "–"; }
.faq .a { padding: 0 22px 20px; color: var(--zinc-600); font-size: 0.95rem; }

/* CTA band */
.cta-band {
  background: linear-gradient(120deg, var(--brand-700), var(--brand-500));
  color: #fff;
  text-align: center;
  border-radius: 22px;
  padding: 64px 40px;
  margin: 0 24px;
}
.cta-band h2 { color: #fff; margin-bottom: 12px; }
.cta-band p { color: rgba(255, 255, 255, 0.85); max-width: 560px; margin: 0 auto 30px; }
.cta-band .hero-ctas { justify-content: center; }
.cta-band .hero-note { color: rgba(255, 255, 255, 0.72); }
.cta-outer { padding: 20px 0 90px; }
.cta-outer .container { padding: 0; }

/* ---------- Forms ---------- */
.form-card {
  background: #fff;
  border: 1px solid var(--zinc-200);
  border-radius: 16px;
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field.full { grid-column: 1 / -1; }
.field label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--zinc-700); margin-bottom: 6px; }
.field label .req { color: var(--brand-600); }
.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid var(--zinc-300);
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--zinc-900);
  background: #fff;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--brand-500);
  box-shadow: 0 0 0 3px var(--brand-100);
}
.field textarea { resize: vertical; min-height: 120px; }
.field .hint { font-size: 0.78rem; color: var(--zinc-400); margin-top: 5px; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.notice { border-radius: 12px; padding: 16px 20px; font-size: 0.95rem; margin-bottom: 24px; }
.notice-ok { background: #d1fae5; color: #065f46; }
.notice-err { background: #fee2e2; color: #991b1b; }

/* Contact page layout */
.contact-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: start; }
.contact-aside .aside-card {
  background: var(--zinc-50);
  border: 1px solid var(--zinc-200);
  border-radius: 14px;
  padding: 24px;
  margin-bottom: 16px;
}
.contact-aside h3 { font-size: 1rem; margin-bottom: 6px; }
.contact-aside p { font-size: 0.9rem; color: var(--zinc-600); }

/* ---------- Prose (legal, about) ---------- */
.prose { max-width: 760px; margin: 0 auto; }
.prose h1 { margin-bottom: 10px; }
.prose .updated { color: var(--zinc-400); font-size: 0.88rem; margin-bottom: 40px; }
.prose h2 { font-size: 1.35rem; margin: 40px 0 14px; }
.prose h3 { font-size: 1.08rem; margin: 26px 0 10px; }
.prose p { margin-bottom: 14px; color: var(--zinc-700); }
.prose ul, .prose ol { margin: 0 0 16px 22px; color: var(--zinc-700); }
.prose li { margin-bottom: 7px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink-950); color: #9d9dab; padding: 64px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 48px; }
.footer-brand .logo { color: #fff; margin-bottom: 14px; }
.footer-brand p { font-size: 0.88rem; max-width: 260px; }
.site-footer h4 { color: #fff; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 16px; }
.site-footer ul { list-style: none; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer ul a { color: #9d9dab; font-size: 0.9rem; text-decoration: none; }
.site-footer ul a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid var(--ink-700);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.84rem;
}
.footer-bottom a { color: #9d9dab; }
.footer-bottom a:hover { color: #fff; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero { padding: 72px 0 56px; text-align: center; background: linear-gradient(180deg, var(--brand-50) 0%, #fff 100%); }
.page-hero .lead { max-width: 640px; margin: 18px auto 0; }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .steps, .m-kpis, .m-cols { grid-template-columns: repeat(2, 1fr); }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .plans { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split.rev .split-media { order: 0; }
  .mockup-side { display: none; }
}

@media (max-width: 720px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--zinc-200);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 20px 20px;
    gap: 2px;
    box-shadow: var(--shadow-md);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 14px; font-size: 1rem; }
  .nav-toggle { display: block; }
  .header-actions .btn { display: none; }
  .feat-grid, .steps, .plans { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; gap: 36px; }
  .form-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  section { padding: 60px 0; }
  .hero { padding: 56px 0 24px; }
  .cta-band { margin: 0; border-radius: 0; }
}
