/* ============================================
   220-JUNK | Service Page Styles
   Dedicated styles for individual service pages
   ============================================ */


/* ============================================
   BREADCRUMB
   ============================================ */

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.breadcrumb-item {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  transition: color 0.3s ease;
}

a.breadcrumb-item:hover {
  color: rgba(255,255,255,0.8);
}

.breadcrumb-sep {
  font-size: 0.625rem;
  color: rgba(255,255,255,0.2);
}


/* ============================================
   SERVICE HERO
   ============================================ */

.service-hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-bottom: clamp(4rem, 8vw, 6rem);
}

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

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

.service-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(12, 12, 12, 0.95) 0%,
    rgba(12, 12, 12, 0.7) 40%,
    rgba(12, 12, 12, 0.45) 100%
  );
  z-index: 1;
}

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

.service-hero-content {
  position: relative;
  z-index: 3;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  padding-top: 8rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

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

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

.service-hero-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.75rem, 7vw, 5rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 1.25rem;
  max-width: 750px;
}

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

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

.service-hero-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.7);
}

.service-hero-meta-item svg {
  color: var(--orange-400);
  flex-shrink: 0;
}

.service-hero-meta-item strong {
  color: var(--green-300);
  font-weight: 800;
  font-size: 1.125rem;
}

.service-hero-meta-divider {
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,0.15);
}

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

.service-hero-proof {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.3s ease;
}

.service-hero-proof:hover {
  color: rgba(255,255,255,0.7);
}

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


/* ============================================
   KEY BENEFITS GRID
   ============================================ */

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

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: clamp(3rem, 6vw, 4rem);
}

.benefit-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: 2.25rem 1.75rem;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-500), var(--orange-500));
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  background: var(--green-50);
  border: 1px solid var(--green-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-600);
  margin-bottom: 1.5rem;
  transition: all 0.4s ease;
}

.benefit-card:hover .benefit-icon {
  background: var(--green-700);
  border-color: var(--green-700);
  color: #fff;
}

.benefit-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 0.5rem;
}

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


/* ============================================
   PRICING / WHAT TO EXPECT
   ============================================ */

.pricing-info-section {
  background: var(--green-700);
  color: #fff;
  padding: clamp(5rem, 10vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

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

.pricing-info-header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 4rem);
  position: relative;
}

.pricing-info-header h2 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: #fff;
}

.pricing-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

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

.pricing-info-card:hover {
  background: rgba(255,255,255,0.07);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.pricing-info-card-popular {
  border-color: var(--green-500);
  background: rgba(45, 138, 94, 0.08);
}

.pricing-info-card-popular::before {
  content: 'Most Common';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.875rem;
  background: var(--green-500);
  color: #fff;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-info-card-label {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.75rem;
}

.pricing-info-card-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.75rem);
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.pricing-info-card-desc {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

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

.pricing-info-cta {
  text-align: center;
  margin-top: 2.5rem;
}


/* ============================================
   RELATED SERVICES
   ============================================ */

.related-services-section {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--bg-alt);
}

.related-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: clamp(3rem, 6vw, 4rem);
}

.related-service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  transition: all 0.5s var(--ease-out-expo);
  text-decoration: none;
  display: block;
}

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

.related-service-card-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

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

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

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

.related-service-card-content h3 {
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  color: var(--text);
}

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

.related-service-card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

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

.related-service-card-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8125rem;
  color: var(--green-600);
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-left: auto;
  transition: color 0.3s ease;
}

.related-service-card:hover .related-service-card-link {
  color: var(--orange-500);
}

.related-service-card-link svg {
  transition: transform 0.3s ease;
}

.related-service-card:hover .related-service-card-link svg {
  transform: translateX(3px);
}


/* ============================================
   SERVICE PAGE — QUOTE SECTION OVERRIDE
   Full-width quote builder on service pages
   ============================================ */

.service-quote-section .quote-section-layout {
  grid-template-columns: 0.4fr 0.6fr;
}


/* ============================================
   ESTATE CLEANOUTS — Room-by-Room Grid
   ============================================ */

.ec-rooms {
  background: var(--green-700);
  color: #fff;
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.ec-rooms::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.ec-rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: clamp(3rem, 6vw, 4rem);
  position: relative;
}

.ec-room-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 3px solid;
  border-image: linear-gradient(to bottom, var(--green-500), var(--orange-500)) 1;
  border-radius: 0;
  padding: 1.5rem;
  transition: all 0.5s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1rem;
}

.ec-room-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(45,138,94,0.3), transparent 60%);
}

.ec-room-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green-500), var(--orange-500));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.ec-room-card:hover {
  background: rgba(255,255,255,0.07);
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.15);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

.ec-room-card:hover::after { opacity: 1; }

.ec-room-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(45, 138, 94, 0.12);
  border: 1px solid rgba(45, 138, 94, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-400);
  margin-bottom: 0;
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.ec-room-card:hover .ec-room-icon {
  background: var(--green-600);
  border-color: var(--green-600);
  color: #fff;
  box-shadow: 0 0 24px rgba(45, 138, 94, 0.3);
}

.ec-room-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.125rem;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.ec-room-items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}

.ec-room-item {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  padding: 0.3rem 0.75rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  transition: all 0.3s ease;
}

.ec-room-card:hover .ec-room-item {
  color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.07);
}


/* ============================================
   ESTATE CLEANOUTS — Item Journey / Flow
   ============================================ */

.ec-journey {
  background: var(--green-700);
  color: #fff;
  padding: clamp(5rem, 10vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

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

.ec-journey .container { position: relative; z-index: 1; }

.ec-journey-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: clamp(3rem, 6vw, 4rem);
}

.ec-journey-stream {
  text-align: center;
  position: relative;
}

.ec-journey-stream-inner {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-2xl);
  padding: 2.5rem 1.5rem;
  transition: all 0.4s var(--ease-out-expo);
}

.ec-journey-stream-inner:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.ec-journey-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
}

.ec-journey-icon-green {
  background: rgba(123, 202, 160, 0.15);
  color: var(--green-200);
}

.ec-journey-icon-orange {
  background: rgba(242, 106, 28, 0.15);
  color: var(--orange-300);
}

.ec-journey-icon-gray {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.5);
}

.ec-journey-stat {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3rem, 6vw, 4.5rem);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.ec-journey-stat-green { color: var(--green-200); }
.ec-journey-stat-orange { color: var(--orange-300); }
.ec-journey-stat-gray { color: rgba(255,255,255,0.5); }

.ec-journey-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  color: #fff;
  margin-bottom: 0.75rem;
}

.ec-journey-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.375rem;
  margin-top: 0.5rem;
}

.ec-journey-item {
  font-size: 0.6875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  padding: 0.25rem 0.625rem;
  background: rgba(255,255,255,0.06);
  border-radius: 100px;
}

.ec-journey-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.ec-journey-connector-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--green-300), var(--orange-400), rgba(255,255,255,0.2));
  border-radius: 2px;
  max-width: 500px;
}

.ec-journey-connector-label {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1rem, 2vw, 1.375rem);
  color: #fff;
  white-space: nowrap;
}


/* ============================================
   ESTATE CLEANOUTS — Timeline
   ============================================ */

.ec-timeline {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--bg-alt);
}

.ec-timeline-track {
  max-width: 720px;
  margin: clamp(3rem, 6vw, 4rem) auto 0;
  position: relative;
  padding-left: 40px;
}

.ec-timeline-line {
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.ec-timeline-line-fill {
  width: 100%;
  height: 0%;
  background: linear-gradient(to bottom, var(--green-500), var(--orange-500));
  border-radius: 2px;
  transition: height 1.5s var(--ease-out-expo);
}

.ec-timeline-day {
  margin-bottom: 2.5rem;
}

.ec-timeline-day:last-child { margin-bottom: 0; }

.ec-timeline-day-label {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green-600);
  margin-bottom: 1.25rem;
  padding: 0.3rem 0.75rem;
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: 100px;
  display: inline-block;
  position: relative;
}

.ec-timeline-event {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.ec-timeline-event:last-child { margin-bottom: 0; }

.ec-timeline-marker {
  position: absolute;
  left: -33px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--green-500);
  z-index: 1;
  transition: all 0.3s ease;
}

.ec-timeline-event:hover .ec-timeline-marker {
  background: var(--green-500);
  box-shadow: 0 0 12px rgba(45, 138, 94, 0.4);
}

.ec-timeline-time {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.75rem;
  color: var(--text-muted);
  min-width: 72px;
  flex-shrink: 0;
  padding-top: 0.125rem;
}

.ec-timeline-detail {
  flex: 1;
}

.ec-timeline-detail h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.ec-timeline-detail p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}


/* ============================================
   ESTATE CLEANOUTS — DIY vs Pro Comparison
   ============================================ */

.ec-compare {
  background: var(--green-700);
  color: #fff;
  padding: clamp(5rem, 10vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

.ec-compare::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.ec-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin: clamp(3rem, 6vw, 4rem) auto 0;
  position: relative;
}

.ec-compare-col {
  border-radius: var(--radius-2xl);
  padding: 2.5rem 2rem;
  position: relative;
}

.ec-compare-col-diy {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}

.ec-compare-col-pro {
  background: rgba(45, 138, 94, 0.08);
  border: 1px solid rgba(45, 138, 94, 0.2);
}

.ec-compare-col-pro::before {
  content: 'Recommended';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.875rem;
  background: var(--green-500);
  color: #fff;
  border-radius: 100px;
  white-space: nowrap;
}

.ec-compare-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.ec-compare-header h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}

.ec-compare-header span {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
}

.ec-compare-row {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  margin-bottom: 1.25rem;
}

.ec-compare-row:last-child { margin-bottom: 0; }

.ec-compare-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.ec-compare-icon-x {
  background: rgba(220, 80, 60, 0.12);
  color: #e05545;
}

.ec-compare-icon-check {
  background: rgba(45, 138, 94, 0.15);
  color: var(--green-400);
}

.ec-compare-text {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.55);
}

.ec-compare-col-pro .ec-compare-text {
  color: rgba(255,255,255,0.7);
}

.ec-compare-text strong {
  color: #fff;
  font-weight: 700;
  display: block;
  margin-bottom: 0.125rem;
}

.ec-compare-cta {
  text-align: center;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  position: relative;
}


/* ============================================
   ESTATE CLEANOUTS — Pull Quote / Testimonial
   ============================================ */

.ec-testimonial {
  padding: clamp(5rem, 10vw, 7rem) 0;
  position: relative;
}

.ec-testimonial-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.ec-testimonial-quote-mark {
  font-family: Georgia, serif;
  font-size: 8rem;
  line-height: 0.5;
  background: linear-gradient(135deg, var(--green-400), var(--orange-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  display: block;
}

.ec-testimonial-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  line-height: 1.55;
  letter-spacing: -0.015em;
  color: var(--text);
  margin-bottom: 2rem;
}

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

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

.ec-testimonial-info {
  text-align: left;
}

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

.ec-testimonial-info span {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.ec-testimonial-stars {
  color: var(--orange-400);
  font-size: 1rem;
  letter-spacing: 2px;
}


/* ============================================
   MOVE IN / MOVE OUT — Items Left Behind
   ============================================ */

.mio-left-behind {
  background: var(--green-700);
  color: #fff;
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.mio-left-behind::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.mio-items-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: clamp(3rem, 6vw, 4rem);
  position: relative;
}

.mio-item-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 3px solid;
  border-image: linear-gradient(to bottom, var(--green-500), var(--orange-500)) 1;
  border-radius: 0;
  padding: 1.25rem;
  text-align: left;
  transition: all 0.5s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}

.mio-item-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(45,138,94,0.3), transparent 60%);
}

.mio-item-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green-500), var(--orange-500));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.mio-item-card:hover {
  background: rgba(255,255,255,0.07);
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.15);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

.mio-item-card:hover::after { opacity: 1; }

.mio-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(45, 138, 94, 0.12);
  border: 1px solid rgba(45, 138, 94, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-400);
  margin-bottom: 0;
  flex-shrink: 0;
  font-size: 1.5rem;
  transition: all 0.4s ease;
}

.mio-item-card:hover .mio-item-icon {
  background: var(--green-600);
  border-color: var(--green-600);
  color: #fff;
  box-shadow: 0 0 24px rgba(45, 138, 94, 0.3);
}

.mio-item-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  letter-spacing: -0.01em;
  margin-bottom: 0.375rem;
}

.mio-item-freq {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange-400);
}

.mio-items-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.35);
  font-style: italic;
}


/* ============================================
   MOVE IN / MOVE OUT — Old Place vs New Place
   ============================================ */

.mio-places {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--bg-alt);
}

.mio-places-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  max-width: 960px;
  margin: clamp(3rem, 6vw, 4rem) auto 0;
}

.mio-place-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: 2.5rem 2rem;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
}

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

.mio-place-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}

.mio-place-card-old .mio-place-card-icon {
  background: rgba(242, 106, 28, 0.08);
  border: 1px solid rgba(242, 106, 28, 0.15);
  color: var(--orange-500);
}

.mio-place-card-new .mio-place-card-icon {
  background: var(--green-50);
  border: 1px solid var(--green-100);
  color: var(--green-600);
}

.mio-place-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.375rem;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 0.5rem;
}

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

.mio-place-tasks {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.mio-place-task {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.mio-place-task svg {
  color: var(--green-500);
  flex-shrink: 0;
}

.mio-places-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem;
}

.mio-places-divider-or {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  background: var(--bg-alt);
  padding: 0.75rem 0;
  position: relative;
}

.mio-places-divider-or::before,
.mio-places-divider-or::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 60px;
  background: var(--border);
}

.mio-places-divider-or::before { bottom: 100%; }
.mio-places-divider-or::after { top: 100%; }

.mio-places-footer {
  text-align: center;
  margin-top: 2.5rem;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

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

.mio-places-footer strong {
  color: var(--green-700);
  font-weight: 700;
}


/* ============================================
   MOVE IN / MOVE OUT — Speed / Urgency
   ============================================ */

.mio-speed {
  background: var(--green-700);
  color: #fff;
  padding: clamp(5rem, 10vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

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

.mio-speed .container { position: relative; z-index: 1; }

.mio-speed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: clamp(3rem, 6vw, 4rem);
}

.mio-speed-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-2xl);
  padding: 2.5rem 1.75rem;
  text-align: center;
  transition: all 0.4s var(--ease-out-expo);
}

.mio-speed-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.mio-speed-stat {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3rem, 6vw, 4.5rem);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.mio-speed-stat-white { color: #fff; }
.mio-speed-stat-green { color: var(--green-200); }
.mio-speed-stat-orange { color: var(--orange-300); }

.mio-speed-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.mio-speed-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

.mio-speed-cta {
  text-align: center;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}


/* ============================================
   MOVE IN / MOVE OUT — Realtor Preferred Pricing
   ============================================ */

.mio-realtor {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--bg-alt);
}

.mio-realtor-inner {
  display: flex;
  align-items: center;
  gap: clamp(3rem, 5vw, 5rem);
  max-width: 900px;
  margin: 0 auto;
}

.mio-realtor-badge-wrap {
  flex-shrink: 0;
}

.mio-realtor-badge {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mio-realtor-badge-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid var(--green-500);
  animation: realtor-ring-pulse 3s ease infinite;
}

@keyframes realtor-ring-pulse {
  0%, 100% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(45, 138, 94, 0.3); }
  50% { transform: scale(1.08); opacity: 0.8; box-shadow: 0 0 20px 4px rgba(45, 138, 94, 0.15); }
}

.mio-realtor-badge-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  color: var(--green-700);
}

.mio-realtor-badge-label {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.5625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-600);
}

.mio-realtor-text h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.mio-realtor-text p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .mio-realtor-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================
   MOVE IN / MOVE OUT — Testimonial
   ============================================ */

.mio-testimonial {
  padding: clamp(5rem, 10vw, 7rem) 0;
  position: relative;
}

.mio-testimonial-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.mio-testimonial-quote-mark {
  font-family: Georgia, serif;
  font-size: 8rem;
  line-height: 0.5;
  background: linear-gradient(135deg, var(--green-400), var(--orange-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  display: block;
}

.mio-testimonial-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  line-height: 1.55;
  letter-spacing: -0.015em;
  color: var(--text);
  margin-bottom: 2rem;
}

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

.mio-testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--orange-500);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mio-testimonial-info {
  text-align: left;
}

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

.mio-testimonial-info span {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.mio-testimonial-stars {
  color: var(--orange-400);
  font-size: 1rem;
  letter-spacing: 2px;
}


/* ============================================
   BIN RENTAL — Bin Size Visualization
   ============================================ */

.br-size {
  background: var(--green-700);
  color: #fff;
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.br-size::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.br-size-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: clamp(3rem, 6vw, 4rem);
  position: relative;
}

.br-size-visual {
  position: relative;
}

.br-size-bin {
  background: rgba(255,255,255,0.04);
  border: 2px solid rgba(45, 138, 94, 0.3);
  border-radius: var(--radius-2xl);
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
}

.br-size-bin-label {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(4rem, 8vw, 6rem);
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--green-400);
  margin-bottom: 0.25rem;
}

.br-size-bin-unit {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.4);
}

.br-size-dimensions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.br-size-dim {
  text-align: center;
}

.br-size-dim-val {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: #fff;
  letter-spacing: -0.02em;
}

.br-size-dim-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.br-size-comparisons {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.br-size-comp {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 3px solid;
  border-image: linear-gradient(to bottom, var(--green-500), var(--orange-500)) 1;
  border-radius: 0;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: all 0.4s var(--ease-out-expo);
}

.br-size-comp:hover {
  background: rgba(255,255,255,0.07);
  transform: translateX(4px);
  border-color: rgba(255,255,255,0.15);
}

.br-size-comp-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(45, 138, 94, 0.1);
  border: 1px solid rgba(45, 138, 94, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-400);
  flex-shrink: 0;
}

.br-size-comp-text strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0.125rem;
}

.br-size-comp-text span {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}

.br-size-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.5rem 1rem;
  background: rgba(45, 138, 94, 0.1);
  border: 1px solid rgba(45, 138, 94, 0.2);
  border-radius: 100px;
  color: var(--green-300);
}


/* ============================================
   BIN RENTAL — What Fits Inside
   ============================================ */

.br-fits {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--bg-alt);
}

.br-fits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: clamp(3rem, 6vw, 4rem);
}

.br-fits-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: 2rem 1.5rem;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.br-fits-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-500), var(--orange-500));
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.br-fits-card:hover::before { opacity: 1; }

.br-fits-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  background: var(--green-50);
  border: 1px solid var(--green-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-600);
  margin-bottom: 1.25rem;
  transition: all 0.4s ease;
}

.br-fits-card:hover .br-fits-card-icon {
  background: var(--green-700);
  border-color: var(--green-700);
  color: #fff;
}

.br-fits-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.br-fits-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.br-fits-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}

.br-fits-tag {
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.2rem 0.5rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 100px;
}

.br-fits-not {
  margin-top: 2rem;
  text-align: center;
}

.br-fits-not p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-style: italic;
}

.br-fits-not strong {
  color: var(--text-secondary);
  font-style: normal;
}


/* ============================================
   BIN RENTAL — Rental Timeline
   ============================================ */

.br-timeline {
  background: var(--green-700);
  color: #fff;
  padding: clamp(5rem, 10vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

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

.br-timeline .container { position: relative; z-index: 1; }

.br-timeline-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: clamp(3rem, 6vw, 4rem);
  position: relative;
}

.br-timeline-track::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12.5%;
  right: 12.5%;
  height: 3px;
  background: linear-gradient(90deg, var(--green-300), var(--green-200), var(--orange-300), var(--orange-400));
  border-radius: 3px;
}

.br-timeline-step {
  text-align: center;
  position: relative;
  padding: 0 0.5rem;
}

.br-timeline-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 2px solid var(--green-300);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 26px auto 1.25rem;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.6875rem;
  color: #fff;
  position: relative;
  z-index: 1;
}

.br-timeline-step-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--green-200);
}

.br-timeline-step h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0.375rem;
}

.br-timeline-step p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

.br-timeline-step-time {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange-300);
  margin-top: 0.5rem;
}


/* ============================================
   BIN RENTAL — Testimonial
   ============================================ */

.br-testimonial {
  padding: clamp(5rem, 10vw, 7rem) 0;
  position: relative;
}

.br-testimonial-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.br-testimonial-quote-mark {
  font-family: Georgia, serif;
  font-size: 8rem;
  line-height: 0.5;
  background: linear-gradient(135deg, var(--green-400), var(--orange-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  display: block;
}

.br-testimonial-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  line-height: 1.55;
  letter-spacing: -0.015em;
  color: var(--text);
  margin-bottom: 2rem;
}

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

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

.br-testimonial-info {
  text-align: left;
}

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

.br-testimonial-info span {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.br-testimonial-stars {
  color: var(--orange-400);
  font-size: 1rem;
  letter-spacing: 2px;
}


/* ============================================
   CAR DEALERSHIPS — Waste Types Grid
   ============================================ */

.cd-waste {
  background: var(--green-700);
  color: #fff;
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.cd-waste::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.cd-waste-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: clamp(3rem, 6vw, 4rem);
  position: relative;
}

.cd-waste-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 3px solid;
  border-image: linear-gradient(to bottom, var(--green-500), var(--orange-500)) 1;
  border-radius: 0;
  padding: 1.5rem;
  transition: all 0.5s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1rem;
}

.cd-waste-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(45,138,94,0.3), transparent 60%);
}

.cd-waste-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green-500), var(--orange-500));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.cd-waste-card:hover {
  background: rgba(255,255,255,0.07);
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.15);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

.cd-waste-card:hover::after { opacity: 1; }

.cd-waste-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(45, 138, 94, 0.12);
  border: 1px solid rgba(45, 138, 94, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-400);
  margin-bottom: 0;
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.cd-waste-card:hover .cd-waste-icon {
  background: var(--green-600);
  border-color: var(--green-600);
  color: #fff;
  box-shadow: 0 0 24px rgba(45, 138, 94, 0.3);
}

.cd-waste-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.125rem;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.cd-waste-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.cd-waste-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}

.cd-waste-tag {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  padding: 0.25rem 0.625rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
}

.cd-waste-tag-recycle {
  color: var(--green-300);
  background: rgba(45, 138, 94, 0.1);
  border-color: rgba(45, 138, 94, 0.2);
}


/* ============================================
   CAR DEALERSHIPS — Recurring Schedule
   ============================================ */

.cd-schedule {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--bg-alt);
}

.cd-schedule-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 960px;
  margin: clamp(3rem, 6vw, 4rem) auto 0;
}

.cd-schedule-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
}

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

.cd-schedule-card-popular {
  border-color: var(--green-400);
  box-shadow: 0 0 0 1px var(--green-400);
}

.cd-schedule-card-popular::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.875rem;
  background: var(--green-600);
  color: #fff;
  border-radius: 100px;
  white-space: nowrap;
}

.cd-schedule-freq {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.cd-schedule-timing {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-600);
  margin-bottom: 1.25rem;
}

.cd-schedule-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.cd-schedule-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
}

.cd-schedule-dot-active {
  background: var(--green-500);
}

.cd-schedule-desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.cd-schedule-card-popular .cd-schedule-desc {
  color: var(--text);
}

.cd-schedule-best {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}


/* ============================================
   CAR DEALERSHIPS — Waste to Revenue
   ============================================ */

.cd-revenue {
  background: var(--green-700);
  color: #fff;
  padding: clamp(5rem, 10vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

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

.cd-revenue .container { position: relative; z-index: 1; }

.cd-revenue-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: center;
  margin-top: clamp(3rem, 6vw, 4rem);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.cd-revenue-step {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-2xl);
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: all 0.4s var(--ease-out-expo);
}

.cd-revenue-step:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.cd-revenue-step-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
}

.cd-revenue-step-icon-red {
  background: rgba(220, 80, 60, 0.12);
  color: #e05545;
}

.cd-revenue-step-icon-green {
  background: rgba(123, 202, 160, 0.15);
  color: var(--green-200);
}

.cd-revenue-step-icon-gold {
  background: rgba(242, 106, 28, 0.15);
  color: var(--orange-300);
}

.cd-revenue-step h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  color: #fff;
  margin-bottom: 0.375rem;
}

.cd-revenue-step p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

.cd-revenue-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.75rem;
  color: rgba(255,255,255,0.25);
}

.cd-revenue-bottom {
  text-align: center;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.cd-revenue-stat {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.03em;
  color: var(--green-200);
  margin-bottom: 0.25rem;
}

.cd-revenue-stat-label {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.5);
}


/* ============================================
   CAR DEALERSHIPS — Testimonial
   ============================================ */

.cd-testimonial {
  padding: clamp(5rem, 10vw, 7rem) 0;
  position: relative;
}

.cd-testimonial-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cd-testimonial-quote-mark {
  font-family: Georgia, serif;
  font-size: 8rem;
  line-height: 0.5;
  background: linear-gradient(135deg, var(--green-400), var(--orange-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  display: block;
}

.cd-testimonial-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  line-height: 1.55;
  letter-spacing: -0.015em;
  color: var(--text);
  margin-bottom: 2rem;
}

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

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

.cd-testimonial-info {
  text-align: left;
}

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

.cd-testimonial-info span {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.cd-testimonial-stars {
  color: var(--orange-400);
  font-size: 1rem;
  letter-spacing: 2px;
}


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

@media (min-width: 1920px) {
  .service-hero-content { max-width: 85vw; }
}


/* ============================================
   RESPONSIVE — 1340px (13" laptops)
   ============================================ */

@media (max-width: 1340px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .ec-rooms-grid {
    gap: 1rem;
  }
}

/* ============================================
   RESPONSIVE — 1024px
   ============================================ */

@media (max-width: 1024px) {
  .service-hero {
    min-height: 65vh;
  }

  .service-hero-headline {
    font-size: clamp(2.25rem, 6vw, 3.5rem);
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-info-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
  }

  .related-services-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .service-quote-section .quote-section-layout {
    grid-template-columns: 1fr;
  }

  /* Estate rooms */
  .ec-rooms-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Estate journey */
  .ec-journey-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Estate compare */
  .ec-compare-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  /* Move items grid */
  .mio-items-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Move places */
  .mio-places-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .mio-places-divider {
    padding: 1.5rem 0;
  }

  .mio-places-divider-or::before,
  .mio-places-divider-or::after {
    display: none;
  }

  /* Move speed */
  .mio-speed-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Bin size */
  .br-size-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Bin fits */
  .br-fits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Bin timeline */
  .br-timeline-track {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .br-timeline-track::before {
    display: none;
  }

  /* Car waste */
  .cd-waste-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Car schedule */
  .cd-schedule-options {
    grid-template-columns: 1fr;
    max-width: 440px;
  }

  /* Car revenue */
  .cd-revenue-flow {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .cd-revenue-arrow {
    transform: rotate(90deg);
    padding: 0.5rem 0;
  }
}


/* ============================================
   RESPONSIVE — 768px
   ============================================ */

@media (max-width: 768px) {
  .service-hero {
    min-height: 60vh;
  }

  .service-hero-content {
    padding-top: 6.5rem;
  }

  .service-hero-headline {
    font-size: clamp(2rem, 9vw, 3rem);
  }

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

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

  .service-hero-meta {
    gap: 1rem;
  }

  .service-hero-meta-divider {
    display: none;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.5rem;
  }

  .benefit-icon {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .pricing-info-header h2 {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
  }

  .related-services-grid {
    grid-template-columns: 1fr;
    max-width: none;
  }

  /* Estate rooms */
  .ec-rooms-grid {
    grid-template-columns: 1fr;
  }

  .card-num { display: none; }

  /* Estate timeline */
  .ec-timeline-track { padding-left: 32px; }
  .ec-timeline-line { left: 11px; }
  .ec-timeline-marker { left: -29px; width: 10px; height: 10px; }
  .ec-timeline-event { flex-direction: column; gap: 0.25rem; }
  .ec-timeline-time { min-width: auto; }

  /* Estate compare */
  .ec-compare-col { padding: 1.75rem 1.25rem; }
  .ec-compare-header h3 { font-size: 1.25rem; }

  /* Move items */
  .mio-items-grid { grid-template-columns: 1fr; }

  /* Move speed */
  .mio-speed-stat { font-size: 2.5rem; }

  /* Bin fits */
  .br-fits-grid { grid-template-columns: 1fr; }

  /* Bin timeline */
  .br-timeline-track {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Car waste */
  .cd-waste-grid { grid-template-columns: 1fr; }
}


/* ============================================
   RESPONSIVE — 480px
   ============================================ */

@media (max-width: 480px) {
  .service-hero {
    min-height: 55vh;
  }

  .service-hero-content {
    padding-top: 5.5rem;
  }

  .service-hero-headline {
    font-size: clamp(1.75rem, 9vw, 2.5rem);
  }

  .service-hero-badge {
    font-size: 0.625rem;
    padding: 0.375rem 0.75rem;
  }

  .benefit-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .pricing-info-card {
    padding: 1.75rem 1.25rem;
  }

  .pricing-info-card-price {
    font-size: 1.75rem;
  }

  /* Estate */
  .ec-journey-stat { font-size: 2.5rem; }

  /* Move */
  .mio-speed-stat { font-size: 2rem; }
  .mio-testimonial-text { font-size: 1.125rem; }

  /* Bin */
  .br-size-bin-label { font-size: 3.5rem; }
  .br-testimonial-text { font-size: 1.125rem; }

  /* Car */
  .cd-revenue-step { padding: 1.75rem 1.25rem; }
  .cd-testimonial-text { font-size: 1.125rem; }
  .ec-compare-grid { gap: 1rem; }
  .ec-testimonial-text { font-size: 1.125rem; }

  /* SRO */
  .sro-scope-grid { grid-template-columns: 1fr; }
  .sro-reality-grid { grid-template-columns: 1fr; max-width: 320px; margin-left: auto; margin-right: auto; }
  .sro-process-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .sro-compare-grid { grid-template-columns: 1fr; max-width: 480px; }
  .sro-compare-col { padding: 1.75rem 1.25rem; }
}


/* ============================================
   SHARED CARD NUMBER UTILITY
   ============================================ */

.card-num {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(255,255,255,0.04);
  pointer-events: none;
}


/* ============================================
   SRO CLEANOUTS — Scope Grid
   ============================================ */

.sro-scope {
  background: var(--green-700);
  color: #fff;
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.sro-scope::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.sro-scope-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: clamp(3rem, 6vw, 4rem);
  position: relative;
}

.sro-scope-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 3px solid;
  border-image: linear-gradient(to bottom, var(--green-500), var(--orange-500)) 1;
  border-radius: 0;
  padding: 1.5rem;
  transition: all 0.5s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1rem;
}

.sro-scope-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(45,138,94,0.3), transparent 60%);
}

.sro-scope-card:hover {
  background: rgba(255,255,255,0.07);
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.15);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

.sro-scope-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(45, 138, 94, 0.12);
  border: 1px solid rgba(45, 138, 94, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-400);
  margin-bottom: 0;
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.sro-scope-card:hover .sro-scope-icon {
  background: var(--green-600);
  border-color: var(--green-600);
  color: #fff;
  box-shadow: 0 0 24px rgba(45, 138, 94, 0.3);
}

.sro-scope-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.125rem;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.sro-scope-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}


/* ============================================
   SRO CLEANOUTS — The Reality (Green BG)
   ============================================ */

.sro-reality {
  background: var(--green-700);
  color: #fff;
  padding: clamp(5rem, 10vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

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

.sro-reality .container { position: relative; z-index: 1; }

.sro-reality-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: clamp(3rem, 6vw, 4rem);
}

.sro-reality-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-2xl);
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: all 0.4s var(--ease-out-expo);
}

.sro-reality-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.sro-reality-stat {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3rem, 6vw, 4.5rem);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.sro-reality-stat-white { color: #fff; }
.sro-reality-stat-green { color: var(--green-200); }
.sro-reality-stat-orange { color: var(--orange-300); }

.sro-reality-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.sro-reality-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}


/* ============================================
   SRO CLEANOUTS — Process Timeline
   ============================================ */

.sro-process {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--bg-alt);
}

.sro-process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: clamp(3rem, 6vw, 4rem);
  position: relative;
}

.sro-process-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: linear-gradient(90deg, var(--green-300), var(--green-200), var(--green-400), var(--orange-300), var(--orange-400));
  border-radius: 3px;
}

.sro-process-step {
  text-align: center;
  position: relative;
  padding: 0 0.5rem;
}

.sro-process-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 2px solid var(--green-500);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 26px auto 1.25rem;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.6875rem;
  color: var(--green-700);
  position: relative;
  z-index: 1;
}

.sro-process-step-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green-50);
  border: 1px solid var(--green-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--green-600);
}

.sro-process-step h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 0.375rem;
}

.sro-process-step p {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.5;
}


/* ============================================
   SRO CLEANOUTS — Comparison
   ============================================ */

.sro-compare {
  background: var(--green-700);
  color: #fff;
  padding: clamp(5rem, 10vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

.sro-compare::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.sro-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin: clamp(3rem, 6vw, 4rem) auto 0;
  position: relative;
}

.sro-compare-col {
  border-radius: var(--radius-2xl);
  padding: 2.5rem 2rem;
  position: relative;
}

.sro-compare-col-diy {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}

.sro-compare-col-pro {
  background: rgba(45, 138, 94, 0.08);
  border: 1px solid rgba(45, 138, 94, 0.2);
}

.sro-compare-col-pro::before {
  content: 'Recommended';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.875rem;
  background: var(--green-500);
  color: #fff;
  border-radius: 100px;
  white-space: nowrap;
}

.sro-compare-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.sro-compare-header h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}

.sro-compare-header span {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
}

.sro-compare-row {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  margin-bottom: 1.25rem;
}

.sro-compare-row:last-child { margin-bottom: 0; }

.sro-compare-cta {
  text-align: center;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  position: relative;
}


/* ============================================
   SRO CLEANOUTS — Testimonial
   ============================================ */

.sro-testimonial {
  padding: clamp(5rem, 10vw, 7rem) 0;
  position: relative;
}

.sro-testimonial-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.sro-testimonial-quote-mark {
  font-family: Georgia, serif;
  font-size: 8rem;
  line-height: 0.5;
  background: linear-gradient(135deg, var(--green-400), var(--orange-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  display: block;
}

.sro-testimonial-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  line-height: 1.55;
  letter-spacing: -0.015em;
  color: var(--text);
  margin-bottom: 2rem;
}

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

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

.sro-testimonial-info {
  text-align: left;
}

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

.sro-testimonial-info span {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.sro-testimonial-stars {
  color: var(--orange-400);
  font-size: 1rem;
  letter-spacing: 2px;
}


/* ============================================
   SERVICES LANDING — Hero
   ============================================ */

.services-landing-hero {
  background: var(--bg-dark);
  color: #fff;
  padding: clamp(8rem, 15vw, 12rem) 0 clamp(4rem, 8vw, 6rem);
  position: relative;
  overflow: hidden;
}

.services-landing-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

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

.services-landing-hero .container { position: relative; z-index: 2; }

.services-landing-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3rem, 8vw, 5.5rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 1.25rem;
  max-width: 750px;
}

.services-landing-hero p {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  max-width: 560px;
}


/* ============================================
   SERVICES LANDING — Services Grid
   ============================================ */

.services-landing-grid {
  padding: clamp(5rem, 10vw, 8rem) 0;
}

.sl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: clamp(3rem, 6vw, 4rem);
}

.sl-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  transition: all 0.5s var(--ease-out-expo);
  text-decoration: none;
  display: block;
}

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

.sl-card-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

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

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

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

.sl-card-content h3 {
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  color: var(--text);
}

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

.sl-card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

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

.sl-card-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8125rem;
  color: var(--green-600);
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-left: auto;
  transition: color 0.3s ease;
}

.sl-card:hover .sl-card-link {
  color: var(--orange-500);
}

.sl-card-link svg {
  transition: transform 0.3s ease;
}

.sl-card:hover .sl-card-link svg {
  transform: translateX(3px);
}



/* ============================================
   SERVICES LANDING — Not Sure CTA
   ============================================ */

.sl-not-sure {
  background: var(--green-700);
  color: #fff;
  padding: clamp(4rem, 8vw, 6rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.sl-not-sure::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.sl-not-sure .container { position: relative; z-index: 1; }

.sl-not-sure h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 1rem;
}

.sl-not-sure p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.5);
  max-width: 520px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}


/* ============================================
   SERVICES LANDING — Areas Quick List
   ============================================ */

.sl-areas {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--bg-alt);
}

.sl-areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
  justify-content: center;
}

.sl-area-tag {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--text);
  padding: 0.625rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  transition: all 0.3s ease;
}

.sl-area-tag:hover {
  border-color: var(--green-400);
  color: var(--green-700);
}

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


/* ============================================
   SERVICES LANDING — Responsive
   ============================================ */

@media (max-width: 1024px) {
  .sl-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sro-scope-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sro-process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .sro-process-grid::before {
    display: none;
  }
  .sro-compare-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
  .sro-reality-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .sl-grid {
    grid-template-columns: 1fr;
  }
  .services-landing-hero h1 {
    font-size: clamp(2rem, 9vw, 3rem);
  }
  .sro-process-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
}


/* ============================================
   HOARDING CLEANOUTS — Conditions Grid
   ============================================ */

.hc-conditions {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--green-700);
  color: #fff;
  position: relative;
  overflow: hidden;
}

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

.hc-conditions-card {
  position: relative;
  padding: 2rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  transition: all 0.4s ease;
  overflow: hidden;
}

.hc-conditions-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(45,138,94,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.hc-conditions-card:hover {
  border-color: rgba(255,255,255,0.12);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.2);
}

.hc-conditions-card:hover::after { opacity: 1; }

.hc-conditions-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(45, 138, 94, 0.1);
  border: 1px solid rgba(45, 138, 94, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-400);
  margin-bottom: 1.25rem;
  transition: all 0.4s ease;
}

.hc-conditions-card:hover .hc-conditions-icon {
  background: var(--green-600);
  border-color: var(--green-600);
  color: #fff;
  box-shadow: 0 0 24px rgba(45, 138, 94, 0.3);
}

.hc-conditions-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.125rem;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.hc-conditions-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}


/* ============================================
   HOARDING CLEANOUTS — Our Approach
   ============================================ */

.hc-approach {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--bg-alt);
}

.hc-approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}

.hc-approach-text h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--text);
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hc-approach-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.hc-approach-points {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.hc-approach-point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.hc-approach-point-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--green-50);
  border: 1px solid var(--green-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-600);
  flex-shrink: 0;
}

.hc-approach-point-text strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.hc-approach-point-text span {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.hc-approach-visual {
  position: relative;
  padding: 3rem;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: 20px;
}

.hc-approach-stat {
  text-align: center;
  margin-bottom: 2rem;
}

.hc-approach-stat:last-child {
  margin-bottom: 0;
}

.hc-approach-stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hc-approach-stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}


/* ============================================
   HOARDING CLEANOUTS — Process Timeline
   ============================================ */

.hc-process {
  padding: clamp(5rem, 10vw, 8rem) 0;
}

.hc-process-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 700px;
  margin: 3rem auto 0;
  position: relative;
}

.hc-process-timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--green-600), rgba(45,138,94,0.1));
}

.hc-process-step {
  display: flex;
  gap: 2rem;
  padding: 2rem 0;
  position: relative;
}

.hc-process-step-marker {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--green-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--green-600);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.hc-process-step-content h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.125rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.hc-process-step-content p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}


/* ============================================
   HOARDING CLEANOUTS — Comparison
   ============================================ */

.hc-compare {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--green-700);
  color: #fff;
}

.hc-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 960px;
  margin: 3rem auto 0;
}

.hc-compare-col {
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.06);
}

.hc-compare-col-diy {
  background: rgba(255,255,255,0.02);
}

.hc-compare-col-pro {
  background: rgba(45,138,94,0.06);
  border-color: rgba(45,138,94,0.2);
}

.hc-compare-header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.hc-compare-header h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 0.25rem;
}

.hc-compare-header span {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
}

.hc-compare-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 0;
}

.hc-compare-row + .hc-compare-row {
  border-top: 1px solid rgba(255,255,255,0.04);
}

.hc-compare-row strong {
  display: block;
  font-size: 0.875rem;
  color: #fff;
  margin-bottom: 0.25rem;
}

.hc-compare-row p,
.hc-compare-row span {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
}


/* ============================================
   HOARDING CLEANOUTS — Testimonial
   ============================================ */

.hc-testimonial {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--bg-alt);
}

.hc-testimonial-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.hc-testimonial-quote-mark {
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 1;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.15;
}

.hc-testimonial-text {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  line-height: 1.8;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.hc-testimonial-stars {
  color: #F4B942;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

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

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

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

.hc-testimonial-info span {
  font-size: 0.8125rem;
  color: var(--text-muted);
}


/* ============================================
   LOCATIONS LANDING
   ============================================ */

.loc-hero {
  padding: clamp(8rem, 14vw, 12rem) 0 clamp(4rem, 8vw, 6rem);
  background: var(--bg-dark);
  text-align: center;
}

.loc-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.75rem, 7vw, 5rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 1.25rem;
}

.loc-hero p {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  max-width: 560px;
  margin: 0 auto;
}

.loc-areas-grid {
  padding: clamp(5rem, 10vw, 8rem) 0;
}

.loc-areas-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 960px;
  margin: 3rem auto 0;
}

.loc-area-card {
  display: block;
  padding: 2.5rem;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.loc-area-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(45,138,94,0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.loc-area-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}

.loc-area-card:hover::after { opacity: 1; }

.loc-area-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange-500);
  margin-bottom: 1rem;
}

.loc-area-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.loc-area-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.loc-area-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--green-600);
  transition: gap 0.3s ease;
}

.loc-area-card:hover .loc-area-card-link {
  gap: 0.75rem;
}

.loc-services-list {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--green-700);
  color: #fff;
}

.loc-services-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2rem;
}

.loc-service-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: all 0.3s ease;
}

.loc-service-tag:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.15);
  color: #fff;
}


/* ============================================
   AREA PAGES
   ============================================ */

.area-hero {
  position: relative;
  padding: clamp(8rem, 14vw, 12rem) 0 clamp(4rem, 8vw, 6rem);
  background: var(--bg-dark);
  overflow: hidden;
}

.area-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at 100% 50%, rgba(45,138,94,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.area-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

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

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

.area-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.75rem, 7vw, 5rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 1.25rem;
  max-width: 750px;
}

.area-hero p {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  max-width: 560px;
}

.area-services-grid {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--bg-alt);
}

.area-services-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.area-service-card {
  display: block;
  padding: 2rem;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.area-service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(45,138,94,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.area-service-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}

.area-service-card:hover::after { opacity: 1; }

.area-service-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--green-50);
  border: 1px solid var(--green-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-600);
  margin-bottom: 1rem;
  transition: all 0.4s ease;
}

.area-service-card:hover .area-service-card-icon {
  background: var(--green-600);
  border-color: var(--green-600);
  color: #fff;
}

.area-service-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 0.375rem;
}

.area-service-card p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.area-service-card-price {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.75rem;
  color: var(--green-600);
}

.area-neighborhoods {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--green-700);
  color: #fff;
}

.area-neighborhood-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  justify-content: center;
  margin-top: 2rem;
}

.area-neighborhood-tag {
  padding: 0.5rem 1rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 100px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  transition: all 0.3s ease;
}

.area-neighborhood-tag:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
  color: #fff;
}


/* ============================================
   RICHMOND SERVICE LANDING PAGES
   ============================================ */

.rl-hero {
  position: relative;
  padding: clamp(8rem, 14vw, 12rem) 0 clamp(4rem, 8vw, 6rem);
  background: var(--bg-dark);
  overflow: hidden;
}

.rl-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at 100% 50%, rgba(242,101,34,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.rl-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

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

.rl-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 1.25rem;
}

.rl-hero p {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  margin-bottom: 2rem;
}

.rl-hero-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.rl-hero-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.7);
}

.rl-hero-meta-item svg {
  color: var(--orange-400);
  flex-shrink: 0;
}

.rl-hero-meta-item strong {
  color: var(--green-300);
  font-weight: 800;
}

.rl-hero-meta-divider {
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,0.15);
}

.rl-included {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--bg-alt);
}

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

.rl-included-card {
  padding: 2rem;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  transition: all 0.4s ease;
}

.rl-included-card:hover {
  border-color: var(--border);
  transform: translateY(-2px);
}

.rl-included-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.rl-included-card p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.rl-pricing-box {
  max-width: 600px;
  margin: 3rem auto 0;
  padding: 2.5rem;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  text-align: center;
}

.rl-pricing-label {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.rl-pricing-amount {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--green-600);
  letter-spacing: -0.04em;
  margin-bottom: 0.5rem;
}

.rl-pricing-note {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.rl-full-page-link {
  padding: clamp(3rem, 6vw, 5rem) 0;
  text-align: center;
}

.rl-full-page-link p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.rl-full-page-link a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--green-600);
  transition: gap 0.3s ease;
}

.rl-full-page-link a:hover {
  gap: 0.75rem;
}


/* ============================================
   DARK SECTION OVERRIDES
   Force light text/labels in dark sections
   ============================================ */

.area-neighborhoods .section-header,
.area-neighborhoods .section-header h2 {
  color: #fff;
}

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

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

.area-neighborhoods .section-header p {
  color: rgba(255,255,255,0.55);
}


/* ============================================
   NEW SECTIONS — Responsive (1024px)
   ============================================ */

@media (max-width: 1024px) {
  .hc-conditions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hc-approach-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hc-compare-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
  .loc-areas-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .area-services-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .rl-included-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ============================================
   NEW SECTIONS — Responsive (768px)
   ============================================ */

@media (max-width: 768px) {
  .hc-conditions-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  .hc-compare-grid {
    grid-template-columns: 1fr;
  }
  .loc-areas-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  .area-services-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  .rl-included-grid {
    grid-template-columns: 1fr;
  }
  .rl-hero h1 {
    font-size: clamp(2rem, 8vw, 2.75rem);
  }
}


/* ============================================
   COMMERCIAL AREAS GRID
   Responsive grid that centers orphan items
   ============================================ */

.comm-areas-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.comm-area-card {
  border: 1px solid #e8e8e6;
  border-radius: 16px;
  padding: 2rem;
  flex: 0 1 calc(33.333% - 1.334rem);
  min-width: 0;
}

.comm-area-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #111;
}

.comm-area-card p {
  font-size: 0.9375rem;
  color: #666;
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .comm-area-card {
    flex: 0 1 calc(50% - 1rem);
  }
}

@media (max-width: 640px) {
  .comm-area-card {
    flex: 1 1 100%;
    max-width: 480px;
  }
}
