/* ═══════════════════════════════════════
   JunkHive Pros — Growth Package Styles
   ═══════════════════════════════════════ */

/* ─── Custom Properties ─── */
:root {
  --green-900: #0B2018;
  --green-800: #0F2D20;
  --green-700: #15803D;
  --green-600: #16A34A;
  --green-500: #22C55E;
  --green-300: #86EFAC;
  --amber-600: #D97706;
  --amber-500: #F59E0B;
  --amber-400: #FBBF24;
  --dark: #0D1A0F;
  --dark-2: #111F13;
  --light: #F4F8F4;
  --light-2: #FFFFFF;
  --text-on-dark: #E8F4EC;
  --text-muted-dark: #6B9070;
  --text-dark: #1A2E1C;
  --text-muted-light: #4B6454;
  --border-dark: rgba(255,255,255,0.08);
  --border-light: rgba(0,0,0,0.08);
  --card-dark: rgba(255,255,255,0.05);
  --card-light: #FFFFFF;
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.1);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.14);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --font-body: 'Inter', system-ui, sans-serif;
  --font-head: 'Plus Jakarta Sans', 'Inter', sans-serif;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: 0.95rem; outline: none; border: none; }
ul { list-style: none; }
strong { font-weight: 700; }
h1,h2,h3,h4 { font-family: var(--font-head); line-height: 1.15; }

/* ─── Layout ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-light { background: var(--light); }
.section-dark { background: var(--dark); }

/* ─── Utility ─── */
.text-green {
  background: linear-gradient(135deg, var(--green-600), var(--green-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-amber {
  background: linear-gradient(135deg, var(--amber-500), var(--amber-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.white { color: var(--text-on-dark) !important; }
.muted { color: var(--text-muted-dark) !important; }
.hidden { display: none !important; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.tag-green {
  color: var(--green-600);
  background: rgba(22,163,74,0.1);
  border: 1px solid rgba(22,163,74,0.25);
}
.tag-amber {
  color: var(--amber-500);
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.25);
}
.section-h2 {
  font-size: clamp(1.9rem, 3.8vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.section-p {
  font-size: 1rem;
  color: var(--text-muted-light);
  max-width: 620px;
  line-height: 1.75;
}
.section-header { margin-bottom: 56px; }
.center { text-align: center; }
.center .section-p { margin: 0 auto; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
  border: none;
}
.btn-lg { font-size: 1rem; padding: 15px 28px; }
.btn-block { width: 100%; justify-content: center; }
.btn-primary {
  background: linear-gradient(135deg, var(--green-700), var(--green-600));
  color: white;
  box-shadow: 0 4px 20px rgba(22,163,74,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(22,163,74,0.5); }
.btn-amber {
  background: linear-gradient(135deg, var(--amber-600), var(--amber-500));
  color: white;
  box-shadow: 0 4px 20px rgba(245,158,11,0.35);
}
.btn-amber:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(245,158,11,0.5); }
.btn-white {
  background: white;
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline-green {
  background: transparent;
  color: var(--green-700);
  border: 2px solid rgba(22,163,74,0.4);
}
.btn-outline-green:hover {
  background: rgba(22,163,74,0.08);
  border-color: var(--green-700);
  transform: translateY(-2px);
}
.pulse-cta { animation: pulse-green 3s infinite; }
@keyframes pulse-green {
  0%,100% { box-shadow: 0 4px 20px rgba(22,163,74,0.35); }
  50% { box-shadow: 0 4px 40px rgba(22,163,74,0.65), 0 0 60px rgba(22,163,74,0.2); }
}

/* ─── Reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ─── Scroll Progress ─── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-600), var(--amber-500));
  z-index: 9999;
  width: 0%;
  transition: width 0.1s linear;
}

/* ─── Announcement Bar ─── */
.ann-bar {
  background: var(--green-700);
  text-align: center;
  padding: 10px 60px 10px 24px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.95);
  position: relative;
  z-index: 1000;
}
.ann-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.ann-icon { font-size: 1rem; }
.ann-cta {
  color: var(--amber-400);
  font-weight: 700;
  white-space: nowrap;
}
.ann-cta:hover { text-decoration: underline; }
.ann-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  padding: 4px;
  transition: color var(--transition);
}
.ann-close:hover { color: white; }

/* ─── Navbar ─── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(11,32,24,0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-dark);
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(11,32,24,0.99);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
  gap: 16px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-logo-img { height: 84px; width: auto; object-fit: contain; display: block; }
.footer-logo-img { height: 110px; }
.logo-icon { display: flex; align-items: center; }
.logo-text-wrap { display: flex; flex-direction: column; }
.logo-main {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 900;
  color: white;
  line-height: 1.1;
}
.logo-main em {
  font-style: normal;
  color: var(--green-500);
}
.logo-loc { font-size: 0.7rem; color: var(--text-muted-dark); font-weight: 500; letter-spacing: 0.04em; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-link {
  font-size: 0.87rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: white;
  background: rgba(255,255,255,0.08);
}
.nav-portal { background: var(--green-600) !important; color: #fff !important; border: 1px solid var(--green-500); border-radius: 6px !important; font-weight: 700 !important; padding: 7px 14px !important; }
.nav-portal:hover { background: var(--green-500) !important; color: #fff !important; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
}
.nav-phone:hover { color: var(--green-500); }
.nav-cta { padding: 9px 18px !important; font-size: 0.87rem !important; }
.mobile-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
}
.mobile-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-btn.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-btn.active span:nth-child(2) { opacity: 0; }
.mobile-btn.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--green-900);
  overflow: hidden;
  padding: 80px 0 60px;
}
#hero-canvas { position: absolute; inset: 0; z-index: 0; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(21,128,61,0.18) 0%, transparent 70%);
  z-index: 1;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}
.g1 { width: 600px; height: 500px; background: radial-gradient(rgba(22,163,74,0.14), transparent 70%); top: -80px; right: -50px; }
.g2 { width: 400px; height: 400px; background: radial-gradient(rgba(245,158,11,0.08), transparent 70%); bottom: -80px; left: 10%; }
.hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green-300);
  background: rgba(22,163,74,0.12);
  border: 1px solid rgba(22,163,74,0.3);
  padding: 7px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.pulse-dot {
  width: 7px;
  height: 7px;
  background: var(--green-500);
  border-radius: 50%;
  animation: pdot 2s infinite;
}
@keyframes pdot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.3)} }
.hero-h1 {
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  font-weight: 900;
  color: white;
  line-height: 1.1;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}
.hero-accent {
  background: linear-gradient(135deg, var(--green-500), var(--amber-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-p {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 500px;
}
.hero-p strong { color: white; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.hb-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 6px 13px;
  border-radius: 100px;
}
.hb-ico.green { color: var(--green-500); }
.hb-ico.amber { color: var(--amber-400); }

/* Hero Card */
.hero-right { position: relative; }
.hero-card-stack { position: relative; }
.hc-main {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  padding: 32px;
  backdrop-filter: blur(20px);
  animation: float-card 6s ease-in-out infinite;
}
@keyframes float-card { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
.hc-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.hc-icon { font-size: 2rem; }
.hc-title { font-size: 1rem; font-weight: 700; color: white; }
.hc-sub { font-size: 0.78rem; color: rgba(255,255,255,0.5); }
.hc-steps { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.hcs-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
}
.hcs-item.done { color: rgba(255,255,255,0.9); }
.hcs-item.active { color: var(--green-300); }
.hcs-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}
.hcs-item.done .hcs-dot { background: var(--green-500); }
.hcs-item.active .hcs-dot { background: var(--amber-400); animation: pdot 2s infinite; }
.hc-float {
  position: absolute;
  background: var(--green-900);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  backdrop-filter: blur(12px);
  white-space: nowrap;
  z-index: 3;
}
.hc-float--1 { top: -16px; right: -20px; }
.hc-float--2 { bottom: 60px; left: -28px; }
.hc-float--3 { bottom: -14px; right: 30px; display: flex; align-items: center; gap: 8px; }
.hcf-num { display: block; font-family: var(--font-head); font-size: 1.2rem; font-weight: 800; color: var(--green-400, var(--green-500)); }
.hcf-stars { font-size: 1rem; color: var(--amber-400); }
.hcf-label { display: block; font-size: 0.72rem; color: rgba(255,255,255,0.5); margin-top: 2px; }
.hc-float--3 .hcf-label { margin-top: 0; }

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  z-index: 2;
}
.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-ball {
  width: 4px;
  height: 7px;
  background: var(--green-500);
  border-radius: 2px;
  animation: sb 2s infinite;
}
@keyframes sb { 0%{transform:translateY(0);opacity:1} 100%{transform:translateY(12px);opacity:0} }

/* ─── Stats Bar ─── */
.stats-bar {
  background: var(--dark-2);
  border-bottom: 1px solid var(--border-dark);
  padding: 28px 0;
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
}
.stat-item { flex: 1; text-align: center; padding: 0 24px; }
.stat-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--green-500);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-star { color: var(--amber-400); }
.stat-lbl { font-size: 0.8rem; color: var(--text-muted-dark); font-weight: 500; }
.stat-div { width: 1px; height: 48px; background: var(--border-dark); flex-shrink: 0; }

/* ─── Services ─── */
.services { padding: 96px 0; }
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.svc-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 30px;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  box-shadow: var(--shadow-sm);
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(22,163,74,0.2); }
.svc-card.featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 0 28px;
  align-items: start;
  background: linear-gradient(135deg, rgba(22,163,74,0.06), rgba(245,158,11,0.04));
  border-color: rgba(22,163,74,0.2);
}
.svc-card.featured .svc-icon-box { grid-row: 1 / 3; }
.svc-card.featured h3 { grid-column: 2; }
.svc-card.featured p { grid-column: 2; }
.svc-card.featured .svc-list { grid-column: 3; grid-row: 1 / 3; padding-top: 0; }
.svc-card.featured .svc-link { grid-column: 2; }
.svc-new-tag {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--amber-600);
  background: rgba(245,158,11,0.12);
  border: 1px solid rgba(245,158,11,0.35);
  padding: 6px 14px;
  border-radius: 0 var(--radius-lg) 0 var(--radius-md);
}
.svc-icon-box {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
  flex-shrink: 0;
}
.icon-green { background: rgba(22,163,74,0.1); }
.icon-amber { background: rgba(245,158,11,0.1); }
.svc-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.svc-card p { font-size: 0.87rem; color: var(--text-muted-light); line-height: 1.65; margin-bottom: 16px; }
.svc-list { margin-bottom: 20px; }
.svc-list li {
  font-size: 0.83rem;
  color: var(--text-muted-light);
  padding: 5px 0 5px 20px;
  position: relative;
}
.svc-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-500);
}
.svc-link {
  font-size: 0.84rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition);
}
.svc-link.green { color: var(--green-700); }
.svc-link:hover { gap: 8px; }

/* ─── How It Works ─── */
.how-it-works { padding: 96px 0; }
.hiw-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.hiw-connector {
  position: absolute;
  top: 48px;
  left: calc(16.66% + 36px);
  right: calc(16.66% + 36px);
  height: 2px;
  background: linear-gradient(90deg, var(--green-700), var(--amber-500));
  opacity: 0.3;
  z-index: 0;
}
.hiw-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}
.hiw-num {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--green-500);
  background: rgba(22,163,74,0.15);
  border: 1px solid rgba(22,163,74,0.3);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.hiw-emoji {
  font-size: 2.2rem;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  margin-bottom: 20px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.hiw-step:hover .hiw-emoji { transform: scale(1.1); box-shadow: 0 0 30px rgba(22,163,74,0.3); }
.hiw-step h3 { font-size: 1.05rem; font-weight: 700; color: white; margin-bottom: 10px; }
.hiw-step p { font-size: 0.86rem; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 14px; }
.hiw-tag {
  font-size: 0.73rem;
  color: var(--amber-400);
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.2);
  padding: 5px 12px;
  border-radius: 100px;
}

/* ─── Gallery / Before & After ─── */
.gallery { padding: 96px 0; }
.ba-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
}
.ba-slider {
  position: relative;
  height: 340px;
  overflow: hidden;
  cursor: col-resize;
  user-select: none;
}
.ba-before, .ba-after {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.ba-before { z-index: 1; }
.ba-after { z-index: 2; width: 50%; border-right: 2.5px solid white; }
.ba-lbl {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(0,0,0,0.65);
  color: rgba(255,255,255,0.8);
  padding: 5px 12px;
  border-radius: 100px;
  z-index: 5;
  backdrop-filter: blur(4px);
}
.ba-lbl-after { color: var(--green-300); background: rgba(22,163,74,0.2); border: 1px solid rgba(22,163,74,0.3); }
/* ── Before/After SVG fills container ── */
.ba-svg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  display: block;
}

/* Scene 1 BEFORE — Estate Cleanout: cluttered living room */
.scene-before-1 {
  background:
    /* sofa */
    linear-gradient(180deg,#5C3D1E,#3A2510) 6% 52% / 40% 26% no-repeat,
    /* sofa arm left */
    linear-gradient(#6B4820,#4A3015) 6% 48% / 6% 32% no-repeat,
    /* sofa arm right */
    linear-gradient(#6B4820,#4A3015) 40% 48% / 6% 32% no-repeat,
    /* TV / monitor */
    linear-gradient(#1A1A2E,#0D0D1A) 55% 12% / 30% 22% no-repeat,
    /* TV stand */
    linear-gradient(#3A2510,#2A1A08) 58% 34% / 24% 8% no-repeat,
    /* big box left */
    linear-gradient(#8B6A3A,#6B4E22) 2% 25% / 18% 22% no-repeat,
    /* big box right */
    linear-gradient(#7A5C30,#5C4018) 78% 38% / 16% 24% no-repeat,
    /* small box stacked */
    linear-gradient(#9A7A42,#7A5E28) 80% 20% / 14% 18% no-repeat,
    /* pile bottom right */
    linear-gradient(#4A3015,#2E1C08) 68% 58% / 28% 18% no-repeat,
    /* floor */
    linear-gradient(#2A1A08,#1E1208) 0 62% / 100% 38% no-repeat,
    /* wall */
    linear-gradient(160deg,#1a0f07,#2e1a0a,#1a0f07);
}
.scene-before-1::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    /* box outlines / depth */
    linear-gradient(rgba(0,0,0,0.3),rgba(0,0,0,0.3)) 6% 25% / 18% 22% no-repeat,
    linear-gradient(rgba(255,255,255,0.07),transparent) 0 0 / 100% 50% no-repeat,
    /* floor shadow */
    linear-gradient(transparent 60%, rgba(0,0,0,0.55)) 0 0 / 100% 100% no-repeat;
  z-index: 1;
}
.scene-before-1::after {
  content: '';
  position: absolute;
  /* floor lines */
  bottom: 0; left: 0; right: 0; height: 38%;
  background: repeating-linear-gradient(90deg,
    rgba(255,255,255,0.04) 0, rgba(255,255,255,0.04) 1px,
    transparent 1px, transparent 44px);
  z-index: 2;
}

/* Scene 1 AFTER — Estate Cleanout: empty clean room */
.scene-after-1 {
  background:
    /* hardwood floor boards */
    repeating-linear-gradient(90deg,
      transparent 0, transparent 59px,
      rgba(190,150,100,0.18) 59px, rgba(190,150,100,0.18) 60px) 0 58% / 100% 42% no-repeat,
    repeating-linear-gradient(0deg,
      transparent 0, transparent 39px,
      rgba(190,150,100,0.1) 39px, rgba(190,150,100,0.1) 40px) 0 58% / 100% 42% no-repeat,
    /* floor */
    linear-gradient(#D4B896,#C8AA82) 0 58% / 100% 42% no-repeat,
    /* baseboard */
    linear-gradient(#B8967A,#A07E62) 0 55% / 100% 3% no-repeat,
    /* wall light gradient */
    linear-gradient(180deg,#F8FAF8,#EEF4EE) 0 0 / 100% 58% no-repeat;
}
.scene-after-1::before {
  content: '';
  position: absolute; inset: 0;
  background:
    /* light bloom from top */
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(255,255,255,0.6) 0%, transparent 70%),
    /* subtle green tint */
    linear-gradient(180deg, transparent 50%, rgba(22,163,74,0.04));
}
.scene-after-1::after {
  content: '✓';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-60%);
  font-size: 3.5rem;
  color: rgba(22,163,74,0.25);
  font-weight: 900;
  z-index: 1;
}

/* Scene 2 BEFORE — Garage: cluttered workshop */
.scene-before-2 {
  background:
    /* back wall shelving unit */
    linear-gradient(#2A2A2A,#1E1E1E) 60% 5% / 38% 70% no-repeat,
    /* shelf boards */
    linear-gradient(#383838,#303030) 60% 18% / 38% 3% no-repeat,
    linear-gradient(#383838,#303030) 60% 34% / 38% 3% no-repeat,
    linear-gradient(#383838,#303030) 60% 50% / 38% 3% no-repeat,
    /* items on shelves */
    linear-gradient(#5A3E28,#3E2A18) 62% 8% / 10% 10% no-repeat,
    linear-gradient(#1E3A5F,#142A47) 74% 8% / 8% 10% no-repeat,
    linear-gradient(#3A3A3A,#2A2A2A) 83% 8% / 12% 10% no-repeat,
    linear-gradient(#4A3820,#362810) 63% 22% / 12% 10% no-repeat,
    linear-gradient(#2A4A2A,#1E361E) 77% 22% / 10% 10% no-repeat,
    /* big boxes floor left */
    linear-gradient(#7A6030,#5C4820) 2% 42% / 22% 28% no-repeat,
    linear-gradient(#8A6E38,#6A5228) 4% 28% / 20% 14% no-repeat,
    /* toolbox */
    linear-gradient(#C0392B,#962D22) 26% 55% / 18% 14% no-repeat,
    linear-gradient(#E74C3C,#C0392B) 26% 50% / 18% 6% no-repeat,
    /* tire */
    radial-gradient(circle, transparent 30%, #2A2A2A 30%, #2A2A2A 48%, transparent 48%) 44% 52% / 14% 22% no-repeat,
    /* floor */
    repeating-linear-gradient(90deg,
      rgba(255,255,255,0.03) 0, rgba(255,255,255,0.03) 1px,
      transparent 1px, transparent 38px) 0 70% / 100% 30% no-repeat,
    linear-gradient(#1A1A1A,#111111) 0 70% / 100% 30% no-repeat,
    /* wall */
    linear-gradient(170deg,#141414,#1E1E1E,#181818);
}
.scene-before-2::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(transparent 65%, rgba(0,0,0,0.7)) 0 0 / 100% 100% no-repeat,
    linear-gradient(rgba(255,255,255,0.04) 0%, transparent 30%) 0 0 / 100% 100% no-repeat;
  z-index: 1;
}
.scene-before-2::after { content: none; }

/* Scene 2 AFTER — Garage: clean open space */
.scene-after-2 {
  background:
    /* floor epoxy / concrete */
    repeating-linear-gradient(90deg,
      transparent 0, transparent 59px,
      rgba(0,0,0,0.05) 59px, rgba(0,0,0,0.05) 60px) 0 65% / 100% 35% no-repeat,
    repeating-linear-gradient(0deg,
      transparent 0, transparent 29px,
      rgba(0,0,0,0.03) 29px, rgba(0,0,0,0.03) 30px) 0 65% / 100% 35% no-repeat,
    linear-gradient(#DCDCDC,#D0D0D0) 0 65% / 100% 35% no-repeat,
    /* baseboard */
    linear-gradient(#C0C0C0,#B4B4B4) 0 62% / 100% 4% no-repeat,
    /* back wall with light */
    linear-gradient(180deg,#F2F2F2,#EAEAEA) 0 0 / 100% 65% no-repeat;
}
.scene-after-2::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(255,255,255,0.8) 0%, transparent 70%),
    linear-gradient(transparent 60%, rgba(0,0,0,0.06));
}
.scene-after-2::after {
  content: '✓';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-60%);
  font-size: 3.5rem;
  color: rgba(22,163,74,0.2);
  font-weight: 900;
  z-index: 1;
}
.ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  background: white;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 12px rgba(0,0,0,0.3);
}
.ba-handle {
  width: 44px;
  height: 44px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  flex-shrink: 0;
}
.ba-meta {
  padding: 24px 28px;
  background: white;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.ba-info h3 { font-size: 1rem; margin-bottom: 4px; color: var(--text-dark); }
.ba-info p { font-size: 0.83rem; color: var(--text-muted-light); }
.ba-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.ba-chip {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--green-700);
  background: rgba(22,163,74,0.08);
  border: 1px solid rgba(22,163,74,0.2);
  padding: 5px 12px;
  border-radius: 100px;
}

/* ─── Gallery Image Showcase ─── */
.showcase-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  background: white;
}
.showcase-img-wrap {
  width: 100%;
  overflow: hidden;
  max-height: 520px;
}
.showcase-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.showcase-card:hover .showcase-img-wrap img {
  transform: scale(1.02);
}

/* ─── Pricing ─── */
.pricing { padding: 96px 0; }
.price-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 5px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.ptab {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  padding: 10px 24px;
  border-radius: 100px;
  transition: all var(--transition);
}
.ptab.active { background: var(--green-700); color: white; box-shadow: 0 4px 12px rgba(22,163,74,0.4); }
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}
.price-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 32px;
  text-align: center;
  position: relative;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.price-card:hover { transform: translateY(-6px); border-color: rgba(22,163,74,0.3); }
.price-featured {
  border-color: rgba(245,158,11,0.4) !important;
  transform: translateY(-8px);
  background: rgba(245,158,11,0.06) !important;
  box-shadow: 0 0 0 1px rgba(245,158,11,0.3), 0 20px 60px rgba(0,0,0,0.3);
}
.price-featured:hover { transform: translateY(-14px); }
.price-pop {
  background: linear-gradient(90deg, var(--amber-600), var(--amber-500));
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 8px 16px;
  margin: -32px -32px 24px;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
.price-icon { font-size: 2.2rem; margin-bottom: 12px; }
.price-card h3 { font-size: 1.2rem; font-weight: 700; color: white; margin-bottom: 12px; }
.price-range {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--green-400, var(--green-500));
  margin-bottom: 14px;
  line-height: 1;
}
.price-range span { font-size: 1.4rem; color: rgba(255,255,255,0.4); }
.price-desc { font-size: 0.84rem; color: rgba(255,255,255,0.55); line-height: 1.65; margin-bottom: 20px; }
.price-includes { text-align: left; margin-bottom: 24px; }
.price-includes li {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.7);
  padding: 7px 0 7px 22px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.price-includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 7px;
  color: var(--green-500);
  font-weight: 700;
  font-size: 0.85rem;
}
.price-note {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  line-height: 1.6;
}

/* Trash Can Pricing */
.trash-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 32px; }
.trash-h3 { font-size: 1.1rem; font-weight: 700; color: white; margin-bottom: 20px; }
.trash-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.trash-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  position: relative;
  transition: transform var(--transition), border-color var(--transition);
}
.trash-card:hover { transform: translateY(-4px); border-color: rgba(22,163,74,0.3); }
.trash-featured { border-color: rgba(245,158,11,0.3) !important; background: rgba(245,158,11,0.05) !important; }
.tc-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.68rem;
  font-weight: 700;
  color: white;
  background: var(--amber-600);
  padding: 3px 10px;
  border-radius: 100px;
  white-space: nowrap;
}
.tc-label { font-size: 0.85rem; font-weight: 600; color: rgba(255,255,255,0.7); margin-bottom: 10px; }
.tc-price { font-family: var(--font-head); font-size: 2rem; font-weight: 900; color: var(--green-500); margin-bottom: 4px; }
.tc-price span { font-size: 1rem; color: rgba(255,255,255,0.4); font-weight: 500; }
.tc-sub { font-size: 0.75rem; color: rgba(255,255,255,0.4); margin-bottom: 16px; }
.hoa-banner {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(245,158,11,0.08);
  border: 1px solid rgba(245,158,11,0.25);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  flex-wrap: wrap;
}
.hoa-icon { font-size: 2rem; }
.hoa-text { flex: 1; min-width: 200px; }
.hoa-text strong { display: block; font-size: 0.95rem; color: var(--amber-400); margin-bottom: 6px; }
.hoa-text p { font-size: 0.83rem; color: rgba(255,255,255,0.55); line-height: 1.6; }

/* ─── Reviews ─── */
.reviews { padding: 96px 0; }
.agg-row { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 14px; }
.agg-stars { font-size: 1.4rem; color: var(--amber-500); }
.agg-info { font-size: 0.9rem; color: var(--text-muted-light); }
.agg-info strong { color: var(--text-dark); }
.reviews-carousel { position: relative; overflow: hidden; }
.reviews-track {
  display: flex;
  gap: 22px;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.rev-card {
  min-width: calc(33.333% - 15px);
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 30px;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.rev-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.rev-stars { font-size: 1rem; color: var(--amber-500); margin-bottom: 14px; }
.rev-card blockquote {
  font-size: 0.88rem;
  color: var(--text-muted-light);
  line-height: 1.75;
  margin-bottom: 22px;
  font-style: italic;
}
.rev-author { display: flex; align-items: center; gap: 12px; }
.rev-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.av-1 { background: linear-gradient(135deg, #15803D, #22C55E); }
.av-2 { background: linear-gradient(135deg, #D97706, #FBBF24); }
.av-3 { background: linear-gradient(135deg, #1D4ED8, #60A5FA); }
.av-4 { background: linear-gradient(135deg, #9D174D, #F472B6); }
.av-5 { background: linear-gradient(135deg, #0B2018, #15803D); }
.rev-info { flex: 1; }
.rev-info strong { display: block; font-size: 0.9rem; color: var(--text-dark); margin-bottom: 2px; }
.rev-info span { font-size: 0.77rem; color: var(--text-muted-light); }
.rev-verified { font-size: 0.72rem; font-weight: 600; color: var(--green-700); white-space: nowrap; }
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}
.cc-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  border: 1.5px solid var(--border-light);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.cc-btn:hover { background: var(--green-700); color: white; border-color: var(--green-700); transform: scale(1.05); }
.cc-dots { display: flex; gap: 8px; }
.cc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-light);
  border: 1.5px solid rgba(0,0,0,0.1);
  cursor: pointer;
  transition: all var(--transition);
}
.cc-dot.active { background: var(--green-700); width: 24px; border-radius: 4px; border-color: var(--green-700); }
.review-cta-row { text-align: center; margin-top: 24px; font-size: 0.88rem; color: var(--text-muted-light); }
.green-link { color: var(--green-700); font-weight: 600; }
.green-link:hover { text-decoration: underline; }

/* ─── About ─── */
.about { padding: 96px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-p { font-size: 0.95rem; color: rgba(255,255,255,0.6); line-height: 1.75; margin-bottom: 16px; }
.about-pillars { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.pillar { display: flex; align-items: flex-start; gap: 16px; }
.pillar-icon {
  font-size: 1.4rem;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}
.pillar strong { display: block; font-size: 0.92rem; color: white; margin-bottom: 4px; }
.pillar p { font-size: 0.83rem; color: rgba(255,255,255,0.5); }
.av-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 28px;
}
.avc-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
.avc-logo-small {
  width: 36px;
  height: 36px;
  background: var(--green-700);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 900;
  color: white;
}
.avc-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 24px; }
.avc-s { text-align: center; padding: 16px; background: rgba(255,255,255,0.04); border-radius: var(--radius-md); }
.avc-s strong { display: block; font-family: var(--font-head); font-size: 1.3rem; font-weight: 800; color: var(--green-500); }
.avc-s span { font-size: 0.75rem; color: rgba(255,255,255,0.4); }
.avc-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.avc-badge {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green-300);
  background: rgba(22,163,74,0.1);
  border: 1px solid rgba(22,163,74,0.25);
  padding: 5px 12px;
  border-radius: 100px;
}
.avc-hours h4 { font-size: 0.8rem; font-weight: 700; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; }
.avc-hr { display: flex; justify-content: space-between; font-size: 0.84rem; color: rgba(255,255,255,0.7); padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.avc-hr.emerg { color: var(--amber-400); border-bottom: none; }

/* ─── FAQ ─── */
.faq { padding: 96px 0; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.faq-item {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.faq-item.open { border-color: rgba(22,163,74,0.3); box-shadow: 0 4px 20px rgba(22,163,74,0.08); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 20px 22px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  transition: background var(--transition);
}
.faq-q:hover { background: var(--light); }
.faq-plus {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(22,163,74,0.1);
  color: var(--green-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition);
  line-height: 1;
}
.faq-item.open .faq-plus { transform: rotate(45deg); background: var(--green-700); color: white; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding var(--transition);
  padding: 0 22px;
}
.faq-a.open { max-height: 300px; padding: 0 22px 20px; }
.faq-a p { font-size: 0.86rem; color: var(--text-muted-light); line-height: 1.75; }

/* ─── Join Our Team ─── */
.join { padding: 96px 0; }
.join-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.join-p { font-size: 0.95rem; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 32px; }
.join-perks { display: flex; flex-direction: column; gap: 16px; margin-bottom: 24px; }
.jp-item { display: flex; align-items: flex-start; gap: 14px; }
.jp-ico {
  font-size: 1.4rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}
.jp-item strong { display: block; font-size: 0.92rem; color: white; margin-bottom: 4px; }
.jp-item p { font-size: 0.83rem; color: rgba(255,255,255,0.5); }
.join-req { font-size: 0.8rem; color: rgba(255,255,255,0.35); line-height: 1.65; }
.join-form-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 36px;
}
.join-form-card h3 { font-size: 1.2rem; color: white; margin-bottom: 24px; }

/* ─── Forms ─── */
.form-g { margin-bottom: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-g label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 7px;
}
.section-dark .form-g label { color: rgba(255,255,255,0.6); }
.section-light .form-g label { color: var(--text-muted-light); }
.contact-form-card .form-g label { color: var(--text-muted-light); }
.form-g input, .form-g select, .form-g textarea {
  width: 100%;
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: 0.9rem;
  transition: border-color var(--transition), background var(--transition);
}
.section-dark .form-g input,
.section-dark .form-g select,
.section-dark .form-g textarea {
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.12);
  color: white;
}
.section-dark .form-g input:focus,
.section-dark .form-g select:focus,
.section-dark .form-g textarea:focus {
  border-color: rgba(22,163,74,0.5);
  background: rgba(22,163,74,0.05);
}
.section-dark .form-g input::placeholder,
.section-dark .form-g textarea::placeholder { color: rgba(255,255,255,0.3); }
.contact-form-card .form-g input,
.contact-form-card .form-g select,
.contact-form-card .form-g textarea {
  background: var(--light);
  border: 1.5px solid var(--border-light);
  color: var(--text-dark);
}
.contact-form-card .form-g input:focus,
.contact-form-card .form-g select:focus,
.contact-form-card .form-g textarea:focus {
  border-color: rgba(22,163,74,0.4);
  background: rgba(22,163,74,0.03);
}
.contact-form-card .form-g input::placeholder,
.contact-form-card .form-g textarea::placeholder { color: var(--text-muted-light); }
select option { background: var(--dark); color: white; }
.form-note { font-size: 0.75rem; color: var(--text-muted-light); text-align: center; margin-top: 10px; }

/* ─── Final CTA ─── */
.final-cta {
  background: linear-gradient(135deg, var(--green-900), var(--dark-2));
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}
.fcta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(22,163,74,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.fcta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.fcta-text { text-align: left; }
.fcta-text h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); color: white; margin-bottom: 8px; }
.fcta-text p { font-size: 0.95rem; color: rgba(255,255,255,0.55); }
.fcta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ─── Contact ─── */
.contact { padding: 96px 0; }
.contact-grid { display: grid; grid-template-columns: 380px 1fr; gap: 48px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.ci-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}
.ci-ico { font-size: 1.5rem; flex-shrink: 0; }
.ci-card strong { display: block; font-size: 0.88rem; margin-bottom: 4px; color: var(--text-dark); }
.ci-link { display: block; font-size: 1rem; font-weight: 700; color: var(--green-700); margin-bottom: 4px; }
.ci-link:hover { color: var(--green-600); }
.ci-card p { font-size: 0.8rem; color: var(--text-muted-light); line-height: 1.65; }
.ci-card em { color: var(--amber-600); }
.ci-loc { display: block; font-size: 0.95rem; font-weight: 600; color: var(--text-dark); margin-bottom: 4px; }
.ci-guarantee {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(22,163,74,0.07);
  border: 1px solid rgba(22,163,74,0.2);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  font-size: 0.85rem;
}
.ci-guarantee span { font-size: 1.5rem; flex-shrink: 0; }
.ci-guarantee p { color: var(--text-muted-light); line-height: 1.55; }
.ci-guarantee strong { color: var(--green-700); }
.contact-form-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.contact-form-card h3 { font-size: 1.2rem; color: var(--text-dark); margin-bottom: 6px; }
.cf-sub { font-size: 0.85rem; color: var(--text-muted-light); margin-bottom: 24px; }

/* ─── Pay Invoice ─── */
.pay-invoice-wrap { margin-top: 40px; }
.pay-invoice-card {
  background: white;
  border: 1px solid rgba(22,163,74,.18);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
  max-width: 780px;
  margin: 0 auto;
}
.pay-invoice-card h3 { font-size: 1.2rem; color: var(--text-dark); margin-bottom: 6px; }
.pi-top {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
}
.pi-emoji {
  font-size: 1.6rem;
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(22,163,74,.12), rgba(22,163,74,.06));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pay-invoice-card .form-g input {
  background: var(--light);
  border: 1.5px solid var(--border-light);
  color: var(--text-dark);
}
.pay-invoice-card .form-g input:focus {
  border-color: rgba(22,163,74,.4);
  background: rgba(22,163,74,.03);
}
.pay-invoice-card .form-g input::placeholder { color: var(--text-muted-light); }
.pay-invoice-card .form-g label { color: var(--text-muted-light); }
.pi-error {
  background: rgba(239,68,68,.08);
  color: #dc2626;
  border: 1px solid rgba(239,68,68,.2);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: .82rem;
  margin-bottom: 4px;
}
@media (max-width: 600px) {
  .pay-invoice-card { padding: 28px 20px; }
  .pi-top { flex-direction: column; gap: 10px; }
}

/* ─── Footer ─── */
.footer { background: var(--dark); }
.footer-top { padding: 60px 0; border-bottom: 1px solid var(--border-dark); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 48px; }
.footer-brand {}
.footer-logo { display: inline-flex; margin-bottom: 16px; }
.footer-tagline { font-size: 0.84rem; color: rgba(255,255,255,0.45); line-height: 1.7; margin-bottom: 20px; max-width: 280px; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; }
.fc-item { font-size: 0.85rem; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.fc-item:hover { color: var(--green-400, var(--green-500)); }
.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
  margin-bottom: 14px;
}
.footer-col ul li { margin-bottom: 10px; font-size: 0.85rem; color: rgba(255,255,255,0.45); }
.footer-col ul li a { transition: color var(--transition); }
.footer-col ul li a:hover { color: white; }
.footer-trust { margin-top: 20px; display: flex; flex-direction: column; gap: 8px; }
.ft-badge {
  font-size: 0.76rem;
  color: var(--green-300);
  background: rgba(22,163,74,0.08);
  border: 1px solid rgba(22,163,74,0.18);
  padding: 5px 10px;
  border-radius: 100px;
  width: fit-content;
}
.footer-bottom { padding: 20px 0; }
.footer-bottom-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-bottom-row p { font-size: 0.8rem; color: rgba(255,255,255,0.25); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 0.8rem; color: rgba(255,255,255,0.25); transition: color var(--transition); }
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ─── Back to Top ─── */
.btt {
  position: fixed;
  bottom: 84px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-700);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 500;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(22,163,74,0.4);
}
.btt.show { opacity: 1; transform: translateY(0); }
.btt:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(22,163,74,0.5); }

/* ─── Float Widget ─── */
.float-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 500;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--transition), transform var(--transition);
}
.float-widget.show { opacity: 1; transform: translateY(0); }
.fw-call {
  width: 44px;
  height: 44px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
}
.fw-call:hover { transform: translateY(-2px); color: var(--green-700); }
.fw-main {
  background: linear-gradient(135deg, var(--green-700), var(--green-600));
  color: white;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 20px rgba(22,163,74,0.45);
  transition: transform var(--transition), box-shadow var(--transition);
}
.fw-main:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(22,163,74,0.55); }

/* ─── Toast ─── */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(60px);
  background: var(--dark-2);
  border: 1px solid rgba(22,163,74,0.3);
  border-radius: var(--radius-md);
  padding: 14px 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  color: white;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  box-shadow: var(--shadow-lg);
  white-space: nowrap;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast.toast-error { border-color: rgba(239,68,68,0.4); }
.toast.toast-error svg { color: #EF4444; }

/* ─── Trust Grid ─── */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
.trust-card {
  background: var(--card-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.trust-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
}
.trust-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.trust-card p {
  font-size: 0.88rem;
  color: var(--text-muted-light);
  line-height: 1.65;
}

/* ─── First Review CTA ─── */
.first-review-cta {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  border-radius: var(--radius-xl);
  padding: 56px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.first-review-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 0%, rgba(22,163,74,0.12) 0%, transparent 70%);
}
.frc-inner { position: relative; z-index: 1; max-width: 520px; margin: 0 auto; }
.frc-stars {
  font-size: 1.8rem;
  letter-spacing: 4px;
  color: var(--amber-500);
  margin-bottom: 16px;
  display: block;
  opacity: 0.6;
}
.first-review-cta h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-on-dark);
  margin-bottom: 14px;
}
.first-review-cta p {
  color: var(--text-muted-dark);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 28px;
}
.first-review-cta .btn { gap: 10px; }

@media (max-width: 1024px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .trust-grid { grid-template-columns: 1fr; }
  .first-review-cta { padding: 40px 24px; }
  .first-review-cta h3 { font-size: 1.3rem; }
}

/* ─── Contact Map ─── */
.contact-map-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 48px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}
.contact-map-wrap iframe { display: block; }
.map-badge {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-light);
  border-radius: 100px;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}

/* ─── Footer Social ─── */
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-on-dark);
  transition: background var(--transition), transform var(--transition), border-color var(--transition);
}
.social-link:hover {
  background: rgba(22,163,74,0.2);
  border-color: rgba(22,163,74,0.4);
  transform: translateY(-2px);
}

/* ─── Before/After Scene Labels ─── */
.scene-label {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 14px;
  border-radius: 100px;
  white-space: nowrap;
  z-index: 3;
}
.scene-label-before {
  background: rgba(0,0,0,0.55);
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.15);
}
.scene-label-after {
  background: rgba(22,163,74,0.15);
  color: var(--green-500);
  border: 1px solid rgba(22,163,74,0.3);
}

/* GHL Calendar embed divider */
.ghl-calendar-divider {
  display: flex; align-items: center; gap: 12px;
  margin: 28px 0 20px; color: var(--text-muted-light); font-size: 0.82rem;
}
.ghl-calendar-divider::before,
.ghl-calendar-divider::after { content: ''; flex: 1; height: 1px; background: var(--border-light); }
.ghl-calendar-wrap iframe { min-height: 600px; border-radius: var(--radius-md); }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { max-width: 480px; margin: 0 auto; }
  .hc-float { display: none; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .svc-card.featured {
    grid-column: 1 / -1;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto auto;
  }
  .svc-card.featured .svc-icon-box { grid-row: 1 / 3; }
  .svc-card.featured h3 { grid-column: 2; }
  .svc-card.featured p { grid-column: 2; }
  .svc-card.featured .svc-list { grid-column: 2; grid-row: auto; }
  .svc-card.featured .svc-link { grid-column: 2; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .join-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .rev-card { min-width: calc(50% - 11px); }
  .float-widget { display: none; }
  .fcta-inner { justify-content: center; text-align: center; }
  .fcta-text { text-align: center; }
}
@media (max-width: 768px) {
  .section-light, .section-dark, .how-it-works, .gallery, .reviews, .about, .faq, .join, .contact, .final-cta { padding: 60px 0; }
  .nav-links { display: none; }
  .nav-phone { display: none; }
  .mobile-btn { display: flex; }
  .nav-logo-img { height: 68px; }
  .footer-logo-img { height: 88px; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 100px 0 0 0;
    background: rgba(11,32,24,0.99);
    backdrop-filter: blur(20px);
    padding: 32px 24px;
    z-index: 800;
    gap: 6px;
  }
  .nav-link { font-size: 1.1rem; padding: 13px 16px; }
  .nav-cta { padding: 8px 14px !important; font-size: 0.85rem !important; }
  .hero { padding: 60px 0 40px; min-height: auto; }
  .hero-h1 { font-size: clamp(2rem, 7vw, 2.8rem); }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .hiw-steps { grid-template-columns: 1fr; gap: 40px; }
  .hiw-connector { display: none; }
  .svc-grid { grid-template-columns: 1fr; }
  .svc-card.featured {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .svc-card.featured h3 { grid-column: 1; }
  .svc-card.featured p { grid-column: 1; }
  .svc-card.featured .svc-icon-box { grid-row: auto; grid-column: 1; }
  .svc-card.featured .svc-list { grid-column: 1; grid-row: auto; }
  .svc-card.featured .svc-link { grid-column: 1; }
  .price-grid { grid-template-columns: 1fr; }
  .price-featured { transform: none; }
  .trash-grid { grid-template-columns: 1fr; gap: 32px; }
  .trash-cards { grid-template-columns: 1fr 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .ba-slider { height: 260px; }
  .ba-meta { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-row { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .stats-grid { flex-wrap: wrap; }
  .stat-item { min-width: 45%; }
  .stat-div { display: none; }
  .rev-card { min-width: 100%; }
  .contact-form-card { padding: 28px 24px; }
  .join-form-card { padding: 28px 24px; }
  .fcta-actions { flex-direction: column; width: 100%; }
  .fcta-actions .btn { width: 100%; justify-content: center; }
  .avc-stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section-h2 { font-size: 1.7rem; }
  .hero-h1 { font-size: 1.9rem; }
  .hero-p { font-size: 0.95rem; }
  .hero-badge { font-size: 0.72rem; padding: 4px 10px; }
  .hero-badges { gap: 6px; }
  .trash-cards { grid-template-columns: 1fr; }
  .stat-item { min-width: 100%; }
  .stat-num { font-size: 1.8rem; }
  .contact-form-card { padding: 20px 16px; }
  .join-form-card { padding: 20px 16px; }
  .svc-card { padding: 20px; }

  .price-card { padding: 24px 20px; }
  .price-pop { margin: -24px -20px 20px; }
  .price-tabs { flex-wrap: wrap; justify-content: center; }
  .ptab { padding: 8px 18px; font-size: 0.82rem; }
  .avc-stats { grid-template-columns: 1fr; }
  .fcta-inner { flex-direction: column; gap: 20px; }
  .ann-bar { padding: 8px 48px 8px 16px; font-size: 0.82rem; }
  .nav-cta { display: none !important; }
  .hero-right { max-width: 100%; }
  .hc-main { padding: 24px 20px; }
  .hiw-step { padding: 0 8px; }
  .jb-filters select, .jb-filters input { font-size: 0.85rem; }
}
