:root {
  --bg: #07111d;
  --bg-deep: #040a12;
  --surface: #0d1a2a;
  --surface-2: #122237;
  --paper: #f6f8fb;
  --paper-2: #edf2f7;
  --ink: #101827;
  --ink-soft: #536174;
  --text: #edf4ff;
  --text-soft: #aebed2;
  --line: rgba(164, 189, 219, 0.18);
  --line-dark: #dce4ed;
  --blue: #7ea2ff;
  --blue-strong: #5b83f7;
  --amber: #ffb35c;
  --amber-hover: #ffc47f;
  --green: #6fe2b7;
  --red: #ff9189;
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow: 0 24px 70px rgba(2, 9, 18, 0.18);
  --shadow-dark: 0 30px 90px rgba(0, 0, 0, 0.34);
  --container: 1180px;
  --font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.modal-open { overflow: hidden; }
a { color: inherit; }
img, svg { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
::selection { background: rgba(126, 162, 255, .35); }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 9999;
  padding: 10px 14px;
  color: var(--bg);
  background: var(--amber);
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}
.skip-link:focus { top: 16px; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 112px 0; }
.section-dark { color: var(--text); background: var(--bg); }
.section-muted { background: var(--paper-2); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 17, 29, .88);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
}
.nav-wrap { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--text); font-weight: 850; letter-spacing: -.02em; text-decoration: none; }
.brand-mark { width: 34px; height: 34px; color: var(--amber); }
.desktop-nav { display: flex; gap: 30px; margin-left: auto; }
.desktop-nav a { color: var(--text-soft); text-decoration: none; font-size: .94rem; font-weight: 700; }
.desktop-nav a:hover, .desktop-nav a:focus-visible { color: var(--text); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-weight: 850;
  letter-spacing: -.01em;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.button:hover { transform: translateY(-1px); }
.button:focus-visible, input:focus-visible, textarea:focus-visible, summary:focus-visible, a:focus-visible {
  outline: 3px solid rgba(126, 162, 255, .55);
  outline-offset: 3px;
}
.button-primary { color: #15100a; background: var(--amber); box-shadow: 0 10px 30px rgba(255, 179, 92, .18); }
.button-primary:hover { background: var(--amber-hover); box-shadow: 0 14px 36px rgba(255, 179, 92, .26); }
.button-ghost { color: inherit; background: transparent; border-color: rgba(255,255,255,.22); }
.button-ghost:hover { border-color: rgba(255,255,255,.48); background: rgba(255,255,255,.04); }
.button-small { min-height: 40px; padding: 9px 15px; font-size: .9rem; }
.button-large { min-height: 56px; padding: 16px 24px; }
.button-full { width: 100%; }

.hero { position: relative; overflow: hidden; padding: 106px 0 112px; }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image: linear-gradient(rgba(126,162,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(126,162,255,.12) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000 20%, transparent 82%);
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  width: 780px;
  height: 780px;
  right: -280px;
  top: -300px;
  background: radial-gradient(circle, rgba(91,131,247,.24), transparent 68%);
  pointer-events: none;
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; gap: 76px; }
.eyebrow { margin: 0 0 18px; color: var(--blue); font-size: .78rem; line-height: 1.3; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.status-dot { display: inline-block; width: 8px; height: 8px; margin-right: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 6px rgba(111,226,183,.1); }
.hero h1 { margin: 0; max-width: 760px; font-size: clamp(3rem, 6vw, 5.65rem); line-height: .99; letter-spacing: -.068em; }
.hero h1 span { color: var(--amber); }
.hero-lead { max-width: 680px; margin: 30px 0 0; color: var(--text-soft); font-size: clamp(1.08rem, 1.8vw, 1.3rem); line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }
.microcopy { margin: 15px 0 0; color: #8fa2ba; font-size: .87rem; }
.trust-list { display: grid; grid-template-columns: 1fr 1fr; gap: 11px 24px; margin: 34px 0 0; padding: 26px 0 0; border-top: 1px solid var(--line); list-style: none; color: #c8d4e4; font-size: .92rem; }
.trust-list li { position: relative; padding-left: 24px; }
.trust-list li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 900; }

.hero-visual { position: relative; min-width: 0; }
.visual-shell { overflow: hidden; border: 1px solid rgba(147,177,217,.22); border-radius: 20px; background: rgba(11,24,40,.9); box-shadow: var(--shadow-dark); transform: rotate(1.5deg); }
.visual-topbar { display: flex; align-items: center; gap: 7px; min-height: 48px; padding: 0 18px; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.025); }
.visual-topbar > span { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.18); }
.visual-topbar p { margin: 0 0 0 8px; color: #758aa5; font: 700 .75rem ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; }
.visual-body { padding: 28px; }
.signal-card { padding: 22px; border: 1px solid rgba(126,162,255,.2); border-radius: 14px; background: rgba(126,162,255,.055); }
.signal-card-problem { border-color: rgba(255,145,137,.28); background: rgba(255,145,137,.055); }
.signal-card-success { border-color: rgba(111,226,183,.28); background: rgba(111,226,183,.055); }
.signal-label { margin-bottom: 9px; color: var(--blue); font: 800 .72rem ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; text-transform: uppercase; letter-spacing: .08em; }
.signal-card-problem .signal-label { color: var(--red); }
.signal-card-success .signal-label { color: var(--green); }
.signal-card strong { display: block; color: #f2f6fc; font-size: 1rem; }
.signal-card p { margin: 7px 0 0; color: #8fa4be; font-size: .85rem; }
.flow-line { position: relative; height: 30px; margin-left: 28px; border-left: 1px dashed rgba(126,162,255,.4); }
.flow-line span { position: absolute; bottom: 2px; left: -4px; width: 7px; height: 7px; border-right: 1px solid var(--blue); border-bottom: 1px solid var(--blue); transform: rotate(45deg); }
.code-row { display: flex; justify-content: space-between; gap: 16px; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.06); font: .79rem ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; }
.code-row:last-child { border-bottom: 0; }
.code-row span { color: #758aa5; }
.code-row b { color: #d4def0; font-weight: 700; }
.pr-status { display: inline-flex; gap: 7px; align-items: center; margin-top: 15px; padding: 7px 10px; border-radius: 999px; color: var(--green); background: rgba(111,226,183,.09); font-size: .75rem; font-weight: 800; }
.floating-note { position: absolute; padding: 10px 14px; border: 1px solid rgba(255,255,255,.16); border-radius: 10px; color: #dce7f6; background: rgba(8,18,31,.9); box-shadow: 0 18px 50px rgba(0,0,0,.3); font-size: .78rem; font-weight: 800; backdrop-filter: blur(14px); }
.note-one { left: -26px; bottom: 83px; }
.note-two { right: -22px; top: 90px; }

.signal-strip { color: var(--text); background: #0a1625; border-top: 1px solid rgba(255,255,255,.06); border-bottom: 1px solid rgba(255,255,255,.06); }
.signal-strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.signal-strip-grid div { padding: 29px 24px; border-right: 1px solid rgba(255,255,255,.08); text-align: center; }
.signal-strip-grid div:last-child { border-right: 0; }
.signal-strip-grid strong { display: block; color: var(--amber); font-size: 1.4rem; letter-spacing: -.04em; }
.signal-strip-grid span { color: #8fa2ba; font-size: .83rem; }

.section-heading { margin-bottom: 55px; }
.section-heading.narrow { max-width: 800px; }
.section-heading.centered { max-width: 800px; margin-inline: auto; text-align: center; }
.section-heading h2, .pricing-copy h2, .deliverables-grid h2, .about-grid h2, .contact-copy h2, .faq-heading h2, .final-cta h2 {
  margin: 0;
  font-size: clamp(2.25rem, 4.7vw, 4.25rem);
  line-height: 1.08;
  letter-spacing: -.055em;
}
.section-heading p:not(.eyebrow), .pricing-copy > p:not(.eyebrow), .lead-copy, .about-grid p, .contact-copy > p:not(.eyebrow) { color: var(--ink-soft); font-size: 1.08rem; }

.scope-layout { display: grid; grid-template-columns: 1.18fr .82fr; gap: 24px; }
.scope-panel { padding: 34px; border: 1px solid var(--line-dark); border-radius: var(--radius-lg); background: #fff; box-shadow: 0 12px 45px rgba(23,39,61,.05); }
.scope-good { border-top: 3px solid var(--green); }
.scope-bad { border-top: 3px solid var(--red); }
.panel-heading { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 28px; }
.panel-icon { display: grid; place-items: center; flex: 0 0 38px; height: 38px; border-radius: 50%; color: #0d503c; background: rgba(111,226,183,.22); font-weight: 900; }
.scope-bad .panel-icon { color: #7a2722; background: rgba(255,145,137,.2); }
.mini-label { margin: 0 0 5px; color: var(--ink-soft); font-size: .72rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.panel-heading h3 { margin: 0; line-height: 1.25; letter-spacing: -.025em; }
.check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px 22px; padding: 0; list-style: none; }
.check-grid li { position: relative; padding-left: 23px; color: #354356; font-size: .94rem; }
.check-grid li::before { content: "✓"; position: absolute; left: 0; color: #16845f; font-weight: 900; }
.plain-list { margin: 0; padding-left: 20px; color: #4e5c6e; }
.plain-list li { margin: 0 0 12px; }
.scope-note { margin: 25px 0 0; padding-top: 22px; border-top: 1px solid var(--line-dark); color: var(--ink-soft); font-size: .9rem; }

.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; padding: 0; list-style: none; counter-reset: steps; }
.process-grid li { min-height: 286px; padding: 26px 23px; border: 1px solid #d8e1eb; border-radius: 18px; background: rgba(255,255,255,.76); }
.step-number { display: inline-grid; place-items: center; width: 42px; height: 42px; margin-bottom: 34px; border-radius: 11px; color: #2c4aa0; background: rgba(126,162,255,.16); font-weight: 900; }
.process-grid h3 { margin: 0 0 10px; font-size: 1.05rem; letter-spacing: -.02em; }
.process-grid p { margin: 0; color: var(--ink-soft); font-size: .9rem; }

.deliverables-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 80px; align-items: start; }
.lead-copy { max-width: 560px; }
.deliverables-card { padding: 12px 34px; border: 1px solid var(--line-dark); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow); }
.deliverables-list { margin: 0; padding: 0; list-style: none; }
.deliverables-list li { display: grid; grid-template-columns: 44px 1fr; gap: 18px; padding: 24px 0; border-bottom: 1px solid #e5ebf1; }
.deliverables-list li:last-child { border-bottom: 0; }
.deliverables-list > li > span { color: var(--blue-strong); font: 800 .76rem ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; }
.deliverables-list strong { display: block; margin-bottom: 3px; letter-spacing: -.015em; }
.deliverables-list p { margin: 0; color: var(--ink-soft); font-size: .9rem; }

.proof-section { padding-top: 118px; padding-bottom: 118px; }
.proof-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; }
.proof-grid h2 { margin: 0; font-size: clamp(2.4rem, 5vw, 4.5rem); line-height: 1.03; letter-spacing: -.06em; }
.proof-grid p:not(.eyebrow) { color: var(--text-soft); font-size: 1.06rem; }
.proof-stats { display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.proof-stats div { padding: 24px 18px; border-right: 1px solid var(--line); }
.proof-stats div:last-child { border-right: 0; }
.proof-stats strong { display: block; margin-bottom: 7px; color: var(--amber); font-size: 1.22rem; }
.proof-stats span { color: #93a6bd; font-size: .78rem; }
.problem-patterns { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 62px; }
.problem-patterns article { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.025); }
.pattern-icon { display: inline-grid; place-items: center; width: 38px; height: 38px; margin-bottom: 28px; border-radius: 10px; color: var(--blue); background: rgba(126,162,255,.1); font: 800 .76rem ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; }
.problem-patterns h3 { margin: 0 0 10px; color: #f2f6fc; letter-spacing: -.02em; }
.problem-patterns p { margin: 0; color: #94a8c0; font-size: .9rem; }
.tech-stack { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 38px; }
.tech-stack span { padding: 7px 10px; border: 1px solid rgba(255,255,255,.1); border-radius: 7px; color: #8fa4be; background: rgba(255,255,255,.025); font-size: .75rem; }

.pricing-layout { display: grid; grid-template-columns: 1fr 480px; gap: 100px; align-items: center; }
.pricing-copy { max-width: 650px; }
.pricing-card { overflow: hidden; border: 1px solid #d8e0ea; border-radius: 24px; background: #fff; box-shadow: var(--shadow); }
.pricing-card-top { padding: 34px 36px 28px; color: var(--text); background: var(--bg); }
.pricing-card-top > p:first-child { margin: 0; color: var(--blue); font-size: .82rem; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.price { display: flex; align-items: flex-start; gap: 4px; margin-top: 14px; }
.price span { margin-top: 14px; color: #94a8c0; font-weight: 850; }
.price strong { font-size: 5rem; line-height: .95; letter-spacing: -.07em; }
.price-note { margin: 8px 0 0; color: #91a5bc; font-size: .84rem; }
.pricing-card > ul { margin: 0; padding: 30px 36px 20px; list-style: none; }
.pricing-card > ul li { position: relative; margin: 0 0 14px; padding-left: 26px; color: #3e4d60; }
.pricing-card > ul li::before { content: "✓"; position: absolute; left: 0; color: #16845f; font-weight: 900; }
.pricing-card > .button { width: calc(100% - 72px); margin: 4px 36px 0; }
.pricing-fineprint { margin: 18px 36px 30px; color: var(--ink-soft); font-size: .76rem; line-height: 1.55; }

.about-grid { display: grid; grid-template-columns: 160px 1fr; gap: 50px; align-items: start; max-width: 930px; }
.about-mark { display: grid; place-items: center; width: 150px; height: 150px; border: 1px solid #cdd9e7; border-radius: 36px; color: #2d4c9f; background: linear-gradient(145deg, #fff, #e7eef8); box-shadow: 0 18px 50px rgba(29,49,77,.1); font-size: 2.3rem; font-weight: 950; letter-spacing: -.08em; }
.about-grid h2 { max-width: 780px; }
.about-grid p { max-width: 820px; }

.contact-section { background: #fff; }
.contact-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 80px; align-items: start; }
.contact-copy { position: sticky; top: 112px; }
.contact-assurances { display: grid; gap: 16px; margin-top: 34px; }
.contact-assurances > div { display: grid; grid-template-columns: 27px 1fr; gap: 12px; }
.contact-assurances > div > span { display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; color: #0a6447; background: rgba(111,226,183,.22); font-weight: 900; }
.contact-assurances p { margin: 0; color: var(--ink-soft); font-size: .9rem; }
.contact-assurances strong { color: var(--ink); }
.direct-email { margin-top: 30px; color: var(--ink-soft); }
.direct-email a { color: #244bb1; font-weight: 800; }
.form-shell { padding: 34px; border: 1px solid #dbe3ec; border-radius: 24px; background: var(--paper); box-shadow: var(--shadow); }
.form-row.two-column { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label { display: block; margin-bottom: 7px; color: #263448; font-size: .85rem; font-weight: 800; }
.field input, .field textarea {
  width: 100%;
  border: 1px solid #cbd7e3;
  border-radius: 10px;
  color: var(--ink);
  background: #fff;
  transition: border .18s ease, box-shadow .18s ease;
}
.field input { height: 50px; padding: 0 14px; }
.field textarea { min-height: 154px; padding: 13px 14px; resize: vertical; }
.field input:focus, .field textarea:focus { border-color: var(--blue-strong); box-shadow: 0 0 0 4px rgba(91,131,247,.1); outline: none; }
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: #c14942; }
.field-hint, .field-meta { display: flex; justify-content: space-between; gap: 14px; margin-top: 6px; color: #728094; font-size: .73rem; }
.field-error { display: block; min-height: 1.2em; margin-top: 5px; color: #b63832; font-size: .75rem; font-weight: 700; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.consent-row { display: grid; grid-template-columns: 18px 1fr; gap: 10px; align-items: start; margin: 3px 0 18px; color: #526175; font-size: .8rem; }
.consent-row input { margin: 3px 0 0; width: 16px; height: 16px; accent-color: var(--blue-strong); }
.consent-row a { color: #244bb1; font-weight: 750; }
.button-submit { position: relative; }
.button-submit[disabled] { opacity: .65; cursor: not-allowed; transform: none; }
.button-spinner { display: none; width: 17px; height: 17px; border: 2px solid rgba(15,12,7,.3); border-top-color: #17110b; border-radius: 50%; animation: spin .7s linear infinite; }
.button-submit.is-loading .button-spinner { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }
.form-status { min-height: 24px; margin-top: 13px; color: #a82f2a; font-size: .84rem; font-weight: 700; }
.form-legal { margin: 13px 0 0; color: #748195; font-size: .72rem; line-height: 1.55; }
.form-success { padding: 32px 12px; text-align: center; }
.success-icon { display: grid; place-items: center; width: 58px; height: 58px; margin: 0 auto 24px; border-radius: 50%; color: #09583f; background: rgba(111,226,183,.25); font-size: 1.5rem; font-weight: 900; }
.form-success h3 { margin: 0; font-size: 2rem; line-height: 1.15; letter-spacing: -.04em; }
.form-success > p:not(.eyebrow):not(.config-note) { color: var(--ink-soft); }
.config-note { margin: 18px 0 0; padding: 12px; border-radius: 9px; color: #69410f; background: #fff1dc; font-size: .82rem; }

.faq-layout { display: grid; grid-template-columns: 360px 1fr; gap: 90px; align-items: start; }
.faq-heading { position: sticky; top: 112px; }
.faq-heading h2 { font-size: clamp(2.4rem, 4.2vw, 3.8rem); }
.faq-list { border-top: 1px solid var(--line-dark); }
.faq-list details { border-bottom: 1px solid var(--line-dark); }
.faq-list summary { position: relative; padding: 25px 48px 25px 0; list-style: none; font-weight: 850; letter-spacing: -.015em; cursor: pointer; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 8px; top: 21px; color: var(--blue-strong); font-size: 1.4rem; font-weight: 400; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { margin: -6px 0 26px; max-width: 780px; color: var(--ink-soft); }

.final-cta { padding: 80px 0; }
.final-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.final-cta h2 { max-width: 850px; font-size: clamp(2rem, 4vw, 3.5rem); }

.site-footer { padding: 62px 0 26px; color: #9bacc1; background: var(--bg-deep); }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 50px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand { margin-bottom: 14px; }
.footer-grid p { margin: 0; font-size: .86rem; }
.footer-links { display: grid; grid-template-columns: repeat(3, auto); gap: 9px 28px; align-content: start; }
.footer-links a { color: #aab8ca; text-decoration: none; font-size: .84rem; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 40px; padding-top: 22px; font-size: .72rem; }
.footer-bottom p { margin: 0; max-width: 650px; }

.modal { position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center; padding: 20px; }
.modal[hidden] { display: none; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(1,6,12,.78); backdrop-filter: blur(8px); }
.modal-dialog { position: relative; z-index: 1; width: min(100%, 980px); max-height: calc(100vh - 40px); overflow: hidden; border: 1px solid rgba(255,255,255,.15); border-radius: 20px; background: #fff; box-shadow: 0 30px 100px rgba(0,0,0,.5); }
.modal-header { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 18px 22px; border-bottom: 1px solid #e0e7ef; }
.modal-header .mini-label { margin-bottom: 0; }
.modal-header h2 { margin: 0; font-size: 1.35rem; letter-spacing: -.03em; }
.modal-close { display: grid; place-items: center; width: 42px; height: 42px; border: 0; border-radius: 10px; color: #465468; background: #edf2f7; font-size: 1.6rem; }
.calendly-embed { min-width: 320px; height: min(740px, calc(100vh - 130px)); overflow: auto; }

.cookie-banner { position: fixed; z-index: 900; left: 20px; right: 20px; bottom: 20px; display: flex; justify-content: space-between; align-items: center; gap: 28px; width: min(calc(100% - 40px), 1040px); margin-inline: auto; padding: 18px 20px; border: 1px solid rgba(255,255,255,.13); border-radius: 14px; color: #e8f0fb; background: rgba(7,17,29,.96); box-shadow: 0 20px 60px rgba(0,0,0,.36); backdrop-filter: blur(18px); }
.cookie-banner[hidden] { display: none; }
.cookie-banner strong { display: block; margin-bottom: 3px; }
.cookie-banner p { margin: 0; color: #9eb0c6; font-size: .8rem; }
.cookie-banner a { color: #d9e6ff; }
.cookie-actions { display: flex; flex: 0 0 auto; gap: 9px; }

.legal-page { min-height: 100vh; color: var(--ink); background: var(--paper); }
.legal-header { padding: 24px 0; background: var(--bg); }
.legal-main { width: min(calc(100% - 40px), 850px); margin-inline: auto; padding: 80px 0 100px; }
.legal-main h1 { margin: 0 0 12px; font-size: clamp(2.5rem, 6vw, 4.3rem); line-height: 1; letter-spacing: -.06em; }
.legal-main .updated { margin-bottom: 50px; color: var(--ink-soft); }
.legal-main h2 { margin: 42px 0 10px; font-size: 1.35rem; letter-spacing: -.03em; }
.legal-main h3 { margin: 26px 0 8px; font-size: 1rem; }
.legal-main p, .legal-main li { color: #465568; }
.legal-main a { color: #2048ad; }
.legal-callout { margin: 34px 0; padding: 18px 20px; border-left: 4px solid var(--blue-strong); border-radius: 8px; background: #eaf0fb; }
.legal-footer { padding: 30px 0; color: #93a5ba; background: var(--bg-deep); }
.legal-footer .container { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 18px; }
.legal-footer a { color: #c0cee0; }

@media (max-width: 1050px) {
  .hero-grid { gap: 42px; }
  .hero h1 { font-size: clamp(3.1rem, 7vw, 4.7rem); }
  .process-grid { grid-template-columns: repeat(3,1fr); }
  .pricing-layout { grid-template-columns: 1fr 430px; gap: 55px; }
  .contact-grid { gap: 50px; }
  .faq-layout { grid-template-columns: 300px 1fr; gap: 55px; }
}

@media (max-width: 860px) {
  .desktop-nav { display: none; }
  .hero { padding-top: 82px; }
  .hero-grid, .proof-grid, .deliverables-grid, .pricing-layout, .contact-grid, .faq-layout { grid-template-columns: 1fr; }
  .hero-visual { width: min(100%, 620px); margin-inline: auto; }
  .scope-layout { grid-template-columns: 1fr; }
  .proof-stats { margin-top: 8px; }
  .deliverables-grid, .pricing-layout, .contact-grid { gap: 48px; }
  .contact-copy, .faq-heading { position: static; }
  .pricing-card { width: min(100%, 520px); }
  .about-grid { grid-template-columns: 120px 1fr; gap: 30px; }
  .about-mark { width: 112px; height: 112px; border-radius: 26px; }
  .final-cta-inner { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 82px 0; }
  .nav-wrap { min-height: 68px; }
  .brand { font-size: .94rem; }
  .brand-mark { width: 30px; height: 30px; }
  .site-header .button { padding: 9px 12px; font-size: .78rem; }
  .hero { padding: 68px 0 82px; }
  .hero h1 { font-size: clamp(2.9rem, 14vw, 4rem); }
  .hero-lead { font-size: 1.03rem; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .trust-list { grid-template-columns: 1fr; }
  .visual-shell { transform: none; }
  .floating-note { display: none; }
  .visual-body { padding: 18px; }
  .signal-strip-grid { grid-template-columns: 1fr 1fr; }
  .signal-strip-grid div:nth-child(2) { border-right: 0; }
  .signal-strip-grid div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.08); }
  .section-heading h2, .pricing-copy h2, .deliverables-grid h2, .about-grid h2, .contact-copy h2, .faq-heading h2, .final-cta h2 { font-size: 2.45rem; }
  .scope-panel { padding: 25px; }
  .check-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid li { min-height: auto; }
  .step-number { margin-bottom: 24px; }
  .deliverables-card { padding: 8px 22px; }
  .problem-patterns { grid-template-columns: 1fr; }
  .proof-stats { grid-template-columns: 1fr; }
  .proof-stats div { border-right: 0; border-bottom: 1px solid var(--line); }
  .proof-stats div:last-child { border-bottom: 0; }
  .pricing-card-top { padding: 28px 26px 24px; }
  .pricing-card > ul { padding: 26px 26px 16px; }
  .pricing-card > .button { width: calc(100% - 52px); margin-inline: 26px; }
  .pricing-fineprint { margin-inline: 26px; }
  .about-grid { grid-template-columns: 1fr; }
  .form-shell { padding: 22px; }
  .form-row.two-column { grid-template-columns: 1fr; gap: 0; }
  .field-meta { align-items: flex-start; flex-direction: column; gap: 2px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .cookie-banner { align-items: stretch; flex-direction: column; }
  .cookie-actions { width: 100%; }
  .cookie-actions .button { flex: 1; }
  .modal { padding: 0; }
  .modal-dialog { width: 100%; height: 100%; max-height: 100%; border-radius: 0; }
  .calendly-embed { height: calc(100vh - 82px); }
}

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