/* ============================================================
   YETI DIGITAL SERVICES — GLOBAL STYLESHEET
   Page 1 of 5: Homepage (index.html)
   ============================================================ */

/* ── Brand Tokens ── */
:root {
  --yeti-orange:       #E8622A;
  --yeti-peach:        #F4A06B;
  --yeti-charcoal:     #1E1E1E;
  --yeti-slate:        #3D4B5C;
  --yeti-ice:          #F0F4F8;
  --yeti-orange-light: #FDEEE6;
  --yeti-orange-dark:  #C04E1A;
  --yeti-slate-mid:    #6B7B8D;
  --yeti-slate-light:  #C8D2DC;
  --yeti-white:        #FFFFFF;
  --yeti-success:      #2EAD6E;
  --yeti-info:         #3A7BD5;

  --font-display: 'Montserrat', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --font-mono:    'DM Mono', monospace;

  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 24px;
  --sp-6: 32px;
  --sp-7: 48px;
  --sp-8: 64px;
  --sp-9: 96px;

  --r-md:   8px;
  --r-lg:   16px;
  --r-xl:   24px;
  --r-pill: 999px;

  --shadow-md:     0 4px 16px rgba(30,30,30,.10), 0 2px 6px rgba(30,30,30,.06);
  --shadow-lg:     0 12px 40px rgba(30,30,30,.12), 0 4px 12px rgba(30,30,30,.08);
  --shadow-orange: 0 8px 32px rgba(232,98,42,.25);

  --nav-height: 64px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--yeti-slate);
  background-color: var(--yeti-white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ── Focus States (Accessibility) ── */
:focus-visible {
  outline: 2px solid var(--yeti-orange);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ── Layout Container ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-5);
}

/* ── Eyebrow Labels ── */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  display: block;
  margin-bottom: var(--sp-3);
}

.eyebrow--peach  { color: var(--yeti-peach); }
.eyebrow--mid    { color: var(--yeti-slate-mid); }
.eyebrow--orange { color: var(--yeti-orange); }

/* ── Section Headers ── */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--sp-7);
}

.section-h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.25;
  padding-bottom: 0.1em;
  color: var(--yeti-charcoal);
  margin-bottom: var(--sp-4);
}

.section-h2--white { color: var(--yeti-white); }

.section-desc {
  font-size: 1.05rem;
  color: var(--yeti-slate-mid);
  line-height: 1.7;
  font-weight: 400;
}

.section-desc--light { color: var(--yeti-slate-light); }

/* ── Shared Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: var(--r-md);
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn--lg {
  font-size: 1rem;
  padding: 14px 28px;
}

.btn--primary {
  background-color: var(--yeti-orange);
  color: var(--yeti-white);
  box-shadow: var(--shadow-orange);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background-color: var(--yeti-orange-dark);
  box-shadow: 0 12px 40px rgba(232,98,42,.35);
}

.btn--ghost {
  background-color: transparent;
  color: var(--yeti-slate-light);
  border-color: rgba(200, 210, 220, 0.45);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  color: var(--yeti-white);
  border-color: rgba(200, 210, 220, 0.8);
  background-color: rgba(255,255,255,0.06);
}

.btn--nav {
  background-color: var(--yeti-orange);
  color: var(--yeti-white);
  box-shadow: var(--shadow-orange);
  padding: 9px 20px;
  font-size: 0.875rem;
}

.btn--nav:hover,
.btn--nav:focus-visible {
  background-color: var(--yeti-orange-dark);
}

.btn--white {
  background-color: var(--yeti-white);
  color: var(--yeti-orange-dark);
  font-weight: 600;
}

.btn--white:hover,
.btn--white:focus-visible {
  background-color: var(--yeti-orange-light);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.btn--ghost-white {
  background-color: transparent;
  color: var(--yeti-white);
  border-color: rgba(255,255,255,0.6);
}

.btn--ghost-white:hover,
.btn--ghost-white:focus-visible {
  background-color: rgba(255,255,255,0.12);
  border-color: var(--yeti-white);
}


/* ============================================================
   NAVIGATION
   ============================================================ */
.nav-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background-color: var(--yeti-charcoal);
  box-shadow: 0 2px 16px rgba(0,0,0,0.25);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-5);
  height: 100%;
  display: flex;
  align-items: center;
  gap: var(--sp-5);
}

/* Logo */
.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-logo__img {
  height: 36px;
  width: auto;
  display: block;
  object-fit: contain;
}

.footer-logo__img {
  height: 32px;
}

.logo-yeti    { color: var(--yeti-white); }
.logo-digital { color: var(--yeti-orange); }

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  justify-content: center;
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--yeti-slate-light);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--yeti-white);
}

.nav-link--active {
  color: var(--yeti-white);
  border-bottom-color: var(--yeti-orange);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
  border-radius: var(--r-md);
}

.nav-hamburger:focus-visible {
  outline: 2px solid var(--yeti-orange);
  outline-offset: 2px;
}

.hamburger-bar {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--yeti-white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-hamburger[aria-expanded="true"] .hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger[aria-expanded="true"] .hamburger-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-hamburger[aria-expanded="true"] .hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  background: linear-gradient(135deg, #1E1E1E 0%, #243040 100%);
  min-height: 580px;
  overflow: hidden;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
}

/* Glow orbs */
.hero__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero__glow--orange {
  width: 640px;
  height: 640px;
  top: -120px;
  right: -80px;
  background: radial-gradient(circle, rgba(232,98,42,0.28) 0%, transparent 65%);
}

.hero__glow--peach {
  width: 480px;
  height: 480px;
  bottom: 60px;
  left: -100px;
  background: radial-gradient(circle, rgba(244,160,107,0.15) 0%, transparent 65%);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 60fr 40fr;
  align-items: center;
  gap: var(--sp-8);
  padding-top: var(--sp-9);
  padding-bottom: var(--sp-7);
  flex: 1;
}

/* Hero Copy */
.hero__copy {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.hero__h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.75rem);
  line-height: 1.05;
  color: var(--yeti-white);
  letter-spacing: -0.01em;
}

.hero__h1-em {
  font-style: italic;
  color: var(--yeti-orange);
}

.hero__sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.1rem;
  color: var(--yeti-slate-light);
  line-height: 1.7;
  max-width: 540px;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  align-items: center;
}

/* Hero Visual */
.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__img-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.hero__img {
  width: 100%;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg), 0 0 60px rgba(232,98,42,0.15);
  object-fit: cover;
  /* Fallback gradient when image not available */
  background: linear-gradient(135deg, #2a3547 0%, #1a2535 100%);
  min-height: 320px;
}

/* Floating platform badges */
.hero__badge {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--yeti-white);
  padding: 7px 14px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(255,255,255,0.2);
  white-space: nowrap;
  box-shadow: var(--shadow-md);
}

.hero__badge--1 { top: 12%;  left: -14%; }
.hero__badge--2 { top: 32%;  right: -12%; }
.hero__badge--3 { bottom: 28%; left: -10%; }
.hero__badge--4 { bottom: 10%; right: -8%; }

/* Stats Bar */
.stats-bar {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,0.05);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: var(--sp-5) 0;
}

.stats-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  flex: 1;
  min-width: 120px;
}

.stat-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--yeti-orange);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--yeti-slate-light);
  line-height: 1.4;
  max-width: 140px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(200,210,220,0.2);
  flex-shrink: 0;
}


/* ============================================================
   PLATFORM TRUST STRIP
   ============================================================ */
.platform-strip {
  background: var(--yeti-white);
  border-top: 1px solid var(--yeti-slate-light);
  border-bottom: 1px solid var(--yeti-slate-light);
  padding: var(--sp-6) 0;
}

.platform-strip__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-5);
}

.platform-strip__eyebrow {
  margin-bottom: 0;
  text-align: center;
}

.platform-pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.platform-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--yeti-slate);
  background: var(--yeti-ice);
  border: 1px solid var(--yeti-slate-light);
  border-radius: var(--r-pill);
  padding: 9px 18px;
  cursor: default;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  user-select: none;
}

.platform-pills li:hover .platform-pill,
.platform-pill:focus-visible {
  background-color: var(--yeti-orange-light);
  border-color: var(--yeti-orange);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(232,98,42,0.15);
}


/* ============================================================
   THE SHIFT — AI SEARCH EXPLAINER
   ============================================================ */
.shift {
  background: var(--yeti-ice);
  padding: var(--sp-9) 0;
}

/* Callout Banner */
.shift__callout {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  background: var(--yeti-orange-light);
  border-left: 4px solid var(--yeti-orange);
  border-radius: var(--r-lg);
  padding: var(--sp-5) var(--sp-6);
  margin-bottom: var(--sp-6);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--yeti-slate);
  line-height: 1.7;
}

.shift__callout-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.shift__callout strong {
  font-weight: 600;
  color: var(--yeti-charcoal);
}

/* Dark Card */
.shift__card {
  background: linear-gradient(135deg, var(--yeti-charcoal) 0%, #1a2535 100%);
  border-radius: var(--r-xl);
  padding: var(--sp-8) var(--sp-8);
  overflow: hidden;
  position: relative;
}

.shift__card::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -60px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(232,98,42,0.15) 0%, transparent 65%);
  pointer-events: none;
  border-radius: 50%;
}

.shift__card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: start;
  position: relative;
  z-index: 1;
}

.shift__card-copy {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.shift__h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  color: var(--yeti-white);
  line-height: 1.2;
}

.shift__body {
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--yeti-slate-light);
  line-height: 1.75;
}

.shift__cta-link {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--yeti-orange);
  text-decoration: none;
  margin-top: var(--sp-3);
  transition: color 0.2s ease, gap 0.2s ease;
  gap: 4px;
}

.shift__cta-link:hover,
.shift__cta-link:focus-visible {
  color: var(--yeti-peach);
  gap: 8px;
}

/* Stat Grid (2x2) */
.shift__stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}

.shift__stat-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  padding: var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.shift__stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--yeti-orange);
  line-height: 1;
}

.shift__stat-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--yeti-slate-light);
  line-height: 1.5;
}


/* ============================================================
   SERVICES
   ============================================================ */
.services {
  background: var(--yeti-white);
  padding: var(--sp-9) 0;
}

/* Services image banner */
.services__img-banner {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-bottom: var(--sp-7);
  height: 280px;
}

.services__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: linear-gradient(135deg, #1a2535 0%, #2a3547 100%);
  min-height: 280px;
}

.services__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(30,30,30,0.5) 0%,
    rgba(30,30,30,0.15) 50%,
    rgba(232,98,42,0.2) 100%
  );
}

/* Service Cards Grid */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

/* Individual Service Card */
.service-card {
  background: var(--yeti-white);
  border: 1px solid rgba(200,210,220,0.5);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card__header {
  position: relative;
  background: linear-gradient(135deg, var(--yeti-charcoal) 0%, #2a3547 100%);
  padding: var(--sp-6) var(--sp-5);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-3);
  overflow: hidden;
  min-height: 140px;
  justify-content: flex-end;
}

.service-card__glow {
  position: absolute;
  top: -40px;
  right: -30px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(232,98,42,0.3) 0%, transparent 65%);
  pointer-events: none;
  border-radius: 50%;
}

.service-card__icon {
  font-size: 2.5rem;
  line-height: 1;
  position: relative;
  z-index: 1;
}

.service-card__tag {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--yeti-peach);
  background: rgba(244,160,107,0.15);
  border: 1px solid rgba(244,160,107,0.3);
  border-radius: var(--r-pill);
  padding: 4px 10px;
  position: relative;
  z-index: 1;
}

.service-card__body {
  padding: var(--sp-5) var(--sp-5) var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  flex: 1;
}

.service-card__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--yeti-charcoal);
  line-height: 1.25;
}

.service-card__desc {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--yeti-slate-mid);
  line-height: 1.65;
}

.service-card__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.service-card__features li {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--yeti-slate);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}

.service-card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--yeti-orange);
  font-weight: 700;
  font-size: 0.8rem;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--yeti-orange);
  text-decoration: none;
  gap: 4px;
  transition: color 0.2s ease, gap 0.2s ease;
  margin-top: auto;
}

.service-card__link:hover,
.service-card__link:focus-visible {
  color: var(--yeti-orange-dark);
  gap: 8px;
}


/* ============================================================
   HOW IT WORKS — PROCESS
   ============================================================ */
.process {
  background: var(--yeti-ice);
  padding: var(--sp-9) 0;
}

/* Process image banner */
.process__img-wrapper {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-bottom: var(--sp-7);
  height: 240px;
}

.process__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(240,244,248,0.15) 0%,
    rgba(240,244,248,0.5) 100%
  );
}

.process__track {
  position: relative;
  margin-bottom: -28px;
  display: flex;
  justify-content: center;
  pointer-events: none;
  height: 0;
}

.process__line {
  position: absolute;
  top: 28px;
  left: calc(50% - 37.5% + 28px);
  right: calc(50% - 37.5% + 28px);
  height: 3px;
  background: linear-gradient(90deg, var(--yeti-orange) 0%, var(--yeti-peach) 100%);
  border-radius: var(--r-pill);
  z-index: 0;
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  counter-reset: none;
}

.process__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-4);
  padding-top: var(--sp-2);
  position: relative;
  z-index: 1;
}

.process__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--yeti-orange);
  color: var(--yeti-white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-orange);
  position: relative;
  z-index: 2;
}

.process__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--yeti-charcoal);
  line-height: 1.25;
}

.process__desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--yeti-slate-mid);
  line-height: 1.65;
}


/* ============================================================
   WHY YETI DIGITAL
   ============================================================ */
.why {
  background: var(--yeti-white);
  padding: var(--sp-9) 0;
}

/* Decorative image */
.why__img-wrapper {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-bottom: var(--sp-7);
  height: 300px;
}

.why__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: linear-gradient(135deg, #243040 0%, #1E1E1E 100%);
}

.why__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(232,98,42,0.25) 0%,
    rgba(30,30,30,0.45) 60%,
    transparent 100%
  );
}

/* Why Cards Grid */
.why__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-5);
}

.why-card {
  background: var(--yeti-white);
  border: 1px solid rgba(200,210,220,0.5);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.why-card__top-border {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
}

.why-card--orange  .why-card__top-border { background: var(--yeti-orange); }
.why-card--charcoal .why-card__top-border { background: var(--yeti-charcoal); }
.why-card--peach   .why-card__top-border { background: var(--yeti-peach); }
.why-card--green   .why-card__top-border { background: var(--yeti-success); }

.why-card__icon {
  font-size: 2rem;
  line-height: 1;
}

.why-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--yeti-charcoal);
  line-height: 1.25;
}

.why-card__desc {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--yeti-slate-mid);
  line-height: 1.7;
}


/* ============================================================
   RESULTS NUMBERS
   ============================================================ */
.results {
  background: var(--yeti-charcoal);
  padding: var(--sp-9) 0;
}

.results .section-header .eyebrow {
  color: var(--yeti-peach);
}

.results__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
  margin-bottom: var(--sp-8);
}

.results__card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-xl);
  padding: var(--sp-6) var(--sp-5);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-3);
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.results__card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.09);
}

.results__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3rem;
  color: var(--yeti-orange);
  line-height: 1;
}

.results__label {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--yeti-slate-light);
  line-height: 1.6;
}

/* Testimonial */
.testimonial {
  max-width: 760px;
  margin: 0 auto;
  background: var(--yeti-white);
  border-radius: var(--r-xl);
  padding: var(--sp-7) var(--sp-8);
  position: relative;
  box-shadow: var(--shadow-lg);
}

.testimonial__quote-mark {
  position: absolute;
  top: 24px;
  left: 32px;
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--yeti-orange-light);
  font-weight: 800;
  user-select: none;
  pointer-events: none;
}

.testimonial__text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--yeti-charcoal);
  line-height: 1.65;
  font-style: normal;
  padding-top: var(--sp-5);
  position: relative;
  z-index: 1;
}

.testimonial__footer {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin-top: var(--sp-5);
}

.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--yeti-orange);
  color: var(--yeti-white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial__name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--yeti-charcoal);
}

.testimonial__biz {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--yeti-slate-mid);
}


/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background:
    linear-gradient(135deg, rgba(232,98,42,0.92) 0%, rgba(192,78,26,0.96) 100%),
    url('images/CTA background texture home page.png') center/cover no-repeat;
  padding: var(--sp-9) 0;
}

.cta-banner__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-5);
  max-width: 760px;
  margin: 0 auto;
}

.cta-banner__h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: var(--yeti-white);
  line-height: 1.1;
}

.cta-banner__body {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  max-width: 580px;
}

.cta-banner__btns {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  justify-content: center;
  align-items: center;
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--yeti-charcoal);
  padding-top: var(--sp-9);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--sp-6);
  padding-bottom: var(--sp-7);
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.footer__logo {
  margin-bottom: var(--sp-2);
}

.footer__tagline {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--yeti-slate-light);
  line-height: 1.65;
  max-width: 280px;
}

.footer__location {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--yeti-slate-mid);
}

.footer__col-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--yeti-white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer__link {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--yeti-slate-light);
  text-decoration: none;
  transition: color 0.2s ease;
  line-height: 1.5;
}

.footer__link:hover,
.footer__link:focus-visible {
  color: var(--yeti-orange);
}

.footer__col--cta {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer__cta-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--yeti-white);
  line-height: 1.3;
}

.footer__cta-desc {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--yeti-slate-light);
  line-height: 1.6;
}

/* Footer Bottom Bar */
.footer__bottom {
  border-top: 1px solid rgba(200,210,220,0.12);
  padding: var(--sp-5) 0;
}

.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-3);
}

.footer__copy,
.footer__location-tag {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--yeti-slate-mid);
}


/* ============================================================
   ANIMATIONS
   ============================================================ */

/* Float animation for hero elements */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

.float-anim          { animation: float 4s ease-in-out infinite; }
.float-anim--d1      { animation-delay: 0s; }
.float-anim--d2      { animation-delay: 0.8s; }
.float-anim--d3      { animation-delay: 1.6s; }
.float-anim--d4      { animation-delay: 2.4s; }

/* Scroll-triggered fade-up */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-up--delay-1 { transition-delay: 0.1s; }
.fade-up--delay-2 { transition-delay: 0.2s; }
.fade-up--delay-3 { transition-delay: 0.3s; }

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Ensure hero copy is visible even without JS */
@media (prefers-reduced-motion: reduce) {
  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .float-anim {
    animation: none;
  }
}


/* ============================================================
   RESPONSIVE — 900–1199px (Tablet Landscape)
   ============================================================ */
@media (max-width: 1199px) {
  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--sp-6);
    padding-top: var(--sp-8);
  }

  .hero__visual {
    display: none;
  }

  .hero__sub,
  .hero__ctas {
    max-width: 100%;
    justify-content: center;
  }

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

  .service-card:last-child {
    grid-column: 1 / -1;
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-6);
  }

  .footer__col--brand {
    grid-column: 1 / -1;
  }
}

/* ============================================================
   RESPONSIVE — 600–899px (Tablet Portrait)
   ============================================================ */
@media (max-width: 899px) {
  .process__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-6);
  }

  .process__track { display: none; }

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

  .shift__card-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-6);
  }

  .shift__card {
    padding: var(--sp-6) var(--sp-5);
  }

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

  .results__grid .results__card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 360px;
    margin: 0 auto;
    width: 100%;
  }

  .testimonial {
    padding: var(--sp-6) var(--sp-5);
  }

  .stats-bar__inner {
    justify-content: center;
  }

  .stat-divider { display: none; }
}

/* ============================================================
   RESPONSIVE — <768px (Mobile)
   ============================================================ */
@media (max-width: 768px) {
  /* Hamburger visible, desktop CTA hidden */
  .nav-hamburger { display: flex; }
  .btn--nav { display: none; }

  /* Body scroll lock when menu is open */
  body.menu-open { overflow: hidden; }

  /* Nav dropdown panel */
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--yeti-charcoal);
    padding: var(--sp-3) 0 var(--sp-5);
    gap: 0;
    border-top: 1px solid rgba(200,210,220,0.1);
    box-shadow: 0 8px 32px rgba(0,0,0,0.35);
    z-index: 999;
    align-items: flex-start;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav-links.nav-links--open {
    display: flex;
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links li { width: 100%; }

  .nav-link {
    display: block;
    padding: 14px 24px;
    border-bottom: 1px solid rgba(200,210,220,0.08);
    border-left: none;
    width: 100%;
    font-size: 1rem;
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  .nav-links li:last-child .nav-link {
    border-bottom: none;
  }

  .nav-link--active {
    border-bottom-color: rgba(200,210,220,0.08);
    color: var(--yeti-orange);
  }

  /* Mobile CTA button in dropdown — hidden on desktop */
  .nav-mobile-cta-item {
    width: 100%;
    padding: var(--sp-4) var(--sp-5) 0;
  }

  .nav-mobile-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 48px;
    background: var(--yeti-orange);
    color: var(--yeti-white) !important;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: var(--r-md);
    text-decoration: none;
    padding: 14px var(--sp-5);
    border-bottom: none !important;
    transition: background-color 0.2s ease;
  }

  .nav-mobile-cta:hover,
  .nav-mobile-cta:focus-visible {
    background: var(--yeti-orange-dark);
    color: var(--yeti-white) !important;
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--sp-6);
  }

  .footer__col--brand { grid-column: auto; }
}

/* Desktop: hide mobile CTA item in nav */
@media (min-width: 769px) {
  .nav-mobile-cta-item { display: none; }
}

/* ============================================================
   RESPONSIVE — 768px–1023px (Tablet)
   ============================================================ */
@media (min-width: 768px) and (max-width: 1023px) {
  .nav-links {
    gap: var(--sp-4);
  }

  .nav-link {
    font-size: 0.875rem;
  }

  /* hero 2-col → single col */
  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__copy {
    align-items: center;
  }

  .hero__ctas {
    justify-content: center;
  }

  .hero__visual {
    display: none;
  }

  /* Services 3→2 */
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Why 4→2×2 */
  .why__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Process 4→2×2 */
  .process__steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   RESPONSIVE — <600px (Small Mobile)
   ============================================================ */
@media (max-width: 599px) {
  :root {
    --sp-9: 64px;
    --sp-8: 48px;
  }

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

  .service-card:last-child {
    max-width: 100%;
    grid-column: auto;
  }

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

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

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

  .results__grid .results__card:nth-child(3) {
    max-width: 100%;
    grid-column: auto;
  }

  .hero__badge {
    display: none;
  }

  .hero__grid {
    padding-top: var(--sp-7);
  }

  .stats-bar__inner {
    flex-direction: column;
    gap: var(--sp-4);
  }

  .stat-item {
    flex-direction: row;
    text-align: left;
    justify-content: flex-start;
    gap: var(--sp-3);
    min-width: unset;
    width: 100%;
    max-width: 280px;
  }

  .stat-number {
    min-width: 60px;
    text-align: right;
  }

  .stat-label {
    max-width: unset;
    text-align: left;
  }

  .cta-banner__btns {
    flex-direction: column;
    width: 100%;
  }

  .cta-banner__btns .btn {
    width: 100%;
    justify-content: center;
  }

  .hero__ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__ctas .btn {
    text-align: center;
    justify-content: center;
  }

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

  .testimonial__quote-mark {
    font-size: 3.5rem;
    top: 16px;
    left: 20px;
  }

  .footer__bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}


/* ============================================================
   GLOBAL RESPONSIVE QA — ALL PAGES
   ============================================================ */

/* Global: prevent all horizontal overflow */
*, *::before, *::after { box-sizing: border-box; }
html, body { overflow-x: hidden; }
img, video, svg, iframe { max-width: 100%; height: auto; }

/* Global typography scaling */
h1 { font-size: clamp(2rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }

/* Hero H1 override so it uses clamp */
.hero__h1 {
  font-size: clamp(2rem, 5vw, 3.75rem);
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--yeti-slate-light);
  margin-bottom: var(--sp-4);
}

.breadcrumb a {
  color: var(--yeti-slate-light);
  text-decoration: none;
}

.breadcrumb a:hover { color: var(--yeti-white); }
.breadcrumb__sep { color: var(--yeti-slate-mid); }

/* ── Section desc shared ── */
.section-desc {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--yeti-slate-mid);
  line-height: 1.7;
  max-width: 600px;
  margin: var(--sp-4) auto 0;
}

/* ============================================================
   ABOUT PAGE — PAGE-SPECIFIC STYLES
   ============================================================ */

/* ── About Hero ── */
.about-hero {
  min-height: 460px;
  background:
    linear-gradient(135deg, #1E1E1E 0%, #243040 100%),
    url('images/hero background texture.webp') center/cover no-repeat;
  background-blend-mode: overlay;
}

.about-hero .hero__grid {
  padding-top: var(--sp-8);
  padding-bottom: var(--sp-8);
}

.about-hero__chips {
  margin-top: var(--sp-5);
}

.about-chip {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.about-chip.chip-visible {
  opacity: 1;
  transform: scale(1);
}


/* ── Section header left-aligned variant ── */
.section-header--left {
  text-align: left;
  margin-left: 0;
  margin-right: auto;
}


/* ── Shared body text (about page) ── */
.about-body-text {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--yeti-slate);
  line-height: 1.8;
  max-width: 740px;
}

.about-body-text--light {
  color: var(--yeti-slate-light);
}

.about-body-text + .about-body-text {
  margin-top: var(--sp-5);
}


/* ============================================================
   SECTION 2: ORIGIN
   ============================================================ */
.about-origin {
  background: var(--yeti-white);
  padding: var(--sp-9) 0;
}

.about-origin__copy {
  max-width: 740px;
  margin-bottom: var(--sp-7);
}

.about-origin__img-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  height: 420px;
}

.about-origin__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: linear-gradient(135deg, #243040 0%, #1a2535 100%);
  min-height: 420px;
}

.about-origin__img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 420px;
  background: linear-gradient(135deg, #243040 0%, #1a2535 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--yeti-slate-light);
  border-radius: var(--r-xl);
  letter-spacing: 0.06em;
}

.about-origin__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(30,30,30,0.0) 0%,
    rgba(30,30,30,0.45) 100%
  );
  pointer-events: none;
}


/* ============================================================
   SECTION 3: TIMELINE
   ============================================================ */
.about-timeline {
  background: var(--yeti-ice);
  padding: var(--sp-9) 0;
}

.timeline {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 720px;
  position: relative;
}

.timeline__node {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 0 var(--sp-6);
  position: relative;
  padding-bottom: var(--sp-7);
}

.timeline__node:last-child {
  padding-bottom: 0;
}

/* Vertical dashed connector line */
.timeline__connector {
  position: absolute;
  left: 11px;
  top: 24px;
  bottom: 0;
  width: 2px;
  border-left: 2px dashed var(--yeti-slate-light);
  grid-column: 1;
  pointer-events: none;
}

.timeline__connector--last {
  display: none;
}

/* Orange dot node */
.timeline__dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--yeti-orange);
  flex-shrink: 0;
  z-index: 1;
  position: relative;
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  margin-top: 2px;
  box-shadow: 0 0 0 4px rgba(232,98,42,0.15);
}

.timeline__dot--current {
  background: var(--yeti-orange);
  box-shadow: 0 0 0 6px rgba(232,98,42,0.2), 0 0 0 10px rgba(232,98,42,0.08);
}

.timeline__content {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  padding-bottom: 4px;
}

.timeline__year {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--yeti-orange);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.timeline__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--yeti-charcoal);
  line-height: 1.25;
}

.timeline__desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--yeti-slate-mid);
  line-height: 1.65;
}


/* ============================================================
   SECTION 4: METHODOLOGY
   ============================================================ */
.about-methodology {
  background: var(--yeti-charcoal);
  padding: var(--sp-9) 0;
  position: relative;
  overflow: hidden;
}

.about-methodology::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232,98,42,0.12) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.about-methodology__header {
  max-width: 740px;
  margin-bottom: var(--sp-6);
}

.about-methodology__h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.65rem, 3vw, 2.4rem);
  color: var(--yeti-white);
  line-height: 1.15;
  margin-top: var(--sp-3);
}

.about-methodology__intro {
  max-width: 680px;
  margin-bottom: var(--sp-7);
}

/* 2×2 method card grid */
.methodology-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-5);
  margin-bottom: var(--sp-6);
}

.method-card {
  background: var(--yeti-white);
  border-left: 4px solid var(--yeti-orange);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.method-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.method-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--yeti-charcoal);
  line-height: 1.25;
}

.method-card__desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--yeti-slate-mid);
  line-height: 1.7;
}

/* Orange callout box */
.methodology-callout {
  background: var(--yeti-orange);
  border-radius: var(--r-xl);
  padding: var(--sp-6) var(--sp-7);
}

.methodology-callout__text {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--yeti-white);
  line-height: 1.75;
  max-width: 860px;
}


/* ============================================================
   SECTION 5: HOW I WORK WITH CLIENTS
   ============================================================ */
.about-process {
  background: var(--yeti-white);
  padding: var(--sp-9) 0;
}

/* 3-step horizontal layout */
.about-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  margin-bottom: var(--sp-8);
  position: relative;
}

.about-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--yeti-orange) 0%, var(--yeti-peach) 100%);
  border-radius: var(--r-pill);
  z-index: 0;
}

.about-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-4);
  position: relative;
  z-index: 1;
}

.about-step__icon {
  font-size: 1.75rem;
  line-height: 1;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
}

.about-step__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--yeti-orange);
  color: var(--yeti-white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-orange);
  position: relative;
  z-index: 2;
}

.about-step__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--yeti-charcoal);
  line-height: 1.25;
}

.about-step__desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--yeti-slate-mid);
  line-height: 1.65;
}

/* Solo advantage two-col block */
.solo-advantage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.solo-advantage__col {
  padding: var(--sp-7) var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.solo-advantage__col--green {
  background: #f0fdf6;
  border: 1px solid rgba(46,173,110,0.2);
  border-right: none;
  border-radius: var(--r-xl) 0 0 var(--r-xl);
}

.solo-advantage__col--slate {
  background: var(--yeti-ice);
  border: 1px solid rgba(200,210,220,0.5);
  border-left: none;
  border-radius: 0 var(--r-xl) var(--r-xl) 0;
}

.solo-advantage__col-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--yeti-charcoal);
  line-height: 1.3;
}

.solo-advantage__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.solo-advantage__item {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--yeti-slate);
  line-height: 1.6;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.solo-advantage__item.item-visible {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================================
   SECTION 6: POINT OF VIEW
   ============================================================ */
.about-pov {
  background: var(--yeti-ice);
  padding: var(--sp-9) 0;
}

.about-pov__img-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-bottom: var(--sp-7);
  height: 340px;
}

.about-pov__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: linear-gradient(135deg, #1a2535 0%, #243040 100%);
  min-height: 340px;
}

.about-pov__img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 340px;
  background: linear-gradient(135deg, #1a2535 0%, #243040 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--yeti-slate-light);
  letter-spacing: 0.06em;
}

.about-pov__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(240,244,248,0.0) 0%,
    rgba(240,244,248,0.6) 100%
  );
  pointer-events: none;
}

/* Opinion cards */
.opinion-cards {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.opinion-card {
  background: var(--yeti-white);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-sm, 0 2px 8px rgba(30,30,30,0.06));
  overflow: hidden;
  padding: var(--sp-6) var(--sp-7);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.opinion-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.opinion-card__top-border {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--yeti-orange);
  border-radius: var(--r-xl) var(--r-xl) 0 0;
}

.opinion-card__headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--yeti-charcoal);
  line-height: 1.3;
}

.opinion-card__body {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--yeti-slate-mid);
  line-height: 1.75;
}

/* Slide-in animation states */
.slide-in--left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.slide-in--right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.slide-in.is-visible {
  opacity: 1;
  transform: translateX(0);
}


/* ============================================================
   SECTION 7: WHO I WORK BEST WITH
   ============================================================ */
.about-fit {
  background: var(--yeti-white);
  padding: var(--sp-9) 0;
}

.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
  margin-bottom: var(--sp-6);
}

.fit-card {
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.fit-card--green {
  background: #f0fdf6;
  border: 1px solid rgba(46,173,110,0.25);
}

.fit-card--grey {
  background: var(--yeti-ice);
  border: 1px solid rgba(200,210,220,0.5);
}

.fit-card__header {
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid rgba(200,210,220,0.4);
}

.fit-card__label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.3;
}

.fit-card__label--green { color: var(--yeti-success); }
.fit-card__label--grey  { color: var(--yeti-slate-mid); }

.fit-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.fit-list__item {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--yeti-slate);
  line-height: 1.65;
  padding-left: 20px;
  position: relative;
}

.fit-card--green .fit-list__item::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--yeti-success);
  font-weight: 700;
  font-size: 0.85rem;
}

.fit-card--grey .fit-list__item::before {
  content: '✗';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--yeti-slate-mid);
  font-weight: 700;
  font-size: 0.85rem;
}

.fit-list__item--muted {
  color: var(--yeti-slate-mid);
}

.fit-honest-note {
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--yeti-slate-mid);
  font-style: italic;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}


/* ============================================================
   SECTION 8: ABOUT CTA
   ============================================================ */
.about-cta {
  background: var(--yeti-charcoal);
  padding: var(--sp-9) 0;
  position: relative;
  overflow: hidden;
}

.about-cta::before {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(232,98,42,0.1) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.about-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-5);
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.about-cta__h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.65rem, 3vw, 2.4rem);
  color: var(--yeti-white);
  line-height: 1.15;
}

.about-cta__body {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--yeti-slate-light);
  line-height: 1.75;
  max-width: 560px;
}

.about-cta__micro {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--yeti-slate-mid);
  letter-spacing: 0.06em;
}


/* ============================================================
   ABOUT PAGE — RESPONSIVE BREAKPOINTS
   ============================================================ */

/* 900–1199px */
@media (max-width: 1199px) {
  .methodology-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-steps::before {
    display: none;
  }
}

/* 600–899px */
@media (max-width: 899px) {
  .about-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-5);
  }

  .about-steps::before {
    display: none;
  }

  .solo-advantage {
    grid-template-columns: 1fr;
  }

  .solo-advantage__col--green {
    border-right: 1px solid rgba(46,173,110,0.2);
    border-bottom: none;
    border-radius: var(--r-xl) var(--r-xl) 0 0;
  }

  .solo-advantage__col--slate {
    border-left: 1px solid rgba(200,210,220,0.5);
    border-top: none;
    border-radius: 0 0 var(--r-xl) var(--r-xl);
  }

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

  .about-origin__img-wrap {
    height: 280px;
  }

  .about-origin__img,
  .about-origin__img-placeholder {
    min-height: 280px;
  }

  .about-pov__img-wrap {
    height: 240px;
  }

  .about-pov__img,
  .about-pov__img-placeholder {
    min-height: 240px;
  }
}

/* < 600px */
@media (max-width: 599px) {
  .about-steps {
    grid-template-columns: 1fr;
  }

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

  .timeline__connector {
    display: none;
  }

  .timeline__node {
    gap: 0 var(--sp-4);
    padding-bottom: var(--sp-6);
  }

  .opinion-card {
    padding: var(--sp-5) var(--sp-5);
  }

  .methodology-callout {
    padding: var(--sp-5) var(--sp-5);
  }

  .about-hero__chips {
    flex-direction: column;
    align-items: flex-start;
  }

  .solo-advantage__col {
    padding: var(--sp-5) var(--sp-5);
  }

  .slide-in--left,
  .slide-in--right {
    transform: translateY(20px);
  }
}


/* ============================================================
   AEO / GEO PAGE — PAGE-SPECIFIC STYLES
   ============================================================ */

/* ── AEO Hero (centered, single-column) ── */
.hero--centered {
  min-height: 520px;
}

.hero--centered .hero__grid {
  grid-template-columns: 1fr;
  text-align: center;
  padding-top: var(--sp-8);
  padding-bottom: var(--sp-8);
  gap: var(--sp-5);
  max-width: 760px;
  margin: 0 auto;
}

.hero--centered .hero__sub {
  max-width: 600px;
  margin: 0 auto;
}

.hero--centered .hero__ctas {
  justify-content: center;
}

/* Breadcrumb */
.breadcrumb {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--yeti-slate-mid);
  margin-bottom: var(--sp-2);
}

.breadcrumb a {
  color: var(--yeti-slate-mid);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb a:hover { color: var(--yeti-slate-light); }

.breadcrumb__sep {
  margin: 0 6px;
  opacity: 0.6;
}

/* Trust chips row */
.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: var(--sp-4) auto 0;
}

.trust-chip {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--yeti-slate-light);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--r-pill);
  padding: 7px 16px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  white-space: nowrap;
}


/* ── Section: Plain-English Explainer ── */
.explainer {
  background: var(--yeti-white);
  padding: var(--sp-9) 0;
}

.explainer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
  margin-bottom: var(--sp-6);
}

/* AEO / GEO definition cards */
.def-card {
  background: var(--yeti-white);
  border: 1px solid rgba(200,210,220,0.5);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.def-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.def-card__top-bar {
  height: 5px;
  width: 100%;
}

.def-card--orange .def-card__top-bar { background: var(--yeti-orange); }
.def-card--slate  .def-card__top-bar { background: var(--yeti-slate); }

.def-card__body {
  padding: var(--sp-6) var(--sp-6) var(--sp-7);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  flex: 1;
}

.def-card__badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  width: fit-content;
}

.def-card--orange .def-card__badge {
  background: var(--yeti-orange);
  color: var(--yeti-white);
}

.def-card--slate .def-card__badge {
  background: var(--yeti-charcoal);
  color: var(--yeti-white);
}

.def-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--yeti-charcoal);
  line-height: 1.25;
}

.def-card__text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--yeti-slate-mid);
  line-height: 1.75;
}

.def-card__meta {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-top: auto;
  padding-top: var(--sp-4);
  border-top: 1px solid rgba(200,210,220,0.4);
}

.def-card__meta-row {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.def-card__meta-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--yeti-slate-mid);
}

.def-card__meta-tags {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--yeti-slate);
  line-height: 1.6;
}

/* Insight callout */
.insight-callout {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  background: var(--yeti-orange-light);
  border-left: 4px solid var(--yeti-orange);
  border-radius: var(--r-lg);
  padding: var(--sp-5) var(--sp-6);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--yeti-slate);
  line-height: 1.75;
}

.insight-callout__icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.insight-callout strong {
  font-weight: 600;
  color: var(--yeti-charcoal);
}


/* ── Section: Why It Matters (urgency) ── */
.urgency {
  background: var(--yeti-ice);
  padding: var(--sp-9) 0;
}

/* Decorative image banner */
.urgency__img-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-bottom: var(--sp-7);
  height: 280px;
}

.urgency__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.urgency__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(240,244,248,0.1) 0%,
    rgba(240,244,248,0.55) 100%
  );
}

/* Stats grid */
.urgency__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
  margin-bottom: var(--sp-7);
}

.urgency__stat-card {
  background: var(--yeti-white);
  border: 1px solid rgba(200,210,220,0.5);
  border-radius: var(--r-xl);
  padding: var(--sp-6) var(--sp-5);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-3);
  box-shadow: var(--shadow-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.urgency__stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.urgency__stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--yeti-orange);
  line-height: 1;
}

.urgency__stat-text {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--yeti-slate-mid);
  line-height: 1.6;
}

/* Dark explainer card */
.urgency__dark-card {
  background: linear-gradient(135deg, var(--yeti-charcoal) 0%, #1a2535 100%);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  position: relative;
  overflow: hidden;
}

.urgency__dark-card::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -60px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(232,98,42,0.15) 0%, transparent 65%);
  pointer-events: none;
  border-radius: 50%;
}

.urgency__dark-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-7);
  position: relative;
  z-index: 1;
}

.urgency__dark-h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  color: var(--yeti-white);
  line-height: 1.25;
  margin-bottom: var(--sp-5);
  grid-column: 1 / -1;
}

.urgency__dark-body {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--yeti-slate-light);
  line-height: 1.8;
}


/* ── Section: Platform Cards ── */
.platforms {
  background: var(--yeti-white);
  padding: var(--sp-9) 0;
}

.platforms__dark-wrap {
  background: var(--yeti-ice);
  border-radius: var(--r-xl);
  padding: var(--sp-8) var(--sp-7);
  margin-bottom: var(--sp-8);
  position: relative;
  overflow: hidden;
}

.platforms__dark-wrap::before {
  display: none;
}

.platforms__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-5);
  position: relative;
  z-index: 1;
}

/* Glass platform card */
.platform-card {
  background: var(--yeti-white);
  border: 1px solid var(--yeti-slate-light);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.platform-card:hover {
  background: var(--yeti-white);
  border-color: var(--yeti-orange);
  transform: translateY(-3px);
}

.platform-card__header {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.platform-card__emoji {
  font-size: 1.8rem;
  line-height: 1;
}

.platform-card__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--yeti-charcoal);
  line-height: 1.2;
}

.platform-card__desc {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--yeti-slate);
  line-height: 1.7;
}

.platform-card__signals {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: auto;
  padding-top: var(--sp-4);
  border-top: 1px solid var(--yeti-slate-light);
}

.platform-card__signals li {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--yeti-slate);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}

.platform-card__signals li::before {
  content: '→';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--yeti-orange);
  font-size: 0.95rem;
  font-weight: 500;
}

/* ── Comparison Table ── */
.comparison-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
}

.comparison-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-family: var(--font-body);
  font-size: 0.9rem;
}

.comparison-table caption {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--yeti-slate-mid);
  text-align: left;
  padding-bottom: var(--sp-3);
}

.comparison-table thead tr {
  background: var(--yeti-charcoal);
}

.comparison-table thead th {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--yeti-white);
  padding: 14px 18px;
  text-align: left;
  white-space: nowrap;
}

.comparison-table thead th:first-child {
  border-radius: var(--r-md) 0 0 0;
}

.comparison-table thead th:last-child {
  border-radius: 0 var(--r-md) 0 0;
}

.comparison-table tbody tr:nth-child(odd) {
  background: var(--yeti-white);
}

.comparison-table tbody tr:nth-child(even) {
  background: var(--yeti-ice);
}

.comparison-table tbody tr {
  border-bottom: 1px solid rgba(200,210,220,0.3);
  transition: background-color 0.2s ease;
}

.comparison-table tbody tr:last-child {
  border-bottom: none;
}

.comparison-table tbody tr:hover {
  background: var(--yeti-orange-light);
}

.comparison-table td {
  padding: 12px 18px;
  color: var(--yeti-slate);
  line-height: 1.5;
  vertical-align: top;
}

.comparison-table td:first-child {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.82rem;
  color: var(--yeti-charcoal);
  white-space: nowrap;
}

/* Scroll hint on mobile */
.table-scroll-hint {
  display: none;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--yeti-slate-mid);
  text-align: center;
  padding: var(--sp-2) 0 var(--sp-3);
}


/* ── Section: Service Deliverables ── */
.service-detail {
  background: var(--yeti-ice);
  padding: var(--sp-9) 0;
}

.service-detail__layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: var(--sp-8);
  align-items: start;
}

.service-detail__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.deliverable {
  display: flex;
  gap: var(--sp-5);
  padding: var(--sp-6) 0;
  border-bottom: 1px solid rgba(200,210,220,0.45);
  transition: background-color 0.2s ease;
}

.deliverable:last-child {
  border-bottom: none;
}

.deliverable:hover {
  background: rgba(255,255,255,0.6);
  border-radius: var(--r-md);
  padding-left: var(--sp-3);
  padding-right: var(--sp-3);
  margin: 0 calc(-1 * var(--sp-3));
}

.deliverable__num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--yeti-orange);
  color: var(--yeti-white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-orange);
  margin-top: 2px;
}

.deliverable__content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.deliverable__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--yeti-charcoal);
  line-height: 1.25;
}

.deliverable__desc {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--yeti-slate-mid);
  line-height: 1.75;
}

/* Service visual aside */
.service-detail__visual {
  position: sticky;
  top: calc(var(--nav-height) + 24px);
}

.service-detail__visual-card {
  background: linear-gradient(135deg, var(--yeti-charcoal) 0%, #1a2535 100%);
  border-radius: var(--r-xl);
  padding: var(--sp-7) var(--sp-6);
  position: relative;
  overflow: hidden;
}

.service-detail__visual-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -40px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(232,98,42,0.2) 0%, transparent 65%);
  pointer-events: none;
  border-radius: 50%;
}

.visual-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--yeti-white);
  margin-bottom: var(--sp-5);
  position: relative;
  z-index: 1;
}

.visual-card__items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  position: relative;
  z-index: 1;
}

.visual-card__item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--yeti-slate-light);
  line-height: 1.5;
}

.visual-card__item::before {
  content: '✓';
  color: var(--yeti-orange);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.visual-card__cta {
  margin-top: var(--sp-6);
  position: relative;
  z-index: 1;
}

.visual-card__cta .btn {
  width: 100%;
  justify-content: center;
}


/* ── Section: Process Timeline ── */
.aeo-process {
  background: var(--yeti-white);
  padding: var(--sp-9) 0;
}

.aeo-process .timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}

/* Vertical dashed line */
.aeo-process .timeline::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 0;
  bottom: 0;
  width: 2px;
  border-left: 2px dashed var(--yeti-orange);
  opacity: 0.4;
  z-index: 0;
}

.aeo-process .timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: var(--sp-5);
  padding-bottom: var(--sp-7);
  z-index: 1;
}

.aeo-process .timeline__item:last-child {
  padding-bottom: 0;
}

.aeo-process .timeline__node {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--yeti-orange);
  color: var(--yeti-white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-orange);
  position: relative;
  z-index: 2;
  transform: scale(0);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
}

.aeo-process .timeline__node--peach {
  background: var(--yeti-peach);
  box-shadow: 0 8px 32px rgba(244,160,107,0.35);
}

.aeo-process .timeline__item.is-visible .timeline__node {
  transform: scale(1);
  opacity: 1;
}

.aeo-process .timeline__content {
  padding-top: 10px;
}

.aeo-process .timeline__phase {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--yeti-orange);
  margin-bottom: 6px;
}

.aeo-process .timeline__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--yeti-charcoal);
  line-height: 1.25;
  margin-bottom: var(--sp-3);
}

.aeo-process .timeline__desc {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--yeti-slate-mid);
  line-height: 1.75;
}

.aeo-process .timeline__item--ongoing .timeline__phase {
  color: var(--yeti-peach);
}

.aeo-process .timeline__item--ongoing .timeline__title {
  color: var(--yeti-charcoal);
}


/* ── Section: FAQ Accordion ── */
.faq {
  background: var(--yeti-ice);
  padding: var(--sp-9) 0;
}

.faq__list {
  max-width: 800px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.faq__item {
  background: var(--yeti-white);
  border: 1px solid rgba(200,210,220,0.5);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: border-color 0.2s ease;
}

.faq__item--active {
  border-left: 4px solid var(--yeti-orange);
  background: #fffaf8;
  border-color: var(--yeti-orange);
}

.faq__question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--yeti-charcoal);
  line-height: 1.4;
  transition: color 0.2s ease;
}

.faq__question:focus-visible {
  outline: 2px solid var(--yeti-orange);
  outline-offset: -2px;
  border-radius: var(--r-md);
}

.faq__item--active .faq__question {
  color: var(--yeti-charcoal);
}

.faq__chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--yeti-slate-mid);
  transition: transform 0.3s ease, color 0.2s ease;
}

.faq__item--active .faq__chevron {
  transform: rotate(180deg);
  color: var(--yeti-orange);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq__answer-inner {
  padding: 0 var(--sp-6) var(--sp-6);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--yeti-slate-mid);
  line-height: 1.8;
  border-top: 1px solid rgba(200,210,220,0.3);
  padding-top: var(--sp-4);
}


/* ── CTA Banner micro-trust ── */
.cta-banner__microtrust {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.05em;
}


/* ============================================================
   AEO/GEO PAGE — RESPONSIVE
   ============================================================ */

@media (max-width: 1199px) {
  .platforms__dark-wrap {
    padding: var(--sp-7) var(--sp-5);
  }

  .service-detail__layout {
    grid-template-columns: 1fr;
  }

  .service-detail__visual {
    position: static;
    order: -1;
  }

  .urgency__dark-card {
    padding: var(--sp-6) var(--sp-5);
  }
}

@media (max-width: 899px) {
  .explainer__grid {
    grid-template-columns: 1fr;
  }

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

  .urgency__dark-card-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-5);
  }

  .urgency__dark-h3 {
    grid-column: auto;
  }

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

  .table-scroll-hint {
    display: block;
  }
}

@media (max-width: 599px) {
  .hero--centered .hero__grid {
    padding-top: var(--sp-7);
    padding-bottom: var(--sp-7);
  }

  .trust-chips {
    gap: var(--sp-2);
  }

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

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

  .aeo-process .timeline::before {
    left: 23px;
  }

  .aeo-process .timeline__item {
    grid-template-columns: 48px 1fr;
    gap: var(--sp-4);
  }

  .aeo-process .timeline__node {
    width: 48px;
    height: 48px;
    font-size: 0.95rem;
  }

  .faq__question {
    padding: var(--sp-4) var(--sp-4);
    font-size: 0.92rem;
  }

  .faq__answer-inner {
    padding: var(--sp-3) var(--sp-4) var(--sp-5);
  }

  .urgency__dark-card {
    padding: var(--sp-5) var(--sp-4);
  }
}


/* ============================================================
   LOCAL SEARCH & GBP PAGE — PAGE-SPECIFIC STYLES
   ============================================================ */

/* ── Hero: two-column with map pack mockup ── */
.hero--local {
  min-height: 520px;
}

.hero--local .hero__grid {
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--sp-7);
  padding-top: var(--sp-8);
  padding-bottom: var(--sp-8);
}

.hero--local .hero__copy {
  text-align: left;
}

.hero--local .hero__ctas {
  justify-content: flex-start;
}

/* ── Map Pack Mockup ── */
.map-pack-mockup {
  background: var(--yeti-white);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  font-family: var(--font-body);
  animation: mockupEntrance 0.7s cubic-bezier(0.22,1,0.36,1) both;
  animation-delay: 0.3s;
}

@keyframes mockupEntrance {
  from { opacity: 0; transform: translateY(18px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.map-pack__search-bar {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  background: #f8f9fa;
  border-bottom: 1px solid #e8eaed;
  padding: 12px 16px;
}

.map-pack__search-icon {
  color: #4285f4;
  font-size: 1rem;
  flex-shrink: 0;
}

.map-pack__search-input {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #202124;
  flex: 1;
}

.map-pack__search-dots {
  display: flex;
  gap: 4px;
}

.map-pack__search-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #dadce0;
}

.map-pack__header {
  background: #e8f0fe;
  padding: 8px 16px;
  font-size: 0.75rem;
  color: #5f6368;
  font-family: var(--font-body);
  border-bottom: 1px solid #e8eaed;
}

.map-pack__listings {
  padding: 0;
}

.map-pack__listing {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid #f1f3f4;
  cursor: pointer;
  transition: background 0.15s ease;
  position: relative;
}

.map-pack__listing:last-child { border-bottom: none; }
.map-pack__listing:hover { background: #fafafa; }

.map-pack__listing--featured {
  border-left: 3px solid var(--yeti-orange);
  background: #fff8f5;
  padding-left: 13px;
}

.map-pack__listing--featured:hover { background: #fff3ed; }

.map-pack__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--yeti-white);
  flex-shrink: 0;
}

.map-pack__avatar--orange { background: var(--yeti-orange); }
.map-pack__avatar--blue   { background: #4285f4; }
.map-pack__avatar--green  { background: #34a853; }

.map-pack__info { min-width: 0; }

.map-pack__name {
  font-size: 0.88rem;
  font-weight: 600;
  color: #1a0dab;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 2px;
  line-height: 1.3;
}

.map-pack__stars {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-bottom: 3px;
}

.map-pack__star {
  color: #fbbc04;
  font-size: 0.75rem;
  line-height: 1;
}

.map-pack__rating-count {
  font-size: 0.72rem;
  color: #5f6368;
  margin-left: 2px;
}

.map-pack__meta {
  font-size: 0.72rem;
  color: #5f6368;
  line-height: 1.4;
}

.map-pack__open {
  color: #137333;
  font-weight: 500;
}

.map-pack__badge {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  color: var(--yeti-orange);
  background: var(--yeti-orange-light);
  border: 1px solid rgba(232,98,42,0.25);
  border-radius: var(--r-pill);
  padding: 2px 8px;
  margin-top: 4px;
  display: inline-block;
}

.map-pack__footer {
  background: #f8f9fa;
  padding: 8px 16px;
  font-size: 0.72rem;
  color: #5f6368;
  text-align: center;
  border-top: 1px solid #e8eaed;
  font-family: var(--font-body);
}


/* ── Section: Numbers / Stats ── */
.ls-numbers {
  background: var(--yeti-white);
  padding: var(--sp-9) 0;
}

.ls-numbers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
  margin-bottom: var(--sp-6);
}

.ls-stat-card {
  background: var(--yeti-white);
  border: 1px solid rgba(200,210,220,0.5);
  border-top: 4px solid var(--yeti-orange);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
  padding: var(--sp-6);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ls-stat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.ls-stat-card__num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--yeti-orange);
  line-height: 1;
  display: block;
  margin-bottom: var(--sp-3);
}

.ls-stat-card__text {
  font-size: 0.9rem;
  color: var(--yeti-slate-mid);
  line-height: 1.55;
}

/* Insight callout — reused on this page */
.insight-callout {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  background: var(--yeti-orange-light);
  border-left: 4px solid var(--yeti-orange);
  border-radius: var(--r-lg);
  padding: var(--sp-5) var(--sp-6);
}

.insight-callout__icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.insight-callout p {
  font-size: 0.95rem;
  color: var(--yeti-slate);
  line-height: 1.6;
}


/* ── Section: Two Services ── */
.ls-services {
  background: var(--yeti-ice);
  padding: var(--sp-9) 0;
}

.ls-services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
}

.service-panel {
  background: var(--yeti-white);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-panel:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-panel__top {
  height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  border-radius: var(--r-xl) var(--r-xl) 0 0;
}

.service-panel__top--charcoal {
  background: linear-gradient(135deg, #1E2830 0%, #243040 100%);
}

.service-panel__top--green {
  background: linear-gradient(135deg, #1A2E28 0%, #243040 100%);
}

.service-panel__icon {
  font-size: 2.4rem;
  line-height: 1;
}

.service-panel__tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--r-pill);
  padding: 4px 12px;
}

.service-panel__tag--orange {
  color: var(--yeti-peach);
  background: rgba(232,98,42,0.2);
  border-color: rgba(232,98,42,0.35);
}

.service-panel__body {
  padding: var(--sp-6);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.service-panel__name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--yeti-charcoal);
  line-height: 1.25;
}

.service-panel__desc {
  font-size: 0.95rem;
  color: var(--yeti-slate-mid);
  line-height: 1.65;
}

.service-panel__list-title {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--yeti-charcoal);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--sp-2);
}

.service-panel__checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px var(--sp-4);
  padding: 0;
}

.service-panel__check-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--yeti-slate);
  line-height: 1.4;
}

.service-panel__check-item::before {
  content: '✓';
  color: var(--yeti-orange);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.service-panel__outcome {
  margin-top: auto;
  background: var(--yeti-orange-light);
  border-radius: var(--r-lg);
  padding: var(--sp-4) var(--sp-5);
  font-size: 0.88rem;
  color: var(--yeti-slate);
  line-height: 1.5;
}

.service-panel__outcome--green {
  background: rgba(46,173,110,0.08);
}


/* ── Section: How Google Ranks ── */
.ls-ranking {
  background: var(--yeti-white);
  padding: var(--sp-9) 0;
}

.ls-ranking__img-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-bottom: var(--sp-7);
  height: 260px;
}

.ls-ranking__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ls-ranking__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.5) 100%);
}

.ls-ranking__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  margin-bottom: var(--sp-7);
}

.ranking-card {
  background: var(--yeti-white);
  border: 1px solid rgba(200,210,220,0.5);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ranking-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.ranking-card__badge {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--yeti-orange);
  background: var(--yeti-orange-light);
  border-radius: var(--r-pill);
  padding: 4px 12px;
  display: inline-block;
  width: fit-content;
}

.ranking-card__icon {
  font-size: 2rem;
  line-height: 1;
}

.ranking-card__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--yeti-charcoal);
  line-height: 1.2;
}

.ranking-card__desc {
  font-size: 0.92rem;
  color: var(--yeti-slate-mid);
  line-height: 1.65;
}

.ranking-card__how-title {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--yeti-charcoal);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.ranking-card__how-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0;
}

.ranking-card__how-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--yeti-slate);
  line-height: 1.4;
}

.ranking-card__how-list li::before {
  content: '→';
  color: var(--yeti-orange);
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Ranking Factor Bars */
.ranking-bars {
  background: var(--yeti-white);
  border: 1px solid rgba(200,210,220,0.5);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
  padding: var(--sp-6) var(--sp-7);
}

.ranking-bars__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--yeti-slate-mid);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--sp-5);
}

.ranking-bars__list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  padding: 0;
}

.ranking-bar-row {
  display: grid;
  grid-template-columns: 280px 1fr 40px;
  align-items: center;
  gap: var(--sp-4);
}

.ranking-bar-row__label {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--yeti-slate);
  line-height: 1.3;
}

.ranking-bar-row__track {
  background: rgba(200,210,220,0.35);
  border-radius: var(--r-pill);
  height: 10px;
  overflow: hidden;
}

.ranking-bar-row__fill {
  height: 100%;
  border-radius: var(--r-pill);
  background: linear-gradient(90deg, var(--yeti-orange) 0%, var(--yeti-peach) 100%);
  width: 0;
  transition: width 0.8s ease-out;
}

.ranking-bar-row__pct {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--yeti-orange);
  text-align: right;
}

.ranking-bars__note {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--yeti-slate-mid);
  margin-top: var(--sp-5);
  line-height: 1.6;
}


/* ── Section: GBP Deep Dive ── */
.ls-gbp {
  background: var(--yeti-ice);
  padding: var(--sp-9) 0;
}

.ls-gbp__layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: var(--sp-7);
  align-items: start;
}

.ls-gbp__img-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  height: 360px;
}

.ls-gbp__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ls-gbp__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(240,244,248,0.05) 0%, rgba(240,244,248,0.45) 100%);
}

/* GBP Checklist */
.gbp-checklist {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.gbp-checklist__group-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--yeti-slate-mid);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--sp-2);
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(200,210,220,0.5);
}

.gbp-checklist__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px var(--sp-4);
  padding: 0;
}

.gbp-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.86rem;
  color: var(--yeti-slate);
  line-height: 1.4;
}

.gbp-item__icon {
  flex-shrink: 0;
  font-size: 0.88rem;
  margin-top: 1px;
}

.gbp-item__icon--check { color: var(--yeti-success); }
.gbp-item__icon--cross { color: #D63F3F; }

.gbp-item__text { flex: 1; }

.gbp-item__badge {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  color: var(--yeti-orange);
  background: var(--yeti-orange-light);
  border: 1px solid rgba(232,98,42,0.25);
  border-radius: var(--r-pill);
  padding: 2px 7px;
  white-space: nowrap;
  margin-left: 4px;
  vertical-align: middle;
}

.gbp-checklist__note {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--yeti-slate-mid);
  line-height: 1.6;
  font-style: italic;
  margin-top: var(--sp-2);
}


/* ── Section: Before / After ── */
.ls-before-after {
  background: var(--yeti-white);
  padding: var(--sp-9) 0;
}

.before-after__layout {
  display: grid;
  grid-template-columns: 1fr 56px 1fr;
  align-items: start;
  gap: 0;
}

.before-card,
.after-card {
  background: var(--yeti-white);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.before-card {
  border-left: 4px solid #D63F3F;
}

.after-card {
  border-left: 4px solid var(--yeti-success);
  box-shadow: var(--shadow-lg);
}

.ba-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  border-radius: var(--r-pill);
  padding: 4px 14px;
  display: inline-block;
  width: fit-content;
  letter-spacing: 0.05em;
}

.ba-label--before {
  color: #D63F3F;
  background: rgba(214,63,63,0.08);
  border: 1px solid rgba(214,63,63,0.25);
}

.ba-label--after {
  color: var(--yeti-success);
  background: rgba(46,173,110,0.08);
  border: 1px solid rgba(46,173,110,0.25);
}

.ba-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
}

.ba-list__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--yeti-slate);
  line-height: 1.45;
}

.ba-list__icon {
  flex-shrink: 0;
  font-size: 0.95rem;
  margin-top: 1px;
}

.ba-list__icon--cross { color: #D63F3F; }
.ba-list__icon--check { color: var(--yeti-success); }

/* Arrow connector */
.before-after__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding-top: 80px;
}

.before-after__arrow-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--yeti-orange);
  color: var(--yeti-white);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-orange);
  transform: scale(0);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}

.before-after__arrow-badge.is-visible {
  transform: scale(1);
}

.before-after__note {
  text-align: center;
  font-style: italic;
  font-size: 0.85rem;
  color: var(--yeti-slate-mid);
  margin-top: var(--sp-6);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Slide-in animations */
.before-card {
  transform: translateX(-40px);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1), opacity 0.6s ease;
}

.after-card {
  transform: translateX(40px);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1), opacity 0.6s ease;
  transition-delay: 0.15s;
}

.before-card.is-visible,
.after-card.is-visible {
  transform: translateX(0);
  opacity: 1;
}


/* ── Section: Review Strategy ── */
.ls-reviews {
  background: var(--yeti-ice);
  padding: var(--sp-9) 0;
}

.ls-reviews__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
  margin-bottom: var(--sp-7);
}

.review-stat-card {
  background: var(--yeti-white);
  border: 1px solid rgba(200,210,220,0.5);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
  padding: var(--sp-6);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.review-stat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.review-stat-card__num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--yeti-orange);
  line-height: 1;
  display: block;
  margin-bottom: var(--sp-3);
}

.review-stat-card__text {
  font-size: 0.88rem;
  color: var(--yeti-slate-mid);
  line-height: 1.55;
}

.ls-reviews__card {
  background: var(--yeti-white);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
  padding: var(--sp-7) var(--sp-7);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-7);
  align-items: start;
}

.ls-reviews__col-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--yeti-charcoal);
  margin-bottom: var(--sp-5);
  line-height: 1.3;
}

.review-strategy-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  padding: 0;
}

.review-strategy-item__title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--yeti-charcoal);
  margin-bottom: 4px;
}

.review-strategy-item__desc {
  font-size: 0.88rem;
  color: var(--yeti-slate-mid);
  line-height: 1.6;
}

.ls-reviews__ai-note {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.ls-reviews__ai-text {
  font-size: 0.92rem;
  color: var(--yeti-slate-mid);
  line-height: 1.7;
}

.ls-reviews__ai-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--yeti-orange);
  background: var(--yeti-orange-light);
  border: 1px solid rgba(232,98,42,0.25);
  border-radius: var(--r-pill);
  padding: 6px 16px;
  transition: background 0.2s ease;
  width: fit-content;
}

.ls-reviews__ai-link:hover {
  background: rgba(232,98,42,0.15);
}


/* ── Section: Pricing / Service Tiers ── */
.ls-pricing {
  background: var(--yeti-white);
  padding: var(--sp-9) 0;
}

.ls-pricing__img-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-bottom: var(--sp-7);
  height: 260px;
}

.ls-pricing__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ls-pricing__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.5) 100%);
}

.ls-pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  margin-bottom: var(--sp-5);
}

.tier-card {
  background: var(--yeti-white);
  border: 1px solid rgba(200,210,220,0.5);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tier-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.tier-card--featured {
  box-shadow: var(--shadow-lg);
  border-color: rgba(200,210,220,0.8);
}

.tier-card__top-bar {
  height: 5px;
  width: 100%;
}

.tier-card__top-bar--orange  { background: var(--yeti-orange); }
.tier-card__top-bar--charcoal { background: var(--yeti-charcoal); }
.tier-card__top-bar--peach   { background: var(--yeti-peach); }

.tier-card__body {
  padding: var(--sp-6);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.tier-card__tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--yeti-slate-mid);
  letter-spacing: 0.05em;
}

.tier-card__tag--orange {
  color: var(--yeti-orange);
  font-weight: 600;
}

.tier-card__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--yeti-charcoal);
  line-height: 1.25;
}

.tier-card__desc {
  font-size: 0.88rem;
  color: var(--yeti-slate-mid);
  line-height: 1.6;
}

.tier-card__divider {
  border: none;
  border-top: 1px solid rgba(200,210,220,0.5);
  margin: var(--sp-2) 0;
}

.tier-card__includes-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--yeti-charcoal);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.tier-card__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
  flex: 1;
}

.tier-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--yeti-slate);
  line-height: 1.4;
}

.tier-card__list li::before {
  content: '✓';
  color: var(--yeti-orange);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.tier-card__cta {
  padding: var(--sp-5) var(--sp-6) var(--sp-6);
}

.ls-pricing__note {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--yeti-slate-mid);
  line-height: 1.6;
}


/* ── Section: FAQ (Local Search) ── */
.ls-faq {
  background: var(--yeti-ice);
  padding: var(--sp-9) 0;
}


/* ============================================================
   LOCAL SEARCH PAGE — RESPONSIVE
   ============================================================ */

@media (max-width: 1199px) {
  .hero--local .hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-6);
  }

  .ls-gbp__layout {
    grid-template-columns: 1fr;
  }

  .ls-gbp__img-wrap {
    height: 260px;
  }

  .ranking-bar-row {
    grid-template-columns: 200px 1fr 40px;
  }

  .ls-pricing__grid {
    grid-template-columns: 1fr 1fr;
  }

  .ls-pricing__grid .tier-card:last-child {
    grid-column: span 2;
    max-width: 460px;
    margin: 0 auto;
    width: 100%;
  }

  .before-after__layout {
    grid-template-columns: 1fr 48px 1fr;
  }
}

@media (max-width: 899px) {
  .hero--local .hero__grid {
    grid-template-columns: 1fr;
  }

  .map-pack-mockup {
    display: none;
  }

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

  .ls-services__grid {
    grid-template-columns: 1fr;
  }

  .service-panel__checklist {
    grid-template-columns: 1fr;
  }

  .ls-ranking__cards {
    grid-template-columns: 1fr 1fr;
  }

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

  .ls-reviews__card {
    grid-template-columns: 1fr;
    padding: var(--sp-6);
  }

  .gbp-checklist__items {
    grid-template-columns: 1fr;
  }

  .before-after__layout {
    grid-template-columns: 1fr;
    gap: var(--sp-5);
  }

  .before-after__arrow {
    padding-top: 0;
    height: auto;
    justify-content: center;
  }

  .before-card,
  .after-card {
    transform: translateY(30px);
    opacity: 0;
  }

  .before-card.is-visible,
  .after-card.is-visible {
    transform: translateY(0);
    opacity: 1;
  }

  .ls-pricing__grid {
    grid-template-columns: 1fr;
  }

  .ls-pricing__grid .tier-card:last-child {
    grid-column: auto;
    max-width: none;
  }

  .ranking-bar-row {
    grid-template-columns: 1fr 1fr 40px;
  }
}

@media (max-width: 599px) {
  .ls-numbers__grid {
    grid-template-columns: 1fr;
  }

  .ls-ranking__cards {
    grid-template-columns: 1fr;
  }

  .ls-reviews__stats {
    grid-template-columns: 1fr;
  }

  .ranking-bar-row {
    grid-template-columns: 1fr 80px 36px;
    gap: var(--sp-3);
  }

  .ranking-bar-row__label {
    font-size: 0.82rem;
  }

  .ls-reviews__card {
    padding: var(--sp-5) var(--sp-4);
  }
}


/* ============================================================
   CONTACT PAGE — PAGE-SPECIFIC STYLES
   ============================================================ */

/* ── Visually hidden utility ── */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ── Contact Hero ── */
.contact-hero {
  min-height: 380px;
  background:
    linear-gradient(135deg, #1E1E1E 0%, #243040 100%),
    url('images/hero Background Texture Contact page.webp') center/cover no-repeat;
  background-blend-mode: overlay;
}

.contact-hero .hero__grid {
  padding-top: var(--sp-8);
  padding-bottom: var(--sp-7);
}


/* ============================================================
   SECTION 2: FORM + SIDEBAR
   ============================================================ */
.contact-main {
  background: var(--yeti-ice);
  padding: var(--sp-8) 0 var(--sp-9);
}

.contact-main__grid {
  display: grid;
  grid-template-columns: 60fr 40fr;
  gap: var(--sp-7);
  align-items: start;
}

/* ── Form card ── */
.form-card {
  background: var(--yeti-white);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
  padding: 40px;
}

.form-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--yeti-charcoal);
  line-height: 1.2;
  margin-bottom: var(--sp-2);
}

.form-card__subtitle {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--yeti-slate-mid);
  margin-bottom: var(--sp-6);
}

/* ── Form structure ── */
.audit-form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.form-row--2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.form-group--fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

.form-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--yeti-charcoal);
  line-height: 1.4;
}

.form-required {
  color: var(--yeti-orange);
  margin-left: 2px;
}

.form-input {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--yeti-charcoal);
  background: var(--yeti-white);
  border: 1.5px solid var(--yeti-slate-light);
  border-radius: var(--r-md);
  padding: 11px 14px;
  width: 100%;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-input::placeholder {
  color: var(--yeti-slate-light);
}

.form-input:focus {
  border-color: var(--yeti-orange);
  box-shadow: 0 0 0 3px rgba(232,98,42,0.12);
}

.form-input--error {
  border-color: #D94040;
  box-shadow: 0 0 0 3px rgba(217,64,64,0.1);
}

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

.form-hint {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--yeti-slate-mid);
  line-height: 1.5;
}

.form-error {
  font-family: var(--font-mono);
  font-size: 11px;
  color: #D94040;
  line-height: 1.5;
  min-height: 16px;
  display: block;
}

.form-reminder {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--yeti-orange);
  line-height: 1.5;
  min-height: 16px;
  margin-top: var(--sp-2);
}

/* ── Pill checkboxes ── */
.pill-checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-top: var(--sp-2);
}

.pill-checkbox {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.pill-checkbox input[type="checkbox"] {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

.pill-checkbox__label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--yeti-slate);
  background: var(--yeti-ice);
  border: 1.5px solid var(--yeti-slate-light);
  border-radius: var(--r-pill);
  padding: 8px 16px;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  user-select: none;
}

.pill-checkbox input[type="checkbox"]:checked + .pill-checkbox__label {
  background: var(--yeti-orange);
  border-color: var(--yeti-orange);
  color: var(--yeti-white);
}

.pill-checkbox:hover .pill-checkbox__label,
.pill-checkbox input[type="checkbox"]:focus-visible + .pill-checkbox__label {
  border-color: var(--yeti-orange);
  background: var(--yeti-orange-light);
  color: var(--yeti-charcoal);
}

.pill-checkbox input[type="checkbox"]:checked:hover + .pill-checkbox__label,
.pill-checkbox input[type="checkbox"]:checked:focus-visible + .pill-checkbox__label {
  background: var(--yeti-orange-dark);
  border-color: var(--yeti-orange-dark);
  color: var(--yeti-white);
}

.pill-checkbox input[type="checkbox"]:focus-visible + .pill-checkbox__label {
  outline: 2px solid var(--yeti-orange);
  outline-offset: 2px;
}

/* ── Consent checkbox ── */
.form-group--consent {
  background: var(--yeti-ice);
  border-radius: var(--r-md);
  padding: var(--sp-4);
}

.form-consent-label {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  cursor: pointer;
}

.form-consent-check {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  accent-color: var(--yeti-orange);
  cursor: pointer;
}

.form-consent-text {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--yeti-slate-mid);
  line-height: 1.6;
}

/* ── Submit button ── */
.btn--submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  width: 100%;
  background: var(--yeti-orange);
  color: var(--yeti-white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: 16px var(--sp-6);
  border-radius: var(--r-md);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-orange);
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn--submit:hover,
.btn--submit:focus-visible {
  background: var(--yeti-orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 12px 40px rgba(232,98,42,0.35);
}

.btn--submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.btn-submit__spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: var(--yeti-white);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  flex-shrink: 0;
}

.btn--submit.is-loading .btn-submit__text {
  opacity: 0.8;
}

.btn--submit.is-loading .btn-submit__spinner {
  display: block;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.form-micro-reassurance {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--yeti-slate-mid);
  line-height: 1.6;
  letter-spacing: 0.04em;
}

/* ── Thank-you state ── */
.form-thankyou {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-5);
  padding: var(--sp-7) var(--sp-5);
}

.form-thankyou[aria-hidden="false"] {
  display: flex;
}

.form-thankyou__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--yeti-orange);
  color: var(--yeti-white);
  font-size: 2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  flex-shrink: 0;
}

.form-thankyou__icon.pop-in {
  transform: scale(1);
}

.form-thankyou__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--yeti-charcoal);
  line-height: 1.25;
}

.form-thankyou__body {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--yeti-slate-mid);
  line-height: 1.75;
  max-width: 440px;
}

.form-thankyou__note {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--yeti-slate-mid);
  line-height: 1.6;
}

.form-thankyou__note a {
  color: var(--yeti-orange);
  text-decoration: underline;
}


/* ============================================================
   SIDEBAR CARDS
   ============================================================ */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.sidebar-card {
  border-radius: var(--r-xl);
  padding: 28px;
}

.sidebar-card--white {
  background: var(--yeti-white);
  box-shadow: 0 2px 8px rgba(30,30,30,0.06);
  border: 1px solid rgba(200,210,220,0.4);
}

.sidebar-card--dark {
  background: var(--yeti-charcoal);
  position: relative;
  overflow: hidden;
}

.sidebar-card--dark::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -40px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(232,98,42,0.15) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.sidebar-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--yeti-charcoal);
  line-height: 1.25;
  margin-bottom: var(--sp-4);
}

.sidebar-card__title--white {
  color: var(--yeti-white);
}

.sidebar-card__note {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--yeti-slate-mid);
  font-style: italic;
  line-height: 1.6;
  margin-top: var(--sp-4);
  padding-top: var(--sp-4);
  border-top: 1px solid rgba(200,210,220,0.35);
}

/* ── Audit scope list ── */
.audit-scope-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.audit-scope-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-left: var(--sp-5);
  position: relative;
}

.audit-scope-item__header {
  display: flex;
  align-items: baseline;
  gap: var(--sp-2);
}

.audit-scope-item__check {
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--yeti-orange);
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.audit-scope-item__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--yeti-charcoal);
  line-height: 1.3;
}

.audit-scope-item__desc {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--yeti-slate-mid);
  line-height: 1.5;
}

/* ── Next steps (what happens after submit) ── */
.next-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  position: relative;
  z-index: 1;
}

.next-step {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
}

.next-step__num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--yeti-orange);
  color: var(--yeti-white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(232,98,42,0.2);
}

.next-step__content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 3px;
}

.next-step__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--yeti-white);
  line-height: 1.3;
}

.next-step__desc {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--yeti-slate-light);
  line-height: 1.6;
}

/* ── Trust signal list ── */
.trust-signal-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.trust-signal-item {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--yeti-slate);
  line-height: 1.5;
}


/* ============================================================
   SECTION 3: HESITATION
   ============================================================ */
.contact-hesitation {
  background:
    linear-gradient(to bottom, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.92) 100%),
    url('images/Been burned before.webp') center/cover no-repeat;
  background-color: var(--yeti-white);
  padding: var(--sp-9) 0;
}

.hesitation-copy {
  max-width: 720px;
  margin: 0 auto var(--sp-7);
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  text-align: center;
}

.commitment-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}

.commitment-card {
  background: var(--yeti-white);
  border: 1px solid rgba(200,210,220,0.5);
  border-left: 4px solid var(--yeti-orange);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  box-shadow: 0 2px 8px rgba(30,30,30,0.06);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.commitment-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.commitment-card__icon {
  font-size: 1.75rem;
  line-height: 1;
}

.commitment-card__text {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--yeti-slate-mid);
  line-height: 1.75;
}


/* ============================================================
   SECTION 4: DIRECT CONTACT
   ============================================================ */
.contact-direct {
  background:
    linear-gradient(to bottom, rgba(240,244,248,0.88) 0%, rgba(240,244,248,0.88) 100%),
    url('images/Contact Info Section Background.webp') center/cover no-repeat;
  background-color: var(--yeti-ice);
  padding: var(--sp-9) 0;
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
  margin-bottom: var(--sp-6);
}

.contact-info-card {
  background: var(--yeti-white);
  border-radius: var(--r-xl);
  padding: var(--sp-6) var(--sp-7);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-info-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.contact-info-card__icon {
  font-size: 2.25rem;
  line-height: 1;
}

.contact-info-card__label {
  margin-bottom: 0;
}

.contact-info-card__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--yeti-charcoal);
  line-height: 1.2;
  text-decoration: none;
  transition: color 0.2s ease;
}

a.contact-info-card__value:hover,
a.contact-info-card__value:focus-visible {
  color: var(--yeti-orange);
}

.contact-info-card__value--muted {
  color: var(--yeti-slate-mid);
  font-size: 1rem;
}

.contact-info-card__desc {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--yeti-slate-mid);
  line-height: 1.65;
}

.contact-location-note {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--yeti-slate-mid);
  line-height: 1.6;
  letter-spacing: 0.04em;
}


/* ============================================================
   SECTION 5: FAQ (CONTACT)
   ============================================================ */
.contact-faq {
  background: var(--yeti-white);
  padding: var(--sp-9) 0;
}

.contact-faq__list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(200,210,220,0.5);
  border-radius: var(--r-xl);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid rgba(200,210,220,0.5);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  background: transparent;
  border: none;
  padding: var(--sp-5) var(--sp-6);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--yeti-charcoal);
  text-align: left;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
  line-height: 1.4;
}

.faq-btn:hover,
.faq-btn:focus-visible {
  background: var(--yeti-ice);
  color: var(--yeti-orange);
  outline: none;
}

.faq-btn[aria-expanded="true"] {
  color: var(--yeti-orange);
  background: var(--yeti-orange-light);
}

.faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  font-size: 0.9rem;
  transition: transform 0.25s ease, background-color 0.15s ease;
  position: relative;
}

.faq-icon::before {
  content: '+';
  display: block;
  line-height: 1;
  font-weight: 600;
}

.faq-btn[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  background: var(--yeti-orange);
  border-color: var(--yeti-orange);
  color: var(--yeti-white);
}

.faq-answer {
  padding: 0 var(--sp-6) var(--sp-5);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--yeti-slate-mid);
  line-height: 1.75;
}

.faq-answer p { margin: 0; }

.faq-answer a {
  color: var(--yeti-orange);
  text-decoration: underline;
}

.faq-answer[hidden] {
  display: none;
}


/* ============================================================
   SECTION 6: BOTTOM CTA
   ============================================================ */
.contact-bottom-cta {
  background: var(--yeti-charcoal);
  padding: var(--sp-9) 0;
  position: relative;
  overflow: hidden;
}

.contact-bottom-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-5);
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.contact-bottom-cta__h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.65rem, 3vw, 2.4rem);
  color: var(--yeti-white);
  line-height: 1.2;
}

.contact-bottom-cta__body {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--yeti-slate-light);
  line-height: 1.75;
  max-width: 520px;
}


/* ============================================================
   CONTACT PAGE — RESPONSIVE BREAKPOINTS
   ============================================================ */

/* 900–1199px */
@media (max-width: 1199px) {
  .contact-main__grid {
    gap: var(--sp-6);
  }

  .form-card {
    padding: 32px;
  }
}

/* 600–899px */
@media (max-width: 899px) {
  .contact-main__grid {
    grid-template-columns: 1fr;
  }

  .form-row--2col {
    grid-template-columns: 1fr;
  }

  .commitment-cards {
    grid-template-columns: 1fr;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

  .contact-faq__list {
    max-width: 100%;
  }
}

/* < 600px */
@media (max-width: 599px) {
  .form-card {
    padding: var(--sp-5) var(--sp-4);
  }

  .pill-checkbox-group {
    gap: var(--sp-2);
  }

  .pill-checkbox__label {
    font-size: 0.82rem;
    padding: 7px 13px;
  }

  .sidebar-card {
    padding: var(--sp-5) var(--sp-4);
  }

  .contact-info-card {
    padding: var(--sp-5);
  }

  .faq-btn {
    padding: var(--sp-4) var(--sp-5);
    font-size: 0.9rem;
  }

  .faq-answer {
    padding: 0 var(--sp-5) var(--sp-4);
  }
}


/* ============================================================
   RESPONSIVE QA — ALL PAGES — <768px
   ============================================================ */
@media (max-width: 767px) {

  /* ── Container padding ── */
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* ── Section vertical padding ── */
  .services, .why, .process, .results,
  .shift, .platform, .cta-banner,
  .aeo-explainer, .aeo-urgency, .aeo-platforms,
  .aeo-deliverables, .aeo-process, .aeo-faq,
  .ls-numbers, .ls-panels, .ls-ranking, .ls-gbp,
  .ls-before-after, .ls-reviews, .ls-pricing, .ls-faq,
  .about-origin, .about-timeline, .about-methodology,
  .about-process, .about-opinion, .about-fit, .about-cta,
  .contact-hesitation, .contact-direct, .contact-faq,
  .contact-bottom-cta {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  /* ── All buttons full-width on small screens ── */
  .btn--lg {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  /* ── Generic grid collapse ── */
  [class*="__grid"],
  [class*="-grid"],
  [class*="__cards"],
  [class*="__steps"],
  [class*="__panels"] {
    grid-template-columns: 1fr !important;
  }

  /* ══════════════════════════════════════
     INDEX.HTML
  ══════════════════════════════════════ */

  /* Hero: single col, copy first */
  .hero__grid {
    grid-template-columns: 1fr !important;
    text-align: center;
  }
  .hero__copy {
    align-items: center;
    order: 1;
  }
  .hero__visual {
    order: 2;
    display: none; /* hide decorative visual on mobile */
  }
  .hero__ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .hero__ctas .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .hero__sub {
    max-width: 100%;
  }

  /* Platform pills: wrap to multi-row */
  .platform__inner {
    flex-wrap: wrap;
    gap: var(--sp-3);
    justify-content: center;
  }

  /* Shift / AI stat cards: 2-col grid */
  .shift__stat-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Services: 1 col */
  .services__grid {
    grid-template-columns: 1fr;
  }
  .service-card:last-child {
    grid-column: auto;
    max-width: 100%;
  }

  /* Process: 1 col, hide connector lines */
  .process__steps {
    grid-template-columns: 1fr;
    gap: var(--sp-5);
  }
  .process__connector { display: none; }

  /* Why: 1 col */
  .why__grid {
    grid-template-columns: 1fr;
  }

  /* Results: 1 col */
  .results__grid {
    grid-template-columns: 1fr;
  }
  .results__grid .results__card:nth-child(3) {
    grid-column: auto;
    max-width: 100%;
  }

  /* Stats bar: 2×2 */
  .stats-bar__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-4);
    justify-items: center;
  }
  .stat-divider { display: none; }
  .stat-item {
    flex-direction: column;
    text-align: center;
    min-width: unset;
  }

  /* CTA banner */
  .cta-banner__btns {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .cta-banner__btns .btn {
    width: 100%;
    justify-content: center;
  }

  /* ══════════════════════════════════════
     AEO-GEO.HTML
  ══════════════════════════════════════ */

  /* AEO/GEO explainer 2 cards → 1 col */
  .aeo-cards {
    grid-template-columns: 1fr;
  }

  /* Platform cards 4 → 1 col */
  .platform-cards,
  .aeo-platform-grid {
    grid-template-columns: 1fr;
  }

  /* AEO vs GEO vs SEO comparison table — horizontal scroll */
  .comparison-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .comparison-table {
    min-width: 520px;
  }

  /* 90-day timeline → vertical */
  .aeo-timeline,
  .process-timeline {
    flex-direction: column;
    gap: var(--sp-5);
  }
  .aeo-timeline__connector,
  .timeline-connector {
    display: none;
  }

  /* Deliverables grid → 1 col */
  .deliverables-grid,
  .aeo-deliverables__grid {
    grid-template-columns: 1fr;
  }

  /* ══════════════════════════════════════
     LOCAL-SEARCH.HTML
  ══════════════════════════════════════ */

  /* Hero: map mockup stacks below copy */
  .ls-hero__grid,
  .ls-hero .hero__grid {
    grid-template-columns: 1fr !important;
  }
  .ls-hero__mockup,
  .map-pack-mockup {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }

  /* Numbers 6 stats → 2×3 */
  .ls-numbers__grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Service panels → 1 col */
  .ls-panels__grid {
    grid-template-columns: 1fr;
  }

  /* Ranking cards → 1 col */
  .ls-ranking__cards {
    grid-template-columns: 1fr;
  }

  /* Before/After → 1 col, red first */
  .ls-before-after__grid {
    grid-template-columns: 1fr;
  }
  .before-card { order: 1; }
  .after-card  { order: 2; }

  /* Review stats → 1 col */
  .ls-reviews__stats {
    grid-template-columns: 1fr;
  }

  /* Pricing tiers → 1 col */
  .ls-pricing__grid {
    grid-template-columns: 1fr;
  }
  .ls-pricing__grid .tier-card:last-child {
    grid-column: auto;
    max-width: 100%;
  }

  /* Ranking bar rows: compress label */
  .ranking-bar-row {
    grid-template-columns: 1fr 70px 32px;
    gap: var(--sp-2);
  }
  .ranking-bar-row__label {
    font-size: 0.8rem;
  }

  /* ══════════════════════════════════════
     ABOUT.HTML
  ══════════════════════════════════════ */

  /* About chips wrap */
  .about-hero__chips {
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--sp-2);
  }

  /* Origin: full width image */
  .about-origin__img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: var(--r-lg);
  }

  /* Timeline → vertical stacked */
  .aeo-process .timeline {
    flex-direction: column;
    gap: 0;
  }
  .timeline__track { display: none; }
  .timeline__nodes {
    flex-direction: column;
    gap: 0;
  }
  .timeline__line {
    display: none;
  }

  /* Methodology 4 cards → 1 col */
  .methodology-grid {
    grid-template-columns: 1fr;
  }

  /* About steps → 1 col */
  .about-steps {
    flex-direction: column;
    gap: var(--sp-5);
  }
  .about-steps__connector { display: none; }

  /* Opinion cards → 1 col */
  .opinion-grid,
  .about-opinion__grid {
    grid-template-columns: 1fr;
  }

  /* Good/Not-a-fit → 1 col */
  .fit-grid,
  .about-fit__grid {
    grid-template-columns: 1fr;
  }

  /* ══════════════════════════════════════
     CONTACT.HTML
  ══════════════════════════════════════ */

  /* Form + sidebar: form first, sidebar below */
  .contact-main__grid {
    grid-template-columns: 1fr;
    gap: var(--sp-5);
  }
  .contact-form-col { order: 1; }
  .contact-sidebar  { order: 2; }

  /* Form rows: 2-col → 1-col */
  .form-row--2col {
    grid-template-columns: 1fr;
  }

  /* Form card: tighter padding */
  .form-card {
    padding: 20px;
  }

  /* Submit button: full-width */
  .btn--submit {
    width: 100%;
  }

  /* Pill checkboxes: wrap naturally (2-per-row) */
  .pill-checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-2);
  }
  .pill-checkbox__label {
    justify-content: center;
    text-align: center;
    font-size: 0.82rem;
    padding: 8px 10px;
  }

  /* Commitment cards → 1 col */
  .commitment-cards {
    grid-template-columns: 1fr;
  }

  /* Contact info cards → 1 col */
  .contact-cards {
    grid-template-columns: 1fr;
  }

  /* Bottom CTA button full-width */
  .contact-bottom-cta .btn {
    width: 100%;
    justify-content: center;
  }

  /* Sidebar cards: tighter padding */
  .sidebar-card {
    padding: 20px;
  }

  /* Hero badges hide on mobile */
  .hero__badge { display: none; }
}

/* ============================================================
   RESPONSIVE QA — <480px (Small phones)
   ============================================================ */
@media (max-width: 479px) {

  /* Stats bar: single column on very small */
  .stats-bar__inner {
    grid-template-columns: 1fr;
  }

  /* Shift stat grid: 1 col */
  .shift__stat-grid {
    grid-template-columns: 1fr;
  }

  /* Numbers grid: 1 col */
  .ls-numbers__grid {
    grid-template-columns: 1fr;
  }

  /* Pill checkboxes: single column */
  .pill-checkbox-group {
    grid-template-columns: 1fr;
  }

  /* About chips: 1 col */
  .about-hero__chips {
    flex-direction: column;
    align-items: center;
  }
}

/* ============================================================
   RESPONSIVE QA — 768px–1023px (Tablet)
   ============================================================ */
@media (min-width: 768px) and (max-width: 1023px) {

  /* Container padding */
  .container {
    padding-left: 32px;
    padding-right: 32px;
  }

  /* Section padding: 64px */
  .services, .why, .process, .results,
  .shift, .platform, .cta-banner,
  .aeo-explainer, .aeo-urgency, .aeo-platforms,
  .aeo-deliverables, .aeo-process, .aeo-faq,
  .ls-numbers, .ls-panels, .ls-ranking, .ls-gbp,
  .ls-before-after, .ls-reviews, .ls-pricing, .ls-faq,
  .about-origin, .about-timeline, .about-methodology,
  .about-process, .about-opinion, .about-fit, .about-cta,
  .contact-hesitation, .contact-direct, .contact-faq,
  .contact-bottom-cta {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  /* Services: 2 col */
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-card:last-child {
    grid-column: auto;
    max-width: 100%;
  }

  /* Why: 2×2 */
  .why__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Process: 2×2 */
  .process__steps {
    grid-template-columns: repeat(2, 1fr);
  }

  /* AEO platform cards: 2×2 */
  .platform-cards,
  .aeo-platform-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Methodology: 2×2 */
  .methodology-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Contact form + sidebar: stack */
  .contact-main__grid {
    grid-template-columns: 1fr;
  }
  .contact-form-col { order: 1; }
  .contact-sidebar  { order: 2; }

  /* Contact 2-col form rows: keep 2-col on tablet */
  .form-row--2col {
    grid-template-columns: 1fr 1fr;
  }

  /* Ranking cards: 2-col tablet */
  .ls-ranking__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ============================================================
   POLICY PAGES (Privacy Policy & Terms of Use)
   ============================================================ */

/* ── Policy Hero ── */
.policy-hero {
  min-height: 280px;
}

.policy-hero .hero__grid {
  padding-top: var(--sp-8);
  padding-bottom: var(--sp-7);
}

.policy-hero__meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--yeti-slate-mid);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-wrap: wrap;
}

.policy-hero__sep {
  opacity: 0.5;
}

/* ── Policy Body ── */
.policy-body {
  padding: var(--sp-9) 0;
  background-color: var(--yeti-white);
}

.policy-content {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--sp-8);
}

/* ── Policy Sections ── */
.policy-section {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  padding-bottom: var(--sp-7);
  border-bottom: 1px solid rgba(61,75,92,0.12);
}

.policy-section:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.policy-section__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  color: var(--yeti-charcoal);
  line-height: 1.3;
}

.policy-subsection__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--yeti-slate);
  letter-spacing: 0.01em;
  margin-top: var(--sp-2);
}

/* ── Policy Body Text ── */
.policy-text {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--yeti-slate);
  line-height: 1.75;
}

.policy-text + .policy-text {
  margin-top: calc(var(--sp-4) * -0.5);
}

/* ── Policy Lists ── */
.policy-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.policy-list li {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--yeti-slate);
  line-height: 1.7;
  padding-left: var(--sp-5);
  position: relative;
}

.policy-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--yeti-orange);
  flex-shrink: 0;
}

/* ── Policy Contact Block ── */
.policy-contact-block {
  background: var(--yeti-ice);
  border-left: 3px solid var(--yeti-orange);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: var(--sp-5) var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.policy-contact-item {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--yeti-slate);
  line-height: 1.5;
}

.policy-contact-item--name {
  font-size: 1rem;
  color: var(--yeti-charcoal);
}

/* ── Policy Links ── */
.policy-link {
  color: var(--yeti-orange);
  text-decoration: underline;
  text-decoration-color: rgba(232,98,42,0.4);
  text-underline-offset: 2px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.policy-link:hover,
.policy-link:focus-visible {
  color: var(--yeti-orange-dark);
  text-decoration-color: var(--yeti-orange-dark);
}

/* ============================================================
   FOOTER LEGAL LINKS
   ============================================================ */

.footer__legal-links {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-wrap: wrap;
}

.footer__legal-link {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--yeti-slate-mid);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__legal-link:hover,
.footer__legal-link:focus-visible {
  color: var(--yeti-orange);
}

.footer__legal-link--active {
  color: var(--yeti-slate-light);
}

.footer__legal-sep {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--yeti-slate-mid);
  opacity: 0.5;
}

/* ── Policy responsive ── */
@media (max-width: 600px) {
  .policy-body {
    padding: var(--sp-7) 0;
  }

  .policy-content {
    gap: var(--sp-6);
  }

  .policy-section {
    gap: var(--sp-3);
    padding-bottom: var(--sp-6);
  }

  .policy-contact-block {
    padding: var(--sp-4) var(--sp-5);
  }

  .policy-hero__meta {
    flex-direction: column;
    gap: var(--sp-2);
    align-items: flex-start;
  }

  .policy-hero__sep {
    display: none;
  }

  .footer__legal-links {
    justify-content: center;
  }
}
