/* =========================================================
   GriTech Digital — Mockup-matched stylesheet
   Brand colors sampled from gritech_logo.png
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  /* Brand red — sampled from logo PNG */
  --red: #CC2021;
  --red-dark: #A91B1C;
  --red-deep: #861416;
  --red-soft: #FFEEEE;   /* light pink bg for icon circles */
  --red-tint: #FFE2E3;   /* slightly stronger pink for hover */
  --red-warm: #FFF5F2;   /* warm peachy off-white for hero */
  --red-cream: #FBF1EC;  /* warm cream for blending */
  /* Charcoal — slightly warmer than pure neutral so it harmonizes with red */
  --ink: #1A2123;
  --ink-2: #2A3236;
  --ink-3: #485258;
  --muted: #5B636C;
  --muted-2: #8A8F96;
  --bg: #FFFFFF;
  --bg-alt: #F7F4F1;     /* warm light gray — leans cream to match hero */
  --bg-cool: #F4F6F8;
  --border: #ECE9E5;     /* warm border to match warm bg */
  --border-2: #DDD9D3;
  --shadow-sm: 0 1px 2px rgba(26,33,35,.04), 0 1px 3px rgba(26,33,35,.06);
  --shadow-md: 0 6px 16px rgba(26,33,35,.07), 0 2px 4px rgba(26,33,35,.04);
  --shadow-lg: 0 24px 48px rgba(26,33,35,.10), 0 6px 12px rgba(26,33,35,.05);
  --shadow-red: 0 8px 20px rgba(204,32,33,.28);
  --radius: 18px;
  --radius-lg: 24px;
  --container: 1180px;
  --header-h: 84px;
  --cta-bar-h: 76px;
  --font: 'Inter', ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 8px); }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  padding-bottom: calc(var(--cta-bar-h) + env(safe-area-inset-bottom, 0px));
}
img, svg { max-width: 100%; display: block; }
a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 {
  color: var(--ink); margin: 0 0 .5em; line-height: 1.15;
  letter-spacing: -0.02em; font-weight: 800;
}
h1 {
  font-size: clamp(2.1rem, 5.4vw + .3rem, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.028em;
  font-weight: 800;
}
h2 { font-size: clamp(1.75rem, 2.6vw + .8rem, 2.5rem); letter-spacing: -0.022em; }
h3 { font-size: 1.15rem; font-weight: 700; }
p  { margin: 0 0 1em; color: var(--ink-2); }
ul { padding: 0; margin: 0; list-style: none; }
.text-red { color: var(--red); }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }

/* Accessible visually-hidden utility (WCAG-friendly version of the old
   `left: -9999px` trick — keeps content readable by screen readers without
   moving the focus point off-screen). */
.visually-hidden {
  position: absolute !important;
  width: 1px !important; height: 1px !important;
  padding: 0 !important; margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: #fff; padding: 10px 14px; border-radius: 8px;
  font-weight: 700;
  z-index: 1000;
}
.skip-link:focus { left: 12px; top: 12px; outline: 3px solid #fff; outline-offset: 2px; }

/* Global focus ring — ensures every interactive element has a visible focus
   indicator that meets WCAG 2.4.7 (Focus Visible). */
a:focus-visible,
button:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid rgba(204, 32, 33, 0.55);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 999px;
  font-weight: 700; font-size: .98rem;
  padding: 13px 22px; min-height: 48px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .12s ease, background .15s ease, box-shadow .2s ease, color .15s ease, border-color .15s ease;
  text-decoration: none; white-space: nowrap; letter-spacing: -.005em;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid rgba(204,32,33,.35); outline-offset: 2px; }
.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 6px 14px rgba(204,32,33,.24), 0 1px 2px rgba(204,32,33,.20);
}
.btn-primary:hover {
  background: var(--red-dark);
  color: #fff;
  box-shadow: var(--shadow-red);
}
.btn-ghost {
  background: #fff;
  color: var(--ink);
  border-color: var(--border-2);
  box-shadow: 0 1px 2px rgba(26,33,35,.04);
}
.btn-ghost:hover { background: #FFFBFA; color: var(--ink); border-color: var(--red); }
.btn-lg { padding: 15px 24px; font-size: 1rem; min-height: 52px; }
.btn-block { display: flex; width: 100%; }

/* Pill-inside-button red icon (used for "Call or Text Now") */
.btn-icon-red {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 999px;
  background: var(--red-soft); color: var(--red);
  margin-right: 2px;
}

/* ---------- Icon-only mobile buttons ---------- */
.icon-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: #fff; color: var(--ink);
  border: 1px solid var(--border); border-radius: 12px; cursor: pointer;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.icon-btn:hover { background: var(--bg-alt); border-color: var(--border-2); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.94);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
}
.brand { display: inline-flex; align-items: center; }
.brand-logo {
  height: 56px; width: 182px;
  object-fit: cover; object-position: center;
}
@media (max-width: 380px) { .brand-logo { height: 46px; width: 150px; } }

.primary-nav { display: none; }
.primary-nav ul { display: flex; gap: 28px; align-items: center; }
.primary-nav a {
  color: var(--ink); padding: 8px 0; font-weight: 600; font-size: 1rem;
  position: relative; transition: color .15s ease;
}
.primary-nav a:hover { color: var(--red); text-decoration: none; }
.primary-nav a.is-active { color: var(--ink); }
.primary-nav a.is-active::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -4px;
  height: 3px; border-radius: 2px;
  background: var(--red);
}

.header-actions { display: inline-flex; align-items: center; gap: 8px; }

/* Header CTA — white bg, red border, two-line text with red phone bubble */
.header-cta {
  display: none;
  align-items: center; gap: 12px;
  padding: 8px 18px 8px 8px;
  background: #fff;
  border: 2px solid var(--red);
  border-radius: 12px;
  color: var(--ink);
  font-weight: 600;
  transition: background .15s ease, transform .12s ease;
}
.header-cta:hover { text-decoration: none; background: var(--red-soft); transform: translateY(-1px); }
.header-cta-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 8px;
  background: var(--red); color: #fff;
}
.header-cta-text { display: flex; flex-direction: column; line-height: 1.15; }
.header-cta-line1 { font-size: .8rem; color: var(--muted); font-weight: 600; }
.header-cta-line2 { font-size: 1.05rem; color: var(--red); font-weight: 800; letter-spacing: -.01em; }

.mobile-only { display: inline-flex; }

.mobile-nav {
  border-top: 1px solid var(--border); background: #fff;
  padding: 8px 20px 20px;
}
.mobile-nav[hidden] { display: none; }
.mobile-nav ul { display: flex; flex-direction: column; }
.mobile-nav a {
  display: block; color: var(--ink); font-weight: 600;
  padding: 14px 4px; border-bottom: 1px solid var(--border);
}
.mobile-nav a:hover { color: var(--red); text-decoration: none; }
.mobile-nav .btn { margin-top: 16px; }

/* =========================================================
   HERO — warm cream gradient that blends into the next section
   ========================================================= */
.hero {
  background:
    radial-gradient(1100px 600px at -10% 100%, #FFE5DE 0%, transparent 60%),
    radial-gradient(900px 500px at 90% -10%, #FFEDEA 0%, transparent 60%),
    linear-gradient(180deg, #FFF8F5 0%, #FBF1EC 100%);
  padding-top: 32px;
  padding-bottom: 0;
  border-bottom: 0;
  overflow: hidden;
  position: relative;
}
/* Soft fade at the bottom of the hero so it blends into the next section */
.hero::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 60px;
  background: linear-gradient(180deg, transparent 0%, var(--bg-alt) 100%);
  pointer-events: none;
  z-index: 1;
}
.hero-grid { display: grid; gap: 0; }
/* .hero-copy-wrap is a grid item — .container's `margin: 0 auto` + max-width
   don't work here because the grid cell is the constraint. We use explicit
   container-aligned padding instead (see desktop breakpoint). */
.hero-copy-wrap { padding: 0 20px; max-width: none; margin: 0; }
.hero-copy { padding: 8px 0 24px; }
.hero-copy h1 { margin: 0 0 18px; }
.hero-copy h1 br { display: none; }
.lead { font-size: 1.05rem; color: var(--ink-2); margin: 0 0 22px; max-width: 540px; }

.hero-ctas { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.hero-ctas .btn { width: 100%; }
.hero-ctas .btn-ghost { background: #fff; }

/* Hero badges — red icon squares + 2-line label */
.hero-badges {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 22px 24px;
  margin: 0;
  padding-bottom: 24px;
}
.hero-badges li {
  display: flex; align-items: center; gap: 14px;
}
.hb-icon {
  flex: 0 0 46px;
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--red); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 14px rgba(204,32,33,.28);
}
.hero-badges li > div { display: flex; flex-direction: column; line-height: 1.25; font-size: .92rem; }
.hero-badges li strong { color: var(--ink); font-weight: 700; }
.hero-badges li span { color: var(--muted); font-weight: 500; }

/* Hero photo — bleeds full width on mobile, then becomes right column on desktop */
.hero-photo {
  margin: 0 -20px;
  overflow: hidden;
}
.hero-photo img {
  width: 100%; height: auto;
  display: block;
}

/* =========================================================
   SECTION HEAD — title + short red underline bar
   ========================================================= */
.section { padding: 72px 0; position: relative; }
.section-alt { background: var(--bg-alt); }
.section-dark {
  background: linear-gradient(180deg, #1A2123 0%, #131A1C 100%);
  color: #fff;
}
.section-dark p { color: #C9CED2; }
.section-dark h2, .section-dark h3 { color: #fff; }

.section-head { margin: 0 0 40px; }
.section-head h2 { margin: 0 0 16px; }
/* Reusable short red underline beneath section/block titles */
.title-bar {
  display: block; width: 72px; height: 4px;
  background: var(--red); border-radius: 4px;
}
.section-head-center { text-align: center; }
.section-head-center .title-bar { margin: 0 auto; }
.section-head-left .title-bar { margin: 0; }
.section-head-dark .title-bar { background: var(--red); }
.section-head p { color: var(--muted); margin-top: 12px; max-width: 720px; }
.section-head-center p { margin-inline: auto; }

/* =========================================================
   CARDS GRID
   ========================================================= */
.grid { display: grid; gap: 18px; }
.grid-3 { grid-template-columns: 1fr; }

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .25s ease, border-color .2s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-2);
}

/* Service cards — centered content, text-link CTA, dot bullets */
.service-card {
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  padding: 36px 28px 32px;
}
.service-card h3 { font-size: 1.3rem; margin: 8px 0 10px; }
.service-card > p { color: var(--muted); max-width: 320px; margin: 0 auto 18px; }
.dot-list { margin: 6px 0 22px; display: flex; flex-direction: column; align-items: flex-start; }
.dot-list li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-2);
  font-size: .98rem;
  margin: 7px 0;
  text-align: left;
}
.dot-list li::before {
  content: ""; position: absolute; left: 0; top: .5em;
  width: 8px; height: 8px; border-radius: 999px; background: var(--red);
}
.link-cta {
  color: var(--red); font-weight: 700; font-size: 1rem;
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: auto;
  transition: gap .2s ease, color .15s ease;
}
.link-cta:hover { text-decoration: none; gap: 10px; color: var(--red-dark); }
.link-cta span { transition: transform .2s ease; }
.link-cta:hover span { transform: translateX(2px); }

/* Icon circles — pink badge (light variant) */
.icon-circle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 64px; height: 64px;
  border-radius: 999px;
  background: var(--red-soft);
  color: var(--red);
  margin-bottom: 8px;
}
.icon-circle-sm { width: 52px; height: 52px; }
.icon-circle-solid {
  background: var(--red); color: #fff;
  box-shadow: var(--shadow-red);
}

/* =========================================================
   PAGE HERO — full-weight hero used on internal pages. Matches
   the homepage hero's gradient, type scale, spacing rhythm,
   and CTA pattern so internal pages feel like the same family.
   ========================================================= */
.page-hero {
  background:
    radial-gradient(1100px 600px at -10% 100%, #FFE5DE 0%, transparent 60%),
    radial-gradient(900px 500px at 95% -10%, #FFEDEA 0%, transparent 60%),
    linear-gradient(180deg, #FFF8F5 0%, #FBF1EC 100%);
  padding: 64px 0 72px;
  border-bottom: 0;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 60px;
  background: linear-gradient(180deg, transparent 0%, #fff 100%);
  pointer-events: none;
  z-index: 1;
}
.page-hero .container { position: relative; z-index: 2; }

.page-hero h1 {
  /* Same scale as the homepage H1 so internal pages feel as substantial */
  font-size: clamp(2.4rem, 5vw + .3rem, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.028em;
  margin: 10px 0 18px;
}
.page-hero-lead {
  font-size: 1.15rem;
  color: var(--ink-2);
  max-width: 720px;
  margin: 0 0 22px;
  line-height: 1.55;
}

/* Page-hero CTA row — same component as the homepage hero CTAs */
.page-hero-ctas {
  display: flex; flex-direction: column; gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.page-hero-ctas .btn { width: 100%; }
@media (min-width: 480px) {
  .page-hero-ctas { flex-direction: row; }
  .page-hero-ctas .btn { width: auto; }
}

/* Optional trust strip directly under the page-hero CTA row */
.page-hero-trust {
  display: flex; flex-wrap: wrap; gap: 18px 26px;
  margin-top: 26px;
  color: var(--ink-2);
  font-size: .92rem;
  font-weight: 600;
}
.page-hero-trust li {
  display: inline-flex; align-items: center; gap: 8px;
}
.page-hero-trust .pht-dot {
  width: 10px; height: 10px; border-radius: 999px;
  background: var(--red);
  flex: 0 0 10px;
}

.page-hero-anchors {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 22px;
}
.page-hero-anchors a {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--ink);
  font-weight: 600;
  font-size: .9rem;
  transition: border-color .15s ease, background .15s ease;
}
.page-hero-anchors a:hover {
  text-decoration: none;
  border-color: var(--red);
  background: var(--red-soft);
  color: var(--red-dark);
}

/* Breadcrumbs */
.breadcrumbs ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex; flex-wrap: wrap; gap: 6px;
  font-size: .88rem;
}
.breadcrumbs li {
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.breadcrumbs li + li::before { content: "›"; color: var(--muted-2); }
.breadcrumbs a { color: var(--muted); }
.breadcrumbs a:hover { color: var(--red); }
.breadcrumbs li[aria-current="page"] { color: var(--ink); font-weight: 600; }

/* =========================================================
   PRICE LIST — used on the Pricing page (list rows w/ price)
   ========================================================= */
.price-list {
  display: flex; flex-direction: column;
  gap: 12px;
  max-width: 920px;
  margin: 0 auto;
}
.price-row {
  display: flex; align-items: center; gap: 16px;
  justify-content: space-between;
  flex-wrap: wrap;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;          /* matched to .svc-card / .faq-item family */
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .25s ease, border-color .18s ease;
}
.price-row:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-2);
}
.pr-name { display: flex; align-items: flex-start; gap: 14px; flex: 1 1 auto; min-width: 0; }
.pr-name .icon-circle-sm { flex: 0 0 44px; width: 44px; height: 44px; margin: 0; }
.pr-name > div { display: flex; flex-direction: column; min-width: 0; }
.pr-name strong { color: var(--ink); font-size: 1.02rem; font-weight: 700; line-height: 1.3; }
.pr-name span { color: var(--muted); font-size: .92rem; line-height: 1.45; margin-top: 2px; }
.pr-price {
  display: flex; align-items: baseline; gap: 6px;
  background: var(--red-soft);
  border: 1px solid rgba(204, 32, 33, 0.16);
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .9rem;
  color: var(--muted);
  white-space: nowrap;
  flex: 0 0 auto;
}
.pr-price strong { color: var(--red); font-weight: 800; font-size: 1.1rem; }

/* =========================================================
   HOME CTA row + helper utilities
   ========================================================= */
.home-cta-row {
  display: flex; flex-direction: column; gap: 12px;
  align-items: center; justify-content: center;
  margin-top: 8px;
}
.home-cta-area {
  text-align: center;
  margin-top: 22px;
  color: var(--muted);
  font-size: .95rem;
}
.price-note-center {
  max-width: 760px;
  margin: 28px auto 0;
  text-align: center;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.55;
  padding: 14px 16px;
  background: var(--red-soft);
  border: 1px solid rgba(204, 32, 33, 0.16);
  border-radius: 12px;
}
.price-note-center strong { color: var(--ink); }

/* Narrow container for prose-heavy pages (About, Contact subpages) */
.container.narrow { max-width: 760px; }

/* Prose paragraph blocks (About story) */
.prose p { color: var(--ink-2); font-size: 1.05rem; line-height: 1.7; margin-bottom: 16px; }
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--ink); }

/* About: Our Story card — wraps prose in the homepage card aesthetic so the
   story section visually matches the rest of the site's card system. */
.story-card {
  max-width: 820px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
}

/* Split variant: portrait photo on the left, prose on the right. */
.story-card-split {
  max-width: 1040px;
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}
.story-photo {
  position: relative;
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--bg-alt);
  aspect-ratio: 4 / 5;
}
.story-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.story-photo-caption {
  position: absolute;
  left: 14px; bottom: 14px;
  background: rgba(26, 33, 35, 0.85);
  color: #fff;
  font-size: .82rem;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.story-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 999px;
  background: var(--red);
  color: #fff;
  flex: 0 0 22px;
}
@media (min-width: 768px) {
  .story-card-split {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 36px;
    padding: 32px;
  }
  .story-photo { aspect-ratio: 3 / 4; }
}
@media (min-width: 960px) {
  .story-card-split {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 44px;
    padding: 36px;
  }
}

/* About: Where We Work — 4-city card grid with red pin */
.area-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 0 auto 18px;
  max-width: 760px;
}
.area-card-grid li {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 18px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.area-card-grid li:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-2);
}
.area-card-grid .area-pin {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 999px;
  background: var(--red-soft); color: var(--red);
  margin-bottom: 4px;
}
.area-card-grid strong { color: var(--ink); font-size: 1rem; font-weight: 700; }
.area-card-grid span { color: var(--muted); font-size: .88rem; }

.area-note {
  text-align: center;
  color: var(--muted);
  max-width: 620px;
  margin: 18px auto 0;
  font-size: .95rem;
}

/* About: Our Approach — numbered item grid */
.approach-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 820px;
  margin: 0 auto;
}
.approach-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: flex-start;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.approach-item:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--border-2); }
.approach-num {
  width: 40px; height: 40px; border-radius: 999px;
  background: var(--red); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.02rem;
  box-shadow: 0 4px 10px rgba(204,32,33,.25);
}
.approach-item > div { display: flex; flex-direction: column; gap: 4px; }
.approach-item strong { color: var(--ink); font-size: 1rem; font-weight: 700; }
.approach-item p { margin: 0; color: var(--muted); font-size: .95rem; line-height: 1.5; }

.muted { color: var(--muted); font-size: .95rem; }

/* Contact form heading now visible */
.contact-form h3 { font-size: 1.3rem; margin: 0 0 4px; }

/* Featured pricing snapshot — 4 cards across when room allows */
.svc-grid-4 { grid-template-columns: 1fr; }

/* Single-card layout — wider centered "featured" card. Used when a section
   has just one card; the card sits centered at a comfortable max-width
   instead of orphaned on the left.
   Compound selector (`.svc-grid.svc-grid-centered`) so it beats the 3-col
   `.svc-grid` rule at tablet/desktop breakpoints. */
.svc-grid.svc-grid-centered {
  grid-template-columns: 1fr;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

/* Two-card layout — when a section only has two cards, center them in the
   row instead of letting them sit on the left of an empty 3-col grid. */
.svc-grid.svc-grid-2,
.plans-grid.plans-grid-2 {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .svc-grid.svc-grid-2,
  .plans-grid.plans-grid-2 {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }
}

/* =========================================================
   SERVICE-DETAIL CARDS — used by Home Tech / Small Biz IT /
   Websites & Cloud sections. Each card: icon, title + price,
   short description. Grid responsive 1 / 2 / 3 columns.
   ========================================================= */
.svc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.svc-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .25s ease, border-color .2s ease;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.svc-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-2);
}
.svc-card .icon-circle {
  width: 52px; height: 52px;
  margin-bottom: 4px;
}
.svc-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.svc-head h3 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.3;
  flex: 1 1 60%;
}
.svc-price {
  font-size: .92rem;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
  flex: 0 0 auto;
  background: var(--red-soft);
  padding: 4px 12px;
  border-radius: 999px;
  align-self: flex-start;
}
.svc-price strong {
  color: var(--red);
  font-weight: 800;
  font-size: 1.02rem;
  margin-left: 2px;
}
.svc-card > p {
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.55;
}
.svc-card-footer {
  margin-top: 12px !important;
  padding-top: 12px;
  border-top: 1px dashed var(--border);
}
.svc-card-footer .link-cta { color: var(--red); font-weight: 700; }

/* Centered CTA banner below each service grid */
.svc-cta {
  text-align: center;
  margin: 36px auto 0;
  max-width: 700px;
  color: var(--ink-2);
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* =========================================================
   MONTHLY CARE PLANS — 3 plan-tier cards
   ========================================================= */
.plans-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 980px;
  margin: 0 auto;
}
.plan-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .2s ease, box-shadow .25s ease;
}
.plan-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.plan-card-feature {
  border: 2px solid var(--red);
  box-shadow: 0 0 0 6px var(--red-soft), var(--shadow-md);
  z-index: 1;
}
.plan-card-feature .ribbon {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(204,32,33,.30);
  white-space: nowrap;
}
.plan-head { margin-bottom: 18px; }
.plan-head h3 {
  font-size: 1.2rem;
  margin: 0 0 8px;
  letter-spacing: -.01em;
}
.plan-price {
  margin: 0;
  font-size: 1.1rem;
  color: var(--muted);
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.plan-price strong {
  color: var(--ink);
  font-weight: 900;
  font-size: 2.2rem;
  letter-spacing: -.02em;
  line-height: 1;
}
.plan-price span { color: var(--muted); font-weight: 600; }
.plan-features {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 22px;
}
.plan-features li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-2);
  font-size: .95rem;
  line-height: 1.45;
}
.plan-features li::before {
  content: "";
  position: absolute;
  left: 0; top: 2px;
  width: 18px; height: 18px;
  border-radius: 999px;
  background: var(--red);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'><path d='M20 6L9 17l-5-5' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 11px;
}

/* Footer "Need help now?" block */
.footer-need-help {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 14px 16px;
  margin-top: 14px;
  font-size: .92rem;
  line-height: 1.5;
  color: #C9CED2;
}
.footer-need-help strong { color: #fff; }
.footer-need-help a { color: var(--red); font-weight: 700; }
.footer-need-help a:hover { color: #fff; }

/* =========================================================
   WHO WE HELP (dark section with photos on outside)
   ========================================================= */
.who-section {
  background:
    linear-gradient(180deg, #1B2426 0%, #131A1C 100%);
  position: relative;
  overflow: hidden;
}
.who-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  position: relative;
}
.who-photo {
  width: 180px; height: 180px;
  border-radius: 999px;
  overflow: hidden;
  border: 6px solid #fff;
  box-shadow: var(--shadow-lg);
  margin: 0 auto;
  background: #fff;
}
.who-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

.who-card {
  background: transparent;
  text-align: center;
  padding: 12px 8px;
}
.who-card .icon-circle-solid { margin: 0 auto 14px; }
.who-card h3 { color: #fff; font-size: 1.4rem; margin-bottom: 10px; }
.who-card p { color: #C9CED2; max-width: 360px; margin: 0 auto 18px; }
.check-list { display: inline-flex; flex-direction: column; gap: 8px; align-items: flex-start; }
.check-list li {
  display: flex; align-items: center; gap: 12px;
  color: var(--ink-2); font-size: .98rem;
  text-align: left;
}
.check-list li::before {
  content: ""; flex: 0 0 20px;
  width: 20px; height: 20px; border-radius: 999px;
  background: var(--red);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'><path d='M20 6L9 17l-5-5' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-position: center; background-repeat: no-repeat; background-size: 13px;
  box-shadow: 0 2px 6px rgba(204,32,33,.30);
}
.check-list-dark li { color: #DDE1E5; }

/* The "&" badge between the two cards */
.who-amp {
  display: none;
  width: 64px; height: 64px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-weight: 800;
  font-size: 1.6rem;
  align-items: center; justify-content: center;
  margin: 0 auto;
  box-shadow: 0 8px 20px rgba(204,32,33,.4);
}

/* =========================================================
   HOW IT WORKS (horizontal on desktop)
   ========================================================= */
.how-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  counter-reset: step;
  position: relative;
}
.how-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  column-gap: 18px;
  row-gap: 6px;
  align-items: start;
  text-align: left;
}
.how-step .how-step-num {
  grid-column: 1;
  grid-row: 1 / span 3;
  width: 44px; height: 44px; border-radius: 999px;
  background: var(--red); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem;
  box-shadow: 0 6px 14px rgba(204,32,33,.30);
  align-self: start;
}
.how-step .how-step-icon { grid-column: 2; grid-row: 1; }
.how-step h3 { grid-column: 2; grid-row: 2; }
.how-step p { grid-column: 2; grid-row: 3; }
.how-step-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 999px;
  background: var(--red-soft); color: var(--red);
  margin-bottom: 8px;
}
.how-step h3 { margin: 0 0 4px; font-size: 1.15rem; }
.how-step p { margin: 0; color: var(--muted); font-size: .98rem; }

/* =========================================================
   FAQ accordion
   ========================================================= */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq-item[open] {
  border-color: var(--border-2);
  box-shadow: var(--shadow-md);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 700;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.4;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-q { flex: 1; }
.faq-toggle {
  position: relative;
  flex: 0 0 24px;
  width: 24px; height: 24px;
  border-radius: 999px;
  background: var(--red-soft);
  transition: background .2s ease, transform .2s ease;
}
.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  background: var(--red);
  border-radius: 1px;
  transition: transform .2s ease;
}
.faq-toggle::before { width: 12px; height: 2px; transform: translate(-50%, -50%); }
.faq-toggle::after  { width: 2px; height: 12px; transform: translate(-50%, -50%); }
.faq-item[open] .faq-toggle { background: var(--red); }
.faq-item[open] .faq-toggle::before,
.faq-item[open] .faq-toggle::after { background: #fff; }
.faq-item[open] .faq-toggle::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-a {
  padding: 0 22px 20px;
  color: var(--muted);
  font-size: .98rem;
  line-height: 1.6;
}
.faq-a p { margin: 0; color: var(--ink-2); }
.faq-a a { color: var(--red); font-weight: 600; }

/* =========================================================
   RED TRUST STRIP — subtle gradient + inner shadow for depth
   ========================================================= */
.trust-strip {
  background:
    linear-gradient(180deg, #D72428 0%, var(--red) 45%, #B41C1D 100%);
  color: #fff;
  padding: 28px 0;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.10),
    inset 0 -1px 0 rgba(0,0,0,.18);
}
.trust-strip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
  align-items: center;
}
.ts-item {
  display: flex; align-items: center; gap: 14px;
}
.ts-icon {
  flex: 0 0 38px;
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
}
.ts-item > div { display: flex; flex-direction: column; line-height: 1.25; font-size: .9rem; }
.ts-item strong { font-weight: 800; letter-spacing: -.005em; }
.ts-item span { font-weight: 500; opacity: .9; }

/* =========================================================
   CONTACT (Local IT Support Near You)
   ========================================================= */
.contact-grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.contact-info {
  padding: 8px 4px;
  /* <address> defaults to italic — override so the city list and labels
     stay upright like the rest of the page. */
  font-style: normal;
}
.ci-label { font-size: 1rem; margin-bottom: 12px; color: var(--ink); }
.area-list { margin-bottom: 22px; }
.area-list li {
  display: flex; align-items: center; gap: 10px;
  padding: 6px 0;
  font-weight: 600; color: var(--ink);
}
.area-list li::before {
  content: ""; flex: 0 0 12px;
  width: 12px; height: 12px; border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 0 3px var(--red-soft);
}
.contact-meta { display: flex; flex-direction: column; gap: 16px; }
.contact-meta li {
  display: flex; align-items: center; gap: 12px;
}
.cm-icon {
  flex: 0 0 40px;
  width: 40px; height: 40px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--red-soft); color: var(--red);
}
.contact-meta li > div { display: flex; flex-direction: column; line-height: 1.25; }
.cm-strong { color: var(--ink); font-weight: 800; font-size: 1rem; }
.cm-strong:hover { color: var(--red); }
.contact-meta li span { color: var(--muted); font-size: .88rem; }

.contact-map {
  margin: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.contact-map img { width: 100%; height: auto; display: block; }

/* Form — visible labels (WCAG SC 3.3.2: Labels or Instructions) */
.contact-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

/* ===== Contact page two-column layout ============================
   Left: stacked info cards (Get in Touch + Service Area)
   Right: embedded form widget. On mobile everything stacks. */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: start;
}
@media (min-width: 960px) {
  .contact-layout {
    grid-template-columns: 1fr 1.15fr;
    gap: 32px;
  }
}

.contact-info-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-style: normal; /* address element default */
}

/* Reusable contact info card — matches homepage svc-card aesthetic */
.contact-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .25s ease, border-color .18s ease;
}
.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-2);
}
.contact-card .icon-circle {
  margin-bottom: 12px;
}
.contact-card-title {
  font-size: 1.25rem;
  margin: 4px 0 8px;
  letter-spacing: -0.01em;
}
.contact-card-lead {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.55;
}
.contact-card-lead strong { color: var(--ink); }

/* Tighten the existing .contact-meta inside cards */
.contact-card .contact-meta {
  margin-bottom: 18px;
}

/* The .area-list inside a contact-card */
.contact-card .area-list {
  margin: 0;
}
.contact-card .area-list li { padding: 8px 0; }
.contact-card .area-list li:first-child { padding-top: 4px; }
.contact-card .area-list li:last-child { padding-bottom: 0; border-bottom: 0; }

/* Embedded form widget wrapper — minimal, since the widget renders its own
   bordered card with its own heading and submit button. We only need a
   container that holds the script + an extra trust line below it. */
.contact-form-embed {
  min-width: 0; /* lets the widget shrink in flex/grid columns on small screens */
}
.contact-form-embed .form-trust {
  margin: 14px 0 0;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  color: var(--muted); font-size: .82rem;
}
.contact-form-embed .form-trust svg { color: var(--red); }
/* Make the embedded widget's iframe / injected container fluid */
.contact-form-embed iframe,
.contact-form-embed > div { max-width: 100%; }
.form-intro {
  color: var(--muted);
  font-size: .9rem;
  margin: 0 0 16px;
}
.required-mark {
  color: var(--red);
  font-weight: 800;
  margin-left: 2px;
}
.field { display: block; margin-bottom: 16px; }
.field-row { display: grid; grid-template-columns: 1fr; gap: 14px; margin-bottom: 0; }
.field label,
.field legend {
  display: block;
  font-weight: 700;
  font-size: .92rem;
  margin-bottom: 6px;
  color: var(--ink);
  line-height: 1.3;
}
.field-hint {
  display: block;
  margin-top: 6px;
  font-size: .8rem;
  color: var(--muted);
  line-height: 1.4;
}
.field input, .field textarea, .field select {
  width: 100%; font: inherit; color: var(--ink);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  min-height: 50px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); font-weight: 500; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(204,32,33,.12);
}
.field select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'><path d='M6 9l6 6 6-6' stroke='%235B636C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>"); background-repeat: no-repeat; background-position: right 14px center; background-size: 18px; padding-right: 42px; color: var(--muted); }
.field select:has(option:checked:not([value=""])) { color: var(--ink); }

.form-trust {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  color: var(--muted); font-size: .82rem; margin-top: 12px; margin-bottom: 0;
}
.form-trust svg { color: var(--red); }
.form-success {
  margin-top: 14px; padding: 12px 14px;
  background: #ECFDF3; color: #027A48;
  border: 1px solid #ABEFC6; border-radius: 10px;
  font-weight: 600;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: linear-gradient(180deg, #131A1C 0%, #0B1012 100%);
  color: #C9CED2;
  padding: 56px 0 28px;
}
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 14px; }
.site-footer a { color: #C9CED2; }
.site-footer a:hover { color: #fff; }
.footer-grid {
  display: grid; gap: 32px;
  grid-template-columns: 1fr;
}
.footer-logo {
  width: 190px; height: 58px;
  background: #fff;
  border-radius: 12px;
  padding: 4px 8px;
  object-fit: cover; object-position: center;
  box-shadow: 0 2px 6px rgba(0,0,0,.25);
}
.footer-brand .tagline { color: #C9CED2; margin-top: 14px; font-size: .98rem; }
.footer-col ul li { padding: 5px 0; font-size: .95rem; }

.footer-vet .vet-flag { margin-bottom: 8px; }
.footer-vet p { color: #C9CED2; font-size: .9rem; margin: 0; line-height: 1.4; }

.footer-call {
  display: flex; align-items: center; gap: 14px;
}
.footer-call-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: #fff;
}
.footer-call > div { display: flex; flex-direction: column; line-height: 1.2; min-width: 0; }
.fc-label { color: #fff; font-weight: 700; font-size: .95rem; }
.fc-number {
  color: var(--red);
  font-weight: 900;
  font-size: 1.35rem;
  letter-spacing: -.02em;
  white-space: nowrap;
}
.fc-number:hover { color: #fff; text-decoration: none; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 32px; padding-top: 18px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px; color: #8C9098; font-size: .85rem;
  flex-wrap: wrap;
}

/* =========================================================
   Sticky mobile CTA bar
   ========================================================= */
.mobile-cta-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  display: flex; gap: 10px;
  padding: 12px 14px calc(12px + env(safe-area-inset-bottom, 0px));
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 24px rgba(16,24,40,.08);
}
.mobile-cta-btn { flex: 1; min-height: 50px; font-size: .97rem; }
.mobile-cta-bar .btn-ghost {
  background: var(--ink); color: #fff; border-color: var(--ink);
}
.mobile-cta-bar .btn-ghost:hover { background: #000; color: #fff; border-color: #000; }

/* =========================================================
   Responsive
   ========================================================= */
/* >= 480px */
@media (min-width: 480px) {
  .hero-ctas { flex-direction: row; flex-wrap: wrap; }
  .hero-ctas .btn { width: auto; flex: 0 0 auto; }
  .home-cta-row { flex-direction: row; }
  .container { padding: 0 22px; }
}

/* >= 640px */
@media (min-width: 640px) {
  .container { padding: 0 24px; }
  .field-row { grid-template-columns: 1fr 1fr; gap: 14px; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; row-gap: 28px; }
  .footer-vet { grid-column: span 2; }
  .footer-call { grid-column: 1 / -1; justify-content: center; }
  .svc-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .svc-grid-4 { grid-template-columns: 1fr 1fr; }
  .plans-grid { grid-template-columns: 1fr; gap: 24px; }
  .area-list-grid { grid-template-columns: 1fr 1fr; }
  .area-card-grid { grid-template-columns: 1fr 1fr; }
  .hero-badges { grid-template-columns: repeat(2, 1fr); }
  .trust-strip-grid { grid-template-columns: 1fr 1fr 1fr; }
}

/* >= 768px (tablet) */
@media (min-width: 768px) {
  .section { padding: 88px 0; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  /* Service grids → 3 columns at tablet+ */
  .svc-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .svc-grid-4 { grid-template-columns: repeat(4, 1fr); }
  .plans-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
  .area-card-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .approach-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .page-hero { padding: 72px 0 64px; }
  .how-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: start;
    position: relative;
  }
  /* dashed connector between steps */
  .how-step {
    grid-template-columns: 1fr;
    column-gap: 0;
    text-align: left;
    padding-left: 64px;
    position: relative;
  }
  .how-step .how-step-num {
    position: absolute; left: 0; top: 0;
    grid-column: auto; grid-row: auto;
  }
  .how-step .how-step-icon,
  .how-step h3,
  .how-step p { grid-column: 1; grid-row: auto; }
  .how-step-icon { margin-top: 0; }
  .how-steps::before {
    content: "";
    position: absolute;
    top: 22px; left: 16%; right: 16%;
    height: 0;
    border-top: 2px dashed rgba(204,32,33,.35);
    z-index: 0;
  }
  .who-grid {
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
  }
  .who-photo { grid-row: 1; }
  .who-photo-left { grid-column: 1; }
  .who-photo-right { grid-column: 3; }
  .who-card:nth-of-type(1) { grid-column: 1; }
  .who-card:nth-of-type(2) { grid-column: 3; }
  .who-amp { display: inline-flex; grid-column: 2; grid-row: 1 / span 2; align-self: center; }
  /* Layout: photo top-left, card bottom-left, photo top-right, card bottom-right, amp center spanning */
  .who-photo-left { grid-row: 1; margin: 0 auto 10px; }
  .who-photo-right { grid-row: 1; margin: 0 auto 10px; }
  .who-card { grid-row: 2; padding: 8px 12px; }
  .contact-grid-3 { grid-template-columns: 1fr 1.1fr 1.3fr; gap: 26px; align-items: start; }
  .trust-strip-grid { grid-template-columns: repeat(5, 1fr); }
  .trust-strip { padding: 26px 0; }
  .ts-item { gap: 14px; }
  .ts-item > div { font-size: .85rem; }
}

/* >= 960px (desktop) */
@media (min-width: 960px) {
  .primary-nav { display: block; }
  .mobile-only { display: none !important; }
  .header-cta { display: inline-flex; }
  .mobile-cta-bar { display: none; }
  body { padding-bottom: 0; }
  .brand-logo { height: 64px; width: 210px; }
  .hero { padding-top: 0; }
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    min-height: 560px;
  }
  /* Desktop: align the hero copy's LEFT edge with the main container's
     left edge (the same x as every other section's content).
     formula: (viewport - container) / 2 + container-padding.
     Right padding gives breathing room before the photo. */
  .hero-copy-wrap {
    display: flex; align-items: center;
    padding-top: 64px;
    padding-bottom: 64px;
    padding-left: max(24px, calc(24px + (100vw - var(--container)) / 2));
    padding-right: 48px;
  }
  .hero-copy { max-width: 540px; padding: 0; }
  .hero-copy h1 br { display: block; }
  .hero-copy h1 { font-size: clamp(2.4rem, 3vw + 1rem, 3.4rem); }
  .lead { font-size: 1.1rem; }
  .hero-ctas { flex-direction: row; flex-wrap: wrap; }
  .hero-badges {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  .hero-photo {
    margin: 0;
    height: 100%;
    min-height: 540px;
    display: flex;
  }
  .hero-photo img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
  }
  .footer-grid {
    grid-template-columns: 1.2fr .9fr .9fr 1fr 1.3fr;
    gap: 40px; align-items: center;
  }
  .footer-vet { grid-column: auto; }
  .footer-call { grid-column: auto; justify-content: flex-start; }
}

/* >= 1100px */
@media (min-width: 1100px) {
  .section { padding: 104px 0; }
  .who-photo { width: 220px; height: 220px; }
  .who-grid { grid-template-columns: 1fr auto 1fr; gap: 32px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .card, .svc-card, .plan-card, .link-cta { transition: none; }
}
