@font-face { font-family: "Poppins"; src: url("/static/fonts/poppins-400.ttf") format("truetype"); font-style: normal; font-weight: 400; font-display: swap; }
@font-face { font-family: "Poppins"; src: url("/static/fonts/poppins-500.ttf") format("truetype"); font-style: normal; font-weight: 500; font-display: swap; }
@font-face { font-family: "Poppins"; src: url("/static/fonts/poppins-600.ttf") format("truetype"); font-style: normal; font-weight: 600; font-display: swap; }
@font-face { font-family: "Poppins"; src: url("/static/fonts/poppins-700.ttf") format("truetype"); font-style: normal; font-weight: 700; font-display: swap; }
@font-face { font-family: "Poppins"; src: url("/static/fonts/poppins-800.ttf") format("truetype"); font-style: normal; font-weight: 800; font-display: swap; }

:root {
  color-scheme: light;
  --bg: #faf9f6;
  --surface: #ffffff;
  --surface-2: #f0efeb;
  --text: #111111;
  --muted: #5f5c55;
  --line: #dcd9d1;
  --accent: #ffc400;
  --accent-hover: #e8b200;
  --accent-soft: #fff3bd;
  --danger: #b42318;
  --danger-soft: #fff0ee;
  --dark: #111111;
  --on-dark: #faf9f6;
  --radius: 10px;
  --shadow: 0 22px 60px rgb(40 34 20 / 0.12);
  --page: min(1280px, calc(100vw - 64px));
  --page-wide: min(1640px, calc(100vw - 96px));
  --font: "Poppins", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--text); font-family: var(--font); font-size: 16px; line-height: 1.55; text-rendering: optimizeLegibility; }
img, video { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid color-mix(in srgb, var(--accent) 55%, transparent); outline-offset: 3px; }

.skip-link { position: fixed; left: 16px; top: 12px; z-index: 20; padding: 10px 14px; background: var(--dark); color: var(--on-dark); transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }
.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; }
.honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

.site-header { min-height: 82px; padding: 10px 32px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 34px; border-bottom: 1px solid var(--line); background: color-mix(in srgb, var(--bg) 94%, transparent); position: sticky; top: 0; z-index: 10; backdrop-filter: blur(16px); }
.home-header { position: absolute; inset: 0 0 auto; min-height: 106px; padding: 12px clamp(36px, 4.5vw, 86px); border-bottom: 0; background: color-mix(in srgb, var(--bg) 88%, transparent); backdrop-filter: blur(10px); }
.home-header .site-nav { justify-self: center; margin-left: 0; transform: none; }
.home-header .header-cta { min-width: 190px; }
.brand { display: inline-flex; align-items: center; gap: 11px; width: max-content; text-decoration: none; color: var(--text); line-height: 1; }
.brand img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; flex: 0 0 auto; }
.brand > span { display: grid; gap: 5px; }
.brand strong { font-size: 18px; font-weight: 800; letter-spacing: .025em; }
.brand small { color: var(--muted); font-size: 9px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.site-nav { justify-self: center; display: flex; align-items: center; gap: clamp(20px, 3vw, 44px); white-space: nowrap; }
.site-nav a { color: var(--muted); text-decoration: none; font-size: 14px; font-weight: 580; }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--text); }
.site-nav a[aria-current="page"] { text-decoration: underline; text-decoration-color: var(--accent); text-decoration-thickness: 3px; text-underline-offset: 8px; }
.nav-toggle { display: none; }
.header-actions { display: flex; align-items: center; gap: 18px; }
.header-phone { min-height: 44px; display: inline-flex; align-items: center; gap: 8px; color: var(--text); font-size: 14px; font-weight: 720; text-decoration: none; white-space: nowrap; }
.header-phone svg { width: 20px; height: 20px; fill: currentColor; }
.header-phone:hover { text-decoration: underline; text-decoration-color: var(--accent); text-decoration-thickness: 3px; text-underline-offset: 6px; }
.header-phone-mobile { display: none; }

.button { min-height: 48px; padding: 0 24px; border: 1px solid transparent; border-radius: 8px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; width: max-content; color: var(--text); background: transparent; font-weight: 720; text-decoration: none; cursor: pointer; white-space: nowrap; transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 120ms ease; }
.button:active { transform: translateY(1px); }
.button-primary { background: var(--accent); color: #111111; box-shadow: 0 8px 24px rgb(255 196 0 / .18); }
.button-primary:hover { background: var(--accent-hover); }
.button-secondary { border-color: var(--line); background: var(--surface); }
.button-secondary:hover { border-color: var(--text); }
.button-dark { min-height: 44px; background: var(--dark); color: var(--on-dark); }
.button-dark:hover { background: #2b2a27; }
.button-row, .step-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.text-link, .back-link { color: var(--text); font-weight: 720; text-decoration-color: var(--accent); text-underline-offset: 5px; text-decoration-thickness: 2px; }
.back-link { display: inline-block; margin-bottom: 30px; font-size: 14px; }

.section-shell { width: var(--page); margin-inline: auto; }
.hero { min-height: 720px; display: grid; grid-template-columns: minmax(0, 53.7fr) minmax(0, 46.3fr); border-bottom: 1px solid var(--line); background-image: radial-gradient(circle at 1px 1px, rgb(17 17 17 / .055) 1px, transparent 0); background-size: 26px 26px; }
.hero-copy { padding: 142px clamp(46px, 7vw, 134px) 54px; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.hero-copy { padding-right: clamp(30px, 3vw, 58px); }
.eyebrow { margin: 0 0 24px !important; color: var(--text) !important; font-size: 12px !important; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow::before { content: ""; display: inline-block; width: 32px; height: 4px; margin: 0 12px 3px 0; background: var(--accent); }
.hero h1 { max-width: 850px; margin: 0 0 30px; font-size: clamp(50px, 3.75vw, 74px); line-height: 1.01; letter-spacing: -0.055em; font-weight: 700; text-wrap: balance; }
.hero p { max-width: 610px; margin: 0 0 42px; color: var(--muted); font-size: clamp(16px, 1.2vw, 18px); line-height: 1.55; }
.hero .button { min-height: 56px; padding-inline: 40px; }
.hero-trust { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 10px 24px; color: var(--muted); font-size: 12px; font-weight: 600; }
.hero-trust span::before { content: "✓"; margin-right: 8px; color: var(--text); font-weight: 800; }
.hero-media { position: relative; min-height: 620px; overflow: hidden; background: var(--surface-2); }
.hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 65%, rgb(17 17 17 / .26)); pointer-events: none; }
.hero-media img, .hero-media video { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.82) contrast(1.03); }
.hero-location { position: absolute; z-index: 1; right: 28px; bottom: 28px; padding: 15px 18px; display: grid; gap: 3px; background: var(--accent); color: #111; box-shadow: var(--shadow); }
.hero-location strong { font-size: 13px; }
.hero-location span { font-size: 11px; }

.paths { width: var(--page-wide); padding: 76px 0 82px; display: grid; grid-template-columns: .92fr .96fr 1.08fr; gap: 0; }
.paths-intro { padding-right: clamp(42px, 5vw, 92px); }
.paths h2, .proof h2, .process h2, .business-feature h2, .final-cta h2, .page-head h1, .business-hero h1, .form-page h1, .result-page h1 { margin: 0; font-size: clamp(38px, 4.5vw, 68px); letter-spacing: -0.055em; line-height: 1.02; }
.paths h2 { max-width: 8ch; font-size: clamp(42px, 3vw, 50px); font-weight: 690; }
.paths-intro p { color: var(--muted); max-width: 30ch; margin-top: 25px; }
.path { position: relative; padding: 0 clamp(34px, 4.2vw, 82px); border-left: 1px solid var(--line); }
.path-household { border-left: 0; }
.path h3 { margin: 18px 0 14px; font-size: 23px; letter-spacing: -.03em; }
.path p { min-height: 92px; margin: 0 0 24px; color: var(--muted); max-width: 38ch; }
.path-icon { width: 44px; height: 44px; display: grid; place-items: center; color: var(--text); font-size: 42px; font-family: ui-monospace, monospace; font-weight: 400; line-height: 1; }
.path-icon-building { font-size: 36px; }
.path .text-link { display: inline-flex; min-height: 54px; padding: 0 42px; align-items: center; justify-content: center; background: var(--accent); color: #111; text-decoration: none; }
.path .text-link:hover { background: var(--accent-hover); }

.proof { padding: 104px 0; border-top: 1px solid var(--line); display: grid; grid-template-columns: 1.1fr .9fr; gap: 10vw; align-items: start; }
.proof-copy p { max-width: 55ch; color: var(--muted); font-size: 18px; }
.proof-list { border-top: 1px solid var(--line); }
.proof-list > div { display: grid; grid-template-columns: 54px 150px 1fr; align-items: center; gap: 20px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.proof-icon { width: 54px; height: 54px; display: grid; place-items: center; background: var(--accent); color: var(--text); transition: transform 220ms ease; }
.proof-list > div:hover .proof-icon { transform: rotate(-3deg) scale(1.04); }
.proof-icon svg { width: 30px; height: 30px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.proof-description { color: var(--muted); }

.process { padding: 112px 0; }
.process h2 { max-width: 800px; margin-bottom: 64px; }
.process ol { position: relative; list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1.1fr .9fr 1fr; border-top: 1px solid var(--line); }
.process ol::before { content: ""; position: absolute; top: 61px; left: 36px; right: 36px; height: 3px; background: var(--accent); }
.process li { position: relative; padding: 28px 40px 0 0; min-height: 250px; }
.process li + li { padding-left: 40px; border-left: 1px solid var(--line); }
.process-icon { position: relative; z-index: 1; width: 70px; height: 70px; margin-bottom: 28px; display: grid; place-items: center; background: var(--accent); color: var(--text); box-shadow: 0 0 0 10px var(--bg); transition: transform 220ms ease; }
.process li:hover .process-icon { transform: translateY(-4px); }
.process-icon b { position: absolute; top: 7px; left: 8px; font-size: 9px; font-weight: 800; letter-spacing: .08em; }
.process-icon svg { width: 38px; height: 38px; margin: 8px 0 0 8px; fill: none; stroke: currentColor; stroke-width: 1.65; stroke-linecap: round; stroke-linejoin: round; }
.process strong, .process span { display: block; }
.process strong { font-size: 22px; margin-bottom: 12px; }
.process span { color: var(--muted); }

.business-feature { display: grid; grid-template-columns: 1.12fr .88fr; min-height: 650px; margin-bottom: 112px; background: var(--surface-2); }
.business-image { overflow: hidden; }
.business-image img { width: 100%; height: 100%; object-fit: cover; }
.business-copy { padding: clamp(48px, 7vw, 96px); align-self: center; }
.business-copy p { color: var(--muted); font-size: 18px; }
.plain-checks { list-style: none; padding: 0; margin: 30px 0 38px; display: grid; gap: 10px; }
.plain-checks li::before { content: "✓"; color: #9a7600; font-weight: 800; margin-right: 10px; }
.final-cta { position: relative; margin-bottom: 120px; padding: 88px; text-align: center; overflow: hidden; background: var(--dark); color: var(--on-dark); }
.final-cta::after { content: ""; position: absolute; width: 190px; height: 190px; right: -54px; bottom: -70px; border-radius: 50%; background: var(--accent); }
.final-cta p { margin: 18px auto 30px; max-width: 52ch; color: #c9c6bd; }
.final-cta .button { position: relative; z-index: 1; margin-inline: auto; background: var(--accent); color: #111; }

.page-head { padding: 96px 0 68px; }
.page-head h1 { max-width: 900px; }
.page-head p { max-width: 620px; margin: 24px 0 0; color: var(--muted); font-size: 19px; }
.services-hero { padding: 86px 0 96px; display: grid; grid-template-columns: minmax(0, 1.18fr) minmax(340px, .82fr); gap: clamp(50px, 8vw, 120px); align-items: stretch; }
.services-hero-copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.services-hero h1 { max-width: 780px; margin: 0; font-size: clamp(52px, 5.5vw, 82px); font-weight: 760; letter-spacing: -.065em; line-height: .98; text-wrap: balance; }
.services-hero-copy > p:not(.eyebrow) { max-width: 590px; margin: 25px 0 35px; color: var(--muted); font-size: 18px; }
.services-hero-actions .button { min-height: 56px; padding-inline: 30px; }
.services-price-button { border-color: var(--dark); background: var(--dark); color: var(--on-dark); }
.services-price-button b { font-size: 19px; font-weight: 500; }
.services-price-button:hover { background: #2b2a27; }
.services-price-panel { position: relative; min-height: 360px; padding: 38px; display: flex; flex-direction: column; align-items: flex-start; overflow: hidden; background: var(--accent); color: var(--text); text-decoration: none; transition: transform 200ms ease, box-shadow 200ms ease; }
.services-price-panel:hover { transform: translateY(-4px); box-shadow: 0 22px 55px rgb(116 87 0 / .16); }
.services-price-panel::after { content: ""; position: absolute; width: 220px; height: 220px; right: -72px; bottom: -90px; border: 46px solid rgb(17 17 17 / .08); border-radius: 50%; }
.services-price-panel > span { font-size: 12px; font-weight: 780; letter-spacing: .1em; text-transform: uppercase; }
.services-price-panel > strong { max-width: 360px; margin-top: 54px; font-size: clamp(31px, 3vw, 45px); letter-spacing: -.05em; line-height: 1.04; }
.services-price-panel > i { margin-top: auto; font-size: 14px; font-style: normal; font-weight: 600; }
.services-price-panel > b { position: absolute; right: 36px; bottom: 30px; z-index: 1; font-size: 38px; font-weight: 400; }
.services-picker { padding: 88px 0 104px; border-top: 1px solid var(--line); }
.services-picker-head { margin-bottom: 48px; display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: end; }
.services-picker-head h2 { margin: 0; font-size: clamp(40px, 4vw, 58px); letter-spacing: -.055em; line-height: 1.02; }
.services-picker-head > p { max-width: 480px; margin: 0; color: var(--muted); }
.services-card-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--line); }
.services-card { min-height: 290px; padding: 34px 38px 30px 0; display: flex; flex-direction: column; border-bottom: 1px solid var(--line); transition: background-color 180ms ease; }
.services-card:nth-child(even) { padding-left: 38px; border-left: 1px solid var(--line); }
.services-card:hover { background: color-mix(in srgb, var(--accent-soft) 25%, transparent); }
.services-card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.services-card-icon { width: 64px; height: 64px; display: grid; place-items: center; background: var(--accent); transition: transform 200ms ease; }
.services-card:hover .services-card-icon { transform: translateY(-3px) rotate(-2deg); }
.services-card-icon svg, .services-next-icon svg { width: 38px; height: 38px; fill: none; stroke: currentColor; stroke-width: 1.65; stroke-linecap: round; stroke-linejoin: round; }
.services-card-price { padding: 7px 10px; background: var(--surface-2); font-size: 12px; font-weight: 750; }
.services-card h3 { margin: 25px 0 9px; font-size: 27px; letter-spacing: -.04em; }
.services-card > p { max-width: 52ch; margin: 0; color: var(--muted); font-size: 14px; }
.services-card-footer { margin-top: auto; padding-top: 28px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.services-card-footer > span { color: var(--muted); font-size: 12px; font-weight: 650; }
.services-card-footer a { font-size: 13px; font-weight: 750; text-decoration-color: var(--accent); text-underline-offset: 4px; }
.services-price-cta { margin-bottom: 28px; padding: 48px 54px; display: flex; align-items: center; justify-content: space-between; gap: 36px; background: var(--dark); color: var(--on-dark); }
.services-price-cta span { color: var(--accent); font-size: 12px; font-weight: 780; letter-spacing: .09em; text-transform: uppercase; }
.services-price-cta h2 { max-width: 720px; margin: 8px 0 0; font-size: clamp(31px, 3.4vw, 48px); letter-spacing: -.05em; line-height: 1.05; }
.services-price-cta .button { flex: 0 0 auto; min-height: 56px; padding-inline: 30px; }
.services-next { margin-bottom: 112px; display: grid; grid-template-columns: 1.05fr .95fr; }
.services-next article { min-height: 350px; padding: 46px; display: flex; flex-direction: column; align-items: flex-start; }
.services-advice-card { background: var(--accent-soft); }
.services-business-card { background: var(--surface-2); }
.services-next-icon { width: 62px; height: 62px; display: grid; place-items: center; background: var(--accent); }
.services-next article > div { margin-top: 30px; }
.services-next h2 { margin: 0; font-size: 34px; letter-spacing: -.045em; }
.services-next article > div > p:last-child { max-width: 48ch; margin: 12px 0 26px; color: var(--muted); }
.services-next article > .button { margin-top: auto; }
.service-groups { padding-bottom: 120px; display: grid; grid-template-columns: 1.15fr .85fr; gap: 24px; }
.service-groups article { padding: 44px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); }
.service-groups article:nth-child(3n) { grid-column: 1 / -1; }
.service-groups h2, .service-groups h3 { margin: 0 0 10px; font-size: 30px; letter-spacing: -.03em; }
.service-groups p { color: var(--muted); }
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.service-tags span { padding: 8px 12px; border: 1px solid var(--line); border-radius: 8px; font-size: 14px; }
.service-tags a { padding: 8px 12px; color: var(--text); font-size: 14px; font-weight: 700; text-decoration-color: var(--accent); text-underline-offset: 4px; }
.service-advice { border-color: #e5c85b !important; background: var(--accent-soft) !important; }
.muted { color: var(--muted); }

.service-overview { padding-bottom: 112px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.service-overview article { min-height: 270px; padding: 38px 34px 38px 0; border-bottom: 1px solid var(--line); }
.service-overview article:not(:nth-child(3n + 1)) { padding-left: 34px; border-left: 1px solid var(--line); }
.service-overview span, .about-audiences span { color: #8c6b00; font-size: 13px; font-weight: 800; letter-spacing: .08em; }
.service-overview h2 { margin: 58px 0 14px; font-size: 28px; letter-spacing: -.035em; }
.service-overview p { margin: 0; color: var(--muted); }
.service-catalog { padding-top: 18px; }
.section-heading-row { margin-bottom: 42px; display: flex; align-items: end; justify-content: space-between; gap: 24px; }
.section-heading-row h2 { margin: 0; font-size: clamp(38px, 4vw, 58px); letter-spacing: -.05em; }
.section-heading-row p { margin: 10px 0 0; color: var(--muted); }

.pricing-groups { display: grid; gap: 36px; padding-bottom: 80px; }
.price-group { display: grid; grid-template-columns: .72fr 1.28fr; gap: 8vw; padding-top: 36px; border-top: 1px solid var(--line); }
.price-group h2 { margin: 0; font-size: 31px; letter-spacing: -.03em; }
.price-group p { color: var(--muted); }
.price-group dl { margin: 0; }
.price-group dl div { display: grid; grid-template-columns: 1fr auto; gap: 20px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.price-group dt { font-weight: 670; }
.price-group dt small { display: block; margin-top: 4px; color: var(--muted); font-weight: 400; }
.price-group dd { margin: 0; font-weight: 760; }
.price-count { display: inline-block; margin-top: 18px; color: var(--muted); font-size: 13px; font-weight: 700; }
.price-tools { position: sticky; top: 82px; z-index: 4; margin-bottom: 64px; padding: 24px; background: color-mix(in srgb, var(--surface) 96%, transparent); border: 1px solid var(--line); box-shadow: 0 14px 40px rgb(40 34 20 / .07); backdrop-filter: blur(12px); }
.price-tools label { display: block; margin-bottom: 9px; font-weight: 720; }
.price-tools input { max-width: 620px; }
.price-tools > p { min-height: 20px; margin: 8px 0 0; color: var(--muted); font-size: 13px; }
.price-tools nav { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 7px; }
.price-tools nav a { padding: 7px 10px; border: 1px solid var(--line); border-radius: 6px; color: var(--muted); text-decoration: none; font-size: 12px; font-weight: 650; }
.price-tools nav a:hover { border-color: var(--text); color: var(--text); }
.price-group { scroll-margin-top: 245px; }
.price-empty { padding: 46px; background: var(--accent-soft); }
.price-empty h2 { margin-top: 0; }
.price-notes { padding: 76px 0 100px; border-top: 1px solid var(--line); }
.price-notes h2 { margin: 0 0 42px; font-size: 42px; letter-spacing: -.045em; }
.price-notes > div { display: grid; grid-template-columns: repeat(3, 1fr); }
.price-notes p { margin: 0; padding-right: 34px; }
.price-notes p + p { padding-left: 34px; border-left: 1px solid var(--line); }
.price-notes strong, .price-notes span { display: block; }
.price-notes span { margin-top: 10px; color: var(--muted); }
.empty-note, .empty-state { padding: 26px; background: var(--surface-2); border-radius: var(--radius); }
.empty-state { max-width: 680px; }
.empty-state h2 { margin-top: 0; }
.compact-cta { margin-bottom: 120px; padding: 40px; display: flex; align-items: center; justify-content: space-between; gap: 24px; border: 1px solid var(--line); }

.timeline { padding: 10px 0 120px; display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.timeline article { min-height: 310px; padding: 38px 42px 42px; border-top: 1px solid var(--line); transition: background-color 180ms ease; }
.timeline article:hover { background: color-mix(in srgb, var(--accent-soft) 30%, transparent); }
.timeline article:nth-child(even) { border-left: 1px solid var(--line); }
.timeline-meta { display: flex; align-items: center; gap: 18px; }
.timeline-icon { position: relative; width: 66px; height: 66px; display: grid; place-items: center; flex: 0 0 auto; background: var(--accent); color: var(--text); transition: transform 220ms ease; }
.timeline article:hover .timeline-icon { transform: translateY(-3px) rotate(-2deg); }
.timeline-icon b { position: absolute; top: 6px; left: 7px; font-size: 9px; font-weight: 800; letter-spacing: .08em; }
.timeline-icon svg { width: 36px; height: 36px; margin: 8px 0 0 7px; fill: none; stroke: currentColor; stroke-width: 1.65; stroke-linecap: round; stroke-linejoin: round; }
.timeline-kicker { color: #8c6b00; font-size: 13px; font-weight: 800; letter-spacing: .06em; }
.timeline h2 { margin: 32px 0 12px; font-size: 29px; }
.timeline p { color: var(--muted); max-width: 48ch; }
.contact-layout { padding-bottom: 120px; display: grid; grid-template-columns: 1.15fr .85fr; gap: 32px; }
.contact-layout > * { min-height: 360px; padding: 48px; border: 1px solid var(--line); }
.contact-layout aside { border-color: #e5c85b; background: var(--accent-soft); }
.contact-layout h2 { margin-top: 0; font-size: 30px; }
.contact-layout p { color: var(--muted); }
.preline { white-space: pre-line; }
.legal { max-width: 820px; padding: 90px 0 120px; }
.legal h1 { font-size: clamp(42px, 5vw, 68px); letter-spacing: -.05em; }
.legal h2 { margin-top: 48px; }
.legal p { color: var(--muted); }
.notice { padding: 20px; border-left: 4px solid var(--accent); background: var(--accent-soft); color: var(--text) !important; }
.legal-terms { max-width: 940px; }
.legal-terms header { margin-bottom: 46px; }
.legal-terms section { scroll-margin-top: 110px; padding-top: 6px; }
.legal-nav { padding: 20px 0; display: flex; flex-wrap: wrap; gap: 8px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.legal-nav a { padding: 7px 10px; border-radius: 6px; background: var(--surface-2); color: var(--muted); font-size: 13px; font-weight: 650; text-decoration: none; }
.legal-nav a:hover { color: var(--text); }
.legal-form { margin-top: 24px; padding: 24px; background: var(--surface-2); border-left: 4px solid var(--accent); }
.legal-form h3 { margin-top: 0; }
.check-row a { text-decoration-color: var(--accent); text-underline-offset: 3px; }

.business-hero { padding: 72px 0 100px; display: grid; grid-template-columns: .9fr 1.1fr; gap: 72px; align-items: center; }
.business-hero p { color: var(--muted); font-size: 19px; margin: 24px 0 34px; }
.business-hero img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.b2b-needs { padding: 84px 0; border-top: 1px solid var(--line); }
.b2b-needs h2 { font-size: 42px; letter-spacing: -.04em; }
.b2b-needs > div { margin-top: 50px; display: grid; grid-template-columns: 1.1fr .9fr 1fr; }
.b2b-needs p { padding-right: 36px; }
.b2b-needs p + p { padding-left: 36px; border-left: 1px solid var(--line); }
.b2b-needs strong, .b2b-needs span { display: block; }
.b2b-needs span { margin-top: 10px; color: var(--muted); }
.b2b-need-icon { width: 48px; height: 48px; margin: 0 0 20px; display: grid; place-items: center; background: var(--accent); color: var(--text); font-style: normal; transition: transform 220ms ease; }
.b2b-needs p:hover .b2b-need-icon { transform: translateY(-3px); }
.b2b-need-icon svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.b2b-cta { margin-bottom: 120px; padding: 72px; background: var(--surface-2); }
.b2b-cta h2 { margin: 0; font-size: 44px; letter-spacing: -.04em; }
.b2b-cta p { color: var(--muted); margin: 14px 0 28px; }
.b2b-segments { padding: 84px 0; border-top: 1px solid var(--line); }
.b2b-segments > h2 { max-width: 680px; margin: 0 0 50px; font-size: 44px; letter-spacing: -.045em; }
.b2b-segments > div { display: grid; grid-template-columns: repeat(3, 1fr); }
.b2b-segments article { padding-right: 36px; }
.b2b-segments article + article { padding-left: 36px; border-left: 1px solid var(--line); }
.b2b-segment-icon { width: 66px; height: 66px; margin-bottom: 34px; display: grid; place-items: center; background: var(--accent); color: var(--text); transition: transform 220ms ease; }
.b2b-segments article:hover .b2b-segment-icon { transform: translateY(-4px) rotate(-2deg); }
.b2b-segment-icon svg { width: 38px; height: 38px; fill: none; stroke: currentColor; stroke-width: 1.65; stroke-linecap: round; stroke-linejoin: round; }
.b2b-segments h3 { margin: 0 0 12px; font-size: 23px; }
.b2b-segments p { margin: 0; color: var(--muted); }

.about-head { padding-bottom: 84px; }
.about-head > p:last-child { max-width: 850px; }
.about-principles { padding: 100px 0; display: grid; grid-template-columns: .92fr 1.08fr; gap: 10vw; border-top: 1px solid var(--line); }
.about-principles h2 { margin: 0; font-size: clamp(38px, 4vw, 58px); letter-spacing: -.05em; line-height: 1.04; }
.about-principles > div p { max-width: 52ch; color: var(--muted); font-size: 18px; }
.about-principles dl { margin: 0; border-top: 1px solid var(--line); }
.about-principles dl div { padding: 25px 0; border-bottom: 1px solid var(--line); }
.about-principles dt { font-weight: 750; }
.about-principles dd { margin: 7px 0 0; color: var(--muted); }
.about-audiences { margin-bottom: 100px; display: grid; grid-template-columns: 1fr 1fr; }
.about-audiences article { min-height: 340px; padding: 50px; background: var(--surface-2); }
.about-audiences article + article { background: var(--dark); color: var(--on-dark); }
.about-audiences h2 { margin: 70px 0 12px; font-size: 35px; letter-spacing: -.04em; }
.about-audiences p { max-width: 54ch; color: var(--muted); }
.about-audiences article + article p { color: #bbb8af; }
.about-audiences article + article .text-link { color: var(--on-dark); }

.order-shell { min-height: calc(100dvh - 72px); display: grid; grid-template-columns: minmax(0, 1fr) 390px; }
.order-main, .order-summary { min-width: 0; }
.order-main { padding: 54px clamp(32px, 7vw, 110px) 90px; }
.form-progress { display: grid; grid-template-columns: repeat(4, 1fr); margin-bottom: 60px; border-bottom: 1px solid var(--line); }
.form-progress span { position: relative; padding: 0 0 18px; color: var(--muted); font-size: 14px; font-weight: 650; }
.form-progress span.active { color: var(--accent); }
.form-progress span.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 3px; background: var(--accent); }
.form-step { min-width: 0; margin: 0; padding: 0; border: 0; }
.js .form-step { display: none; }
.js .form-step.active { display: block; }
.form-step legend, .form-page h1 { margin: 0; padding: 0; font-size: clamp(36px, 4vw, 58px); font-weight: 760; letter-spacing: -.05em; line-height: 1.04; }
.step-lead, .form-page header > p { max-width: 650px; margin: 18px 0 34px; color: var(--muted); font-size: 18px; }
.order-stage-head { max-width: 760px; margin-bottom: 30px; }
.order-stage-head h1 { max-width: 720px; margin: 0; font-size: clamp(38px, 4.4vw, 60px); font-weight: 760; letter-spacing: -.055em; line-height: 1.02; text-wrap: balance; }
.order-stage-head > p:last-child { max-width: 650px; margin: 17px 0 0; color: var(--muted); font-size: 17px; }
.order-stage-kicker { margin: 0 0 13px; color: #816000; font-size: 12px; font-weight: 780; letter-spacing: .08em; text-transform: uppercase; }
.order-category-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.order-category-card { position: relative; cursor: pointer; }
.order-category-card > input { position: absolute; opacity: 0; pointer-events: none; }
.order-category-card-body { position: relative; min-height: 142px; padding: 19px; display: grid; grid-template-columns: 50px minmax(0, 1fr); align-items: start; gap: 15px; border: 2px solid var(--line); border-radius: var(--radius); background: var(--surface); transition: border-color 160ms ease, background-color 160ms ease, transform 120ms ease; }
.order-category-card:hover .order-category-card-body { border-color: #aaa49a; }
.order-category-card:active .order-category-card-body { transform: translateY(1px); }
.order-category-card > input:focus-visible + .order-category-card-body { outline: 3px solid color-mix(in srgb, var(--accent) 45%, transparent); outline-offset: 3px; }
.order-category-card > input:checked + .order-category-card-body { border-color: var(--accent); background: var(--accent-soft); }
.order-category-icon { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 8px; background: var(--surface-2); color: var(--text); }
.order-category-card > input:checked + .order-category-card-body .order-category-icon { background: var(--accent); }
.order-category-icon svg { width: 30px; height: 30px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.order-category-copy { min-width: 0; display: grid; gap: 5px; }
.order-category-copy strong { padding-right: 25px; font-size: 17px; line-height: 1.35; }
.order-category-copy small { overflow: hidden; color: var(--muted); font-size: 13px; text-overflow: ellipsis; white-space: nowrap; }
.order-category-copy em { color: var(--muted); font-size: 12px; font-style: normal; font-weight: 650; }
.order-category-check { position: absolute; top: 12px; right: 12px; width: 25px; height: 25px; display: none; place-items: center; border-radius: 50%; background: var(--dark); color: var(--on-dark); font-size: 13px; font-weight: 800; }
.order-category-card > input:checked + .order-category-card-body .order-category-check { display: grid; }
.category-stage-actions { margin-top: 22px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.category-stage-actions .button-primary:disabled { opacity: .42; cursor: not-allowed; }
.category-stage.has-selection .category-stage-actions { position: fixed; z-index: 9; left: 50%; bottom: 22px; width: min(760px, calc(100vw - 40px)); margin: 0; padding: 12px; border: 1px solid var(--line); border-radius: 12px; background: color-mix(in srgb, var(--surface) 96%, transparent); box-shadow: 0 18px 55px rgb(36 31 21 / .18); transform: translateX(-50%); backdrop-filter: blur(16px); }
.advice-link { min-height: 42px; padding: 0; color: var(--muted); text-decoration: underline; text-decoration-color: var(--accent); text-underline-offset: 5px; }
.advice-link:hover { color: var(--text); }
.catalog-stage-toolbar { margin-bottom: 28px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.selected-category-labels { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 6px; }
.selected-category-labels span { padding: 6px 9px; border-radius: 999px; background: var(--accent-soft); font-size: 11px; font-weight: 650; }
.catalog-search-field { position: relative; margin-bottom: 8px; }
.catalog-search-field > svg { position: absolute; left: 17px; top: 50%; width: 23px; height: 23px; transform: translateY(-50%); fill: none; stroke: var(--muted); stroke-width: 1.8; stroke-linecap: round; }
.catalog-search-field input { min-height: 58px; padding-left: 52px; border-width: 2px; }
.catalog-result-label { min-height: 22px; margin: 8px 0 20px; color: var(--muted); font-size: 13px; }
.catalog-group { margin: 0 0 32px; padding-top: 24px; border-top: 1px solid var(--line); }
.catalog-group-head { margin-bottom: 14px; display: flex; align-items: end; justify-content: space-between; gap: 16px; }
.catalog-group-head h2 { margin: 0; font-size: 25px; letter-spacing: -.035em; }
.catalog-group-head p { margin: 3px 0 0; color: var(--muted); font-size: 12px; }
.catalog-product-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.catalog-product { min-width: 0; min-height: 105px; padding: 14px; display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 12px; border: 1px solid var(--line); border-radius: 9px; background: var(--surface); transition: border-color 160ms ease, background-color 160ms ease; }
.catalog-product:hover { border-color: #aaa49a; }
.catalog-product.is-selected { border-color: var(--accent); background: color-mix(in srgb, var(--accent-soft) 54%, var(--surface)); }
.catalog-product-copy { min-width: 0; display: grid; gap: 3px; }
.catalog-product-copy strong { overflow: hidden; font-size: 14px; line-height: 1.35; text-overflow: ellipsis; white-space: nowrap; }
.catalog-product-copy small { overflow: hidden; color: var(--muted); font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }
.catalog-product-copy span { color: #765900; font-size: 12px; font-weight: 750; }
.catalog-add, .catalog-stepper button { min-height: 38px; padding: 0 12px; border: 1px solid var(--line); border-radius: 7px; background: var(--surface); color: var(--text); font: inherit; font-size: 12px; font-weight: 720; cursor: pointer; }
.catalog-add:hover, .catalog-stepper button:hover { border-color: var(--accent); }
.catalog-stepper { display: grid; grid-template-columns: 36px 26px 36px; align-items: center; text-align: center; }
.catalog-stepper button { padding: 0; font-size: 18px; }
.catalog-stepper output { font-size: 13px; font-weight: 750; }
.js .catalog-quantity-fallback { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.catalog-show-all { width: 100%; min-height: 43px; margin-top: 10px; border: 1px solid var(--line); border-radius: 8px; background: transparent; color: var(--text); font: inherit; font-size: 13px; font-weight: 700; cursor: pointer; }
.catalog-show-all:hover { border-color: var(--text); }
.catalog-empty { padding: 24px; background: var(--accent-soft); }
.catalog-actions { justify-content: flex-end; }
.advice-stage { max-width: 760px; padding: 30px 0; }
.choice-row { margin-bottom: 14px; padding: 22px 24px; display: flex; align-items: center; gap: 18px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); cursor: pointer; transition: border-color 160ms ease, background-color 160ms ease; }
.choice-row:hover { border-color: color-mix(in srgb, var(--accent) 45%, var(--line)); }
.choice-row.selected { border-color: var(--accent); background: var(--accent-soft); }
.choice-row input { width: 19px; height: 19px; accent-color: var(--accent); }
.choice-row span { display: grid; gap: 3px; }
.choice-row strong { font-size: 18px; }
.choice-row small { color: var(--muted); }
.catalog-items { margin-top: 34px; }
.catalog-group { margin-bottom: 30px; }
.catalog-group h2 { font-size: 21px; }
.catalog-row { display: grid; grid-template-columns: 1fr 160px 84px; align-items: center; gap: 16px; padding: 17px 0; border-bottom: 1px solid var(--line); }
.catalog-row div small { display: block; color: var(--muted); }
.catalog-row > span { text-align: right; font-weight: 650; }
.catalog-row input { width: 76px; text-align: center; }
.step-actions { margin-top: 36px; }

.field { display: grid; gap: 8px; margin-bottom: 22px; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field label { font-weight: 680; }
input, select, textarea { width: 100%; border: 1px solid var(--line); border-radius: 8px; background: var(--surface); color: var(--text); }
input, select { min-height: 48px; padding: 0 13px; }
textarea { padding: 13px; resize: vertical; }
input::placeholder, textarea::placeholder { color: color-mix(in srgb, var(--muted) 88%, var(--bg)); opacity: 1; }
input:focus, select:focus, textarea:focus { border-color: var(--accent); outline: 3px solid color-mix(in srgb, var(--accent) 20%, transparent); }
.upload-field { gap: 0; margin-top: 34px; padding: 26px; border: 1px solid var(--line); border-top: 4px solid var(--accent); border-radius: var(--radius); background: var(--surface); }
.upload-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; margin-bottom: 20px; }
.upload-heading > div { display: grid; gap: 5px; }
.upload-heading strong { font-size: 19px; }
.upload-kicker { color: #816000; font-size: 12px; font-weight: 780; letter-spacing: .09em; text-transform: uppercase; }
.upload-count { flex: 0 0 auto; padding: 5px 9px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: 12px; font-weight: 750; }
.upload-dropzone { position: relative; min-height: 170px; padding: 28px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 20px; border: 1px dashed #aaa49a; border-radius: 8px; background: color-mix(in srgb, var(--surface-2) 56%, var(--surface)); cursor: pointer; transition: border-color 160ms ease, background-color 160ms ease; }
.upload-dropzone:hover, .upload-dropzone.is-dragging { border-color: var(--accent); background: var(--accent-soft); }
.upload-dropzone.is-dragging { border-style: solid; }
.upload-dropzone.is-full { opacity: .62; }
.upload-plus { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; background: var(--accent); color: #191919; font-size: 32px; font-weight: 420; line-height: 1; }
.upload-prompt { display: grid; gap: 5px; }
.upload-prompt strong { font-size: 17px; }
.upload-prompt small { color: var(--muted); font-size: 14px; font-weight: 500; }
.upload-select { pointer-events: none; }
.upload-native { margin-top: 18px; }
.js .upload-native { position: absolute; width: 1px; height: 1px; min-height: 1px; padding: 0; opacity: 0; overflow: hidden; clip: rect(0 0 0 0); }
.upload-specs { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 12px; color: var(--muted); font-size: 12px; }
.upload-specs span + span::before { content: "·"; margin-right: 18px; color: #aaa49a; }
.upload-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-top: 20px; }
.upload-list:empty { display: none; }
.upload-item { min-width: 0; padding: 9px; display: grid; grid-template-columns: 64px minmax(0, 1fr) auto; align-items: center; gap: 11px; border: 1px solid var(--line); border-radius: 8px; background: var(--bg); }
.upload-item img { width: 64px; height: 64px; display: block; border-radius: 6px; object-fit: cover; background: var(--surface-2); }
.upload-item-copy { min-width: 0; display: grid; gap: 5px; }
.upload-item-copy strong { overflow: hidden; font-size: 13px; text-overflow: ellipsis; white-space: nowrap; }
.upload-item-copy > span:not(.upload-progress) { color: var(--muted); font-size: 11px; }
.upload-progress { height: 3px; overflow: hidden; border-radius: 3px; background: #dedbd4; }
.upload-progress i { height: 100%; display: block; background: var(--accent); transform: scaleX(.04); transform-origin: left center; transition: transform 120ms linear; }
.upload-item.is-complete .upload-progress i { transform: scaleX(1); }
.upload-item.is-error { border-color: color-mix(in srgb, var(--danger) 48%, var(--line)); background: var(--danger-soft); }
.upload-item.is-error .upload-progress i { background: var(--danger); }
.upload-remove { padding: 8px; border: 0; background: transparent; color: var(--muted); font: inherit; font-size: 11px; font-weight: 700; cursor: pointer; }
.upload-remove:hover { color: var(--danger); }
.upload-remove:disabled { opacity: .45; cursor: wait; }
.upload-error { display: none; margin: 12px 0 0; color: var(--danger); font-size: 13px; font-weight: 680; }
.upload-error.is-visible { display: block; }
.upload-retention { margin: 18px 0 0; padding-top: 16px; border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; line-height: 1.55; }
.pickup-fields { margin-top: 26px; padding: 24px; background: var(--surface-2); border-radius: var(--radius); }
.check-row { display: flex; align-items: flex-start; gap: 12px; margin: 24px 0; color: var(--muted); cursor: pointer; }
.check-row input { width: 19px; min-height: 19px; margin-top: 3px; accent-color: var(--accent); }
.field-error { margin: 0; color: var(--danger); font-size: 14px; font-weight: 650; }
.form-alert { display: grid; gap: 2px; margin-bottom: 26px; padding: 16px 18px; color: var(--danger); background: var(--danger-soft); border-left: 4px solid var(--danger); }
.legal-note { color: var(--muted); font-size: 13px; }
.order-summary { padding: 70px 42px; background: var(--surface-2); border-left: 1px solid var(--line); }
.order-summary h2 { margin-top: 0; font-size: 25px; }
.order-summary p, .order-summary li { color: var(--muted); }
.order-summary ol { padding-left: 20px; }
.summary-item { display: flex; justify-content: space-between; gap: 16px; padding: 10px 0; border-bottom: 1px solid var(--line); }
.summary-total { display: flex; justify-content: space-between; gap: 16px; margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--line); }
.summary-note { font-size: 13px; }

.form-page { max-width: 920px; padding: 72px 0 120px; }
.form-page header { margin-bottom: 46px; }
.business-form { padding: clamp(28px, 5vw, 54px); background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); }
.business-form h2 { margin: 46px 0 22px; font-size: 28px; }
.result-page { max-width: 760px; min-height: 70dvh; padding: 110px 0; }
.result-page > p { color: var(--muted); font-size: 18px; }
.reference-box { display: grid; gap: 6px; margin: 36px 0; padding: 24px; background: var(--surface-2); border-radius: var(--radius); }
.reference-box span { color: var(--muted); }
.reference-box strong { font-size: 25px; letter-spacing: .02em; }

.site-footer { padding: 70px max(32px, calc((100vw - min(1280px, calc(100vw - 64px))) / 2)); display: grid; grid-template-columns: 1.05fr .9fr 1.05fr auto; gap: clamp(34px, 4vw, 64px); background: var(--dark); color: var(--on-dark); }
.brand-light { color: var(--on-dark); }
.footer-brand p { max-width: 330px; color: #b9c0cb; }
.site-footer nav { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 40px; align-content: start; }
.site-footer nav a { color: #d9dde4; text-decoration: none; }
.site-footer nav a:hover, .footer-copy a:hover { color: var(--accent); }
.footer-location h2 { margin: 0 0 14px; color: var(--on-dark); font-size: 17px; letter-spacing: -.02em; }
.footer-location p { margin: 0 0 20px; color: #b9c0cb; }
.footer-map-link { min-height: 44px; padding: 0 15px; border: 1px solid #50545b; border-radius: 8px; display: inline-flex; align-items: center; gap: 10px; color: var(--on-dark); font-size: 13px; font-weight: 700; text-decoration: none; transition: border-color 180ms ease, background-color 180ms ease; }
.footer-map-link:hover { border-color: var(--accent); background: rgb(255 196 0 / .08); }
.footer-copy { margin: 0; color: #9ea6b3; font-size: 13px; }
.footer-copy a { color: #d9dde4; text-decoration: none; }

[hidden] { display: none !important; }

@media (max-width: 1020px) {
  .site-header { grid-template-columns: auto auto 1fr; }
  .nav-toggle { justify-self: end; display: inline-flex; border: 1px solid var(--line); border-radius: 8px; padding: 8px 12px; background: var(--surface); color: var(--text); }
  .site-nav { display: none; position: absolute; top: 72px; left: 0; right: 0; padding: 24px 32px; background: var(--surface); border-bottom: 1px solid var(--line); box-shadow: var(--shadow); }
  .site-nav.open { display: grid; gap: 18px; }
  .header-actions { grid-column: 3; grid-row: 1; justify-self: end; margin-right: 80px; }
  .header-phone-number { display: none; }
  .header-phone-mobile { display: inline; }
  .hero { grid-template-columns: 1fr 1fr; }
  .hero-copy { padding-inline: 40px; }
  .paths { grid-template-columns: 1fr 1fr; }
  .paths-intro { grid-column: 1 / -1; margin-bottom: 54px; }
  .proof { gap: 50px; }
  .business-feature { grid-template-columns: 1fr 1fr; }
  .order-shell { grid-template-columns: 1fr 320px; }
  .order-main { padding-inline: 38px; }
  .service-overview { grid-template-columns: 1fr 1fr; }
  .service-overview article:not(:nth-child(3n + 1)) { padding-left: 0; border-left: 0; }
  .service-overview article:nth-child(even) { padding-left: 30px; border-left: 1px solid var(--line); }
  .services-hero { grid-template-columns: 1fr 360px; gap: 42px; }
  .services-picker-head { gap: 35px; }
  .site-footer { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
  :root { --page: calc(100vw - 32px); --page-wide: calc(100vw - 32px); }
  .site-header { height: 64px; padding: 0 16px; gap: 12px; }
  .site-header.home-header { min-height: 64px; padding: 0 16px; }
  .brand { font-size: 23px; }
  .header-actions { grid-column: 2; margin-right: 0; gap: 8px; }
  .header-cta { display: none; }
  .header-phone { min-height: 40px; padding: 0 10px; border: 1px solid var(--line); border-radius: 8px; background: var(--surface); }
  .nav-toggle { grid-column: 3; }
  .site-nav { top: 64px; padding-inline: 20px; }
  .hero { height: auto; min-height: auto; grid-template-columns: 1fr; }
  .hero-copy { min-height: 570px; padding: 118px 20px 58px; }
  .hero h1 { font-size: clamp(45px, 13vw, 62px); }
  .hero-media { min-height: 430px; }
  .button-row { align-items: stretch; }
  .button-row .button { width: 100%; }
  .paths, .proof, .business-feature, .business-hero, .contact-layout, .price-group, .about-principles, .about-audiences { grid-template-columns: 1fr; }
  .paths, .proof, .process, .b2b-needs { padding: 76px 0; }
  .path { padding: 34px 0; border-left: 0; border-top: 1px solid var(--line); }
  .path h3 { margin-top: 28px; }
  .path p { min-height: auto; }
  .path .text-link { width: 100%; }
  .proof-list div { grid-template-columns: 1fr; gap: 6px; }
  .process ol, .b2b-needs > div { grid-template-columns: 1fr; }
  .process ol::before { top: 38px; bottom: 38px; left: 34px; right: auto; width: 3px; height: auto; }
  .process li { min-height: auto; padding: 28px 0 28px 102px; border-bottom: 1px solid var(--line); }
  .process li + li { padding-left: 0; border-left: 0; }
  .process li + li { padding-left: 102px; }
  .process-icon { position: absolute; left: 0; top: 24px; margin: 0; }
  .business-feature { margin-bottom: 76px; }
  .business-image { min-height: 420px; }
  .business-copy { padding: 42px 24px; }
  .final-cta { margin-bottom: 76px; padding: 54px 24px; text-align: left; }
  .final-cta .button { margin-inline: 0; }
  .page-head { padding: 70px 0 52px; }
  .services-hero { padding: 62px 0 72px; grid-template-columns: 1fr; gap: 38px; }
  .services-hero h1 { font-size: clamp(48px, 14vw, 66px); }
  .services-hero-actions, .services-hero-actions .button { width: 100%; }
  .services-price-panel { min-height: 300px; padding: 30px; }
  .services-picker { padding: 70px 0 78px; }
  .services-picker-head { grid-template-columns: 1fr; gap: 20px; }
  .services-card-grid { grid-template-columns: 1fr; }
  .services-card, .services-card:nth-child(even) { min-height: 270px; padding: 30px 0; border-left: 0; }
  .services-price-cta { padding: 38px 26px; align-items: flex-start; flex-direction: column; }
  .services-price-cta .button { width: 100%; }
  .services-next { margin-bottom: 76px; grid-template-columns: 1fr; }
  .services-next article { min-height: 330px; padding: 34px 26px; }
  .service-groups { grid-template-columns: 1fr; padding-bottom: 76px; }
  .service-groups article:nth-child(3n) { grid-column: auto; }
  .service-groups article { padding: 30px 24px; }
  .service-overview { grid-template-columns: 1fr; padding-bottom: 76px; }
  .service-overview article, .service-overview article:nth-child(even) { min-height: auto; padding: 30px 0; border-left: 0; }
  .service-overview h2 { margin-top: 28px; }
  .section-heading-row { align-items: flex-start; flex-direction: column; }
  .price-group { gap: 20px; }
  .price-tools { top: 64px; margin-bottom: 48px; padding: 18px; }
  .price-tools nav { display: none; }
  .price-group { scroll-margin-top: 180px; }
  .price-group dl div { grid-template-columns: 1fr; gap: 8px; }
  .price-group dd { color: #7f6100; }
  .price-notes { padding: 64px 0 76px; }
  .price-notes > div, .b2b-segments > div { grid-template-columns: 1fr; }
  .price-notes p, .price-notes p + p, .b2b-segments article, .b2b-segments article + article { padding: 24px 0; border-left: 0; border-bottom: 1px solid var(--line); }
  .compact-cta { margin-bottom: 76px; padding: 28px 22px; align-items: flex-start; flex-direction: column; }
  .timeline { grid-template-columns: 1fr; padding-bottom: 76px; }
  .timeline article { min-height: auto; padding: 34px 0; }
  .timeline article:nth-child(even) { border-left: 0; }
  .timeline h2 { margin-top: 26px; }
  .contact-layout { padding-bottom: 76px; }
  .contact-layout > * { min-height: auto; padding: 30px 24px; }
  .legal { padding: 60px 0 80px; }
  .business-hero { padding: 56px 0 76px; gap: 44px; }
  .b2b-needs p { padding: 24px 0; border-bottom: 1px solid var(--line); }
  .b2b-needs p + p { padding-left: 0; border-left: 0; }
  .b2b-cta { margin-bottom: 76px; padding: 42px 24px; }
  .b2b-segments { padding: 64px 0; }
  .about-principles { padding: 72px 0; gap: 48px; }
  .about-audiences { margin-bottom: 76px; }
  .about-audiences article { min-height: auto; padding: 38px 24px; }
  .about-audiences h2 { margin-top: 38px; }
  .order-shell { grid-template-columns: 1fr; }
  .order-main { padding: 34px 16px 60px; }
  .form-progress { margin-bottom: 42px; overflow-x: auto; }
  .form-progress span { min-width: 106px; padding-right: 16px; }
  .order-stage-head h1 { font-size: clamp(36px, 10.5vw, 48px); }
  .order-category-grid, .catalog-product-grid { grid-template-columns: 1fr; }
  .order-category-card-body { min-height: 118px; }
  .category-stage-actions, .catalog-stage-toolbar { align-items: stretch; flex-direction: column; }
  .category-stage-actions .button, .catalog-stage-toolbar .button { width: 100%; }
  .category-stage.has-selection .category-stage-actions { bottom: 10px; width: calc(100vw - 20px); padding: 10px; gap: 8px; }
  .category-stage.has-selection .advice-link { display: none; }
  .selected-category-labels { justify-content: flex-start; }
  .catalog-product { min-height: 96px; }
  .catalog-actions .button { width: 100%; }
  .field-grid { grid-template-columns: 1fr; gap: 0; }
  .upload-field { padding: 18px; }
  .upload-dropzone { min-height: 210px; grid-template-columns: 1fr; justify-items: center; gap: 12px; text-align: center; }
  .upload-select { width: 100%; }
  .upload-specs { display: grid; gap: 4px; }
  .upload-specs span + span::before { content: none; }
  .upload-list { grid-template-columns: 1fr; }
  .catalog-row { grid-template-columns: 1fr 80px; }
  .catalog-row > span { grid-column: 1; text-align: left; color: var(--muted); }
  .catalog-row label { grid-column: 2; grid-row: 1 / span 2; }
  .order-summary { padding: 40px 20px 60px; border-left: 0; border-top: 1px solid var(--line); }
  .form-page { padding: 50px 0 76px; }
  .business-form { padding: 26px 18px; }
  .result-page { padding: 70px 0; }
  .site-footer { padding: 54px 20px; grid-template-columns: 1fr; gap: 36px; }
}

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