:root {
  --ink: #16342c;
  --ink-2: #24473d;
  --green: #1f5b49;
  --green-2: #34745f;
  --sage: #a9c2b7;
  --mint: #dce9e3;
  --cream: #f7f5ef;
  --paper: #fcfbf7;
  --white: #fff;
  --warm: #d7c6aa;
  --text: #25352f;
  --muted: #66756f;
  --line: rgba(22, 52, 44, .13);
  --shadow: 0 24px 70px rgba(24, 55, 46, .1);
  --radius: 24px;
  --radius-sm: 15px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.035em;
}
h1 { max-width: 900px; font-size: clamp(3rem, 7vw, 6.6rem); }
h2 { font-size: clamp(2.25rem, 4.5vw, 4.4rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.8rem); }
p { color: var(--muted); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: clamp(80px, 11vw, 144px) 0; }
.section--tight { padding: 72px 0; }
.section--green { color: white; background: var(--ink); }
.section--green h2, .section--green h3, .section--green p { color: white; }
.section--mint { background: var(--mint); }
.section--cream { background: var(--cream); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 52px; }
.section-head h2 { max-width: 760px; margin-bottom: 0; }
.section-head p { max-width: 470px; margin-bottom: 6px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--green);
  font-size: .76rem;
  font-weight: 750;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow::before { width: 28px; height: 1px; content: ""; background: currentColor; }
.section--green .eyebrow, .hero--dark .eyebrow { color: #b9d3c8; }
.lead { max-width: 720px; font-size: clamp(1.08rem, 1.8vw, 1.35rem); }
.kicker { color: var(--ink); font-size: 1.15rem; font-weight: 650; }
.muted { color: var(--muted); }
.center { text-align: center; }
.center h2, .center p { margin-inline: auto; }

.skip-link { position: fixed; top: -80px; left: 20px; z-index: 1000; padding: 12px 18px; background: white; }
.skip-link:focus { top: 20px; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(252, 251, 247, .86);
  backdrop-filter: blur(18px);
  transition: .3s ease;
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 10px 30px rgba(22, 52, 44, .05); }
.nav { min-height: 82px; display: flex; align-items: center; gap: 28px; }
.logo { display: flex; align-items: center; gap: 11px; margin-right: auto; color: var(--ink); font-size: 1.15rem; font-weight: 800; letter-spacing: -.02em; }
.logo-mark { position: relative; width: 31px; height: 31px; border: 1px solid var(--green); border-radius: 9px; transform: rotate(45deg); }
.logo-mark::after { position: absolute; inset: 7px; content: ""; border: 1px solid var(--green-2); border-radius: 4px; }
.nav-links { display: flex; align-items: center; gap: 25px; list-style: none; margin: 0; padding: 0; }
.nav-links a { position: relative; color: #486158; font-size: .91rem; font-weight: 600; }
.nav-links a::after { position: absolute; right: 0; bottom: -8px; left: 0; height: 1px; content: ""; background: var(--green); transform: scaleX(0); transition: transform .25s; }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; background: transparent; cursor: pointer; }
.menu-toggle span { display: block; width: 18px; height: 1px; margin: 5px auto; background: var(--ink); transition: .25s; }

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-size: .92rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform .25s, box-shadow .25s, background .25s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(22,52,44,.2); }
.btn--light { border-color: white; background: white; color: var(--ink); }
.btn--ghost { border-color: var(--line); background: transparent; color: var(--ink); }
.btn--small { min-height: 43px; padding-inline: 18px; font-size: .84rem; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 35px; }
.arrow { transition: transform .2s; }
.btn:hover .arrow, .text-link:hover .arrow { transform: translateX(4px); }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--ink); font-weight: 750; }

.hero { position: relative; min-height: 760px; display: flex; align-items: center; overflow: hidden; padding: 110px 0 120px; }
.hero::before { position: absolute; top: -25%; right: -14%; width: 700px; height: 700px; content: ""; border: 1px solid rgba(31,91,73,.12); border-radius: 45% 55% 67% 33%; animation: orbit 18s linear infinite; }
.hero::after { position: absolute; right: 8%; bottom: 9%; width: 280px; height: 280px; content: ""; border-radius: 50%; background: radial-gradient(circle, rgba(169,194,183,.45), transparent 68%); filter: blur(5px); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 75px; }
.hero h1 { margin-bottom: 28px; }
.hero-copy > p { max-width: 690px; font-size: clamp(1.05rem, 1.5vw, 1.25rem); }
.hero-proof { display: flex; flex-wrap: wrap; gap: 21px; margin-top: 40px; color: var(--muted); font-size: .85rem; font-weight: 650; }
.hero-proof span { display: flex; align-items: center; gap: 8px; }
.hero-proof span::before { width: 7px; height: 7px; content: ""; border-radius: 50%; background: var(--green-2); }
.hero-visual { position: relative; height: 520px; perspective: 1000px; }
.visual-panel { position: absolute; overflow: hidden; border: 1px solid rgba(255,255,255,.55); border-radius: 30px; box-shadow: var(--shadow); background: rgba(255,255,255,.7); backdrop-filter: blur(14px); }
.visual-main { inset: 28px 8px 28px 40px; padding: 35px; transform: rotateY(-7deg) rotateX(3deg); }
.visual-topbar { display: flex; align-items: center; justify-content: space-between; padding-bottom: 25px; border-bottom: 1px solid var(--line); color: var(--ink); font-weight: 750; }
.dot-group { display: flex; gap: 6px; }
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--sage); }
.process-list { display: grid; gap: 12px; margin-top: 26px; }
.process-row { display: grid; grid-template-columns: 42px 1fr auto; align-items: center; gap: 14px; padding: 15px; border: 1px solid var(--line); border-radius: 14px; background: rgba(252,251,247,.8); }
.process-icon { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 11px; background: var(--mint); color: var(--green); font-weight: 800; }
.process-row strong { display: block; color: var(--ink); font-size: .9rem; }
.process-row small { color: var(--muted); }
.status { padding: 4px 9px; border-radius: 999px; background: #e3efe9; color: var(--green); font-size: .68rem; font-weight: 800; }
.float-card { position: absolute; z-index: 4; padding: 16px 18px; border: 1px solid rgba(255,255,255,.7); border-radius: 16px; box-shadow: 0 18px 40px rgba(22,52,44,.14); background: rgba(255,255,255,.9); color: var(--ink); font-size: .8rem; font-weight: 750; animation: float 5s ease-in-out infinite; }
.float-card--one { top: 5px; right: -12px; }
.float-card--two { bottom: 12px; left: 0; animation-delay: -2s; }

.page-hero { padding: 110px 0 90px; background: linear-gradient(135deg, var(--cream), var(--paper)); }
.page-hero h1 { max-width: 950px; margin-bottom: 28px; font-size: clamp(3.2rem, 7vw, 6.8rem); }
.page-hero .lead { max-width: 760px; }
.page-hero--split .container { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 80px; }
.page-hero--dark { background: var(--ink); }
.page-hero--dark h1, .page-hero--dark p { color: white; }

.grid { display: grid; gap: 22px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.card { position: relative; padding: 32px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.72); transition: transform .3s, border-color .3s, box-shadow .3s; }
.card:hover { transform: translateY(-5px); border-color: rgba(31,91,73,.3); box-shadow: var(--shadow); }
.card-number { display: inline-grid; width: 42px; height: 42px; place-items: center; margin-bottom: 28px; border-radius: 50%; background: var(--mint); color: var(--green); font-size: .8rem; font-weight: 800; }
.card h3 { margin-bottom: 14px; }
.card p:last-child { margin-bottom: 0; }
.icon-box { width: 54px; height: 54px; display: grid; place-items: center; margin-bottom: 28px; border-radius: 16px; background: var(--mint); color: var(--green); font-size: 1.3rem; font-weight: 800; }
.problem-card { min-height: 265px; }
.problem-card::after { position: absolute; right: 28px; bottom: 24px; color: var(--sage); content: "↗"; font-size: 1.3rem; }

.product-card { display: flex; min-height: 490px; flex-direction: column; padding: 37px; }
.product-card.featured { color: white; background: var(--ink); transform: translateY(-12px); }
.product-card.featured:hover { transform: translateY(-17px); }
.product-card.featured h3, .product-card.featured p, .product-card.featured .price { color: white; }
.product-tag { align-self: flex-start; margin-bottom: 40px; padding: 7px 11px; border-radius: 999px; background: var(--mint); color: var(--green); font-size: .67rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.featured .product-tag { background: rgba(255,255,255,.12); color: #c6ddd3; }
.price { margin: auto 0 4px; padding-top: 25px; color: var(--ink); font-family: Georgia, serif; font-size: 2.1rem; }
.price small { color: var(--muted); font-family: Inter, sans-serif; font-size: .72rem; }
.feature-list { display: grid; gap: 10px; margin: 24px 0 30px; padding: 0; list-style: none; color: var(--muted); font-size: .91rem; }
.feature-list li::before { margin-right: 9px; color: var(--green-2); content: "✓"; font-weight: 800; }
.featured .feature-list { color: #d8e3df; }

.addon-grid { grid-template-columns: repeat(5, 1fr); }
.addon-card { min-height: 170px; padding: 23px; }
.addon-card span { display: block; margin-bottom: 25px; color: var(--green-2); font-size: .72rem; font-weight: 800; }
.addon-card h3 { margin: 0; font-family: Inter, sans-serif; font-size: 1rem; font-weight: 750; letter-spacing: -.02em; line-height: 1.35; }

.comparison { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: white; }
.compare-row { display: grid; grid-template-columns: 1.1fr 1.4fr 1.4fr .7fr; gap: 20px; padding: 24px 30px; border-bottom: 1px solid var(--line); }
.compare-row:last-child { border: 0; }
.compare-row--head { background: var(--cream); color: var(--muted); font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.compare-row strong { color: var(--ink); }

.quote-card { min-height: 285px; display: flex; flex-direction: column; justify-content: space-between; }
.quote-mark { color: var(--sage); font-family: Georgia, serif; font-size: 4rem; line-height: .6; }
.placeholder { color: var(--muted); font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.trust-strip { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-item { padding: 28px 24px; border-right: 1px solid var(--line); text-align: center; }
.trust-item:last-child { border: 0; }
.trust-item strong { display: block; color: var(--ink); }
.trust-item span { color: var(--muted); font-size: .82rem; }

.lead-magnet { position: relative; overflow: hidden; padding: 60px; border-radius: 32px; background: var(--ink); color: white; }
.lead-magnet::after { position: absolute; top: -70px; right: -30px; width: 310px; height: 310px; content: ""; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; }
.lead-magnet-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 70px; }
.lead-magnet h2, .lead-magnet p { color: white; }
.inline-form { display: flex; gap: 10px; padding: 8px; border-radius: 999px; background: white; }
.inline-form input { min-width: 0; flex: 1; padding: 0 15px; border: 0; outline: 0; }

.cta { position: relative; overflow: hidden; padding: clamp(75px, 10vw, 120px) 0; background: var(--green); text-align: center; }
.cta::before, .cta::after { position: absolute; width: 330px; height: 330px; content: ""; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; }
.cta::before { top: -180px; left: -100px; }
.cta::after { right: -90px; bottom: -210px; }
.cta h2, .cta p { color: white; }
.cta p { max-width: 620px; margin-inline: auto; }
.cta .button-row { justify-content: center; }

.profile-visual { position: relative; min-height: 520px; border-radius: 32px; background: linear-gradient(155deg, var(--sage), var(--ink)); box-shadow: var(--shadow); }
.profile-visual::before { position: absolute; inset: 12%; content: ""; border: 1px solid rgba(255,255,255,.35); border-radius: 50% 50% 22px 22px; }
.profile-initials { position: absolute; inset: 0; display: grid; place-items: center; color: rgba(255,255,255,.85); font-family: Georgia, serif; font-size: 6rem; }
.image-label { position: absolute; right: 22px; bottom: 22px; left: 22px; padding: 17px; border-radius: 14px; background: rgba(255,255,255,.86); color: var(--ink); font-size: .8rem; font-weight: 700; backdrop-filter: blur(10px); }
.timeline { position: relative; display: grid; gap: 18px; }
.timeline::before { position: absolute; top: 18px; bottom: 18px; left: 20px; width: 1px; content: ""; background: var(--line); }
.timeline-item { position: relative; padding: 0 0 28px 70px; }
.timeline-dot { position: absolute; top: 3px; left: 5px; width: 31px; height: 31px; display: grid; place-items: center; border-radius: 50%; background: var(--mint); color: var(--green); font-size: .7rem; font-weight: 800; }

.anchor-nav { position: sticky; top: 82px; z-index: 20; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(252,251,247,.92); backdrop-filter: blur(14px); }
.anchor-nav-inner { display: flex; gap: 8px; overflow-x: auto; padding: 13px 0; scrollbar-width: none; }
.anchor-nav a { flex: 0 0 auto; padding: 9px 15px; border-radius: 999px; color: var(--muted); font-size: .81rem; font-weight: 700; }
.anchor-nav a:hover { background: var(--mint); color: var(--green); }
.service-section { scroll-margin-top: 145px; }
.service-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; }
.service-aside { position: sticky; top: 175px; align-self: start; }
.service-detail { padding: 45px; border: 1px solid var(--line); border-radius: var(--radius); background: white; }
.detail-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 30px; }
.detail-item { padding: 18px; border-radius: 13px; background: var(--cream); color: var(--muted); font-size: .87rem; }

.vision-statement { max-width: 980px; margin: auto; text-align: center; }
.vision-statement h2 { font-size: clamp(2.7rem, 6vw, 5.8rem); }
.metric-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--line); }
.metric { padding: 50px 35px; background: white; }
.metric strong { display: block; margin-bottom: 12px; color: var(--green); font-family: Georgia, serif; font-size: 3.4rem; font-weight: 400; }

.chaos-hero { min-height: 760px; display: flex; align-items: center; overflow: hidden; padding: 90px 0; background: var(--ink); color: white; }
.chaos-hero .container { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 50px; }
.chaos-hero h1 { color: white; font-size: clamp(3.2rem, 6vw, 6rem); }
.chaos-hero p { color: #c7d5d0; }
.chaos-stage { position: relative; height: 570px; perspective: 900px; }
.chaos-orb { position: absolute; inset: 15%; border-radius: 50%; background: radial-gradient(circle at 35% 25%, #78998c, #234b3f 45%, #122d26 72%); box-shadow: inset -30px -40px 70px rgba(0,0,0,.35), 0 30px 90px rgba(0,0,0,.3); animation: breathe 6s ease-in-out infinite; }
.chaos-item { position: absolute; display: grid; place-items: center; padding: 17px; border: 1px solid rgba(255,255,255,.3); border-radius: 14px; box-shadow: 0 20px 45px rgba(0,0,0,.24); background: rgba(249,247,240,.92); color: var(--ink); font-size: .75rem; font-weight: 800; animation: chaosFloat 6s ease-in-out infinite; backdrop-filter: blur(8px); }
.chaos-item:nth-child(2) { top: 9%; left: 10%; width: 155px; height: 95px; transform: rotate(-12deg); }
.chaos-item:nth-child(3) { top: 15%; right: 2%; width: 125px; height: 150px; transform: rotate(11deg); animation-delay: -1s; }
.chaos-item:nth-child(4) { bottom: 7%; left: 2%; width: 190px; height: 105px; transform: rotate(8deg); animation-delay: -2s; }
.chaos-item:nth-child(5) { right: 6%; bottom: 11%; width: 165px; height: 110px; transform: rotate(-9deg); animation-delay: -3s; }
.chaos-item:nth-child(6) { top: 43%; left: 35%; width: 145px; height: 90px; transform: translateZ(80px) rotate(4deg); animation-delay: -4s; }
.chaos-line { position: absolute; width: 35%; height: 1px; background: rgba(169,194,183,.35); transform-origin: left; }
.chaos-line--1 { top: 30%; left: 20%; transform: rotate(25deg); }
.chaos-line--2 { right: 17%; bottom: 32%; transform: rotate(-32deg); }

.contact-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 35px; }
.form-card { padding: 45px; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.field { display: grid; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label { color: var(--ink); font-size: .79rem; font-weight: 750; }
.field input, .field select, .field textarea { width: 100%; padding: 14px 15px; border: 1px solid var(--line); border-radius: 11px; outline: 0; background: var(--paper); color: var(--text); transition: border .2s, box-shadow .2s; }
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--green-2); box-shadow: 0 0 0 3px rgba(52,116,95,.1); }
.form-note { margin: 20px 0; font-size: .78rem; }
.contact-aside { display: grid; align-content: start; gap: 20px; }
.handoff { padding: 32px; border-radius: var(--radius); background: var(--ink); }
.handoff h3, .handoff p { color: white; }
.handoff .btn { opacity: .35; pointer-events: none; }
.handoff.is-ready { box-shadow: 0 0 0 4px rgba(52,116,95,.18); }
.handoff.is-ready .btn { opacity: 1; pointer-events: auto; }

.blog-card { overflow: hidden; padding: 0; }
.blog-image { position: relative; height: 230px; overflow: hidden; background: linear-gradient(145deg, var(--sage), var(--ink)); }
.blog-image::before, .blog-image::after { position: absolute; content: ""; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; }
.blog-image::before { width: 190px; height: 190px; top: -60px; right: -25px; }
.blog-image::after { width: 110px; height: 110px; bottom: -35px; left: 25px; }
.blog-image span { position: absolute; right: 20px; bottom: 16px; color: rgba(255,255,255,.75); font-size: .7rem; font-weight: 700; text-transform: uppercase; }
.blog-body { padding: 29px; }
.category { display: block; margin-bottom: 15px; color: var(--green-2); font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }

.site-footer { padding: 75px 0 28px; background: #102a23; color: white; }
.site-footer .logo { color: white; }
.footer-grid { display: grid; grid-template-columns: 1.3fr repeat(3, .7fr); gap: 50px; padding-bottom: 55px; }
.footer-brand p { max-width: 360px; color: #aebfb9; }
.footer-title { margin-bottom: 18px; color: white; font-family: Inter, sans-serif; font-size: .75rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.footer-links { display: grid; gap: 9px; }
.footer-links a, .footer-links span { color: #aebfb9; font-size: .88rem; }
.footer-links a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.12); color: #82968f; font-size: .76rem; }

.reveal { opacity: 0; transform: translateY(25px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@keyframes float { 0%,100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-12px) rotate(1deg); } }
@keyframes orbit { to { transform: rotate(360deg); } }
@keyframes breathe { 50% { transform: scale(1.04) rotate(2deg); } }
@keyframes chaosFloat { 0%,100% { margin-top: 0; } 50% { margin-top: -14px; } }

@media (max-width: 1050px) {
  .nav-links, .nav > .btn { display: none; }
  .menu-toggle { display: block; }
  .nav-links.open { position: fixed; top: 82px; right: 0; left: 0; height: calc(100vh - 82px); display: flex; flex-direction: column; align-items: flex-start; gap: 5px; padding: 35px 20px; background: var(--paper); }
  .nav-links.open li, .nav-links.open a { width: 100%; }
  .nav-links.open a { display: block; padding: 13px 8px; font-size: 1.05rem; }
  .hero-grid, .page-hero--split .container, .chaos-hero .container { grid-template-columns: 1fr; }
  .hero { padding-top: 85px; }
  .hero-visual { max-width: 650px; width: 100%; margin-inline: auto; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .addon-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.2fr repeat(2, .8fr); }
  .footer-grid > div:last-child { grid-column: 2; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 78px 0; }
  .section-head { display: block; margin-bottom: 35px; }
  .section-head p { margin-top: 18px; }
  .hero { min-height: auto; padding: 80px 0; }
  .hero-grid { gap: 40px; }
  .hero h1, .page-hero h1 { font-size: clamp(2.75rem, 13vw, 4.4rem); }
  .hero-visual { height: 430px; }
  .visual-main { inset: 20px 0; padding: 23px; }
  .float-card--one { right: 0; }
  .process-row { grid-template-columns: 38px 1fr; }
  .status { display: none; }
  .page-hero { padding: 75px 0 65px; }
  .grid--2, .grid--3, .grid--4, .addon-grid, .metric-row { grid-template-columns: 1fr; }
  .product-card.featured { transform: none; }
  .product-card.featured:hover { transform: translateY(-5px); }
  .compare-row { grid-template-columns: 1fr; gap: 7px; }
  .compare-row--head { display: none; }
  .compare-row span::before { display: block; margin-bottom: 2px; color: var(--muted); content: attr(data-label); font-size: .64rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .lead-magnet { padding: 38px 25px; }
  .lead-magnet-grid, .contact-grid, .service-grid { grid-template-columns: 1fr; gap: 35px; }
  .inline-form { align-items: stretch; flex-direction: column; border-radius: 18px; }
  .inline-form input { min-height: 48px; }
  .service-aside { position: static; }
  .detail-list, .form-grid { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .form-card { padding: 27px 20px; }
  .chaos-hero { padding-top: 70px; }
  .chaos-stage { height: 470px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 480px) {
  .nav { min-height: 72px; }
  .nav-links.open { top: 72px; height: calc(100vh - 72px); }
  .hero-visual { height: 390px; }
  .visual-main { padding: 18px; }
  .float-card { padding: 11px 13px; }
  .button-row .btn { width: 100%; }
  .card, .product-card, .service-detail { padding: 25px; }
  .trust-strip, .footer-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:nth-child(3) { border-bottom: 1px solid var(--line); }
  .chaos-stage { height: 390px; transform: scale(.9); }
}

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