:root {
  --red: #e5092b;
  --red-dark: #b90020;
  --red-soft: #fff0f2;
  --black: #090909;
  --ink: #151515;
  --muted: #696969;
  --paper: #f5f5f4;
  --line: #dededb;
  --white: #fff;
  --container: 1180px;
  --shadow: 0 30px 80px rgba(0, 0, 0, .15);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 98px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
:focus-visible { outline: 3px solid #ffbdc8; outline-offset: 4px; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; z-index: 2000; top: 10px; left: 10px; padding: 12px 18px;
  color: var(--white); background: var(--black); transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }
.container { width: min(var(--container), calc(100% - 48px)); margin-inline: auto; }
.section { padding: 112px 0; }
.eyebrow {
  display: flex; align-items: center; gap: 10px; margin: 0 0 22px; color: var(--red);
  font-size: 12px; font-weight: 850; letter-spacing: .18em; text-transform: uppercase;
}
.eyebrow > span { width: 28px; height: 2px; background: currentColor; }
.eyebrow.light { color: #ff8297; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { letter-spacing: -.055em; }
h2 { margin-bottom: 20px; color: var(--black); font-size: clamp(38px, 5vw, 67px); line-height: 1.02; }
h2 em, h1 em { color: var(--red); font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
.button {
  display: inline-flex; min-height: 54px; align-items: center; justify-content: center; gap: 18px;
  border: 1px solid var(--red); border-radius: 3px; padding: 14px 23px; color: var(--white);
  background: var(--red); box-shadow: 0 9px 26px rgba(229, 9, 43, .2);
  font-size: 14px; font-weight: 800; cursor: pointer;
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.button:hover { transform: translateY(-2px); background: var(--red-dark); border-color: var(--red-dark); box-shadow: 0 13px 30px rgba(229, 9, 43, .3); }
.button-small { min-height: 44px; padding: 10px 18px; gap: 12px; }
.button-dark { background: var(--black); border-color: var(--black); box-shadow: none; }
.button-dark:hover { background: #292929; border-color: #292929; }
.button-light { color: var(--black); background: var(--white); border-color: var(--white); box-shadow: none; }
.button-light:hover { color: var(--white); background: var(--red); border-color: var(--red); }
.button-outline { color: var(--black); background: transparent; border-color: #b9b9b6; box-shadow: none; }
.button-outline:hover { color: var(--white); background: var(--black); border-color: var(--black); }

/* Header */
.site-header {
  position: sticky; z-index: 1000; top: 0; border-bottom: 1px solid rgba(222, 222, 219, .75);
  background: rgba(255, 255, 255, .92); backdrop-filter: blur(18px);
}
.nav-shell {
  display: flex; width: min(1280px, calc(100% - 48px)); min-height: 86px; align-items: center;
  justify-content: space-between; margin-inline: auto;
}
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--black); font-size: 25px; font-weight: 950; letter-spacing: .1em; }
.brand img { width: 58px; height: 58px; border-radius: 10px; object-fit: contain; }
.brand > span > span { color: var(--red); }
.primary-nav { display: flex; align-items: center; gap: clamp(17px, 2vw, 31px); color: #333; font-size: 13px; font-weight: 650; }
.primary-nav > a:not(.button) { position: relative; padding: 31px 0; }
.primary-nav > a:not(.button)::after {
  content: ""; position: absolute; right: 0; bottom: 23px; left: 0; height: 2px;
  background: var(--red); transform: scaleX(0); transition: transform .18s ease;
}
.primary-nav > a:hover::after, .primary-nav > a:focus-visible::after { transform: scaleX(1); }
.menu-toggle { display: none; width: 45px; height: 45px; border: 0; background: transparent; cursor: pointer; }
.menu-toggle > span:not(.sr-only) { display: block; width: 24px; height: 2px; margin: 5px auto; background: var(--black); transition: transform .18s ease, opacity .18s ease; }

/* Hero */
.hero { position: relative; overflow: hidden; padding-top: 84px; background: linear-gradient(180deg, #fff 0%, #fff 72%, #f7f7f6 100%); }
.hero::before {
  content: ""; position: absolute; width: 600px; height: 600px; top: -330px; left: -260px;
  border: 1px solid #f4b7c2; border-radius: 50%; box-shadow: 0 0 0 70px rgba(229, 9, 43, .025), 0 0 0 140px rgba(229, 9, 43, .02);
}
.hero-grid { display: grid; grid-template-columns: .93fr 1.07fr; gap: 65px; align-items: center; }
.hero-grid > * { min-width: 0; }
.hero-copy { position: relative; z-index: 2; min-width: 0; }
.hero h1 { margin-bottom: 28px; color: var(--black); font-size: clamp(52px, 5.4vw, 78px); font-weight: 850; line-height: .99; }
.hero-lead { max-width: 650px; margin-bottom: 31px; color: var(--muted); font-size: 17px; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 13px; }
.text-link { padding: 14px 4px; color: var(--black); font-size: 14px; font-weight: 800; border-bottom: 1px solid var(--black); }
.text-link:hover { color: var(--red); border-color: var(--red); }
.hotfix-note { margin: 13px 0 0; color: #777; font-size: 12px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 25px; margin: 34px 0 0; padding: 0; color: #444; font-size: 12px; font-weight: 700; list-style: none; }
.hero-points li::before { content: "✓"; display: inline-grid; width: 19px; height: 19px; place-items: center; margin-right: 8px; border-radius: 50%; color: var(--red); background: var(--red-soft); }

.product-stage { position: relative; min-width: 0; min-height: 570px; display: grid; place-items: center; }
.stage-glow { position: absolute; width: 570px; height: 570px; border-radius: 50%; background: radial-gradient(circle, rgba(229, 9, 43, .18) 0, rgba(229, 9, 43, .055) 42%, transparent 70%); }
.app-window {
  position: relative; z-index: 2; width: 670px; max-width: 100%; overflow: hidden; border: 1px solid #c9c9c6;
  border-radius: 9px; background: var(--white); box-shadow: var(--shadow); transform: perspective(1400px) rotateY(-5deg) rotateX(2deg);
}
.window-bar { display: flex; height: 50px; align-items: center; justify-content: space-between; padding: 0 18px; color: #555; background: #fafafa; border-bottom: 1px solid #e5e5e3; font-size: 11px; font-weight: 800; }
.window-brand { display: flex; align-items: center; gap: 8px; color: var(--black); }
.window-brand img { width: 24px; height: 24px; border-radius: 5px; }
.window-dots { display: flex; gap: 7px; }
.window-dots span { width: 7px; height: 7px; border-radius: 50%; background: #cacac7; }
.dashboard { display: grid; grid-template-columns: 55px 1fr; min-height: 390px; }
.dash-nav { display: flex; flex-direction: column; align-items: center; gap: 23px; padding: 18px 0; color: white; background: #121212; }
.dash-nav strong { display: grid; width: 30px; height: 30px; place-items: center; border-radius: 6px; background: var(--red); font-size: 14px; }
.dash-nav i { width: 18px; height: 4px; border-radius: 4px; background: #555; }
.dash-nav i.active { height: 18px; background: var(--red); box-shadow: 0 0 0 6px rgba(229, 9, 43, .16); }
.dash-main { padding: 27px 28px 30px; background: #f5f5f4; }
.dash-heading { display: flex; align-items: center; justify-content: space-between; }
.dash-heading div { display: grid; gap: 3px; }
.dash-heading small { color: #9b9b98; font-size: 7px; letter-spacing: .16em; }
.dash-heading strong { color: #191919; font-size: 19px; }
.dash-heading button { border: 0; border-radius: 3px; padding: 9px 13px; color: white; background: var(--red); font-size: 9px; font-weight: 800; }
.metric-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 11px; margin-top: 21px; }
.metric-grid > div { display: grid; gap: 5px; padding: 15px; border: 1px solid #e5e5e2; border-radius: 4px; background: white; }
.metric-grid small, .metric-grid span { color: #8a8a87; font-size: 8px; }
.metric-grid strong { color: #111; font-size: 17px; }
.metric-grid .up { color: #15925a; }
.dash-lower { display: grid; grid-template-columns: 1.45fr .8fr; gap: 11px; margin-top: 11px; }
.chart-card, .stock-card { padding: 16px; border: 1px solid #e5e5e2; border-radius: 4px; background: white; }
.card-title { display: flex; align-items: center; justify-content: space-between; font-size: 9px; }
.card-title span { color: #999; font-size: 7px; }
.chart { display: flex; height: 110px; align-items: end; gap: 9px; padding: 15px 4px 0; border-bottom: 1px solid #e5e5e3; background: repeating-linear-gradient(to bottom, #fff 0, #fff 26px, #f0f0ee 27px); }
.chart span { flex: 1; height: var(--bar); border-radius: 2px 2px 0 0; background: linear-gradient(180deg, var(--red), #ff7a90); }
.days { display: flex; justify-content: space-around; padding-top: 7px; color: #a0a09d; font-size: 7px; }
.stock-row { display: flex; align-items: center; gap: 9px; padding: 12px 0; border-bottom: 1px solid #eeeeeb; font-size: 8px; }
.stock-row:last-child { border: 0; }
.stock-row i { width: 7px; height: 7px; border-radius: 50%; background: var(--red); }
.stock-row span { display: grid; gap: 3px; }
.stock-row small { color: #999; font-size: 7px; }
.floating-card { position: absolute; z-index: 3; display: flex; align-items: center; border: 1px solid #dededb; border-radius: 5px; background: #fff; box-shadow: 0 16px 40px rgba(0,0,0,.14); font-size: 10px; }
.invoice-card { right: -9px; bottom: 56px; display: grid; grid-template-columns: 1fr auto; gap: 3px 20px; padding: 15px 16px; }
.invoice-card span { color: #888; grid-column: 1; }
.invoice-card strong { grid-column: 1; font-size: 13px; }
.invoice-card i { display: grid; width: 28px; height: 28px; grid-column: 2; grid-row: 1 / 3; place-items: center; border-radius: 50%; color: white; background: #16a164; font-style: normal; }
.sync-card { left: -16px; top: 83px; gap: 9px; padding: 12px 15px; }
.sync-card > i { display: grid; width: 26px; height: 26px; place-items: center; border-radius: 50%; color: var(--red); background: var(--red-soft); font-size: 14px; font-style: normal; }
.sync-card span { display: grid; gap: 2px; }
.sync-card small { color: #999; font-size: 7px; }

.trust-strip { padding: 24px 0; color: white; background: var(--black); }
.trust-strip .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 22px; }
.trust-strip span { color: #919191; font-size: 11px; letter-spacing: .13em; text-transform: uppercase; }
.trust-strip strong { font-size: 14px; letter-spacing: .03em; }
.trust-strip i { width: 4px; height: 4px; border-radius: 50%; background: var(--red); }

/* Sections */
.why-section { background: #fff; }
.section-heading > p:last-child { color: var(--muted); font-size: 16px; line-height: 1.7; }
.split-heading { display: grid; grid-template-columns: 1.3fr .7fr; gap: 80px; align-items: end; margin-bottom: 58px; }
.split-heading > p { max-width: 420px; margin: 0 0 9px; }
.benefit-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.benefit-grid article { position: relative; min-height: 315px; padding: 35px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; }
.benefit-grid .benefit-featured { grid-row: span 2; min-height: 630px; color: white; background: var(--red); }
.number { color: #9c9c99; font-size: 10px; font-weight: 850; letter-spacing: .12em; }
.benefit-featured .number { color: rgba(255,255,255,.65); }
.benefit-icon, .line-icon { display: grid; width: 47px; height: 47px; place-items: center; margin: 47px 0 24px; border: 1px solid rgba(255,255,255,.65); border-radius: 50%; font-size: 20px; font-weight: 800; }
.line-icon { margin-top: 45px; color: var(--red); border-color: #d7d7d4; }
.benefit-grid h3 { margin-bottom: 13px; font-size: 21px; letter-spacing: -.025em; }
.benefit-grid p { margin-bottom: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.benefit-featured p { max-width: 360px; color: rgba(255,255,255,.78); }
.mini-invoice { position: absolute; right: -19px; bottom: -10px; left: 35px; padding: 24px; color: #191919; background: white; box-shadow: 0 20px 50px rgba(115,0,18,.2); transform: rotate(-2deg); }
.mini-invoice > div, .mini-invoice b { display: flex; justify-content: space-between; font-size: 12px; }
.mini-invoice i { display: block; height: 7px; margin-top: 14px; background: #eeeeeb; }
.mini-invoice i:nth-of-type(2) { width: 82%; }
.mini-invoice i:nth-of-type(3) { width: 60%; }
.mini-invoice b { margin-top: 25px; padding-top: 15px; border-top: 1px solid #ddd; }
.mini-invoice b span { color: var(--red); }
.availability-note { margin: 20px 0 0; color: #777; font-size: 12px; }

.features-section { background: var(--paper); }
.section-heading.centered { max-width: 780px; margin: 0 auto 58px; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading.centered > p:last-child { max-width: 600px; margin-inline: auto; }
.feature-grid { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid #d6d6d3; border-left: 1px solid #d6d6d3; }
.feature-grid article { min-height: 275px; padding: 27px 23px; border-right: 1px solid #d6d6d3; border-bottom: 1px solid #d6d6d3; background: rgba(255,255,255,.42); transition: transform .18s ease, background-color .18s ease, box-shadow .18s ease; }
.feature-grid article:hover { position: relative; z-index: 2; background: white; box-shadow: 0 16px 40px rgba(0,0,0,.08); transform: translateY(-3px); }
.feature-icon { display: grid; width: 42px; height: 42px; place-items: center; margin-bottom: 36px; border: 1px solid #d2d2cf; border-radius: 50%; color: var(--red); font-size: 17px; font-weight: 800; }
.feature-grid h3 { margin-bottom: 11px; font-size: 16px; letter-spacing: -.02em; }
.feature-grid p { margin-bottom: 19px; color: var(--muted); font-size: 12px; line-height: 1.65; }
.feature-grid article > span { display: block; color: #8c8c89; font-size: 9px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }

.solutions-section { color: white; background: var(--black); }
.solutions-section .container { display: grid; grid-template-columns: .82fr 1.18fr; gap: 90px; }
.solutions-intro { position: sticky; top: 130px; align-self: start; }
.solutions-intro h2 { color: white; font-size: clamp(40px, 4.5vw, 62px); }
.solutions-intro > p:not(.eyebrow) { max-width: 460px; margin-bottom: 32px; color: #a9a9a9; font-size: 15px; line-height: 1.75; }
.business-list { border-top: 1px solid #343434; }
.business-list article { display: grid; grid-template-columns: 45px .7fr 1fr; gap: 20px; align-items: center; min-height: 105px; border-bottom: 1px solid #343434; }
.business-list article > span { color: var(--red); font-size: 10px; font-weight: 800; }
.business-list h3 { margin: 0; font-size: 20px; }
.business-list p { margin: 0; color: #8d8d8d; font-size: 12px; line-height: 1.55; }

.plans-section { padding-bottom: 0; background: white; }
.plans-card { display: flex; align-items: end; justify-content: space-between; gap: 60px; padding: 54px; border: 1px solid var(--line); background: linear-gradient(135deg, #fff 50%, #fff4f6); }
.plans-card h2 { font-size: clamp(35px, 4vw, 52px); }
.plans-card p:not(.eyebrow) { max-width: 700px; margin-bottom: 0; color: var(--muted); line-height: 1.7; }
.plans-actions { display: flex; flex: 0 0 auto; gap: 10px; }

.download-section { background: white; }
.download-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.download-card { position: relative; display: flex; min-height: 390px; flex-direction: column; align-items: flex-start; padding: 38px; border: 1px solid var(--line); background: white; }
.download-card.primary-download { border-top: 3px solid var(--red); }
.recommended { position: absolute; top: 18px; right: 18px; padding: 6px 9px; color: var(--red); background: var(--red-soft); font-size: 9px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.windows-mark { display: grid; width: 48px; height: 48px; place-items: center; margin-bottom: 35px; border-radius: 4px; color: white; background: var(--black); font-size: 27px; }
.download-card h3 { margin-bottom: 11px; font-size: 21px; }
.download-card p { color: var(--muted); font-size: 13px; line-height: 1.65; }
.download-card strong { margin-top: auto; margin-bottom: 21px; color: #7c7c79; font-size: 10px; letter-spacing: .05em; text-transform: uppercase; }
.download-card .button { width: 100%; }
.hotfix-download { background: #fafafa; }
.download-help { margin: 25px auto 0; color: #777; font-size: 12px; text-align: center; }

.support-section { padding-bottom: 112px; background: white; }
.support-card { display: flex; align-items: center; justify-content: space-between; gap: 50px; padding: 60px; color: white; background: var(--red); }
.support-card h2 { color: white; font-size: clamp(36px, 4vw, 56px); }
.support-card p:not(.eyebrow) { max-width: 720px; margin-bottom: 0; color: rgba(255,255,255,.82); line-height: 1.7; }
.support-links { display: flex; flex: 0 0 auto; flex-direction: column; align-items: center; gap: 18px; }
.support-links > a:not(.button) { font-size: 12px; font-weight: 750; border-bottom: 1px solid rgba(255,255,255,.6); }

/* Footer and consent */
.site-footer { padding: 75px 0 26px; color: #aaa; background: #0b0b0b; }
.footer-grid { display: grid; grid-template-columns: 1.6fr .7fr .7fr 1.25fr; gap: 70px; padding-bottom: 56px; }
.footer-brand { color: white; }
.footer-brand img { width: 52px; height: 52px; }
.footer-grid > div:first-child > p { max-width: 300px; margin-top: 20px; color: #777; font-size: 13px; line-height: 1.7; }
.footer-grid h2 { margin: 0 0 20px; color: white; font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; align-items: flex-start; }
.footer-grid > div:not(:first-child) > a { margin-bottom: 14px; font-size: 12px; }
.footer-grid a:hover { color: white; }
.business-info p { color: #888; font-size: 12px; line-height: 1.7; }
.business-info p:first-of-type { display: grid; gap: 3px; }
.business-info p span { color: #666; font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.business-info p strong { color: white; font-size: 13px; letter-spacing: .04em; }
.business-info p a { color: white; text-decoration: underline; text-underline-offset: 3px; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 24px; border-top: 1px solid #282828; color: #656565; font-size: 10px; }
.location-consent {
  position: fixed; z-index: 1500; right: 22px; bottom: 22px; display: grid; width: min(470px, calc(100% - 44px));
  grid-template-columns: 42px 1fr; gap: 15px; padding: 22px; border: 1px solid #d8d8d5; border-top: 3px solid var(--red);
  border-radius: 4px; background: white; box-shadow: 0 20px 60px rgba(0,0,0,.18);
}
.location-consent[hidden] { display: none; }
.consent-close { position: absolute; top: 7px; right: 8px; width: 32px; height: 32px; border: 0; color: #777; background: transparent; font-size: 22px; cursor: pointer; }
.consent-icon { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 50%; color: var(--red); background: var(--red-soft); font-size: 22px; }
.location-consent h2 { margin: 0 28px 7px 0; font-size: 17px; letter-spacing: -.02em; }
.location-consent p { margin-bottom: 15px; color: var(--muted); font-size: 12px; line-height: 1.55; }
.consent-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.consent-actions .button { min-height: 38px; padding: 7px 13px; font-size: 11px; }
.noscript-note { position: fixed; z-index: 1800; right: 12px; bottom: 12px; left: 12px; padding: 12px 18px; color: white; background: #222; font-size: 12px; text-align: center; }

.legal-page { max-width: 880px; padding-top: 90px; padding-bottom: 100px; }
.legal-page > h1 { max-width: 720px; margin-bottom: 24px; font-size: clamp(48px, 7vw, 76px); line-height: 1; letter-spacing: -.055em; }
.legal-intro { max-width: 760px; color: var(--muted); font-size: 19px; line-height: 1.7; }
.updated { margin: 30px 0 60px; color: #888; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.legal-page section { padding: 37px 0; border-top: 1px solid var(--line); }
.legal-page section h2 { margin-bottom: 18px; font-size: 27px; letter-spacing: -.03em; }
.legal-page section p { color: #555; line-height: 1.8; }
.legal-page section a { color: var(--red); text-decoration: underline; text-underline-offset: 3px; }
.legal-footer { padding: 25px 0; color: #aaa; background: var(--black); font-size: 12px; }
.legal-footer a { color: white; }

@media (max-width: 1080px) {
  .primary-nav { gap: 15px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .product-stage { min-height: 520px; }
  .app-window { width: 760px; transform: none; }
  .benefit-grid { grid-template-columns: 1.2fr 1fr; }
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.3fr .7fr .7fr; }
  .business-info { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .nav-shell { min-height: 76px; }
  .brand img { width: 52px; height: 52px; }
  .menu-toggle { display: block; }
  .primary-nav {
    position: fixed; inset: 76px 0 auto; display: none; max-height: calc(100vh - 76px); align-items: stretch;
    flex-direction: column; gap: 0; overflow-y: auto; padding: 16px 24px 30px; border-top: 1px solid var(--line); background: white;
  }
  .primary-nav.open { display: flex; }
  .primary-nav > a:not(.button) { padding: 16px 4px; border-bottom: 1px solid #eee; font-size: 15px; }
  .primary-nav > a:not(.button)::after { display: none; }
  .primary-nav .button { margin-top: 18px; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(3) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(4) { transform: translateY(-7px) rotate(-45deg); }
  .split-heading { grid-template-columns: 1fr; gap: 15px; }
  .solutions-section .container { grid-template-columns: 1fr; gap: 55px; }
  .solutions-intro { position: static; }
  .plans-card, .support-card { align-items: flex-start; flex-direction: column; }
  .download-grid { grid-template-columns: 1fr 1fr; }
  .download-card:last-child { grid-column: 1 / -1; min-height: 340px; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; gap: 40px; }
}

@media (max-width: 680px) {
  .container, .nav-shell { width: min(100% - 30px, var(--container)); }
  .section { padding: 78px 0; }
  .hero { padding-top: 58px; }
  .hero h1 { overflow-wrap: anywhere; font-size: clamp(42px, 12vw, 55px); }
  .hero-lead { font-size: 15px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button, .hero-actions .text-link { width: 100%; }
  .hero-actions .text-link { padding: 13px 2px; text-align: center; }
  .hero-points { flex-direction: column; gap: 11px; }
  .product-stage { width: 100%; min-height: 370px; margin-top: 15px; overflow: hidden; }
  .app-window { position: absolute; left: 50%; width: 620px; max-width: none; transform: translateX(-50%) scale(.72); transform-origin: center; }
  .stage-glow { width: 380px; height: 380px; }
  .floating-card { display: none; }
  .trust-strip .container { gap: 12px; }
  .trust-strip span { width: 100%; text-align: center; }
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit-grid .benefit-featured { grid-row: auto; min-height: 570px; }
  .benefit-grid article { min-height: 280px; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .feature-grid article { min-height: 250px; }
  .business-list article { grid-template-columns: 34px 1fr; padding: 18px 0; }
  .business-list article p { grid-column: 2; }
  .plans-card, .support-card { padding: 38px 28px; }
  .plans-actions { width: 100%; flex-direction: column; }
  .download-grid { grid-template-columns: 1fr; }
  .download-card:last-child { grid-column: auto; }
  .download-card { min-height: 365px; padding: 31px; }
  .support-links { width: 100%; align-items: stretch; }
  .support-links > a { text-align: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child, .business-info { grid-column: 1 / -1; }
  .footer-bottom { gap: 10px; flex-direction: column; }
}

@media (max-width: 460px) {
  .brand { gap: 9px; font-size: 20px; }
  .brand img { width: 48px; height: 48px; }
  .hero { padding-bottom: 50px; }
  .product-stage { min-height: 300px; }
  .app-window { transform: translateX(-50%) scale(.57); }
  .trust-strip strong { font-size: 12px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-grid article { min-height: 235px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:first-child, .business-info { grid-column: auto; }
  .location-consent { right: 10px; bottom: 10px; width: calc(100% - 20px); grid-template-columns: 1fr; }
  .consent-icon { display: none; }
  .legal-page { padding-top: 60px; }
}

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