:root {
  --navy: #17252f;
  --navy-2: #23465a;
  --blue: #32708f;
  --green: #2f7d63;
  --gold: #d9902f;
  --yellow: #f5b84b;
  --ink: #1f2a32;
  --muted: #60717d;
  --paper: #f5f7f8;
  --white: #ffffff;
  --line: #d9e2e8;
  --soft-blue: #eaf2f6;
  --soft-green: #eaf4f0;
  --soft-gold: #fff4df;
  --shadow: 0 18px 48px rgba(23, 37, 47, 0.12);
  --content: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(217, 144, 47, 0.42);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(217, 226, 232, 0.92);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 32px), var(--content));
  min-height: 76px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 182px;
}

.brand img {
  width: 184px;
  height: 48px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.site-nav a {
  min-height: 42px;
  padding: 10px 12px;
  color: #46545d;
  font-size: 0.91rem;
  font-weight: 750;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--navy);
  background: var(--soft-blue);
}

.site-nav .nav-whatsapp {
  margin-left: 8px;
  padding-inline: 15px;
  color: var(--white);
  background: var(--green);
  border-radius: 6px;
}

.site-nav .nav-whatsapp:hover {
  color: var(--white);
  background: #276b55;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--navy);
}

.page-shell {
  width: min(calc(100% - 32px), var(--content));
  margin: 0 auto;
}

.section {
  padding-block: clamp(64px, 8vw, 108px);
}

.section-tight {
  padding-block: clamp(42px, 6vw, 72px);
}

.section-white {
  background: var(--white);
}

.section-navy {
  color: var(--white);
  background: var(--navy);
}

.section-green {
  color: var(--white);
  background: var(--green);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.79rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-green .eyebrow,
.section-navy .eyebrow {
  color: var(--yellow);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: 0;
}

h1 {
  max-width: 900px;
  margin-bottom: 22px;
  font-size: clamp(2.85rem, 6.4vw, 5.75rem);
  line-height: 0.98;
}

h2 {
  max-width: 860px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.2vw, 3.9rem);
  line-height: 1.03;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.16rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.07rem, 1.8vw, 1.3rem);
}

.section-navy .lead,
.section-green .lead {
  color: rgba(255, 255, 255, 0.76);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}

.button-primary {
  color: var(--white);
  background: var(--green);
}

.button-primary:hover {
  background: #276b55;
}

.button-gold {
  color: var(--navy);
  background: var(--yellow);
}

.button-gold:hover {
  background: #e9a936;
}

.button-secondary {
  color: var(--navy);
  border-color: var(--line);
  background: var(--white);
}

.button-secondary:hover {
  border-color: var(--blue);
  background: var(--soft-blue);
}

.button-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.36);
  background: transparent;
}

.button-light:hover {
  background: rgba(255, 255, 255, 0.1);
}

.home-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.home-hero .page-shell {
  position: relative;
  z-index: 2;
  padding-top: clamp(48px, 5vw, 66px);
}

.home-hero-copy {
  max-width: 930px;
  padding-bottom: clamp(52px, 7vw, 88px);
}

.home-hero-copy h1 {
  font-size: clamp(2.85rem, 5.7vw, 5rem);
}

.home-hero-copy .lead {
  max-width: 820px;
  color: rgba(255, 255, 255, 0.76);
}

.hero-products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: end;
  padding-bottom: 28px;
}

.hero-product {
  position: relative;
  height: 210px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px 6px 0 0;
  background: #e7edf1;
}

.hero-product:nth-child(2) {
  height: 240px;
}

.hero-product img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
}

.hero-product-label {
  position: absolute;
  inset: auto 10px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 9px 11px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.94);
  border-radius: 4px;
  font-size: 0.84rem;
  font-weight: 850;
}

.hero-product-label span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.trust-strip {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.trust-strip .page-shell {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-point {
  padding: 22px 18px;
  border-right: 1px solid var(--line);
}

.trust-point:first-child {
  padding-left: 0;
}

.trust-point:last-child {
  border-right: 0;
}

.trust-point strong {
  display: block;
  margin-bottom: 3px;
  color: var(--navy);
}

.trust-point span {
  color: var(--muted);
  font-size: 0.89rem;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: end;
  margin-bottom: clamp(32px, 5vw, 58px);
}

.section-heading > * {
  margin-bottom: 0;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.offer-card {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-top: 6px solid var(--blue);
  border-radius: 6px;
  background: var(--white);
}

.offer-card.foh {
  border-top-color: var(--green);
}

.offer-card.staff {
  border-top-color: var(--gold);
}

.offer-card-image {
  height: 178px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--soft-blue);
}

.offer-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
}

.offer-card.staff .offer-card-image img {
  object-position: 50% 16%;
}

.offer-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.offer-brand {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 28px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.offer-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.offer-brand.foh-brand {
  width: 150px;
}

.offer-brand.staff-brand {
  background: var(--soft-gold);
}

.offer-card-kicker {
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.foh .offer-card-kicker {
  color: var(--green);
}

.staff .offer-card-kicker {
  color: #a8670f;
}

.offer-card p {
  color: var(--muted);
}

.offer-card-price {
  margin-top: auto;
  padding-top: 22px;
  color: var(--navy);
}

.offer-card-price strong {
  font-size: 1.7rem;
}

.offer-card .text-link {
  margin-top: 14px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy-2);
  font-weight: 850;
  text-decoration: none;
}

.text-link::after {
  content: "→";
}

.text-link:hover {
  color: var(--blue);
}

.section-green .text-link,
.section-navy .text-link {
  color: var(--white);
}

.problem-grid,
.feature-grid,
.pricing-grid,
.process-grid,
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.problem-item,
.feature-item,
.process-item,
.value-item {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.problem-item strong,
.feature-item strong,
.value-item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 1.08rem;
}

.problem-label {
  display: block;
  margin-bottom: 28px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 850;
  text-transform: uppercase;
}

.problem-item p,
.feature-item p,
.value-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.process-item {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
}

.process-number {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  border-radius: 50%;
  color: var(--navy);
  background: var(--yellow);
  font-weight: 900;
}

.process-item p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.experience-band {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 1.15fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: center;
}

.founder-intro {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
}

.founder-intro img {
  width: 92px;
  height: 108px;
  flex: 0 0 auto;
  object-fit: cover;
  object-position: center 18%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
}

.founder-intro .eyebrow {
  margin-bottom: 5px;
}

.founder-intro strong,
.founder-intro span {
  display: block;
}

.founder-intro strong {
  color: var(--white);
  font-size: 1.08rem;
}

.founder-intro span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
}

.experience-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.experience-stat {
  min-height: 160px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
}

.experience-stat strong {
  display: block;
  margin-bottom: 8px;
  color: var(--yellow);
  font-size: 2rem;
}

.experience-stat span {
  color: rgba(255, 255, 255, 0.76);
}

.case-study {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: start;
}

.case-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.case-metric {
  min-height: 140px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.case-metric strong {
  display: block;
  color: var(--navy);
  font-size: clamp(1.65rem, 3vw, 2.5rem);
  line-height: 1;
}

.case-metric span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
}

.case-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.87rem;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(30px, 5vw, 52px);
  border-radius: 6px;
  color: var(--white);
  background: var(--green);
}

.cta-band h2 {
  max-width: 780px;
  margin-bottom: 10px;
  font-size: clamp(1.9rem, 4vw, 3.4rem);
}

.cta-band p {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
}

.page-hero {
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.page-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: center;
  min-height: 600px;
  padding-block: clamp(46px, 5vw, 66px);
}

.page-hero-copy .lead {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.76);
}

.page-hero h1 {
  font-size: clamp(2.7rem, 4.7vw, 3.75rem);
  line-height: 1;
}

.page-hero-media {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: #e6edf1;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: top left;
}

.page-hero-media.contain img {
  padding: 26px;
  object-fit: contain;
}

.page-hero-media.portrait {
  width: min(100%, 460px);
  min-height: 0;
  aspect-ratio: 4 / 5;
  justify-self: end;
}

.page-hero-media.portrait img {
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center 18%;
}

.page-hero-media.staff-screen img {
  object-position: top right;
}

.page-hero.foh-hero {
  background: #26364a;
}

.page-hero.staff-hero {
  background: var(--navy-2);
}

.price-callout {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: baseline;
  margin-top: 12px;
  padding: 12px 14px;
  color: var(--navy);
  background: var(--soft-gold);
  border-left: 4px solid var(--gold);
}

.price-callout strong {
  font-size: 1.35rem;
}

.price-callout span {
  color: #6a563b;
  font-size: 0.9rem;
}

.content-split {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.68fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: start;
}

.check-list {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--muted);
}

.check-list li::before {
  position: absolute;
  top: 2px;
  left: 0;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  content: "✓";
  font-size: 0.75rem;
  font-weight: 900;
}

.info-panel {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.info-panel p:last-child {
  margin-bottom: 0;
}

.pricing-card {
  display: flex;
  min-height: 440px;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.pricing-card.recommended {
  border: 2px solid var(--green);
}

.pricing-badge {
  align-self: flex-start;
  margin-bottom: 16px;
  padding: 6px 9px;
  color: var(--navy);
  background: var(--yellow);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.pricing-card h3 {
  margin-bottom: 4px;
}

.price {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1;
}

.price span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.standard-price {
  margin-top: -8px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 750;
}

.pricing-card .check-list {
  margin-bottom: 24px;
}

.pricing-card .button {
  width: 100%;
  margin-top: auto;
}

.onboarding-list {
  display: grid;
  gap: 12px;
}

.connection-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: clamp(32px, 7vw, 92px);
  align-items: center;
}

.connection-points {
  border-block: 1px solid var(--line);
}

.connection-points p {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.connection-points p:last-child {
  border-bottom: 0;
}

.connection-points strong {
  color: var(--navy);
}

.connection-points span {
  color: var(--muted);
}

.logo-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.logo-lockup img {
  width: 220px;
  max-height: 64px;
  object-fit: contain;
  object-position: left center;
}

.logo-lockup.staff img {
  width: 66px;
  height: 66px;
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 930px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.faq-item summary {
  position: relative;
  padding: 20px 54px 20px 20px;
  color: var(--navy);
  font-weight: 850;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  position: absolute;
  top: 15px;
  right: 18px;
  content: "+";
  color: var(--green);
  font-size: 1.6rem;
  font-weight: 500;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-answer {
  padding: 0 20px 20px;
  color: var(--muted);
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(340px, 0.7fr);
  gap: clamp(36px, 7vw, 94px);
  align-items: start;
}

.contact-layout > * {
  min-width: 0;
}

.contact-links {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.contact-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--navy);
  background: var(--white);
  font-weight: 800;
  text-decoration: none;
}

.contact-link:hover {
  border-color: var(--green);
}

.contact-link span {
  overflow-wrap: anywhere;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid #c7d3db;
  border-radius: 5px;
  color: var(--ink);
  background: #fbfcfc;
}

.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

.form-note {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.83rem;
}

.site-footer {
  padding-block: 52px 26px;
  color: rgba(255, 255, 255, 0.74);
  background: #101b22;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.25fr) repeat(3, minmax(150px, 0.55fr));
  gap: 36px;
}

.footer-brand img {
  width: 190px;
  height: 52px;
  padding: 5px 8px;
  object-fit: contain;
  background: var(--white);
  border-radius: 4px;
}

.footer-brand p {
  max-width: 380px;
  margin-top: 18px;
}

.footer-column strong {
  display: block;
  margin-bottom: 14px;
  color: var(--white);
}

.footer-column a {
  display: block;
  margin-bottom: 9px;
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.82rem;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 15px;
  border-radius: 6px;
  color: var(--white);
  background: var(--green);
  box-shadow: 0 12px 32px rgba(20, 50, 40, 0.28);
  font-size: 0.9rem;
  font-weight: 850;
  text-decoration: none;
}

.whatsapp-float:hover {
  background: #276b55;
}

@media (min-width: 861px) {
  .whatsapp-float {
    display: none;
  }
}

.legal-copy {
  max-width: 820px;
}

.legal-copy h2 {
  margin-top: 42px;
  font-size: 1.65rem;
}

.legal-copy p,
.legal-copy li {
  color: var(--muted);
}

@media (max-width: 1040px) {
  .site-nav a {
    padding-inline: 8px;
    font-size: 0.84rem;
  }

  .page-hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .page-hero-media {
    min-height: 360px;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    height: calc(100vh - 76px);
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    overflow-y: auto;
    background: var(--white);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    min-height: 50px;
    padding: 14px;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .site-nav .nav-whatsapp {
    margin: 14px 0 0;
    text-align: center;
    border: 0;
  }

  .hero-products,
  .offer-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .hero-products {
    grid-template-columns: repeat(3, minmax(260px, 1fr));
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .hero-product {
    height: 200px;
    scroll-snap-align: start;
  }

  .hero-product:nth-child(2) {
    height: 220px;
  }

  .trust-strip .page-shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-point:nth-child(2) {
    border-right: 0;
  }

  .trust-point:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .section-heading,
  .experience-band,
  .case-study,
  .content-split,
  .contact-layout,
  .connection-band {
    grid-template-columns: 1fr;
  }

  .problem-grid,
  .feature-grid,
  .process-grid,
  .value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-band {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .header-inner {
    min-height: 68px;
  }

  .brand img {
    width: 164px;
    height: 42px;
  }

  .site-nav {
    height: calc(100vh - 68px);
  }

  .section {
    padding-block: 58px;
  }

  h1 {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  h2 {
    font-size: clamp(1.9rem, 10vw, 2.7rem);
  }

  .button-row,
  .button-row .button {
    width: 100%;
  }

  .home-hero .page-shell {
    padding-top: 52px;
  }

  .hero-products {
    grid-template-columns: repeat(3, minmax(82vw, 1fr));
  }

  .trust-strip .page-shell,
  .problem-grid,
  .feature-grid,
  .process-grid,
  .value-grid,
  .experience-panel,
  .case-metrics {
    grid-template-columns: 1fr;
  }

  .trust-point,
  .trust-point:first-child {
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-point:last-child {
    border-bottom: 0;
  }

  .offer-card {
    min-height: auto;
  }

  .page-hero-inner {
    padding-block: 50px;
  }

  .page-hero-media,
  .page-hero-media img {
    min-height: 260px;
  }

  .page-hero-media.portrait {
    width: 100%;
    min-height: 0;
    justify-self: stretch;
  }

  .page-hero-media.portrait img {
    min-height: 0;
  }

  .page-hero-media.contain img {
    padding: 14px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .whatsapp-float {
    right: 12px;
    bottom: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
