:root {
  --ink: #173f3a;
  --ink-2: #24554e;
  --cream: #f8f5ed;
  --paper: #fffdfa;
  --mint: #dcebe3;
  --mint-2: #bad8cb;
  --sage: #7fa99b;
  --coral: #e9866a;
  --coral-dark: #c96048;
  --text: #243b38;
  --muted: #667a76;
  --line: #dfe7e2;
  --shadow: 0 24px 70px rgba(23, 63, 58, .10);
  --radius: 24px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body { margin: 0; color: var(--text); background: var(--paper); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.65; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img, svg { max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 112px 0; }
.soft-section { background: var(--cream); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: 10px; left: 10px; z-index: 1000; padding: 12px 18px; background: white; color: var(--ink); border-radius: 8px; transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--coral); outline-offset: 3px; }

.site-header { position: fixed; inset: 0 0 auto; z-index: 100; transition: background .25s, box-shadow .25s; }
.site-header.scrolled { background: rgba(255, 253, 250, .94); box-shadow: 0 8px 32px rgba(23, 63, 58, .08); backdrop-filter: blur(12px); }
.nav-wrap { height: 82px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-size: 1.07rem; text-decoration: none; color: var(--ink); letter-spacing: -.02em; }
.brand strong { font-weight: 750; }
.brand-mark { width: 35px; aspect-ratio: 1; display: grid; place-items: center; background: var(--ink); border-radius: 50% 50% 50% 16%; transform: rotate(-8deg); }
.brand-mark > span { width: 14px; height: 14px; border: 2px solid white; border-top-color: transparent; border-radius: 50%; transform: rotate(40deg); }
.site-nav { display: flex; align-items: center; gap: 25px; }
.site-nav > a { color: var(--ink); font-size: .88rem; font-weight: 650; text-decoration: none; }
.site-nav > a:not(.button) { position: relative; }
.site-nav > a:not(.button)::after { content: ""; position: absolute; left: 0; bottom: -7px; width: 100%; height: 2px; background: var(--coral); transform: scaleX(0); transform-origin: right; transition: transform .2s; }
.site-nav > a:hover::after { transform: scaleX(1); transform-origin: left; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; padding: 10px; cursor: pointer; }
.menu-toggle > span:not(.sr-only) { display: block; width: 23px; height: 2px; background: var(--ink); margin: 5px auto; transition: transform .2s, opacity .2s; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 18px; padding: 15px 22px; background: var(--coral); color: #fff; border: 0; border-radius: 10px; font-size: .94rem; font-weight: 750; text-decoration: none; box-shadow: 0 10px 28px rgba(201, 96, 72, .2); cursor: pointer; transition: background .2s, transform .2s, box-shadow .2s; }
.button:hover { background: var(--coral-dark); transform: translateY(-2px); box-shadow: 0 14px 32px rgba(201, 96, 72, .28); }
.button-small { padding: 10px 16px; color: white !important; border-radius: 8px; }
.text-link { display: inline-flex; align-items: center; gap: 12px; color: var(--ink); font-weight: 750; text-decoration: none; border-bottom: 1px solid var(--ink); }
.text-link span { transition: transform .2s; }
.text-link:hover span { transform: translateX(4px); }
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 18px; color: var(--coral-dark); font-size: .76rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow > span { width: 25px; height: 2px; background: currentColor; }

.hero { position: relative; min-height: 820px; overflow: hidden; padding: 160px 0 40px; background: linear-gradient(120deg, #f8f5ed 0%, #eef4ed 100%); }
.hero::after { content: ""; position: absolute; left: -5%; right: -5%; bottom: -110px; height: 180px; background: var(--paper); border-radius: 50% 50% 0 0; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr .72fr; gap: clamp(50px, 8vw, 110px); align-items: center; }
.hero-copy h1, .section-heading h2, .split-intro h2, .why-copy h2, .feature-banner h2, .defense-grid h2, .contact-copy h2 { margin: 0; color: var(--ink); font-family: Georgia, "Times New Roman", serif; font-weight: 500; letter-spacing: -.045em; line-height: 1.02; }
.hero-copy h1 { font-size: clamp(4rem, 8vw, 7.7rem); max-width: 800px; }
.hero-copy h1 em { display: block; color: var(--coral); font-weight: 500; }
.hero-lead { max-width: 680px; margin: 28px 0 12px; color: var(--ink); font-size: clamp(1.25rem, 2vw, 1.62rem); line-height: 1.45; }
.hero-text { max-width: 680px; color: var(--muted); }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 34px; }
.price-card { position: relative; padding: 32px; background: rgba(255,255,255,.86); border: 1px solid rgba(255,255,255,.9); border-radius: 28px; box-shadow: var(--shadow); backdrop-filter: blur(8px); transform: rotate(2deg); }
.price-card::before { content: ""; position: absolute; inset: -12px 12px 12px -12px; z-index: -1; border: 1px solid var(--mint-2); border-radius: 28px; }
.price-card-top { display: flex; align-items: center; gap: 9px; padding-bottom: 22px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: .82rem; font-weight: 750; text-transform: uppercase; letter-spacing: .08em; }
.status-dot { width: 9px; height: 9px; border-radius: 50%; background: #5ca47c; box-shadow: 0 0 0 5px #e0efe6; }
.price-card > p { margin: 26px 0 0; color: var(--ink); font-size: 1.02rem; font-weight: 700; }
.big-price { margin: 3px 0 0; }
.big-price strong { display: block; color: var(--ink); font-family: Georgia, serif; font-size: clamp(3.2rem, 5vw, 5rem); font-weight: 500; line-height: 1; letter-spacing: -.05em; }
.big-price span { color: var(--coral-dark); font-weight: 750; }
.price-card .fine { margin: 18px 0 24px; color: var(--muted); font-size: .85rem; font-weight: 500; }
.price-note { display: flex; gap: 13px; padding: 17px; background: var(--mint); border-radius: 14px; }
.price-note > span { display: grid; place-items: center; flex: 0 0 25px; height: 25px; border-radius: 50%; background: var(--ink); color: white; }
.price-note p { margin: 0; color: var(--text); font-size: .88rem; line-height: 1.5; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(2px); }
.hero-orb-one { width: 360px; height: 360px; top: -100px; right: 8%; background: rgba(186, 216, 203, .46); }
.hero-orb-two { width: 170px; height: 170px; bottom: 90px; right: 36%; background: rgba(233, 134, 106, .12); }
.trust-row { position: relative; z-index: 3; display: flex; justify-content: space-between; gap: 18px; margin-top: 92px; padding: 22px 0; border-top: 1px solid rgba(23, 63, 58, .15); color: var(--ink); font-size: .8rem; font-weight: 750; }
.trust-row span::before { content: "✓"; margin-right: 8px; color: var(--coral-dark); }

.section-heading { max-width: 780px; margin-bottom: 58px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading h2, .split-intro h2, .why-copy h2, .feature-banner h2, .defense-grid h2, .contact-copy h2 { font-size: clamp(2.6rem, 5vw, 4.6rem); }
.section-heading > p:last-child { max-width: 600px; margin: 20px auto 0; color: var(--muted); font-size: 1.08rem; }
.service-highlight { display: grid; grid-template-columns: .72fr 1.6fr; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: var(--shadow); }
.service-price { display: flex; flex-direction: column; justify-content: center; padding: 52px 45px; color: white; background: var(--ink); }
.service-price p { margin: 0 0 20px; color: var(--mint-2); font-size: .8rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.service-price strong { font-family: Georgia, serif; font-size: clamp(4rem, 7vw, 6.6rem); font-weight: 500; line-height: .95; letter-spacing: -.06em; }
.service-price > span { margin-top: 8px; color: var(--mint-2); font-weight: 700; }
.service-price small { margin-top: 50px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.7); }
.service-content { padding: 52px; }
.pill { display: inline-flex; padding: 7px 12px; color: var(--coral-dark); background: #fff0eb; border-radius: 999px; font-size: .75rem; font-weight: 850; letter-spacing: .05em; text-transform: uppercase; }
.service-content h3 { margin: 18px 0 8px; color: var(--ink); font-family: Georgia, serif; font-size: 2rem; font-weight: 500; }
.service-content > p { color: var(--muted); }
.check-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 9px 26px; margin: 24px 0; padding: 0; list-style: none; }
.check-grid li { position: relative; padding-left: 25px; color: var(--ink); font-size: .92rem; }
.check-grid li::before { content: "✓"; position: absolute; left: 0; color: var(--coral-dark); font-weight: 900; }
.plain-note { padding: 19px 22px; background: var(--cream); border-left: 3px solid var(--coral); border-radius: 0 12px 12px 0; font-size: .9rem; }
.service-content .muted { margin-bottom: 0; font-size: .82rem; }
.ethics-note { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 25px; padding: 17px; background: var(--mint); border-radius: 14px; text-align: center; }
.ethics-note > span { display: grid; place-items: center; flex: 0 0 25px; height: 25px; background: var(--ink); color: white; border-radius: 50%; font-family: Georgia, serif; font-style: italic; }
.ethics-note p { margin: 0; }
.price-examples { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 50px; }
.price-examples > div { display: grid; grid-template-columns: 1fr auto; gap: 8px 20px; padding: 26px 30px; border: 1px solid var(--line); border-radius: 16px; }
.price-examples span { grid-column: 1 / -1; color: var(--muted); font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.price-examples strong { color: var(--ink); }
.price-examples b { color: var(--coral-dark); font-size: 1.15rem; }
.price-examples > p { grid-column: 1 / -1; margin: 5px 0 0; text-align: center; color: var(--ink); font-weight: 700; }

.split-intro { display: grid; grid-template-columns: 1.2fr .8fr; gap: 80px; align-items: end; margin-bottom: 50px; }
.split-intro > p { margin: 0 0 8px; color: var(--muted); font-size: 1.05rem; }
.scenario-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.scenario-card { position: relative; padding: 38px; background: white; border: 1px solid rgba(23,63,58,.08); border-radius: var(--radius); transition: transform .25s, box-shadow .25s; }
.scenario-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.scenario-card > span { color: var(--coral); font-family: Georgia, serif; font-size: 2rem; }
.scenario-card h3 { max-width: 440px; margin: 35px 0 12px; color: var(--ink); font-family: Georgia, serif; font-size: 1.65rem; font-weight: 500; }
.scenario-card p { margin: 0; color: var(--muted); }
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.pricing-card { position: relative; display: flex; flex-direction: column; min-height: 280px; padding: 27px; border: 1px solid var(--line); border-radius: 18px; background: white; transition: border .2s, transform .2s, box-shadow .2s; }
.pricing-card:hover { border-color: var(--mint-2); transform: translateY(-4px); box-shadow: 0 18px 50px rgba(23,63,58,.08); }
.pricing-card.featured { border: 2px solid var(--ink); }
.card-label { position: absolute; top: 17px; right: 17px; padding: 5px 8px; background: var(--mint); color: var(--ink); border-radius: 99px; font-size: .64rem; font-weight: 800; text-transform: uppercase; }
.service-icon { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; background: var(--mint); color: var(--ink); font-family: Georgia, serif; font-style: italic; }
.pricing-card h3 { margin: 28px 0 8px; color: var(--ink); font-family: Georgia, serif; font-size: 1.3rem; font-weight: 500; line-height: 1.2; }
.pricing-card p { margin: 0 0 20px; color: var(--muted); font-size: .85rem; line-height: 1.55; }
.pricing-card strong { margin-top: auto; color: var(--coral-dark); font-size: 1.08rem; }
.pricing-card.compact { min-height: 150px; justify-content: space-between; background: var(--cream); }
.pricing-card.compact h3 { margin-top: 0; }
.express-note { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 25px; padding: 22px 28px; border-radius: 14px; background: var(--ink); color: white; }
.express-note > div { display: flex; align-items: center; gap: 15px; }
.express-note div > span { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: var(--coral); font-size: 1.3rem; }
.express-note p { margin: 0; font-size: .88rem; }
.express-note div p { color: rgba(255,255,255,.7); }
.express-note div strong { color: white; }

.dark-section { position: relative; overflow: hidden; background: var(--ink); color: white; }
.dark-section::before { content: ""; position: absolute; width: 500px; height: 500px; right: -200px; top: -250px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; box-shadow: 0 0 0 80px rgba(255,255,255,.018), 0 0 0 160px rgba(255,255,255,.012); }
.section-heading.light h2 { color: white; }
.section-heading.light > p:last-child { color: rgba(255,255,255,.62); }
.section-heading.light .eyebrow { color: var(--mint-2); }
.steps { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin: 0; padding: 0; list-style: none; }
.steps::before { content: ""; position: absolute; top: 27px; left: 12%; right: 12%; height: 1px; background: rgba(255,255,255,.18); }
.steps li { position: relative; padding: 0 20px; text-align: center; }
.steps li > span { position: relative; z-index: 1; display: grid; place-items: center; width: 55px; height: 55px; margin: 0 auto 26px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; background: var(--ink); color: var(--mint-2); font-family: Georgia, serif; font-size: 1.25rem; }
.steps h3 { margin: 0 0 10px; font-family: Georgia, serif; font-size: 1.35rem; font-weight: 500; }
.steps p { margin: 0; color: rgba(255,255,255,.58); font-size: .88rem; }
.why-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(60px, 10vw, 130px); align-items: center; }
.why-copy > p:not(.eyebrow) { color: var(--muted); }
.why-copy .text-link { margin-top: 20px; }
.benefit-list { margin: 0; padding: 0; list-style: none; }
.benefit-list li { display: grid; grid-template-columns: 50px 1fr; gap: 20px; padding: 25px 0; border-bottom: 1px solid var(--line); }
.benefit-list li > span { color: var(--coral); font-family: Georgia, serif; font-size: 1.2rem; }
.benefit-list h3 { margin: 0 0 5px; color: var(--ink); font-family: Georgia, serif; font-size: 1.35rem; font-weight: 500; }
.benefit-list p { margin: 0; color: var(--muted); font-size: .9rem; }
.feature-banner { display: grid; grid-template-columns: 1.3fr .7fr; gap: 70px; align-items: center; padding: 65px; color: white; background: var(--ink); border-radius: 30px; }
.feature-banner h2 { color: white; }
.feature-banner .lead { color: var(--mint-2); font-size: 1.3rem; }
.feature-banner > div > p:not(.eyebrow):not(.lead) { max-width: 650px; color: rgba(255,255,255,.66); }
.feature-banner .button { margin-top: 15px; }
.round-price { display: grid; place-items: center; width: min(100%, 280px); aspect-ratio: 1; margin-inline: auto; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; background: rgba(255,255,255,.05); text-align: center; }
.round-price span { margin-bottom: -50px; color: var(--mint-2); font-size: .8rem; font-weight: 750; text-transform: uppercase; letter-spacing: .1em; }
.round-price strong { font-family: Georgia, serif; font-size: 2.3rem; font-weight: 500; }
.defense-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; align-items: center; }
.defense-grid > div > p:not(.eyebrow) { color: var(--muted); }
.defense-visual { position: relative; min-height: 450px; background: var(--mint); border-radius: 45% 45% 18% 18%; }
.paper { position: absolute; display: block; width: 55%; height: 62%; top: 17%; left: 23%; background: white; border-radius: 8px; box-shadow: var(--shadow); }
.paper::before { content: ""; position: absolute; top: 18%; left: 16%; width: 68%; height: 8px; background: var(--ink); box-shadow: 0 30px 0 var(--line), 0 60px 0 var(--line), 0 90px 0 var(--line); }
.paper-one { transform: rotate(-9deg) translate(-18px, 4px); opacity: .55; }
.paper-two { transform: rotate(6deg); }
.mini-chart { position: absolute; display: flex; align-items: end; gap: 8px; width: 130px; height: 100px; bottom: 11%; right: 8%; padding: 18px; background: var(--coral); border-radius: 13px; box-shadow: var(--shadow); transform: rotate(-4deg); }
.mini-chart i { flex: 1; background: white; border-radius: 3px 3px 0 0; }
.mini-chart i:nth-child(1) { height: 35%; }.mini-chart i:nth-child(2) { height: 58%; }.mini-chart i:nth-child(3) { height: 45%; }.mini-chart i:nth-child(4) { height: 85%; }
.simple-checks { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 25px; padding: 0; margin: 25px 0; list-style: none; }
.simple-checks li::before { content: "✓"; margin-right: 8px; color: var(--coral-dark); font-weight: 900; }
.inline-prices { display: flex; gap: 38px; padding-top: 24px; border-top: 1px solid var(--line); }
.inline-prices p { margin: 0; }
.inline-prices span, .inline-prices strong { display: block; }
.inline-prices span { color: var(--muted); font-size: .78rem; }
.inline-prices strong { color: var(--ink); font-size: 1.2rem; }

.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.article-card { display: flex; flex-direction: column; min-height: 270px; padding: 30px; background: white; border-radius: 18px; border: 1px solid rgba(23,63,58,.08); transition: transform .2s, box-shadow .2s; }
.article-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.article-card > span { color: var(--coral-dark); font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.article-card h3 { margin: 24px 0 10px; color: var(--ink); font-family: Georgia, serif; font-size: 1.38rem; font-weight: 500; line-height: 1.3; }
.article-card p { margin: 0; color: var(--muted); font-size: .87rem; }
.article-card a { margin-top: auto; color: var(--ink); font-size: .83rem; font-weight: 800; text-decoration: none; }
.faq-wrap { max-width: 900px; }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 24px 52px 24px 0; color: var(--ink); font-family: Georgia, serif; font-size: 1.22rem; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 5px; top: 20px; display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: var(--cream); font-family: sans-serif; font-size: 1.25rem; transition: transform .2s, background .2s; }
.faq-list details[open] summary::after { content: "−"; background: var(--mint); transform: rotate(180deg); }
.faq-list details p { margin: -5px 60px 24px 0; color: var(--muted); }

.contact-section { background: linear-gradient(135deg, #e5efe8, #f5f3ea); }
.contact-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(50px, 8vw, 100px); align-items: start; }
.contact-copy { position: sticky; top: 120px; }
.contact-copy > p:not(.eyebrow) { color: var(--muted); }
.contact-promise { display: flex; gap: 14px; margin-top: 25px; }
.contact-promise > span { display: grid; place-items: center; flex: 0 0 34px; height: 34px; border: 1px solid var(--sage); border-radius: 50%; color: var(--ink); font-family: Georgia, serif; }
.contact-promise p { margin: 0; color: var(--muted); font-size: .87rem; }
.contact-promise strong { color: var(--ink); }
.contact-form { padding: 40px; background: white; border-radius: var(--radius); box-shadow: var(--shadow); }
.contact-form label { display: block; margin-bottom: 18px; color: var(--ink); font-size: .8rem; font-weight: 750; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; margin-top: 7px; padding: 13px 14px; color: var(--text); background: #fbfcfa; border: 1px solid #cedbd5; border-radius: 9px; outline: 0; transition: border .2s, box-shadow .2s; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--ink); box-shadow: 0 0 0 3px rgba(127,169,155,.2); }
.contact-form [aria-invalid="true"] { border-color: #bd3e32; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.checkbox { display: grid !important; grid-template-columns: 20px 1fr; gap: 11px; align-items: start; color: var(--muted) !important; font-weight: 500 !important; line-height: 1.5; }
.checkbox input { width: 18px; height: 18px; margin: 2px 0 0; accent-color: var(--ink); }
.form-submit { width: 100%; }
.form-submit:disabled { opacity: .6; cursor: wait; }
.form-status { min-height: 25px; margin: 14px 0 0; text-align: center; font-size: .86rem; font-weight: 700; }
.form-status.success { color: #27734d; }.form-status.error { color: #a83b31; }

.site-footer { padding: 70px 0 24px; background: #102f2b; color: rgba(255,255,255,.65); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 50px; }
.footer-brand { color: white; }
.footer-grid > div:first-child p { max-width: 300px; }
.footer-grid h2 { margin: 5px 0 16px; color: white; font-family: Georgia, serif; font-size: 1rem; font-weight: 500; }
.footer-grid a, .footer-link { display: block; margin: 8px 0; color: rgba(255,255,255,.65); font-size: .83rem; text-decoration: none; }
.footer-grid a:hover, .footer-link:hover { color: white; }
.footer-link { padding: 0; background: none; border: 0; cursor: pointer; }
.socials { display: flex; gap: 8px; margin-top: 20px; }
.socials a { display: grid; place-items: center; width: 34px; height: 34px; margin: 0; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; color: white; font-size: .72rem; font-weight: 800; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 55px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); font-size: .72rem; }
.footer-bottom p { margin: 0; }
.legal-dialog { width: min(640px, calc(100% - 30px)); padding: 0; border: 0; border-radius: 20px; box-shadow: var(--shadow); }
.legal-dialog::backdrop { background: rgba(8,35,31,.65); backdrop-filter: blur(3px); }
.legal-dialog > div { position: relative; padding: 40px; }
.legal-dialog h2 { margin-top: 0; color: var(--ink); font-family: Georgia, serif; font-weight: 500; }
.legal-dialog p { color: var(--muted); }
.dialog-close { position: absolute; top: 15px; right: 15px; width: 36px; height: 36px; border: 0; border-radius: 50%; background: var(--cream); cursor: pointer; font-size: 1.4rem; }
.mobile-cta { display: none; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1060px) {
  .site-nav { gap: 16px; }.site-nav > a { font-size: .78rem; }
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-grid { grid-template-columns: 1fr .68fr; gap: 45px; }
  .footer-grid { grid-template-columns: 1.4fr repeat(3, 1fr); gap: 25px; }
}

@media (max-width: 860px) {
  .section { padding: 82px 0; }
  .menu-toggle { display: block; z-index: 2; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(3) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(4) { transform: translateY(-7px) rotate(-45deg); }
  .site-nav { position: fixed; inset: 0; display: flex; flex-direction: column; align-items: stretch; justify-content: center; gap: 0; padding: 85px 30px 100px; background: var(--paper); transform: translateX(100%); transition: transform .28s ease; }
  .site-nav.open { transform: translateX(0); }
  .site-nav > a { padding: 12px 0; border-bottom: 1px solid var(--line); font-family: Georgia, serif; font-size: 1.35rem; font-weight: 500; }
  .site-nav > a::after { display: none; }
  .site-nav .button { margin-top: 25px; border: 0; font-family: inherit; font-size: .9rem; }
  .hero { min-height: auto; padding-top: 130px; }
  .hero-grid, .service-highlight, .why-grid, .defense-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-copy h1 { font-size: clamp(4rem, 15vw, 6.5rem); }
  .price-card { width: min(100%, 560px); transform: none; }
  .trust-row { flex-wrap: wrap; justify-content: flex-start; }
  .service-price { min-height: 320px; }.service-price small { margin-top: 30px; }
  .split-intro { grid-template-columns: 1fr; gap: 18px; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 50px 20px; }
  .steps::before { display: none; }
  .why-grid { gap: 50px; }
  .feature-banner { grid-template-columns: 1fr; padding: 45px; }
  .defense-grid { gap: 60px; }.defense-visual { max-width: 550px; width: 100%; }
  .article-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-copy { position: static; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 580px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 68px 0; }
  .nav-wrap { height: 68px; }
  .hero { padding-top: 110px; padding-bottom: 70px; }
  .hero-copy h1 { font-size: clamp(3.5rem, 18vw, 5rem); }
  .hero-lead { font-size: 1.15rem; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 18px; }
  .hero-actions .button { width: 100%; }.hero-actions .text-link { align-self: center; }
  .price-card { padding: 24px; border-radius: 20px; }.big-price strong { font-size: 3.5rem; }
  .trust-row { margin-top: 55px; gap: 11px 18px; }
  .section-heading h2, .split-intro h2, .why-copy h2, .feature-banner h2, .defense-grid h2, .contact-copy h2 { font-size: clamp(2.4rem, 13vw, 3.3rem); }
  .service-price, .service-content { padding: 34px 25px; }
  .service-price { min-height: 280px; }.service-price strong { font-size: 4rem; }
  .check-grid, .price-examples, .scenario-grid, .pricing-grid, .article-grid, .form-row { grid-template-columns: 1fr; }
  .price-examples > p { grid-column: 1; }
  .scenario-card { padding: 28px; }
  .pricing-card { min-height: 240px; }
  .express-note { align-items: flex-start; flex-direction: column; gap: 16px; }
  .steps { grid-template-columns: 1fr; gap: 35px; }
  .steps li { display: grid; grid-template-columns: 50px 1fr; gap: 0 18px; text-align: left; }
  .steps li > span { grid-row: 1 / 3; width: 48px; height: 48px; margin: 0; }
  .steps h3 { margin-top: 3px; }
  .feature-banner { padding: 35px 24px; border-radius: 22px; }
  .round-price { width: 230px; }
  .defense-visual { min-height: 340px; }
  .simple-checks { grid-template-columns: 1fr; }
  .inline-prices { gap: 20px; flex-direction: column; }
  .faq-list summary { font-size: 1.08rem; }.faq-list details p { margin-right: 15px; }
  .contact-form { padding: 26px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; padding-bottom: 66px; }
  .mobile-cta { position: fixed; z-index: 90; left: 12px; right: 12px; bottom: 10px; display: flex; align-items: center; justify-content: center; gap: 15px; padding: 13px 18px; background: var(--coral); color: white; border-radius: 10px; box-shadow: 0 10px 35px rgba(16,47,43,.25); font-size: .84rem; font-weight: 800; text-decoration: none; transition: opacity .2s, transform .2s; }
  .mobile-cta.hidden { opacity: 0; pointer-events: none; transform: translateY(20px); }
}

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