/* ================================================================
   XGR Labs — Main Stylesheet
   Design: Bespoke dark/light, lime accent, Syne + DM Sans
================================================================ */

/* --------------------------------
   Custom Properties & Themes
-------------------------------- */
:root {
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-mono: 'DM Mono', monospace;

  /* Spacing scale (base-4) */
  --s-1: 4px;   --s-2: 8px;   --s-3: 12px;  --s-4: 16px;
  --s-5: 20px;  --s-6: 24px;  --s-8: 32px;  --s-10: 40px;
  --s-12: 48px; --s-16: 64px; --s-20: 80px; --s-24: 96px;
  --s-32: 128px;

  /* Border radius — intentionally varied */
  --r-xs: 3px;
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-full: 9999px;

  /* Transitions */
  --t-fast: 120ms ease;
  --t-base: 220ms ease;
  --t-slow: 380ms ease;

  /* ── DARK THEME (default) ── */
  --bg:          #080808;
  --bg-raised:   #111111;
  --bg-hover:    #171717;
  --border:      #1F1F1F;
  --border-sub:  #161616;
  --text:        #E6E2DA;
  --text-muted:  #635F58;
  --text-faint:  #2E2B27;
  --accent:      #BDFF52;
  --accent-alt:  #CAFF74;
  --accent-fg:   #0C1600;
  --accent-dim:  rgba(189, 255, 82, 0.07);
  --accent-bd:   rgba(189, 255, 82, 0.25);
}

[data-theme="light"] {
  --bg:          #F3F0E8;
  --bg-raised:   #FAFAF5;
  --bg-hover:    #ECEAE1;
  --border:      #DDD9CE;
  --border-sub:  #E6E3D8;
  --text:        #0D0C09;
  --text-muted:  #7A7669;
  --text-faint:  #C5C1B5;
  --accent:      #3A6E00;
  --accent-alt:  #2C5500;
  --accent-fg:   #FFFFFF;
  --accent-dim:  rgba(58, 110, 0, 0.07);
  --accent-bd:   rgba(58, 110, 0, 0.22);
}

/* --------------------------------
   Reset & Base
-------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul, ol { list-style: none; }

/* --------------------------------
   Layout
-------------------------------- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 var(--s-6);
}

/* --------------------------------
   Typography
-------------------------------- */
.label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
}
.label::before {
  content: '';
  display: block;
  width: 22px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin-top: var(--s-4);
}

.section-sub {
  font-size: clamp(0.9375rem, 2vw, 1.0625rem);
  color: var(--text-muted);
  max-width: 520px;
  margin-top: var(--s-5);
  line-height: 1.75;
}

/* --------------------------------
   Buttons
-------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9375rem;
  padding: var(--s-3) var(--s-5);
  border-radius: var(--r-xs);
  transition: var(--t-base);
  white-space: nowrap;
  position: relative;
  letter-spacing: -0.01em;
}

.btn-accent {
  background: var(--accent);
  color: var(--accent-fg);
}
.btn-accent:hover {
  background: var(--accent-alt);
  transform: translateY(-1px);
}

.btn-outline {
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-outline:hover {
  background: var(--bg-hover);
  border-color: var(--text-faint);
}

.btn-lg {
  padding: 14px var(--s-8);
  font-size: 1rem;
}

.btn-arrow {
  display: inline-block;
  transition: transform var(--t-fast);
}
.btn:hover .btn-arrow { transform: translateX(4px); }

/* --------------------------------
   Navigation
-------------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.nav.scrolled {
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  height: 62px;
  gap: var(--s-8);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.02em;
}
.logo-text .dot { color: var(--accent); }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--s-6);
  flex: 1;
}
.nav-links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color var(--t-fast);
  letter-spacing: -0.01em;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); }

/* Nav actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  margin-left: auto;
}

/* Theme toggle */
.theme-toggle {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-xs);
  color: var(--text-muted);
  transition: color var(--t-fast), background var(--t-fast);
}
.theme-toggle:hover {
  color: var(--text);
  background: var(--bg-hover);
}
.icon-sun { display: none; }
[data-theme="light"] .icon-moon { display: none; }
[data-theme="light"] .icon-sun  { display: block; }

/* Hamburger */
.menu-toggle {
  display: none;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-xs);
  color: var(--text);
}
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 20px;
}
.hamburger span {
  display: block;
  height: 1.5px;
  background: currentColor;
  transition: var(--t-base);
  transform-origin: center;
}
.menu-open .hamburger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-open .hamburger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-open .hamburger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: 62px; left: 0; right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: var(--s-3) 0 var(--s-4);
}
.mobile-menu.open { display: block; }

.mobile-menu a {
  display: block;
  padding: var(--s-3) var(--s-6);
  font-size: 0.9375rem;
  color: var(--text-muted);
  transition: color var(--t-fast), background var(--t-fast);
}
.mobile-menu a:hover {
  color: var(--text);
  background: var(--bg-hover);
}
.mobile-menu .btn {
  margin: var(--s-3) var(--s-6) 0;
}

/* --------------------------------
   Hero
-------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

/* Dot grid background */
.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1.5px 1.5px, var(--border) 1.5px, transparent 0);
  background-size: 38px 38px;
  opacity: 0.7;
  pointer-events: none;
}
.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 70% at 50% 55%, transparent 25%, var(--bg) 72%);
  pointer-events: none;
}

.hero .container { position: relative; z-index: 1; }

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  margin-bottom: var(--s-6);
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 22px;
  height: 1px;
  background: var(--accent);
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 9vw, 7rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.98;
  margin-bottom: var(--s-8);
}
.hero-headline .line { display: block; overflow: hidden; }
.hero-headline .line-inner { display: block; }
.hero-headline .hl { color: var(--accent); }

.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.1875rem);
  color: var(--text-muted);
  max-width: 500px;
  line-height: 1.75;
  margin-bottom: var(--s-10);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s-3);
}

.hero-scroll {
  position: absolute;
  bottom: var(--s-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-2);
  z-index: 1;
}
.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--text-faint), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  20%  { opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  80%  { opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}
.scroll-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-faint);
}

/* --------------------------------
   Section: Problems
-------------------------------- */
.problems {
  padding: var(--s-32) 0;
}
.problems-header { margin-bottom: var(--s-12); }

.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
}

.problem-card {
  padding: var(--s-8);
  background: var(--bg);
  transition: background var(--t-base);
  position: relative;
}
.problem-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0;
  transition: opacity var(--t-base);
}
.problem-card:hover { background: var(--bg-raised); }
.problem-card:hover::before { opacity: 1; }

.problem-q {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: var(--s-3);
  line-height: 1.3;
}
.problem-a {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* --------------------------------
   Section: Services
-------------------------------- */
.services {
  padding: var(--s-32) 0;
  border-top: 1px solid var(--border-sub);
}
.services-header {
  max-width: 580px;
  margin-bottom: var(--s-12);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
}

.service-card {
  padding: var(--s-8);
  background: var(--bg);
  transition: background var(--t-base);
  position: relative;
}
.service-card:hover { background: var(--bg-raised); }

.service-num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: var(--s-5);
}

.service-icon {
  width: 36px;
  height: 36px;
  color: var(--text-faint);
  margin-bottom: var(--s-5);
  transition: color var(--t-base);
}
.service-card:hover .service-icon { color: var(--accent); }

.service-name {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: var(--s-3);
  letter-spacing: -0.015em;
}
.service-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* --------------------------------
   Section: Process
-------------------------------- */
.process {
  padding: var(--s-32) 0;
  border-top: 1px solid var(--border-sub);
}
.process-header {
  max-width: 500px;
  margin-bottom: var(--s-12);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-8);
  position: relative;
}

/* Connector line */
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(25% - 12px);
  right: calc(25% - 12px);
  height: 1px;
  background: var(--border);
}

.process-step { position: relative; }

.step-num {
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--accent-fg);
  background: var(--accent);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--s-5);
  position: relative;
  z-index: 1;
}

.step-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: var(--s-2);
  letter-spacing: -0.01em;
}
.step-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* --------------------------------
   Section: Pricing Teaser
-------------------------------- */
.pricing-teaser {
  padding: var(--s-32) 0;
  border-top: 1px solid var(--border-sub);
}
.pricing-teaser-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s-6);
  margin-bottom: var(--s-12);
}

.teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
}

.teaser-card {
  padding: var(--s-8);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: border-color var(--t-base), transform var(--t-base);
}
.teaser-card:hover {
  border-color: var(--accent-bd);
  transform: translateY(-2px);
}

.teaser-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: var(--s-1);
  letter-spacing: -0.01em;
}
.teaser-price {
  font-family: var(--font-mono);
  font-size: 1.375rem;
  color: var(--accent);
  margin-bottom: var(--s-4);
}
.teaser-desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* --------------------------------
   Section: Book a Call
-------------------------------- */
.book {
  padding: var(--s-32) 0;
  border-top: 1px solid var(--border-sub);
}

.book-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-16);
  align-items: start;
}

.book-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.06;
  margin-top: var(--s-4);
  margin-bottom: var(--s-6);
}

.book-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: var(--s-6);
}

.nda-notice {
  display: flex;
  align-items: flex-start;
  gap: var(--s-3);
  padding: var(--s-5);
  background: var(--accent-dim);
  border: 1px solid var(--accent-bd);
  border-radius: var(--r-md);
  margin-bottom: var(--s-8);
}
.nda-icon { color: var(--accent); flex-shrink: 0; margin-top: 1px; }
.nda-text { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }
.nda-text strong { color: var(--text); font-weight: 500; }

.calendly-wrap {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  min-height: 660px;
  background: var(--bg-raised);
}

/* --------------------------------
   Footer
-------------------------------- */
.footer {
  border-top: 1px solid var(--border);
  padding: var(--s-16) 0 var(--s-8);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--s-8);
  margin-bottom: var(--s-12);
}

.footer-brand {}
.footer-tagline {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 260px;
  margin: var(--s-4) 0 var(--s-6);
}
.footer-email {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--text-muted);
  transition: color var(--t-fast);
}
.footer-email:hover { color: var(--accent); }

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: var(--s-4);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.footer-links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color var(--t-fast);
}
.footer-links a:hover { color: var(--text); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s-4);
  padding-top: var(--s-6);
  border-top: 1px solid var(--border-sub);
}
.footer-copy {
  font-size: 0.8125rem;
  color: var(--text-faint);
}
.footer-legal {
  display: flex;
  gap: var(--s-5);
}
.footer-legal a {
  font-size: 0.8125rem;
  color: var(--text-faint);
  transition: color var(--t-fast);
}
.footer-legal a:hover { color: var(--text-muted); }

/* --------------------------------
   Pricing Page
-------------------------------- */
.pricing-hero {
  padding: 120px 0 64px;
}

.pricing-all {
  padding: var(--s-20) 0 var(--s-32);
  border-top: 1px solid var(--border-sub);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
  margin-top: var(--s-12);
}

.p-card {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s-8);
  display: flex;
  flex-direction: column;
  transition: border-color var(--t-base), transform var(--t-base);
  position: relative;
  overflow: hidden;
}
.p-card:hover {
  border-color: var(--accent-bd);
  transform: translateY(-2px);
}
.p-card.p-featured {
  border-color: var(--accent-bd);
  background: var(--accent-dim);
}
.p-card.p-featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
}

.p-badge {
  display: inline-flex;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 10px;
  background: var(--accent);
  color: var(--accent-fg);
  border-radius: var(--r-full);
  margin-bottom: var(--s-5);
  align-self: flex-start;
}

.p-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: var(--s-2);
}
.p-price {
  font-family: var(--font-mono);
  font-size: 2rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: var(--s-1);
}
.p-price-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: var(--s-5);
}

.p-divider {
  height: 1px;
  background: var(--border);
  margin: var(--s-5) 0;
}

.p-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--s-5);
}

.p-features {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  flex: 1;
  margin-bottom: var(--s-6);
}
.p-features li {
  display: flex;
  align-items: flex-start;
  gap: var(--s-2);
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.p-features li::before {
  content: '→';
  color: var(--accent);
  flex-shrink: 0;
  font-size: 0.8125rem;
  margin-top: 1px;
}

.p-cta { margin-top: auto; }
.p-cta .btn { width: 100%; justify-content: center; }

/* Bespoke card */
.p-bespoke {
  border: 1px dashed var(--border);
  border-radius: var(--r-lg);
  padding: var(--s-10) var(--s-8);
  text-align: center;
  margin-top: var(--s-4);
  grid-column: span 3;
}
.p-bespoke-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: var(--s-3);
}
.p-bespoke-sub {
  font-size: 0.9375rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto var(--s-6);
  line-height: 1.7;
}

/* Pricing FAQ */
.pricing-faq {
  padding: var(--s-20) 0 var(--s-32);
  border-top: 1px solid var(--border-sub);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-8);
  margin-top: var(--s-12);
}
.faq-item {}
.faq-q {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: var(--s-3);
  letter-spacing: -0.01em;
}
.faq-a {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* Pricing CTA strip */
.pricing-cta-strip {
  padding: var(--s-20) 0;
  border-top: 1px solid var(--border-sub);
  text-align: center;
}
.pricing-cta-strip .section-title { margin-bottom: var(--s-5); }
.pricing-cta-strip .section-sub {
  margin: 0 auto var(--s-8);
  text-align: left;
  display: block;
  text-align: center;
  max-width: 480px;
}
.pricing-cta-strip .section-sub.centered { text-align: center; }

/* --------------------------------
   Utilities
-------------------------------- */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.text-accent { color: var(--accent); }
.mt-4  { margin-top: var(--s-4); }
.mt-8  { margin-top: var(--s-8); }
.mt-12 { margin-top: var(--s-12); }

/* Initial states for GSAP */
.js-fade { opacity: 0; transform: translateY(18px); }
.js-fade-left { opacity: 0; transform: translateX(-18px); }

/* --------------------------------
   Responsive
-------------------------------- */
@media (max-width: 1024px) {
  .services-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .p-bespoke { grid-column: span 2; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-actions .btn { display: none; }
  .menu-toggle { display: flex; }

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

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s-6);
  }
  .process-steps::before { display: none; }

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

  .book-inner { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }

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

@media (max-width: 640px) {
  .container { padding: 0 var(--s-4); }

  .hero { padding: 100px 0 60px; }

  .problems-grid,
  .services-grid,
  .teaser-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .p-bespoke { grid-column: span 1; }

  .process-steps { grid-template-columns: 1fr; }

  .pricing-teaser-head { flex-direction: column; align-items: flex-start; }

  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
