/* ============================================================
   Super Shiny Car Detailing Montgomery
   A Kelo Media product
   Aesthetic: light Apple-clean panels, big two-line displays,
   black filled CTAs, green accent, eyebrow tags, browser frames.
   ============================================================ */

:root {
  --bg:        #f7f7f5;
  --panel-soft:#f0efe9;
  --panel-near:#e6e4dd;
  --panel-light:#ffffff;
  --panel-dark:#0a0b0c;
  --panel-dark-2:#1a1b1d;

  --ink:       #0a0b0c;
  --ink-2:     #4a4b4f;
  --ink-3:     #797a80;
  --ink-inv:   #f7f7f5;
  --ink-inv-2: rgba(255,255,255,.72);
  --ink-inv-3: rgba(255,255,255,.5);

  --green:     #16a34a;
  --green-2:   #22c55e;
  --green-3:   #14532d;
  --green-glow: rgba(34,197,94,.18);

  --line:      rgba(0,0,0,.08);
  --line-2:    rgba(0,0,0,.14);
  --line-dark: rgba(255,255,255,.12);
  --line-dark-2: rgba(255,255,255,.2);

  --radius:    20px;
  --radius-sm: 12px;
  --radius-pill: 999px;

  --shadow-1:  0 1px 2px rgba(0,0,0,.04), 0 10px 30px -16px rgba(0,0,0,.18);
  --shadow-2:  0 4px 18px rgba(0,0,0,.06), 0 30px 60px -28px rgba(0,0,0,.24);

  --ease:      cubic-bezier(.22,.61,.36,1);
  --container: 1180px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s var(--ease), opacity .2s var(--ease); }

.skip-link {
  position: absolute; left: -9999px; top: 0; padding: 12px 16px;
  background: var(--ink); color: var(--ink-inv); font-weight: 600; border-radius: 0 0 12px 0; z-index: 1000;
}
.skip-link:focus { left: 0; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

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

/* ============================================================
   Typography
   ============================================================ */
.display-xxl, .display-xl, h1, h2, h3, h4 {
  font-family: "Inter", -apple-system, sans-serif;
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.05;
  color: var(--ink);
  margin: 0;
}
.display-xxl, h1 {
  font-size: clamp(2.6rem, 5vw + .8rem, 5rem);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.02;
}
.display-xl, h2 {
  font-size: clamp(2rem, 3vw + .6rem, 3.6rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.05;
}
h3 { font-size: 1.25rem; font-weight: 700; letter-spacing: -.015em; }
h4 { font-size: .92rem; font-weight: 600; letter-spacing: .02em; }

p { margin: 0 0 1em; color: var(--ink-2); }

.lede {
  font-size: clamp(1.06rem, 1vw + .6rem, 1.25rem);
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 640px;
  margin: 0 0 1.2em;
}
.feature-sub { margin-left: auto; margin-right: auto; text-align: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green-3);
  margin: 0 0 18px;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px var(--green-glow); }
.eyebrow-dark { color: var(--green-2); }
.eyebrow-dark .dot { background: var(--green-2); box-shadow: 0 0 0 4px rgba(34,197,94,.25); }

.note { font-size: .9rem; color: var(--ink-3); }
.dot-sep { padding: 0 8px; color: var(--ink-3); }

/* ============================================================
   Buttons (Kelo-style)
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: inherit; font-size: 1rem; font-weight: 600;
  padding: 16px 26px; border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s var(--ease), background .2s var(--ease), color .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}
.btn .ch { display: inline-block; transform: translateY(-1px); transition: transform .2s var(--ease); }
.btn:hover .ch { transform: translateX(3px) translateY(-1px); }

.btn-fill, .btn-primary {
  background: var(--ink); color: var(--ink-inv);
}
.btn-fill:hover, .btn-primary:hover { background: #1f1f22; transform: translateY(-1px); }

.btn-fill-light {
  background: var(--ink-inv); color: var(--ink);
}
.btn-fill-light:hover { background: #fff; transform: translateY(-1px); }

.btn-fill-green {
  background: var(--green); color: #062c12;
}
.btn-fill-green:hover { background: var(--green-2); color: #062c12; transform: translateY(-1px); box-shadow: 0 10px 30px -10px rgba(22,163,74,.5); }

.btn-link {
  background: transparent; padding: 16px 8px;
  color: var(--ink); border: 0;
}
.btn-link:hover { color: var(--green-3); }
.btn-link-dark { color: var(--ink-inv); }
.btn-link-dark:hover { color: var(--green-2); }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.btn-row.center { justify-content: center; }
.btn-block { width: 100%; justify-content: center; }
.btn-small { padding: 12px 18px; font-size: .92rem; }

/* ============================================================
   Header — clean Apple bar
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247,247,245,.82);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; padding: 16px 28px; gap: 24px; }

.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--ink); }
.brand:hover { color: var(--green-3); }
.brand-mark {
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--green); width: 36px; height: 36px;
  background: var(--green-glow);
  border-radius: 10px;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-line-1 { font-weight: 800; font-size: 1.05rem; letter-spacing: -.015em; }
.brand-line-2 { font-size: .68rem; text-transform: uppercase; letter-spacing: .2em; color: var(--ink-3); font-weight: 500; }

.site-nav { display: flex; align-items: center; }
.nav-list { display: flex; align-items: center; gap: 4px; list-style: none; padding: 0; margin: 0; }
.nav-list a {
  display: inline-block; padding: 9px 14px; color: var(--ink-2);
  font-size: .92rem; font-weight: 500; border-radius: var(--radius-pill);
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav-list a:hover { color: var(--ink); background: rgba(0,0,0,.05); }
.nav-list a[aria-current="page"] { color: var(--ink); font-weight: 600; }

.nav-list .nav-cta {
  background: var(--ink); color: var(--ink-inv); padding: 11px 20px;
  margin-left: 8px; font-weight: 600;
}
.nav-list .nav-cta:hover { background: var(--green); color: #062c12; }

.nav-toggle {
  display: none;
  background: transparent; border: 1px solid var(--line-2);
  width: 42px; height: 42px; border-radius: 10px; cursor: pointer;
  position: relative;
}
.nav-toggle .bars,
.nav-toggle .bars::before,
.nav-toggle .bars::after {
  display: block; position: absolute; left: 50%; top: 50%; width: 18px; height: 2px;
  background: var(--ink); transform: translate(-50%, -50%);
  transition: all .25s var(--ease);
}
.nav-toggle .bars::before { content: ""; top: -6px; }
.nav-toggle .bars::after  { content: ""; top: 6px; }
.nav-toggle[aria-expanded="true"] .bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .bars::before { top: 0; transform: translate(-50%, -50%) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bars::after  { top: 0; transform: translate(-50%, -50%) rotate(-45deg); }

/* ============================================================
   Sections — Apple-style alternating panels
   ============================================================ */
section, .panel {
  padding: clamp(64px, 8vw, 120px) 0;
}
.panel-soft   { background: var(--panel-soft); }
.panel-near   { background: var(--panel-near); }
.panel-light  { background: var(--panel-light); }
.panel-dark   { background: var(--panel-dark); color: var(--ink-inv); }
.panel-dark .lede,
.panel-dark p { color: var(--ink-inv-2); }
.panel-dark h2,
.panel-dark h3,
.panel-dark h4 { color: var(--ink-inv); }

.feature {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}

/* ============================================================
   Hero — sub-page light hero
   ============================================================ */
.page-hero {
  padding: clamp(80px, 10vw, 140px) 0 clamp(40px, 6vw, 80px);
  text-align: center;
  background:
    radial-gradient(60% 50% at 50% 0%, var(--green-glow) 0%, transparent 60%),
    var(--bg);
  border-bottom: 1px solid var(--line);
}
.page-hero .eyebrow { justify-content: center; }
.page-hero h1 { max-width: 920px; margin: 0 auto 18px; }
.page-hero .lede { margin: 0 auto 28px; }

.crumbs {
  list-style: none; padding: 0; margin: 0 0 26px;
  display: flex; gap: 8px; justify-content: center; font-size: .85rem;
  color: var(--ink-3);
}
.crumbs a { color: var(--ink-3); }
.crumbs a:hover { color: var(--ink); }
.crumbs li:not(:last-child)::after { content: "/"; color: var(--ink-3); margin-left: 8px; }

/* ============================================================
   HOMEPAGE HERO — split layout, contained car-card
   ============================================================ */
.hero {
  position: relative;
  padding: clamp(80px, 8vw, 120px) 0 clamp(60px, 6vw, 100px);
  background:
    radial-gradient(80% 60% at 100% 0%, var(--green-glow) 0%, transparent 55%),
    radial-gradient(60% 50% at 0% 100%, rgba(0,0,0,.04) 0%, transparent 60%),
    var(--bg);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(36px, 4.5vw, 72px);
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
}

.hero-left { position: relative; z-index: 2; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--panel-light);
  border: 1px solid var(--line);
  color: var(--ink); padding: 8px 16px; border-radius: var(--radius-pill);
  font-size: .76rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  box-shadow: 0 1px 0 rgba(0,0,0,.02);
}
.hero-eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px var(--green-glow); }

.hero h1 {
  color: var(--ink);
  font-size: clamp(2.2rem, 4.4vw + .3rem, 4.2rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1;
  margin: 22px 0 22px;
}
.hero h1 em { font-style: normal; color: var(--ink); display: inline-block; }
.hero h1 .accent { color: var(--green); position: relative; display: inline-block; white-space: nowrap; }
.hero h1 .accent::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: .04em; height: .12em;
  background: var(--green-2); opacity: .4; border-radius: 2px;
}

.hero .lede {
  color: var(--ink-2);
  font-size: clamp(1.04rem, .8vw + .6rem, 1.2rem);
  max-width: 520px;
  margin: 0 0 32px;
  line-height: 1.55;
}

.hero-cta { justify-content: flex-start; gap: 12px; margin-bottom: 28px; flex-wrap: wrap; }
.hero-cta .btn-fill {
  background: var(--ink); color: var(--ink-inv);
  padding: 18px 28px;
  box-shadow: 0 14px 40px -14px rgba(0,0,0,.45);
}
.hero-cta .btn-fill:hover { background: var(--green); color: #062c12; transform: translateY(-2px); box-shadow: 0 20px 50px -14px rgba(22,163,74,.55); }
.hero-cta .btn-link { color: var(--ink-2); padding: 18px 12px; }
.hero-cta .btn-link:hover { color: var(--green-3); }

.hero-note {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: .85rem; color: var(--ink-3); letter-spacing: .01em;
}
.hero-note::before { content: ""; width: 28px; height: 1px; background: var(--line-2); }

/* Hero image card on the right — chips are siblings inside .hero-right so they can extend beyond the card */
.hero-right { position: relative; z-index: 2; padding: 22px; }
.hero-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: var(--ink);
  box-shadow:
    0 1px 0 rgba(255,255,255,.6) inset,
    0 4px 18px rgba(0,0,0,.08),
    0 50px 100px -30px rgba(0,0,0,.35);
  aspect-ratio: 4/5;
}
.hero-card img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  transform: scale(1.02);
  transition: transform 1.2s var(--ease);
}
.hero-card:hover img { transform: scale(1.05); }
.hero-card::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.6) 100%);
}

/* Floating chips — sit on .hero-right (outside the clipped card) so they can extend beyond edges */
.hero-chip {
  position: absolute; z-index: 4;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 14px;
  padding: 12px 16px;
  display: flex; align-items: center; gap: 12px;
  color: var(--ink); font-size: .88rem; font-weight: 500;
  box-shadow: 0 14px 40px -8px rgba(0,0,0,.22), 0 2px 6px rgba(0,0,0,.06);
  white-space: nowrap;
}
.hero-chip strong { color: var(--ink); font-weight: 700; }
.hero-chip-rating { top: 6px; left: 0; }
.hero-chip-rating .stars { color: var(--green); font-size: .92rem; letter-spacing: .08em; }
.hero-chip-live { bottom: 96px; right: 0; }
.hero-chip-live .live-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--green);
  position: relative; flex-shrink: 0;
}
.hero-chip-live .live-dot::after {
  content: ""; position: absolute; inset: -3px; border-radius: 50%;
  background: var(--green); opacity: .35;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: .35; }
  50% { transform: scale(2.4); opacity: 0; }
}
.hero-chip-price {
  bottom: 6px; left: 38px;
  flex-direction: column; align-items: flex-start; gap: 2px; padding: 14px 18px;
}
.hero-chip-price .tag { font-size: .66rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-3); font-weight: 700; }
.hero-chip-price .price { font-size: 1.5rem; font-weight: 800; letter-spacing: -.02em; color: var(--ink); }
.hero-chip-price .price .currency { color: var(--green); }

/* Hero stats bar (horizontal, below the grid) */
.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  max-width: var(--container);
  margin: clamp(56px, 6vw, 80px) auto 0;
  padding: 0 28px;
  border-top: 1px solid var(--line);
  padding-top: clamp(36px, 4vw, 50px);
  gap: 24px;
}
.hero-stat { display: flex; flex-direction: column; gap: 8px; }
.hero-stat-num {
  font-size: clamp(1.6rem, 1.6vw + .5rem, 2.2rem); font-weight: 800;
  letter-spacing: -.025em; color: var(--ink); line-height: 1;
}
.hero-stat-num .accent { color: var(--green); }
.hero-stat-label {
  font-size: .76rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-3); font-weight: 700;
}

/* Browser frame mockup (still used elsewhere on the page) */
.browser-stage { margin: 50px auto 0; max-width: 1080px; padding: 0 28px; }
.browser-frame {
  background: var(--panel-light);
  border-radius: 20px;
  box-shadow: var(--shadow-2);
  overflow: hidden;
  border: 1px solid var(--line);
}
.browser-chrome {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 16px;
  background: linear-gradient(180deg, #f5f4ef, #e9e8e1);
  border-bottom: 1px solid var(--line);
}
.browser-dots { display: flex; gap: 6px; }
.browser-dot { width: 11px; height: 11px; border-radius: 50%; background: #bbb; }
.browser-dot.r { background: #ff5f57; }
.browser-dot.y { background: #febc2e; }
.browser-dot.g { background: #28c840; }
.browser-url {
  flex: 1; text-align: center; font-size: .82rem; color: var(--ink-2);
  background: var(--bg); border-radius: var(--radius-pill);
  padding: 6px 14px; max-width: 320px; margin: 0 auto;
  display: inline-flex; align-items: center; gap: 6px; justify-content: center;
}
.browser-url .lock { color: var(--ink-3); }
.browser-spacer { width: 56px; }
.browser-body { background: var(--bg); aspect-ratio: 16/10; overflow: hidden; position: relative; }
.browser-body img { width: 100%; height: 100%; object-fit: cover; }

/* Hero responsive */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero h1 { max-width: 100%; }
  .hero-right { padding: 16px; max-width: 540px; margin: 0 auto; }
  .hero-card { aspect-ratio: 3/2; }
  .hero-chip-live { bottom: 80px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 28px 20px; }
}
@media (max-width: 720px) {
  .hero { padding: 56px 0 56px; }
  .hero h1 { font-size: clamp(2.2rem, 9vw, 3.4rem); }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { justify-content: center; }
  .hero-right { padding: 12px; }
  .hero-card { aspect-ratio: 4/5; border-radius: 18px; }
  .hero-chip { padding: 10px 12px; font-size: .8rem; }
  .hero-chip-price { left: 24px; }
  .hero-chip-price .price { font-size: 1.25rem; }
  .hero-chip-live { bottom: 70px; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 20px 16px; }
  .hero-stat-num { font-size: 1.4rem; }
}

/* ============================================================
   Step grid (01/02/03)
   ============================================================ */
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  max-width: 1080px; margin: 0 auto;
}
.step-card {
  background: var(--panel-light);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-1); border-color: var(--green); }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .9rem; font-weight: 700; color: var(--green-3);
  background: var(--green-glow);
  width: 40px; height: 40px; border-radius: 50%;
  margin-bottom: 24px; letter-spacing: .01em;
}
.step-card h3 { margin-bottom: 10px; }
.step-card p { color: var(--ink-2); margin: 0; }

/* Numbered list version used on /process page */
.steps {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.steps li {
  padding: 32px 28px;
  background: var(--panel-light);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.steps li:hover { transform: translateY(-3px); border-color: var(--green); }
.steps .step-no {
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .82rem; font-weight: 700; color: var(--green-3);
  background: var(--green-glow);
  width: 36px; height: 36px; border-radius: 50%;
  margin-bottom: 18px;
}
.steps h3 { font-size: 1.1rem; margin: 0 0 8px; }
.steps p { margin: 0; color: var(--ink-2); font-size: .96rem; }

/* ============================================================
   Service cards (homepage + services hub)
   ============================================================ */
.service-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.service-card {
  position: relative;
  background: var(--panel-light);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.service-card:hover { transform: translateY(-4px); border-color: var(--green); box-shadow: var(--shadow-1); }
.service-card--featured { border-color: var(--green); }
.card-badge {
  position: absolute; top: 16px; left: 16px; z-index: 3;
  background: var(--green); color: #06200d;
  font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: 6px 11px; border-radius: var(--radius-pill);
}
.service-media { aspect-ratio: 4/3; overflow: hidden; position: relative; background: var(--panel-near); }
.service-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.service-card:hover .service-media img { transform: scale(1.04); }

.service-body { padding: 24px 24px 26px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.service-body h3 { margin: 0; }
.service-body p { margin: 0; color: var(--ink-2); font-size: .96rem; }
.service-body ul {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 6px;
}
.service-body ul li {
  position: relative; padding-left: 20px; font-size: .92rem; color: var(--ink-3);
}
.service-body ul li::before {
  content: ""; position: absolute; left: 0; top: 8px; width: 10px; height: 2px;
  background: var(--green); border-radius: 1px;
}
.price-line {
  margin: auto 0 0; padding-top: 16px; border-top: 1px solid var(--line);
  display: flex; align-items: baseline; justify-content: space-between;
}
.price-line span { color: var(--ink-3); font-size: .78rem; text-transform: uppercase; letter-spacing: .14em; font-weight: 600; }
.price-line strong { font-size: 1.5rem; color: var(--ink); font-weight: 800; letter-spacing: -.02em; }

.services-cta { margin-top: 44px; display: flex; gap: 18px; align-items: center; flex-wrap: wrap; justify-content: center; }

/* ============================================================
   Compare table (Apple-style us vs them)
   ============================================================ */
.apple-pricing { padding: clamp(64px, 8vw, 120px) 0; background: var(--panel-light); }
.apple-pricing-head { text-align: center; max-width: 760px; margin: 0 auto 48px; }
.apple-pricing-head h2 { margin-bottom: 12px; }
.apple-pricing-head p { color: var(--ink-2); }

.apple-compare {
  max-width: 1080px; margin: 0 auto;
  border-radius: var(--radius);
  background: var(--panel-light);
  border: 1px solid var(--line);
  overflow: hidden;
}
.apple-compare-row {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr;
  border-bottom: 1px solid var(--line);
}
.apple-compare-row:last-child { border-bottom: 0; }
.apple-compare-row .cell {
  padding: 22px 24px;
  font-size: .96rem;
  color: var(--ink-2);
  border-right: 1px solid var(--line);
  display: flex; align-items: center;
}
.apple-compare-row .cell:last-child { border-right: 0; }
.cell-label { font-weight: 600; color: var(--ink); background: var(--bg); }
.cell-us { background: rgba(34,197,94,.06); color: var(--ink); font-weight: 500; }
.apple-compare-header .cell { padding: 20px 24px; background: var(--panel-near); font-weight: 700; }
.apple-compare-header .cell-us { background: rgba(34,197,94,.12); }
.apple-col-title { display: block; }
.apple-badge {
  display: inline-block; margin-bottom: 6px;
  font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--green-3); background: var(--green-glow);
  padding: 4px 10px; border-radius: var(--radius-pill);
}
.apple-em-dash { color: var(--ink-3); }
.apple-mobile-header { display: none; }

/* Apple pricing display */
.apple-pricing-display {
  max-width: 1080px; margin: 48px auto 0; text-align: center;
}
.apple-pricing-name { font-size: .9rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); margin: 0 0 8px; font-weight: 600; }
.apple-pricing-price { font-size: clamp(2rem, 3vw + .4rem, 3rem); font-weight: 800; letter-spacing: -.025em; margin: 0 0 18px; color: var(--ink); }
.apple-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink); color: var(--ink-inv);
  padding: 16px 28px; border-radius: var(--radius-pill);
  font-weight: 600; text-decoration: none;
  transition: transform .2s var(--ease), background .2s var(--ease);
}
.apple-cta:hover { background: var(--green); color: #062c12; transform: translateY(-1px); }
.apple-pricing-note { color: var(--ink-3); font-size: .9rem; margin: 14px 0 0; }

/* Apple add-on block */
.apple-addon { padding: clamp(48px, 6vw, 80px) 0; background: var(--panel-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.apple-addon-inner { text-align: center; max-width: 720px; margin: 0 auto; }
.apple-addon-eyebrow { font-size: .78rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--green-3); margin: 0 0 14px; }
.apple-addon-title { font-size: clamp(1.6rem, 2vw + .5rem, 2.4rem); font-weight: 800; letter-spacing: -.02em; margin: 0 0 16px; }
.apple-addon-body { color: var(--ink-2); margin: 0 0 8px; }
.apple-addon-note { color: var(--ink-3); font-size: .92rem; }

/* ============================================================
   Pricing page table (full price grid)
   ============================================================ */
.price-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  max-width: 1180px; margin: 0 auto;
}
.price-card {
  background: var(--panel-light);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  display: flex; flex-direction: column;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.price-card:hover { border-color: var(--green); box-shadow: var(--shadow-1); }
.price-card h3 {
  margin: 0 0 6px; font-size: 1.1rem; font-weight: 700;
}
.price-card .price-card-icon { font-size: 1.6rem; margin-bottom: 14px; }
.price-card .price-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.price-card .price-list li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
  padding: 10px 0; border-bottom: 1px dashed var(--line);
  color: var(--ink-2); font-size: .96rem;
}
.price-card .price-list li:last-child { border-bottom: 0; }
.price-card .price-list strong { font-weight: 700; color: var(--ink); font-size: 1rem; }
.price-card .price-card-foot { margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--line); font-size: .85rem; color: var(--ink-3); }

/* ============================================================
   Gallery
   ============================================================ */
.gallery-grid {
  display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 150px; gap: 14px;
  max-width: 1180px; margin: 0 auto;
}
.gallery-grid figure { margin: 0; overflow: hidden; border-radius: var(--radius-sm); border: 1px solid var(--line); background: var(--panel-near); position: relative; }
.gallery-grid figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.gallery-grid figure:hover img { transform: scale(1.04); }
.g-1  { grid-column: span 5; grid-row: span 3; }
.g-2  { grid-column: span 4; grid-row: span 2; }
.g-3  { grid-column: span 3; grid-row: span 2; }
.g-4  { grid-column: span 3; grid-row: span 2; }
.g-5  { grid-column: span 4; grid-row: span 2; }
.g-6  { grid-column: span 5; grid-row: span 2; }
.g-7  { grid-column: span 4; grid-row: span 2; }
.g-8  { grid-column: span 4; grid-row: span 2; }
.g-9  { grid-column: span 4; grid-row: span 2; }
.g-10 { grid-column: span 4; grid-row: span 2; }
.g-11 { grid-column: span 4; grid-row: span 2; }
.g-12 { grid-column: span 4; grid-row: span 2; }

/* ============================================================
   Service-area / city grid
   ============================================================ */
.area-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: start; max-width: 1180px; margin: 0 auto; }
.city-list {
  list-style: none; padding: 0; margin: 24px 0 18px;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 28px;
}
.city-list li { padding-left: 22px; position: relative; }
.city-list li::before { content: ""; position: absolute; left: 0; top: 11px; width: 12px; height: 2px; background: var(--green); }
.city-list li a { color: var(--ink-2); }
.city-list li a:hover { color: var(--ink); }
.micro { color: var(--ink-3); font-size: .9rem; }
.area-map {
  aspect-ratio: 4/4.6; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); background: var(--panel-light);
  box-shadow: var(--shadow-1);
}
.area-map iframe { width: 100%; height: 100%; border: 0; }

.city-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 1180px; margin: 32px auto 0; }
.city-card {
  display: block; padding: 28px;
  background: var(--panel-light);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none; color: var(--ink);
  transition: border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.city-card:hover { border-color: var(--green); transform: translateY(-3px); color: var(--ink); box-shadow: var(--shadow-1); }
.city-card .zip { display: inline-block; color: var(--green-3); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; margin-bottom: 8px; }
.city-card h3 { margin: 0 0 8px; }
.city-card p { margin: 0; color: var(--ink-2); font-size: .94rem; }

/* ============================================================
   Reviews
   ============================================================ */
.review-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; max-width: 1080px; margin: 0 auto; }
.review {
  margin: 0; padding: 32px 30px; border-radius: var(--radius);
  background: var(--panel-light); border: 1px solid var(--line);
}
.review blockquote { margin: 0 0 18px; font-size: 1.04rem; color: var(--ink); line-height: 1.55; font-weight: 500; }
.review figcaption { color: var(--ink-3); font-size: .9rem; }
.review figcaption strong { color: var(--ink); font-weight: 700; }
.stars { color: var(--green); letter-spacing: .1em; }
.review-cta { text-align: center; margin-top: 36px; color: var(--ink-3); }
.review-cta a { color: var(--green-3); font-weight: 600; }
.review-cta a:hover { color: var(--green); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 880px; margin: 0 auto; }
.faq-list details {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}
.faq-list details:last-of-type { border-bottom: 1px solid var(--line); }
.faq-list summary {
  font-weight: 700; font-size: 1.1rem; letter-spacing: -.01em;
  color: var(--ink); cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+"; font-weight: 300; font-size: 1.8rem;
  color: var(--green); transition: transform .25s var(--ease);
  line-height: 1;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { margin: 14px 0 0; color: var(--ink-2); max-width: 760px; }
.faq-list details a { color: var(--green-3); font-weight: 600; }
.faq-list details a:hover { color: var(--green); }

/* ============================================================
   Final CTA (dark panel)
   ============================================================ */
.cta-final {
  padding: clamp(80px, 9vw, 130px) 0;
  text-align: center;
  background: var(--panel-dark);
  color: var(--ink-inv);
}
.cta-final .eyebrow { color: var(--green-2); justify-content: center; }
.cta-final .eyebrow .dot { background: var(--green-2); box-shadow: 0 0 0 4px rgba(34,197,94,.25); }
.cta-final h2 { color: var(--ink-inv); }
.cta-final .lede { color: var(--ink-inv-2); margin-left: auto; margin-right: auto; }
.cta-final .btn-row { justify-content: center; }

/* ============================================================
   Call CTA section (phone-only)
   ============================================================ */
.call-cta { padding: clamp(64px, 8vw, 120px) 0; text-align: center; background: var(--panel-soft); }
.call-cta-inner { max-width: 760px; margin: 0 auto; }
.call-cta .eyebrow { justify-content: center; }
.call-cta .lede { margin: 0 auto 36px; }

.call-button {
  display: inline-flex; align-items: center; gap: 16px;
  padding: 22px 36px; border-radius: var(--radius-pill);
  background: var(--ink); color: var(--ink-inv);
  text-decoration: none;
  box-shadow: 0 14px 40px -12px rgba(0,0,0,.35);
  transition: transform .25s var(--ease), background .25s var(--ease);
  margin-bottom: 30px;
}
.call-button:hover { background: var(--green); color: #062c12; transform: translateY(-2px); box-shadow: 0 22px 60px -14px rgba(22,163,74,.45); }
.call-button-text { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.1; }
.call-button-label { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 600; opacity: .75; }
.call-button-number { font-size: 1.6rem; font-weight: 800; letter-spacing: -.015em; }

.hours-list {
  list-style: none; padding: 28px 0 0; margin: 0 auto;
  display: inline-flex; gap: 40px; flex-wrap: wrap; justify-content: center;
  max-width: 720px; border-top: 1px solid var(--line);
}
.hours-list li {
  display: flex; flex-direction: column; gap: 4px; align-items: center;
  font-size: .92rem; color: var(--ink-2);
}
.hours-list strong {
  font-size: .7rem; text-transform: uppercase; letter-spacing: .2em; font-weight: 700;
  color: var(--green-3);
}

/* ============================================================
   Related rail (cross-link cards)
   ============================================================ */
.related { padding: clamp(64px, 8vw, 100px) 0; background: var(--panel-near); border-top: 1px solid var(--line); }
.related .eyebrow { justify-content: center; }
.related h2 { text-align: center; }
.related-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  max-width: 1180px; margin: 40px auto 0;
}
.related-card {
  display: block; padding: 26px;
  background: var(--panel-light); border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink); text-decoration: none;
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.related-card:hover { transform: translateY(-3px); border-color: var(--green); color: var(--ink); box-shadow: var(--shadow-1); }
.related-card h3 { margin: 0 0 8px; font-size: 1.05rem; }
.related-card p { margin: 0; color: var(--ink-2); font-size: .92rem; }
.related-card .arrow { color: var(--green-3); font-weight: 600; margin-top: 12px; display: inline-block; font-size: .85rem; letter-spacing: .04em; }

/* ============================================================
   Service detail sub-pages (long-form blocks)
   ============================================================ */
.svc-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start;
  padding: 60px 0; border-bottom: 1px solid var(--line);
  max-width: 1180px; margin: 0 auto;
}
.svc-block .svc-media { position: sticky; top: 100px; }
.svc-block:last-child { border-bottom: 0; }
.svc-block:nth-child(even) .svc-media { order: 2; }
.svc-block .svc-media {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); aspect-ratio: 4/3; background: var(--panel-near);
}
.svc-block .svc-media img { width: 100%; height: 100%; object-fit: cover; }
.svc-block ul { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 10px; }
.svc-block ul li { position: relative; padding-left: 22px; color: var(--ink-2); }
.svc-block ul li::before {
  content: ""; position: absolute; left: 0; top: 12px; width: 12px; height: 2px; background: var(--green);
}

/* Long-form text typography */
.long-form { max-width: 880px; }
.long-form h2 { margin-top: 48px; }
.long-form h3 { margin-top: 32px; font-size: 1.25rem; font-weight: 700; }
.long-form ul, .long-form ol { padding-left: 22px; }
.long-form ul li, .long-form ol li { margin-bottom: 8px; color: var(--ink-2); }
.long-form blockquote {
  margin: 28px 0; padding: 20px 24px;
  border-left: 3px solid var(--green);
  background: var(--panel-soft);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--ink); font-style: italic;
}
.long-form a { color: var(--green-3); font-weight: 600; }
.long-form a:hover { color: var(--green); }

/* Tables (pricing-style) */
.pricing-table {
  width: 100%; margin-top: 28px;
  border-collapse: separate; border-spacing: 0;
  background: var(--panel-light); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
}
.pricing-table th, .pricing-table td {
  padding: 16px 20px; text-align: left;
  border-bottom: 1px solid var(--line);
}
.pricing-table th {
  color: var(--ink-3); text-transform: uppercase; letter-spacing: .14em;
  font-size: .76rem; font-weight: 700; background: var(--panel-near);
}
.pricing-table tr:last-child td { border-bottom: 0; }
.pricing-table td:last-child { font-weight: 700; color: var(--ink); }

/* TOC for sub-pages */
.toc {
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px 24px; background: var(--panel-light);
  margin: 0 0 40px;
  max-width: 880px;
}
.toc h2 { font-size: .76rem; text-transform: uppercase; letter-spacing: .16em; color: var(--ink-3); margin: 0 0 12px; font-weight: 700; }
.toc ul { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.toc ul li a {
  font-size: .88rem; padding: 8px 14px; border-radius: var(--radius-pill);
  background: var(--panel-near); color: var(--ink-2);
  border: 1px solid var(--line);
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.toc ul li a:hover { background: var(--green); color: #06200d; border-color: var(--green); }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--panel-dark); color: var(--ink-inv); }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 56px;
  padding: 80px 28px 56px;
}
.f-brand .brand--footer { color: var(--ink-inv); margin-bottom: 18px; }
.f-brand .brand--footer .brand-mark { background: rgba(34,197,94,.18); }
.f-brand .brand--footer .brand-line-2 { color: var(--ink-inv-3); }
.f-brand p { color: var(--ink-inv-2); max-width: 380px; font-size: .94rem; }
.socials { list-style: none; padding: 0; margin: 18px 0 0; display: flex; gap: 10px; }
.socials a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.06); color: var(--ink-inv-2);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 700; letter-spacing: .08em;
  transition: background .2s var(--ease), color .2s var(--ease);
  border: 1px solid var(--line-dark);
}
.socials a:hover { background: var(--green); color: #06200d; border-color: var(--green); }

.f-col h4 { margin: 0 0 18px; color: var(--ink-inv-3); font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; }
.f-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.f-col ul li a { color: var(--ink-inv-2); font-size: .94rem; }
.f-col ul li a:hover { color: var(--green-2); }
.f-contact .btn { margin-top: 18px; }

.footer-bar { border-top: 1px solid var(--line-dark); }
.footer-bar-inner {
  padding: 22px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.footer-bar-inner p { margin: 0; color: var(--ink-inv-3); font-size: .85rem; }

.kelo-tag { display: inline-flex; align-items: center; gap: 6px; }
.kelo-link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: var(--radius-pill);
  background: rgba(34,197,94,.12); color: var(--green-2);
  border: 1px solid rgba(34,197,94,.28);
  transition: all .25s var(--ease);
}
.kelo-link:hover { background: var(--green); color: #06200d; border-color: var(--green); }
.kelo-link svg { color: currentColor; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1080px) {
  .steps-grid { grid-template-columns: 1fr; max-width: 560px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .area-grid { grid-template-columns: 1fr; gap: 40px; }
  .city-grid { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .svc-block { grid-template-columns: 1fr; padding: 40px 28px; gap: 24px; }
  .svc-block:nth-child(even) .svc-media { order: 0; }
  .gallery-grid { grid-template-columns: repeat(8, 1fr); grid-auto-rows: 130px; }
  .g-1, .g-2 { grid-column: span 4; grid-row: span 3; }
  .g-3, .g-4, .g-5, .g-6, .g-7, .g-8, .g-9, .g-10, .g-11, .g-12 { grid-column: span 4; grid-row: span 2; }
}

@media (max-width: 720px) {
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav-list {
    position: absolute; top: 100%; right: 12px;
    flex-direction: column; gap: 4px;
    background: rgba(247,247,245,.98); backdrop-filter: blur(12px);
    border: 1px solid var(--line); border-radius: 16px;
    padding: 14px;
    width: min(280px, calc(100vw - 24px));
    transform: translateY(-8px); opacity: 0; pointer-events: none;
    transition: all .25s var(--ease);
    box-shadow: var(--shadow-2);
  }
  .nav-list.open { transform: translateY(8px); opacity: 1; pointer-events: auto; }
  .nav-list a { width: 100%; padding: 12px 14px; }
  .nav-list a.nav-cta { margin: 6px 0 0; text-align: center; justify-content: center; }
  .service-grid { grid-template-columns: 1fr; gap: 18px; }
  .price-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .city-grid { grid-template-columns: 1fr; }
  .city-list { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 130px; }
  .g-1, .g-2, .g-3, .g-4, .g-5, .g-6, .g-7, .g-8, .g-9, .g-10, .g-11, .g-12 { grid-column: span 4; grid-row: span 2; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; padding: 60px 24px 48px; }
  .footer-bar-inner { flex-direction: column; text-align: center; }
  .apple-compare-row { grid-template-columns: 1fr; }
  .apple-compare-row .cell { border-right: 0; border-bottom: 1px dashed var(--line); padding: 14px 18px; }
  .apple-compare-row .cell:last-child { border-bottom: 0; }
  .apple-compare-header { display: none; }
  .apple-mobile-header { display: flex; flex-direction: column; align-items: center; padding: 18px; background: var(--panel-near); border-bottom: 1px solid var(--line); }
  .call-button { padding: 18px 24px; gap: 12px; }
  .call-button-number { font-size: 1.35rem; }
  .hours-list { flex-direction: column; gap: 18px; }
  h1, .display-xxl { font-size: clamp(2.2rem, 8vw, 3.2rem); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
