/* =============================================================
   The Garage Glowup — styles.css
   Color palette:
     --orange:      #F26522
     --white:       #FFFFFF
     --off-white:   #F8F7F5
     --charcoal:    #1A1A1A
     --muted:       #6B6B6B
   ============================================================= */

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

:root {
  --orange:     #F26522;
  --orange-lt:  #fff3ec;
  --white:      #FFFFFF;
  --off-white:  #F8F7F5;
  --charcoal:   #1A1A1A;
  --charcoal-2: #2a2a2a;
  --muted:      #6B6B6B;
  --muted-lt:   #9a9a9a;
  --radius:     12px;
  --shadow:     0 4px 24px rgba(0,0,0,.08);
  --shadow-lg:  0 8px 40px rgba(0,0,0,.14);
  --trans:      .25s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
}

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

/* ── Typography helpers ── */
.font-display  { font-family: 'Bebas Neue', sans-serif; letter-spacing: .02em; }
.font-condensed{ font-family: 'Barlow Condensed', sans-serif; }

.accent { color: var(--orange); }

/* ── Layout ── */
.container {
  width: min(1180px, 92vw);
  margin-inline: auto;
}

.section-pad { padding-block: 100px; }

/* ── Background helpers ── */
.bg-white     { background: var(--white); }
.bg-off-white { background: var(--off-white); }
.bg-dark      { background: var(--charcoal); }
.bg-orange    { background: var(--orange); }

/* ── Section headers ── */
.section-header { text-align: center; margin-bottom: 60px; }

.section-label {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.section-label.light { color: rgba(255,255,255,.6); }

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.08;
  margin-bottom: 16px;
}
.section-title.light { color: var(--white); }

.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 560px;
  margin-inline: auto;
}
.section-sub.light { color: rgba(255,255,255,.65); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 6px;
  transition: transform var(--trans), box-shadow var(--trans), background var(--trans), color var(--trans);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--orange);
  color: var(--white);
}
.btn-primary:hover { background: #d95918; }

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 2px solid var(--charcoal);
}
.btn-outline:hover { background: var(--charcoal); color: var(--white); }

.btn-dark {
  background: var(--charcoal);
  color: var(--white);
}
.btn-dark:hover { background: #333; }

.btn-sm  { font-size: .85rem; padding: 10px 20px; }
.btn-lg  { font-size: 1.05rem; padding: 16px 34px; }
.btn-full { width: 100%; justify-content: center; }

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: none;
}

/* ======================================================
   LOADER
   ====================================================== */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .5s ease, visibility .5s ease;
  overflow: hidden;
}
#loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

/* Center content */
.loader-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Broom icon + sweep animation */
.loader-icon-wrap {
  position: relative;
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  height: 56px;
  margin-bottom: 12px;
}

.loader-broom {
  font-size: 2.4rem;
  color: var(--orange);
  animation: broomSweep 1s ease-in-out infinite alternate;
  transform-origin: top center;
  display: inline-block;
}
@keyframes broomSweep {
  0%   { transform: rotate(-18deg) translateX(-4px); }
  100% { transform: rotate(18deg)  translateX(4px);  }
}

/* Dust particles kicked up by the broom */
.loader-dust {
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
}
.loader-dust span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(242,101,34,.55);
  animation: dustPop 1s ease-in-out infinite alternate;
}
.loader-dust span:nth-child(1) { animation-delay: 0s;    animation-duration: .9s; }
.loader-dust span:nth-child(2) { animation-delay: .15s;  animation-duration: 1.1s; }
.loader-dust span:nth-child(3) { animation-delay: .3s;   animation-duration: .85s; }
@keyframes dustPop {
  0%   { transform: translateY(0)   scale(1);   opacity: .6; }
  100% { transform: translateY(-10px) scale(.4); opacity: 0; }
}

/* Logo */
.loader-logo {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.4rem;
  color: var(--white);
  letter-spacing: .06em;
  line-height: 1;
  animation: logoPulse 1.2s ease-in-out infinite alternate;
}
.loader-logo span { color: var(--orange); }
@keyframes logoPulse {
  0%   { letter-spacing: .04em; }
  100% { letter-spacing: .1em;  }
}

/* Tagline */
.loader-tagline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin: 8px 0 0;
}
.loader-tagline span { color: rgba(242,101,34,.5); }

/* Progress bar */
.loader-bar {
  width: 180px;
  height: 3px;
  background: rgba(255,255,255,.1);
  border-radius: 2px;
  margin: 20px auto 0;
  overflow: hidden;
}
.loader-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #F26522, #ff9a5c);
  border-radius: 2px;
  animation: loaderFill 1s ease forwards;
}
@keyframes loaderFill { to { width: 100%; } }

/* ======================================================
   HEADER
   ====================================================== */

/* Prevent white body from bleeding above the hero on homepage */
html:has(#hero),
html:has(#hero) body { background-color: var(--charcoal); }

#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  /* transition background-color (not background shorthand) so the
     ::before gradient and background-color animate independently */
  transition: background-color var(--trans), box-shadow var(--trans), padding var(--trans);
  padding-block: 22px;
  background-color: transparent;
}

/* Gradient overlay — fades from dark to transparent, makes header
   feel integrated with the hero. Hidden once scrolled. */
#site-header:not(.page-header)::before {
  content: '';
  position: absolute;
  inset: 0;
  /* extend gradient well below the header bar for a seamless fade into the hero */
  bottom: -80px;
  background: linear-gradient(to bottom, rgba(0,0,0,.55) 0%, rgba(0,0,0,0) 100%);
  pointer-events: none;
  z-index: -1;
  transition: opacity var(--trans);
}

#site-header.scrolled {
  background-color: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,.1);
  padding-block: 14px;
}
/* Hide gradient once header has solid white bg */
#site-header.scrolled::before { opacity: 0; }

.header-inner {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Logo */
.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.75rem;
  letter-spacing: .04em;
  color: var(--white);
  transition: color var(--trans);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
#site-header.scrolled .logo { color: var(--charcoal); }
.logo-accent { color: var(--orange); }
.logo-badge {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  background: var(--orange);
  color: var(--white);
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 2px;
  vertical-align: middle;
}

/* Nav */
.main-nav {
  display: flex;
  gap: 32px;
  margin-left: auto;
}
.main-nav a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  transition: color var(--trans);
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform var(--trans);
  transform-origin: left;
}
.main-nav a:hover { color: var(--white); }
.main-nav a:hover::after { transform: scaleX(1); }

#site-header.scrolled .main-nav a { color: var(--charcoal); }
#site-header.scrolled .main-nav a:hover { color: var(--orange); }

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 16px; margin-left: 12px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  width: 32px;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--trans), opacity var(--trans), background var(--trans);
}
#site-header.scrolled .hamburger span { background: var(--charcoal); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--white);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
}
.mobile-nav.open { max-height: 400px; padding-block: 12px 20px; }

.mobile-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--charcoal);
  padding: 12px 24px;
  border-bottom: 1px solid #eee;
  transition: color var(--trans);
}
.mobile-link:hover { color: var(--orange); }
.mobile-cta { margin: 16px 24px 0; text-align: center; }

/* ======================================================
   HERO
   ====================================================== */
#hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--charcoal);
  padding-top: 100px;
  overflow: hidden;
  position: relative;
}
/* Subtle top-fade for depth behind the header gradient */
#hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 220px;
  background: linear-gradient(to bottom, rgba(0,0,0,.45) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}
/* Orange accent line at the bottom of the hero */
#hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--orange) 30%, var(--orange) 70%, transparent 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-block: 80px 60px;
}

/* Hero left */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(242,101,34,.12);
  border: 1px solid rgba(242,101,34,.25);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  line-height: .95;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: .02em;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.7);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-buttons .btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,.4);
}
.hero-buttons .btn-outline:hover {
  background: var(--white);
  color: var(--charcoal);
  border-color: var(--white);
}

/* Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}
.stat { text-align: center; padding-inline: 24px; }
.stat:first-child { padding-left: 0; }
.stat-num {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-num .fa-star { font-size: 1.4rem; color: #F5B800; vertical-align: middle; margin-left: 2px; }
.stat-label {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.15);
  flex-shrink: 0;
}

/* Hero right */
.hero-visual { position: relative; }

.hero-img-wrap {
  position: relative;
  z-index: 1;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
}

/* Chip card */
.hero-chip {
  position: absolute;
  bottom: 28px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  padding: 12px 18px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.chip-icon { font-size: 1.4rem; color: #22c55e; }
.chip-text strong { display: block; font-size: .95rem; color: var(--charcoal); }
.chip-text span  { font-size: .8rem; color: var(--muted); }

/* Rating badge */
.hero-rating-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--orange);
  color: var(--white);
  padding: 8px 14px;
  border-radius: 8px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: .04em;
  box-shadow: 0 4px 12px rgba(242,101,34,.4);
}
.hero-rating-badge .fa-star { font-size: 1rem; }

/* Orange diagonal shape */
.hero-shape {
  position: absolute;
  inset: -20px -80px -40px -20px;
  background: linear-gradient(135deg, var(--orange) 0%, #d95918 100%);
  border-radius: 20px;
  z-index: 0;
  transform: rotate(4deg);
  opacity: .18;
}

/* ======================================================
   TRUST BAR
   ====================================================== */
#trust-bar {
  background: var(--charcoal);
  padding-block: 28px;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.trust-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.85);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.trust-badge i { color: var(--orange); font-size: 1.2rem; }

/* ======================================================
   BEFORE / AFTER
   ====================================================== */
.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.ba-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--trans), box-shadow var(--trans);
}
.ba-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* Slider */
.ba-slider {
  position: relative;
  /* 3:2 ratio matches the uploaded images (970×675 ≈ 3:2) */
  aspect-ratio: 3 / 2;
  width: 100%;
  user-select: none;
  overflow: hidden;
  cursor: ew-resize;
}

.ba-before,
.ba-after {
  position: absolute;
  inset: 0;
}
.ba-before img,
.ba-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

/* AFTER starts at 50% revealed from right */
.ba-after { clip-path: inset(0 50% 0 0); }

/* Labels */
.ba-label {
  position: absolute;
  top: 14px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}
.before-label { left: 14px; background: rgba(0,0,0,.55); color: #fff; }
.after-label  { right: 14px; background: var(--orange); color: #fff; }

/* Drag handle */
.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  pointer-events: none;
}
.handle-line {
  width: 2px;
  flex: 1;
  background: var(--white);
  box-shadow: 0 0 6px rgba(0,0,0,.4);
}
.handle-circle {
  width: 40px;
  height: 40px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: var(--white);
  font-size: .7rem;
  box-shadow: 0 2px 10px rgba(0,0,0,.3);
  flex-shrink: 0;
}

/* Caption */
.ba-caption {
  padding: 16px 20px;
}
.ba-location {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 4px;
}
.ba-caption p {
  font-size: .9rem;
  color: var(--muted);
}

/* ======================================================
   WHY GARAGE GLOWUP — Feature Cards
   ====================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  position: relative;
  border-radius: var(--radius);
  padding: 36px 28px;
  overflow: hidden;
  transition: transform var(--trans), box-shadow var(--trans);
  border-bottom: 3px solid rgba(255,255,255,.2);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-bottom-color: rgba(255,255,255,.7);
}

/* Card 01 — Fast Turnaround: bold orange (brand primary) */
.feature-card:nth-child(1) {
  background: linear-gradient(140deg, #F26522 0%, #c94f10 100%);
}

/* Card 02 — Eco-Safe: deep forest green (eco / nature) */
.feature-card:nth-child(2) {
  background: linear-gradient(140deg, #2d7a4f 0%, #1a4d30 100%);
}

/* Card 03 — Licensed & Insured: slate navy (trust / authority) */
.feature-card:nth-child(3) {
  background: linear-gradient(140deg, #1e3a5f 0%, #0f2240 100%);
}

/* Card 04 — Satisfaction: rich charcoal (premium / serious) */
.feature-card:nth-child(4) {
  background: linear-gradient(140deg, #2a2a2a 0%, #111111 100%);
}

.feature-watermark {
  position: absolute;
  top: -8px;
  right: 16px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 6rem;
  color: rgba(255,255,255,.08);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.feature-icon-box {
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 20px;
  backdrop-filter: blur(4px);
}

.feature-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #fff;
}

.feature-card p {
  font-size: .9rem;
  color: rgba(255,255,255,.72);
  line-height: 1.65;
}

/* ======================================================
   HOW IT WORKS — Steps
   ====================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 24px;
  align-items: center;
}

.step {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
}

.step-number {
  width: 52px;
  height: 52px;
  background: var(--orange);
  color: var(--white);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(242,101,34,.35);
}

.step h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}

.step p {
  font-size: .9rem;
  color: rgba(255,255,255,.5);
  line-height: 1.65;
}

.step-arrow {
  font-size: 1.6rem;
  color: var(--orange);
  text-align: center;
}

/* ======================================================
   SCROLLING MARQUEE
   ====================================================== */
#services-marquee {
  background: var(--orange);
  padding-block: 20px;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track { overflow: hidden; }

.marquee-inner {
  display: inline-flex;
  gap: 0;
  animation: marqueeScroll 28s linear infinite;
}
.marquee-inner:hover { animation-play-state: paused; }

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  padding-inline: 36px;
  position: relative;
}
.marquee-item::after {
  content: '•';
  position: absolute;
  right: 0;
  color: rgba(255,255,255,.4);
}
.marquee-item:last-child::after { display: none; }
.marquee-item i { font-size: .9rem; opacity: .85; }

@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ======================================================
   TESTIMONIALS
   ====================================================== */
.testimonials-slider-wrap { /* overflow clip on desktop is a no-op */ }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

/* Dots hidden on desktop, shown by media query on mobile */
.testimonials-dots { display: none; }

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}

.stars { color: #F5B800; font-size: .95rem; display: flex; gap: 3px; }

.quote {
  font-style: italic;
  font-size: .95rem;
  color: var(--charcoal);
  line-height: 1.7;
  flex: 1;
}
.quote::before { content: '\201C'; color: var(--orange); font-size: 1.3em; line-height: 0; vertical-align: -0.3em; }
.quote::after  { content: '\201D'; color: var(--orange); font-size: 1.3em; line-height: 0; vertical-align: -0.3em; }

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange-lt);
  border: 2px solid var(--orange);
  color: var(--orange);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-meta { flex: 1; min-width: 80px; }
.testimonial-meta strong { display: block; font-size: .9rem; color: var(--charcoal); }
.testimonial-meta span  { font-size: .78rem; color: var(--muted); }

.location-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--orange-lt);
  color: var(--orange);
  padding: 4px 10px;
  border-radius: 100px;
  margin-left: auto;
}

/* ======================================================
   PRICING
   ====================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
  transition: transform var(--trans), box-shadow var(--trans);
  border: 1px solid transparent;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}

/* Featured card */
.pricing-card.featured {
  background: var(--charcoal);
  color: var(--white);
  border-color: transparent;
  padding-top: 52px;
}
.pricing-card.featured:hover { border-color: var(--orange); }

.popular-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--orange);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}

.pricing-top { margin-bottom: 28px; }

.plan-name {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

.plan-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  line-height: 1;
  color: inherit;
  margin-bottom: 10px;
}
.price-dollar {
  font-size: 1.8rem;
  vertical-align: super;
  line-height: 0;
}

.plan-desc {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.55;
}
.pricing-card.featured .plan-desc { color: rgba(255,255,255,.5); }

.plan-features {
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
}
.feature-yes i { color: var(--orange); }
.feature-no  { opacity: .4; }
.feature-no  i { color: var(--muted); }
.pricing-card.featured .feature-yes i { color: var(--orange); }
.pricing-card.featured .feature-no  { color: rgba(255,255,255,.4); }

.pricing-card.featured .btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,.3);
}
.pricing-card.featured .btn-outline:hover {
  background: var(--white);
  color: var(--charcoal);
}

/* ======================================================
   FINAL CTA
   ====================================================== */
.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.cta-text .section-label { color: rgba(255,255,255,.7); }

.cta-underline {
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,.4);
  text-underline-offset: 6px;
}

.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25);
  padding: 14px 22px;
  border-radius: 10px;
  margin: 28px 0 24px;
}
.cta-phone i { color: var(--white); font-size: 1.1rem; }
.cta-phone a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  color: var(--white);
  letter-spacing: .04em;
}

.cta-perks {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cta-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .95rem;
  color: rgba(255,255,255,.85);
}
.cta-perks li i { color: rgba(255,255,255,.8); }

/* Form card */
.form-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 12px 48px rgba(0,0,0,.16);
  position: relative;
}
.form-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}
.form-group label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  color: var(--charcoal);
  background: var(--off-white);
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  padding: 11px 14px;
  transition: border-color var(--trans), box-shadow var(--trans);
  width: 100%;
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(242,101,34,.12);
}
.form-group textarea { resize: vertical; }

/* Upload zone */
.upload-optional {
  font-weight: 400;
  color: var(--muted-lt);
  font-size: .75rem;
  text-transform: none;
  letter-spacing: 0;
}

.upload-zone {
  position: relative;
  border: 2px dashed #d0d0d0;
  border-radius: 10px;
  background: var(--off-white);
  transition: border-color var(--trans), background var(--trans);
  cursor: pointer;
  overflow: hidden;
  min-height: 110px;
}
.upload-zone:hover,
.upload-zone.drag-over {
  border-color: var(--orange);
  background: var(--orange-lt);
}

/* The real file input — invisible, covers the whole zone */
.upload-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.upload-prompt {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 24px 16px;
  text-align: center;
  pointer-events: none;
}
.upload-prompt i {
  font-size: 1.8rem;
  color: var(--orange);
  margin-bottom: 4px;
}
.upload-main {
  font-size: .9rem;
  color: var(--charcoal);
}
.upload-main strong { color: var(--orange); }
.upload-hint {
  font-size: .75rem;
  color: var(--muted-lt);
}

/* Thumbnail preview grid */
.upload-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 12px;
}
.upload-preview:empty { display: none; }

.preview-thumb {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid #e0e0e0;
  flex-shrink: 0;
}
.preview-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.preview-remove {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(0,0,0,.6);
  color: #fff;
  border: none;
  font-size: .65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition: background var(--trans);
}
.preview-remove:hover { background: #ef4444; }

/* Hide prompt once previews exist */
.upload-zone.has-files .upload-prompt { display: none; }
.upload-zone.has-files { min-height: unset; }

/* Success state */
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  padding: 40px;
  position: absolute;
  inset: 0;
  background: var(--white);
  border-radius: 16px;
  z-index: 2;
}
.form-success.visible { display: flex; }
.form-success i { font-size: 3rem; color: #22c55e; }
.form-success h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: var(--charcoal);
}
.form-success p { color: var(--muted); font-size: .95rem; }

/* ======================================================
   FOOTER
   ====================================================== */
#site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,.65);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-block: 72px;
}

.footer-brand .logo {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 16px;
  display: inline-flex;
}
.footer-logo { color: var(--white); }

.footer-brand p {
  font-size: .88rem;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 320px;
}

.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  transition: background var(--trans), color var(--trans);
}
.social-links a:hover { background: var(--orange); color: var(--white); }

.footer-links h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: .88rem;
  color: rgba(255,255,255,.5);
  transition: color var(--trans);
}
.footer-links a:hover { color: var(--orange); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-block: 20px;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: .82rem;
  color: rgba(255,255,255,.35);
  flex-wrap: wrap;
}
.footer-ma { color: var(--orange); font-weight: 500; }
.footer-ma i { margin-right: 4px; }

/* ======================================================
   RESPONSIVE
   ====================================================== */

/* ── 1024px ── */
@media (max-width: 1024px) {
  .hero-inner     { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-content   { align-items: center; display: flex; flex-direction: column; }
  .hero-sub       { margin-inline: auto; }
  .hero-stats     { justify-content: center; }
  .hero-shape     { display: none; }
  .hero-img       { height: 380px; }

  .features-grid  { grid-template-columns: 1fr 1fr; }
  .pricing-grid   { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .cta-inner      { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .cta-phone      { margin-inline: auto; }
  .cta-perks      { align-items: center; }
  .footer-grid    { grid-template-columns: 1fr 1fr; }
  .footer-brand   { grid-column: 1 / -1; }
}

/* ── 768px ── */
@media (max-width: 768px) {
  .section-pad    { padding-block: 70px; }

  /* Header */
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }

  /* BA Grid */
  .ba-grid { grid-template-columns: 1fr; }

  /* Features */
  .features-grid { grid-template-columns: 1fr; }

  /* Steps */
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .step-arrow { transform: rotate(90deg); text-align: center; }

  /* Testimonials — mobile slider */
  .testimonials-slider-wrap {
    overflow: hidden;
    margin-inline: -16px; /* bleed to edges so cards feel full-width */
  }
  .testimonials-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    transition: transform .38s cubic-bezier(.4,0,.2,1);
    will-change: transform;
    cursor: grab;
  }
  .testimonials-grid:active { cursor: grabbing; }
  .testimonials-grid.no-transition { transition: none; }

  .testimonial-card {
    flex: 0 0 calc(100vw - 48px);
    width: calc(100vw - 48px);
    min-width: 0;
    margin-inline: 16px;
    scroll-snap-align: start;
  }
  /* First card gets no left gap (bleed is already applied by wrap margin) */
  .testimonial-card:first-child { margin-left: 16px; }

  /* Dots */
  .testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
  }
  .t-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d1d1d1;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background .25s, transform .25s, width .25s;
    flex-shrink: 0;
  }
  .t-dot.active {
    background: var(--orange);
    width: 24px;
    border-radius: 4px;
  }

  /* Form row */
  .form-row { grid-template-columns: 1fr; }

  /* Trust */
  .trust-inner { justify-content: center; gap: 20px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 36px; padding-block: 48px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

/* ── 480px ── */
@media (max-width: 480px) {
  .hero-headline { font-size: 3rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-divider { width: 60px; height: 1px; }
  .hero-chip { left: 12px; bottom: 12px; }
  /* ba-slider uses aspect-ratio: 3/2 — no fixed height needed */
  .form-card { padding: 24px 20px; }
}


/* ======================================================
   INNER PAGES — shared styles
   ====================================================== */

/* Force header white on inner pages */
#site-header.page-header {
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,.1);
}
#site-header.page-header .logo { color: var(--charcoal); }
#site-header.page-header .main-nav a { color: var(--charcoal); }
#site-header.page-header .main-nav a:hover { color: var(--orange); }
#site-header.page-header .hamburger span { background: var(--charcoal); }

/* Page hero banner */
.page-hero {
  background: var(--charcoal);
  padding: 140px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
}
.page-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 18px;
}
.page-breadcrumb a { color: var(--orange); text-decoration: none; }
.page-breadcrumb a:hover { text-decoration: underline; }
.page-breadcrumb i { font-size: .5rem; }
.page-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 5vw, 5rem);
  color: var(--white);
  line-height: 1;
  margin-bottom: 14px;
}
.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.55);
  max-width: 520px;
  margin-inline: auto;
}

/* 2-col grid variant — stays 2×2 on mobile instead of going single column */
.features-grid--2col { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1024px) { .features-grid--2col { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px)  { .features-grid--2col { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 380px)  { .features-grid--2col { grid-template-columns: 1fr; } }

/* ── FAQ Accordion ── */
.faq-list {
  display: flex;
  flex-direction: column;
  border: 1px solid #e8e8e8;
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item { border-bottom: 1px solid #e8e8e8; }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .03em;
  color: var(--charcoal);
  background: var(--white);
  cursor: pointer;
  transition: background var(--trans), color var(--trans);
  border: none;
}
.faq-question:hover { background: var(--off-white); color: var(--orange); }
.faq-question i { color: var(--orange); transition: transform .3s ease; flex-shrink: 0; }
.faq-item.open .faq-question i { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.7;
  padding-inline: 24px;
  background: var(--off-white);
}
.faq-item.open .faq-answer { max-height: 400px; padding: 16px 24px 22px; }

/* ── Contact page ── */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}
.contact-info-block { display: flex; flex-direction: column; gap: 20px; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--off-white);
  border-radius: var(--radius);
  border-left: 3px solid var(--orange);
}
.contact-info-icon {
  width: 44px; height: 44px;
  background: var(--orange-lt);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--orange);
  flex-shrink: 0;
}
.contact-info-text strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .75rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 4px;
}
.contact-info-text a,
.contact-info-text span { font-size: .98rem; color: var(--charcoal); font-weight: 500; }
.contact-info-text a:hover { color: var(--orange); }
.map-wrap { border-radius: var(--radius); overflow: hidden; height: 240px; box-shadow: var(--shadow); margin-top: 4px; }
.map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }

@media (max-width: 768px) {
  .contact-page-grid { grid-template-columns: 1fr; gap: 40px; }
  .page-hero { padding: 120px 0 50px; }
}
