:root {
  --ink: #14221c;
  --muted: #65746c;
  --forest: #123f31;
  --forest-2: #0b3025;
  --lime: #d8fb72;
  --lime-dark: #93c72b;
  --paper: #f5f6f2;
  --white: #fff;
  --line: #dce3dd;
  --soft: #edf2ed;
  --sand: #f4ead9;
  --shadow: 0 22px 60px rgba(14, 45, 34, .11);
  --radius: 22px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--paper); }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); font-size: 16px; line-height: 1.55; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin-top: 0; }
section { scroll-margin-top: 90px; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 112px 0; }
.sr-only { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 1000; top: 12px; left: 12px; padding: 10px 14px; border-radius: 8px; background: var(--lime); transform: translateY(-150%); transition: transform .2s; }
.skip-link:focus { transform: translateY(0); }
.scroll-progress { position: fixed; z-index: 110; inset: 0 0 auto; height: 3px; pointer-events: none; background: var(--lime); box-shadow: 0 0 18px rgba(216,251,114,.45); transform: scaleX(var(--scroll-progress, 0)); transform-origin: left center; }

.site-header { position: fixed; z-index: 100; inset: 0 0 auto; height: 76px; color: white; transition: background .25s ease, box-shadow .25s ease, height .25s ease; }
.site-header.scrolled { height: 68px; background: rgba(12, 48, 37, .94); box-shadow: 0 10px 35px rgba(5, 29, 21, .18); backdrop-filter: blur(16px); }
.nav-wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.brand img { width: 42px; height: 42px; }
.brand-copy strong, .brand-copy small { display: block; }
.brand-copy strong { font-size: 17px; line-height: 1; letter-spacing: .13em; }
.brand-copy small { margin-top: 5px; color: #9eb5aa; font-size: 9px; line-height: 1; font-weight: 700; letter-spacing: .15em; }
.nav { display: flex; align-items: center; gap: 29px; color: #d3e0da; font-size: 13px; font-weight: 650; }
.nav > a:not(.button) { position: relative; }
.nav > a:not(.button)::after { content: ""; position: absolute; right: 0; bottom: -8px; left: 0; height: 1px; background: var(--lime); transform: scaleX(0); transform-origin: right; transition: transform .2s ease; }
.nav > a:not(.button):hover::after { transform: scaleX(1); transform-origin: left; }
.menu-toggle { display: none; width: 42px; height: 42px; padding: 10px; border: 1px solid rgba(255,255,255,.18); border-radius: 12px; background: rgba(255,255,255,.06); }
.menu-toggle span:not(.sr-only) { display: block; width: 100%; height: 2px; margin: 4px 0; background: white; transition: .2s; }

.button { min-height: 50px; padding: 0 22px; border: 0; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; gap: 13px; color: var(--forest); background: var(--lime); box-shadow: 0 10px 25px rgba(125, 166, 33, .17); font-weight: 800; cursor: pointer; transition: transform .2s ease, background .2s ease, box-shadow .2s ease; }
.button:hover { transform: translateY(-2px); background: #e1ff85; box-shadow: 0 14px 30px rgba(125, 166, 33, .24); }
.button-small { min-height: 40px; padding-inline: 17px; font-size: 12px; }
.button-light { color: var(--forest); background: white; box-shadow: 0 10px 30px rgba(5, 34, 24, .14); }
.button-light:hover { background: #f7fbf7; }
.text-link { display: inline-flex; align-items: center; gap: 11px; color: white; border-bottom: 1px solid rgba(255,255,255,.35); font-size: 13px; font-weight: 700; }
.text-link:hover { border-color: var(--lime); color: var(--lime); }

.eyebrow { margin-bottom: 19px; display: flex; align-items: center; gap: 10px; color: #b6c8be; font-size: 10px; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow > span { width: 22px; height: 1px; background: var(--lime); }
.eyebrow.dark { color: #65766e; }

.hero { position: relative; overflow: hidden; padding: 152px 0 0; color: white; background: var(--forest); }
.hero::before { content: ""; position: absolute; top: -260px; right: -200px; width: 720px; height: 720px; border: 1px solid rgba(216,251,114,.14); border-radius: 50%; box-shadow: inset 0 0 0 115px rgba(255,255,255,.014), inset 0 0 0 230px rgba(255,255,255,.012); }
.hero::after { content: ""; position: absolute; bottom: 72px; left: 5%; width: 2px; height: 130px; background: linear-gradient(transparent, rgba(216,251,114,.55), transparent); }
.hero-grid { position: relative; z-index: 1; min-height: 620px; display: grid; grid-template-columns: 1.03fr .97fr; gap: 72px; align-items: center; }
.hero-copy { padding-bottom: 74px; }
.hero h1 { max-width: 720px; margin-bottom: 27px; font-family: var(--serif); font-size: clamp(48px, 5.2vw, 76px); font-weight: 400; line-height: .96; letter-spacing: -.048em; }
.hero h1 em { color: var(--lime); font-style: normal; }
.hero-lead { max-width: 650px; margin-bottom: 34px; color: #c0d0c8; font-size: 17px; line-height: 1.75; }
.hero-actions { display: flex; align-items: center; gap: 29px; }
.trust-list { margin: 38px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 23px; list-style: none; color: #adc0b6; font-size: 11px; font-weight: 700; }
.trust-list li { display: flex; align-items: center; gap: 8px; }
.trust-list li::before { content: "✓"; width: 18px; height: 18px; border: 1px solid rgba(216,251,114,.4); border-radius: 50%; display: grid; place-items: center; color: var(--lime); font-size: 9px; }

.hero-visual { position: relative; min-height: 500px; display: grid; place-items: center; }
.ops-card { position: relative; width: min(100%, 480px); padding: 26px; border: 1px solid rgba(255,255,255,.16); border-radius: 26px; background: rgba(255,255,255,.075); box-shadow: 0 38px 80px rgba(5, 30, 22, .35); backdrop-filter: blur(18px); transform: translate3d(0, var(--hero-shift, 0), 0) rotate(1.2deg); will-change: transform; }
.ops-card::before { content: ""; position: absolute; z-index: -1; inset: 18px -18px -18px 18px; border: 1px solid rgba(216,251,114,.12); border-radius: inherit; }
.ops-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 25px; }
.micro-label { display: block; margin-bottom: 5px; color: #90a99d; font-size: 8px; font-weight: 850; letter-spacing: .14em; }
.ops-top strong { font-family: var(--serif); font-size: 27px; font-weight: 400; }
.live-dot { padding: 7px 9px; border-radius: 99px; color: var(--lime); background: rgba(216,251,114,.1); font-size: 8px; font-weight: 900; letter-spacing: .08em; }
.live-dot::before { content: ""; width: 6px; height: 6px; margin-right: 6px; border-radius: 50%; display: inline-block; background: var(--lime); box-shadow: 0 0 0 4px rgba(216,251,114,.09); }
.process-line { padding: 17px; border-radius: 15px; background: rgba(5,30,22,.25); }
.process-step { position: relative; display: flex; gap: 12px; padding: 10px 0; color: #899f94; }
.process-step:not(:last-child)::after { content: ""; position: absolute; top: 35px; bottom: -1px; left: 13px; width: 1px; background: rgba(255,255,255,.1); }
.process-step > span { z-index: 1; width: 27px; height: 27px; flex: 0 0 auto; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; display: grid; place-items: center; font-size: 9px; }
.process-step b, .process-step small { display: block; }
.process-step b { color: #c5d3cc; font-size: 11px; }
.process-step small { margin-top: 1px; font-size: 9px; }
.process-step.done > span { color: var(--forest); border-color: var(--lime); background: var(--lime); }
.process-step.active > span { color: var(--lime); border-color: var(--lime); box-shadow: 0 0 0 5px rgba(216,251,114,.07); }
.process-step.active b { color: white; }
.quote-preview { margin-top: 16px; overflow: hidden; border-radius: 15px; color: var(--ink); background: white; box-shadow: 0 16px 35px rgba(5,30,22,.25); }
.quote-head { padding: 11px 14px; display: flex; justify-content: space-between; color: #68766f; background: #f0f4f0; font-size: 7px; font-weight: 850; letter-spacing: .08em; }
.quote-head span:last-child { color: #4b762f; }
.quote-body { padding: 17px; display: grid; grid-template-columns: auto 1fr auto; gap: 13px; align-items: center; }
.quote-logo { width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; color: var(--forest); background: var(--lime); font-size: 9px; font-weight: 900; }
.quote-lines { display: grid; gap: 5px; }
.quote-lines i { width: 100%; height: 5px; border-radius: 99px; display: block; background: #e5e9e5; }
.quote-lines i:nth-child(2) { width: 78%; }.quote-lines i:nth-child(3) { width: 48%; }
.quote-body > strong { font-family: var(--serif); font-size: 19px; }
.approval-row { padding: 11px 14px; border-top: 1px solid #edf0ed; display: grid; grid-template-columns: 1fr 1fr auto; align-items: center; gap: 8px; color: #78867e; font-size: 8px; }
.approval-row b { color: var(--forest); }.approval-check { width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; color: var(--forest); background: var(--lime); font-weight: 900; }
.signal { position: absolute; z-index: 3; min-width: 122px; padding: 13px 15px; border: 1px solid rgba(255,255,255,.35); border-radius: 14px; color: var(--forest); background: rgba(255,255,255,.94); box-shadow: var(--shadow); font-family: var(--serif); font-size: 21px; }
.signal span { display: block; margin-top: 1px; color: #718078; font-family: var(--sans); font-size: 8px; font-weight: 750; text-transform: uppercase; }
.signal-one { top: 38px; right: -12px; transform: translate3d(0, var(--signal-one-shift, 0), 0) rotate(3deg); }.signal-two { bottom: 18px; left: -18px; transform: translate3d(0, var(--signal-two-shift, 0), 0) rotate(-4deg); }
.hero-foot { position: relative; z-index: 1; padding: 25px 0 30px; border-top: 1px solid rgba(255,255,255,.1); }
.hero-foot > p { margin-bottom: 21px; color: #b8c9c0; font-size: 12px; text-align: center; }
.sector-strip { display: flex; justify-content: space-between; gap: 20px; color: #8aa096; font-size: 9px; font-weight: 850; letter-spacing: .12em; }

.product-brief { padding: 82px 0; background: #e9eee8; }
.product-brief-shell { padding: 48px 50px; border: 1px solid #d5ded6; border-radius: 28px; background: white; box-shadow: 0 18px 50px rgba(17,50,38,.065); }
.product-brief-copy { display: grid; grid-template-columns: .34fr 1.66fr; gap: 65px; align-items: start; }
.product-brief-copy h2 { max-width: 930px; margin: 0; font-family: var(--serif); font-size: clamp(35px, 3.7vw, 52px); font-weight: 400; line-height: 1.03; letter-spacing: -.04em; }
.product-flow { position: relative; margin: 42px 0 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); list-style: none; }
.product-flow::before { content: ""; position: absolute; top: 16px; right: 11%; left: 11%; height: 1px; background: linear-gradient(90deg, #bdd38a, var(--lime-dark)); transform: scaleX(0); transform-origin: left; transition: transform 1.2s .22s cubic-bezier(.2,.75,.2,1); }
.is-visible .product-flow::before { transform: scaleX(1); }
.product-flow li { position: relative; display: grid; justify-items: center; gap: 12px; color: var(--forest); font-size: 12px; }
.product-flow li span { position: relative; z-index: 1; width: 33px; height: 33px; border: 1px solid #b9ccaa; border-radius: 50%; display: grid; place-items: center; background: white; font-size: 8px; font-weight: 900; }
.product-flow li:last-child span { color: var(--forest); border-color: var(--lime); background: var(--lime); box-shadow: 0 0 0 7px rgba(216,251,114,.18); }

.problem-section { background: var(--sand); }
.problem-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: 90px; align-items: start; }
.section-intro h2, .section-heading h2, .calculator-copy h2, .control-copy h2, .contact-copy h2 { margin-bottom: 0; font-family: var(--serif); font-size: clamp(38px, 4.2vw, 58px); font-weight: 400; line-height: 1.02; letter-spacing: -.04em; }
.problem-list { display: grid; }
.problem-list article { padding: 27px 0; border-top: 1px solid rgba(20,34,28,.16); display: grid; grid-template-columns: 48px 1fr; gap: 24px; }
.problem-list article:last-child { border-bottom: 1px solid rgba(20,34,28,.16); }
.problem-list article > span { color: #829088; font-size: 10px; font-weight: 850; }
.problem-list h3 { margin-bottom: 8px; font-size: 17px; }
.problem-list p { margin: 0; color: #68766e; font-size: 14px; line-height: 1.7; }

.section-heading { margin-bottom: 48px; display: grid; grid-template-columns: 1.25fr .75fr; gap: 70px; align-items: end; }
.section-heading > p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.75; }
.solution-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: 0 14px 45px rgba(17,50,38,.06); }
.solution-card { position: relative; min-height: 420px; padding: 28px 25px; border-right: 1px solid var(--line); background: white; }
.solution-card:last-child { border: 0; }
.solution-card-featured { background: #eff6e5; }
.solution-number { color: #89968f; font-size: 9px; font-weight: 900; letter-spacing: .1em; }
.solution-icon { width: 46px; height: 46px; margin: 30px 0 55px; border-radius: 14px; display: grid; place-items: center; color: var(--forest); background: var(--lime); font-family: var(--serif); font-size: 22px; }
.solution-card:not(.solution-card-featured) .solution-icon { background: var(--soft); }
.solution-card h3 { margin-bottom: 12px; font-family: var(--serif); font-size: 25px; font-weight: 400; }
.solution-card > p { min-height: 89px; margin-bottom: 23px; color: var(--muted); font-size: 13px; line-height: 1.7; }
.solution-card ul, .price-card ul, .check-list { margin: 0; padding: 0; list-style: none; }
.solution-card li { padding: 8px 0; border-top: 1px solid #e8ece8; color: #56675e; font-size: 11px; font-weight: 700; }
.solution-card li::before { content: "·"; margin-right: 7px; color: var(--lime-dark); font-size: 18px; vertical-align: -1px; }
.solution-card, .solution-icon, .price-card { transition-property: opacity, transform, box-shadow, background; }
.solution-grid.is-visible > .solution-card:hover, .pricing-grid.is-visible > .price-card:hover { z-index: 2; transform: translateY(-7px); box-shadow: 0 22px 55px rgba(17,50,38,.14); }
.solution-card:hover .solution-icon { transform: rotate(-7deg) scale(1.06); }

.method-section { position: relative; overflow: hidden; color: white; background: var(--forest); }
.method-section::after { content: "ONVALO"; position: absolute; right: -20px; bottom: -105px; color: rgba(255,255,255,.025); font-family: var(--serif); font-size: 210px; line-height: 1; }
.method-layout { position: relative; z-index: 1; display: grid; grid-template-columns: .84fr 1.16fr; gap: 100px; align-items: start; }
.method-copy { position: sticky; top: 110px; }
.method-copy h2 { margin-bottom: 24px; font-family: var(--serif); font-size: clamp(42px, 4.4vw, 61px); font-weight: 400; line-height: 1; letter-spacing: -.04em; }
.method-copy > p { max-width: 480px; color: #b5c8be; font-size: 14px; line-height: 1.8; }
.method-promise { margin-top: 38px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.13); display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: center; }
.method-promise strong { color: var(--lime); font-family: var(--serif); font-size: 40px; font-weight: 400; white-space: nowrap; }
.method-promise span { max-width: 230px; color: #adc1b6; font-size: 10px; line-height: 1.55; }
.method-steps { margin: 0; padding: 0; list-style: none; }
.method-steps li { padding: 28px 0; border-top: 1px solid rgba(255,255,255,.13); display: grid; grid-template-columns: 55px 1fr; gap: 18px; }
.method-steps li:last-child { border-bottom: 1px solid rgba(255,255,255,.13); }
.method-steps li > span { color: var(--lime); font-size: 10px; font-weight: 850; letter-spacing: .1em; }
.method-steps strong { display: block; margin-bottom: 7px; font-size: 16px; letter-spacing: .1em; }
.method-steps p { max-width: 480px; margin: 0; color: #aabeb3; font-size: 13px; line-height: 1.65; }

.calculator-section { background: #e9eee8; }
.calculator-shell { overflow: hidden; border: 1px solid #d5ded6; border-radius: 28px; display: grid; grid-template-columns: 1.1fr .9fr; background: white; box-shadow: var(--shadow); }
.calculator-copy { padding: 58px; }
.calculator-copy h2 { max-width: 620px; font-size: clamp(37px, 3.8vw, 52px); }
.calculator-copy > p { max-width: 580px; margin: 19px 0 32px; color: var(--muted); font-size: 13px; }
.roi-form { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.roi-form label { position: relative; color: #68766e; font-size: 9px; font-weight: 850; letter-spacing: .05em; text-transform: uppercase; }
.roi-form input, .contact-form input, .contact-form select, .contact-form textarea { width: 100%; margin-top: 7px; border: 1px solid var(--line); border-radius: 11px; color: var(--ink); background: #f8faf7; outline: none; transition: border .2s, box-shadow .2s; }
.roi-form input { height: 48px; padding: 0 41px 0 13px; font-size: 15px; font-weight: 700; }
.roi-form label > span { position: absolute; right: 14px; bottom: 13px; color: #84928a; font-size: 11px; }
.roi-form input:focus, .contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: #779481; box-shadow: 0 0 0 4px rgba(88,128,105,.11); }
.calculator-result { padding: 58px 52px; color: white; background: var(--forest); display: flex; flex-direction: column; justify-content: center; }
.result-kicker { color: #a8beb2; font-size: 9px; font-weight: 900; letter-spacing: .12em; }
.calculator-result > strong { margin: 15px 0 8px; color: var(--lime); font-family: var(--serif); font-size: clamp(62px, 7vw, 95px); font-weight: 400; line-height: .88; }
.calculator-result > strong small { margin-left: 6px; color: #aec1b7; font-family: var(--sans); font-size: 12px; font-weight: 600; }
.calculator-result > p { color: #b3c6bc; font-size: 12px; }.calculator-result > p b { color: white; }
.result-grid { margin: 23px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.result-grid div { padding: 14px; border: 1px solid rgba(255,255,255,.12); border-radius: 12px; background: rgba(255,255,255,.05); }
.result-grid span, .result-grid b { display: block; }
.result-grid span { margin-bottom: 6px; color: #9fb4a9; font-size: 8px; text-transform: uppercase; }
.result-grid b { font-size: 13px; }
.calculator-result .button { width: 100%; }
.result-note { margin-top: 13px; color: #8fa69a; font-size: 8px; text-align: center; }

.services { background: var(--paper); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.price-card { position: relative; padding: 34px 30px; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: 0 10px 30px rgba(17,50,38,.045); }
.price-card.featured { color: white; border-color: var(--forest); background: var(--forest); box-shadow: var(--shadow); transform: translateY(-10px); }
.recommended { position: absolute; top: 0; right: 0; padding: 8px 12px; border-radius: 0 21px 0 12px; color: var(--forest); background: var(--lime); font-size: 8px; font-weight: 900; letter-spacing: .09em; }
.price-name { margin-bottom: 17px; color: #718179; font-size: 9px; font-weight: 900; letter-spacing: .12em; }
.featured .price-name { color: #a9beb3; }
.price-card h3 { min-height: 58px; margin-bottom: 24px; font-family: var(--serif); font-size: 28px; font-weight: 400; line-height: 1.05; }
.price { padding: 20px 0; border-block: 1px solid #e7ece7; display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.featured .price { border-color: rgba(255,255,255,.13); }
.price strong { font-family: var(--serif); font-size: 35px; font-weight: 400; }.price span { color: #74827b; font-size: 10px; }
.featured .price strong { color: var(--lime); }.featured .price span { color: #adbbb4; }
.price-card > p:not(.price-name) { min-height: 68px; margin: 22px 0; color: var(--muted); font-size: 12px; line-height: 1.7; }
.featured > p:not(.price-name) { color: #b2c5bb; }
.price-card li { padding: 9px 0 9px 18px; border-bottom: 1px solid #edf0ed; color: #56665e; font-size: 11px; }
.featured li { color: #c3d1ca; border-color: rgba(255,255,255,.1); }
.price-card li::before { content: "✓"; margin-left: -18px; margin-right: 8px; color: var(--lime-dark); font-weight: 900; }
.featured li::before { color: var(--lime); }
.price-link { margin-top: 27px; display: flex; justify-content: space-between; color: var(--forest); font-size: 12px; font-weight: 850; }
.featured .price-link { color: var(--lime); }
.scale-note { margin: 35px auto 0; color: var(--muted); font-size: 12px; text-align: center; }.scale-note strong { color: var(--ink); }

.control-section { overflow: hidden; color: white; background: var(--forest-2); }
.control-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: 100px; align-items: center; }
.control-visual { min-height: 430px; display: grid; place-items: center; }
.control-orbit { position: relative; width: 330px; height: 330px; border: 1px solid rgba(216,251,114,.16); border-radius: 50%; display: grid; place-items: center; box-shadow: inset 0 0 0 70px rgba(255,255,255,.018); }
.control-orbit::before, .control-orbit::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; }
.control-orbit::before { inset: 48px; }.control-orbit::after { inset: 106px; border-color: rgba(216,251,114,.16); }
.orbit-core { position: relative; z-index: 2; width: 74px; height: 74px; border-radius: 50%; display: grid; place-items: center; color: var(--forest); background: var(--lime); box-shadow: 0 0 0 14px rgba(216,251,114,.07); font-family: var(--serif); font-size: 24px; }
.orbit-item { position: absolute; z-index: 2; padding: 9px 12px; border: 1px solid rgba(255,255,255,.14); border-radius: 99px; color: #d4dfd9; background: #154436; font-size: 9px; font-weight: 800; }
.orbit-a { top: 4px; left: 122px; }.orbit-b { top: 151px; right: -23px; }.orbit-c { bottom: 8px; left: 129px; }.orbit-d { top: 151px; left: -20px; }
.control-copy h2 { margin-bottom: 24px; }
.control-copy > p { max-width: 620px; color: #b5c7be; font-size: 14px; line-height: 1.8; }
.check-list { margin-top: 31px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.check-list li { position: relative; padding: 14px 14px 14px 42px; border: 1px solid rgba(255,255,255,.11); border-radius: 11px; color: #c1d0c9; background: rgba(255,255,255,.035); font-size: 10px; line-height: 1.45; }
.check-list li::before { content: "✓"; position: absolute; top: 13px; left: 15px; width: 18px; height: 18px; border-radius: 50%; display: grid; place-items: center; color: var(--forest); background: var(--lime); font-size: 9px; font-weight: 900; }

.faq { background: var(--paper); }
.faq-grid { display: grid; grid-template-columns: .62fr 1.38fr; gap: 100px; align-items: start; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 24px 50px 24px 0; list-style: none; cursor: pointer; font-family: var(--serif); font-size: 21px; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { position: absolute; top: 21px; right: 5px; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; color: var(--forest); background: var(--soft); font-family: var(--sans); font-size: 17px; transition: transform .2s; }
.faq-list details[open] summary span { transform: rotate(45deg); background: var(--lime); }
.faq-list details p { max-width: 680px; margin: -5px 0 25px; color: var(--muted); font-size: 13px; line-height: 1.75; }

.contact-section { color: white; background: var(--forest); }
.contact-shell { display: grid; grid-template-columns: .84fr 1.16fr; gap: 85px; align-items: center; }
.contact-copy h2 { margin-bottom: 25px; }
.contact-copy > p { color: #b4c7bd; font-size: 14px; line-height: 1.8; }
.contact-points { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 10px; }
.contact-points span { padding: 8px 10px; border: 1px solid rgba(255,255,255,.13); border-radius: 99px; color: #bad0c5; background: rgba(255,255,255,.04); font-size: 9px; font-weight: 800; }
.contact-form { padding: 31px; border: 1px solid rgba(255,255,255,.13); border-radius: 22px; display: grid; grid-template-columns: 1fr 1fr; gap: 13px; background: rgba(255,255,255,.065); box-shadow: 0 30px 70px rgba(4,25,18,.22); }
.field label { color: #b6c9bf; font-size: 9px; font-weight: 850; letter-spacing: .05em; text-transform: uppercase; }
.contact-form input, .contact-form select, .contact-form textarea { padding: 12px 13px; border-color: rgba(255,255,255,.13); color: white; background: rgba(255,255,255,.07); }
.contact-form input, .contact-form select { height: 48px; }
.contact-form textarea { min-height: 105px; resize: vertical; }
.contact-form select option { color: var(--ink); background: white; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #809c8e; }
.full { grid-column: 1 / -1; }
.form-note { margin: 0; color: #8fa89c; font-size: 8px; line-height: 1.55; text-align: center; }

.site-footer { padding: 70px 0 25px; color: #b9c9c1; background: #071e17; }
.footer-grid { padding-bottom: 55px; display: grid; grid-template-columns: 1.4fr repeat(3, .7fr); gap: 55px; }
.brand-footer { color: white; }
.footer-grid > div:first-child > p { max-width: 330px; margin: 22px 0 0; color: #7f998d; font-size: 11px; line-height: 1.7; }
.footer-grid > div:not(:first-child) { display: grid; align-content: start; gap: 11px; }
.footer-grid > div:not(:first-child) strong { margin-bottom: 6px; color: white; font-size: 10px; letter-spacing: .07em; text-transform: uppercase; }
.footer-grid > div:not(:first-child) a, .footer-grid > div:not(:first-child) span { color: #82998e; font-size: 10px; }
.footer-grid a:hover { color: var(--lime); }
.footer-bottom { padding-top: 22px; border-top: 1px solid rgba(255,255,255,.09); display: flex; justify-content: space-between; color: #667e72; font-size: 9px; }

.error-page { min-height: 100vh; display: grid; place-items: center; }
.error-shell { width: min(680px, calc(100% - 40px)); padding: 70px; border: 1px solid var(--line); border-radius: 28px; background: white; box-shadow: var(--shadow); }
.error-shell .brand { margin-bottom: 60px; }.error-shell h1 { margin-bottom: 20px; font-family: var(--serif); font-size: clamp(46px, 7vw, 72px); font-weight: 400; line-height: .95; }.error-shell > p:not(.eyebrow) { max-width: 520px; margin-bottom: 30px; color: var(--muted); }

.legal-page { background: var(--paper); }
.legal-header { padding: 24px 0; color: white; background: var(--forest); }
.legal-header .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.legal-back { color: #c2d2ca; font-size: 12px; font-weight: 750; }
.legal-back:hover { color: var(--lime); }
.legal-main { width: min(860px, calc(100% - 40px)); margin: 0 auto; padding: 90px 0 110px; }
.legal-main h1 { margin-bottom: 23px; font-family: var(--serif); font-size: clamp(48px, 7vw, 76px); font-weight: 400; line-height: .95; letter-spacing: -.045em; }
.legal-updated { margin-bottom: 48px; color: var(--muted); font-size: 11px; }
.legal-block { padding: 31px 0; border-top: 1px solid var(--line); }
.legal-block:last-child { border-bottom: 1px solid var(--line); }
.legal-block h2 { margin-bottom: 16px; font-family: var(--serif); font-size: 28px; font-weight: 400; }
.legal-block h3 { margin: 24px 0 9px; font-size: 13px; }
.legal-block p, .legal-block li { color: var(--muted); font-size: 13px; line-height: 1.8; }
.legal-block ul { margin: 12px 0 0; padding-left: 20px; }
.legal-block a { color: var(--forest); font-weight: 750; text-decoration: underline; text-decoration-color: #a6c55a; text-underline-offset: 3px; }
.legal-data { padding: 20px; border-radius: 14px; display: grid; gap: 8px; background: white; }
.legal-data span { color: var(--muted); font-size: 12px; }.legal-data b { color: var(--ink); }

.reveal { opacity: 0; transform: translateY(38px); transition: opacity .85s cubic-bezier(.2,.75,.2,1), transform .85s cubic-bezier(.2,.75,.2,1); will-change: opacity, transform; }
.reveal[data-reveal="left"] { transform: translateX(-48px); }
.reveal[data-reveal="right"] { transform: translateX(48px); }
.reveal[data-reveal="scale"] { transform: translateY(26px) scale(.965); }
.reveal.is-visible { opacity: 1; transform: none; }
[data-stagger] > * { opacity: 0; transform: translateY(22px); transition: opacity .62s cubic-bezier(.2,.75,.2,1), transform .62s cubic-bezier(.2,.75,.2,1), box-shadow .25s ease, background .25s ease; }
[data-stagger].is-visible > *, .is-visible [data-stagger] > * { opacity: 1; transform: none; transition-delay: calc(var(--item-index, 0) * 90ms + 120ms); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; }.scroll-progress { display: none; }.reveal, [data-stagger] > * { opacity: 1; transform: none; transition: none; }.product-flow::before { transform: scaleX(1); transition: none; } *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; } }

@media (max-width: 1050px) {
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 35px; }
  .hero h1 { font-size: 59px; }
  .signal-one { right: 0; }.signal-two { left: 0; }
  .solution-grid { grid-template-columns: 1fr 1fr; }.solution-card { border-bottom: 1px solid var(--line); }.solution-card:nth-child(2) { border-right: 0; }.solution-card:nth-child(3) { border-bottom: 0; }
  .method-layout, .contact-shell { gap: 55px; }
  .calculator-copy { padding: 45px; }.calculator-result { padding: 45px 38px; }
  .control-grid { gap: 60px; }
}

@media (max-width: 820px) {
  .section { padding: 82px 0; }
  .reveal[data-reveal="left"], .reveal[data-reveal="right"] { transform: translateY(30px); }
  .reveal.is-visible { transform: none; }
  .menu-toggle { display: block; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .nav { position: fixed; inset: 68px 0 auto; height: calc(100vh - 68px); padding: 40px 24px; display: none; flex-direction: column; align-items: stretch; gap: 0; color: white; background: var(--forest-2); }
  .nav.open { display: flex; }.nav > a { padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.1); font-size: 17px; }.nav .button { margin-top: 24px; border: 0; }
  .hero { padding-top: 120px; }.hero-grid { grid-template-columns: 1fr; }.hero-copy { padding-bottom: 25px; }.hero h1 { max-width: 680px; font-size: clamp(48px, 10vw, 68px); }.hero-visual { width: min(100%, 580px); margin: 0 auto; }.hero-foot { margin-top: 55px; }.sector-strip { flex-wrap: wrap; justify-content: center; }
  .product-brief-copy { grid-template-columns: 1fr; gap: 6px; }
  .problem-grid, .method-layout, .calculator-shell, .control-grid, .faq-grid, .contact-shell { grid-template-columns: 1fr; gap: 52px; }
  .method-copy { position: static; }
  .section-heading { grid-template-columns: 1fr; gap: 22px; }
  .pricing-grid { grid-template-columns: 1fr; }.price-card.featured { transform: none; }.price-card h3, .price-card > p:not(.price-name) { min-height: 0; }
  .calculator-result { min-height: 530px; }
  .control-visual { order: 2; }.control-copy { order: 1; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }.footer-grid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, 1180px); }
  .section { padding: 68px 0; }
  .brand-copy strong { font-size: 15px; }
  .hero { padding-top: 112px; }.hero h1 { font-size: 46px; }.hero-lead { font-size: 15px; }.hero-actions { align-items: stretch; flex-direction: column; }.hero-actions .button { width: 100%; }.text-link { width: fit-content; }
  .product-brief { padding: 54px 0; }.product-brief-shell { padding: 31px 22px; }.product-brief-copy h2 { font-size: 34px; }.product-flow { grid-template-columns: 1fr 1fr; gap: 22px 8px; }.product-flow::before { display: none; }.product-flow li { padding: 13px 8px; border: 1px solid var(--line); border-radius: 12px; background: #f8faf7; }.product-flow li span { width: 28px; height: 28px; }
  .trust-list { gap: 13px; }.hero-visual { min-height: 430px; }.ops-card { padding: 18px; }.signal { display: none; }.quote-body { grid-template-columns: auto 1fr; }.quote-body > strong { grid-column: 1 / -1; text-align: right; }.sector-strip { gap: 14px; }
  .problem-list article { grid-template-columns: 35px 1fr; gap: 10px; }
  .section-intro h2, .section-heading h2, .calculator-copy h2, .control-copy h2, .contact-copy h2 { font-size: 39px; }
  .solution-grid { grid-template-columns: 1fr; }.solution-card, .solution-card:nth-child(3) { min-height: 0; border-right: 0; border-bottom: 1px solid var(--line); }.solution-card:last-child { border-bottom: 0; }.solution-icon { margin: 24px 0 35px; }.solution-card > p { min-height: 0; }
  .method-promise { grid-template-columns: 1fr; }.method-steps li { grid-template-columns: 42px 1fr; }
  .calculator-copy, .calculator-result { padding: 32px 22px; }.roi-form { grid-template-columns: 1fr; }.calculator-result { min-height: 480px; }.result-grid { grid-template-columns: 1fr; }
  .price-card { padding: 29px 22px; }.price { align-items: flex-start; flex-direction: column; }
  .control-orbit { width: 270px; height: 270px; }.orbit-a { left: 93px; }.orbit-b { top: 123px; right: -17px; }.orbit-c { left: 100px; }.orbit-d { top: 123px; left: -18px; }.check-list { grid-template-columns: 1fr; }
  .faq-list summary { font-size: 18px; }
  .contact-form { padding: 21px; grid-template-columns: 1fr; }.contact-form .field, .contact-form .full { grid-column: 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 42px 25px; }.footer-grid > div:first-child { grid-column: 1 / -1; }.footer-bottom { flex-direction: column; gap: 8px; }
  .error-shell { padding: 38px 25px; }
  .legal-header .brand-copy { display: none; }.legal-main { width: min(100% - 28px, 860px); padding: 65px 0 80px; }
}
