:root {
  --ink: #102421;
  --muted: #5e716d;
  --brand: #0f5b53;
  --brand-dark: #093f3a;
  --brand-soft: #e9f5f1;
  --accent: #b9f17a;
  --accent-dark: #7fb93e;
  --warning: #f4a340;
  --danger: #df6a5f;
  --line: #dce7e3;
  --surface: #ffffff;
  --surface-2: #f5f8f7;
  --shadow: 0 24px 70px rgba(19, 57, 51, 0.13);
  --radius: 24px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { cursor: pointer; }
img, svg { max-width: 100%; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 112px 0; }
.skip-link { position: fixed; left: 12px; top: -100px; z-index: 999; background: white; padding: 12px 16px; border-radius: 8px; }
.skip-link:focus { top: 12px; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(220,231,227,.85);
}
.nav-wrap { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-size: 20px; font-weight: 800; letter-spacing: -.03em; }
.brand-mark { width: 34px; height: 34px; display: grid; place-items: center; }
.brand-mark svg path:first-child { fill: var(--brand); }
.brand-mark .brand-check { fill: none; stroke: var(--accent); stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; }
.main-nav { display: flex; align-items: center; gap: 26px; font-size: 14px; font-weight: 650; color: #35514c; }
.main-nav a:not(.button):hover { color: var(--brand); }
.nav-login { margin-left: 10px; }
.menu-toggle { display: none; border: 0; background: transparent; padding: 8px; }
.menu-toggle span { display: block; width: 23px; height: 2px; margin: 5px; background: var(--ink); transition: .2s; }

.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 52px; padding: 0 24px; border-radius: 14px; border: 1px solid var(--brand);
  color: #fff; background: var(--brand); font-weight: 750; box-shadow: 0 10px 25px rgba(15,91,83,.18);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--brand-dark); box-shadow: 0 14px 30px rgba(15,91,83,.25); }
.button-small { min-height: 42px; padding-inline: 18px; border-radius: 12px; }
.button-secondary { color: var(--ink); border-color: var(--line); background: #fff; box-shadow: none; }
.button-secondary:hover { color: var(--brand); background: var(--brand-soft); }
.button-light { background: #fff; color: var(--brand-dark); border-color: #fff; box-shadow: none; }
.button-light:hover { background: var(--accent); color: var(--brand-dark); }
.button.full { width: 100%; }

.hero { position: relative; overflow: hidden; padding: 90px 0 100px; background: radial-gradient(circle at 80% 18%, #e5f5ed 0, rgba(229,245,237,0) 36%), linear-gradient(180deg,#fbfdfc 0,#fff 100%); }
.hero::before { content:""; position:absolute; width: 520px; height:520px; left:-300px; bottom:-360px; border-radius:50%; background: #eff8f5; }
.hero-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 60px; align-items: center; }
.eyebrow, .kicker { color: var(--brand); font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .11em; }
.eyebrow { display: inline-flex; align-items:center; gap:9px; padding: 8px 12px; border-radius: 999px; background: var(--brand-soft); text-transform:none; letter-spacing:0; font-size: 13px; }
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent-dark); box-shadow: 0 0 0 5px rgba(127,185,62,.14); }
.hero h1 { max-width: 650px; margin: 24px 0 20px; font-size: clamp(46px, 5vw, 70px); line-height: .99; letter-spacing: -.058em; }
.hero h1 span { color: var(--brand); }
.hero-lead { margin: 0; max-width: 650px; color: var(--muted); font-size: 19px; line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-notes { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 22px; color: var(--muted); font-size: 13px; }
.hero-notes b { color: var(--brand); }

.dashboard-shell { min-width: 0; border: 1px solid rgba(186,207,200,.8); border-radius: 26px; background: white; box-shadow: var(--shadow); overflow: hidden; transform: perspective(1400px) rotateY(-3deg) rotateX(1deg); }
.dashboard-topbar { height: 48px; display:flex; align-items:center; border-bottom:1px solid #edf2f0; padding: 0 16px; color:#70837f; font-size:11px; }
.window-dots { display:flex; gap:5px; }
.window-dots i { width:7px; height:7px; border-radius:50%; background:#d5dfdc; }
.dashboard-date { margin-left:auto; margin-right:12px; }
.avatar { width:25px; height:25px; display:grid; place-items:center; border-radius:50%; background:var(--brand-soft); color:var(--brand); font-size:9px; font-weight:800; }
.dashboard-body { display:flex; min-height:460px; }
.dash-sidebar { width:54px; padding:16px 12px; display:flex; flex-direction:column; align-items:center; gap:19px; background:#0c3e39; }
.mini-logo { width:27px; height:27px; display:grid; place-items:center; border-radius:8px; background:var(--accent); color:var(--brand-dark); font-weight:900; }
.dash-sidebar i { width:18px; height:18px; border-radius:5px; border:1.5px solid rgba(255,255,255,.35); }
.dash-sidebar i.active { background:rgba(185,241,122,.22); border-color:var(--accent); }
.dash-main { min-width:0; flex:1; padding:22px; background:#f7faf9; }
.dash-heading { display:flex; justify-content:space-between; gap:14px; align-items:flex-end; }
.dash-heading small { color:#7d8c89; font-size:9px; }
.dash-heading h2 { font-size:17px; margin:4px 0 0; }
.dash-heading button { padding:8px 11px; border:0; border-radius:8px; background:var(--brand); color:#fff; font-size:9px; font-weight:700; }
.status-grid { display:grid; grid-template-columns:1.5fr .8fr .8fr; gap:10px; margin-top:18px; }
.status-card { min-height:75px; display:flex; align-items:center; gap:10px; padding:13px; border-radius:12px; background:white; border:1px solid #e8efed; }
.status-card small { display:block; color:#7a8e89; font-size:8px; }
.status-card strong { display:block; margin-top:4px; font-size:12px; }
.score-ring { width:48px; height:48px; display:grid; place-items:center; border-radius:50%; background:conic-gradient(var(--brand) 94%, #e5efec 0); position:relative; }
.score-ring::after { content:""; position:absolute; inset:5px; border-radius:50%; background:white; }
.score-ring span { position:relative; z-index:1; font-size:13px; font-weight:900; }
.score-ring small { display:inline; font-size:7px; }
.status-icon { width:29px; height:29px; display:grid; place-items:center; border-radius:9px; font-weight:900; }
.status-icon.ok { color:var(--brand); background:var(--brand-soft); }
.status-icon.warn { color:#9d5b0b; background:#fff2df; }
.dash-panels { display:grid; grid-template-columns:1.4fr .8fr; gap:10px; margin-top:10px; }
.task-panel,.temp-panel { min-width:0; padding:14px; border-radius:12px; background:#fff; border:1px solid #e8efed; }
.panel-title { display:flex; justify-content:space-between; font-size:9px; }
.panel-title span { color:var(--brand); }
.task-panel ul { list-style:none; margin:12px 0 0; padding:0; }
.task-panel li { display:flex; align-items:center; gap:9px; padding:10px 0; border-top:1px solid #edf1f0; }
.task-check { flex:none; width:22px; height:22px; display:grid; place-items:center; border-radius:7px; background:#f0f4f3; color:#879793; font-size:8px; font-weight:900; }
.task-check.done { background:var(--brand-soft); color:var(--brand); }
.task-panel li div { min-width:0; flex:1; font-size:9px; font-weight:700; }
.task-panel li small { display:block; margin-top:3px; color:#85938f; font-size:7px; font-weight:500; }
.task-panel li b { color:var(--brand); font-size:7px; }
.task-panel li b.pending { color:#b36a11; }
.temp-row { display:flex; justify-content:space-between; align-items:center; padding:11px 0; border-bottom:1px solid #edf1f0; font-size:8px; }
.temp-row b { color:var(--brand); font-size:10px; }
.temp-row.alert b { color:#b96a0c; }
.temp-panel button { width:100%; margin-top:14px; padding:9px; border:0; border-radius:8px; color:#fff; background:var(--brand); font-size:7px; font-weight:750; }

.trust-strip { border-top:1px solid var(--line); border-bottom:1px solid var(--line); background:var(--surface-2); }
.benefit-row { display:grid; grid-template-columns:repeat(4,1fr); }
.benefit-row div { padding:29px 30px; display:flex; align-items:center; gap:11px; border-right:1px solid var(--line); }
.benefit-row div:last-child { border-right:0; }
.benefit-row strong { color:var(--brand); font-size:23px; white-space:nowrap; }
.benefit-row span { max-width:120px; color:var(--muted); font-size:12px; line-height:1.4; }

.section-heading { max-width:650px; margin-bottom:50px; }
.section-heading.center { margin-inline:auto; text-align:center; }
.section-heading h2,.demo-copy h2,.inspection-copy h2,.security-copy h2,.contact-copy h2 { margin:14px 0 16px; font-size:clamp(34px,4vw,52px); line-height:1.08; letter-spacing:-.045em; }
.section-heading p,.demo-copy>p,.security-copy>p { margin:0; color:var(--muted); font-size:17px; line-height:1.7; }
.kicker.light { color:var(--accent); }

.steps-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.step-card { position:relative; padding:34px; border:1px solid var(--line); border-radius:var(--radius); background:#fff; overflow:hidden; }
.step-card::after { content:""; position:absolute; right:-35px; bottom:-55px; width:140px; height:140px; border-radius:50%; background:var(--brand-soft); }
.step-number { color:#a8bbb6; font-size:12px; font-weight:800; letter-spacing:.1em; }
.step-icon,.feature-icon { width:50px; height:50px; display:grid; place-items:center; border-radius:15px; margin:28px 0 22px; background:var(--brand-soft); color:var(--brand); font-size:24px; font-weight:800; }
.step-card h3,.feature-card h3,.industry-card h3 { margin:0 0 11px; font-size:20px; letter-spacing:-.025em; }
.step-card p,.feature-card p,.industry-card p { margin:0; color:var(--muted); line-height:1.65; font-size:14px; }

.demo-section { background:var(--surface-2); }
.demo-grid { display:grid; grid-template-columns:1fr 1fr; gap:76px; align-items:center; }
.invoice-card { position:relative; min-height:440px; padding:34px; border:1px solid #e1e5e4; border-radius:12px; background:#fff; box-shadow:0 24px 55px rgba(25,54,49,.12); overflow:hidden; transform:rotate(-1.5deg); }
.invoice-header { display:flex; justify-content:space-between; padding-bottom:26px; border-bottom:2px solid var(--ink); }
.invoice-header strong { font-size:24px; letter-spacing:.12em; }
.invoice-meta { display:grid; grid-template-columns:1fr 1fr; gap:25px; margin:27px 0; }
.invoice-meta p { margin:0; }
.invoice-meta small { display:block; margin-bottom:7px; color:var(--muted); }
.invoice-card mark { padding:3px 5px; border-radius:4px; color:inherit; background:#dff5a9; }
.invoice-card table { width:100%; border-collapse:collapse; font-size:13px; }
.invoice-card th,.invoice-card td { padding:14px 7px; text-align:left; border-bottom:1px solid #dde5e2; }
.scan-line { position:absolute; left:0; right:0; height:2px; top:20%; background:linear-gradient(90deg,transparent,var(--brand),transparent); box-shadow:0 0 18px var(--brand); animation:scan 4s ease-in-out infinite; }
@keyframes scan { 0%,100%{top:18%;opacity:.25} 50%{top:82%;opacity:1} }
.check-list { list-style:none; margin:27px 0; padding:0; display:grid; gap:13px; }
.check-list li { position:relative; padding-left:31px; color:#37524d; line-height:1.5; }
.check-list li::before { content:"✓"; position:absolute; left:0; top:0; width:21px; height:21px; display:grid; place-items:center; border-radius:50%; background:var(--brand-soft); color:var(--brand); font-size:12px; font-weight:900; }
.automation-flow { display:flex; flex-wrap:wrap; align-items:center; gap:10px; margin-top:30px; }
.automation-flow span { padding:10px 12px; border:1px solid var(--line); border-radius:10px; background:#fff; font-size:12px; font-weight:700; }
.automation-flow b { color:var(--brand); }

.features-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.feature-card { padding:30px; border:1px solid var(--line); border-radius:20px; background:#fff; transition:.25s; }
.feature-card:hover { transform:translateY(-6px); border-color:#bfd6cf; box-shadow:0 18px 38px rgba(20,58,52,.08); }
.feature-card .feature-icon { margin:0 0 23px; }
.feature-card a { display:inline-block; margin-top:20px; color:var(--brand); font-size:13px; font-weight:750; }

.industries-section { background:#f7faf9; }
.industries-grid { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.industry-card { display:flex; gap:22px; align-items:flex-start; padding:26px; border:1px solid var(--line); border-radius:18px; background:#fff; }
.industry-card>span { flex:none; width:40px; height:40px; display:grid; place-items:center; border-radius:12px; background:var(--brand-soft); color:var(--brand); font-size:11px; font-weight:900; }

.inspection-section { background:linear-gradient(125deg,#083e39 0,#0e6258 100%); color:#fff; overflow:hidden; }
.inspection-grid { display:grid; grid-template-columns:.9fr 1.1fr; gap:80px; align-items:center; }
.inspection-copy p { max-width:570px; color:#c6dcd7; font-size:17px; line-height:1.7; margin-bottom:30px; }
.readiness-card { padding:28px; border:1px solid rgba(255,255,255,.25); border-radius:24px; color:var(--ink); background:rgba(255,255,255,.96); box-shadow:0 25px 65px rgba(0,0,0,.25); }
.readiness-head { display:flex; justify-content:space-between; align-items:center; padding-bottom:22px; border-bottom:1px solid var(--line); }
.readiness-head small { display:block; color:var(--muted); }
.readiness-head strong { display:block; margin-top:4px; font-size:20px; }
.readiness-head>span { color:var(--brand); font-size:36px; font-weight:900; }
.readiness-card ul { list-style:none; margin:24px 0; padding:0; display:grid; gap:20px; }
.readiness-card li { display:grid; grid-template-columns:1fr auto; gap:8px; font-size:13px; }
.readiness-card li b { color:var(--brand); }
.readiness-card li i { grid-column:1/-1; display:block; height:7px; border-radius:10px; background:#e7efed; overflow:hidden; }
.readiness-card li i::after { content:""; display:block; width:var(--progress); height:100%; border-radius:inherit; background:var(--brand); }
.readiness-card button { width:100%; display:flex; justify-content:space-between; padding:15px 18px; border:0; border-radius:12px; color:#fff; background:var(--brand); font-weight:750; }

.pricing-wrap { max-width:1180px; }
.pricing-toggle { display:flex; width:max-content; margin:30px auto 38px; padding:5px; border:1px solid var(--line); border-radius:14px; background:var(--surface-2); }
.pricing-toggle button { border:0; border-radius:10px; padding:11px 17px; color:var(--muted); background:transparent; font-weight:800; }
.pricing-toggle button span { margin-left:5px; font-size:10px; color:var(--brand); }
.pricing-toggle button.active { color:#fff; background:var(--brand); box-shadow:0 8px 18px rgba(15,91,83,.18); }
.pricing-toggle button.active span { color:var(--accent); }
.pricing-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:20px; align-items:stretch; }
.plan-card { position:relative; display:flex; flex-direction:column; min-width:0; padding:30px; border:1px solid var(--line); border-radius:24px; background:#fff; box-shadow:0 14px 38px rgba(19,57,51,.08); }
.plan-card.featured { border:2px solid var(--brand); box-shadow:0 24px 60px rgba(15,91,83,.16); transform:translateY(-8px); }
.plan-popular { position:absolute; top:-14px; right:22px; padding:7px 12px; border-radius:999px; color:var(--brand-dark); background:var(--accent); font-size:11px; font-weight:900; }
.plan-kicker { color:var(--brand); font-size:11px; font-weight:900; letter-spacing:.11em; }
.plan-head h3 { margin:8px 0 8px; font-size:22px; letter-spacing:-.03em; }
.plan-head p { min-height:44px; margin:0; color:var(--muted); font-size:13px; line-height:1.55; }
.plan-price { margin:24px 0 22px; padding:20px 0; border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.plan-price>div { display:flex; align-items:flex-end; gap:10px; }
.plan-price strong { font-size:48px; line-height:.95; letter-spacing:-.06em; color:var(--brand-dark); }
.plan-price div>span { padding-bottom:2px; color:var(--muted); font-size:12px; line-height:1.35; }
.plan-price div>span small { color:var(--brand); font-weight:850; }
.plan-price>b { display:block; margin-top:9px; color:var(--brand); font-size:14px; }
.annual-note { display:block; margin-top:5px; color:var(--muted); font-size:11px; line-height:1.45; }
.plan-features { flex:1; list-style:none; margin:0 0 24px; padding:0; display:grid; align-content:start; gap:11px; }
.plan-features li { position:relative; padding-left:22px; color:#35514c; font-size:13px; line-height:1.45; }
.plan-features li::before { content:'✓'; position:absolute; left:0; top:0; color:var(--brand); font-weight:900; }
.plan-features li.usage { margin-top:4px; padding:9px 10px 9px 30px; border-radius:10px; background:var(--brand-soft); color:var(--brand-dark); font-weight:850; }
.plan-features li.usage::before { left:10px; top:9px; content:'✦'; }
.chain-pricing { margin-top:34px; padding:28px; border:1px solid #bfd4ce; border-radius:24px; background:linear-gradient(135deg,#f7fbf9,#eef7f4); }
.chain-pricing h3 { margin:6px 0 8px; font-size:24px; }
.chain-pricing>div:first-child>p { margin:0 0 22px; color:var(--muted); }
.chain-tiers { display:grid; grid-template-columns:repeat(3,1fr); gap:12px; }
.chain-tiers div { display:grid; grid-template-columns:1fr auto; align-items:center; gap:3px 12px; padding:15px 17px; border:1px solid var(--line); border-radius:14px; background:#fff; }
.chain-tiers span { font-size:12px; font-weight:800; }
.chain-tiers strong { grid-row:1/3; grid-column:2; color:var(--brand); font-size:26px; }
.chain-tiers small { color:var(--muted); font-size:10px; line-height:1.4; }
.chain-note { margin:16px 0 0; color:var(--muted); font-size:11px; line-height:1.5; }
.pricing-transparency { display:flex; gap:12px; align-items:flex-start; margin-top:20px; padding:18px 20px; border-radius:16px; color:#fff; background:var(--brand-dark); font-size:13px; line-height:1.55; }
.pricing-transparency strong { flex:none; color:var(--accent); }
.table-note { color:var(--muted); font-size:12px; text-align:center; line-height:1.6; }

.security-section { background:#f5f9f7; }
.security-grid { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }
.security-visual { position:relative; min-height:440px; display:grid; place-items:center; border:1px solid var(--line); border-radius:30px; background:radial-gradient(circle,#fff 0,#e9f5f1 70%); }
.shield { width:155px; height:170px; display:grid; place-items:center; filter:drop-shadow(0 25px 25px rgba(15,91,83,.22)); }
.shield svg path:first-child { fill:var(--brand); }
.shield svg path:last-child { fill:none; stroke:var(--accent); stroke-width:5; stroke-linecap:round; stroke-linejoin:round; }
.security-chip { position:absolute; padding:11px 15px; border:1px solid var(--line); border-radius:12px; background:#fff; box-shadow:0 12px 30px rgba(20,58,52,.1); color:var(--brand); font-size:12px; font-weight:750; }
.chip-one { top:55px; left:25px; }.chip-two { right:22px; top:155px; }.chip-three { left:55px; bottom:54px; }
.security-points { display:grid; gap:20px; margin-top:30px; }
.security-points>div { display:flex; align-items:flex-start; gap:15px; }
.security-points b { flex:none; width:36px; height:36px; display:grid; place-items:center; border-radius:10px; background:var(--brand-soft); color:var(--brand); font-size:11px; }
.security-points strong,.security-points small { display:block; }
.security-points small { margin-top:5px; color:var(--muted); line-height:1.5; }

.faq-grid { display:grid; grid-template-columns:.75fr 1.25fr; gap:80px; }
.faq-item { border-bottom:1px solid var(--line); }
.faq-item button { width:100%; display:flex; justify-content:space-between; align-items:center; gap:20px; padding:22px 0; border:0; background:transparent; color:var(--ink); text-align:left; font-size:16px; font-weight:750; }
.faq-item i { flex:none; width:28px; height:28px; display:grid; place-items:center; border-radius:50%; background:var(--brand-soft); color:var(--brand); font-style:normal; transition:.2s; }
.faq-item.open i { transform:rotate(45deg); }
.faq-answer { display:grid; grid-template-rows:0fr; transition:grid-template-rows .28s ease; }
.faq-answer p { min-height:0; overflow:hidden; margin:0; color:var(--muted); line-height:1.65; }
.faq-item.open .faq-answer { grid-template-rows:1fr; }
.faq-item.open .faq-answer p { padding:0 46px 22px 0; }

.contact-section { padding-top:70px; }
.contact-card { display:grid; grid-template-columns:1fr 1fr; gap:70px; padding:60px; border-radius:30px; color:#fff; background:linear-gradient(130deg,#083e39 0,#0f5b53 65%,#1f7469 100%); box-shadow:var(--shadow); }
.contact-copy p { color:#c9deda; font-size:17px; line-height:1.65; }
.contact-copy ul { list-style:none; margin:28px 0 0; padding:0; display:grid; gap:11px; color:#e7f2ef; }
.lead-form { padding:28px; border-radius:20px; color:var(--ink); background:#fff; }
.lead-form label { display:grid; gap:7px; margin-bottom:14px; color:#3b5550; font-size:12px; font-weight:750; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.lead-form input,.lead-form select { width:100%; min-height:46px; padding:0 13px; border:1px solid #cad8d4; border-radius:10px; outline:none; background:#fff; color:var(--ink); }
.lead-form input:focus,.lead-form select:focus { border-color:var(--brand); box-shadow:0 0 0 3px rgba(15,91,83,.1); }
.lead-form .consent { display:flex; flex-direction:row; align-items:flex-start; gap:9px; font-weight:500; line-height:1.4; }
.lead-form .consent input { width:16px; min-height:auto; margin-top:2px; }
.form-message { min-height:20px; margin:12px 0 0; color:var(--brand); font-size:13px; text-align:center; }

.site-footer { margin-top:110px; padding:65px 0 25px; color:#c7d7d4; background:#092f2b; }
.footer-grid { display:grid; grid-template-columns:1.5fr repeat(3,1fr); gap:60px; }
.footer-brand { color:#fff; }
.footer-brand .brand-mark svg path:first-child { fill:var(--accent); }
.footer-brand .brand-mark .brand-check { stroke:var(--brand-dark); }
.footer-grid>div:first-child p { max-width:300px; color:#98b2ad; line-height:1.65; }
.footer-grid>div:not(:first-child) { display:flex; flex-direction:column; gap:13px; font-size:13px; }
.footer-grid strong { margin-bottom:5px; color:#fff; }
.footer-grid a:hover { color:var(--accent); }
.footer-bottom { display:flex; justify-content:space-between; gap:20px; margin-top:55px; padding-top:22px; border-top:1px solid rgba(255,255,255,.12); color:#87a29d; font-size:11px; }

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

@media (max-width: 1050px) {
  .main-nav { gap:17px; }
  .hero-grid { grid-template-columns:1fr; }
  .hero-copy { text-align:center; }
  .hero-copy .eyebrow { margin-inline:auto; }
  .hero-copy h1,.hero-lead { margin-left:auto; margin-right:auto; }
  .hero-actions,.hero-notes { justify-content:center; }
  .dashboard-shell { width:min(760px,100%); margin-inline:auto; transform:none; }
  .benefit-row { grid-template-columns:1fr 1fr; }
  .benefit-row div:nth-child(2) { border-right:0; }
  .benefit-row div:nth-child(-n+2) { border-bottom:1px solid var(--line); }
  .features-grid { grid-template-columns:1fr 1fr; }
  .inspection-grid,.security-grid { gap:45px; }
  .faq-grid { gap:50px; }
}

@media (max-width: 820px) {
  .section { padding:82px 0; }
  .menu-toggle { display:block; z-index:2; }
  .main-nav { position:fixed; inset:76px 0 auto; display:none; flex-direction:column; align-items:stretch; gap:0; padding:18px 20px 28px; background:white; border-bottom:1px solid var(--line); box-shadow:0 20px 30px rgba(15,50,45,.1); }
  .main-nav.open { display:flex; }
  .main-nav a { padding:13px 8px; }
  .main-nav .button { margin-top:8px; }
  .nav-login { margin-left:0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity:0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }
  .hero { padding-top:60px; }
  .steps-grid,.demo-grid,.inspection-grid,.security-grid,.faq-grid,.contact-card { grid-template-columns:1fr; }
  .demo-grid,.inspection-grid,.security-grid,.faq-grid,.contact-card { gap:45px; }
  .inspection-copy { text-align:center; }
  .pricing-grid { grid-template-columns:1fr; max-width:620px; margin-inline:auto; }
  .plan-card.featured { transform:none; }
  .chain-tiers { grid-template-columns:1fr; }
  .contact-card { padding:42px; }
  .footer-grid { grid-template-columns:1fr 1fr; }
}

@media (max-width: 620px) {
  .container { width:min(calc(100% - 26px),var(--container)); }
  .hero h1 { font-size:43px; }
  .hero-lead { font-size:17px; }
  .hero-actions .button { width:100%; }
  .hero-notes { flex-direction:column; gap:7px; }
  .dashboard-body { min-height:auto; }
  .dash-sidebar { display:none; }
  .dash-main { padding:14px; }
  .status-grid { grid-template-columns:1fr 1fr; }
  .score-card { grid-column:1/-1; }
  .dash-panels { grid-template-columns:1fr; }
  .temp-panel { display:none; }
  .benefit-row { grid-template-columns:1fr; }
  .benefit-row div { border-right:0; border-bottom:1px solid var(--line); justify-content:center; }
  .benefit-row div:last-child { border-bottom:0; }
  .steps-grid,.features-grid,.industries-grid { grid-template-columns:1fr; }
  .invoice-card { min-height:390px; padding:22px; }
  .invoice-header strong { font-size:18px; }
  .automation-flow { align-items:stretch; flex-direction:column; text-align:center; }
  .automation-flow b { transform:rotate(90deg); }
  .two-columns { grid-template-columns:1fr; }
  .plan-card { padding:24px; }
  .pricing-toggle { width:100%; }
  .pricing-toggle button { flex:1; padding-inline:10px; font-size:12px; }
  .pricing-transparency { flex-direction:column; }
  .security-visual { min-height:380px; }
  .security-chip { font-size:10px; }
  .chip-one { left:10px; }.chip-two { right:10px; }.chip-three { left:25px; }
  .contact-card { padding:30px 20px; border-radius:22px; }
  .form-row { grid-template-columns:1fr; gap:0; }
  .footer-grid { grid-template-columns:1fr; gap:35px; }
  .footer-bottom { flex-direction:column; }
}

@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; }
}
.hp-field{position:absolute!important;left:-10000px!important;width:1px!important;height:1px!important;overflow:hidden!important}
