/* ============================================
   EASY LAUNDRY — Homepage V2 Override
   UI/UX Pro Max redesign styles
   Loaded after styles.css to override sections
   ============================================ */

/* --- Additional CSS Custom Properties (aliases for v2 naming) --- */
:root {
  /* Fluid type (v2 aliases) */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: clamp(1.5rem, 1.2rem + 1vw, 1.75rem);
  --text-3xl: clamp(1.75rem, 1.3rem + 1.5vw, 2.25rem);
  --text-4xl: clamp(2.25rem, 1.5rem + 2.5vw, 3.25rem);
  --text-5xl: clamp(2.75rem, 1.5rem + 4vw, 4.25rem);

  /* Spacing (v2 aliases) */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4.5rem;
  --space-4xl: 6rem;

  /* Radii (v2 aliases) */
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows (v2 aliases) */
  --shadow-sm: 0 1px 3px rgba(15,23,42,0.06), 0 1px 2px rgba(15,23,42,0.04);
  --shadow-md: 0 4px 6px -1px rgba(15,23,42,0.07), 0 2px 4px -2px rgba(15,23,42,0.05);
  --shadow-lg: 0 10px 15px -3px rgba(15,23,42,0.08), 0 4px 6px -4px rgba(15,23,42,0.04);
  --shadow-xl: 0 20px 25px -5px rgba(15,23,42,0.1), 0 8px 10px -6px rgba(15,23,42,0.04);

  /* Transitions (v2) */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-fast: 150ms;
  --duration-base: 250ms;
  --duration-slow: 400ms;

  /* Additional color tokens */
  --color-cta-dark: #4a5a14;
  --color-star: #f59e0b;
}

/* --- Trust Bar (NEW — UI/UX Pro Max: social proof above fold) --- */
.trust-bar {
  background: var(--color-primary-light);
  border-bottom: 1px solid rgba(0,88,163,0.1);
  padding: var(--space-sm) var(--space-xl);
  position: relative;
  z-index: 1;
  margin-top: 75px;
}
#main-content {
  padding-top: 0;
}
.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2xl);
  flex-wrap: wrap;
}
.trust-bar__item {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text);
}
.trust-bar__item svg {
  color: var(--color-primary);
  flex-shrink: 0;
}
.trust-bar__stars {
  color: var(--color-star);
  font-size: var(--text-base);
  letter-spacing: 1px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-base);
  padding: 0.85rem 2rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all var(--duration-base) var(--ease-out);
  text-decoration: none;
  line-height: 1.2;
}
.btn--primary {
  background: var(--color-cta);
  color: var(--color-dark);
}
.btn--primary:hover {
  background: var(--color-cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(179,210,69,0.35);
  color: var(--color-dark);
}
.btn--secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.5);
}
.btn--secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: white;
  color: white;
}
.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.btn--outline:hover {
  background: var(--color-primary);
  color: white;
  transform: translateY(-2px);
}
.btn--white {
  background: white;
  color: var(--color-primary);
}
.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  color: var(--color-primary);
}
.btn--lg {
  padding: 1rem 2.5rem;
  font-size: var(--text-lg);
}
.btn--sm {
  padding: 0.6rem 1.4rem;
  font-size: var(--text-sm);
}

/* --- HERO (Redesigned: Hero-Centric with image) --- */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #000;
  text-align: left;
  padding: 0;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
}
.hero::before,
.hero::after {
  display: none;
}
.hero__bg-image {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero__bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 80% center;
  opacity: 1;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.8) 25%, rgba(0,0,0,0.3) 45%, transparent 60%);
  z-index: 2;
}
.hero .container {
  max-width: 60%;
  margin: 0 auto 0 8%;
  padding-left: var(--space-xl);
  padding-right: var(--space-xl);
}
section.hero .hero__content {
  position: relative;
  z-index: 3;
  max-width: 520px;
  padding: var(--space-4xl) 0;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  padding: 0.4rem 1.2rem;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: var(--space-xl);
}
.hero__badge svg { color: var(--color-cta); }
section.hero h1 {
  font-family: var(--font-heading);
  font-size: var(--text-5xl);
  font-weight: 700;
  color: white;
  line-height: 1.1;
  margin-bottom: var(--space-lg);
  letter-spacing: -0.02em;
  text-align: left;
}
.hero h1 span {
  color: var(--color-cta);
}
.hero p,
.hero p.hero__desc {
  font-size: var(--text-xl);
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin: 0 0 var(--space-2xl) 0;
  max-width: 580px;
  text-align: left;
  opacity: 1;
}
section.hero .hero__actions,
.hero .hero__actions {
  display: flex !important;
  flex-direction: row !important;
  gap: var(--space-sm);
  flex-wrap: nowrap;
  margin-bottom: var(--space-2xl);
  align-items: flex-start;
  justify-content: flex-start;
}
section.hero .hero__actions .btn {
  width: auto;
}
.hero__phone-line {
  color: rgba(255,255,255,0.85);
  font-size: var(--text-base);
  margin-bottom: var(--space-xl);
}
.hero__phone-line a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.hero__phone-line a:hover {
  color: var(--color-cta);
}
.hero__trust-pills {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: nowrap;
}
.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.8);
  font-size: var(--text-sm);
  font-weight: 500;
  white-space: nowrap;
}
.hero__pill svg {
  color: var(--color-cta);
  flex-shrink: 0;
}

/* Wave divider */
.wave-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 4;
  line-height: 0;
  color: #F9F8F6;
}
.wave-divider svg {
  width: 100%;
  height: 60px;
}

/* --- Sections --- */
.section {
  padding: var(--space-4xl) 0;
}
.section--alt {
  background: var(--color-surface);
}
.section--dark {
  background: var(--color-dark);
  color: white;
}
.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-3xl);
}
.section__label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-md);
}
.section__label svg { width: 16px; height: 16px; }
.section__header h2 {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.15;
  margin-bottom: var(--space-md);
  letter-spacing: -0.01em;
}
.section--dark .section__header h2 { color: white; }
.section__header p {
  font-size: var(--text-lg);
  color: var(--color-text-light);
  line-height: 1.7;
}
.section--dark .section__header p { color: rgba(255,255,255,0.7); }

/* --- HOW IT WORKS (Redesigned: Connected Timeline) --- */
.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  position: relative;
}
/* Connecting line */
.timeline::before {
  content: '';
  position: absolute;
  top: 52px;
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-primary), var(--color-cta));
  border-radius: 2px;
  z-index: 0;
}
.timeline__step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.timeline__icon {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background: var(--color-white);
  border: 3px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  position: relative;
  transition: all var(--duration-base) var(--ease-out);
  box-shadow: var(--shadow-md);
}
.timeline__icon svg {
  width: 40px;
  height: 40px;
  color: var(--color-primary);
  transition: transform var(--duration-base) var(--ease-out);
}
.timeline__step:hover .timeline__icon {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg), 0 0 0 8px var(--color-primary-light);
}
.timeline__step:hover .timeline__icon svg {
  transform: scale(1.1);
}
.timeline__number {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 32px;
  height: 32px;
  background: var(--color-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: var(--text-sm);
  border: 3px solid var(--color-white);
}
.timeline__step h3 {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}
.timeline__step p {
  color: var(--color-text-light);
  font-size: var(--text-base);
  max-width: 280px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- WHY CHOOSE US (Redesigned: Better cards with SVG icons) --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}
.feature-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl) var(--space-xl);
  text-align: center;
  transition: all var(--duration-base) var(--ease-out);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--color-primary);
  transform: scaleX(0);
  transition: transform var(--duration-base) var(--ease-out);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}
.feature-card:hover::before {
  transform: scaleX(1);
}
.feature-card__icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius);
  background: var(--color-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  transition: background var(--duration-base);
}
.feature-card__icon svg {
  width: 28px;
  height: 28px;
  color: var(--color-primary);
}
.feature-card:hover .feature-card__icon {
  background: var(--color-primary);
}
.feature-card:hover .feature-card__icon svg {
  color: white;
}
.feature-card h3 {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}
.feature-card p {
  color: var(--color-text-light);
  font-size: var(--text-sm);
  line-height: 1.7;
}

/* --- SERVICES (Redesigned: Grid with featured card) --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}
.service-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: all var(--duration-base) var(--ease-out);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}
.service-card--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 2px solid var(--color-primary);
  box-shadow: var(--shadow-lg);
}
.service-card__img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}
.service-card--featured .service-card__img {
  aspect-ratio: auto;
  min-height: 320px;
}
.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}
.service-card:hover .service-card__img img {
  transform: scale(1.05);
}
.service-card__body {
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-card__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  background: var(--color-primary);
  color: white;
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-md);
  width: fit-content;
}
.service-card h3 {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}
.service-card p {
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

/* --- COMMERCIAL FEATURED CARD VARIANT --- */
.service-card--commercial {
  border-color: var(--color-accent);
}
.service-card__badge--commercial {
  background: var(--color-accent);
}

/* --- COMMERCIAL SECTION --- */
.commercial-section .section__header h2 { color: white; }
.commercial-section .section__header p { color: rgba(255,255,255,0.7); }
.commercial-industries {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-bottom: var(--space-3xl);
}
.commercial-industry {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl) var(--space-xl);
  text-align: center;
  transition: all var(--duration-base) var(--ease-out);
}
.commercial-industry:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
  border-color: var(--color-cta);
}
.commercial-industry__icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius);
  background: rgba(179, 210, 69, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
}
.commercial-industry__icon svg {
  width: 28px;
  height: 28px;
  color: var(--color-cta);
}
.commercial-industry h3 {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: white;
}
.commercial-industry p {
  color: rgba(255,255,255,0.6);
  font-size: var(--text-sm);
  line-height: 1.7;
}
.commercial-benefits {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-xl) var(--space-3xl);
  margin-bottom: var(--space-xl);
}
.commercial-benefit {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  font-size: var(--text-base);
}
.commercial-benefit svg {
  color: var(--color-cta);
}
.btn--cta {
  background: var(--color-cta);
  color: var(--color-cta-dark);
  font-weight: 700;
  border: none;
  transition: all var(--duration-base) var(--ease-out);
}
.btn--cta:hover {
  background: var(--color-cta-hover);
  color: var(--color-cta-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* --- TESTIMONIALS (Redesigned: Better cards) --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}
.testimonial-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  position: relative;
  transition: all var(--duration-base) var(--ease-out);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.testimonial-card__quote {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-xl);
  font-size: 4rem;
  font-family: var(--font-heading);
  color: var(--color-primary-light);
  line-height: 1;
  pointer-events: none;
}
.testimonial-card__stars {
  color: var(--color-star);
  font-size: var(--text-lg);
  letter-spacing: 2px;
  margin-bottom: var(--space-md);
}
.testimonial-card__text {
  font-size: var(--text-base);
  color: var(--color-text);
  line-height: 1.75;
  margin-bottom: var(--space-xl);
  font-style: italic;
}
.testimonial-card__author {
  font-weight: 700;
  color: var(--color-text);
  font-size: var(--text-sm);
}
.testimonial-card__source {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: 0.2rem;
}

/* --- CTA STRIP (Matching homepage: image-on-top, breaks above) --- */
.cta-strip {
  background: #e5a192;
  overflow: visible;
  padding: 0;
  position: relative;
  z-index: 2;
}
.cta-strip__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta-strip__image {
  width: 100%;
  max-width: 480px;
  flex-shrink: 0;
}
.cta-strip__image img {
  display: block;
  width: 100%;
  height: auto;
}
.cta-strip__content {
  padding: var(--space-lg) var(--space-xl) var(--space-2xl);
  text-align: center;
}
.cta-strip h2 {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--color-text);
  line-height: 1.15;
  margin-bottom: var(--space-sm);
}
.cta-strip__subtitle {
  font-size: var(--text-lg);
  color: var(--color-text);
  opacity: 0.8;
  margin-bottom: var(--space-xl);
}
.cta-strip__actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  justify-content: center;
}

@media (min-width: 768px) {
  .cta-strip__inner {
    flex-direction: row-reverse;
    align-items: center;
  }
  .cta-strip__image {
    width: 45%;
    max-width: none;
    margin-top: -5rem;
  }
  .cta-strip__content {
    flex: 1;
    padding: var(--space-2xl);
    text-align: left;
  }
  .cta-strip__actions { justify-content: flex-start; }
  .cta-strip h2 { font-size: var(--text-4xl); }
}
@media (min-width: 1024px) {
  .cta-strip__image { margin-top: -6rem; }
  .cta-strip__content { padding: var(--space-2xl) var(--space-3xl); }
}

/* --- LOCATIONS (Redesigned: Better cards with colored accent) --- */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}
.location-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  text-align: center;
  transition: all var(--duration-base) var(--ease-out);
  position: relative;
  overflow: hidden;
}
.location-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--color-accent);
  transform: scaleX(0);
  transition: transform var(--duration-base) var(--ease-out);
}
.location-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}
.location-card:hover::after {
  transform: scaleX(1);
}
.location-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
}
.location-card__icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-accent);
}
.location-card h3 {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}
.location-card__address {
  color: var(--color-text-light);
  font-size: var(--text-sm);
  margin-bottom: var(--space-sm);
}
.location-card__phone {
  margin-bottom: var(--space-sm);
}
.location-card__phone a {
  font-weight: 700;
  font-size: var(--text-lg);
  color: var(--color-primary);
}
.location-card__hours {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
}

/* --- COVERAGE MAP (NEW: Redesigned with Leaflet) --- */
.coverage {
  background: var(--color-dark);
  color: white;
  position: relative;
  overflow: hidden;
  padding-bottom: calc(var(--space-4xl) + 4rem);
}
.coverage .section__header h2 { color: white; }
.coverage .section__header p { color: rgba(255,255,255,0.7); }
.coverage .section__label { color: var(--color-accent); }
.coverage__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}
.coverage__map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 2px solid rgba(255,255,255,0.1);
}
#coverage-leaflet-map {
  width: 100%;
  height: 420px;
  z-index: 1;
}
.coverage__info h3 {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-lg);
}
.coverage__towns {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}
.coverage__town {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 500;
  transition: all var(--duration-fast);
}
.coverage__town:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.25);
}
.coverage__town svg {
  width: 14px;
  height: 14px;
  color: var(--color-accent);
}
.coverage__radius {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(0,180,216,0.15);
  border: 1px solid rgba(0,180,216,0.3);
  color: var(--color-accent);
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 700;
  margin-bottom: var(--space-xl);
}
.coverage__radius svg { width: 16px; height: 16px; }

/* Two-zone legend (matches coverage map circles) */
.coverage__zones {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}
.coverage__zone {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 700;
  color: white;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
}
.coverage__zone-swatch {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1.5px solid transparent;
  flex-shrink: 0;
}
.coverage__zone--inner .coverage__zone-swatch {
  background: rgba(76, 122, 61, 0.7);
  border-color: #4c7a3d;
}
.coverage__zone--outer .coverage__zone-swatch {
  background: rgba(179, 210, 69, 0.5);
  border-color: #B3D245;
}

.coverage__note {
  color: rgba(255,255,255,0.6);
  font-size: var(--text-sm);
  line-height: 1.7;
}
.coverage__note a {
  color: var(--color-accent);
  font-weight: 700;
}
/* Leaflet custom marker styles */
.map-marker-shop {
  background: var(--color-primary);
  border: 3px solid white;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.map-marker-shop--hq {
  background: var(--color-cta);
  border-color: white;
}

@media (max-width: 768px) {
  .coverage__grid {
    grid-template-columns: 1fr;
  }
  #coverage-leaflet-map {
    height: 300px;
  }
}

/* --- FAQ (Redesigned: Cleaner accordion) --- */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--color-border);
}
.faq-item__question {
  width: 100%;
  background: none;
  border: none;
  padding: var(--space-xl) 0;
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-text);
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  transition: color var(--duration-fast);
}
.faq-item__question:hover { color: var(--color-primary); }
.faq-item__chevron {
  display: none;
}
.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-slow) var(--ease-out);
}
.faq-item.is-open .faq-item__answer {
  max-height: 300px;
}
.faq-item__answer p {
  padding-bottom: var(--space-xl);
  color: var(--color-text-light);
  line-height: 1.8;
}
.faq-item__answer a {
  color: var(--color-primary);
  font-weight: 600;
}

/* --- NEWSLETTER (Homepage style: blue bg + soap bubbles) --- */
.newsletter {
  background: var(--color-primary);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}
.newsletter__bubbles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.newsletter__bubble {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0.25) 5%, transparent 35%),
    radial-gradient(circle at 50% 50%, transparent 30%, rgba(255,255,255,0.04) 45%, rgba(255,255,255,0.06) 55%, transparent 70%),
    radial-gradient(circle at 50% 55%, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.04) 70%, transparent 100%);
  box-shadow:
    0 0 20px rgba(255,255,255,0.08),
    inset 0 -20px 40px rgba(255,255,255,0.08),
    inset 0 20px 40px rgba(255,255,255,0.12);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  will-change: transform;
  animation: bubble-float linear infinite;
}
.newsletter__bubble::before {
  content: '';
  position: absolute;
  top: 12%; left: 18%;
  width: 35%; height: 25%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.55) 0%, transparent 70%);
  transform: rotate(-25deg);
  filter: blur(1px);
}
.newsletter__bubble::after {
  content: '';
  position: absolute;
  bottom: 16%; right: 20%;
  width: 10%; height: 7%;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  filter: blur(2px);
}
.newsletter__bubble:nth-child(1)  { width: 220px; height: 220px; top: -15%;  left: -5%;   animation-duration: 18s; animation-delay: 0s;    opacity: 0.55; }
.newsletter__bubble:nth-child(2)  { width: 160px; height: 160px; top: 55%;   left: 8%;    animation-duration: 22s; animation-delay: -4s;   opacity: 0.50; }
.newsletter__bubble:nth-child(3)  { width: 90px;  height: 90px;  top: 10%;   left: 25%;   animation-duration: 14s; animation-delay: -2s;   opacity: 0.65; }
.newsletter__bubble:nth-child(4)  { width: 280px; height: 280px; top: -10%;  right: -3%;  animation-duration: 25s; animation-delay: -8s;   opacity: 0.35; }
.newsletter__bubble:nth-child(5)  { width: 60px;  height: 60px;  top: 40%;   left: 45%;   animation-duration: 12s; animation-delay: -1s;   opacity: 0.70; }
.newsletter__bubble:nth-child(6)  { width: 130px; height: 130px; top: 60%;   right: 12%;  animation-duration: 20s; animation-delay: -6s;   opacity: 0.50; }
.newsletter__bubble:nth-child(7)  { width: 45px;  height: 45px;  top: 20%;   left: 60%;   animation-duration: 10s; animation-delay: -3s;   opacity: 0.75; }
.newsletter__bubble:nth-child(8)  { width: 180px; height: 180px; top: 5%;    left: 70%;   animation-duration: 24s; animation-delay: -10s;  opacity: 0.40; }
.newsletter__bubble:nth-child(9)  { width: 35px;  height: 35px;  top: 70%;   left: 30%;   animation-duration: 9s;  animation-delay: -5s;   opacity: 0.80; }
.newsletter__bubble:nth-child(10) { width: 100px; height: 100px; top: 35%;   right: 30%;  animation-duration: 16s; animation-delay: -7s;   opacity: 0.55; }
.newsletter__bubble:nth-child(11) { width: 55px;  height: 55px;  top: 15%;   left: 50%;   animation-duration: 11s; animation-delay: -2s;   opacity: 0.65; }
.newsletter__bubble:nth-child(12) { width: 200px; height: 200px; top: 45%;   right: -5%;  animation-duration: 28s; animation-delay: -12s;  opacity: 0.38; }
.newsletter__bubble--sm {
  background:
    radial-gradient(circle at 35% 30%, rgba(255,255,255,0.6) 0%, transparent 50%),
    radial-gradient(circle at 50% 55%, rgba(255,255,255,0.08) 0%, transparent 100%);
  box-shadow:
    0 0 6px rgba(255,255,255,0.06),
    inset 0 -4px 8px rgba(255,255,255,0.08),
    inset 0 4px 8px rgba(255,255,255,0.10);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
}
.newsletter__bubble--sm::before,
.newsletter__bubble--sm::after { display: none; }
.newsletter__bubble:nth-child(13) { width: 18px; height: 18px; top: 8%;   left: 12%;  animation-duration: 20s; animation-delay: -1s;  opacity: 0.7; }
.newsletter__bubble:nth-child(14) { width: 12px; height: 12px; top: 22%;  left: 38%;  animation-duration: 18s; animation-delay: -3s;  opacity: 0.8; }
.newsletter__bubble:nth-child(15) { width: 20px; height: 20px; top: 65%;  left: 18%;  animation-duration: 22s; animation-delay: -2s;  opacity: 0.65; }
.newsletter__bubble:nth-child(16) { width: 10px; height: 10px; top: 45%;  left: 55%;  animation-duration: 16s; animation-delay: -4s;  opacity: 0.85; }
.newsletter__bubble:nth-child(17) { width: 15px; height: 15px; top: 75%;  right: 22%; animation-duration: 19s; animation-delay: -1s;  opacity: 0.7; }
.newsletter__bubble:nth-child(18) { width: 22px; height: 22px; top: 12%;  right: 15%; animation-duration: 24s; animation-delay: -5s;  opacity: 0.6; }
@keyframes bubble-float {
  0%   { transform: translateY(0) translateX(0) scale(1); }
  25%  { transform: translateY(-30px) translateX(20px) scale(1.06); }
  50%  { transform: translateY(-12px) translateX(-18px) scale(0.95); }
  75%  { transform: translateY(-35px) translateX(14px) scale(1.03); }
  100% { transform: translateY(0) translateX(0) scale(1); }
}
.newsletter__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}
.newsletter h2 {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-md);
}
.newsletter__desc {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.9);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}
.newsletter__form {
  width: 100%;
  max-width: 520px;
}
.newsletter__field {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.newsletter__input {
  width: 100%;
  padding: 0.85rem 1.2rem;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.12);
  color: white;
  font-family: var(--font-body);
  font-size: var(--text-base);
  transition: border-color var(--duration-fast), background var(--duration-fast);
}
.newsletter__input::placeholder { color: rgba(255,255,255,0.6); }
.newsletter__input:focus {
  outline: none;
  border-color: var(--color-cta);
  background: rgba(255,255,255,0.18);
}
.newsletter__btn {
  width: 100%;
  font-size: var(--text-base);
  font-weight: 700;
  padding: 0.85rem var(--space-xl);
}
.newsletter__note {
  margin-top: var(--space-sm);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.6);
}
.newsletter__note a {
  color: rgba(255,255,255,0.8);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* --- FINAL CTA (Redesigned: Dark with image) --- */
.final-cta {
  background: var(--color-dark);
  position: relative;
  overflow: hidden;
}
.final-cta__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-3xl);
  align-items: center;
}
.final-cta__content h2 {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: white;
  line-height: 1.15;
  margin-bottom: var(--space-lg);
}
.final-cta__subtitle {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.7);
  margin-bottom: var(--space-2xl);
}
.final-cta__features {
  list-style: none;
  margin-bottom: var(--space-2xl);
}
.final-cta__features li {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  color: rgba(255,255,255,0.85);
  padding: var(--space-sm) 0;
  font-size: var(--text-base);
}
.final-cta__features svg {
  color: var(--color-cta);
  flex-shrink: 0;
}
.final-cta__image {
  width: 360px;
  flex-shrink: 0;
}
.final-cta__image img {
  border-radius: var(--radius-xl);
}

/* --- FOOTER --- */
.footer {
  background: var(--color-dark);
  color: rgba(255,255,255,0.7);
  padding: var(--space-4xl) 0 var(--space-xl);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-3xl);
}
.footer h4 {
  color: white;
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-lg);
}
.footer ul { list-style: none; }
.footer li { margin-bottom: var(--space-sm); }
.footer a {
  color: rgba(255,255,255,0.6);
  transition: color var(--duration-fast);
  font-size: var(--text-sm);
}
.footer a:hover { color: white; }
.footer__logo {
  margin-bottom: var(--space-md);
}
.footer__cd-callout {
  margin-top: var(--space-lg);
  padding: var(--space-md);
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  border-left: 3px solid var(--color-cta);
  font-size: var(--text-sm);
}
.footer__bottom {
  margin-top: var(--space-3xl);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-sm);
}
.footer__bottom-links {
  display: flex;
  gap: var(--space-xl);
}

/* --- STICKY MOBILE CTA --- */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  padding: var(--space-sm) var(--space-md);
  box-shadow: 0 -4px 12px rgba(0,0,0,0.08);
}
.sticky-cta__inner {
  display: flex;
  gap: var(--space-sm);
  max-width: 500px;
  margin: 0 auto;
}
.sticky-cta__btn {
  flex: 1;
  text-align: center;
  padding: 0.8rem var(--space-md);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: var(--text-sm);
}
.sticky-cta__btn--primary {
  background: var(--color-cta);
  color: var(--color-dark);
}
.sticky-cta__btn--secondary {
  background: var(--color-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
}

/* --- SCROLL REVEAL --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children */
.reveal.is-visible .stagger { animation: fadeInUp 0.5s var(--ease-out) both; }
.reveal.is-visible .stagger:nth-child(1) { animation-delay: 0s; }
.reveal.is-visible .stagger:nth-child(2) { animation-delay: 0.08s; }
.reveal.is-visible .stagger:nth-child(3) { animation-delay: 0.16s; }
.reveal.is-visible .stagger:nth-child(4) { animation-delay: 0.24s; }
.reveal.is-visible .stagger:nth-child(5) { animation-delay: 0.32s; }
.reveal.is-visible .stagger:nth-child(6) { animation-delay: 0.4s; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* --- REDUCED MOTION --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* --- RESPONSIVE --- */

/* Tablet */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-card--featured { grid-column: 1 / -1; }
  .commercial-industries { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid .testimonial-card:nth-child(n+3) { display: none; }
  .cta-strip__image { width: 45%; }
  .final-cta__image { width: 280px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--space-2xl); }
}

/* Mobile */
@media (max-width: 768px) {
  .top-bar__phone { display: none; }
  .top-bar .container { justify-content: center; }

  /* Mobile nav styles handled by styles.css */

  .trust-bar__inner { gap: var(--space-lg); }

  .hero { min-height: 75vh; }
  .hero h1 { font-size: var(--text-4xl); }
  .hero__desc { font-size: var(--text-base); }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }

  .timeline {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    max-width: 360px;
    margin: 0 auto;
  }
  .timeline::before {
    top: 52px;
    bottom: 52px;
    left: 52px;
    right: auto;
    width: 3px;
    height: auto;
  }
  .timeline__step { text-align: left; display: flex; gap: var(--space-lg); align-items: flex-start; }
  .timeline__icon { margin: 0; flex-shrink: 0; width: 80px; height: 80px; }
  .timeline__icon svg { width: 32px; height: 32px; }
  .timeline__step p { margin: 0; }

  .features-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card--featured { grid-template-columns: 1fr; }
  .commercial-industries { grid-template-columns: 1fr; }
  .commercial-benefits { flex-direction: column; align-items: center; gap: var(--space-md); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-grid .testimonial-card:nth-child(n+3) { display: block; }
  .locations-grid { grid-template-columns: 1fr; }
  .newsletter__field { flex-direction: column; }
  .cta-strip__inner { grid-template-columns: 1fr; text-align: center; }
  .cta-strip__image { max-width: 480px; }
  .final-cta__grid { grid-template-columns: 1fr; }
  .final-cta__image { display: none; }
  .final-cta__content { text-align: center; }
  .final-cta__features li { justify-content: center; }

  .footer__grid { grid-template-columns: 1fr; text-align: center; }
  .footer__cd-callout { text-align: left; }
  .footer__bottom { flex-direction: column; gap: var(--space-md); text-align: center; }

  .sticky-cta { display: block; }
  .footer { padding-bottom: 80px; }
}

/* --- HERO URGENCY BANNER --- */
.hero__urgency {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(179, 210, 69, 0.15);
  border: 1px solid rgba(179, 210, 69, 0.3);
  color: var(--color-cta);
  padding: 0.4rem 1.2rem;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 700;
  margin-bottom: var(--space-lg);
  animation: urgency-pulse 2.5s ease-in-out infinite;
}
.hero__urgency svg { color: var(--color-cta); }
@keyframes urgency-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* --- HERO PHONE LINE (mobile enhancement) --- */
.hero__phone-line {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}
.hero__phone-line svg { color: var(--color-cta); flex-shrink: 0; }
@media (max-width: 768px) {
  .hero__phone-line {
    justify-content: center;
    font-size: var(--text-lg);
    background: rgba(255,255,255,0.08);
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.15);
  }
  .hero__urgency {
    font-size: var(--text-xs);
  }
}

/* --- SERVICE CARD PRICE TAG --- */
.service-card__price {
  display: inline-block;
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-weight: 700;
  font-size: var(--text-sm);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-sm);
}
.service-card--commercial .service-card__price {
  background: rgba(179, 210, 69, 0.15);
  color: var(--color-cta-dark);
}

/* --- TESTIMONIAL BADGE --- */
.testimonial-card__badge {
  display: inline-block;
  background: var(--color-accent-light);
  color: var(--color-accent);
  font-size: var(--text-xs);
  font-weight: 700;
  padding: 0.2rem 0.7rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* --- TESTIMONIALS GRID: 4 columns on desktop --- */
@media (min-width: 1025px) {
  .testimonials-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* --- POSTCODE CHECKER --- */
.postcode-checker {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin-bottom: var(--space-xl);
}
.postcode-checker h4 {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-md);
}
.postcode-checker__field {
  display: flex;
  gap: var(--space-sm);
}
.postcode-checker__input {
  flex: 1;
  padding: 0.7rem 1rem;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.08);
  color: white;
  font-family: var(--font-body);
  font-size: var(--text-base);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: border-color var(--duration-fast), background var(--duration-fast);
}
.postcode-checker__input::placeholder {
  color: rgba(255,255,255,0.4);
  text-transform: none;
  letter-spacing: 0;
}
.postcode-checker__input:focus {
  outline: none;
  border-color: var(--color-accent);
  background: rgba(255,255,255,0.12);
}
.postcode-checker__btn {
  white-space: nowrap;
}
.postcode-checker__result {
  margin-top: var(--space-md);
}
.postcode-checker__yes {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--color-cta);
  font-weight: 700;
  font-size: var(--text-base);
}
.postcode-checker__maybe {
  color: rgba(255,255,255,0.8);
  font-size: var(--text-sm);
  line-height: 1.7;
}
.postcode-checker__maybe svg {
  display: inline;
  vertical-align: -3px;
  margin-right: 0.3rem;
  color: var(--color-accent);
}
.postcode-checker__maybe a {
  color: var(--color-accent);
  font-weight: 700;
}
.postcode-checker__error {
  color: #f87171;
  font-size: var(--text-sm);
}

@media (max-width: 768px) {
  .postcode-checker__field {
    flex-direction: column;
  }
}

/* --- STATS BAR --- */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  max-width: 900px;
  margin: 0 auto;
}
.stat {
  text-align: center;
}
.stat__number {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.1;
  margin-bottom: var(--space-xs);
}
.stat__label {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  font-weight: 500;
}
@media (max-width: 768px) {
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }
}

/* --- TESTIMONIAL OUTCOME VARIANT (2-col) --- */
.testimonial--outcome.testimonials-grid {
  grid-template-columns: repeat(2, 1fr) !important;
  gap: var(--space-2xl);
}
.testimonial--outcome .testimonial-card {
  padding: var(--space-2xl) var(--space-2xl) var(--space-xl);
}
.testimonial--outcome .testimonial-card__text {
  font-size: var(--text-lg);
  font-style: normal;
  line-height: 1.8;
  margin-bottom: var(--space-xl);
}
.testimonial-card__result {
  display: inline-block;
  background: rgba(179, 210, 69, 0.15);
  color: var(--color-cta-dark);
  font-weight: 700;
  font-size: var(--text-sm);
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
}
@media (max-width: 768px) {
  .testimonial--outcome.testimonials-grid {
    grid-template-columns: 1fr !important;
  }
}

/* --- FINAL CTA HORMOZI VARIANT --- */
.final-cta--hormozi .final-cta__content h2 {
  font-size: var(--text-4xl);
}
.final-cta__scarcity {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(248, 113, 113, 0.15);
  border: 1px solid rgba(248, 113, 113, 0.3);
  color: #fca5a5;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 700;
  margin-bottom: var(--space-xl);
}
.final-cta__scarcity svg {
  color: #fca5a5;
}
.final-cta__buttons {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  max-width: 380px;
}
.final-cta__buttons .btn {
  width: 100%;
  text-align: center;
}

/* --- GUARANTEE --- */
.guarantee {
  background: var(--color-surface-warm);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl) var(--space-2xl);
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
}
.guarantee__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--color-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-xl);
  border: 3px solid var(--color-primary);
}
.guarantee__icon svg {
  width: 36px;
  height: 36px;
  color: var(--color-primary);
}
.guarantee h3 {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: var(--space-md);
}
.guarantee p {
  font-size: var(--text-lg);
  color: var(--color-text-light);
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .guarantee {
    padding: var(--space-2xl) var(--space-lg);
  }
}

/* --- OFFER BOX (The Doorstep Deal) --- */
.offer-box {
  background: var(--color-white);
  border: 3px solid var(--color-cta);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl) var(--space-2xl);
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 60px rgba(179, 210, 69, 0.12), var(--shadow-xl);
}
.offer-box__badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-cta);
  color: var(--color-dark);
  font-weight: 800;
  font-size: var(--text-sm);
  padding: 0.45rem 1.5rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.offer-box h2 {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: var(--space-lg);
  line-height: 1.15;
}
.offer-box__desc {
  font-size: var(--text-lg);
  color: var(--color-text-light);
  max-width: 580px;
  margin: 0 auto var(--space-2xl);
  line-height: 1.7;
}
.value-stack {
  text-align: left;
  max-width: 520px;
  margin: 0 auto var(--space-2xl);
  list-style: none;
}
.value-stack li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--color-border-light);
  font-size: var(--text-base);
  color: var(--color-text);
}
.value-stack li:last-child {
  border-bottom: none;
}
.value-stack svg {
  color: var(--color-cta);
  flex-shrink: 0;
  margin-top: 2px;
}
.value-stack strong {
  color: var(--color-primary);
}
.offer-box__pricing {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}
.offer-box__price-new {
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--color-primary);
  font-family: var(--font-heading);
}
.offer-box__price-note {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
}
@media (max-width: 768px) {
  .offer-box {
    padding: var(--space-2xl) var(--space-lg);
  }
}

/* --- HERO INNER PAGES VARIANT --- */
/* Compact dark hero for non-homepage pages. Uses a centred, constrained text column
   so headlines and copy sit in the same polished position as the homepage hero
   instead of hugging the left edge of the viewport. */
.hero--inner {
  min-height: auto;
  padding: var(--space-4xl) 0 var(--space-3xl);
  background: linear-gradient(135deg, var(--color-dark) 0%, #0a1628 100%);
  display: flex;
  align-items: center;
}
.hero--inner .hero__overlay { background: transparent; }
section.hero.hero--inner .container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--space-xl);
  padding-right: var(--space-xl);
}
section.hero.hero--inner .hero__content {
  max-width: 720px;
  padding: 0;
}
.hero--inner h1 {
  font-size: var(--text-5xl);
  line-height: 1.1;
  margin-bottom: var(--space-md);
}
.hero--inner .hero__desc {
  font-size: var(--text-lg);
  margin-bottom: var(--space-xl);
  max-width: 620px;
}
section.hero.hero--inner .hero__actions {
  flex-direction: row !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: var(--space-md) !important;
  margin-bottom: 0;
  max-width: none;
}
section.hero.hero--inner .hero__actions .btn {
  width: auto !important;
}
@media (max-width: 768px) {
  .hero--inner { padding: var(--space-3xl) 0 var(--space-2xl); }
  .hero--inner h1 { font-size: var(--text-3xl); }
  section.hero.hero--inner .hero__actions { flex-direction: column !important; align-items: stretch !important; }
  section.hero.hero--inner .hero__actions .btn { width: 100% !important; }
}

/* --- HERO HORMOZI VARIANT --- */
.hero--hormozi {
  min-height: 90vh;
}
.hero--hormozi h1 {
  font-size: var(--text-5xl);
  line-height: 1.05;
}
.hero--hormozi h1 .hero__pain {
  display: block;
  color: white;
  font-size: 0.55em;
  font-weight: 400;
  opacity: 0.85;
  margin-bottom: 0.3em;
  letter-spacing: 0;
}
.hero--hormozi .hero__desc {
  font-size: var(--text-lg);
  max-width: 520px;
}
section.hero.hero--hormozi .hero__actions {
  flex-direction: column !important;
  gap: var(--space-md) !important;
  align-items: flex-start !important;
  max-width: 380px;
  flex-wrap: wrap !important;
}
section.hero.hero--hormozi .hero__actions .btn {
  width: 100% !important;
  font-size: var(--text-xl);
  padding: 1.15rem 2.5rem;
  text-align: center;
}
.hero--hormozi .hero__cta-sub {
  color: rgba(255,255,255,0.6);
  font-size: var(--text-sm);
  text-align: center;
  width: 100%;
}
@media (max-width: 768px) {
  .hero--hormozi h1 .hero__pain {
    font-size: 0.5em;
  }
}

/* --- MATH SECTION (cost comparison) --- */
.math-section {
  background: var(--color-dark);
  color: white;
}
.math-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--space-2xl);
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}
.math-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  text-align: center;
}
.math-card h3 {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.math-card__number {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--space-sm);
}
.math-card__number--bad { color: #f87171; }
.math-card__number--good { color: var(--color-cta); }
.math-card__detail {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
}
.math-vs {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: rgba(255,255,255,0.3);
}
@media (max-width: 768px) {
  .math-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  .math-vs {
    display: none;
  }
}

/* Text utilities */
.text-center { text-align: center; }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }
