:root {
  color-scheme: light;
  --asphalt: #0b1b2b;
  --cab-blue: #164c7e;
  --reflective-orange: #e66a19;
  --sheet-white: #f7f8f5;
  --concrete: #d7dce0;
  --panel-graphite: #26343e;
  --container: min(1180px, calc(100% - 40px));
  --headline: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body: "Source Sans 3", system-ui, sans-serif;
  --header-height: 76px;
  font-family: var(--body);
  color: var(--panel-graphite);
  background: var(--sheet-white);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 14px); }
body { margin: 0; min-width: 320px; overflow-x: hidden; background: var(--sheet-white); color: var(--panel-graphite); }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; }
::selection { color: #fff; background: var(--cab-blue); }

.skip-link {
  position: fixed;
  z-index: 999;
  top: -80px;
  left: 20px;
  padding: 11px 16px;
  background: var(--asphalt);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}
.skip-link:focus { top: 12px; }

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: background-color .2s, border-color .2s, box-shadow .2s;
}
.site-header.scrolled,
.site-header.menu-open {
  background: rgba(247, 248, 245, .97);
  border-color: rgba(38, 52, 62, .14);
  box-shadow: 0 7px 28px rgba(11, 27, 43, .06);
}
.header-inner {
  width: min(1320px, calc(100% - 40px));
  height: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { width: 142px; height: auto; }
.site-header .brand-light { display: none; }
.site-header nav { display: flex; align-items: center; gap: 25px; margin-left: auto; }
.site-header nav a,
.login-link {
  color: var(--panel-graphite);
  font-size: .86rem;
  font-weight: 700;
  text-decoration: none;
  text-underline-offset: 6px;
}
.site-header nav a:hover,
.site-header nav a:focus-visible,
.login-link:hover,
.login-link:focus-visible { color: var(--cab-blue); text-decoration: underline; }
.header-actions { display: flex; align-items: center; gap: 19px; }

.button {
  min-height: 48px;
  padding: 12px 21px;
  border: 2px solid var(--reflective-orange);
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: var(--reflective-orange);
  color: var(--asphalt);
  font-weight: 800;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition: background-color .16s, border-color .16s, color .16s;
}
.button:hover { border-color: var(--asphalt); background: var(--asphalt); color: #fff; }
.button:focus-visible,
button:focus-visible,
a:focus-visible,
summary:focus-visible { outline: 3px solid var(--reflective-orange); outline-offset: 3px; }
.button-small { min-height: 40px; padding: 9px 16px; font-size: .84rem; }
.button-outline { border-color: var(--cab-blue); background: transparent; color: var(--cab-blue); }
.button-outline:hover { border-color: var(--asphalt); color: #fff; }
.button-light { border-color: #fff; background: #fff; color: var(--asphalt); }
.button-light:hover { border-color: var(--reflective-orange); background: var(--reflective-orange); }
.button-outline-light { border-color: rgba(255,255,255,.72); background: transparent; color: #fff; }
.button-outline-light:hover { border-color: #fff; background: #fff; color: var(--asphalt); }

.menu-toggle,
.mobile-menu { display: none; }

.eyebrow {
  margin: 0 0 21px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cab-blue);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 30px;
  height: 6px;
  flex: 0 0 auto;
  border-left: 12px solid var(--reflective-orange);
  border-right: 12px solid var(--concrete);
}
.eyebrow.light { color: rgba(255,255,255,.72); }
.eyebrow.light::before { border-right-color: rgba(255,255,255,.4); }
.eyebrow.dark { color: var(--cab-blue); }

h1, h2, h3 { font-family: var(--headline); }
h1, h2 { margin: 0; color: var(--asphalt); font-weight: 700; letter-spacing: -.027em; line-height: .96; }
h2 { font-size: clamp(2.75rem, 5.8vw, 5.45rem); }
p { line-height: 1.62; }

.hero {
  min-height: 820px;
  padding-top: var(--header-height);
  display: grid;
  grid-template-columns: minmax(20px, 1fr) minmax(430px, 590px) minmax(480px, 700px) minmax(20px, 1fr);
  grid-template-rows: 1fr auto;
  background: var(--sheet-white);
  border-bottom: 1px solid var(--concrete);
}
.hero-copy {
  grid-column: 2;
  align-self: center;
  padding: 90px 54px 80px 0;
}
.hero h1 { max-width: 660px; font-size: clamp(3.65rem, 5.6vw, 6.5rem); }
.hero-lead { max-width: 600px; margin: 27px 0 31px; color: #52616b; font-size: 1.12rem; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; }
.hero-note { margin: 14px 0 0; color: rgba(38,52,62,.82); font-size: .8rem; }
.hero-visual {
  grid-column: 3 / 5;
  position: relative;
  min-height: 650px;
  overflow: hidden;
  border-left: 8px solid var(--reflective-orange);
  background: var(--concrete);
}
.hero-visual figure { position: absolute; inset: 0; margin: 0; }
.hero-visual figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11, 27, 43, .08);
  pointer-events: none;
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; object-position: 54% center; }
.dispatch-ticket {
  position: absolute;
  z-index: 2;
  right: 30px;
  bottom: 30px;
  width: min(390px, calc(100% - 60px));
  background: var(--sheet-white);
  border-top: 5px solid var(--reflective-orange);
  box-shadow: 0 18px 55px rgba(11, 27, 43, .22);
}
.dispatch-ticket > div {
  padding: 12px 17px;
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 12px;
  border-bottom: 1px solid var(--concrete);
  align-items: baseline;
}
.dispatch-ticket > div:last-child { border-bottom: 0; }
.dispatch-ticket span { color: rgba(38,52,62,.82); font-size: .67rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.dispatch-ticket strong { color: var(--asphalt); font-size: .91rem; }
.dispatch-ticket .status-running { color: var(--cab-blue); }
.trust-strip {
  grid-column: 1 / -1;
  min-height: 108px;
  padding: 0 max(20px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  align-items: center;
  background: var(--asphalt);
  color: #fff;
}
.trust-strip p { margin: 0; padding: 0 34px; display: flex; align-items: baseline; gap: 12px; border-left: 1px solid rgba(255,255,255,.13); }
.trust-strip p:first-child { padding-left: 0; border-left: 0; }
.trust-strip strong { font-family: var(--headline); color: var(--reflective-orange); font-size: 2.15rem; line-height: 1; }
.trust-strip span { max-width: 115px; color: rgba(255,255,255,.72); font-size: .78rem; line-height: 1.2; }
.trust-strip small { color: rgba(255,255,255,.72); font-size: .66rem; }

.problems,
.product,
.pricing,
.faq { padding: clamp(90px, 10vw, 150px) max(20px, calc((100vw - 1180px) / 2)); }
.section-intro { max-width: 840px; }
.section-intro > p:last-child { max-width: 680px; margin: 28px 0 0; color: #61707a; font-size: 1.05rem; }
.incident-list { margin-top: 70px; border-top: 3px solid var(--asphalt); }
.incident-list article {
  min-height: 190px;
  padding: 32px 0;
  display: grid;
  grid-template-columns: 130px minmax(0, 680px) 1fr;
  gap: 36px;
  align-items: center;
  border-bottom: 1px solid var(--concrete);
}
.incident-list article:nth-child(2) { margin-left: 7%; }
.incident-list article:nth-child(3) { margin-left: 14%; }
.incident-code {
  width: max-content;
  padding: 5px 9px;
  border: 1px solid var(--cab-blue);
  color: var(--cab-blue);
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .11em;
}
.incident-list h3 { margin: 0; color: var(--asphalt); font-size: clamp(1.75rem, 3vw, 2.65rem); line-height: 1.03; }
.incident-list p { max-width: 610px; margin: 12px 0 0; color: #63717a; }
.incident-list article > strong { justify-self: end; color: var(--cab-blue); font-family: var(--headline); font-size: 4.8rem; line-height: 1; }

.workflow {
  padding: clamp(90px, 10vw, 150px) max(20px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: 38% 62%;
  gap: 65px;
  background: var(--asphalt);
  color: #fff;
}
.workflow-heading { align-self: start; position: sticky; top: calc(var(--header-height) + 40px); }
.workflow-heading h2 { color: #fff; }
.workflow-heading > p:last-child { max-width: 390px; margin: 25px 0 0; color: rgba(255,255,255,.6); }
.workflow-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.25); }
.workflow-list li {
  min-height: 210px;
  padding: 29px 0;
  display: grid;
  grid-template-columns: 52px 1fr 150px;
  gap: 22px;
  align-items: start;
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.step-number { color: var(--reflective-orange); font-family: var(--headline); font-size: 2.3rem; line-height: 1; }
.workflow-list small { color: rgba(255,255,255,.64); font-size: .66rem; font-weight: 800; letter-spacing: .11em; }
.workflow-list h3 { margin: 7px 0 10px; color: #fff; font-size: 2rem; line-height: 1; }
.workflow-list p { max-width: 490px; margin: 0; color: rgba(255,255,255,.62); font-size: .92rem; }
.step-output { align-self: center; padding-left: 13px; border-left: 4px solid var(--reflective-orange); color: #fff; font-size: .76rem; font-weight: 700; }

.field-proof { min-height: 730px; display: grid; grid-template-columns: 56% 44%; background: #fff; }
.field-proof-image { position: relative; min-height: 620px; overflow: hidden; }
.field-proof-image img { width: 100%; height: 100%; object-fit: cover; }
.photo-caption {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 11px 16px;
  background: var(--asphalt);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
}
.field-proof-copy { padding: clamp(55px, 7vw, 110px); display: flex; flex-direction: column; justify-content: center; }
.field-proof-copy h2 { font-size: clamp(3rem, 5vw, 5.1rem); }
.field-proof blockquote { margin: 35px 0 16px; padding-left: 21px; border-left: 6px solid var(--reflective-orange); color: var(--cab-blue); font-family: var(--headline); font-size: clamp(1.55rem, 2.7vw, 2.3rem); line-height: 1.13; }
.quote-source { max-width: 460px; margin: 0; color: #61707a; font-size: .86rem; font-weight: 700; }
.proof-note { max-width: 460px; margin: 25px 0 0; padding-top: 18px; border-top: 1px solid var(--concrete); color: rgba(38,52,62,.78); font-size: .75rem; }

.product { position: relative; background: var(--sheet-white); overflow: hidden; }
.anchor-alias { position: absolute; inset: 0 auto auto; }
.product-intro { margin-left: 25%; }
.product-stage { position: relative; min-height: 690px; margin-top: 70px; }
.desktop-shot { width: min(1000px, 86%); margin: 0; background: #fff; border: 1px solid var(--concrete); box-shadow: 0 25px 70px rgba(11,27,43,.14); }
.browser-bar { height: 37px; padding: 0 13px; display: flex; align-items: center; gap: 7px; border-bottom: 1px solid var(--concrete); background: #edf0f1; }
.browser-bar > span { width: 8px; height: 8px; border-radius: 50%; background: #aab2b7; }
.browser-bar > span:first-child { background: var(--reflective-orange); }
.browser-bar small { margin-left: 10px; color: rgba(38,52,62,.82); font-size: .62rem; }
.desktop-shot > img { width: 100%; height: auto; }
.desktop-shot figcaption,
.phone-shot figcaption { padding: 14px 17px; display: flex; justify-content: space-between; gap: 18px; border-top: 1px solid var(--concrete); font-size: .76rem; }
.desktop-shot figcaption strong,
.phone-shot figcaption strong { color: var(--asphalt); }
.desktop-shot figcaption span,
.phone-shot figcaption span { color: #6b7880; }
.phone-shot {
  position: absolute;
  right: 0;
  top: 70px;
  width: 280px;
  margin: 0;
  padding: 9px 9px 0;
  border: 6px solid var(--asphalt);
  border-radius: 31px;
  background: var(--asphalt);
  box-shadow: 0 28px 65px rgba(11,27,43,.3);
}
.phone-speaker { width: 54px; height: 5px; margin: 0 auto 8px; border-radius: 8px; background: #52616b; }
.phone-shot img { width: 100%; height: auto; aspect-ratio: 390 / 844; object-fit: contain; border-radius: 18px 18px 0 0; }
.phone-shot figcaption { margin: 0 -9px; padding: 14px 13px 16px; display: grid; background: #fff; border-radius: 0 0 24px 24px; }
.product-ledger { margin-top: 30px; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 3px solid var(--asphalt); border-bottom: 1px solid var(--concrete); }
.product-ledger div { min-height: 110px; padding: 22px 18px; border-right: 1px solid var(--concrete); }
.product-ledger div:last-child { border-right: 0; }
.product-ledger span { display: block; margin-bottom: 16px; color: var(--cab-blue); font-size: .67rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.product-ledger strong { color: var(--asphalt); font-size: .9rem; }

.pricing { background: #fff; }
.pricing-head { display: grid; grid-template-columns: 2fr 1fr; gap: 80px; align-items: end; }
.pricing-head > p { margin: 0 0 7px; color: #63717a; }
.billing-toggle { width: max-content; margin: 48px 0 30px auto; display: flex; border: 1px solid var(--concrete); }
.billing-toggle button { min-height: 42px; padding: 9px 17px; border: 0; border-right: 1px solid var(--concrete); background: #fff; color: var(--panel-graphite); cursor: pointer; font-weight: 700; }
.billing-toggle button:last-child { border-right: 0; }
.billing-toggle button.active { background: var(--asphalt); color: #fff; }
.plans { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); border-top: 4px solid var(--asphalt); border-left: 1px solid var(--concrete); }
.plan-card,
.plan-skeleton { min-height: 530px; padding: 29px 25px; border-right: 1px solid var(--concrete); border-bottom: 1px solid var(--concrete); background: var(--sheet-white); }
.plan-card { display: flex; flex-direction: column; }
.plan-index { color: var(--cab-blue); font-family: var(--headline); font-size: 1rem; font-weight: 700; }
.plan-card h3 { margin: 27px 0 9px; color: var(--asphalt); font-size: 2.35rem; line-height: .95; }
.plan-description { min-height: 48px; margin: 0; color: rgba(38,52,62,.82); font-size: .84rem; }
.plan-price { margin: 25px 0 23px; padding: 22px 0; border-top: 1px solid var(--concrete); border-bottom: 1px solid var(--concrete); }
.plan-price strong { display: block; color: var(--asphalt); font-family: var(--headline); font-size: 2.55rem; line-height: 1; }
.plan-price span { color: rgba(38,52,62,.82); font-size: .72rem; }
.plan-features { margin: 0 0 25px; padding: 0; display: grid; gap: 9px; list-style: none; color: #52616b; font-size: .78rem; }
.plan-features li { position: relative; padding-left: 17px; }
.plan-features li::before { content: ""; position: absolute; top: .55em; left: 0; width: 7px; height: 3px; border-left: 2px solid var(--cab-blue); border-bottom: 2px solid var(--cab-blue); transform: rotate(-45deg); }
.plan-card .button { width: 100%; margin-top: auto; }
.plan-skeleton { display: grid; align-content: start; gap: 20px; }
.plan-skeleton span { display: block; height: 17px; background: var(--concrete); animation: skeleton 1.3s ease-in-out infinite alternate; }
.plan-skeleton span:nth-child(1) { width: 34%; }
.plan-skeleton span:nth-child(2) { width: 72%; height: 48px; }
.plan-skeleton span:nth-child(3) { width: 100%; height: 170px; }
@keyframes skeleton { to { opacity: .35; } }
.pricing-note { margin: 23px 0 0; color: #6b7880; font-size: .74rem; text-align: center; }
.plans-error { grid-column: 1 / -1; margin: 0; padding: 45px 30px; border-right: 1px solid var(--concrete); border-bottom: 1px solid var(--concrete); color: var(--panel-graphite); }
.plans-error a { color: var(--cab-blue); font-weight: 800; }

.whatsapp-section {
  padding: clamp(75px, 9vw, 125px) max(20px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 80px;
  align-items: center;
  background: var(--cab-blue);
  color: #fff;
}
.whatsapp-copy h2 { color: #fff; font-size: clamp(3rem, 5vw, 5.2rem); }
.whatsapp-copy > p:last-child { max-width: 650px; margin: 24px 0 0; color: rgba(255,255,255,.7); }
.whatsapp-card { min-height: 260px; padding: 30px; display: flex; flex-direction: column; justify-content: space-between; border: 1px solid rgba(255,255,255,.32); border-top: 6px solid var(--reflective-orange); color: #fff; text-decoration: none; }
.whatsapp-card:hover { background: var(--asphalt); }
.whatsapp-card span { color: rgba(255,255,255,.78); font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.whatsapp-card strong { font-family: var(--headline); font-size: clamp(1.9rem, 3vw, 2.7rem); line-height: 1; }
.whatsapp-card em { display: flex; justify-content: space-between; font-style: normal; font-weight: 800; }
.whatsapp-card i { color: var(--reflective-orange); font-style: normal; }

.faq { display: grid; grid-template-columns: 36% 64%; gap: 75px; }
.faq-heading { position: sticky; top: calc(var(--header-height) + 38px); align-self: start; }
.faq-heading h2 { font-size: clamp(2.8rem, 4.8vw, 4.8rem); }
.faq-heading > p:last-child { max-width: 330px; color: #65737c; }
.faq-list { border-top: 3px solid var(--asphalt); }
.faq-list details { border-bottom: 1px solid var(--concrete); }
.faq-list summary { min-height: 78px; padding: 22px 2px; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: var(--asphalt); cursor: pointer; font-family: var(--headline); font-size: 1.45rem; line-height: 1.05; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--reflective-orange); font-family: var(--body); font-size: 1.4rem; font-weight: 400; transition: transform .15s; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 690px; margin: -5px 0 25px; color: #61707a; }

.final-cta { position: relative; padding: clamp(100px, 12vw, 170px) 20px; overflow: hidden; background: var(--asphalt); color: #fff; text-align: center; }
.final-cta .eyebrow { justify-content: center; }
.final-cta h2 { max-width: 900px; margin: auto; color: #fff; font-size: clamp(3.65rem, 7.7vw, 8rem); }
.final-cta > p:not(.eyebrow) { max-width: 590px; margin: 27px auto 33px; color: rgba(255,255,255,.62); }
.final-cta .hero-actions { justify-content: center; }
.route-mark { position: absolute; top: 0; left: 50%; width: min(650px, 70vw); height: 8px; display: grid; grid-template-columns: 1.5fr 1fr 1.5fr 1fr 1.5fr; transform: translateX(-50%); }
.route-mark span:nth-child(odd) { background: var(--reflective-orange); }
.route-mark span:nth-child(even) { background: var(--sheet-white); }

.site-footer { padding: 55px max(20px, calc((100vw - 1180px) / 2)) 30px; background: #06111b; color: rgba(255,255,255,.62); }
.footer-main { display: grid; grid-template-columns: 190px 1fr auto; gap: 45px; align-items: center; }
.footer-main p { margin: 0; }
.footer-main nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 20px; }
.footer-main nav a { color: #fff; font-size: .78rem; font-weight: 700; text-decoration: none; }
.footer-main nav a:hover { color: var(--reflective-orange); }
.footer-bottom { margin-top: 40px; padding-top: 22px; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.12); font-size: .7rem; }

.mobile-whatsapp { display: none; }

@media (max-width: 1080px) {
  .site-header nav { display: none; }
  .header-actions { margin-left: auto; }
  .hero { grid-template-columns: minmax(20px, 1fr) minmax(390px, 520px) minmax(420px, 1fr); }
  .hero-copy { grid-column: 2; padding-right: 35px; }
  .hero-visual { grid-column: 3; }
  .hero h1 { font-size: clamp(3.5rem, 6.4vw, 5.8rem); }
  .trust-strip { padding-top: 24px; padding-bottom: 18px; grid-template-columns: repeat(3, 1fr); row-gap: 15px; }
  .trust-strip small { grid-column: 1 / -1; text-align: right; }
  .workflow { grid-template-columns: 34% 66%; gap: 45px; }
  .product-stage { min-height: 610px; }
  .phone-shot { width: 245px; }
  .pricing-head { gap: 45px; }
  .whatsapp-section { gap: 45px; }
}

@media (max-width: 820px) {
  :root { --container: min(100% - 32px, 680px); --header-height: 68px; }
  .header-inner { width: calc(100% - 32px); }
  .header-actions { display: none; }
  .menu-toggle { width: 44px; height: 44px; padding: 0; border: 1px solid var(--concrete); display: grid; place-content: center; gap: 6px; background: var(--sheet-white); cursor: pointer; }
  .menu-toggle span { width: 19px; height: 2px; background: var(--asphalt); transition: transform .16s; }
  .site-header.menu-open .menu-toggle span:first-child { transform: translateY(4px) rotate(45deg); }
  .site-header.menu-open .menu-toggle span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .mobile-menu { position: fixed; z-index: 90; inset: var(--header-height) 0 auto; padding: 15px 20px 25px; display: none; background: var(--sheet-white); border-bottom: 1px solid var(--concrete); box-shadow: 0 25px 50px rgba(11,27,43,.16); }
  .site-header.menu-open .mobile-menu { display: grid; }
  .mobile-menu a { padding: 15px 0; border-bottom: 1px solid var(--concrete); color: var(--asphalt); font-family: var(--headline); font-size: 1.45rem; text-decoration: none; }
  .mobile-menu a:last-child { border-bottom: 0; color: var(--reflective-orange); }

  .hero { min-height: 0; display: flex; flex-direction: column; padding-top: var(--header-height); }
  .hero-copy { width: var(--container); margin: 0 auto; padding: 70px 0 50px; }
  .hero h1 { font-size: clamp(3.7rem, 12vw, 5.8rem); }
  .hero-visual { min-height: 510px; border-top: 7px solid var(--reflective-orange); border-left: 0; }
  .trust-strip { padding: 28px 20px 18px; grid-template-columns: repeat(3, 1fr); }
  .trust-strip p { padding: 0 20px; display: grid; gap: 5px; }
  .trust-strip strong { font-size: 1.85rem; }
  .trust-strip span { font-size: .7rem; }

  .incident-list article,
  .incident-list article:nth-child(2),
  .incident-list article:nth-child(3) { margin-left: 0; grid-template-columns: 100px 1fr; }
  .incident-list article > strong { display: none; }
  .workflow { grid-template-columns: 1fr; }
  .workflow-heading,
  .faq-heading { position: static; }
  .workflow-heading > p:last-child { max-width: 620px; }
  .field-proof { min-height: 0; grid-template-columns: 1fr; }
  .field-proof-image { min-height: 520px; }
  .field-proof-copy { padding: 70px max(20px, calc((100vw - 680px) / 2)); }
  .product-intro { margin-left: 0; }
  .product-stage { min-height: 570px; }
  .desktop-shot { width: 100%; }
  .phone-shot { top: 205px; width: 220px; }
  .product-ledger { grid-template-columns: 1fr 1fr; }
  .product-ledger div:nth-child(2) { border-right: 0; }
  .product-ledger div:nth-child(-n+2) { border-bottom: 1px solid var(--concrete); }
  .pricing-head { grid-template-columns: 1fr; gap: 25px; }
  .billing-toggle { margin-left: 0; }
  .plans { grid-template-columns: 1fr 1fr; }
  .whatsapp-section { grid-template-columns: 1fr; }
  .faq { grid-template-columns: 1fr; gap: 50px; }
  .footer-main { grid-template-columns: 1fr; gap: 24px; }
  .footer-main nav { justify-content: flex-start; }
}

@media (max-width: 560px) {
  :root { --container: calc(100% - 32px); }
  h2 { font-size: 3.15rem; }
  .brand img { width: 124px; }
  .hero-copy { padding: 53px 0 42px; }
  .hero h1 { font-size: clamp(3.2rem, 16vw, 4.45rem); line-height: .91; }
  .hero-lead { margin: 22px 0 25px; font-size: 1rem; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-visual { min-height: 420px; }
  .hero-visual img { object-position: 59% center; }
  .dispatch-ticket { right: 16px; bottom: 16px; width: calc(100% - 32px); }
  .trust-strip { padding: 0; display: grid; grid-template-columns: 1fr; row-gap: 0; }
  .trust-strip p { min-height: 82px; padding: 0 16px; display: grid; grid-template-columns: 94px 1fr; align-content: center; border-left: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .trust-strip p:first-child { padding-left: 16px; }
  .trust-strip strong { font-size: 2rem; }
  .trust-strip span { max-width: none; }
  .trust-strip small { grid-column: 1; padding: 12px 16px; text-align: left; }

  .problems,
  .product,
  .pricing,
  .faq { padding: 78px 16px; }
  .section-intro > p:last-child { font-size: .96rem; }
  .incident-list { margin-top: 48px; }
  .incident-list article,
  .incident-list article:nth-child(2),
  .incident-list article:nth-child(3) { min-height: 0; padding: 27px 0; display: block; }
  .incident-code { margin-bottom: 18px; }
  .incident-list h3 { font-size: 2rem; }
  .incident-list p { font-size: .9rem; }

  .workflow { padding: 78px 16px; gap: 50px; }
  .workflow-list li { min-height: 0; grid-template-columns: 34px 1fr; gap: 13px; }
  .workflow-list h3 { font-size: 1.7rem; }
  .workflow-list p { font-size: .86rem; }
  .step-output { grid-column: 2; margin-top: 10px; align-self: auto; }
  .field-proof-image { min-height: 390px; }
  .field-proof-image img { object-position: 45% center; }
  .field-proof-copy { padding: 66px 16px; }
  .field-proof blockquote { margin-top: 28px; font-size: 1.65rem; }

  .product-stage { min-height: 570px; margin-top: 48px; }
  .desktop-shot { width: 146%; transform: translateX(-2%); }
  .desktop-shot figcaption { display: none; }
  .phone-shot { top: 185px; right: 4px; width: 205px; border-width: 5px; }
  .phone-shot figcaption span { display: none; }
  .product-ledger { margin-top: 20px; grid-template-columns: 1fr; }
  .product-ledger div { min-height: 88px; border-right: 0; border-bottom: 1px solid var(--concrete); }
  .product-ledger div:last-child { border-bottom: 0; }

  .billing-toggle { width: 100%; overflow-x: auto; }
  .billing-toggle button { flex: 1 0 auto; }
  .plans { grid-template-columns: 1fr; }
  .plan-card,
  .plan-skeleton { min-height: 0; }
  .plan-card { min-height: 510px; }
  .whatsapp-section { padding: 72px 16px; gap: 38px; }
  .whatsapp-card { min-height: 225px; padding: 24px; }
  .faq-list summary { font-size: 1.25rem; }
  .faq-list details p { font-size: .9rem; }
  .final-cta { padding: 100px 16px 120px; }
  .final-cta h2 { font-size: clamp(3.5rem, 17vw, 5rem); }
  .footer-main nav { display: grid; grid-template-columns: 1fr 1fr; }
  .footer-bottom { padding-bottom: 68px; display: grid; }
  .mobile-whatsapp {
    position: fixed;
    z-index: 95;
    right: 14px;
    bottom: max(14px, env(safe-area-inset-bottom));
    min-height: 48px;
    padding: 10px 15px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 2px solid #fff;
    border-radius: 3px;
    background: var(--reflective-orange);
    color: var(--asphalt);
    box-shadow: 0 8px 24px rgba(11,27,43,.25);
    font-size: .82rem;
    font-weight: 800;
    text-decoration: none;
  }
  .mobile-whatsapp svg { width: 20px; height: 20px; fill: currentColor; }
}

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

@media print {
  .site-header,
  .mobile-whatsapp,
  .hero-actions,
  .whatsapp-section,
  .final-cta { display: none !important; }
  .hero { min-height: 0; display: block; padding: 30px; }
  .hero-copy { padding: 0; }
  .hero-visual { min-height: 420px; margin-top: 30px; }
  .workflow { display: block; background: #fff; color: #000; }
  .workflow h2,
  .workflow h3 { color: #000; }
}
