@font-face {
  font-family: "Manrope";
  src: url("/assets/manrope-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

:root {
  --blue: #195eed;
  --blue-deep: #07239f;
  --blue-dark: #061965;
  --blue-soft: #dce9ff;
  --blue-pale: #f0f5ff;
  --ink: #090b15;
  --white: #ffffff;
  --paper: #f7f8fc;
  --muted: #626979;
  --line: #dce1eb;
  --dark-line: rgba(255, 255, 255, 0.16);
  --shell: min(1320px, calc(100% - 72px));
  --radius: 26px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--white);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body, button, input, select { font-family: "Manrope", Arial, Helvetica, sans-serif !important; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select { font: inherit; }
h1, h2, h3, p { margin-top: 0; }
em { color: var(--blue); font-style: normal; }
.section-shell { width: var(--shell); margin-inline: auto; }

.skip {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 12px 16px;
  color: var(--white);
  background: var(--blue);
  transform: translateY(-160%);
}
.skip:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  z-index: 60;
  top: 0;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(9,11,21,.1);
  backdrop-filter: blur(18px);
}
.header-shell {
  width: var(--shell);
  min-height: 78px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand { display: inline-flex; align-items: center; gap: 7px; font-size: 19px; font-weight: 800; letter-spacing: -.04em; }
.brand img { width: 52px; height: 52px; object-fit: cover; }
.brand strong { color: var(--blue); }
.desktop-nav { display: flex; align-items: center; gap: clamp(22px, 3vw, 46px); }
.desktop-nav a, .client-link { color: #414655; font-size: 14px; font-weight: 700; }
.desktop-nav a:hover, .client-link:hover { color: var(--blue); }
.header-actions { display: flex; align-items: center; gap: 20px; }
.nav-cta {
  min-height: 48px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 28px;
  color: var(--white);
  background: var(--blue);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 9px 22px rgba(25,94,237,.22);
  transition: background 160ms ease, transform 160ms ease;
}
.nav-cta:hover { background: var(--blue-deep); transform: translateY(-1px); }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 0; background: transparent; border: 0; }
.menu-toggle span { display: block; width: 24px; height: 2px; margin: 6px auto; background: var(--ink); }
.mobile-nav { padding: 6px 24px 22px; background: var(--white); border-top: 1px solid var(--line); }
.mobile-nav a { display: block; padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 16px; font-weight: 750; }

.hero {
  position: relative;
  min-height: calc(100svh - 78px);
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(4,8,20,.96) 0%, rgba(4,8,20,.88) 31%, rgba(4,8,20,.5) 54%, rgba(4,8,20,.08) 82%),
    linear-gradient(180deg, rgba(4,8,20,.04), rgba(4,8,20,.48)),
    url("/assets/gastrohelp-hero-blue.webp");
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(25,94,237,.12), transparent 48%);
  mix-blend-mode: screen;
}
.hero-shell {
  position: relative;
  z-index: 1;
  width: var(--shell);
  min-height: calc(100svh - 78px);
  margin-inline: auto;
  padding: clamp(78px, 9vw, 136px) 0 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero-copy { max-width: 910px; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  color: #a8c7ff;
  font-size: 13px;
  letter-spacing: .18em;
  font-weight: 800;
}
.eyebrow > span { width: 34px; height: 2px; background: currentColor; }
.hero h1 {
  margin: 0 0 32px;
  font-size: clamp(54px, 6.65vw, 104px);
  line-height: .96;
  letter-spacing: -.07em;
  font-weight: 780;
}
.hero h1 em { color: #7eb0ff; }
.hero-description { max-width: 700px; margin-bottom: 36px; color: rgba(255,255,255,.76); font-size: clamp(18px, 1.5vw, 22px); line-height: 1.58; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.button {
  min-height: 58px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
  border: 1px solid var(--ink);
  border-radius: 14px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--blue); border-color: var(--blue); box-shadow: 0 14px 32px rgba(25,94,237,.3); }
.button-primary:hover { background: #2c6cf0; }
.button-glass { color: var(--white); background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.32); backdrop-filter: blur(12px); }
.button-glass:hover { background: rgba(255,255,255,.15); }
.button-white { color: var(--blue-deep); background: var(--white); border-color: var(--white); }
.hero-bottom {
  padding-top: 25px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,.3);
}
.hero-bottom span { min-height: 34px; padding: 0 22px; display: flex; align-items: center; border-left: 1px solid rgba(255,255,255,.22); color: rgba(255,255,255,.68); font-size: 13px; font-weight: 700; }
.hero-bottom span:first-child { padding-left: 0; border-left: 0; }

.promise-bar { color: var(--white); background: var(--blue); }
.promise-bar > div { width: var(--shell); min-height: 96px; margin-inline: auto; display: grid; grid-template-columns: .45fr .8fr 1.2fr auto; align-items: center; gap: 34px; }
.promise-bar strong { font-size: 14px; letter-spacing: .14em; }
.promise-bar span { color: rgba(255,255,255,.75); font-size: 15px; }
.promise-bar a { justify-self: end; font-size: 14px; font-weight: 800; border-bottom: 1px solid rgba(255,255,255,.55); }

.section-topline { min-height: 78px; display: grid; grid-template-columns: 64px 1fr; align-items: center; border-bottom: 1px solid var(--line); color: var(--blue); }
.section-topline span { font-size: 13px; font-weight: 800; }
.section-topline p { margin: 0; font-size: 12px; letter-spacing: .17em; font-weight: 800; }
.section-topline-light { color: #84b2ff; border-color: var(--dark-line); }

.diagnostic { padding-bottom: 128px; }
.diagnostic-heading { padding: 70px 0 62px; display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(320px, .52fr); gap: 80px; align-items: end; }
.diagnostic-heading h2, .system-heading h2, .solutions-intro h2, .measurement-heading h2, .method-heading h2, .faq-layout h2 {
  margin: 0;
  font-size: clamp(46px, 5.55vw, 82px);
  line-height: .98;
  letter-spacing: -.065em;
  font-weight: 760;
}
.diagnostic-heading > p, .system-heading > p, .solutions-intro > p, .measurement-heading > p { margin: 0; color: var(--muted); font-size: 18px; line-height: 1.65; }
.diagnostic-layout { display: grid; grid-template-columns: .9fr 1.1fr; min-height: 590px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: 0 24px 65px rgba(9,11,21,.08); }
.diagnostic-options { padding: 18px; display: flex; flex-direction: column; gap: 8px; background: var(--paper); }
.diagnostic-options button { position: relative; flex: 1; width: 100%; padding: 22px; display: grid; grid-template-columns: 38px 1fr 28px; grid-template-rows: auto auto; gap: 5px 12px; text-align: left; color: var(--ink); background: transparent; border: 0; border-radius: 17px; cursor: pointer; }
.diagnostic-options button:hover { background: var(--white); }
.diagnostic-options button[aria-selected="true"] { color: var(--white); background: var(--blue); box-shadow: 0 12px 28px rgba(25,94,237,.24); }
.diagnostic-options button > span { grid-row: 1 / span 2; padding-top: 4px; font-size: 12px; font-weight: 800; }
.diagnostic-options strong { font-size: clamp(17px, 1.55vw, 22px); line-height: 1.25; letter-spacing: -.025em; }
.diagnostic-options small { grid-column: 2; color: var(--muted); font-size: 13px; }
.diagnostic-options button[aria-selected="true"] small { color: rgba(255,255,255,.72); }
.diagnostic-options b { grid-column: 3; grid-row: 1 / span 2; align-self: center; justify-self: end; font-size: 20px; font-weight: 500; }
.diagnostic-result { position: relative; padding: clamp(46px, 5vw, 76px); display: flex; flex-direction: column; align-items: flex-start; justify-content: center; color: var(--white); background: linear-gradient(145deg, var(--blue-deep), var(--blue) 82%); overflow: hidden; }
.diagnostic-result > * { transition: opacity 130ms ease, transform 130ms ease; }
.diagnostic-result.is-changing > * { opacity: .18; transform: translateY(4px); }
.diagnostic-result::after { content: ""; position: absolute; right: -180px; bottom: -220px; width: 500px; height: 500px; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; box-shadow: 0 0 0 55px rgba(255,255,255,.035), 0 0 0 110px rgba(255,255,255,.025); }
.result-number { position: absolute; top: 22px; right: 30px; color: rgba(255,255,255,.1); font-size: 144px; line-height: 1; font-weight: 800; letter-spacing: -.08em; }
.diagnostic-result > p:first-of-type { position: relative; z-index: 1; margin-bottom: 22px; color: #a9c8ff; font-size: 12px; letter-spacing: .15em; font-weight: 800; }
.diagnostic-result h3 { position: relative; z-index: 1; max-width: 650px; margin-bottom: 22px; font-size: clamp(36px, 4.2vw, 62px); line-height: 1.02; letter-spacing: -.055em; }
.diagnostic-result > p:not(:first-of-type) { position: relative; z-index: 1; max-width: 620px; margin-bottom: 26px; color: rgba(255,255,255,.73); font-size: 17px; }
.result-tags { position: relative; z-index: 1; margin-bottom: 32px; display: flex; flex-wrap: wrap; gap: 8px; }
.result-tags span { padding: 8px 11px; border: 1px solid rgba(255,255,255,.27); border-radius: 999px; color: rgba(255,255,255,.82); font-size: 12px; font-weight: 700; }
.diagnostic-result .button { position: relative; z-index: 1; }

.system { color: var(--white); background: var(--ink); }
.system > .section-shell { padding-bottom: 128px; }
.system-heading { padding: 70px 0 64px; display: grid; grid-template-columns: 1.2fr .5fr; align-items: end; gap: 80px; }
.system-heading > p { color: rgba(255,255,255,.63); }
.journey { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); list-style: none; border-top: 1px solid var(--dark-line); border-left: 1px solid var(--dark-line); }
.journey li { position: relative; min-height: 510px; padding: 28px; display: flex; flex-direction: column; border-right: 1px solid var(--dark-line); border-bottom: 1px solid var(--dark-line); overflow: hidden; }
.journey li::after { content: ""; position: absolute; right: -70px; bottom: -80px; width: 210px; height: 210px; background: radial-gradient(circle, rgba(25,94,237,.3), transparent 68%); }
.journey-index { color: #7baaff; font-size: 12px; font-weight: 800; }
.journey-icon { width: 64px; height: 64px; margin: 60px 0 32px; display: grid; place-items: center; color: #8db8ff; border: 1px solid rgba(141,184,255,.5); border-radius: 50%; font-size: 28px; }
.journey li > p { margin-bottom: 12px; color: #8db8ff; font-size: 11px; letter-spacing: .15em; font-weight: 800; }
.journey h3 { margin-bottom: 16px; font-size: clamp(25px, 2.25vw, 34px); line-height: 1.08; letter-spacing: -.045em; }
.journey li > span { color: rgba(255,255,255,.57); font-size: 14px; }
.journey li > b { margin-top: auto; color: rgba(255,255,255,.38); font-size: 10px; letter-spacing: .12em; }

.solutions { padding-bottom: 130px; }
.solutions-layout { padding-top: 70px; display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(70px, 10vw, 150px); }
.solutions-intro { position: sticky; top: 128px; align-self: start; }
.solutions-intro h2 { margin-bottom: 30px; }
.solutions-intro > p { max-width: 540px; margin-bottom: 30px; }
.inline-link { display: inline-flex; align-items: center; gap: 24px; color: var(--blue); border-bottom: 1px solid var(--blue); font-weight: 800; }
.solution-stack { border-top: 1px solid var(--ink); }
.solution-stack article { min-height: 250px; padding: 32px 0; display: grid; grid-template-columns: 72px 1fr; gap: 26px; border-bottom: 1px solid var(--ink); }
.solution-count { color: var(--blue); font-size: 13px; font-weight: 800; }
.solution-stack article p { margin-bottom: 9px; color: var(--blue); font-size: 11px; letter-spacing: .15em; font-weight: 800; }
.solution-stack h3 { max-width: 620px; margin-bottom: 26px; font-size: clamp(29px, 3vw, 44px); line-height: 1.06; letter-spacing: -.05em; }
.solution-stack ul { margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; list-style: none; }
.solution-stack li { padding: 7px 10px; color: #41495a; background: var(--blue-pale); border-radius: 999px; font-size: 12px; font-weight: 700; }

.measurement { color: var(--white); background: linear-gradient(135deg, var(--blue-deep), var(--blue)); }
.measurement > .section-shell { padding-bottom: 126px; }
.measurement-heading { padding: 70px 0 62px; display: grid; grid-template-columns: 1.1fr .55fr; gap: 80px; align-items: end; }
.measurement-heading > p { color: rgba(255,255,255,.68); }
.measurement-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--dark-line); border-left: 1px solid var(--dark-line); }
.measurement-grid article { min-height: 275px; padding: 28px; display: flex; flex-direction: column; border-right: 1px solid var(--dark-line); border-bottom: 1px solid var(--dark-line); }
.measurement-grid span { margin-bottom: auto; color: #b7d0ff; font-size: 12px; font-weight: 800; }
.measurement-grid h3 { margin-bottom: 14px; font-size: clamp(26px, 2.55vw, 37px); line-height: 1.05; letter-spacing: -.045em; }
.measurement-grid p { margin: 0; color: rgba(255,255,255,.65); font-size: 14px; }

.method { padding-bottom: 128px; }
.method-heading { padding: 70px 0 62px; }
.method-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.method-grid article { min-height: 410px; padding: 28px; display: flex; flex-direction: column; justify-content: space-between; border: 1px solid var(--line); border-radius: 22px; background: var(--paper); transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease; }
.method-grid article:hover { transform: translateY(-5px); border-color: #b8cfff; box-shadow: 0 24px 50px rgba(9,11,21,.08); }
.method-grid article > span { color: var(--blue); font-size: 13px; font-weight: 800; }
.method-grid article div > p:first-child { margin-bottom: 12px; color: var(--blue); font-size: 11px; letter-spacing: .15em; font-weight: 800; }
.method-grid h3 { margin-bottom: 18px; font-size: clamp(28px, 2.75vw, 40px); line-height: 1.07; letter-spacing: -.05em; }
.method-grid article div > p:last-child { margin: 0; color: var(--muted); }

.contact { color: var(--white); background: var(--ink); }
.contact-shell { padding: 120px 0 128px; display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(60px, 9vw, 135px); align-items: start; }
.contact-copy h2 { margin: 38px 0 26px; font-size: clamp(48px, 5.85vw, 84px); line-height: .97; letter-spacing: -.067em; }
.contact-copy h2 em { color: #84b2ff; }
.contact-copy > p { max-width: 570px; color: rgba(255,255,255,.65); font-size: 18px; }
.contact-copy ul { margin: 34px 0 0; padding: 0; list-style: none; }
.contact-copy li { position: relative; padding: 14px 0 14px 24px; border-top: 1px solid var(--dark-line); color: rgba(255,255,255,.76); }
.contact-copy li::before { content: ""; position: absolute; top: 24px; left: 0; width: 7px; height: 7px; border-radius: 50%; background: var(--blue); }
.direct-contact { margin-top: 42px; display: flex; flex-direction: column; gap: 7px; }
.direct-contact > span { color: rgba(255,255,255,.45); font-size: 13px; }
.direct-contact a { color: #8db8ff; font-size: 17px; font-weight: 800; }
.form-card { color: var(--ink); background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: 0 26px 75px rgba(0,0,0,.27); }
#lead-form { padding: clamp(30px, 4vw, 54px); }
.form-heading { margin-bottom: 34px; }
.form-heading > span { color: var(--blue); font-size: 11px; letter-spacing: .16em; font-weight: 800; }
.form-heading h3 { margin: 10px 0 5px; font-size: clamp(34px, 3.4vw, 48px); line-height: 1; letter-spacing: -.055em; }
.form-heading p { margin: 0; color: var(--muted); font-size: 13px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid label { display: flex; flex-direction: column; gap: 7px; font-size: 13px; font-weight: 750; }
.full-field { grid-column: 1 / -1; }
input, select { width: 100%; min-height: 52px; padding: 0 14px; color: var(--ink); background: #f3f6fb; border: 1px solid transparent; border-radius: 10px; outline: 0; font-size: 15px; }
input:focus, select:focus { background: var(--white); border-color: var(--blue); box-shadow: 0 0 0 3px rgba(25,94,237,.13); }
input[aria-invalid="true"], select[aria-invalid="true"] { border-color: #b82232; }
.form-trap { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.privacy-check { margin: 22px 0; display: grid; grid-template-columns: 18px 1fr; gap: 10px; color: var(--muted); font-size: 12px; line-height: 1.5; }
.privacy-check input { width: 18px; min-height: 18px; margin: 1px 0 0; accent-color: var(--blue); }
.privacy-check a { color: var(--blue-deep); text-decoration: underline; }
.form-submit { width: 100%; color: var(--white); background: var(--blue); border-color: var(--blue); }
.form-submit:disabled { opacity: .6; cursor: wait; }
.form-feedback { min-height: 20px; margin: 12px 0 0; color: #a01122; font-size: 13px; }
.form-success { min-height: 500px; padding: 54px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.form-success[hidden] { display: none; }
.form-success > span { width: 56px; height: 56px; display: grid; place-items: center; color: var(--white); background: var(--blue); border-radius: 50%; font-size: 24px; font-weight: 800; }
.form-success h3 { margin: 26px 0 10px; font-size: 42px; letter-spacing: -.05em; }
.form-success p { color: var(--muted); }

.faq { padding-bottom: 126px; }
.faq-layout { padding-top: 66px; display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(70px, 10vw, 150px); }
.faq-list { border-top: 1px solid var(--ink); }
.faq-list details { border-bottom: 1px solid var(--ink); }
.faq-list summary { min-height: 102px; display: flex; align-items: center; justify-content: space-between; gap: 24px; cursor: pointer; list-style: none; font-size: clamp(19px, 2vw, 26px); font-weight: 750; letter-spacing: -.03em; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--blue); font-size: 28px; font-weight: 400; transition: transform 160ms ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 720px; padding: 0 48px 28px 0; color: var(--muted); }

.site-footer { color: var(--white); background: #050711; }
.footer-main { padding: 76px 0 66px; display: grid; grid-template-columns: 1.25fr .7fr .85fr; gap: 60px; }
.footer-main .brand { margin-bottom: 22px; color: var(--white); }
.footer-main .brand img { border-radius: 8px; }
.footer-main .brand strong { color: #79a9ff; }
.footer-brand p { color: rgba(255,255,255,.6); font-size: 18px; }
.footer-main > div:not(:first-child) { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-label { margin-bottom: 10px; color: #79a9ff; font-size: 11px; letter-spacing: .16em; font-weight: 800; }
.footer-main a:not(.brand) { color: rgba(255,255,255,.66); font-size: 14px; }
.footer-main a:hover { color: var(--white); }
.footer-bottom { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 30px; border-top: 1px solid var(--dark-line); color: rgba(255,255,255,.44); font-size: 12px; }
.footer-bottom nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 18px; }
.footer-bottom button { padding: 0; color: inherit; background: none; border: 0; cursor: pointer; }
.footer-bottom a:hover, .footer-bottom button:hover { color: var(--white); }

.mobile-cta { display: none; }
.consent-banner { position: fixed; z-index: 90; right: 24px; bottom: 24px; left: 24px; max-width: 760px; margin-left: auto; padding: 22px; color: var(--ink); background: var(--white); border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 22px 60px rgba(9,11,21,.2); }
.consent-banner[hidden] { display: none; }
.consent-banner h2 { margin-bottom: 6px; font-size: 20px; }
.consent-banner p { margin-bottom: 14px; color: var(--muted); font-size: 13px; }
.consent-banner p a { color: var(--blue); text-decoration: underline; }
.consent-actions { display: flex; justify-content: flex-end; gap: 10px; }
.consent-actions button { min-height: 40px; padding: 0 18px; border: 1px solid var(--line); border-radius: 9px; background: transparent; cursor: pointer; font-size: 13px; font-weight: 800; }
.consent-actions button:last-child { color: var(--white); background: var(--blue); border-color: var(--blue); }

.js-motion [data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity 620ms ease, transform 620ms ease; }
.js-motion [data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 1120px) {
  :root { --shell: min(100% - 48px, 1080px); }
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .diagnostic-heading, .system-heading, .measurement-heading { grid-template-columns: 1fr .55fr; gap: 44px; }
  .journey { grid-template-columns: 1fr 1fr; }
  .solutions-layout { grid-template-columns: .72fr 1.28fr; gap: 70px; }
}

@media (max-width: 900px) {
  .client-link { display: none; }
  .hero h1 { font-size: clamp(54px, 9vw, 78px); }
  .promise-bar > div { grid-template-columns: 1fr 1fr; padding: 22px 0; }
  .promise-bar a { justify-self: start; }
  .diagnostic-heading, .system-heading, .measurement-heading, .solutions-layout, .contact-shell, .faq-layout { grid-template-columns: 1fr; }
  .diagnostic-heading, .system-heading, .measurement-heading { gap: 28px; }
  .diagnostic-layout { grid-template-columns: 1fr; }
  .diagnostic-options { min-height: 470px; }
  .diagnostic-result { min-height: 540px; }
  .solutions-intro { position: static; }
  .method-grid { grid-template-columns: 1fr; }
  .method-grid article { min-height: 300px; }
  .contact-shell { gap: 64px; }
}

@media (max-width: 700px) {
  :root { --shell: calc(100% - 32px); --radius: 20px; }
  body { padding-bottom: 64px; }
  .header-shell { min-height: 68px; }
  .brand img { width: 46px; height: 46px; }
  .brand { font-size: 17px; }
  .nav-cta { display: none; }
  .hero { min-height: calc(100svh - 68px); }
  .hero-media { background-position: 67% center; }
  .hero-media { background-image: linear-gradient(90deg, rgba(4,8,20,.97), rgba(4,8,20,.76) 72%, rgba(4,8,20,.35)), linear-gradient(180deg, transparent, rgba(4,8,20,.65)), url("/assets/gastrohelp-hero-blue.webp"); }
  .hero-shell { min-height: calc(100svh - 68px); padding: 66px 0 24px; }
  .hero h1 { font-size: clamp(45px, 12.4vw, 62px); line-height: .98; }
  .hero-description { font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .hero-bottom { grid-template-columns: 1fr 1fr; gap: 10px 0; }
  .hero-bottom span { padding: 0 10px; font-size: 11px; }
  .hero-bottom span:nth-child(3) { padding-left: 0; border-left: 0; }
  .promise-bar > div { grid-template-columns: 1fr; gap: 10px; padding: 22px 0; }
  .promise-bar span { font-size: 13px; }
  .section-topline { min-height: 68px; grid-template-columns: 46px 1fr; }
  .diagnostic, .solutions, .method, .faq { padding-bottom: 88px; }
  .diagnostic-heading, .system-heading, .measurement-heading, .method-heading { padding: 48px 0 44px; }
  .diagnostic-heading h2, .system-heading h2, .solutions-intro h2, .measurement-heading h2, .method-heading h2, .faq-layout h2 { font-size: clamp(40px, 11.8vw, 58px); }
  .diagnostic-heading > p, .system-heading > p, .solutions-intro > p, .measurement-heading > p { font-size: 16px; }
  .diagnostic-layout { border-radius: 18px; }
  .diagnostic-options { min-height: auto; padding: 10px; }
  .diagnostic-options button { min-height: 122px; padding: 18px 14px; grid-template-columns: 30px 1fr 22px; }
  .diagnostic-options strong { font-size: 17px; }
  .diagnostic-options small { font-size: 12px; }
  .diagnostic-result { min-height: 520px; padding: 34px 24px; }
  .result-number { font-size: 100px; }
  .diagnostic-result h3 { font-size: 40px; }
  .system > .section-shell, .measurement > .section-shell { padding-bottom: 88px; }
  .journey { grid-template-columns: 1fr; }
  .journey li { min-height: 390px; }
  .journey-icon { margin: 38px 0 28px; }
  .solutions-layout { padding-top: 48px; gap: 56px; }
  .solution-stack article { min-height: auto; padding: 28px 0; grid-template-columns: 42px 1fr; gap: 14px; }
  .solution-stack h3 { font-size: 31px; }
  .measurement-grid { grid-template-columns: 1fr; }
  .measurement-grid article { min-height: 210px; }
  .method-grid article { min-height: 320px; }
  .contact-shell { padding: 86px 0 92px; }
  .contact-copy h2 { font-size: 46px; }
  #lead-form { padding: 28px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .full-field { grid-column: auto; }
  .form-success { min-height: 430px; padding: 30px; }
  .faq-layout { padding-top: 48px; gap: 48px; }
  .faq-list summary { min-height: 92px; font-size: 19px; }
  .footer-main { padding: 62px 0; grid-template-columns: 1fr; gap: 42px; }
  .footer-bottom { padding: 24px 0; align-items: flex-start; flex-direction: column; }
  .footer-bottom nav { justify-content: flex-start; }
  .mobile-cta { position: fixed; z-index: 70; right: 0; bottom: 0; left: 0; display: block; }
  .mobile-cta a { min-height: 64px; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; color: var(--white); background: var(--blue); border-top: 1px solid rgba(255,255,255,.25); font-weight: 800; }
  .consent-banner { right: 12px; bottom: 78px; left: 12px; padding: 18px; border-radius: 14px; }
}

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