/* ============================================
   220-JUNK | Premium Awwwards-Level Design
   Vancouver's Premier Junk Removal
   ============================================ */

/* --- Design Tokens (Brand Guidelines) --- */
:root {
  --bg: #FAFAF8;
  --bg-alt: #F3F3F0;
  --bg-dark: #0C0C0C;
  --bg-dark-alt: #141414;
  --surface: #FFFFFF;

  --text: #1E1E24;
  --text-secondary: #40424D;
  --text-muted: #6E7180;
  --text-light: #ffffff;

  --border: #D3D6E0;
  --border-light: #EDEFF7;

  /* Brand Primary */
  --green-900: #0F3D1F;
  --green-800: #163F2B;
  --green-700: #1C4F37;
  --green-600: #256644;
  --green-500: #2D7D52;
  --green-400: #4CAF7D;
  --green-300: #7BCAA0;
  --green-200: #B2E0CA;
  --green-100: #e6f4ed;
  --green-50: #f0faf5;

  --orange-600: #D95E18;
  --orange-500: #F26A1C;
  --orange-400: #F58A4F;
  --orange-300: #F8AE7D;
  --orange-200: #FBD3AF;
  --orange-100: #fef3ed;

  /* Brand Grayscale */
  --gray-cloud: #EDEFF7;
  --gray-smoke: #D3D6E0;
  --gray-steel: #BCBFCC;
  --gray-space: #9DA2B3;
  --gray-graphite: #6E7180;
  --gray-arsenic: #40424D;
  --gray-phantom: #1E1E24;

  /* Typography — Manrope */
  --font-display: 'Manrope', system-ui, -apple-system, sans-serif;
  --font-body: 'Manrope', system-ui, -apple-system, sans-serif;
  --font-mono: 'Manrope', system-ui, -apple-system, sans-serif;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.08);
  --shadow-xl: 0 24px 64px rgba(0,0,0,0.12);
  --shadow-glow: 0 0 40px rgba(28, 79, 55, 0.15);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-2xl: 24px;
  --radius-3xl: 32px;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
}


/* ============================================
   RESET & BASE
   ============================================ */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

::selection {
  background: var(--orange-500);
  color: #fff;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--green-500); border-radius: 3px; }

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


/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text);
}

p { line-height: 1.7; }

.text-muted { color: var(--text-muted); }

.text-gradient {
  background: linear-gradient(135deg, var(--green-500) 0%, var(--orange-500) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-light {
  background: linear-gradient(135deg, var(--green-300) 0%, var(--orange-400) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


/* ============================================
   PAGE LOADER
   ============================================ */

.loader {
  position: fixed;
  inset: 0;
  background: var(--bg-dark);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-inner {
  text-align: center;
}

.loader-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3rem;
  color: #fff;
  letter-spacing: -0.04em;
  opacity: 0;
}

.loader-logo span { color: var(--orange-500); }

.loader-tagline {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.5rem;
  opacity: 0;
}

.loader-bar {
  width: 120px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
  margin: 1.5rem auto 0;
  opacity: 0;
}

.loader-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--green-500), var(--orange-500));
  border-radius: 2px;
}


/* ============================================
   NAVIGATION
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all 0.5s var(--ease-out-expo);
}

.nav.scrolled {
  padding: 0.65rem 0;
  background: rgba(12, 12, 12, 0.85);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
}

.nav-brand-img {
  height: 41px;
  width: auto;
  display: block;
}

.nav-brand span { color: var(--orange-500); }

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 41px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.3s ease;
}

.nav-links a:hover { color: #fff; }

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange-500);
  transition: width 0.3s ease;
  border-radius: 1px;
}

.nav-links a:hover::after { width: 100%; }

/* --- Nav Dropdown --- */
.nav-dropdown-wrap {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 200px;
  background: rgba(12, 12, 12, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s var(--ease-out-expo);
  z-index: 100;
}

.nav-dropdown-wrap:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 0.625rem 1.25rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.6);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.nav-dropdown a:hover {
  color: #fff;
  background: rgba(255,255,255,0.06);
}

.nav-dropdown a::after {
  display: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-phone {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
}

.nav-phone:hover { color: var(--orange-400); }

.nav-phone-dot {
  width: 8px;
  height: 8px;
  background: var(--green-400);
  border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(76, 175, 125, 0.4); }
  50% { box-shadow: 0 0 0 6px rgba(76, 175, 125, 0); }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.4s var(--ease-out-expo);
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ============================================
   MOBILE MENU
   ============================================ */

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(12, 12, 12, 0.97);
  backdrop-filter: blur(40px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-menu.active { opacity: 1; pointer-events: all; }

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.4s ease, transform 0.4s ease, color 0.3s ease;
}

.mobile-menu.active a { opacity: 1; transform: translateY(0); }
.mobile-menu a:hover { color: var(--orange-400); }
.mobile-menu .mobile-phone { font-size: 1.25rem; color: var(--orange-400); margin-top: 1rem; }

/* Mobile services dropdown */
.mobile-dropdown {
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.mobile-menu.active .mobile-dropdown {
  opacity: 1;
  transform: translateY(0);
}

.mobile-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.mobile-dropdown-toggle svg {
  transition: transform 0.3s ease;
}

.mobile-dropdown.open .mobile-dropdown-toggle svg {
  transform: rotate(180deg);
}

.mobile-dropdown-menu {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, margin 0.3s ease;
  margin-top: 0;
}

.mobile-dropdown.open .mobile-dropdown-menu {
  max-height: 500px;
  margin-top: 1rem;
}

.mobile-dropdown-menu a {
  font-size: 1.1rem !important;
  font-weight: 600 !important;
  color: rgba(255,255,255,0.5) !important;
  padding: 0.5rem 0;
}

.mobile-dropdown-menu a:hover {
  color: var(--orange-400) !important;
}

.mobile-dropdown-all {
  color: var(--orange-400) !important;
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  margin-top: 0.5rem;
  padding-top: 0.75rem !important;
  border-top: 1px solid rgba(255,255,255,0.08);
}


/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9375rem;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  transition: all 0.4s var(--ease-out-expo);
  text-decoration: none;
}

.btn svg { flex-shrink: 0; transition: transform 0.3s ease; }
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
  background: var(--green-700);
  color: #fff;
  border-color: var(--green-700);
  box-shadow: 0 2px 12px rgba(27, 94, 59, 0.25);
}

.btn-primary:hover {
  background: var(--green-600);
  border-color: var(--green-600);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(27, 94, 59, 0.35);
}

.btn-glow {
  box-shadow: 0 2px 12px rgba(27, 94, 59, 0.25), 0 0 40px rgba(27, 94, 59, 0.15);
}

.btn-glow:hover {
  box-shadow: 0 8px 30px rgba(27, 94, 59, 0.35), 0 0 60px rgba(27, 94, 59, 0.2);
}

.btn-outline {
  background: transparent;
  color: var(--green-700);
  border-color: var(--green-700);
}

.btn-outline:hover {
  background: var(--green-50);
  transform: translateY(-3px);
}

.btn-glass {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-color: rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
}

.btn-glass:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-3px);
}

.btn-white {
  background: #fff;
  color: var(--green-700);
  border-color: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.btn-white:hover {
  background: var(--green-50);
  border-color: var(--green-50);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.25);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-3px);
}

.btn-sm { padding: 0.625rem 1.25rem; font-size: 0.8125rem; }
.btn-lg { padding: 1.125rem 2.25rem; font-size: 1rem; }
.btn[disabled] { opacity: 0.4; pointer-events: none; }


/* ============================================
   LAYOUT
   ============================================ */

.section {
  padding: clamp(5rem, 10vw, 8rem) 0;
  position: relative;
}

.section-alt { background: var(--bg-alt); }
.section-green { background: var(--green-700); color: #fff; }

.section-dark {
  background: var(--bg-dark);
  color: #fff;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}


/* ============================================
   SECTION HEADERS
   ============================================ */

.section-header {
  max-width: 700px;
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
}

.section-header-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 0;
}

.section-header-light { color: #fff; }
.section-header-light h2 { color: #fff; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--green-600);
  margin-bottom: 1.25rem;
  padding: 0.4rem 1rem;
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: 100px;
}

.section-label-light {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
}

.section-sub {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 540px;
}

.section-lead {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-top: 0.75rem;
}


/* ============================================
   HERO - Cinematic Full-Screen
   ============================================ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(12, 12, 12, 0.92) 0%,
    rgba(12, 12, 12, 0.75) 40%,
    rgba(12, 12, 12, 0.5) 100%
  );
  z-index: 1;
}

/* Grain texture */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  padding-top: 7rem;
  padding-bottom: 3rem;
  width: 100%;
  display: flex;
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
}

.hero-text {
  flex: 1;
  min-width: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  backdrop-filter: blur(8px);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--green-400);
  border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 1.5rem;
  max-width: 750px;
}

.line { display: block; overflow: hidden; padding-bottom: 0.05em; }
.line-inner { display: block; }

.hero-lead {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  margin-bottom: 2.5rem;
  max-width: 520px;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

/* Hero Social Proof */
.hero-proof {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0.625rem 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.03);
  transition: all 0.3s ease;
  cursor: pointer;
}

.hero-proof:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}

.hero-proof-avatars {
  display: flex;
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green-600);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg-dark);
  margin-left: -8px;
}

.avatar:first-child { margin-left: 0; }
.avatar:nth-child(2) { background: var(--orange-500); }
.avatar:nth-child(3) { background: var(--green-400); }
.avatar:nth-child(4) { background: var(--green-800); }

.hero-proof-text {
  display: flex;
  flex-direction: column;
}

.hero-proof-stars {
  color: var(--orange-400);
  font-size: 0.875rem;
  letter-spacing: 2px;
  line-height: 1;
}

.hero-proof-text span {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.125rem;
}

/* Floating Review */
.hero-float-review {
  position: absolute;
  bottom: 4rem;
  right: clamp(1.25rem, 4vw, 3rem);
  z-index: 4;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  max-width: 300px;
}

.hero-float-review .float-stars {
  color: var(--orange-400);
  font-size: 0.875rem;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.hero-float-review p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.hero-float-review .float-author {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}

/* Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scroll-line 2s ease infinite;
}

@keyframes scroll-line {
  0% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.5); }
  100% { opacity: 1; transform: scaleY(1); }
}

.hero-scroll span {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.3);
}


/* ============================================
   HERO MINI QUOTE BUILDER
   ============================================ */

.hero-mini-builder {
  width: clamp(340px, 28vw, 420px);
  flex-shrink: 0;
  position: relative;
  border-radius: var(--radius-2xl);
  padding: 2px;
  overflow: hidden;
}

.mini-builder-border {
  position: absolute;
  inset: -100%;
  background: conic-gradient(
    from 0deg,
    #2D8A5E,
    transparent 20%,
    #F26522 50%,
    transparent 70%,
    #2D8A5E
  );
  animation: border-spin 4s linear infinite;
  z-index: 0;
}

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

.mini-builder-inner {
  position: relative;
  z-index: 1;
  background: rgba(12, 12, 12, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: calc(var(--radius-2xl) - 2px);
  padding: clamp(1.25rem, 2vw, 1.75rem);
}

/* Header */
.mini-builder-header { margin-bottom: 1.25rem; }

.mini-builder-live {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green-400);
  margin-bottom: 0.625rem;
}

.mini-builder-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-400);
  animation: live-pulse 1.5s ease infinite;
}

@keyframes live-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 4px rgba(76, 175, 125, 0.6); }
  50% { opacity: 0.4; box-shadow: 0 0 10px rgba(76, 175, 125, 0.8); }
}

.mini-builder-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.375rem;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.mini-builder-title span { color: var(--orange-400); }

/* Pipeline indicator */
.mini-pipeline {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding: 0 0.25rem;
}

.mini-pipeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  flex-shrink: 0;
}

.mini-pipeline-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.15);
  background: transparent;
  transition: all 0.4s ease;
}

.mini-pipeline-step.active .mini-pipeline-dot {
  border-color: var(--green-500);
  background: var(--green-500);
  box-shadow: 0 0 12px rgba(45, 138, 94, 0.6);
}

.mini-pipeline-step.completed .mini-pipeline-dot {
  border-color: var(--green-400);
  background: var(--green-400);
}

.mini-pipeline-label {
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.25);
  transition: color 0.3s ease;
}

.mini-pipeline-step.active .mini-pipeline-label,
.mini-pipeline-step.completed .mini-pipeline-label {
  color: rgba(255,255,255,0.7);
}

.mini-pipeline-line {
  flex: 1;
  height: 2px;
  background: rgba(255,255,255,0.06);
  margin: 4px 0.375rem 0;
  border-radius: 2px;
  overflow: hidden;
}

.mini-pipeline-line-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--green-500), var(--orange-500));
  border-radius: 2px;
  transition: width 0.6s var(--ease-out-expo);
}

.mini-pipeline-line.filled .mini-pipeline-line-fill { width: 100%; }

/* Steps container */
.mini-steps-container {
  position: relative;
  min-height: 150px;
}

.mini-step {
  display: none;
  animation: mini-step-in 0.4s var(--ease-out-expo);
}

.mini-step-active { display: block; }

@keyframes mini-step-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.mini-step-label {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.875rem;
}

/* Service buttons grid */
.mini-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
}

.mini-service-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 0.625rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  color: rgba(255,255,255,0.65);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mini-service-btn:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.15);
  color: #fff;
}

.mini-service-btn.selected {
  background: rgba(45, 138, 94, 0.15);
  border-color: var(--green-500);
  color: #fff;
  box-shadow: 0 0 16px rgba(45, 138, 94, 0.15);
}

.mini-service-btn svg {
  opacity: 0.5;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.mini-service-btn:hover svg { opacity: 0.8; }
.mini-service-btn.selected svg { opacity: 1; stroke: var(--green-400); }

/* Input field */
.mini-input {
  width: 100%;
  padding: 0.875rem 1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: all 0.3s ease;
  margin-bottom: 0.75rem;
}

.mini-input::placeholder { color: rgba(255,255,255,0.25); }

.mini-input:focus {
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(45, 138, 94, 0.15);
}

/* Submit button */
.mini-submit {
  width: 100%;
  padding: 0.875rem;
  background: linear-gradient(135deg, var(--green-600), var(--green-500));
  border: none;
  border-radius: var(--radius-md);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9375rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.mini-submit:hover {
  background: linear-gradient(135deg, var(--green-500), var(--green-400));
  box-shadow: 0 4px 24px rgba(45, 138, 94, 0.4);
  transform: translateY(-1px);
}

/* Result state */
.mini-result { text-align: center; padding: 1rem 0; }

.mini-result-check {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(45, 138, 94, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--green-400);
  animation: check-pop 0.5s var(--ease-out-expo);
}

@keyframes check-pop {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.mini-result-text {
  color: rgba(255,255,255,0.7);
  font-size: 0.9375rem;
  margin-bottom: 1rem;
}

.mini-result-text strong { color: #fff; }

.mini-detail-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8125rem;
  color: var(--green-400);
  transition: color 0.3s ease;
}

.mini-detail-link:hover { color: var(--green-300); }

/* Footer */
.mini-builder-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  padding-top: 0.875rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.mini-builder-footer svg { color: rgba(255,255,255,0.25); }

.mini-builder-footer span {
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.25);
}


/* ============================================
   CREDENTIALS BAR
   ============================================ */

.credentials-bar {
  background: var(--green-700);
  padding: 0.875rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.credentials-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.credential {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.01em;
}

.credential svg {
  color: var(--orange-400);
  flex-shrink: 0;
}

.credential-dot {
  width: 4px;
  height: 4px;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .credentials-inner { gap: 1rem 1.5rem; }
  .credential { font-size: 0.6875rem; }
  .credential svg { width: 16px; height: 16px; }
  .credential-dot { display: none; }
}


/* ============================================
   MARQUEE
   ============================================ */

.marquee {
  background: var(--green-700);
  padding: 1rem 0;
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 0;
  animation: marquee-scroll 30s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.marquee-item {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.9);
  padding: 0 1.5rem;
}

.marquee-dot {
  width: 6px;
  height: 6px;
  background: var(--orange-400);
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}


/* ============================================
   TRUST BAR
   ============================================ */

.trust-bar {
  background: var(--surface);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}

.trust-bar-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}

.trust-stat {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1.1;
}

.trust-stat-text { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
.trust-star { color: var(--orange-500); margin-left: 2px; }
.trust-percent { font-size: 0.7em; color: var(--green-500); }

.trust-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 0.25rem;
}

.trust-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}


/* ============================================
   SERVICES - Bento Grid
   ============================================ */

.services-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  transition: all 0.5s var(--ease-out-expo);
  position: relative;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

/* --- Featured overlay cards --- */
.service-card-featured {
  grid-column: span 2;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  border-color: rgba(255,255,255,0.05);
}

.service-card-featured:last-child {
  grid-column: 2 / 4;
}

.service-card-featured:hover {
  border-color: rgba(255,255,255,0.1);
}

.service-card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out-expo);
  z-index: 0;
}

.service-card-featured:hover .service-card-bg {
  transform: scale(1.05);
}

.service-card-featured > .service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.9) 0%,
    rgba(0,0,0,0.5) 40%,
    rgba(0,0,0,0.15) 100%
  );
  z-index: 1;
  transition: background 0.5s ease;
}

.service-card-featured:hover > .service-card-overlay {
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.95) 0%,
    rgba(0,0,0,0.4) 40%,
    rgba(0,0,0,0.1) 100%
  );
}

.service-card-featured .service-card-content {
  position: relative;
  z-index: 2;
  padding: 2.5rem;
}

.service-card-featured h3 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 0.75rem;
}

.service-card-featured p {
  color: rgba(255,255,255,0.65);
  max-width: 500px;
}

.service-card-featured .service-price {
  color: var(--green-300);
}

.service-card-featured .service-time {
  color: rgba(255,255,255,0.45);
  border-color: rgba(255,255,255,0.15);
}

.service-card-featured .service-tag {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-color: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.service-card-featured .service-meta {
  margin-bottom: 1.75rem;
}

/* --- Gradient accent line on standard cards --- */
.service-card-accent {
  height: 3px;
  background: linear-gradient(90deg, var(--green-500), var(--orange-500));
}

/* --- Standard card image --- */
.service-card-image {
  aspect-ratio: 16 / 11;
  overflow: hidden;
  position: relative;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}

.service-card:hover .service-card-image img { transform: scale(1.06); }

.service-card-content { padding: 1.75rem; }

.service-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.375rem 0.875rem;
  background: var(--green-50);
  color: var(--green-700);
  border-radius: 100px;
  margin-bottom: 1rem;
  border: 1px solid var(--green-100);
}

.service-tag-pop {
  background: var(--orange-100);
  color: var(--orange-600);
  border-color: var(--orange-200);
}

.service-card-content h3 {
  font-size: 1.375rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.service-card-content p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.service-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.service-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.125rem;
  color: var(--green-700);
}

.service-time {
  font-size: 0.8125rem;
  color: var(--text-muted);
  padding-left: 1rem;
  border-left: 1px solid var(--border);
}


/* ============================================
   VIEW ALL SERVICES
   ============================================ */

.services-view-all {
  text-align: center;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.services-view-all-note {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 1rem;
  line-height: 1.6;
}


/* ============================================
   ONLY PAY FOR WHAT YOU FILL — Pricing Visual
   Scroll-pinned, scrub-driven dark section
   ============================================ */

.pricing-section {
  background: #0B1A12;
  color: #fff;
  overflow: hidden;
  position: relative;
  padding: clamp(4rem, 8vw, 6rem) 0;
}

/* Subtle dot grid background */
.pricing-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.pricing-top {
  text-align: center;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  position: relative;
}

.pricing-heading {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: #fff;
}

.pricing-subtitle {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: rgba(255,255,255,0.5);
  margin-top: 1rem;
  line-height: 1.6;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Price Counter --- */
.pricing-amount-wrap {
  text-align: center;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.pricing-amount {
  display: block;
  font-weight: 800;
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  letter-spacing: -0.05em;
  line-height: 1;
  color: #fff;
  font-variant-numeric: tabular-nums;
}

.pricing-amount-label {
  display: block;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
  margin-top: 0.5rem;
  letter-spacing: 0.02em;
}

/* --- Truck --- */
.pricing-truck {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}

.truck-svg {
  width: 100%;
  height: auto;
  display: block;
}

/* --- Gauge Bar --- */
.pricing-gauge {
  max-width: 560px;
  margin: clamp(2rem, 4vw, 3rem) auto 0;
  position: relative;
}

.gauge-track {
  height: 3px;
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
  overflow: hidden;
}

.gauge-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #1C4F37, #2D7D52, #F26A1C);
  border-radius: 3px;
  box-shadow: 0 0 12px rgba(242,106,28,0.3);
}

.gauge-markers {
  display: flex;
  justify-content: space-between;
  margin-top: 0;
  position: relative;
}

.gauge-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  padding-top: 0.5rem;
  transition: opacity 0.3s ease;
  opacity: 0.3;
}

.gauge-marker.active { opacity: 1; }
.gauge-marker.done { opacity: 0.6; }

.gauge-tick {
  width: 2px;
  height: 10px;
  background: rgba(255,255,255,0.2);
  border-radius: 1px;
  transition: all 0.4s ease;
}

.gauge-marker.active .gauge-tick {
  background: #F26A1C;
  box-shadow: 0 0 10px rgba(242,106,28,0.5);
  height: 14px;
}

.gauge-marker.done .gauge-tick { background: #2D7D52; }

.gauge-label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s ease;
}

.gauge-marker.active .gauge-label { color: #fff; }

.gauge-price {
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255,255,255,0.3);
  transition: color 0.3s ease;
}

.gauge-marker.active .gauge-price { color: #F26A1C; }

/* --- Tagline --- */
.pricing-tagline {
  text-align: center;
  font-weight: 800;
  font-size: clamp(1.375rem, 3vw, 2rem);
  letter-spacing: -0.02em;
  color: #fff;
  margin-top: clamp(2rem, 4vw, 3rem);
  opacity: 0;
}

.pricing-disclaimer {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  font-style: italic;
  margin-top: 0.75rem;
  line-height: 1.6;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .pricing-gauge { max-width: 380px; }
  .gauge-price { font-size: 0.6875rem; }
  .pricing-truck { max-width: 100%; }
}

@media (max-width: 480px) {
  .pricing-amount { font-size: 2.75rem; }
  .pricing-tagline { font-size: 1.125rem; }
  .pricing-gauge { max-width: 300px; }
  .gauge-label { font-size: 0.5625rem; }
  .gauge-price { font-size: 0.625rem; }
}


/* ============================================
   BEFORE / AFTER
   ============================================ */

.ba-layout {
  display: grid;
  grid-template-columns: 0.45fr 0.55fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: center;
}

.ba-text h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.ba-text p {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.ba-stats {
  display: flex;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.ba-stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  display: block;
  line-height: 1.1;
}

.ba-stat-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  display: block;
  margin-top: 0.25rem;
}

.ba-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.ba-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.ba-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out-expo);
}

.ba-image:hover img { transform: scale(1.04); }

.ba-label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.375rem 0.875rem;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  color: #fff;
  border-radius: 100px;
}

.ba-label-green {
  background: rgba(27, 94, 59, 0.85);
}


/* ============================================
   IMPACT SECTION (Where Junk Goes)
   ============================================ */

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.impact-card {
  text-align: center;
  padding: 3rem 1.5rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-2xl);
  transition: all 0.4s var(--ease-out-expo);
}

.impact-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.impact-stat {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.5rem, 6vw, 5rem);
  letter-spacing: -0.04em;
  color: var(--green-300);
  line-height: 1;
  margin-bottom: 1rem;
}

.impact-icon {
  margin-bottom: 1rem;
  color: rgba(255,255,255,0.4);
}

.impact-icon svg { margin: 0 auto; }

.impact-card h3 {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 0.75rem;
}

.impact-card p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}


/* ============================================
   HOW IT WORKS (Steps)
   ============================================ */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  position: relative;
  padding-top: 1rem;
}

/* --- Timeline connector --- */
.steps-connector {
  position: absolute;
  top: calc(1rem + 24px);
  left: calc(16.66% + 24px);
  right: calc(16.66% + 24px);
  height: 2px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
  z-index: 1;
}

.steps-connector-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--green-500), var(--orange-500));
  border-radius: 2px;
  transition: width 1.5s var(--ease-out-expo);
}

.steps-connector-fill.active { width: 100%; }

/* --- Step card --- */
.step-card {
  text-align: center;
  position: relative;
  transition: all 0.4s var(--ease-out-expo);
}

.step-card:hover { transform: translateY(-4px); }

/* --- Large watermark number --- */
.step-number-bg {
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 12rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--border-light);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}

/* --- Step marker dot --- */
.step-marker {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--green-500);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  position: relative;
  z-index: 2;
  transition: all 0.4s var(--ease-out-expo);
  box-shadow: 0 0 0 6px var(--bg-alt);
}

.step-marker span {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--green-600);
  transition: color 0.3s ease;
}

.step-card:hover .step-marker {
  background: var(--green-500);
  transform: scale(1.15);
  box-shadow: 0 0 24px rgba(45, 138, 94, 0.3), 0 0 0 6px var(--bg-alt);
}

.step-card:hover .step-marker span { color: #fff; }

/* --- Step image --- */
.step-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.step-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}

.step-card:hover .step-image img { transform: scale(1.05); }

/* --- Step content --- */
.step-content {
  position: relative;
  z-index: 1;
}

.step-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.step-content p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.65;
}


/* ============================================
   QUOTE SECTION
   ============================================ */

.quote-section-layout {
  display: grid;
  grid-template-columns: 0.45fr 0.55fr;
  gap: clamp(3rem, 5vw, 5rem);
  align-items: start;
}

.quote-intro { position: sticky; top: 120px; }

.quote-intro h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.quote-lead {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.quote-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.quote-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.qf-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--green-50);
  border: 1px solid var(--green-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green-700);
}

.qf-text { display: flex; flex-direction: column; }

.qf-text strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--text);
  display: block;
}

.qf-text span {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 0.125rem;
}

.quote-photo-cta {
  padding: 1.25rem;
  background: var(--orange-100);
  border: 1px solid rgba(242, 101, 34, 0.15);
  border-radius: var(--radius-lg);
}

.quote-photo-cta p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin: 0;
}

.quote-photo-cta p:first-child { margin-bottom: 0.25rem; }

.quote-photo-cta a {
  color: var(--orange-500);
  font-weight: 600;
}

.quote-photo-cta a:hover { text-decoration: underline; }


/* ============================================
   QUOTE BUILDER CARD (Styles for quote-builder.js)
   ============================================ */

.quote-builder {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.qb-progress { margin-bottom: 2rem; }

.qb-progress-bar {
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.qb-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green-500), var(--green-700));
  border-radius: 2px;
  transition: width 0.6s var(--ease-out-expo);
}

.qb-progress-steps {
  display: flex;
  justify-content: space-between;
  max-width: 260px;
  margin: 0 auto;
}

.qb-progress-step {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.6875rem;
  color: var(--text-muted);
  background: var(--surface);
  transition: all 0.3s ease;
}

.qb-progress-step.active {
  background: var(--green-700);
  border-color: var(--green-700);
  color: #fff;
  box-shadow: 0 2px 12px rgba(27, 94, 59, 0.25);
}

.qb-progress-step.done {
  background: var(--green-500);
  border-color: var(--green-500);
  color: #fff;
}

.qb-body { min-height: 300px; }

.qb-step-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.375rem;
  text-align: center;
  margin-bottom: 0.375rem;
  letter-spacing: -0.02em;
  color: var(--text);
}

.qb-step-desc {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 1.75rem;
}

.qb-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.qb-service-option {
  padding: 1.25rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  background: var(--surface);
  font-family: inherit;
  color: inherit;
}

.qb-service-option:hover {
  border-color: var(--green-400);
  background: var(--green-50);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.qb-service-option.active {
  border-color: var(--green-500);
  background: var(--green-50);
  box-shadow: 0 0 0 3px rgba(45, 138, 94, 0.1);
}

.qb-service-icon { margin-bottom: 0.5rem; color: var(--green-500); }
.qb-service-icon svg { margin: 0 auto; }

.qb-service-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8125rem;
  margin-bottom: 0.125rem;
  color: var(--text);
}

.qb-service-desc { font-size: 0.6875rem; color: var(--text-muted); }

.qb-config-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.qb-config-option {
  padding: 1.25rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  background: var(--surface);
}

.qb-config-option:hover {
  border-color: var(--green-400);
  background: var(--green-50);
  transform: translateY(-2px);
}

.qb-config-option.active {
  border-color: var(--green-500);
  background: var(--green-50);
  box-shadow: 0 0 0 3px rgba(45, 138, 94, 0.1);
}

.qb-config-icon { margin-bottom: 0.5rem; color: var(--green-500); }

.qb-config-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8125rem;
  color: var(--text);
  margin-bottom: 0.125rem;
}

.qb-config-desc { font-size: 0.6875rem; color: var(--text-muted); }

.qb-config-section { margin-bottom: 1.25rem; }

.qb-config-section-title {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.qb-config-grid-3 { grid-template-columns: repeat(3, 1fr); }
.qb-config-grid-4 { grid-template-columns: repeat(4, 1fr); }

.qb-config-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.875rem;
  color: var(--orange-500);
  margin-top: 0.25rem;
}

.qb-config-note {
  font-size: 0.6875rem;
  color: var(--text-muted);
  text-align: center;
  padding: 0.75rem 1rem;
  background: var(--green-50);
  border: 1px solid var(--green-200);
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

/* Bin Visual Card */
.qb-bin-visual-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  margin-bottom: 1.25rem;
}

.qb-bin-visual-inner { display: flex; align-items: flex-start; gap: 1rem; }
.qb-bin-visual-icon { flex-shrink: 0; color: var(--green-500); }

.qb-bin-visual-text strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.qb-bin-visual-text span {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Live Estimate */
.qb-live-estimate {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, var(--green-100), var(--green-50));
  border: 1px solid var(--green-200);
  border-radius: var(--radius-lg);
  margin-bottom: 1.25rem;
}

.qb-live-estimate-label {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-700);
}

.qb-live-estimate-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.375rem;
  letter-spacing: -0.02em;
  color: var(--green-700);
}

/* Bin Visualizer */
.qb-bin-container {
  display: flex;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 1.75rem;
  padding: 1.75rem;
  background: var(--bg-alt);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
}

.qb-bin {
  width: 110px;
  height: 160px;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.qb-bin::before {
  content: '20 YD';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.5625rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  z-index: 2;
}

.qb-bin-fill {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, var(--green-400) 0%, var(--green-700) 100%);
  transition: height 0.5s var(--ease-out-expo);
  border-radius: 0 0 6px 6px;
}

.qb-bin-fill-inner {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg, transparent, transparent 6px,
    rgba(255,255,255,0.1) 6px, rgba(255,255,255,0.1) 12px
  );
  animation: bin-stripe-move 3s linear infinite;
}

@keyframes bin-stripe-move {
  from { background-position: 0 0; }
  to { background-position: 17px 0; }
}

.qb-bin-label {
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform: translate(-50%, 50%);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.125rem;
  color: #fff;
  text-shadow: 0 1px 6px rgba(0,0,0,0.3);
  z-index: 2;
}

.qb-bin-info { flex: 1; display: flex; flex-direction: column; gap: 0.875rem; }
.qb-bin-stat { display: flex; flex-direction: column; }

.qb-bin-stat-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.375rem;
  letter-spacing: -0.02em;
  line-height: 1;
  display: block;
  color: var(--text);
}

.qb-bin-stat-label {
  font-size: 0.6875rem;
  color: var(--text-muted);
  font-weight: 500;
  display: block;
  margin-top: 2px;
}

.qb-price-pulse { color: var(--orange-500); }

/* Items Grid */
.qb-items-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.625rem;
  margin-bottom: 1.75rem;
}

.qb-item-card {
  padding: 0.875rem 0.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: var(--surface);
}

.qb-item-card:hover {
  border-color: var(--green-400);
  background: var(--green-50);
}

.qb-item-card.active {
  border-color: var(--green-500);
  background: var(--green-50);
}

.qb-item-icon { color: var(--text-muted); margin-bottom: 0.25rem; }
.qb-item-icon svg { margin: 0 auto; width: 24px; height: 24px; }
.qb-item-card.active .qb-item-icon { color: var(--green-500); }

.qb-item-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.625rem;
  color: var(--text-secondary);
  margin-bottom: 0.375rem;
}

.qb-item-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
}

.qb-item-btn {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-secondary);
  transition: all 0.2s ease;
}

.qb-item-btn:hover {
  background: var(--green-700);
  border-color: var(--green-700);
  color: #fff;
}

.qb-item-qty {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8125rem;
  min-width: 16px;
  text-align: center;
  color: var(--text);
}

/* Location */
.qb-location-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
}

.qb-map-area { position: relative; }

.qb-map-placeholder {
  width: 100%;
  height: 260px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.qb-map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(27, 94, 59, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27, 94, 59, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
}

.qb-map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -100%);
  z-index: 3;
  filter: drop-shadow(0 4px 8px rgba(242,101,34,0.3));
}

.qb-map-radius {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border: 1.5px solid rgba(45, 138, 94, 0.2);
  border-radius: 50%;
  background: rgba(45, 138, 94, 0.06);
  animation: radius-pulse 3s ease infinite;
}

@keyframes radius-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.5; }
}

.qb-crew-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--orange-500);
  border-radius: 50%;
  z-index: 4;
}

.qb-crew-1 { top: 35%; left: 30%; }
.qb-crew-2 { top: 62%; left: 68%; }

.qb-crew-pulse {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1.5px solid var(--orange-400);
  animation: crew-ping 2s ease infinite;
}

@keyframes crew-ping {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(2.5); opacity: 0; }
}

.qb-location-form { display: flex; flex-direction: column; }
.qb-crew-status { margin-top: 0.75rem; }

.qb-crew-found {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--green-50);
  border: 1px solid var(--green-200);
  border-radius: var(--radius-md);
}

.qb-crew-found-dot {
  width: 10px;
  height: 10px;
  background: var(--green-500);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
  flex-shrink: 0;
}

.qb-crew-found strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  color: var(--green-700);
}

.qb-crew-found span { font-size: 0.6875rem; color: var(--text-muted); }

.qb-crew-outside {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: #FFF8F0;
  border: 1px solid #F5DEC0;
  border-radius: var(--radius-md);
}
.qb-crew-outside strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  color: var(--orange-600);
}
.qb-crew-outside span { font-size: 0.6875rem; color: var(--text-muted); }

/* Fields */
.quote-field { margin-bottom: 1rem; }

.quote-field label {
  display: block;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.quote-field input,
.quote-field select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--text);
  background: var(--surface);
  transition: all 0.3s ease;
  outline: none;
}

.quote-field input:focus,
.quote-field select:focus {
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(45, 138, 94, 0.1);
}

.quote-field input::placeholder { color: var(--text-muted); }
.quote-field select option { background: var(--surface); color: var(--text); }

.qb-field-error {
  font-size: 0.75rem;
  color: #dc3545;
  margin-top: 0.35rem;
}

/* Quote Reveal */
.qb-quote-reveal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
}

.qb-final-quote {
  background: linear-gradient(135deg, var(--green-100), var(--green-50));
  border: 1px solid var(--green-200);
  border-radius: var(--radius-xl);
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.qb-final-quote-badge {
  display: inline-block;
  background: var(--green-200);
  color: var(--green-800);
  padding: 0.25rem 0.875rem;
  border-radius: 100px;
  font-size: 0.6875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.qb-final-quote-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.25rem;
  letter-spacing: -0.03em;
  margin-bottom: 0.375rem;
  color: var(--green-700);
}

.qb-final-quote-note {
  font-size: 0.6875rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.qb-final-quote-details {
  border-top: 1px solid var(--green-200);
  padding-top: 0.875rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.qb-fqd {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text);
}

.qb-fqd span { color: var(--text-muted); }

/* Contact Form */
.qb-contact-form { display: flex; flex-direction: column; }

.qb-contact-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 0.25rem;
  letter-spacing: -0.02em;
  color: var(--text);
}

.qb-contact-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.qb-submit {
  width: 100%;
  padding: 1rem;
  background: var(--green-700);
  color: #fff;
  border: none;
  border-radius: var(--radius-lg);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.qb-submit:hover {
  background: var(--green-600);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(27, 94, 59, 0.25);
}

.qb-submit-note {
  text-align: center;
  font-size: 0.6875rem;
  color: var(--text-muted);
  margin-top: 0.625rem;
}

.qb-consent-group {
  margin-bottom: 0.625rem;
}
.qb-consent-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.6875rem;
  line-height: 1.55;
  color: var(--text-muted);
  cursor: pointer;
}
.qb-consent-label input[type="checkbox"] {
  margin-top: 0.2rem;
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  accent-color: var(--green-700);
  cursor: pointer;
}
.qb-consent-label strong {
  color: var(--text-secondary);
  font-weight: 600;
}
.qb-consent-links {
  text-align: center;
  font-size: 0.625rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}
.qb-consent-links a {
  color: var(--text-muted);
  text-decoration: underline;
}
.qb-consent-links a:hover {
  color: var(--green-700);
}

.qb-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

/* Success */
.qb-success { text-align: center; padding: 3rem 1.5rem; }
.qb-success-icon { margin-bottom: 1.25rem; }
.qb-success-icon svg { margin: 0 auto; }

.qb-success-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.375rem;
  color: var(--green-700);
  margin-bottom: 0.625rem;
  letter-spacing: -0.02em;
}

.qb-success-text {
  color: var(--text-secondary);
  font-size: 0.875rem;
  max-width: 420px;
  margin: 0 auto 1.25rem;
  line-height: 1.65;
}

.qb-success-summary {
  display: flex;
  justify-content: center;
  gap: 2rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* Nav */
.qb-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.qb-prev {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all 0.3s ease;
}

.qb-prev:hover { background: var(--bg-alt); border-color: var(--text-muted); }

.qb-next {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  background: var(--green-700);
  color: #fff;
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all 0.3s ease;
}

.qb-next:hover {
  background: var(--green-600);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(27, 94, 59, 0.2);
}

.qb-nav .btn[disabled],
.qb-nav button[disabled] {
  opacity: 0.35;
  pointer-events: none;
}


/* ============================================
   SERVICE AREAS
   ============================================ */

.areas-layout {
  display: grid;
  grid-template-columns: 0.4fr 0.6fr;
  gap: clamp(3rem, 5vw, 5rem);
  align-items: start;
}

.areas-intro { position: sticky; top: 120px; }

.areas-intro h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.areas-lead {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

.areas-map { display: flex; flex-direction: column; gap: 1.5rem; }

.map-container {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,0.06);
}

.service-map {
  width: 100%;
  height: auto;
  display: block;
}

.areas-list { display: flex; flex-direction: column; gap: 0.75rem; }

.area-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.area-item:hover { border-color: var(--green-200); box-shadow: var(--shadow-sm); }

.area-item-primary { background: var(--green-50); border-color: var(--green-200); }

.area-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--text);
}

.area-tag {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.625rem;
  background: var(--bg-alt);
  color: var(--text-muted);
  border-radius: 100px;
}

.area-item-primary .area-tag { background: var(--green-200); color: var(--green-800); }


/* ============================================
   REVIEWS
   ============================================ */

.reviews-layout { display: flex; flex-direction: column; }

.review-featured {
  text-align: center;
  padding: 2rem 0 3rem;
  max-width: 800px;
  margin: 0 auto 3rem;
  position: relative;
}

.review-featured-content { max-width: 700px; margin: 0 auto; }

.review-quote-mark {
  font-family: var(--font-display);
  font-size: 8rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(255,255,255,0.06);
  margin-bottom: -3rem;
}

.review-featured blockquote {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  line-height: 1.65;
  color: rgba(255,255,255,0.85);
  font-style: italic;
  margin-bottom: 2rem;
}

.review-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.review-author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-600);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-author-info { text-align: left; }

.review-author-info strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  display: block;
  color: #fff;
}

.review-author-info span { font-size: 0.8125rem; color: rgba(255,255,255,0.4); }

.review-stars-sm {
  color: var(--orange-400);
  font-size: 0.875rem;
  letter-spacing: 2px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.review-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  transition: all 0.4s var(--ease-out-expo);
}

.review-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.1);
}

.review-stars {
  color: var(--orange-400);
  font-size: 0.875rem;
  letter-spacing: 3px;
  margin-bottom: 1rem;
}

.review-card p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 1.25rem;
}

.review-author-sm { display: flex; flex-direction: column; gap: 0.125rem; }

.review-author-sm strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  color: #fff;
}

.review-author-sm span { font-size: 0.75rem; color: rgba(255,255,255,0.35); }

.reviews-cta { text-align: center; }

.reviews-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--orange-400);
  transition: all 0.3s ease;
}

.reviews-link:hover { color: var(--orange-300); text-decoration: underline; }
.reviews-link svg { transition: transform 0.3s ease; }
.reviews-link:hover svg { transform: translate(3px, -3px); }


/* ============================================
   FAQ
   ============================================ */

.faq-layout {
  display: grid;
  grid-template-columns: 0.35fr 0.65fr;
  gap: clamp(3rem, 5vw, 5rem);
  align-items: start;
}

.faq-intro { position: sticky; top: 120px; }

.faq-intro h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.faq-intro p { font-size: 1rem; color: var(--text-secondary); line-height: 1.75; }
.faq-intro p a { color: var(--green-700); font-weight: 600; }
.faq-intro p a:hover { text-decoration: underline; }

.faq-list { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  text-align: left;
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}

.faq-question span:first-child { flex: 1; }
.faq-question:hover { color: var(--green-700); }

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text-secondary);
  transition: all 0.4s var(--ease-out-expo);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--orange-500);
  border-color: var(--orange-500);
  color: #fff;
}

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }

.faq-answer-inner {
  padding-bottom: 1.5rem;
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.75;
}


/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
  background: linear-gradient(135deg, var(--green-800) 0%, var(--green-700) 50%, var(--green-600) 100%);
  padding: clamp(5rem, 10vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

/* CTA grain overlay */
.cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.4;
}

.cta-content {
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--green-300);
  margin-bottom: 1.5rem;
  padding: 0.4rem 1rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
}

.cta-content h2 {
  color: #fff;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  line-height: 1.08;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.0625rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}


/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--bg-dark);
  padding: 5rem 0 2rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand { max-width: 300px; }

.footer-logo {
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-logo-img {
  height: 46px;
  width: auto;
  display: block;
}

.footer-logo span { color: var(--orange-500); }

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.75;
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 1.25rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.625rem; }

.footer-col ul li a,
.footer-col ul li span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease;
}

.footer-col ul li a:hover { color: var(--orange-400); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 2rem;
  display: flex;
  justify-content: center;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.25);
}


/* ============================================
   STICKY MOBILE CTA
   ============================================ */

.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--bg-dark);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 0.75rem 1rem;
  gap: 0.75rem;
  backdrop-filter: blur(20px);
}

.sticky-cta-call {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.15);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.sticky-cta-call:hover { background: rgba(255,255,255,0.05); }

.sticky-cta-quote {
  flex: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem;
  background: var(--green-600);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 12px rgba(27, 94, 59, 0.3);
  transition: all 0.3s ease;
}

.sticky-cta-quote:hover { background: var(--green-500); }

.sticky-cta-text {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.15);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}
.sticky-cta-text:hover { background: rgba(255,255,255,0.05); }

/* ============================================
   TEXT US BANNER
   ============================================ */

.text-us-banner {
  background: var(--green-700);
  padding: 1rem 0;
}
.text-us-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.text-us-content {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: #fff;
}
.text-us-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.text-us-icon svg { stroke: #fff; }
.text-us-content strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
}
.text-us-content span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}
.text-us-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.25rem;
  background: #fff;
  color: var(--green-700);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: var(--radius-md);
  white-space: nowrap;
  transition: all 0.3s ease;
}
.text-us-btn:hover {
  background: var(--orange-500);
  color: #fff;
}
.text-us-btn svg { stroke: currentColor; }

/* Hero text badge */
.hero-text-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  padding: 0.5rem 1rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.hero-text-badge:hover {
  background: rgba(255,255,255,0.14);
  color: #fff;
}
.hero-text-badge svg { stroke: var(--orange-500); flex-shrink: 0; }

@media (max-width: 640px) {
  .text-us-inner { flex-direction: column; text-align: center; }
  .text-us-content { flex-direction: column; }
  .text-us-btn { width: 100%; justify-content: center; }
}


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

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(45, 138, 94, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(45, 138, 94, 0); }
}

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


/* ============================================
   RESPONSIVE - Large (1920px+)
   ============================================ */

@media (min-width: 1920px) {
  .container, .hero-content { max-width: 85vw; }
  .section { padding: clamp(7rem, 12vw, 10rem) 0; }
  .hero-headline { font-size: clamp(5rem, 7vw, 8rem); max-width: 950px; }
  .hero-lead { font-size: 1.3rem; max-width: 650px; }

  .section-header h2,
  .quote-intro h2,
  .areas-intro h2,
  .faq-intro h2 {
    font-size: clamp(3rem, 4vw, 4rem);
  }

  .impact-stat { font-size: clamp(4rem, 6vw, 6rem); }
}


/* ============================================
   RESPONSIVE - 1200px
   ============================================ */

@media (max-width: 1200px) {
  .services-bento { gap: 1rem; }

  .service-card-featured { min-height: 360px; }

  .steps-grid { gap: 1.5rem; }
}


/* ============================================
   RESPONSIVE - 1024px (Tablet)
   ============================================ */

@media (max-width: 1024px) {
  .section { padding: clamp(4rem, 8vw, 6rem) 0; }

  /* Hero */
  .hero-content { flex-direction: column; align-items: flex-start; }
  .hero-mini-builder { width: 100%; max-width: 480px; }
  .hero-headline { font-size: clamp(2.75rem, 7vw, 4rem); }

  .hero-float-review { display: none; }

  .hero-scroll { display: none; }

  /* Trust */
  .trust-bar-inner { flex-wrap: wrap; justify-content: center; gap: 1.5rem; }
  .trust-divider { display: none; }
  .trust-item { flex: 0 0 calc(50% - 1rem); }

  /* Services */
  .services-bento {
    grid-template-columns: 1fr 1fr;
  }

  .service-card-featured {
    grid-column: span 2;
    min-height: 320px;
  }

  .service-card-featured:last-child {
    grid-column: span 2;
  }

  /* Before/After */
  .ba-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

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

  /* Impact */
  .impact-grid { grid-template-columns: 1fr; gap: 1.25rem; }

  .impact-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-align: left;
    padding: 1.5rem;
  }

  .impact-stat { font-size: 2.5rem; margin-bottom: 0; min-width: 90px; }
  .impact-icon { display: none; }

  /* Steps */
  .steps-grid { grid-template-columns: 1fr; gap: 2rem; }
  .steps-connector { display: none; }
  .step-number-bg { display: none; }
  .step-marker { margin-bottom: 1.5rem; }

  /* Quote */
  .quote-section-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .quote-intro { position: static; text-align: center; }
  .quote-features { max-width: 400px; margin: 0 auto 2rem; }
  .quote-photo-cta { text-align: center; max-width: 400px; margin: 0 auto; }

  /* Areas */
  .areas-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .areas-intro { position: static; text-align: center; }

  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr; }

  /* FAQ */
  .faq-layout { grid-template-columns: 1fr; gap: 2rem; }
  .faq-intro { position: static; text-align: center; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}


/* ============================================
   RESPONSIVE - 768px (Mobile)
   ============================================ */

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-phone { display: none; }
  .nav-toggle { display: flex; }
  .nav-actions .btn { display: none; }

  .section { padding: clamp(3.5rem, 8vw, 5rem) 0; }

  /* Hero */
  .hero { min-height: 100svh; }

  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(12, 12, 12, 0.85) 0%,
      rgba(12, 12, 12, 0.7) 60%,
      rgba(12, 12, 12, 0.9) 100%
    );
  }

  .hero-content { padding-top: 6rem; }

  .hero-headline { font-size: clamp(2.25rem, 10vw, 3.5rem); }
  .hero-lead { font-size: 1rem; }

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

  .hero-cta .btn {
    width: 100%;
    min-height: 52px;
    justify-content: center;
  }

  .hero-proof { flex-wrap: wrap; }

  /* Marquee */
  .marquee-item { font-size: 0.75rem; padding: 0 1rem; }

  /* Trust */
  .trust-bar { padding: 1.5rem 0; }
  .trust-bar-inner { flex-direction: column; gap: 1.25rem; }
  .trust-item { flex: 0 0 auto; width: 100%; flex-direction: row; justify-content: center; gap: 0.75rem; }
  .trust-stat { font-size: 1.5rem; }

  /* Section Headers */
  .section-header h2,
  .quote-intro h2,
  .areas-intro h2,
  .faq-intro h2 {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
  }

  /* Services */
  .services-bento { grid-template-columns: 1fr; }
  .service-card-featured { grid-column: span 1; min-height: 300px; }
  .service-card-featured:last-child { grid-column: span 1; }
  .service-card-content { padding: 1.25rem; }
  .service-card-featured .service-card-content { padding: 1.5rem; }

  /* Before/After */
  .ba-images { grid-template-columns: 1fr; }
  .ba-image img { height: 220px; }
  .ba-stats { flex-direction: column; gap: 1.5rem; align-items: center; }
  .ba-text { text-align: center; }

  /* Impact */
  .impact-card { flex-direction: column; text-align: center; gap: 0.75rem; }
  .impact-stat { font-size: 3rem; min-width: auto; }

  /* Steps */
  .step-card { text-align: center; }
  .step-marker { width: 40px; height: 40px; }

  /* Quote Builder */
  .quote-builder { padding: 1.25rem; }
  .qb-service-grid { grid-template-columns: 1fr 1fr; }
  .qb-config-grid, .qb-config-grid-3, .qb-config-grid-4 { grid-template-columns: 1fr 1fr; }
  .qb-items-grid { grid-template-columns: repeat(2, 1fr); }
  .qb-location-wrap { grid-template-columns: 1fr; }
  .qb-map-placeholder { height: 200px; }
  .qb-quote-reveal { grid-template-columns: 1fr; }

  .qb-bin-container { flex-direction: column; align-items: center; }
  .qb-bin-info { flex-direction: row; gap: 1.5rem; text-align: center; }

  /* Reviews */
  .review-featured blockquote { font-size: 1.125rem; }
  .review-author { flex-direction: column; gap: 0.75rem; }

  /* CTA */
  .cta-buttons { flex-direction: column; }
  .cta-buttons .btn { width: 100%; min-height: 52px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand { max-width: none; text-align: center; }
  .footer-col { text-align: center; }
  .footer-col ul { align-items: center; }
  .footer-bottom { text-align: center; flex-direction: column; gap: 0.5rem; padding-bottom: 5rem; }

  /* Mobile menu */
  .mobile-menu a { font-size: 1.75rem; }

  /* Touch-friendly */
  .btn { min-height: 48px; }
  .btn-lg { min-height: 52px; }

  /* Sticky CTA */
  .sticky-cta { display: flex; }
}


/* ============================================
   RESPONSIVE - 480px (Small Mobile)
   ============================================ */

@media (max-width: 480px) {
  .section { padding: clamp(3rem, 6vw, 4rem) 0; }
  .hero-content { padding-top: 5rem; }
  .hero-headline { font-size: clamp(2rem, 10vw, 2.75rem); }
  .hero-lead { font-size: 0.9375rem; }
  .hero-badge { font-size: 0.625rem; padding: 0.375rem 0.75rem; }

  .section-header h2,
  .quote-intro h2,
  .areas-intro h2,
  .faq-intro h2 {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  .trust-stat { font-size: 1.25rem; }
  .trust-label { font-size: 0.75rem; }

  .impact-stat { font-size: 2.5rem; }
  .impact-card h3 { font-size: 1.125rem; }

  .step-content h3 { font-size: 1.125rem; }

  .qb-step-title { font-size: 1.125rem; }
  .qb-service-option { padding: 1rem 0.75rem; }
  .qb-service-name { font-size: 0.75rem; }
  .qb-config-option { padding: 1rem 0.75rem; }
  .qb-final-quote-price { font-size: 1.75rem; }
  .qb-bin { width: 90px; height: 130px; }

  .service-card-content h3 { font-size: 1.125rem; }
  .service-price { font-size: 1rem; }

  .review-card { padding: 1.25rem; }
  .review-featured blockquote { font-size: 1rem; }
  .review-quote-mark { font-size: 5rem; margin-bottom: -2rem; }

  .faq-question { font-size: 0.9375rem; padding: 1.25rem 0; }
  .faq-answer-inner { font-size: 0.875rem; }

  .cta-content h2 { font-size: clamp(1.75rem, 7vw, 2.25rem); }
  .cta-content p { font-size: 0.9375rem; }

  .footer { padding: 3rem 0 1.5rem; }
  .footer-bottom { font-size: 0.75rem; }

  .mobile-menu a { font-size: 1.5rem; }

  .ba-stat-num { font-size: 1.5rem; }
}


/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
  .nav, .loader, .mobile-menu, .nav-toggle,
  .cta-section, .quote-builder, .marquee, .sticky-cta { display: none !important; }

  body { background: #fff; color: #000; }
  .section { padding: 2rem 0; }
  .section-green, .section-dark { background: #fff; color: #000; }
  .section-green h2, .section-green h3,
  .section-dark h2, .section-dark h3 { color: #000; }
  .footer { background: #fff; color: #000; }
  a { text-decoration: underline; }
}


/* ============================================
   UTILITIES
   ============================================ */

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

.nav-brand-img,
.nav-logo-img {
  transform: scale(1.35);
  transform-origin: left center;
}