:root {
  --ink: #101412;
  --ink-soft: #2c332f;
  --paper: #ffffff;
  --mist: #f2f6f3;
  --line: #dce4df;
  --green: #36d07c;
  --green-dark: #12633b;
  --coral: #ff5b4d;
  --gold: #dca72d;
  --blue: #2478ef;
  --muted: #66716a;
  --radius: 8px;
  --shadow: 0 20px 60px rgba(9, 24, 16, 0.16);
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", sans-serif;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}
body.modal-open { overflow: hidden; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
[hidden] { display: none !important; }

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  height: 76px;
  display: grid;
  grid-template-columns: 230px 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(16,20,18,.12);
  backdrop-filter: blur(14px);
}
.brand img { width: 186px; height: 52px; object-fit: contain; object-position: left center; }
.desktop-nav { display: flex; justify-content: center; align-items: center; gap: 32px; }
.desktop-nav a { font-size: 14px; font-weight: 600; color: #455049; }
.desktop-nav a:hover { color: var(--ink); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.language-switch { display: flex; align-items: center; border: 1px solid #c5cfc9; border-radius: 5px; overflow: hidden; }
.language-switch button { width: 38px; height: 32px; border: 0; color: #68736c; background: transparent; cursor: pointer; font-size: 12px; font-weight: 700; }
.language-switch button[aria-pressed="true"] { color: white; background: var(--ink); }
.header-actions .button-dark { background: var(--ink); color: white; }

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-1px); }
.button svg { width: 18px; height: 18px; flex: 0 0 18px; }
.button-primary { background: var(--green); color: #092115; box-shadow: 0 12px 30px rgba(54,208,124,.24); }
.button-primary:hover { background: #55dc91; }
.button-dark { background: var(--ink); color: white; }
.button-outline { background: white; border-color: #aab7af; color: var(--ink); }
.button-ghost-light { color: white; border-color: rgba(255,255,255,.45); background: rgba(16,20,18,.32); }
.button-small { min-height: 40px; padding: 0 15px; font-size: 13px; background: white; color: var(--ink); }
.button-wide { width: 100%; }

.hero {
  position: relative;
  min-height: 760px;
  height: 88svh;
  max-height: 900px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: white;
  background: #172019;
}
.hero-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-shade { position: absolute; inset: 0; background: rgba(6, 15, 10, .62); }
.hero-content { position: relative; z-index: 2; width: min(var(--max), calc(100% - 48px)); margin: 48px auto 112px; }
.eyebrow { margin: 0 0 18px; color: var(--green-dark); font-size: 12px; line-height: 1.4; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow.light { color: #a4f0c6; }
.hero h1 { max-width: 780px; margin: 0; font-family: "Manrope", sans-serif; font-size: 76px; line-height: 1.02; font-weight: 800; letter-spacing: 0; }
.hero-copy { max-width: 720px; margin: 26px 0 0; font-size: 22px; line-height: 1.5; color: rgba(255,255,255,.9); }
.hero-actions { display: flex; gap: 12px; margin-top: 36px; }
.hero-proof { position: absolute; z-index: 3; left: 0; right: 0; bottom: 0; min-height: 104px; display: grid; grid-template-columns: repeat(4, 1fr); padding: 0 max(24px, calc((100vw - var(--max)) / 2)); background: rgba(11, 17, 13, .88); border-top: 1px solid rgba(255,255,255,.14); backdrop-filter: blur(14px); }
.hero-proof div { display: grid; align-content: center; grid-template-columns: auto 1fr; gap: 10px; padding-right: 24px; }
.hero-proof strong { font-family: "Manrope"; font-size: 28px; }
.hero-proof span { align-self: center; color: rgba(255,255,255,.68); font-size: 13px; line-height: 1.25; }

.channel-ribbon { min-height: 96px; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 20px max(24px, calc((100vw - var(--max)) / 2)); border-bottom: 1px solid var(--line); background: white; font-weight: 700; }
.channel-logos { display: flex; align-items: center; gap: 30px; }
.channel-logos span { display: inline-flex; align-items: center; gap: 10px; font-size: 14px; }
.channel-logos img { width: 24px; height: 24px; }

.story-section, .pricing-section { max-width: var(--max); margin: 0 auto; padding: 112px 24px; }
.section-heading { max-width: 790px; margin-bottom: 54px; }
.section-heading h2, .commerce-copy h2, .demo-copy h2, .final-cta h2 { margin: 0; font-family: "Manrope"; font-size: 46px; line-height: 1.12; letter-spacing: 0; }
.section-heading > p:last-child, .commerce-copy > p, .demo-copy > p, .final-cta > p { margin: 22px 0 0; color: var(--muted); font-size: 19px; line-height: 1.65; }
.solution-comparison { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.solution-panel { min-height: 500px; padding: 48px; background: white; }
.solution-panel + .solution-panel { border-left: 1px solid var(--line); }
.solution-icon { width: 52px; height: 52px; display: grid; place-items: center; margin-bottom: 50px; border-radius: 7px; background: #e8f8ef; color: var(--green-dark); }
.solution-icon svg { width: 25px; height: 25px; }
.ai-panel { background: var(--ink); color: white; }
.ai-panel .solution-icon { background: rgba(54,208,124,.16); color: var(--green); }
.panel-kicker { margin: 0 0 12px; color: var(--green-dark); font-weight: 800; font-size: 13px; text-transform: uppercase; letter-spacing: .1em; }
.ai-panel .panel-kicker { color: var(--green); }
.solution-panel h3 { margin: 0; font-family: "Manrope"; font-size: 30px; line-height: 1.2; }
.solution-panel > p:not(.panel-kicker) { margin: 18px 0 28px; color: var(--muted); font-size: 17px; line-height: 1.65; }
.ai-panel > p:not(.panel-kicker) { color: rgba(255,255,255,.7); }
.solution-panel ul, .plan-card ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 15px; }
.solution-panel li { display: flex; gap: 11px; align-items: flex-start; font-size: 15px; line-height: 1.5; }
.solution-panel li svg { width: 18px; color: var(--green-dark); flex: 0 0 18px; }
.ai-panel li svg { color: var(--green); }

.commerce-section { display: grid; grid-template-columns: 1.15fr .85fr; min-height: 760px; background: var(--mist); }
.commerce-visual { position: relative; min-height: 700px; display: grid; place-items: center; overflow: hidden; background: #dfeae3; border-right: 1px solid #cbd8d0; }
.conversation-window { z-index: 2; width: min(440px, 72%); min-height: 480px; padding: 18px 24px 28px; background: white; border: 1px solid #cbd8d0; border-radius: 8px; box-shadow: 0 30px 80px rgba(10,41,24,.18); }
.window-top { height: 38px; display: flex; align-items: center; gap: 7px; border-bottom: 1px solid var(--line); }
.window-top span { width: 8px; height: 8px; border-radius: 50%; background: #bcc8c0; }
.message { width: 84%; margin-top: 28px; padding: 16px; border-radius: 7px; display: grid; gap: 6px; font-size: 15px; line-height: 1.45; }
.message small { color: var(--muted); font-size: 11px; font-weight: 700; }
.message.incoming { background: var(--mist); }
.message.outgoing { margin-left: auto; background: #dff8ea; }
.checkout-chip { width: max-content; max-width: 100%; margin: 34px auto 0; padding: 12px 16px; display: flex; align-items: center; gap: 9px; border: 1px solid #b8dec7; border-radius: 6px; color: var(--green-dark); font-weight: 700; }
.checkout-chip svg { width: 18px; }
.integration-orbit { position: absolute; z-index: 3; width: 148px; min-height: 104px; padding: 16px; display: flex; align-items: center; gap: 10px; background: white; border: 1px solid #cbd8d0; border-radius: 7px; box-shadow: 0 12px 36px rgba(10,41,24,.12); font-size: 13px; font-weight: 700; line-height: 1.35; }
.integration-orbit svg { width: 25px; color: var(--green-dark); }
.orbit-payment { top: 18%; left: 7%; }
.orbit-delivery { right: 5%; bottom: 16%; }
.orbit-catalog { left: 8%; bottom: 12%; }
.commerce-copy { padding: 110px max(36px, calc((100vw - var(--max)) / 2)) 100px 72px; align-self: center; }
.capability-list { display: grid; gap: 22px; margin-top: 42px; }
.capability-list > div { display: grid; grid-template-columns: 46px 1fr; gap: 16px; align-items: center; }
.capability-list > div > svg { width: 42px; height: 42px; padding: 10px; border: 1px solid #b7c6bd; border-radius: 6px; color: var(--green-dark); }
.capability-list span { display: grid; gap: 3px; }
.capability-list strong { font-size: 16px; }
.capability-list small { color: var(--muted); font-size: 14px; }

.governance-section { padding: 110px max(24px, calc((100vw - var(--max)) / 2)); color: white; background: #17201b; }
.light-heading .eyebrow { color: var(--green); }
.light-heading > p:last-child { color: rgba(255,255,255,.68); }
.governance-steps { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.18); }
.governance-steps > div { min-height: 230px; position: relative; display: grid; align-content: end; padding: 34px; border-right: 1px solid rgba(255,255,255,.18); }
.governance-steps > div:last-child { border-right: 0; }
.governance-steps > div > span { position: absolute; top: 28px; right: 28px; color: rgba(255,255,255,.32); font-family: "Manrope"; font-weight: 700; }
.governance-steps svg { width: 30px; color: var(--green); margin-bottom: 18px; }
.governance-steps strong { font-size: 18px; }
.governance-steps small { margin-top: 8px; color: rgba(255,255,255,.6); font-size: 14px; line-height: 1.5; }

.pricing-tabs { display: flex; width: max-content; margin-bottom: 28px; border: 1px solid #bdc9c1; border-radius: 6px; overflow: hidden; }
.pricing-tabs button { min-width: 120px; height: 42px; padding: 0 18px; border: 0; background: white; cursor: pointer; font-weight: 700; color: var(--muted); }
.pricing-tabs button[aria-selected="true"] { background: var(--ink); color: white; }
.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.plan-card { position: relative; min-height: 500px; display: flex; flex-direction: column; padding: 40px; background: white; }
.plan-card + .plan-card { border-left: 1px solid var(--line); }
.plan-card.featured { background: #e9f8ef; }
.featured-label { position: absolute; top: 0; right: 0; padding: 9px 14px; color: white; background: var(--green-dark); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.plan-name { margin: 0; color: var(--green-dark); font-size: 13px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.plan-price { display: flex; align-items: baseline; margin-top: 24px; }
.plan-price span { font-size: 14px; font-weight: 700; }
.plan-price strong { margin-left: 4px; font-family: "Manrope"; font-size: 54px; line-height: 1; }
.plan-price small { color: var(--muted); }
.plan-card > p:not(.plan-name) { min-height: 52px; margin: 20px 0 28px; color: var(--muted); line-height: 1.55; }
.plan-card li { position: relative; padding-left: 20px; color: var(--ink-soft); font-size: 14px; }
.plan-card li::before { content: ""; position: absolute; left: 0; top: 7px; width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.plan-card .button { margin-top: auto; }
.channel-pricing { border-top: 1px solid var(--line); }
.channel-price-row { min-height: 82px; display: grid; grid-template-columns: 36px 1fr 190px 100px; gap: 16px; align-items: center; border-bottom: 1px solid var(--line); }
.channel-price-row img, .channel-price-row > svg { width: 28px; height: 28px; }
.channel-price-row > span { font-weight: 700; }
.channel-price-row button { height: 38px; border: 1px solid #b8c4bc; border-radius: 5px; background: white; cursor: pointer; font-weight: 700; }
.quote-builder { margin-top: 72px; display: grid; grid-template-columns: 1.2fr .8fr; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--mist); }
.quote-copy { padding: 48px; }
.quote-copy h3 { margin: 0; font-family: "Manrope"; font-size: 34px; }
.quote-copy > p:not(.eyebrow) { max-width: 600px; color: var(--muted); line-height: 1.6; }
.quote-toggles { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.quote-toggles label { position: relative; cursor: pointer; }
.quote-toggles input { position: absolute; opacity: 0; pointer-events: none; }
.quote-toggles label > span { min-height: 44px; display: flex; align-items: center; gap: 9px; padding: 0 13px; border: 1px solid #b8c4bc; border-radius: 5px; background: white; font-size: 13px; font-weight: 700; }
.quote-toggles input:checked + span { border-color: var(--green-dark); box-shadow: inset 0 0 0 1px var(--green-dark); background: #e5f7ed; }
.quote-toggles img, .quote-toggles svg { width: 20px; height: 20px; }
.quote-total { padding: 48px; color: white; background: var(--ink); }
.quote-total > label { display: block; color: rgba(255,255,255,.65); font-size: 13px; font-weight: 700; }
.stepper { width: 160px; height: 48px; display: grid; grid-template-columns: 44px 1fr 44px; margin: 10px 0 38px; border: 1px solid rgba(255,255,255,.3); border-radius: 6px; overflow: hidden; }
.stepper button { border: 0; color: white; background: transparent; cursor: pointer; }
.stepper button svg { width: 17px; }
.stepper input { min-width: 0; border: 0; border-left: 1px solid rgba(255,255,255,.2); border-right: 1px solid rgba(255,255,255,.2); color: white; background: transparent; text-align: center; font-size: 18px; font-weight: 700; -moz-appearance: textfield; }
.stepper input::-webkit-inner-spin-button { display: none; }
.total-line { display: flex; justify-content: space-between; align-items: end; padding: 18px 0; border-top: 1px solid rgba(255,255,255,.16); }
.total-line strong { font-family: "Manrope"; font-size: 28px; }
.total-line.setup strong { font-size: 18px; }
.quote-note { color: rgba(255,255,255,.55); font-size: 12px; }
.quote-total .button { margin-top: 24px; background: white; color: var(--ink); }

.demo-section { min-height: 600px; display: grid; grid-template-columns: 1fr 1fr; color: white; background: #0f1512; }
.demo-copy { padding: 100px 8vw; align-self: center; }
.demo-copy > p { color: rgba(255,255,255,.67); }
.demo-copy .button { margin-top: 32px; }
.demo-channels { display: grid; grid-template-rows: repeat(3, 1fr); border-left: 1px solid rgba(255,255,255,.14); }
.demo-channel { min-height: 160px; display: grid; grid-template-columns: 54px 1fr 24px; gap: 22px; align-items: center; padding: 34px 9vw 34px 46px; border-bottom: 1px solid rgba(255,255,255,.14); transition: background .2s ease; }
a.demo-channel:hover { background: rgba(255,255,255,.06); }
.demo-channel img { width: 46px; height: 46px; }
.demo-channel > span { display: grid; gap: 5px; }
.demo-channel strong { font-size: 20px; }
.demo-channel small { color: rgba(255,255,255,.54); }
.demo-channel > svg { color: var(--green); }
.demo-channel.unavailable { opacity: .55; }
.final-cta { min-height: 520px; display: grid; place-items: center; align-content: center; padding: 90px 24px; text-align: center; background: #f0f7f3; }
.final-cta > img { width: 260px; height: 90px; object-fit: contain; margin-bottom: 24px; }
.final-cta h2 { max-width: 740px; }
.final-cta p { max-width: 650px; }
.final-cta .button { margin-top: 30px; }

footer { min-height: 128px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 28px; padding: 24px max(24px, calc((100vw - var(--max)) / 2)); color: rgba(255,255,255,.67); background: #0d110f; font-size: 12px; }
footer > div { display: flex; align-items: center; gap: 14px; }
footer img { width: 120px; height: 48px; object-fit: contain; }
footer nav { justify-self: end; display: flex; gap: 22px; }
footer a:hover { color: white; }
.footer-meta { display: flex; align-items: center; justify-content: center; gap: 12px; margin: 0; }
.version-control { min-width: 78px; min-height: 32px; display: inline-flex; align-items: center; justify-content: center; gap: 7px; padding: 0 10px; border: 1px solid rgba(255,255,255,.2); border-radius: 5px; color: rgba(255,255,255,.68); background: rgba(255,255,255,.04); cursor: pointer; font: inherit; font-weight: 700; letter-spacing: 0; transition: color .2s ease, border-color .2s ease, background .2s ease; }
.version-control svg { width: 14px; height: 14px; }
.version-control:not(.update-available):hover { color: white; border-color: rgba(255,255,255,.36); }
.version-control.update-available { color: #071b10; border-color: var(--green); background: var(--green); }
.version-control.update-available:hover { background: #55dc91; }
.version-control.update-available svg { animation: version-pulse 1.8s ease-in-out infinite; }
@keyframes version-pulse { 50% { transform: rotate(45deg); } }

.modal { width: min(960px, calc(100% - 32px)); max-height: calc(100svh - 32px); padding: 0; border: 0; border-radius: var(--radius); box-shadow: 0 32px 100px rgba(0,0,0,.38); overflow: auto; }
.modal::backdrop { background: rgba(6,11,8,.76); backdrop-filter: blur(5px); }
.modal-shell { position: relative; margin: 0; padding: 46px; background: white; }
.modal-close { position: absolute; z-index: 2; top: 18px; right: 18px; width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 5px; background: white; cursor: pointer; }
.modal-close svg { width: 18px; }
.modal-intro { max-width: 680px; margin-bottom: 30px; }
.modal-intro h2, .success-shell h2, .checkout-heading h2 { margin: 0; font-family: "Manrope"; font-size: 34px; }
.modal-intro > p:not(.eyebrow), .checkout-shell > p { color: var(--muted); line-height: 1.55; }
.booking-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label > span { display: block; margin-bottom: 7px; color: var(--ink-soft); font-size: 12px; font-weight: 700; }
input, select, textarea { width: 100%; border: 1px solid #b9c5bd; border-radius: 5px; color: var(--ink); background: white; outline: 0; }
input, select { height: 46px; padding: 0 12px; }
textarea { resize: vertical; padding: 12px; }
input:focus, select:focus, textarea:focus { border-color: var(--green-dark); box-shadow: 0 0 0 3px rgba(54,208,124,.14); }
.date-tabs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
.date-tabs button { min-height: 56px; padding: 7px; border: 1px solid #b9c5bd; border-radius: 5px; background: white; cursor: pointer; font-size: 12px; font-weight: 700; }
.date-tabs button[aria-pressed="true"] { color: white; border-color: var(--ink); background: var(--ink); }
.time-slots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; margin-top: 14px; max-height: 220px; overflow: auto; }
.time-slots button { height: 40px; border: 1px solid #c5cfc9; border-radius: 5px; background: white; cursor: pointer; font-size: 13px; }
.time-slots button[aria-pressed="true"] { border-color: var(--green-dark); background: #def6e8; color: var(--green-dark); font-weight: 700; }
#local-time-note { min-height: 34px; color: var(--muted); font-size: 12px; line-height: 1.4; }
.wide-field { display: block; margin-top: 18px; }
.consent { display: flex; gap: 10px; align-items: flex-start; margin: 18px 0; }
.consent input { width: 18px; height: 18px; flex: 0 0 18px; margin: 1px 0 0; accent-color: var(--green-dark); }
.consent span { margin: 0; color: var(--muted); font-weight: 500; line-height: 1.45; }
.form-error { min-height: 22px; color: #a62b22; font-size: 13px; line-height: 1.4; }
.success-shell { min-height: 480px; display: grid; place-items: center; align-content: center; text-align: center; }
.success-icon { width: 72px; height: 72px; display: grid; place-items: center; margin-bottom: 24px; border-radius: 50%; color: var(--green-dark); background: #daf5e5; }
.success-icon svg { width: 34px; height: 34px; }
.success-shell > p:not(.eyebrow) { color: var(--muted); }
.calendar-actions { display: flex; gap: 10px; margin-top: 24px; }
.checkout-shell { max-width: 760px; }
.checkout-heading { display: flex; justify-content: space-between; gap: 24px; align-items: center; padding-right: 40px; }
.environment-badge { padding: 7px 10px; border-radius: 4px; color: var(--green-dark); background: #daf5e5; font-size: 11px; font-weight: 800; }
.environment-badge.sandbox { color: #775400; background: #fff0b9; }
.sandbox-control { margin: 22px 0; padding: 14px; border-left: 3px solid var(--gold); background: #fff9e5; }
.card-fields { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 16px; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--line); }
.card-holder { grid-column: 1 / -1; }
.payment-note { display: block; margin-top: 12px; color: var(--muted); text-align: center; }
.toast { position: fixed; z-index: 100; right: 24px; bottom: 24px; max-width: 360px; padding: 14px 18px; border-radius: 6px; color: white; background: var(--ink); box-shadow: var(--shadow); opacity: 0; transform: translateY(12px); pointer-events: none; transition: opacity .2s ease, transform .2s ease; }
.toast.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1040px) {
  .site-header { grid-template-columns: 190px 1fr; }
  .desktop-nav { display: none; }
  .header-actions { justify-self: end; }
  .hero h1 { font-size: 64px; }
  .hero-proof { grid-template-columns: repeat(2, 1fr); padding-top: 12px; padding-bottom: 12px; }
  .hero-proof div { min-height: 38px; }
  .commerce-section { grid-template-columns: 1fr; }
  .commerce-visual { min-height: 640px; border-right: 0; }
  .commerce-copy { padding: 80px 48px; }
  .plan-card { padding: 30px; }
  .quote-builder { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .site-header { height: 66px; grid-template-columns: 1fr auto; padding: 0 16px; }
  .brand img { width: 136px; height: 42px; }
  .header-actions .button { width: 40px; min-height: 38px; padding: 0; }
  .header-actions .button span { display: none; }
  .language-switch button { width: 34px; }
  .hero { min-height: 680px; height: 88svh; max-height: 760px; align-items: flex-start; }
  .hero-media { object-position: 62% center; }
  .hero-shade { background: rgba(6,15,10,.7); }
  .hero-content { width: calc(100% - 32px); margin: 132px auto 172px; }
  .hero h1 { font-size: 50px; }
  .hero-copy { font-size: 17px; line-height: 1.5; }
  .hero-actions { align-items: stretch; flex-direction: column; margin-top: 26px; }
  .hero-proof { min-height: 116px; grid-template-columns: repeat(2, 1fr); padding: 10px 16px; }
  .hero-proof div { padding: 0; gap: 7px; }
  .hero-proof strong { font-size: 20px; }
  .hero-proof span { font-size: 10px; }
  .channel-ribbon { align-items: flex-start; flex-direction: column; padding: 22px 16px; }
  .channel-logos { width: 100%; justify-content: space-between; gap: 8px; }
  .channel-logos span { gap: 6px; font-size: 11px; }
  .channel-logos img { width: 20px; height: 20px; }
  .story-section, .pricing-section { padding: 78px 16px; }
  .section-heading { margin-bottom: 36px; }
  .section-heading h2, .commerce-copy h2, .demo-copy h2, .final-cta h2 { font-size: 34px; }
  .section-heading > p:last-child, .commerce-copy > p, .demo-copy > p, .final-cta > p { font-size: 16px; }
  .solution-comparison, .plan-grid { grid-template-columns: 1fr; }
  .solution-panel { min-height: auto; padding: 34px 26px 42px; }
  .solution-panel + .solution-panel, .plan-card + .plan-card { border-left: 0; border-top: 1px solid var(--line); }
  .solution-icon { margin-bottom: 32px; }
  .commerce-visual { min-height: 560px; }
  .conversation-window { width: calc(100% - 72px); min-height: 420px; }
  .integration-orbit { width: 126px; min-height: 84px; padding: 11px; font-size: 11px; }
  .orbit-payment { top: 7%; left: 7px; }
  .orbit-delivery { right: 6px; bottom: 6%; }
  .orbit-catalog { display: none; }
  .commerce-copy { padding: 68px 20px; }
  .governance-section { padding: 72px 16px; }
  .governance-steps { grid-template-columns: 1fr; }
  .governance-steps > div { min-height: 180px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
  .plan-card { min-height: 430px; padding: 32px 26px; }
  .channel-price-row { grid-template-columns: 30px 1fr auto; padding: 14px 0; }
  .channel-price-row button { grid-column: 2 / -1; }
  .quote-builder { margin-top: 52px; }
  .quote-copy, .quote-total { padding: 32px 24px; }
  .demo-section { grid-template-columns: 1fr; }
  .demo-copy { padding: 72px 20px; }
  .demo-channels { border-left: 0; border-top: 1px solid rgba(255,255,255,.14); }
  .demo-channel { min-height: 132px; padding: 24px 20px; }
  .final-cta { min-height: 480px; }
  footer { grid-template-columns: 1fr; gap: 16px; text-align: center; }
  footer > div, footer nav { justify-self: center; }
  .footer-meta { flex-wrap: wrap; }
  .modal { width: calc(100% - 16px); max-height: calc(100svh - 16px); }
  .modal-shell { padding: 42px 20px 28px; }
  .booking-grid, .field-grid { grid-template-columns: 1fr; }
  .schedule-picker { margin-top: 10px; }
  .time-slots { grid-template-columns: repeat(3, 1fr); }
  .calendar-actions { width: 100%; flex-direction: column; }
  .checkout-heading { align-items: flex-start; flex-direction: column; }
  .card-fields { grid-template-columns: 1fr 1fr; }
  .card-number, .card-holder { grid-column: 1 / -1; }
}

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