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

:root {
  --green-900: #0f2e1f;
  --green-700: #1a5c3a;
  --green-600: #1f7a4d;
  --green-500: #27a566;
  --green-400: #3dcc82;
  --green-300: #6edda3;
  --green-100: #e6f7ee;
  --green-50: #f0fbf5;
  --cream: #faf9f6;
  --cream-dark: #f2f0eb;
  --charcoal: #1a1a1a;
  --slate: #4a4a4a;
  --muted: #7a7a7a;
  --white: #ffffff;
  --red: #e74c3c;
  --amber: #f4b740;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.12);
}

html { scroll-behavior: smooth; }

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

/* ===== NAV ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: var(--shadow-sm); }

.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 84px;
  transition: height 0.3s ease;
}
nav.scrolled .nav-inner { height: 72px; }

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 36px;
  color: var(--green-700);
  letter-spacing: -1px;
  line-height: 1;
  transition: font-size 0.3s ease, gap 0.3s ease;
}
.logo-mark {
  display: inline-flex;
  width: 44px; height: 44px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(31,122,77,0.3);
  transition: width 0.3s ease, height 0.3s ease, box-shadow 0.3s ease;
}
.logo-mark svg { display: block; width: 100%; height: 100%; }
.logo-text { display: inline-flex; align-items: baseline; }
.logo-dot {
  color: var(--green-400);
  font-size: 1.05em;
}

/* Scroll-aware shrink: when nav has .scrolled, logo eases back to compact */
nav.scrolled .logo {
  font-size: 28px;
  gap: 10px;
  letter-spacing: -0.5px;
}
nav.scrolled .logo-mark {
  width: 34px; height: 34px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(31,122,77,0.25);
}
/* Footer logo: white wordmark, mark stays gradient */
footer .logo { color: var(--white); }
footer .logo .logo-dot { color: var(--green-400); }

.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--slate);
  font-size: 15px; font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--green-600); }
.nav-link-pros {
  position: relative;
  padding-left: 14px;
}
.nav-link-pros::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green-400);
  transform: translateY(-50%);
  box-shadow: 0 0 0 0 rgba(61,204,130, 0.6);
  animation: prosPulse 2.4s ease-in-out infinite;
}
@keyframes prosPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(61,204,130, 0.5); }
  50%      { box-shadow: 0 0 0 5px rgba(61,204,130, 0); }
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 28px; border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px; font-weight: 600;
  text-decoration: none; border: none; cursor: pointer;
  transition: all 0.25s ease;
}
.btn-primary { background: var(--green-600); color: var(--white); }
.btn-primary:hover {
  background: var(--green-700);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(31,122,77,0.3);
}
.btn-outline {
  background: transparent; color: var(--green-700);
  border: 1.5px solid var(--green-600);
}
.btn-outline:hover { background: var(--green-50); }
.btn-lg { padding: 16px 36px; font-size: 17px; }
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-white { background: var(--white); color: var(--green-700); font-weight: 700; }
.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}
.btn-ghost { background: none; color: var(--muted); border: 1.5px solid #ddd; }
.btn-ghost:hover { border-color: var(--green-500); color: var(--green-600); }

.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger svg { width: 24px; height: 24px; }

/* ===== HERO ===== */
.hero {
  padding: 140px 24px 80px;
  background: linear-gradient(175deg, var(--cream) 0%, var(--white) 60%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(61,204,130,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center;
}
.hero-text h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 700; line-height: 1.05;
  color: var(--green-900);
  margin-bottom: 24px;
  letter-spacing: -2px;
}
.hero-text h1 em { font-style: italic; color: var(--green-500); }
.hero-text p {
  font-size: 20px; color: var(--slate);
  margin-bottom: 32px; max-width: 480px; line-height: 1.65;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.trust-row {
  margin-top: 36px;
  display: flex; flex-wrap: wrap;
  gap: 12px 22px;
  list-style: none;
  padding: 0;
}
.trust-row li {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 500;
  color: var(--slate);
}
.trust-row .trust-icon {
  font-size: 16px;
  display: inline-flex; align-items: center; justify-content: center;
}

.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-card {
  width: 100%; max-width: 460px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hero-card-header {
  background: var(--green-600);
  padding: 24px 28px; color: var(--white);
}
.hero-card-header h3 {
  font-family: 'Fraunces', serif;
  font-size: 20px; font-weight: 600; margin-bottom: 4px;
}
.hero-card-header p { font-size: 14px; opacity: 0.85; }
.hero-card-body { padding: 20px 28px; }

.mini-service-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.mini-service {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px;
  background: var(--green-50);
  border-radius: 10px;
  font-size: 13px; font-weight: 500;
  color: var(--green-900);
  transition: all 0.2s;
  cursor: default;
}
.mini-service .emoji { font-size: 18px; }
.mini-service:hover { background: var(--green-100); }

.hero-badge {
  position: absolute;
  top: -22px; right: 16px;
  background: var(--white);
  border-radius: 16px;
  padding: 12px 18px;
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(0,0,0,0.04);
  display: flex; align-items: center; gap: 10px;
  animation: float 6s ease-in-out infinite 1s;
  z-index: 2;
}
.hero-badge .icon { font-size: 22px; }
.hero-badge .text { font-size: 13px; font-weight: 600; color: var(--green-700); line-height: 1.3; }

/* ===== SECTION COMMON ===== */
.section-header { text-align: center; margin-bottom: 60px; }
.section-label {
  display: inline-block;
  font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--green-600); margin-bottom: 12px;
}
.section-header h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700; color: var(--green-900);
  margin-bottom: 16px; letter-spacing: -0.5px;
}
.section-header p {
  font-size: 17px; color: var(--muted);
  max-width: 540px; margin: 0 auto;
}

/* ===== SERVICES ===== */
.services { padding: 100px 24px; background: var(--white); }

.services-tabs {
  max-width: 1200px; margin: 0 auto 48px;
  display: flex; justify-content: center; flex-wrap: wrap; gap: 10px;
}
.tab-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 22px; border-radius: 50px;
  background: var(--cream); border: 1.5px solid transparent;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; font-weight: 500;
  color: var(--slate); cursor: pointer;
  transition: all 0.25s ease;
}
.tab-btn:hover { border-color: var(--green-400); color: var(--green-700); }
.tab-btn.active {
  background: var(--green-600); color: var(--white);
  border-color: var(--green-600);
  box-shadow: 0 4px 14px rgba(31,122,77,0.25);
}
.tab-btn .tab-emoji { font-size: 16px; }

.services-content {
  max-width: 1200px; margin: 0 auto;
}
.service-category { display: none; }
.service-category.active { display: block; }

.service-category-header {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 32px;
}
.service-category-header .cat-icon { font-size: 36px; }
.service-category-header h3 {
  font-family: 'Fraunces', serif;
  font-size: 26px; font-weight: 700;
  color: var(--green-900);
}
.service-category-header p { font-size: 15px; color: var(--muted); }

.service-items-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.service-item {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 24px;
  display: flex; align-items: flex-start; gap: 16px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s ease;
  position: relative;
}
.service-item:hover {
  background: var(--green-50);
  border-color: var(--green-400);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.service-item.selected {
  background: var(--green-50);
  border-color: var(--green-500);
}
.service-item.selected::after {
  content: '✓';
  position: absolute; top: 12px; right: 14px;
  width: 24px; height: 24px;
  background: var(--green-500);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
}
.service-item-icon {
  width: 48px; height: 48px;
  background: var(--green-100);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.service-item h4 { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.service-item p { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* ===== QUOTE MODAL ===== */
.quote-overlay {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
  padding: 20px;
}
.quote-overlay.open { opacity: 1; pointer-events: auto; }

.quote-modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 100%; max-width: 580px;
  max-height: 90vh; overflow-y: auto;
  box-shadow: var(--shadow-xl);
  transform: translateY(30px) scale(0.96);
  transition: transform 0.35s ease;
}
.quote-overlay.open .quote-modal {
  transform: translateY(0) scale(1);
}

.quote-header {
  padding: 28px 32px 0;
  display: flex; justify-content: space-between; align-items: flex-start;
}
.quote-header h2 {
  font-family: 'Fraunces', serif;
  font-size: 24px; font-weight: 700;
  color: var(--green-900);
}
.quote-close {
  width: 36px; height: 36px;
  border-radius: 50%; border: none;
  background: var(--cream); cursor: pointer;
  font-size: 20px; color: var(--slate);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.quote-close:hover { background: #eee; }

.quote-body { padding: 24px 32px 32px; }

.quote-progress {
  display: flex; gap: 6px; margin-bottom: 32px;
}
.quote-progress-bar {
  flex: 1; height: 4px;
  background: #e5e5e5; border-radius: 4px;
  overflow: hidden;
}
.quote-progress-bar.done { background: var(--green-500); }
.quote-progress-bar.current {
  background: linear-gradient(to right, var(--green-500) 50%, #e5e5e5 50%);
  background-size: 200% 100%;
  animation: progressPulse 1.5s ease-in-out infinite;
}
@keyframes progressPulse {
  0%, 100% { background-position: 100% 0; }
  50% { background-position: 0 0; }
}

.quote-step { display: none; }
.quote-step.active { display: block; }

.quote-step h3 {
  font-size: 18px; font-weight: 600;
  margin-bottom: 6px;
}
.quote-step > p {
  font-size: 14px; color: var(--muted);
  margin-bottom: 24px;
}

.quote-selected-services {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 24px;
}
.quote-service-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px;
  background: var(--green-50);
  border: 1px solid var(--green-400);
  border-radius: 50px;
  font-size: 13px; font-weight: 500;
  color: var(--green-700);
}
.quote-service-chip .remove-chip {
  cursor: pointer; font-size: 16px;
  color: var(--green-600);
  margin-left: 2px;
}
.quote-service-chip .remove-chip:hover { color: var(--red); }

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 14px; font-weight: 600;
  margin-bottom: 8px; color: var(--charcoal);
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid #ddd;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px; color: var(--charcoal);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(61,204,130,0.15);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ===== VALIDATION ===== */
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(231,76,60,0.12);
}
.field-error {
  display: none;
  margin-top: 6px;
  font-size: 13px;
  color: var(--red);
  font-weight: 500;
}
.form-group.has-error .field-error { display: block; }

.option-error {
  display: none;
  margin-top: 8px;
  font-size: 13px;
  color: var(--red);
  font-weight: 500;
}
.option-error.show { display: block; }

/* Postcode coverage states */
.postcode-status {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 500;
  display: none;
  align-items: center;
  gap: 6px;
}
.postcode-status.show { display: inline-flex; }
.postcode-status.covered { color: var(--green-600); }
.postcode-status.checking { color: var(--muted); }
.postcode-status.uncovered { color: var(--amber); }
.postcode-status.invalid { color: var(--red); }

.property-options {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
}
.property-option {
  padding: 16px 10px;
  border: 1.5px solid #ddd;
  border-radius: var(--radius);
  text-align: center; cursor: pointer;
  transition: all 0.2s;
  background: var(--white);
}
.property-option:hover { border-color: var(--green-400); }
.property-option.selected {
  border-color: var(--green-500);
  background: var(--green-50);
}
.property-option .po-icon { font-size: 24px; margin-bottom: 6px; }
.property-option .po-label { font-size: 13px; font-weight: 600; color: var(--charcoal); }

.frequency-options { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.freq-option {
  padding: 16px;
  border: 1.5px solid #ddd;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s;
  background: var(--white);
}
.freq-option:hover { border-color: var(--green-400); }
.freq-option.selected {
  border-color: var(--green-500);
  background: var(--green-50);
}
.freq-option .fo-label { font-size: 15px; font-weight: 600; margin-bottom: 2px; }
.freq-option .fo-desc { font-size: 12px; color: var(--muted); }
.freq-option .fo-badge {
  display: inline-block;
  margin-top: 6px;
  padding: 2px 8px;
  background: var(--green-500);
  color: white;
  border-radius: 50px;
  font-size: 11px; font-weight: 700;
}

.quote-actions {
  display: flex; gap: 12px; margin-top: 28px;
  justify-content: flex-end;
}

/* QUOTE RESULT */
.quote-result {
  text-align: center;
  padding: 20px 0;
}
.quote-result-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-500), var(--green-400));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-size: 36px;
  box-shadow: 0 8px 30px rgba(61,204,130,0.3);
  animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes popIn {
  0% { transform: scale(0); }
  100% { transform: scale(1); }
}
.quote-result h3 {
  font-family: 'Fraunces', serif;
  font-size: 22px; font-weight: 700;
  color: var(--green-900);
  margin-bottom: 8px;
}
.quote-result > p {
  font-size: 15px; color: var(--muted);
  margin-bottom: 28px;
}
.quote-summary {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 24px;
  text-align: left;
  margin-bottom: 24px;
}
.quote-summary-row {
  display: flex; justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  font-size: 14px;
}
.quote-summary-row:last-child { border-bottom: none; }
.quote-summary-row .qs-label { color: var(--muted); }
.quote-summary-row .qs-value { font-weight: 600; }
.quote-summary-row.total {
  border-top: 2px solid var(--green-500);
  border-bottom: none;
  margin-top: 8px; padding-top: 16px;
}
.quote-summary-row.total .qs-label {
  font-size: 16px; font-weight: 700; color: var(--charcoal);
}
.quote-summary-row.total .qs-value {
  font-family: 'Fraunces', serif;
  font-size: 20px; color: var(--green-600);
}
.quote-result-note {
  font-size: 13px; color: var(--muted);
  margin-bottom: 24px; line-height: 1.6;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 100px 24px;
  background: var(--green-900); color: var(--white);
  position: relative; overflow: hidden;
}
.how-it-works::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(61,204,130,0.1) 0%, transparent 50%);
  pointer-events: none;
}
.how-it-works .section-label { color: var(--green-400); }
.how-it-works .section-header h2 { color: var(--white); }
.how-it-works .section-header p { color: rgba(255,255,255,0.6); }

.steps {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute; top: 40px; left: 15%; right: 15%;
  height: 2px;
  background: linear-gradient(to right, var(--green-600), var(--green-400));
  opacity: 0.3;
}
.step { text-align: center; position: relative; }
.step-number {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-600), var(--green-400));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 28px; font-weight: 700;
  margin: 0 auto 24px;
  box-shadow: 0 4px 20px rgba(61,204,130,0.3);
}
.step h3 { font-size: 20px; font-weight: 600; margin-bottom: 10px; }
.step p {
  font-size: 15px; color: rgba(255,255,255,0.65);
  line-height: 1.6; max-width: 280px; margin: 0 auto;
}

/* ===== WHY GRUBBA ===== */
.why { padding: 100px 24px; background: var(--cream); }
.why-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.why-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px 28px; text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
.why-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.why-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--green-50);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; margin: 0 auto 20px;
}
.why-card h3 { font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.why-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ===== REVIEWS ===== */
.reviews { padding: 100px 24px; background: var(--white); }
.reviews-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.review-card {
  background: var(--cream); border-radius: var(--radius-lg);
  padding: 32px; position: relative;
}
.review-card::before {
  content: '\201C';
  font-family: 'Fraunces', serif;
  font-size: 72px; color: var(--green-400);
  position: absolute; top: 12px; left: 24px;
  opacity: 0.3; line-height: 1;
}
.review-stars { color: var(--amber); font-size: 16px; margin-bottom: 16px; letter-spacing: 2px; }
.review-card blockquote {
  font-size: 15px; color: var(--slate);
  line-height: 1.7; margin-bottom: 20px; font-style: italic;
}
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--green-100);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px; color: var(--green-700);
}
.reviewer-info .name { font-weight: 600; font-size: 15px; }
.reviewer-info .location { font-size: 13px; color: var(--muted); }
.reviewer-info .name time { color: var(--muted); }

.reviews-disclaimer {
  max-width: 720px;
  margin: 36px auto 0;
  text-align: center;
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
  font-style: italic;
  padding: 0 24px;
}

/* ===== VIDEO REVIEW CARD ===== */
.review-card-video {
  cursor: pointer;
  padding: 0;
  overflow: hidden;
  display: flex; flex-direction: column;
  background: var(--green-900);
  color: var(--white);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.review-card-video::before { display: none; } /* hide quote glyph */
.review-card-video:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.review-card-video:focus-visible {
  outline: 3px solid var(--green-400);
  outline-offset: 3px;
}
.video-thumb {
  position: relative;
  aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, var(--green-700), var(--green-900) 70%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.video-thumb-poster {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 14px;
  background-image: radial-gradient(circle at 30% 20%, rgba(61,204,130,0.18), transparent 60%);
}
.video-thumb-emoji { font-size: 60px; opacity: 0.9; }
.video-thumb-tag {
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--green-300);
  background: rgba(0,0,0,0.25);
  padding: 4px 10px; border-radius: 50px;
}
.video-play-btn {
  position: absolute;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  color: var(--green-700);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  transition: transform 0.2s;
  pointer-events: none; /* parent card handles click */
}
.review-card-video:hover .video-play-btn { transform: scale(1.08); }
.video-meta {
  display: flex; align-items: center; gap: 12px;
  padding: 18px 22px;
  background: var(--green-900);
}
.reviewer-avatar-video {
  background: var(--green-500);
  color: var(--white);
}
.video-meta .reviewer-info .name { color: var(--white); }
.video-meta .reviewer-info .location { color: rgba(255,255,255,0.7); }
.video-tag {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  background: var(--green-500);
  color: var(--white);
  border-radius: 50px;
  font-size: 10px; font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  vertical-align: middle;
}

/* Video lightbox */
.video-lightbox {
  position: fixed; inset: 0; z-index: 600;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s;
  padding: 24px;
}
.video-lightbox.open { opacity: 1; pointer-events: auto; }
.video-lightbox-inner {
  position: relative;
  width: 100%; max-width: 480px;
  max-height: 90vh;
}
.video-lightbox-close {
  position: absolute;
  top: -44px; right: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: none; cursor: pointer;
  font-size: 22px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.video-lightbox-close:hover { background: rgba(255,255,255,0.3); }
.video-lightbox-content {
  background: var(--green-900);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 9 / 16;
  width: 100%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 15px; text-align: center; padding: 24px;
}
.video-lightbox-content video {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.video-lightbox-placeholder {
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  max-width: 320px;
}
.video-lightbox-placeholder .big-emoji { font-size: 56px; }
.video-lightbox-placeholder h4 {
  font-family: 'Fraunces', serif;
  font-size: 22px; font-weight: 700;
  color: var(--white);
}
.video-lightbox-placeholder p {
  font-size: 14px; color: rgba(255,255,255,0.8);
  line-height: 1.6;
}

/* ===== CTA ===== */
.cta-section {
  padding: 100px 24px;
  background: linear-gradient(135deg, var(--green-700) 0%, var(--green-600) 50%, var(--green-500) 100%);
  text-align: center; color: var(--white);
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-inner { max-width: 600px; margin: 0 auto; position: relative; }
.cta-section h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700; margin-bottom: 16px;
}
.cta-section p { font-size: 18px; opacity: 0.85; margin-bottom: 36px; }

/* ===== NO BIDDING ===== */
.no-bidding {
  background: var(--white);
  padding: 100px 24px;
}
.no-bidding-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.no-bidding-header {
  text-align: center;
  margin-bottom: 56px;
}
.no-bidding-header h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--green-900);
  margin: 8px 0 18px;
  line-height: 1.15;
  letter-spacing: -0.5px;
}
.no-bidding-intro {
  font-size: 17px;
  color: var(--slate);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

.contrast-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: stretch;
}
.contrast-col {
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
}
.contrast-col-bad {
  background: linear-gradient(180deg, #fef5f3 0%, #ffffff 100%);
  border: 1.5px solid rgba(231,76,60,0.15);
}
.contrast-col-good {
  background: linear-gradient(180deg, var(--green-50) 0%, var(--white) 100%);
  border: 1.5px solid rgba(31,122,77,0.15);
}
.contrast-col-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 11px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.contrast-col-bad .contrast-col-tag {
  color: var(--red);
  background: rgba(231,76,60,0.08);
}
.contrast-col-good .contrast-col-tag {
  color: var(--green-700);
  background: rgba(31,122,77,0.08);
}
.contrast-col ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contrast-col li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--slate);
}
.contrast-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.contrast-col-bad .contrast-icon {
  background: rgba(231,76,60,0.12);
  color: var(--red);
}
.contrast-col-good .contrast-icon {
  background: var(--green-500);
  color: var(--white);
}

.contrast-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--green-400);
  font-weight: 800;
}

.no-bidding-footnote {
  text-align: center;
  margin-top: 36px;
  font-size: 14px;
  color: var(--muted);
  font-style: italic;
}
.no-bidding-footnote a {
  color: var(--green-600);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.no-bidding-footnote a:hover { color: var(--green-700); }

/* ===== RE-DO PROMISE ===== */
.redo-promise {
  background: linear-gradient(135deg, var(--cream) 0%, var(--green-50) 100%);
  padding: 80px 24px;
  border-top: 1px solid rgba(0,0,0,0.04);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.redo-inner {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 36px;
  align-items: center;
}
.redo-icon-block {
  width: 100px; height: 100px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(31,122,77,0.25);
  flex-shrink: 0;
}
.redo-icon { font-size: 44px; }
.redo-text .section-label { color: var(--green-600); margin-bottom: 8px; }
.redo-text h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 700;
  color: var(--green-900);
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}
.redo-text p {
  font-size: 16px;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 8px;
  max-width: 640px;
}
.redo-fineprint {
  font-size: 13px !important;
  color: var(--muted) !important;
  font-style: italic;
}

/* ===== FLOATING QUOTE BAR ===== */
.floating-bar {
  position: fixed; bottom: 16px; left: 16px; right: 16px;
  z-index: 90;
  max-width: 720px; margin: 0 auto;
  background: linear-gradient(135deg, var(--green-700) 0%, var(--green-600) 60%, var(--green-500) 100%);
  border-radius: 16px;
  box-shadow:
    0 12px 40px rgba(15, 46, 31, 0.35),
    0 0 0 1px rgba(255,255,255,0.08) inset;
  padding: 14px 14px 14px 18px;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.34, 1.4, 0.5, 1), opacity 0.3s ease;
  pointer-events: none;
}
.floating-bar.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
  animation: barEntrance 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes barEntrance {
  0%   { transform: translateY(140%); }
  60%  { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}
.floating-bar.visible.bumped {
  animation: barBump 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes barBump {
  0%   { transform: translateY(0)    scale(1); }
  50%  { transform: translateY(-2px) scale(1.02); }
  100% { transform: translateY(0)    scale(1); }
}

/* One-time nudge tooltip above the bar */
.floating-bar-nudge {
  position: absolute;
  top: -34px; right: 24px;
  background: var(--green-900);
  color: var(--white);
  font-size: 12px; font-weight: 600;
  padding: 6px 12px;
  border-radius: 50px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
  white-space: nowrap;
}
.floating-bar-nudge::after {
  content: '';
  position: absolute;
  bottom: -5px; right: 22px;
  width: 10px; height: 10px;
  background: var(--green-900);
  transform: rotate(45deg);
}
.floating-bar.show-nudge .floating-bar-nudge {
  opacity: 1;
  transform: translateY(0);
}

.floating-bar-inner {
  display: flex; align-items: center;
  gap: 14px;
}
.floating-bar-text {
  display: flex; align-items: center; gap: 12px;
  flex: 1;
  min-width: 0;
}
.floating-bar-count {
  width: 36px; height: 36px;
  background: var(--white);
  color: var(--green-700);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.floating-bar.bumped .floating-bar-count {
  transform: scale(1.15);
}
.floating-bar-label {
  display: flex; flex-direction: column;
  font-size: 15px; line-height: 1.25;
  color: var(--white);
  min-width: 0;
}
.floating-bar-label strong {
  font-weight: 700;
  color: var(--white);
}
.floating-bar-subtle {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.2px;
}

.floating-bar-cta {
  background: var(--white);
  color: var(--green-700);
  font-weight: 700;
  padding: 12px 18px 12px 22px;
  border-radius: 50px;
  display: inline-flex; align-items: center; gap: 8px;
  border: none; cursor: pointer;
  font-size: 15px;
  flex-shrink: 0;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}
.floating-bar-cta:hover {
  background: var(--cream);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.22);
}
.floating-bar-arrow {
  display: inline-block;
  transition: transform 0.25s ease;
}
.floating-bar-cta:hover .floating-bar-arrow {
  transform: translateX(4px);
}
.floating-bar.visible .floating-bar-arrow {
  animation: arrowNudge 1.6s ease-in-out infinite;
}
@keyframes arrowNudge {
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(4px); }
}

.floating-bar-close {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
  font-size: 18px; line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}
.floating-bar-close:hover {
  background: rgba(255,255,255,0.22);
  color: var(--white);
}

/* ===== FOOTER ===== */
footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 60px 24px 30px;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 56px;
}
.footer-brand .logo { color: var(--white); }
.footer-brand .logo span { color: var(--green-400); }
.footer-brand p { margin-top: 12px; font-size: 14px; line-height: 1.7; max-width: 280px; }
.footer-col h4 {
  font-size: 14px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--white); margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-size: 14px; color: rgba(255,255,255,0.6);
  text-decoration: none; transition: color 0.2s;
}
.footer-col a:hover { color: var(--green-400); }

/* Service-area state pills */
.footer-states {
  display: flex; flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin-bottom: 14px;
}
.footer-states li {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: var(--green-300);
  background: rgba(61,204,130,0.10);
  border: 1px solid rgba(61,204,130,0.20);
  padding: 6px 11px;
  border-radius: 50px;
}
.footer-states-note {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
}
.footer-states-note a {
  color: var(--green-300);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-states-note a:hover { color: var(--green-400); }

/* Contact column */
.footer-contact {
  list-style: none;
  padding: 0;
  margin-bottom: 16px;
}
.footer-contact li { margin-bottom: 8px; }
.footer-contact a {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
}
.footer-contact a:hover { color: var(--green-300); }
.footer-contact-meta {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}
.footer-contact-pros {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  padding-top: 14px;
  margin-top: 6px;
  border-top: 1px solid rgba(255,255,255,0.08);
  line-height: 1.5;
}
.footer-contact-pros a {
  color: var(--green-300);
  font-weight: 600;
  text-decoration: none;
}
.footer-contact-pros a:hover { color: var(--green-400); }
.footer-bottom {
  max-width: 1200px; margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; flex-wrap: wrap; gap: 12px;
  color: rgba(255,255,255,0.55);
}
.footer-bottom-meta {
  color: rgba(255,255,255,0.4);
  font-size: 12px;
  font-style: italic;
}
.footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-bottom a:hover { color: var(--green-400); }

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== MOBILE ===== */
.mobile-nav {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.mobile-nav.open { opacity: 1; pointer-events: auto; }
.mobile-nav-panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 300px; background: var(--white);
  padding: 80px 32px 32px;
  transform: translateX(100%);
  transition: transform 0.35s ease;
}
.mobile-nav.open .mobile-nav-panel { transform: translateX(0); }
.mobile-nav-close {
  position: absolute; top: 20px; right: 20px;
  background: none; border: none; cursor: pointer;
  font-size: 28px; color: var(--charcoal);
}
.mobile-nav ul { list-style: none; }
.mobile-nav li { margin-bottom: 20px; }
.mobile-nav a { font-size: 18px; font-weight: 500; color: var(--charcoal); text-decoration: none; }
.mobile-nav .btn { margin-top: 16px; width: 100%; text-align: center; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-text p { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .trust-row { justify-content: center; }
  .hero-visual { margin-top: 40px; }
  .hero-badge { top: -5px; right: 5px; }
  .steps { grid-template-columns: 1fr; gap: 50px; }
  .steps::before { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .property-options { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .hero { padding: 120px 20px 60px; }
  .hero-card { max-width: 340px; }
  .services-tabs { gap: 8px; }
  .tab-btn { padding: 8px 16px; font-size: 13px; }
  .service-items-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  /* Mobile: badge sits below the card so it doesn't cut into the green header */
  .hero-badge {
    position: static;
    margin: 16px auto 0;
    width: max-content;
    animation: none;
  }
  .redo-inner { grid-template-columns: 1fr; gap: 20px; text-align: center; }
  .contrast-grid { grid-template-columns: 1fr; gap: 16px; }
  .contrast-divider { transform: rotate(90deg); margin: -8px 0; }
  .redo-icon-block { margin: 0 auto; }
  .redo-text p { margin-left: auto; margin-right: auto; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .floating-bar { left: 8px; right: 8px; bottom: 8px; padding: 12px; }
  .floating-bar-cta { padding: 10px 14px 10px 18px; font-size: 14px; }
  .floating-bar-subtle { display: none; } /* tighter on mobile */
  .floating-bar-close { display: none; } /* save space; tap CTA or scroll up to deselect */
  .floating-bar-nudge { display: none; }
  .quote-body { padding: 20px 20px 28px; }
  .quote-header { padding: 24px 20px 0; }
}
