/* ============================================
   SUREVEY — Home Survey Translation Service
   Design system: blueprint paper + red-pen annotation
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=IBM+Plex+Sans:wght@400;500;600&family=IBM+Plex+Mono:wght@400;500&family=Bricolage+Grotesque:wght@500;600;700&family=Caveat:wght@500;600;700&display=swap');

:root {
  /* Color */
  --paper: #F1F2ED;
  --paper-raised: #FFFFFF;
  --ink: #182B3D;
  --ink-soft: #435463;
  --line: #D8DAD1;
  --pen: #826C34;
  --pen-soft: #D9D5C4;
  --highlight: #F2D93C;
  --highlight-soft: #F1ECC1;
  --highlight-ink: #5B4E0A;
  --approve: #43664F;
  --approve-soft: #DCE6DD;

  /* Type */
  --font-display: 'Fraunces', Georgia, serif;
  --font-logo: 'Bricolage Grotesque', 'Fraunces', sans-serif;
  --font-body: 'IBM Plex Sans', -apple-system, Segoe UI, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, monospace;

  /* Layout */
  --max: 1120px;
  --radius: 4px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
main section[id] { scroll-margin-top: 90px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- Header ---------- */
.site-header {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}
.logo-mark {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--pen);
  border: 1px solid var(--pen);
  padding: 2px 6px;
  border-radius: 2px;
  letter-spacing: 0.06em;
}
.logo-word {
  font-family: var(--font-logo);
  font-weight: 500;
  font-size: 36px;
  letter-spacing: -0.01em;
  color: var(--pen);
}
nav.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
nav.main-nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 14.5px;
  font-weight: 500;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}
nav.main-nav a:hover,
nav.main-nav a.active { color: var(--ink); border-bottom-color: var(--pen); }
.nav-cta {
  background: var(--ink);
  color: var(--paper) !important;
  padding: 10px 18px !important;
  border-radius: var(--radius);
  border-bottom: none !important;
}
.nav-cta:hover { background: var(--pen) !important; }
.nav-toggle { display: none; }

/* ---------- Footer ---------- */
footer.site-footer {
  border-top: 1px solid var(--line);
  margin-top: 100px;
  padding: 48px 0 36px;
  color: var(--ink-soft);
  font-size: 14px;
}
footer.site-footer .foot-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
footer.site-footer a { text-decoration: none; }
footer.site-footer a:hover { color: var(--pen); }
.foot-links { display: flex; gap: 22px; flex-wrap: wrap; }
.foot-bottom {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 12.5px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- Typography helpers ---------- */

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0 0 18px;
}
h1 { font-size: clamp(36px, 5vw, 58px); margin-bottom: 40px; }

.package-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 18px 0 0;
}
.package-row .lead { margin: 0; }
/* Fixed width AND height so both icons occupy the exact same box, whatever
   their own aspect ratio -- SVG's default preserveAspectRatio ("xMidYMid
   meet") scales each icon's artwork uniformly to fit inside that box and
   centres it, so neither one stretches/distorts to fill it. */
.package-icon {
  display: block;
  width: 84px;
  height: 84px;
  flex-shrink: 0;
}

/* Small versions of the same two package icons, next to each tab's label. */
.tab-icon {
  display: block;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.hero-bullets {
  list-style: none;
  margin: 16px 0 26px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.hero-bullets li {
  position: relative;
  padding-left: 22px;
  font-size: 16.5px;
  color: var(--ink);
}
.hero-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: var(--highlight);
}
h2 { font-size: clamp(28px, 3.4vw, 38px); }
h3 { font-size: 21px; }
p.lead {
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 560px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 24px;
  border-radius: var(--radius);
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.12s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--ink); color: var(--paper); }
.btn-primary:hover { background: var(--pen); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { border-color: var(--pen); color: var(--pen); }
.btn-block { width: 100%; justify-content: center; }
.btn[disabled] { opacity: 0.4; cursor: not-allowed; }

/* ---------- Hero / annotated document signature element ---------- */
.hero {
  padding: 76px 0 90px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero-actions { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }

.doc-card {
  background: var(--paper-raised);
  border: 1px solid var(--line);
  border-top: 4px solid var(--highlight);
  border-radius: 6px;
  padding: 30px 30px 26px;
  box-shadow: 0 30px 60px -30px rgba(24, 43, 61, 0.25);
  position: relative;
  transform: rotate(0.6deg);
}
.doc-card .doc-head {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
  margin-bottom: 18px;
}
.doc-line { font-size: 14.5px; margin-bottom: 15px; line-height: 1.5; }
.doc-line .strike {
  text-decoration: line-through;
  text-decoration-color: var(--pen);
  text-decoration-thickness: 1.5px;
  color: var(--ink-soft);
}
.doc-note {
  font-family: 'Caveat', 'Segoe Print', 'Bradley Hand', 'Comic Sans MS', cursive;
  font-weight: 700;
  font-size: 19px;
  line-height: 1.15;
  color: var(--pen);
  display: inline-block;
  margin-left: 6px;
}
.doc-note::before { content: '→ '; }
/* Tone-coded to match the report's own tag colours: reassuring (good news),
   normal/monitor (brand brown, unchanged), and urgent. */
.doc-note-1 { transform: rotate(-2deg); color: #43664F; }
.doc-note-2 { transform: rotate(1.5deg); }
.doc-note-3 { transform: rotate(-1deg); color: #B5432E; }

/* Magnifying glass overlay, positioned over the third doc-line (the chimney
   breast / structural engineer note) -- see SUREVEY - Styles/MAGNIFYING_GLASS_HANDOFF.md

   BUGFIX: previously positioned relative to .doc-card while .doc-line-lens-clip
   was positioned relative to .doc-line-wrap -- two different offset parents, so
   their coordinates could never reliably line up. Now both live inside
   .doc-line-wrap and share one coordinate system. The SVG's circle rotation was
   also removed (rotation kept only on the decorative handle) so its rendered
   centre is simply cx/cy scaled by the render/viewBox ratio, with no rotation
   math needed to find it. */
.doc-card-lens {
  position: absolute;
  width: 320px;
  height: 320px;
  right: -50px;
  top: -44px;
  pointer-events: none;
  z-index: 2;
}

/* Duplicate of the third doc-line, scaled up and clipped to the lens's glass
   circle so the text visually magnifies as if seen through it. Positioned via
   .doc-line-wrap so it tracks the real line regardless of surrounding content.
   Two nested layers: the outer clip mask stays unscaled (so its circle's
   coordinates match the real lens glass 1:1), while the inner element does the
   actual scaling -- keeps the clip radius/centre independent of the scale factor.

   Centre/radius below are the SVG's own circle (cx=120 cy=115 r=88 in its
   0-300 viewBox) scaled by the render ratio (320/300 = 1.0667), then offset by
   the lens's own position (right:-50px, top:-55px) within .doc-line-wrap --
   giving a centre of "100% - 142px" horizontally and 68px from the top, radius
   94px. Because it's expressed relative to the wrap's own box (not a fixed
   viewport position), it stays correct if surrounding content reflows the
   wrap's width. If the lens's right/top offsets above are ever changed, these
   values must be recalculated to match. */
.doc-line-wrap { position: relative; }
.doc-line-lens-clip {
  position: absolute;
  inset: 0;
  clip-path: circle(94px at calc(100% - 142px) 79px);
  background: var(--paper-raised);
  z-index: 1;
}
.doc-line-magnified {
  margin: 0;
  transform: scale(1.55);
  transform-origin: calc(100% - 142px) 79px;
}

@media (max-width: 860px) {
  /* .doc-card reflows to full column width below this breakpoint -- the lens's
     fixed offsets no longer land on the third line, so hide it rather than
     have it float over the wrong content. */
  .doc-card-lens,
  .doc-line-lens-clip { display: none; }
}
.doc-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--approve);
  background: var(--approve-soft);
  padding: 3px 9px;
  border-radius: 2px;
  margin-top: 6px;
}

.page-break {
  border-top: 3px solid var(--highlight);
  margin: 0 0 0;
}
.trust-num {
  font-family: var(--font-mono);
  color: var(--highlight-ink);
  background: var(--highlight);
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 4px;
  flex-shrink: 0;
}

/* ---------- Generic sections ---------- */
section { padding: 84px 0; }
section.tight { padding: 56px 0; }
.section-head { max-width: 640px; margin-bottom: 48px; }

/* ---------- Cards / grids ---------- */
.card-grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--paper-raised);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 30px;
}

/* ---------- Steps (how it works) ---------- */
.step {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step-index {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--pen);
  position: relative;
  padding-left: 12px;
}
.step-index::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  width: 4px;
  height: 14px;
  background: var(--highlight);
  border-radius: 2px;
}
.step h3 { margin-bottom: 8px; }
.step p { color: var(--ink-soft); max-width: 560px; }

.path-toggle {
  display: flex;
  gap: 14px;
  margin: 40px 0 10px;
}
.path-card {
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 26px;
  background: var(--paper-raised);
}
.path-card .path-price {
  font-family: var(--font-mono);
  color: var(--pen);
  font-size: 14px;
  margin-bottom: 10px;
}

/* ---------- Pricing ---------- */
.price-card {
  background: var(--paper-raised);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.price-card.featured { border-color: var(--ink); border-top: 4px solid var(--highlight); position: relative; }
/* These two CTAs hover green instead of the site-wide brown -- scoped to the
   pricing cards only, not a global .btn-primary:hover change. */
.price-card .btn-primary:hover { background: #6E8B74; }
.featured-badge {
  position: absolute;
  top: -13px;
  right: 24px;
  background: var(--highlight);
  color: var(--highlight-ink);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  padding: 3px 10px;
  border-radius: 3px;
}
.price-tag {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pen);
}
.price-tag-lg { font-size: 15px; }
.price-amount {
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 600;
  margin: 4px 0 2px;
}
.price-amount span { font-size: 16px; font-weight: 500; color: var(--ink-soft); font-family: var(--font-body); }
.price-list { list-style: none; padding: 0; margin: 4px 0 8px; font-size: 14.5px; color: var(--ink-soft); }
.price-list li { padding: 7px 0; border-top: 1px dashed var(--line); display: flex; gap: 10px; }
.price-list li:first-child { border-top: none; }
.check { color: var(--approve); font-family: var(--font-mono); }

/* ---------- Report sample gallery (horizontal scroll) ---------- */
.report-gallery {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
  scrollbar-color: var(--line) transparent;
  margin: 0 -28px;
  padding: 4px 28px 16px;
}
.report-gallery-track {
  display: flex;
  gap: 20px;
  width: max-content;
}
.report-gallery-item {
  margin: 0;
  flex: 0 0 auto;
  width: 460px;
  max-width: 78vw;
  scroll-snap-align: start;
  background: var(--paper-raised);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 40px -28px rgba(24, 43, 61, 0.25);
}
.report-gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.report-gallery-item figcaption {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-soft);
  padding: 11px 16px;
}
.report-gallery::-webkit-scrollbar { height: 8px; }
.report-gallery::-webkit-scrollbar-track { background: transparent; }
.report-gallery::-webkit-scrollbar-thumb { background: var(--line); border-radius: 4px; }
.report-gallery::-webkit-scrollbar-thumb:hover { background: var(--pen); }

.expert-card {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--paper-raised);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  margin-top: 22px;
}
/* Both bios share the same grid cell (stacked/overlapping), so the card's height
   auto-sizes to the taller of the two rather than needing a hard-coded min-height. */
.expert-bio {
  grid-area: 1 / 1;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  animation: expertBioCrossfade 16s ease-in-out infinite;
}
.expert-bio:nth-child(2) { animation-delay: -8s; }

@keyframes expertBioCrossfade {
  0%, 43.75% { opacity: 1; }
  50%, 93.75% { opacity: 0; }
  100% { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .expert-bio { animation: none; opacity: 1; }
  .expert-bio:nth-child(2) { display: none; }
}

.expert-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 20px;
  flex-shrink: 0;
}

/* ---------- Tabs (upload/booking) ---------- */
.tabs { display: flex; gap: 0; border-bottom: 1px solid var(--line); margin-bottom: 40px; }
.tab-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex: 1 1 50%;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 18px;
  background: none;
  border: none;
  padding: 18px 10px;
  color: var(--ink-soft);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  position: relative;
  top: 1px;
}
.tab-btn:first-child { border-right: 1px solid var(--line); }
/* Highlight bar is a separate centred element, not the button's own full-width
   border-bottom -- keeps it short of the neighbouring tab's bar (so the two
   never meet in the middle) while staying centred under each tab's own text. */
.tab-btn::before,
.tab-btn::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  /* Fixed to the rendered width of the longer tab label ("Report + video call —
     £349", ~261px) so both bars share one length regardless of which tab is
     shorter, rather than each being sized off its own (shorter) content. */
  width: 262px;
  height: 2px;
  background: transparent;
  transition: background-color 0.15s ease;
}
.tab-btn::before { top: -2px; }
.tab-btn::after { bottom: -2px; }
.tab-btn:hover::before,
.tab-btn:hover::after { background: var(--highlight); }
.tab-btn.active { color: var(--ink); }
.tab-btn.active::before,
.tab-btn.active::after { background: var(--highlight); height: 3px; }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

.dropzone {
  border: 1.5px dashed var(--line);
  border-radius: 8px;
  padding: 46px 24px;
  text-align: center;
  background: var(--paper-raised);
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease;
}
.dropzone:hover, .dropzone.drag { border-color: var(--pen); background: var(--pen-soft); }
.dropzone .dz-icon { font-family: var(--font-mono); font-size: 12px; color: var(--pen); margin-bottom: 10px; }
.file-chip {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--paper-raised); border: 1px solid var(--line); border-radius: 6px;
  padding: 12px 16px; margin-top: 14px; font-size: 14px;
}
.file-chip button { background: none; border: none; color: var(--pen); cursor: pointer; font-family: var(--font-mono); }

.slots-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 18px; }
.slot-day { font-family: var(--font-mono); font-size: 12px; color: var(--ink-soft); margin: 22px 0 8px; text-transform: uppercase; letter-spacing: .05em;}
.slot-btn {
  border: 1px solid var(--line);
  background: var(--paper-raised);
  border-radius: 6px;
  padding: 10px 8px;
  font-family: var(--font-mono);
  font-size: 13.5px;
  cursor: pointer;
  text-align: center;
}
.slot-btn:hover { border-color: var(--pen); }
.slot-btn.selected { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.slot-btn[disabled] { opacity: .3; cursor: not-allowed; }

.tc-box {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--paper-raised); border: 1px solid var(--line); border-radius: 6px;
  padding: 18px 20px; margin: 26px 0;
  font-size: 14px; color: var(--ink-soft);
}
.tc-box input { margin-top: 3px; }
.tc-box a { color: var(--ink); text-decoration: underline; }

.pay-card {
  background: var(--paper-raised); border: 1px solid var(--line); border-radius: 8px;
  padding: 28px; margin-top: 30px;
}
.field-row { display: flex; gap: 14px; }
.field { margin-bottom: 16px; flex: 1; }
.field label { display: block; font-size: 12.5px; font-weight: 600; margin-bottom: 6px; color: var(--ink-soft); }
.field input, .field textarea, .field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 11px 12px;
  font-family: var(--font-body);
  font-size: 14.5px;
  background: var(--paper);
}
.field input:focus, .field textarea:focus, .tab-btn:focus-visible, .btn:focus-visible, .slot-btn:focus-visible {
  outline: 2px solid var(--pen);
  outline-offset: 2px;
}
.order-total {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px dashed var(--line); margin-top: 6px; padding-top: 16px;
  font-family: var(--font-mono); font-size: 15px;
}
.demo-note {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--ink-soft);
  background: var(--paper);
  border: 1px dashed var(--line);
  border-left: 3px solid var(--highlight);
  border-radius: 5px;
  padding: 10px 12px;
  margin-top: 14px;
}

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.contact-detail { display: flex; gap: 14px; margin-bottom: 22px; }
.contact-detail .label { font-family: var(--font-mono); font-size: 12px; color: var(--pen); min-width: 90px; }

/* ---------- Legal ---------- */
.legal-layout { display: grid; grid-template-columns: 220px 1fr; gap: 56px; }
.legal-nav { position: sticky; top: 100px; align-self: start; }
.legal-nav a { display: block; padding: 8px 0; font-size: 11.2px; color: var(--ink-soft); text-decoration: none; border-left: 2px solid var(--line); padding-left: 14px; }
.legal-nav a:hover, .legal-nav a.active { color: var(--ink); border-left-color: var(--pen); }
.legal-body h2 { margin-top: 46px; font-size: clamp(22.4px, 2.72vw, 30.4px); }
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 { font-size: 16.8px; }
.legal-body p, .legal-body li { color: var(--ink-soft); font-size: 12px; }
.legal-flag {
  background: var(--highlight-soft); border: 1px solid var(--highlight);
  border-radius: 6px; padding: 16px 20px; margin-bottom: 40px;
  font-size: 14px; color: var(--ink);
}
/* #legal section only — .legal-flag is reused elsewhere (booking notice, contact
   note) at full size; this scoped override keeps the 20% reduction to this section. */
#legal .legal-flag { font-size: 11.2px; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  nav.main-nav { position: fixed; inset: 76px 0 0 0; background: var(--paper); flex-direction: column; align-items: flex-start; padding: 30px 28px; gap: 6px; display: none; }
  nav.main-nav.open { display: flex; }
  nav.main-nav a { width: 100%; padding: 12px 0; border-bottom: 1px solid var(--line); }
  .nav-toggle { display: block; background: none; border: 1px solid var(--line); border-radius: 5px; padding: 8px 12px; font-family: var(--font-mono); cursor: pointer; }
  .hero-grid, .contact-grid, .legal-layout { grid-template-columns: 1fr; }
  .grid-2, .grid-3, .trust-grid, .slots-grid { grid-template-columns: 1fr 1fr; }
  .path-toggle { flex-direction: column; }
  .legal-nav { position: static; margin-bottom: 30px; }
  .field-row { flex-direction: column; gap: 0;}
}
@media (max-width: 560px) {
  .grid-2, .grid-3, .trust-grid, .slots-grid { grid-template-columns: 1fr; }
  .step { grid-template-columns: 1fr; }
}
