/* ===================================================================
   Ironside Agency - Clean / Bold / Professional
   White + light grey, charcoal text, single construction-orange accent
   =================================================================== */

:root {
  --white: #ffffff;
  --grey: #23272e;        /* dark grey section background */
  --grey-2: #1b1e24;      /* deeper dark grey section background */
  --surface-dark: #2b3038;/* elevated panel on dark sections */
  --grey-deep: #ecebe7;   /* light, used inside white cards */
  --on-dark: #f2f1ee;     /* primary text on dark sections */
  --on-dark-muted: #a8aeb7;/* secondary text on dark sections */
  --hairline-dark: rgba(255,255,255,.13);
  --ink: #15171a;
  --ink-soft: #2b2e33;
  --muted: #5e636b;
  --hairline: #e5e3df;
  --orange: #ee5a19;
  --orange-dark: #d44a0f;
  --orange-tint: #fdeee6;
  --black: #111316;
  --surface-light: #f4f5f7;

  --container: 1200px;
  --pad: clamp(20px, 5vw, 56px);

  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;

  --t: 0.25s cubic-bezier(.2,.6,.2,1);

  --f-display: "Manrope", "Inter", system-ui, sans-serif;
  --f-body: "Manrope", "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--f-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--f-display);
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -0.018em;
  font-weight: 800;
}

.section-title {
  font-size: clamp(1.9rem, 4.3vw, 3.05rem);
  font-weight: 800;
  line-height: 1.08;
}

.section-kicker {
  font-family: var(--f-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.1rem;
}

.kicker-light { color: rgba(255,255,255,.85); }

.hl { color: var(--orange); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.01em;
  padding: 0.95rem 1.6rem;
  border-radius: var(--r-sm);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--t), background var(--t), color var(--t), border-color var(--t);
  white-space: nowrap;
}
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }
.btn-onorange { background: #fff; color: var(--ink); }
.btn-onorange:hover { background: var(--black); color: #fff; transform: translateY(-2px); }
.btn-sm { padding: 0.62rem 1.1rem; font-size: 0.92rem; }
.btn-lg { padding: 1.1rem 2.1rem; font-size: 1.1rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--hairline);
  transform: translateY(0);
  transition: transform 0.3s ease;
}
body { padding-top: 76px; }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 76px;
}
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.01em;
  color: var(--ink);
  text-decoration: none;
}
.wordmark-mark {
  width: 16px; height: 16px;
  background: var(--orange);
  border-radius: 3px;
  transform: rotate(45deg);
  flex: none;
}
.wordmark-thin {
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  margin-left: .15rem;
}
.nav { display: flex; gap: 2rem; margin-left: auto; }
.nav a {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 0.98rem;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color var(--t);
}
.nav a:hover { color: var(--orange); }
.header-cta { margin-left: .25rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--ink);
  transition: var(--t);
}
.mobile-nav { display: none; }

/* ---------- Section rhythm ---------- */
section { padding-block: clamp(52px, 7vw, 104px); }
.bg-grey { background: var(--grey); }

/* ---------- 1. HERO ---------- */
.hero {
  padding-top: clamp(40px, 5vw, 70px);
  padding-bottom: clamp(46px, 5.8vw, 86px);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.62fr 0.84fr;
  gap: clamp(2rem, 3.5vw, 3.5rem);
  align-items: center;
}
.eyebrow {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.eyebrow::before {
  content: "";
  flex: none;
  width: 22px; height: 3px;
  background: var(--orange);
}
.hero-title {
  font-size: clamp(2.35rem, 4.1vw, 3.4rem);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  max-width: 28ch;
}
.hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--muted);
  max-width: 42ch;
  margin-bottom: 2.2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.4rem; }
.hero-note {
  font-size: 0.92rem;
  color: var(--muted);
  font-weight: 500;
}
.hero-media {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 40px 80px -32px rgba(21,23,26,.45);
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3.4;
}
.hero-chip {
  position: absolute;
  left: 1.25rem; bottom: 1.25rem;
  background: var(--orange);
  color: #fff;
  padding: 0.9rem 1.15rem;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  gap: .8rem;
  max-width: 17rem;
  box-shadow: 0 14px 30px -10px rgba(238,90,25,.6);
}
.hero-chip-num {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 1.9rem;
  line-height: 1;
}
.hero-chip-label { font-size: 0.82rem; line-height: 1.25; font-weight: 500; }

/* ---------- Hero phone mockup ---------- */
.hero-phones-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 3rem;
}
.hero-phones {
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
}
.hphone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.hphone-before { transform: rotate(-5deg); }
.hphone-after  { transform: rotate(3deg); z-index: 2; }

/* iPhone body */
.hphone-frame {
  width: 162px;
  background: #0d0d0f;
  border-radius: 38px;
  padding: 9px;
  position: relative;
  box-shadow:
    inset 0 0 0 2px rgba(255,255,255,.08),
    0 18px 30px -16px rgba(0,0,0,.45);
}
/* Soft ground shadow that stays behind the badge */
.hphone-frame .hphone-shadow,
.hphone-shadow {
  position: absolute;
  left: 12%; right: 12%;
  bottom: -16px;
  height: 22px;
  background: rgba(0,0,0,.22);
  filter: blur(11px);
  border-radius: 50%;
  z-index: -1;
}
/* Volume buttons */
.hphone-frame::before {
  content: "";
  position: absolute;
  left: -2px; top: 64px;
  width: 2px; height: 20px;
  background: #2a2a2c;
  border-radius: 2px 0 0 2px;
  box-shadow: 0 28px 0 #2a2a2c;
}
/* Power button */
.hphone-frame::after {
  content: "";
  position: absolute;
  right: -2px; top: 78px;
  width: 2px; height: 38px;
  background: #2a2a2c;
  border-radius: 0 2px 2px 0;
}

/* Notch: speaker pill + camera dot */
.hphone-notch {
  width: 78px; height: 18px;
  background: #0d0d0f;
  border-radius: 0 0 14px 14px;
  margin: 0 auto;
  position: absolute;
  top: 9px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.hphone-notch-speaker {
  width: 26px; height: 4px;
  border-radius: 100px;
  background: #1f1f22;
}
.hphone-notch-cam {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #1a1a2e;
  box-shadow: inset 0 0 0 1.5px rgba(90,110,160,.3);
}

/* Screen */
.hphone-screen {
  border-radius: 30px;
  padding: 0.4rem 0.45rem;
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  overflow: hidden;
  position: relative;
}
/* Glossy diagonal highlight */
.hphone-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, rgba(255,255,255,.16) 0%, rgba(255,255,255,.05) 32%, rgba(255,255,255,0) 55%);
  pointer-events: none;
  z-index: 5;
}
.hphone-screen-before {
  background: linear-gradient(168deg, #8e95a0 0%, #6b7280 100%);
  height: 300px;
}
.hphone-screen-after {
  background: linear-gradient(165deg, #f0883a 0%, #ee5a19 52%, #c2440f 100%);
  height: 300px;
}

/* iOS status bar */
.hp-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0.35rem 0.2rem;
  color: rgba(255,255,255,.9);
}
.hp-status-time {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 0.6rem;
  letter-spacing: -0.01em;
}
.hp-status-right {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.hp-carrier-text {
  font-family: var(--f-display);
  font-size: 0.5rem;
  font-weight: 700;
  color: rgba(255,255,255,.9);
}

/* Lock screen time (before phone) */
.hp-locktime {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.15rem 0 0.35rem;
}
.hp-lock-day {
  font-family: var(--f-display);
  font-size: 0.5rem;
  font-weight: 400;
  color: rgba(255,255,255,.7);
  letter-spacing: 0.01em;
  margin-bottom: 0.1rem;
}
.hp-lock-clock {
  font-family: var(--f-display);
  font-size: 2rem;
  font-weight: 200;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.03em;
}

/* Notification cards */
.hp-card {
  border-radius: 12px;
  padding: 0.38rem 0.48rem;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.hp-card-muted {
  background: rgba(255,255,255,.2);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.hp-card-active {
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.hp-card-header {
  display: flex;
  align-items: center;
  gap: 0.28rem;
  margin-bottom: 0.1rem;
}
.hp-appicon {
  width: 14px; height: 14px;
  border-radius: 3.5px;
  flex: none;
}
.hp-appicon-phone-grey  { background: #636366; }
.hp-appicon-cal-grey    { background: linear-gradient(135deg, #48484a, #636366); }
.hp-appicon-messages    { background: linear-gradient(135deg, #30d158, #25a244); }
.hp-appicon-phone-green { background: linear-gradient(135deg, #34c759, #28a03a); }
.hp-appicon-gcal        { background: linear-gradient(150deg, #4285f4 0%, #ea4335 60%, #fbbc05 100%); }
.hp-appname {
  flex: 1;
  font-family: var(--f-display);
  font-size: 0.48rem;
  font-weight: 600;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hp-appname-dark { color: rgba(0,0,0,.38); }
.hp-cardtime {
  font-size: 0.46rem;
  color: rgba(255,255,255,.45);
  flex: none;
}
.hp-cardtime-dark { color: rgba(0,0,0,.3); }
.hp-card-title {
  display: block;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 0.6rem;
  color: rgba(255,255,255,.88);
  line-height: 1.3;
}
.hp-dark { color: #1c1c1e; }
.hp-card-sub {
  display: block;
  font-size: 0.55rem;
  color: rgba(255,255,255,.6);
  line-height: 1.3;
}
.hp-dark-sub { color: #48484a; }

/* Calendar entries inside card */
.hp-cal-widget { gap: 0.25rem; }
.hp-cal-text {
  font-size: 0.52rem;
  color: rgba(255,255,255,.55);
}
.hp-cal-entry {
  background: var(--orange);
  color: #fff;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 0.5rem;
  padding: 0.24rem 0.4rem;
  border-radius: 5px;
  line-height: 1.25;
}

/* Badge labels */
.hphone-badge {
  position: relative;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 0.6rem;
  letter-spacing: 0.02em;
  padding: 0.38rem 0.85rem;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 4px 12px -4px rgba(0,0,0,.3);
}
.hphone-badge-bad  { background: #1c1c1e; color: #fff; }
.hphone-badge-good { background: var(--orange); color: #fff; }

/* ---------- Hero lead-capture quiz ---------- */
.hero-quiz {
  margin-top: 2.75rem;
  max-width: 31rem;
  background: #eceef0;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--r-lg);
  padding: clamp(1.4rem, 2.5vw, 1.9rem);
  box-shadow: 0 34px 70px -42px rgba(21,23,26,.5);
}
.quiz-q {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.4;
  margin-bottom: 1.2rem;
  color: var(--ink);
}
.quiz-choices { display: grid; gap: .7rem; }
.quiz-choice {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1rem;
  text-align: left;
  padding: .95rem 1.1rem;
  border: 1px solid var(--hairline);
  border-radius: var(--r-sm);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  transition: border-color var(--t), background var(--t), transform var(--t), box-shadow var(--t);
}
.quiz-choice:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -16px rgba(21,23,26,.4);
}
.quiz-x { color: var(--orange); font-weight: 800; font-size: 1.05rem; }
.quiz-tick { color: var(--orange); font-weight: 800; font-size: 1.05rem; }

.quiz-back {
  background: none;
  border: none;
  padding: 0;
  margin-bottom: .9rem;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: .85rem;
  color: var(--ink-soft);
  cursor: pointer;
  transition: color var(--t);
}
.quiz-back:hover { color: var(--orange); }
.quiz-intro { color: var(--ink-soft); font-size: .98rem; line-height: 1.5; margin-bottom: 1.3rem; }
.quiz-intro strong { color: var(--ink); font-weight: 700; }
.quiz-field { display: flex; flex-direction: column; margin-bottom: .9rem; }
.quiz-field label {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: .82rem;
  margin-bottom: .4rem;
  color: var(--ink);
}
.quiz-field input {
  font-family: var(--f-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--r-sm);
  padding: .8rem .9rem;
  width: 100%;
  transition: border-color var(--t), box-shadow var(--t);
}
.quiz-field input::placeholder { color: #9aa0a8; }
.quiz-field input:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-tint);
}
.quiz-submit { margin-top: .5rem; }
.quiz-note { text-align: center; color: var(--ink-soft); font-size: .82rem; margin-top: .85rem; }
.quiz-success {
  font-family: var(--f-display);
  font-weight: 600;
  color: var(--orange-dark);
  background: var(--orange-tint);
  border-radius: var(--r-sm);
  padding: 1.2rem 1.3rem;
  text-align: center;
  line-height: 1.45;
}

/* ---------- 2. STATS ---------- */
.stats { background: #f3f1ee; padding-block: clamp(30px, 3.8vw, 54px); }
.stats .section-kicker { text-align: center; margin-bottom: 1.6rem; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.stat {
  background: #ffffff;
  padding: clamp(1.8rem, 3vw, 2.8rem) 1.5rem;
  text-align: center;
}
.stat-num {
  display: block;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
  margin-bottom: .7rem;
}
.stat:nth-child(odd) .stat-num { color: var(--orange); }
.stat-label {
  font-size: 0.95rem;
  color: var(--muted);
  display: block;
  max-width: 22ch;
  margin-inline: auto;
}

/* ---------- 3. PROBLEM ---------- */
.problem { background: #f3f1ee; }
.problem-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.problem-shot {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(21,23,26,.4);
}
.problem-shot img { width: 100%; aspect-ratio: 4/3.2; object-fit: cover; display: block; }
.problem-photo-wrap {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(21,23,26,.4);
}
.problem-photo {
  width: 100%;
  aspect-ratio: 4/3.2;
  object-fit: cover;
  display: block;
}
.problem-photo-banner {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #d93025;
  color: #fff;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  text-align: center;
  padding: 0.85rem 1.5rem;
  letter-spacing: -0.01em;
}
.problem-caption {
  margin-top: 1.1rem;
  background: var(--orange-tint);
  border-left: 3px solid var(--orange);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: 1rem 1.15rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--ink-soft);
}
.problem-caption strong { color: var(--ink); font-weight: 700; }
.problem-copy .section-title { margin-bottom: 1.4rem; max-width: 20ch; }
.problem-lead {
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.5;
  max-width: 44ch;
  margin-bottom: clamp(1.8rem, 3vw, 2.4rem);
}
.problem-stats { list-style: none; display: grid; }
.problem-stats li {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 1.7rem);
  padding: clamp(1rem, 2vw, 1.4rem) 0;
  border-top: 1px solid var(--hairline);
}
.problem-stats li:last-child { border-bottom: 1px solid var(--hairline); }
.pstat-num {
  flex: none;
  min-width: 9rem;
  white-space: nowrap;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(2.3rem, 4vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--orange);
}
.pstat-text {
  color: var(--ink-soft);
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.45;
}
.problem-cta { margin-top: clamp(1.8rem, 3vw, 2.4rem); }

/* ---------- Google SERP mockup ---------- */
.gsr-figure { margin: 0; }
.gsr-wrap {
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid #dadce0;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  font-family: Arial, sans-serif;
}

/* Chrome bar */
.gsr-chrome {
  background: #f1f3f4;
  border-bottom: 1px solid #dadce0;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.gsr-chrome-dots { display: flex; gap: 4px; }
.gsr-chrome-dots span {
  width: 8px; height: 8px; border-radius: 50%;
  background: #dadce0;
}
.gsr-chrome-bar {
  flex: 1;
  background: #fff;
  border: 1px solid #dadce0;
  border-radius: 100px;
  padding: 3px 8px;
  font-size: 0.58rem;
  color: #5f6368;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.gsr-lock { width: 10px; height: 12px; flex: none; }

/* Two-column body */
.gsr-body {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  min-height: 360px;
}

/* Organic side */
.gsr-organic {
  padding: 10px 10px 10px 12px;
  border-right: 1px solid #ebebeb;
}
.gsr-query-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.gsr-glogo { width: 48px; height: 16px; flex: none; }
.gsr-search-bar {
  flex: 1;
  border: 1px solid #dadce0;
  border-radius: 24px;
  padding: 4px 10px;
  font-size: 0.62rem;
  color: #202124;
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 1px 3px rgba(0,0,0,.08);
}
.gsr-search-icon { width: 12px; height: 12px; flex: none; }
.gsr-results-count { font-size: 0.5rem; color: #70757a; margin-bottom: 4px; }
.gsr-ad-label {
  display: inline-block;
  font-size: 0.48rem;
  color: #202124;
  border: 1px solid #70757a;
  border-radius: 3px;
  padding: 0 3px;
  margin-bottom: 4px;
  line-height: 1.4;
}

/* Individual result */
.gsr-result {
  display: flex;
  gap: 6px;
  padding: 5px 0;
  border-bottom: 1px solid #f1f3f4;
}
.gsr-result:last-of-type { border-bottom: none; }
.gsr-favicon {
  width: 16px; height: 16px;
  flex: none;
  margin-top: 2px;
  position: relative;
}
.gsr-favicon img { width: 16px; height: 16px; border-radius: 2px; }
.gsr-favicon-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px; height: 16px;
  border-radius: 2px;
  background: #4285f4;
  color: #fff;
  font-size: 0.5rem;
  font-weight: 700;
}
.gsr-result-body { flex: 1; min-width: 0; }
.gsr-source { font-size: 0.5rem; color: #202124; margin-bottom: 1px; }
.gsr-title {
  font-size: 0.62rem;
  color: #1a0dab;
  line-height: 1.3;
  margin: 0 0 2px;
  font-weight: 400;
}
.gsr-snippet {
  font-size: 0.52rem;
  color: #4d5156;
  line-height: 1.4;
  margin: 0;
}
.gsr-snippet strong { font-weight: 600; color: #202124; }

/* Not ranking warning */
.gsr-not-found {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #fce8e6;
  border: 1px solid #f28b82;
  border-radius: 6px;
  padding: 5px 8px;
  margin-top: 7px;
  font-size: 0.52rem;
  color: #c5221f;
  font-weight: 600;
}
.gsr-not-found svg { width: 13px; height: 13px; flex: none; }

/* Maps side */
.gsr-maps {
  padding: 10px 10px 10px 10px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.gsr-maps-header {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.56rem;
  font-weight: 700;
  color: #202124;
  margin-bottom: 6px;
}
.gsr-maps-header svg { width: 12px; height: 12px; flex: none; }

/* Fake map */
.gsr-map-img {
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 7px;
  height: 90px;
  position: relative;
}
.gsr-map-bg {
  position: absolute; inset: 0;
  background: #e8f0e9;
}
.gsr-map-road {
  position: absolute;
  background: #fff;
}
.gsr-road-h { height: 4px; }
.gsr-road-v { width: 4px; }
.gsr-map-pin {
  position: absolute;
  transform: translate(-50%, -100%);
  width: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.gsr-map-pin svg { width: 18px; height: 24px; }
.gsr-map-pin span {
  position: absolute;
  top: 4px;
  font-size: 0.42rem;
  font-weight: 700;
  color: #fff;
}

/* 3-pack listings */
.gsr-place {
  display: flex;
  gap: 7px;
  padding: 5px 0;
  align-items: flex-start;
}
.gsr-place-divider { height: 1px; background: #f1f3f4; }
.gsr-place-num {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #4285f4;
  color: #fff;
  font-size: 0.48rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  margin-top: 1px;
}
.gsr-place-body { flex: 1; min-width: 0; }
.gsr-place-name {
  font-size: 0.58rem;
  color: #1a0dab;
  font-weight: 600;
  line-height: 1.3;
}
.gsr-place-stars { display: flex; align-items: center; gap: 3px; margin: 1px 0; }
.gsr-stars { color: #fbbc04; font-size: 0.5rem; letter-spacing: -0.5px; }
.gsr-rating { font-size: 0.5rem; font-weight: 700; color: #202124; }
.gsr-reviews { font-size: 0.48rem; color: #70757a; }
.gsr-place-meta { font-size: 0.48rem; color: #70757a; }
.gsr-not-found-maps { margin-top: 6px; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-family: var(--f-display);
  font-weight: 600;
  color: var(--orange);
  text-decoration: none;
  margin-top: .6rem;
  transition: gap var(--t);
}
.text-link:hover { gap: .85rem; }
.text-link .arrow { transition: transform var(--t); }

/* ---------- 4. HOW IT WORKS (combined services + process) ---------- */
.hiw { background: #ffffff; }
.hiw-head { max-width: 52rem; margin-bottom: clamp(2rem, 4vw, 3rem); }
.hiw-title {
  font-size: clamp(1.9rem, 4.3vw, 3.05rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-top: .5rem;
}

.hiw-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hiw-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.75rem;
  align-items: start;
  padding: clamp(1.75rem, 3.5vw, 2.5rem) 0;
  border-bottom: 1px solid var(--hairline);
  position: relative;
  transition: transform .25s cubic-bezier(.25,.46,.45,.94);
  transform-origin: left center;
}
.hiw-step:first-child { border-top: 1px solid var(--hairline); }
.hiw-step:hover,
.hiw-step.in:hover { transform: scale(1.015); }

.hiw-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 1.1rem;
  display: grid;
  place-items: center;
  flex: none;
  margin-top: .15rem;
  transition: background var(--t), box-shadow var(--t);
}
.hiw-step:hover .hiw-num {
  background: var(--orange-dark);
  box-shadow: 0 6px 18px -6px rgba(238,90,25,.5);
}

.hiw-body h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: .6rem;
  color: var(--ink);
}
.hiw-body p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 60ch;
  margin-bottom: 1rem;
}

.hiw-deliverable {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: var(--orange-tint);
  color: var(--orange-dark);
  border: 1px solid rgba(238,90,25,.18);
  border-radius: 6px;
  padding: .4rem .75rem;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .01em;
}
.hiw-doc-icon {
  width: 13px;
  height: 13px;
  flex: none;
  color: var(--orange);
}

/* ---------- 6. RESULTS / TESTIMONIALS (carousel) ---------- */
.results { background: #ffffff; }
.results-head { max-width: 46rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.results-head-center { margin-inline: auto; text-align: center; }
.results-head-center .results-sub { margin-inline: auto; }
.results-sub {
  margin-top: 1rem;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.4vw, 1.15rem);
  line-height: 1.5;
  max-width: 48ch;
}

/* Testimonial grid: 3 columns, all cards visible */
.t-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.testimonial {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  padding: 1.5rem 1.4rem;
  display: flex;
  flex-direction: column;
}

/* Before / after pill graphic */
.ba-pills {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .4rem;
  margin-bottom: 1.1rem;
}
.ba-pill {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: .72rem;
  line-height: 1.15;
  padding: .4rem .65rem;
  border-radius: 100px;
  white-space: nowrap;
}
.ba-before { background: var(--surface-light); color: var(--muted); }
.ba-after { background: var(--orange); color: #fff; }
.ba-sep { flex: none; color: var(--muted); font-size: .9rem; }

.t-rating { color: var(--orange); font-size: .95rem; letter-spacing: 1px; margin-bottom: .9rem; }
.testimonial blockquote {
  font-size: .96rem;
  line-height: 1.5;
  color: var(--ink-soft);
  margin-bottom: 1.4rem;
  font-weight: 500;
}
.testimonial figcaption {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: .75rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--hairline);
}
.t-avatar {
  flex: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--orange-tint);
  color: var(--orange-dark);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .03em;
}
.t-id { display: flex; flex-direction: column; }
.t-name {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: .98rem;
}
.t-meta { color: var(--muted); font-size: 0.85rem; }

@media (max-width: 900px) {
  .t-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .t-grid { grid-template-columns: 1fr; }
}

/* ---------- 7. ABOUT ---------- */
.about { background: #ffffff; }
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.about-copy p { color: var(--muted); margin-bottom: 1.2rem; max-width: 52ch; }
.about-copy .section-kicker { color: var(--orange); }
.about-copy .section-title { margin-bottom: 1.6rem; max-width: 18ch; }
.about-sign {
  font-family: var(--f-display);
  font-weight: 700;
  color: var(--ink) !important;
  margin-top: .4rem;
  padding-left: 1.1rem;
  position: relative;
}
.about-sign::before {
  content: ""; position: absolute; left: 0; top: 50%;
  width: 22px; height: 3px; background: var(--orange); transform: translateY(-50%);
}
.about-media {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(21,23,26,.45);
}
.about-media img { width: 100%; max-height: 460px; object-fit: cover; object-position: top; }

/* ---------- 4b. ENQUIRIES STAT BAND (full-bleed) ---------- */
.enquiries {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: clamp(340px, 42vw, 600px);
  background: #15171a;
}
.enquiries-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
}
.enquiries::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(15,17,20,.82) 0%, rgba(15,17,20,.45) 42%, rgba(15,17,20,0) 70%);
}
.enquiries-overlay { position: relative; z-index: 2; width: 100%; }
.enquiries-num {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(4rem, 11vw, 8.5rem);
  line-height: .9;
  letter-spacing: -.02em;
  color: #fff;
}
.enquiries-label {
  margin-top: .65rem;
  max-width: 15ch;
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  font-weight: 500;
  color: rgba(255,255,255,.9);
  line-height: 1.35;
}
.enquiries-chips {
  position: absolute;
  z-index: 3;
  right: clamp(20px, 6vw, 96px);
  top: 50%;
  transform: translateY(-50%);
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .7rem;
}
.enquiries-chips li {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .6rem .95rem;
  border-radius: 999px;
  background: rgba(20,22,26,.6);
  border: 1px solid rgba(255,255,255,.15);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: .9rem;
  font-weight: 500;
  white-space: nowrap;
}
.chip-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--orange); flex: none; }
@media (max-width: 760px) {
  .enquiries-chips { display: none; }
  .enquiries::before { background: linear-gradient(90deg, rgba(15,17,20,.85) 0%, rgba(15,17,20,.55) 60%, rgba(15,17,20,.3) 100%); }
}

/* ---------- 7b. SPEED BAND ---------- */
.speed { background: var(--orange-tint); padding-block: clamp(30px, 3.8vw, 50px); }
.speed-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.6rem, 4vw, 3.5rem);
}
.speed-lead { max-width: 22ch; }
.speed .section-kicker { color: var(--orange-dark); }
.speed-title {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 3.1vw, 2.4rem);
  line-height: 1.1;
  color: var(--ink);
  margin-top: .5rem;
}
.speed-stats {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3.5vw, 3rem);
}
.speed-stats li {
  display: flex;
  flex-direction: column;
  background: var(--ink);
  border-radius: 18px;
  padding: 1.1rem 1.5rem 1.25rem;
  box-shadow: 0 10px 24px -14px rgba(21,23,26,.5);
}
.speed-num {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  line-height: 1;
  color: var(--orange);
}
.speed-label {
  margin-top: .55rem;
  font-size: .95rem;
  font-weight: 500;
  color: rgba(255,255,255,.82);
  max-width: 14ch;
}

/* ---------- 8. PRICING ---------- */
.pricing { background: #ffffff; padding-bottom: clamp(24px, 3vw, 40px); }
.pricing-head {
  max-width: 52ch;
  margin-inline: auto;
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.pricing-intro { color: var(--muted); margin-top: 1rem; font-size: 1.05rem; max-width: 46ch; margin-inline: auto; }
.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
  align-items: start;
}
.tier {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: clamp(1.8rem, 3vw, 2.4rem);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow .25s ease, transform .25s ease;
}
.tier.in:hover {
  box-shadow: 0 20px 48px -12px rgba(21,23,26,.15);
  transform: translateY(-3px);
}
.tier-featured {
  border: 2px solid var(--orange);
  box-shadow: 0 32px 64px -32px rgba(238,90,25,.35);
}
.tier-featured.in:hover {
  box-shadow: 0 24px 56px -12px rgba(238,90,25,.4);
}
.tier-flag {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: .38rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
}
.tier-name {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .75rem;
}
.tier-price-row {
  display: flex;
  align-items: baseline;
  gap: .5rem;
  margin-bottom: .9rem;
}
.tier-price {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 4.5vw, 3.2rem);
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
}
.tier-cadence {
  font-family: var(--f-display);
  font-size: .9rem;
  color: var(--muted);
  font-weight: 500;
}
.tier-plus { color: var(--orange); }
.tier-for {
  color: var(--muted);
  font-size: .97rem;
  line-height: 1.5;
  margin-bottom: 0;
}
.tier-rule {
  border: none;
  border-top: 1px solid var(--hairline);
  margin: 1.4rem 0;
}
.tier-features {
  list-style: none;
  margin-bottom: 1.75rem;
  display: grid;
  gap: .8rem;
  flex: 1 1 auto;
}
.tier-features li {
  position: relative;
  padding-left: 1.65rem;
  color: var(--ink-soft);
  font-size: .97rem;
  line-height: 1.4;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: .4rem;
}
.tier-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--orange);
  font-weight: 700;
  font-size: .95rem;
  line-height: 1.4;
}
.feat-value {
  font-family: var(--f-display);
  font-size: .7rem;
  font-weight: 700;
  color: var(--orange-dark);
  background: var(--orange-tint);
  border: 1px solid rgba(238,90,25,.15);
  border-radius: 4px;
  padding: .15rem .4rem;
  white-space: nowrap;
  flex: none;
}
.tier .btn { margin-top: auto; }
.tier-total {
  margin-top: 1rem;
  text-align: center;
  background: var(--orange-tint);
  border-radius: 8px;
  padding: .65rem 1rem;
  font-family: var(--f-display);
  font-size: .82rem;
  color: var(--muted);
}
.tier-total strong { color: var(--orange-dark); }

/* Payment terms tab */
.pricing-payment {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: clamp(2rem, 3.5vw, 3rem);
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  padding: 1.25rem 1.5rem;
  max-width: 560px;
  margin-inline: auto;
}
.pricing-payment p { font-size: .97rem; color: var(--muted); line-height: 1.55; margin: 0; }
.pricing-payment p strong { color: var(--ink); }
.payment-icon {
  width: 28px;
  height: 28px;
  flex: none;
  color: var(--orange);
  margin-top: .1rem;
}

/* ---------- 9. GUARANTEE ---------- */
.guarantee { background: #f3f1ee; padding-block: clamp(34px, 4.2vw, 60px); }
.guarantee-block {
  background: var(--surface-dark);
  color: #fff;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r-lg);
  padding: clamp(2.4rem, 5vw, 4rem) clamp(1.6rem, 5vw, 4rem);
  text-align: center;
  max-width: 920px;
  margin-inline: auto;
  box-shadow: 0 40px 80px -40px rgba(0,0,0,.6);
}
.guarantee-block .section-kicker { color: var(--orange); text-align: center; }
.guarantee-title {
  color: #fff;
  font-size: clamp(2.1rem, 4.6vw, 3.3rem);
  font-weight: 800;
  margin-bottom: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 0.25em;
  line-height: 1.15;
}
.guarantee-logo-wrap {
  display: block;
  position: relative;
  height: 1em;
  width: 3.7em;
  overflow: hidden;
  flex-shrink: 0;
  margin-top: 0.12em;
}
.guarantee-logo {
  position: absolute;
  height: 7.7em;
  width: auto;
  max-width: none;
  top: 50%;
  transform: translateY(-50%);
  left: -0.77em;
  filter: brightness(0) invert(1);
}
.guarantee-text {
  color: rgba(255,255,255,.78);
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  margin-bottom: 2.1rem;
  max-width: 58ch;
  margin-inline: auto;
}

/* ---------- 10. FAQ ---------- */
.faq { background: #ffffff; padding-top: clamp(24px, 3vw, 40px); }
/* guarantee stays #f3f1ee, close stays #ffffff — alternation holds */
.faq-head { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.faq-head-center { text-align: center; margin-inline: auto; }
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 clamp(2rem, 4vw, 4rem);
  border-top: 1px solid var(--hairline);
}
.faq-item { border-bottom: 1px solid var(--hairline); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.2rem;
  padding: 1.6rem 2.5rem 1.6rem 0;
  position: relative;
  transition: color var(--t);
  line-height: 1.35;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--orange);
  transition: transform var(--t);
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item summary:hover { color: var(--orange); }
.faq-item p {
  color: var(--muted);
  padding-bottom: 1.5rem;
  max-width: 50ch;
  font-size: 1rem;
}

/* ---------- 11. CLOSE / FORM ---------- */
.close { background: #ffffff; }
.close-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.close { padding-bottom: clamp(64px, 8vw, 112px); }
.close-title {
  font-size: clamp(1.95rem, 4.1vw, 2.95rem);
  font-weight: 800;
  max-width: 18ch;
  margin-bottom: 1.4rem;
}
.close-sub {
  color: var(--muted);
  font-size: 1.12rem;
  max-width: 46ch;
  margin-bottom: 1.6rem;
}
.close-points { list-style: none; display: grid; gap: .75rem; }
.close-points li {
  position: relative;
  padding-left: 1.9rem;
  color: var(--ink-soft);
  font-size: 1.02rem;
}
.close-points li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  color: var(--orange);
  font-weight: 700;
  font-size: .95rem;
  line-height: 1.5;
}

.lead-form {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  box-shadow: 0 40px 80px -44px rgba(21,23,26,.5);
}
.form-title { font-size: 1.35rem; font-weight: 800; margin-bottom: 1.4rem; }
.field { display: flex; flex-direction: column; margin-bottom: 1rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field label {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--ink);
  margin-bottom: .4rem;
}
.field .optional { color: var(--muted); font-weight: 400; }
.field input, .field select, .field textarea {
  font-family: var(--f-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--r-sm);
  padding: .8rem .9rem;
  width: 100%;
  transition: border-color var(--t), box-shadow var(--t);
}
.field textarea { resize: vertical; min-height: 84px; }
.field input::placeholder, .field textarea::placeholder { color: #9aa0a8; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-tint);
}
.field input:invalid:not(:placeholder-shown) { border-color: #d8553f; }
.lead-form .btn { margin-top: .6rem; }
.form-note { text-align: center; color: var(--muted); font-size: 0.85rem; margin-top: .9rem; }
.form-or {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin: 1.1rem 0 .6rem;
}
.form-or-line {
  flex: 1;
  height: 1px;
  background: var(--hairline);
}
.form-or-text {
  font-family: var(--f-display);
  font-size: .8rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.form-success {
  margin-top: 1rem;
  background: var(--orange-tint);
  color: var(--orange-dark);
  border-radius: var(--r-sm);
  padding: .9rem 1rem;
  font-weight: 600;
  text-align: center;
}

/* ---------- 10b. WEBSITE SHOWCASE ---------- */
.projects { background: #f3f1ee; overflow: hidden; }
.projects-head {
  margin-bottom: clamp(2.4rem, 4vw, 3.6rem);
}
.projects-head-copy { max-width: 44rem; }
.projects-head .section-title { max-width: 20ch; }
.projects-intro { color: var(--muted); margin-top: 1.2rem; font-size: clamp(1.05rem, 1.5vw, 1.2rem); max-width: 42rem; }
.projects-foot { margin-top: clamp(1.8rem, 3vw, 2.6rem); }
.projects-nav { display: flex; gap: .7rem; }
.proj-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1px solid var(--hairline);
  background: var(--white);
  color: var(--ink);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background var(--t), color var(--t), border-color var(--t), opacity var(--t);
  box-shadow: 0 10px 24px -16px rgba(21,23,26,.4);
}
.proj-btn:hover { background: var(--orange); color: #fff; border-color: var(--orange); }
.proj-btn:disabled { opacity: .35; cursor: default; }
.proj-btn:disabled:hover { background: var(--white); color: var(--ink); border-color: var(--hairline); }

/* Full-bleed carousel: first card aligns with the container, the rest run off the right edge */
.projects-carousel {
  padding-left: calc((100% - min(var(--container), 100%)) / 2 + var(--pad));
}
.projects-viewport {
  overflow: hidden;
  padding: 16px 0 22px;
  margin: -16px 0 -22px;
}
.projects-track {
  display: flex;
  gap: clamp(1.5rem, 2.8vw, 2.8rem);
  transition: transform .7s cubic-bezier(.22,.61,.21,1);
  touch-action: pan-y;
}
.projects-track.dragging { transition: none; cursor: grab; }

.project-card {
  flex: 0 0 clamp(260px, 44%, 480px);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: transform .55s cubic-bezier(.22,.61,.21,1);
}
.project-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-radius: var(--r-lg);
  background: var(--grey-deep);
  box-shadow: 0 30px 60px -38px rgba(21,23,26,.5);
  transition: box-shadow .55s cubic-bezier(.22,.61,.21,1);
}
.project-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform .9s cubic-bezier(.22,.61,.21,1);
}
.project-card:hover, .project-card:focus-visible { transform: translateY(-8px); outline: none; }
.project-card:hover .project-thumb,
.project-card:focus-visible .project-thumb { box-shadow: 0 48px 84px -36px rgba(21,23,26,.6); }
.project-card:hover .project-thumb img,
.project-card:focus-visible .project-thumb img { transform: scale(1.045); }

.project-info { display: flex; flex-direction: column; gap: .75rem; padding: 1.4rem .35rem 0; }
.project-industry {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  padding-bottom: .65rem;
  border-bottom: 2px solid var(--hairline);
}
.project-desc { color: var(--ink-soft); font-size: clamp(1rem, 1.3vw, 1.12rem); max-width: 44ch; }

.projects-dots { display: none; justify-content: flex-start; gap: .55rem; margin-top: 1.8rem; }
.projects-dots button {
  width: 9px; height: 9px;
  padding: 0; border: none; border-radius: 50%;
  background: #d8d4cd;
  cursor: pointer;
  transition: background var(--t), transform var(--t);
}
.projects-dots button:hover { background: var(--muted); }
.projects-dots button.active { background: var(--orange); transform: scale(1.35); }

/* ---------- 12. FOOTER ---------- */
.site-footer { background: var(--black); color: #fff; padding-top: clamp(46px, 5.8vw, 74px); padding-bottom: 2.5rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.wordmark-footer { color: #fff; }
.wordmark-footer .wordmark-thin { color: rgba(255,255,255,.55); }
.wordmark {
  overflow: hidden;
  height: 76px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-left: -24px;
}
.wordmark-logo {
  display: block;
  height: 240px;
  width: auto;
  flex-shrink: 0;
}
.footer-tag { color: rgba(255,255,255,.6); margin-top: 1rem; max-width: 32ch; font-size: 0.98rem; }
.footer-col h4 {
  font-family: var(--f-display);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 1.2rem;
  font-weight: 600;
}
.footer-col a, .footer-col span {
  display: block;
  color: rgba(255,255,255,.82);
  text-decoration: none;
  margin-bottom: .7rem;
  font-size: 0.98rem;
  transition: color var(--t);
}
.footer-col a:hover { color: var(--orange); }
.footer-btn { margin-top: .6rem; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  color: rgba(255,255,255,.5);
  font-size: 0.88rem;
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s cubic-bezier(.2,.6,.2,1), transform .7s cubic-bezier(.2,.6,.2,1);
}
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 980px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .header-inner { height: 66px; }

  .mobile-nav {
    display: flex;
    flex-direction: column;
    gap: .25rem;
    padding: 0 var(--pad);
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s ease;
    border-top: 1px solid transparent;
  }
  .mobile-nav.open {
    max-height: 420px;
    padding: 1rem var(--pad) 1.5rem;
    border-top: 1px solid var(--hairline);
  }
  .mobile-nav a {
    font-family: var(--f-display);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--ink);
    text-decoration: none;
    padding: .7rem 0;
  }
  .mobile-nav .btn { margin-top: .6rem; }
  .nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero-grid { grid-template-columns: 1fr; gap: 2.25rem; }
  .hero-media { order: 0; }
  .hero-media img { aspect-ratio: 16/11; }
  .hero-sub { max-width: 40ch; }

  .problem-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .problem-media { order: -1; }

  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-media { order: -1; max-width: 420px; }

  .steps { grid-template-columns: 1fr; gap: 1.25rem; }

  .close-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .close-form-wrap { order: 2; }

  .tiers { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .tier-featured { order: -1; }
  .faq-grid { grid-template-columns: 1fr; }

  .projects-head { flex-direction: column; align-items: flex-start; gap: 1.6rem; }
  .projects-head-copy { max-width: none; }
  .project-card { flex: 0 0 78%; }
}

@media (max-width: 520px) {
  body { font-size: 16px; }
  .stats-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions .btn, .results-cta .btn { flex: 1 1 auto; }
  .service { grid-template-columns: 1fr; gap: .5rem; }
  .service-index { padding-top: 0; }
  .footer-bottom { flex-direction: column; gap: .4rem; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .carousel { gap: 0; }
  .carousel-btn { display: none; }

  .project-card { flex: 0 0 88%; }
  .projects-nav { display: none; }
  .projects-foot { display: none; }
  .projects-dots { display: flex; }

  /* ---- 1. Hero: phones between CTA and quiz ---- */
  .hero-copy {
    display: flex;
    flex-direction: column;
  }
  .eyebrow       { order: 1; }
  .hero-title    { order: 2; }
  .hero-sub      { order: 3; }
  .hero-actions  { order: 4; margin-bottom: 0; }
  /* phones slot between CTA (4) and quiz (6) */
  .hero-phones-wrap { order: 5; padding-bottom: 0; margin-top: 0; }
  .hero-quiz     { order: 6; margin-top: 1.5rem; }
  .hero-phones { gap: 0.4rem; transform: scale(0.72); transform-origin: center top; margin-bottom: -4rem; }

  /* ---- 2. Eyebrow — smaller on mobile ---- */
  .eyebrow { font-size: 0.68rem; letter-spacing: 0.1em; margin-bottom: 0.8rem; }

  /* ---- 3. Problem: media moves below CTA ---- */
  /* On desktop/tablet, .problem-media has order:-1 (set at 860px breakpoint).
     Here we reset it so media flows naturally after the copy (which contains the CTA). */
  .problem-media { order: 2; }
  .problem-copy  { order: 1; }

  /* Google SERP mockup — collapse to single column */
  .gsr-body { grid-template-columns: 1fr; }
  .gsr-organic { border-right: none; border-bottom: 1px solid #ebebeb; }
  .gsr-maps { padding-top: 8px; }
  .gsr-map-img { height: 70px; }

  /* ---- 4. Testimonials: hide last 2 on mobile ---- */
  .testimonial:nth-child(5),
  .testimonial:nth-child(6) { display: none; }

  /* Speed stats — stack vertically */
  .speed-inner { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
  .speed-lead { max-width: none; }
  .speed-stats { gap: 0.9rem; }
  .speed-stats li { padding: 0.8rem 1.1rem 0.9rem; }
  .speed-num { font-size: 2rem; }
  .speed-label { font-size: .85rem; }

  /* ---- 5. Speed: 2 across, 3rd centred ---- */
  .speed-stats { justify-content: center; }
  .speed-stats li:last-child { margin-inline: auto; }

  /* HIW steps — tighten left gutter */
  .hiw-step { grid-template-columns: 44px 1fr; gap: 1rem; }

  /* FAQ — tighten question font */
  .faq-item summary { font-size: 1.05rem; padding: 1.2rem 2rem 1.2rem 0; }

  /* Testimonials — tighten card padding */
  .testimonial { padding: 1.25rem; }

  /* ---- 6. Pricing: reset order so Starter → Growth → Premium ---- */
  .tier-featured { order: 0; }

  /* Pricing flag readable */
  .tier-flag { font-size: 0.65rem; padding: 0.3rem 0.75rem; }

  /* Close/contact section */
  .close-points { margin-bottom: 1.5rem; }

  /* Form — full-width button already handled */
  .lead-form { padding: clamp(1.2rem, 4vw, 1.75rem); }

  /* Footer */
  .footer-nav-group { margin-bottom: 1.25rem; }

  /* Guarantee banner */
  .guarantee-inner { flex-direction: column; gap: 1.5rem; text-align: center; }
  .guarantee-seal { margin-inline: auto; }
}
