/* ============================================
   EASY LAUNDRY — V3 Stylesheet
   "Warm Editorial" — Premium local service brand
   Fraunces + Figtree · grain texture · diagonal sections
   Mobile-first responsive design
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  /* Brand Palette */
  --color-primary: #0058a3;
  --color-primary-dark: #003d73;
  --color-primary-light: #e8f4fd;
  --color-primary-muted: #4a90c4;
  --color-accent: #00b4d8;
  --color-accent-light: #e0f7fa;
  --color-cta: #B3D245;
  --color-cta-hover: #9fbf30;
  --color-cta-glow: rgba(179, 210, 69, 0.25);

  /* Neutrals — warm undertone */
  --color-dark: #0f172a;
  --color-dark-mid: #1e293b;
  --color-surface: #faf9f7;
  --color-surface-warm: #f5f0eb;
  --color-white: #ffffff;
  --color-text: #1e293b;
  --color-text-light: #64748b;
  --color-text-muted: #94a3b8;
  --color-border: #e2e8f0;
  --color-border-light: #f1f5f9;
  --color-star: #f59e0b;

  /* Typography */
  --font-heading: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Figtree", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-family: var(--font-body);

  /* Fluid type scale */
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: clamp(1.5rem, 1.2rem + 1vw, 1.75rem);
  --font-size-3xl: clamp(1.875rem, 1.5rem + 1.5vw, 2.5rem);
  --font-size-4xl: clamp(2.25rem, 1.5rem + 2.5vw, 3.25rem);
  --font-size-5xl: clamp(2.75rem, 1.5rem + 4vw, 4.5rem);

  --line-height-base: 1.7;
  --line-height-tight: 1.15;
  --line-height-relaxed: 1.85;

  /* Spacing scale */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4.5rem;
  --spacing-4xl: 7rem;

  /* Radii */
  --border-radius: 10px;
  --border-radius-lg: 16px;
  --border-radius-xl: 24px;
  --border-radius-full: 9999px;

  /* Shadows — layered for realism */
  --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.04);
  --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.08), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(15, 23, 42, 0.16);
  --shadow-inner: inset 0 2px 4px rgba(15, 23, 42, 0.04);
  --shadow-cta-glow: 0 4px 14px var(--color-cta-glow), 0 0 0 3px rgba(6, 214, 160, 0.08);

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 400ms cubic-bezier(0.22, 1, 0.36, 1);
  --transition-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Layout */
  --container-max: 1200px;
  --container-narrow: 800px;
  --header-height: 80px;
}


/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--color-text);
  background-color: var(--color-surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Grain texture overlay — adds warmth & tactile feel */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.028;
  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)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-accent);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: 4px;
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Selection */
::selection {
  background: var(--color-accent);
  color: var(--color-white);
}

::-moz-selection {
  background: var(--color-accent);
  color: var(--color-white);
}


/* ============================================
   SKIP NAVIGATION (a11y)
   ============================================ */
.skip-nav {
  position: absolute;
  top: -100%;
  left: var(--spacing-md);
  padding: var(--spacing-sm) var(--spacing-md);
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--border-radius);
  z-index: 9999;
  font-weight: 600;
}

.skip-nav:focus {
  top: var(--spacing-md);
}


/* ============================================
   CONTAINER
   ============================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.container--narrow {
  max-width: var(--container-narrow);
}

@media (min-width: 768px) {
  .container {
    padding: 0 var(--spacing-xl);
  }
}


/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
  display: none;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
}

.top-bar__phone {
  font-weight: 400;
  opacity: 0.75;
}

.top-bar__phone a {
  color: var(--color-white);
  font-weight: 600;
  transition: color var(--transition-fast);
}

.top-bar__phone a:hover {
  color: var(--color-cta);
}

.top-bar__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-cta);
  color: var(--color-dark);
  padding: 5px var(--spacing-md);
  border-radius: var(--border-radius-full);
  font-weight: 700;
  font-size: var(--font-size-sm);
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.top-bar__cta:hover {
  background: var(--color-cta-hover);
  color: var(--color-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px var(--color-cta-glow);
}


/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--spacing-sm) 0;
  background: var(--color-white);
  transition:
    background var(--transition-base),
    box-shadow var(--transition-base),
    padding var(--transition-base);
}

/* Frosted glass on scroll */
.header.is-scrolled {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: none;
  padding: 4px 0;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.header__logo {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 10;
  transition: transform var(--transition-base);
}

.header__logo:hover {
  transform: scale(1.03);
}

.header__logo img {
  height: 60px;
  width: auto;
  transition: height var(--transition-base);
}

.header.is-scrolled .header__logo img {
  height: 48px;
}

/* Nav list — desktop */
.nav__list {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Nav links */
.nav__item a {
  position: relative;
  display: inline-block;
  padding: var(--spacing-sm) var(--spacing-md);
  font-family: var(--font-body);
  font-size: var(--font-size-sm);
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--color-text);
  text-decoration: none;
  border-radius: var(--border-radius);
  transition:
    color var(--transition-fast),
    background var(--transition-fast);
}

/* Hover underline sweep */
/* Underline sweep on hover */
.nav__item a::after {
  content: "";
  position: absolute;
  left: var(--spacing-md);
  right: var(--spacing-md);
  bottom: 4px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.nav__item a:hover::after,
.nav__item a.is-active::after,
.nav__item a.is-current::after {
  transform: scaleX(1);
}

.nav__item a:hover {
  color: var(--color-primary);
  background: var(--color-primary-light);
}

/* Active nav link */
.nav__item a.is-active,
.nav__item a.is-current {
  color: var(--color-primary);
  font-weight: 600;
}

/* --- Dropdown menus (desktop) --- */
.nav__item--dropdown {
  position: relative;
}

.nav__item--dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Chevron indicator — inline SVG for crisp rendering */
.nav__item--dropdown > a .nav__chevron {
  display: inline-block;
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  transition: transform var(--transition-fast);
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2.5 4.5L6 8l3.5-3.5' fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2.5 4.5L6 8l3.5-3.5' fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

.nav__item--dropdown:hover > a .nav__chevron,
.nav__item--dropdown:focus-within > a .nav__chevron {
  transform: rotate(-180deg);
}

/* Dropdown panel */
.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  min-width: 220px;
  padding: var(--spacing-sm) 0;
  background: var(--color-white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-border-light);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity var(--transition-fast),
    visibility var(--transition-fast),
    transform var(--transition-fast);
  z-index: 100;
  list-style: none;
}

/* Show on hover and focus-within */
.nav__item--dropdown:hover .nav__dropdown,
.nav__item--dropdown:focus-within .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Dropdown links */
.nav__dropdown li a {
  display: block;
  padding: var(--spacing-sm) var(--spacing-lg);
  font-family: var(--font-body);
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  white-space: nowrap;
  transition:
    color var(--transition-fast),
    background var(--transition-fast);
}

.nav__dropdown li a:hover {
  color: var(--color-primary);
  background: var(--color-primary-light);
}

.nav__dropdown li a::after {
  display: none;
}

/* CTA button in nav */
.nav__cta {
  margin-left: var(--spacing-sm);
}

.nav__cta a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  font-family: var(--font-body);
  font-size: var(--font-size-sm);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--color-dark);
  background: var(--color-cta);
  border-radius: var(--border-radius-full);
  text-decoration: none;
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-base),
    background var(--transition-fast);
  box-shadow: 0 2px 8px var(--color-cta-glow);
}

.nav__cta a:hover {
  background: var(--color-cta-hover);
  transform: translateY(-1px);
  box-shadow:
    0 4px 16px var(--color-cta-glow),
    0 0 0 3px rgba(179, 210, 69, 0.12);
}

.nav__cta a:active {
  transform: translateY(0);
}

/* Hamburger toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 10;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition:
    transform var(--transition-base),
    opacity var(--transition-fast);
  transform-origin: center;
}


/* Hamburger → X morph */
.nav__toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__toggle.is-active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav__toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Push content below fixed header */
#main-content {
  padding-top: var(--header-height);
}

/* --- Mobile nav --- */
@media (max-width: 767px) {
  .nav__toggle {
    display: flex;
  }

  .nav__list {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100dvh;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: calc(var(--header-height) + var(--spacing-lg)) var(--spacing-xl) var(--spacing-xl);
    background: rgba(15, 23, 42, 0.96);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    transform: translateX(100%);
    transition: transform var(--transition-slow);
    overflow-y: auto;
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.15);
  }

  .nav__list.is-active {
    transform: translateX(0);
  }

  .nav__item a {
    display: block;
    padding: var(--spacing-md) var(--spacing-sm);
    font-size: var(--font-size-lg);
    font-weight: 500;
    color: var(--color-white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 0;
  }

  .nav__item a::after {
    display: none;
  }

  .nav__item a:hover,
  .nav__item a.is-active,
.nav__item a.is-current {
    color: var(--color-cta);
    background: rgba(255, 255, 255, 0.04);
  }

  /* Scrolled state doesn't change mobile link colour */
  .header.is-scrolled .nav__item a {
    color: var(--color-white);
  }

  .header.is-scrolled .nav__item a:hover,
  .header.is-scrolled .nav__item a.is-active,
.nav__item a.is-current {
    color: var(--color-cta);
    background: rgba(255, 255, 255, 0.04);
  }

  .nav__cta {
    margin-left: 0;
    margin-top: var(--spacing-lg);
  }

  .nav__cta a {
    display: flex;
    justify-content: center;
    padding: var(--spacing-md) var(--spacing-lg);
    font-size: var(--font-size-base);
    border-radius: var(--border-radius);
  }

  /* Mobile dropdown chevron */
  .nav__item--dropdown > a .nav__chevron {
    transform: rotate(0deg);
    transition: transform var(--transition-fast);
  }

  .nav__item--dropdown.is-dropdown-open > a .nav__chevron {
    transform: rotate(-180deg);
  }

  .nav__dropdown {
    position: static;
    transform: none;
    min-width: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    transition: max-height var(--transition-base);
  }

  .nav__item--dropdown.is-dropdown-open .nav__dropdown {
    max-height: 500px;
  }

  /* Don't show on hover for mobile — use JS toggle */
  .nav__item--dropdown:hover .nav__dropdown,
  .nav__item--dropdown:focus-within .nav__dropdown {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav__dropdown li a {
    padding: var(--spacing-sm) var(--spacing-lg);
    font-size: var(--font-size-base);
    color: rgba(255, 255, 255, 0.75);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  }

  .nav__dropdown li a:hover {
    color: var(--color-cta);
    background: rgba(255, 255, 255, 0.04);
  }

  /* Staggered entrance for mobile nav items */
  .nav__list.is-active .nav__item,
  .nav__list.is-active .nav__cta {
    animation: nav-slide-in 0.35s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .nav__list.is-active .nav__item:nth-child(1) { animation-delay: 0.04s; }
  .nav__list.is-active .nav__item:nth-child(2) { animation-delay: 0.08s; }
  .nav__list.is-active .nav__item:nth-child(3) { animation-delay: 0.12s; }
  .nav__list.is-active .nav__item:nth-child(4) { animation-delay: 0.16s; }
  .nav__list.is-active .nav__item:nth-child(5) { animation-delay: 0.2s; }
  .nav__list.is-active .nav__cta { animation-delay: 0.28s; }
}

@keyframes nav-slide-in {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Tablet: tighter spacing */
@media (min-width: 768px) and (max-width: 1023px) {
  .nav__item a {
    padding: var(--spacing-sm) 10px;
    font-size: var(--font-size-xs);
  }

  .nav__cta a {
    padding: 8px 16px;
    font-size: var(--font-size-xs);
  }
}

/* ============================================
   BREADCRUMBS
   ============================================ */
.breadcrumbs {
  padding: var(--spacing-md) 0;
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-xs);
}

.breadcrumbs li::after {
  content: "\203A";
  margin-left: var(--spacing-xs);
  opacity: 0.5;
}

.breadcrumbs li:last-child::after {
  content: none;
}

.breadcrumbs a {
  color: var(--color-text-light);
}

.breadcrumbs a:hover {
  color: var(--color-primary);
}


/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  background: linear-gradient(160deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--color-white);
  padding: var(--spacing-3xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero--home {
  padding: var(--spacing-4xl) 0;
  position: relative;
  overflow: hidden;
  padding-bottom: calc(var(--spacing-4xl) + 50px);
  background: url('../images/hero2.jpg') center/cover no-repeat;
}

/* Dramatic left-to-right gradient overlay with warm dark tones */
.hero--home::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,
      rgba(0, 0, 0, 0.88) 0%,
      rgba(0, 0, 0, 0.78) 30%,
      rgba(0, 0, 0, 0.35) 55%,
      rgba(0, 0, 0, 0.1) 75%,
      rgba(0, 0, 0, 0.02) 100%
    );
  pointer-events: none;
  z-index: 0;
}

/* Decorative accent line on left edge */
.hero--home::after {
  content: "";
  position: absolute;
  left: 0;
  top: 15%;
  bottom: 25%;
  width: 4px;
  background: linear-gradient(to bottom, transparent, var(--color-cta), var(--color-accent), transparent);
  z-index: 1;
  border-radius: 2px;
}

.hero__subtitle {
  font-size: var(--font-size-sm);
  opacity: 0.8;
  margin-bottom: var(--spacing-md);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--font-body);
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: var(--font-size-5xl);
  line-height: var(--line-height-tight);
  font-weight: 400;
  letter-spacing: -0.025em;
  margin-bottom: var(--spacing-lg);
  font-optical-sizing: auto;
}

.hero p {
  font-size: var(--font-size-lg);
  opacity: 0.85;
  max-width: 520px;
  margin: 0 auto var(--spacing-xl);
  line-height: var(--line-height-relaxed);
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  align-items: center;
  margin-bottom: var(--spacing-xl);
}

.hero__actions .btn {
  white-space: nowrap;
}

p.hero__phone {
  margin-top: 2.5rem;
  font-size: var(--font-size-lg);
  opacity: 0.7;
  animation: hero-enter 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.5s both;
}

.hero__phone a {
  color: var(--color-white);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.hero__phone a:hover {
  color: var(--color-cta);
}

/* Left-align hero on home — image visible on right */
.hero--home .hero__content {
  max-width: var(--container-max);
  margin: 0 auto;
  text-align: left;
}

.hero--home .hero__content h1,
.hero--home .hero__content p,
.hero--home .hero__content .hero__subtitle,
.hero--home .hero__content .hero__actions,
.hero--home .hero__content .hero__trust {
  max-width: 560px;
}

.hero--home .hero__subtitle {
  opacity: 0.7;
}

.hero--home p {
  margin-left: 0;
  margin-right: auto;
}

/* Mobile: full overlay, centred text */
@media (max-width: 767px) {
  .hero--home::before {
    background: rgba(0, 0, 0, 0.75);
  }

  .hero--home::after {
    display: none;
  }

  .hero--home .hero__content {
    max-width: none;
    text-align: center;
  }

  .hero--home p {
    margin-left: auto;
  }
}

@media (min-width: 640px) {
  .hero__actions {
    flex-direction: row;
    justify-content: center;
  }

  .hero--home .hero__actions {
    justify-content: flex-start;
  }
}

/* Floating decorative circles */
.hero__bg-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.hero__circle {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.06);
}

.hero__circle--1 {
  width: 400px;
  height: 400px;
  top: -120px;
  right: -80px;
  animation: float-drift 25s ease-in-out infinite;
}

.hero__circle--2 {
  width: 250px;
  height: 250px;
  bottom: 60px;
  left: -60px;
  border-color: rgba(6, 214, 160, 0.06);
  animation: float-drift 20s ease-in-out infinite reverse;
}

.hero__circle--3 {
  width: 150px;
  height: 150px;
  top: 35%;
  right: 20%;
  border-color: rgba(0, 180, 216, 0.06);
  animation: float-drift 22s ease-in-out infinite 4s;
}

@keyframes float-drift {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(12px, -18px) rotate(3deg); }
  50% { transform: translate(-8px, 10px) rotate(-2deg); }
  75% { transform: translate(6px, -6px) rotate(1deg); }
}

/* Hero content above shapes */
.hero__content {
  position: relative;
  z-index: 1;
}

/* Orchestrated hero entrance */
.hero__subtitle {
  animation: hero-enter 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero h1 {
  animation: hero-enter 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
}

.hero > .hero__content > p {
  animation: hero-enter 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.24s both;
}

.hero__actions {
  animation: hero-enter 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.36s both;
}

@keyframes hero-enter {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ============================================
   WAVE SECTION DIVIDERS
   ============================================ */
.wave-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  line-height: 0;
  color: var(--color-surface);
  z-index: 1;
}

.wave-divider svg {
  width: 100%;
  height: 45px;
}

@media (min-width: 768px) {
  .wave-divider svg {
    height: 70px;
  }
}

@media (min-width: 1024px) {
  .wave-divider svg {
    height: 90px;
  }
}


/* ============================================
   BUTTONS — Tactile, satisfying
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  padding: 14px var(--spacing-xl);
  border-radius: var(--border-radius-full);
  font-weight: 700;
  font-size: var(--font-size-base);
  font-family: var(--font-body);
  text-align: center;
  transition: all var(--transition-fast);
  min-height: 48px;
  min-width: 48px;
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  letter-spacing: 0.01em;
}

.btn--primary {
  background: var(--color-cta);
  color: var(--color-dark);
  overflow: hidden;
  box-shadow: 0 2px 0 rgba(5, 180, 130, 0.3), var(--shadow-sm);
}

.btn--primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.25) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
}

.btn--primary:hover {
  background: var(--color-cta-hover);
  color: var(--color-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-cta-glow);
}

.btn--primary:hover::after {
  transform: translateX(120%);
}

.btn--primary:active {
  transform: translateY(-1px);
  box-shadow: 0 1px 0 rgba(5, 180, 130, 0.3);
}

.btn--secondary {
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.btn--secondary:hover {
  background: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn--outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--dark {
  background: var(--color-dark);
  color: var(--color-white);
}

.btn--dark:hover {
  background: var(--color-dark-mid);
  color: var(--color-white);
}

.btn--lg {
  padding: 14px var(--spacing-xl);
  font-size: var(--font-size-base);
}

.btn--sm {
  padding: 8px var(--spacing-lg);
  font-size: var(--font-size-sm);
}

.btn--full {
  width: 100%;
}


/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: var(--spacing-3xl) 0;
  position: relative;
}

.section--light {
  background: var(--color-white);
}

.section--dark {
  background: var(--color-dark);
  color: var(--color-white);
}

.section--accent {
  background: var(--color-primary-light);
}

.section__header {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}

.section__header h2 {
  font-family: var(--font-heading);
  font-size: var(--font-size-3xl);
  color: var(--color-dark);
  margin-bottom: var(--spacing-sm);
  font-weight: 400;
  letter-spacing: -0.02em;
  font-optical-sizing: auto;
  position: relative;
  display: inline-block;
}

/* Accent bar under section headings */
.section__header h2::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-cta), var(--color-accent));
  border-radius: 2px;
  margin: var(--spacing-md) auto 0;
}

.section--dark .section__header h2 {
  color: var(--color-white);
}

.section--dark .section__header h2::after {
  background: linear-gradient(90deg, var(--color-cta), var(--color-cta));
}

.section__header p {
  font-size: var(--font-size-lg);
  color: var(--color-text-light);
  max-width: 560px;
  margin: 0 auto;
  line-height: var(--line-height-relaxed);
}

.section--dark .section__header p {
  color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 768px) {
  .section {
    padding: var(--spacing-4xl) 0;
  }
}


/* ============================================
   HOW IT WORKS — 3 Steps
   ============================================ */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-xl);
  max-width: 960px;
  margin: 0 auto;
}

.step {
  text-align: center;
  padding: var(--spacing-xl) var(--spacing-lg);
  position: relative;
  background: var(--color-white);
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-cta), #04c08c);
  color: var(--color-dark);
  font-size: var(--font-size-xl);
  font-weight: 800;
  margin-bottom: var(--spacing-md);
  font-family: var(--font-body);
  box-shadow: 0 4px 12px var(--color-cta-glow);
}

.step__icon {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-md);
  filter: grayscale(0);
}

.step h3 {
  font-family: var(--font-heading);
  font-size: var(--font-size-xl);
  color: var(--color-dark);
  margin-bottom: var(--spacing-sm);
  font-weight: 400;
  letter-spacing: -0.01em;
}

.step p {
  color: var(--color-text-light);
  font-size: var(--font-size-sm);
  line-height: var(--line-height-relaxed);
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
  }

  /* Connector line between steps */
  .step::after {
    content: "";
    position: absolute;
    right: -12px;
    top: 50px;
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-cta), var(--color-accent));
    border-radius: 1px;
  }

  .step:last-child::after {
    content: none;
  }
}


/* ============================================
   SERVICE CARDS
   ============================================ */
/* Services carousel wrapper */
.services-carousel {
  position: relative;
}

.services-carousel::before,
.services-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 200px;
  z-index: 2;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.services-carousel::before {
  left: 0;
  background: linear-gradient(to right, var(--color-light, #f8f9fa), transparent);
}

.services-carousel::after {
  right: 0;
  background: linear-gradient(to left, var(--color-light, #f8f9fa), transparent);
}

.services-carousel.is-at-start::before {
  opacity: 0;
}

.services-carousel.is-at-end::after {
  opacity: 0;
}

.services-carousel__track {
  display: flex;
  gap: var(--spacing-lg);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  padding: 16px 0 48px;

  /* Hide scrollbar */
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.services-carousel__track::-webkit-scrollbar {
  display: none;
}

.service-card {
  flex: 0 0 82%;
  scroll-snap-align: start;
  min-width: 0;
  background: var(--color-white);
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
  position: relative;
}

@media (min-width: 640px) {
  .service-card {
    flex: 0 0 calc(50% - var(--spacing-lg) / 2);
  }
}

@media (min-width: 1024px) {
  .service-card {
    flex: 0 0 calc(30% - var(--spacing-lg) * 2 / 3);
  }
}

.service-card:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-2xl);
}

.service-card--featured {
  border: 2px solid transparent;
  background-image: linear-gradient(var(--color-white), var(--color-white)), linear-gradient(135deg, var(--color-cta), var(--color-accent));
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

.service-card__badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-cta), #04c08c);
  color: var(--color-dark);
  padding: 5px var(--spacing-md);
  font-size: var(--font-size-xs);
  font-weight: 700;
  border-radius: var(--border-radius-full);
  margin-bottom: var(--spacing-md);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.service-card__img {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.service-card__img::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--color-white));
  pointer-events: none;
}

.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card:hover .service-card__img img {
  transform: scale(1.05);
}

.service-card__body {
  padding: var(--spacing-xl);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: var(--font-size-xl);
  color: var(--color-dark);
  margin-bottom: var(--spacing-sm);
  font-weight: 400;
  letter-spacing: -0.01em;
}

.service-card p {
  color: var(--color-text-light);
  margin-bottom: var(--spacing-lg);
  font-size: var(--font-size-sm);
  line-height: var(--line-height-relaxed);
}

/* Controls bar: CTA left, arrows right */
.services-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--spacing-lg);
  position: relative;
  z-index: 3;
}

.services-carousel__arrows {
  display: flex;
  gap: var(--spacing-sm);
}

.services-carousel__arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--color-primary);
  background: transparent;
  color: var(--color-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, color 0.3s ease, opacity 0.3s ease;
}

.services-carousel__arrow:hover:not(:disabled) {
  background: var(--color-primary);
  color: var(--color-white);
}

.services-carousel__arrow:disabled {
  opacity: 0.3;
  cursor: default;
}


/* ============================================
   TESTIMONIALS — Carousel (Apple-style)
   ============================================ */

/* Carousel container */
.carousel {
  position: relative;
}

.carousel::before,
.carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 200px;
  z-index: 2;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.carousel::before {
  left: 0;
  background: linear-gradient(to right, var(--color-light, #f8f9fa), transparent);
}

.carousel::after {
  right: 0;
  background: linear-gradient(to left, var(--color-light, #f8f9fa), transparent);
}

.carousel.is-at-start::before {
  opacity: 0;
}

.carousel.is-at-end::after {
  opacity: 0;
}

.carousel__track {
  display: flex;
  gap: var(--spacing-lg);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  padding: var(--spacing-sm) var(--spacing-xs);
  margin: 0 calc(-1 * var(--spacing-xs));

  /* Hide scrollbar across browsers */
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.carousel__track::-webkit-scrollbar {
  display: none;
}

/* Each slide */
.carousel__slide {
  flex: 0 0 calc(85% - var(--spacing-lg));
  scroll-snap-align: center;
  min-width: 0;
}

@media (min-width: 640px) {
  .carousel__slide {
    flex: 0 0 calc(50% - var(--spacing-lg));
  }
}

@media (min-width: 1024px) {
  .carousel__slide {
    flex: 0 0 calc(33.333% - var(--spacing-lg));
  }
}

/* Dot indicators */
.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: var(--spacing-xl);
  position: relative;
  z-index: 3;
}

.carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: var(--color-primary);
  opacity: 0.2;
  cursor: pointer;
  transition: opacity 0.4s ease, transform 0.4s ease, width 0.4s ease;
}

.carousel__dot.is-active {
  opacity: 1;
  border-radius: 4px;
  width: 24px;
}

/* Testimonial card (inside carousel) */
.testimonial {
  background: var(--color-white);
  border-radius: var(--border-radius-xl);
  padding: var(--spacing-xl) var(--spacing-xl) var(--spacing-xl) calc(var(--spacing-xl) + 4px);
  box-shadow: var(--shadow-sm);
  position: relative;
  border-left: 4px solid var(--color-accent);
  transition: transform 0.4s ease, box-shadow 0.4s ease, opacity 0.4s ease;
}

/* Alternating accent colors */
.testimonial:nth-child(3n+1) { border-left-color: var(--color-accent); }
.testimonial:nth-child(3n+2) { border-left-color: var(--color-cta); }
.testimonial:nth-child(3n+3) { border-left-color: var(--color-primary); }

/* Large decorative quote mark */
.testimonial::before {
  content: "\201C";
  font-size: 5rem;
  line-height: 1;
  font-family: var(--font-heading);
  position: absolute;
  top: var(--spacing-sm);
  left: var(--spacing-lg);
  opacity: 0.07;
  color: var(--color-dark);
  pointer-events: none;
}

.testimonial__stars {
  color: var(--color-star);
  font-size: var(--font-size-base);
  margin-bottom: var(--spacing-sm);
  letter-spacing: 3px;
}

.testimonial__text {
  color: var(--color-text);
  margin-bottom: var(--spacing-lg);
  font-style: italic;
  position: relative;
  z-index: 1;
  line-height: var(--line-height-relaxed);
  font-size: var(--font-size-sm);
}

.testimonial__author {
  font-family: var(--font-heading);
  font-weight: 400;
  color: var(--color-dark);
  font-size: var(--font-size-sm);
  letter-spacing: -0.01em;
}


/* ============================================
   LOCATIONS
   ============================================ */
.locations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-xl);
}

.location-card {
  background: var(--color-white);
  border-radius: var(--border-radius-xl);
  padding: var(--spacing-2xl) var(--spacing-xl) var(--spacing-xl);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  position: relative;
  overflow: hidden;
}

/* Subtle top accent bar */
.location-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
}

.location-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.location-card h3 {
  font-family: var(--font-heading);
  font-size: var(--font-size-xl);
  color: var(--color-primary);
  margin-bottom: var(--spacing-md);
  font-weight: 400;
  letter-spacing: -0.01em;
}

.location-card__phone {
  font-size: var(--font-size-lg);
  font-weight: 700;
}

.location-card__phone a {
  color: var(--color-dark);
}

.location-card__phone a:hover {
  color: var(--color-primary);
}

.location-card__address {
  color: var(--color-text-light);
  margin-bottom: var(--spacing-sm);
}

@media (min-width: 768px) {
  .locations-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-primary) 100%);
  color: var(--color-white);
  padding: var(--spacing-2xl);
  border-radius: var(--border-radius-xl);
  text-align: center;
}

.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: var(--font-size-2xl);
  margin-bottom: var(--spacing-sm);
  font-weight: 400;
}

.cta-banner p {
  margin-bottom: var(--spacing-lg);
  opacity: 0.9;
  font-size: var(--font-size-lg);
}


/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-list {
  max-width: var(--container-narrow);
  margin: 0 auto;
}

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

.faq-item:first-child {
  border-top: 1px solid var(--color-border);
}

.faq-item__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: var(--spacing-lg) 0;
  font-size: var(--font-size-base);
  font-weight: 600;
  color: var(--color-dark);
  text-align: left;
  cursor: pointer;
  min-height: 48px;
  gap: var(--spacing-md);
  transition: color var(--transition-fast);
}

.faq-item__question:hover {
  color: var(--color-primary);
}

.faq-item__question::after {
  content: "+";
  font-size: var(--font-size-xl);
  font-weight: 300;
  color: var(--color-accent);
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-primary-light);
  transition: transform var(--transition-base), background var(--transition-base);
}

.faq-item.is-open .faq-item__question::after {
  content: "+";
  transform: rotate(45deg);
  background: var(--color-accent-light);
  color: var(--color-primary);
}

.faq-item__answer {
  display: block;
  max-height: 0;
  overflow: hidden;
  padding-bottom: 0;
  color: var(--color-text-light);
  line-height: var(--line-height-relaxed);
  transition: max-height 0.45s cubic-bezier(0.22, 1, 0.36, 1),
              padding-bottom 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item.is-open .faq-item__answer {
  max-height: 300px;
  padding-bottom: var(--spacing-lg);
}

/* ============================================
   FAQ FILTER BAR
   ============================================ */
.faq-filter-bar {
  background: var(--color-white);
  padding: var(--spacing-lg) 0 var(--spacing-md);
}

.faq-filter__search {
  margin-bottom: var(--spacing-md);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.faq-filter__input {
  width: 100%;
  padding: var(--spacing-sm) var(--spacing-md);
  border: 2px solid var(--color-border);
  border-radius: var(--border-radius);
  font-size: var(--font-size-sm);
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-white);
  transition: border-color var(--transition-fast);
}

.faq-filter__input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0, 88, 163, 0.1);
}

.faq-filter__input::placeholder {
  color: var(--color-text-light);
}

.faq-filter__pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-xs);
  justify-content: center;
  max-width: var(--container-narrow);
  margin: 0 auto;
}

.faq-filter__btn {
  padding: 0.4rem var(--spacing-md);
  border: 2px solid var(--color-primary);
  border-radius: 999px;
  background: transparent;
  color: var(--color-primary);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast);
  white-space: nowrap;
}

.faq-filter__btn:hover {
  background: var(--color-primary-light);
}

.faq-filter__btn.is-active {
  background: var(--color-primary);
  color: var(--color-white);
}

.faq-category[hidden] {
  display: none;
}

.faq-item[hidden] {
  display: none;
}

.faq-no-results {
  text-align: center;
  padding: var(--spacing-xxl) 0;
  color: var(--color-text-light);
  font-size: var(--font-size-lg);
}

.faq-no-results[hidden] {
  display: none;
}

.faq-count {
  text-align: center;
  color: var(--color-text-light);
  font-size: var(--font-size-sm);
  margin-top: var(--spacing-sm);
  max-width: var(--container-narrow);
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 640px) {
  .faq-filter__pills {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    justify-content: flex-start;
    padding-bottom: var(--spacing-xs);
  }
  .faq-filter__pills::-webkit-scrollbar {
    display: none;
  }
}


/* ============================================
   FORMS
   ============================================ */
.form-group {
  margin-bottom: var(--spacing-lg);
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
  color: var(--color-dark);
  font-size: var(--font-size-sm);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: var(--spacing-md);
  border: 2px solid var(--color-border);
  border-radius: var(--border-radius);
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  color: var(--color-text);
  background: var(--color-white);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  min-height: 48px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(0, 180, 216, 0.1);
  outline: none;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}


/* ============================================
   COVERAGE MAP
   ============================================ */
.coverage-map {
  text-align: center;
}

#coverage-leaflet-map {
  width: 100%;
  height: 380px;
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-lg);
  margin: 0 auto;
  max-width: 800px;
  z-index: 1;
  border: 3px solid var(--color-white);
}

@media (min-width: 768px) {
  #coverage-leaflet-map {
    height: 460px;
  }
}

@media (min-width: 1024px) {
  #coverage-leaflet-map {
    height: 500px;
  }
}

/* Custom map markers */
.map-marker-shop {
  background: var(--color-primary);
  border: 3px solid var(--color-white);
  border-radius: 50%;
  width: 18px;
  height: 18px;
  box-shadow: 0 2px 8px rgba(0, 88, 163, 0.4);
}

.map-marker-shop--hq {
  background: var(--color-cta);
  border-color: var(--color-white);
  width: 22px;
  height: 22px;
  box-shadow: 0 2px 10px var(--color-cta-glow);
}

.map-popup .leaflet-popup-content-wrapper {
  border-radius: var(--border-radius);
  font-family: var(--font-body);
  box-shadow: var(--shadow-lg);
}

.map-popup .leaflet-popup-content {
  margin: 12px 16px;
  font-size: 14px;
  line-height: 1.5;
}

.map-popup strong {
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 15px;
}

.coverage-map__towns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-lg);
}

.coverage-map__towns span {
  background: rgba(255, 255, 255, 0.7);
  color: var(--color-primary);
  padding: 6px var(--spacing-md);
  border-radius: var(--border-radius-full);
  font-weight: 600;
  font-size: var(--font-size-sm);
  border: 1px solid rgba(0, 88, 163, 0.12);
  backdrop-filter: blur(4px);
}


/* ============================================
   SERVICES LIST (pricing table)
   ============================================ */
.service-list {
  margin-bottom: var(--spacing-2xl);
}

.service-list h3 {
  font-family: var(--font-heading);
  font-size: var(--font-size-xl);
  color: var(--color-primary);
  margin-bottom: var(--spacing-md);
  padding-bottom: var(--spacing-sm);
  border-bottom: 2px solid var(--color-accent);
  font-weight: 400;
}

.service-list__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-md) 0;
  border-bottom: 1px solid var(--color-border-light);
}

.service-list__item:last-child {
  border-bottom: none;
}

.service-list__name {
  font-weight: 500;
}

.service-list__price {
  font-weight: 700;
  color: var(--color-primary);
  white-space: nowrap;
}


/* ============================================
   ABOUT / CONTENT SECTIONS
   ============================================ */
.content-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-2xl);
  align-items: center;
}

.content-section--reverse {
  direction: ltr;
}

.content-section__text h2 {
  font-family: var(--font-heading);
  font-size: var(--font-size-2xl);
  color: var(--color-dark);
  margin-bottom: var(--spacing-md);
  font-weight: 400;
  letter-spacing: -0.02em;
}

.content-section__text p {
  color: var(--color-text-light);
  margin-bottom: var(--spacing-md);
  line-height: var(--line-height-relaxed);
}

.content-section__image {
  position: relative;
}

.content-section__image img {
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-lg);
}

/* Decorative accent behind image */
.content-section__image::before {
  content: "";
  position: absolute;
  top: 12px;
  right: -12px;
  bottom: -12px;
  left: 12px;
  background: linear-gradient(135deg, var(--color-cta-glow), rgba(0, 180, 216, 0.12));
  border-radius: var(--border-radius-xl);
  z-index: -1;
}

@media (min-width: 768px) {
  .content-section {
    grid-template-columns: 1fr 1fr;
  }

  .content-section--reverse .content-section__image {
    order: -1;
  }
}


/* ============================================
   TRUST / PAYMENT BAR
   ============================================ */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-xl);
  padding: var(--spacing-xl) 0;
}

.trust-bar img {
  height: 40px;
  width: auto;
  opacity: 0.6;
  transition: opacity var(--transition-fast);
  filter: grayscale(0.3);
}

.trust-bar img:hover {
  opacity: 1;
  filter: grayscale(0);
}




/* ============================================
   LEAD TIMES
   ============================================ */
.lead-times {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  max-width: 600px;
  margin: 0 auto;
}

.lead-time {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  padding: var(--spacing-lg);
  background: var(--color-white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
}

.lead-time__icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.lead-time strong {
  display: block;
  font-size: var(--font-size-lg);
  color: var(--color-dark);
}

.lead-time span {
  color: var(--color-text-light);
}

@media (min-width: 640px) {
  .lead-times {
    grid-template-columns: repeat(2, 1fr);
    max-width: none;
  }
}


/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: var(--spacing-3xl) 0 var(--spacing-xl);
  position: relative;
}

/* Subtle top edge */
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(6, 214, 160, 0.3), rgba(0, 180, 216, 0.3), transparent);
}

.footer a {
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--transition-fast);
}

.footer a:hover {
  color: var(--color-cta);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-2xl);
  margin-bottom: var(--spacing-2xl);
}

.footer__col h4 {
  font-family: var(--font-heading);
  color: var(--color-white);
  font-size: var(--font-size-lg);
  margin-bottom: var(--spacing-lg);
  font-weight: 400;
  letter-spacing: -0.01em;
}

.footer__col ul li {
  margin-bottom: var(--spacing-sm);
  font-size: var(--font-size-sm);
}

.footer__col p {
  margin-bottom: var(--spacing-sm);
  font-size: var(--font-size-sm);
}

.footer__logo {
  display: block;
  margin-bottom: var(--spacing-md);
}

.footer__cd-callout {
  background: rgba(6, 214, 160, 0.1);
  border: 1px solid rgba(6, 214, 160, 0.2);
  border-radius: var(--border-radius);
  padding: var(--spacing-md);
  margin-top: var(--spacing-md);
  font-size: var(--font-size-sm);
}

.footer__cd-callout strong {
  color: var(--color-cta);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: var(--spacing-xl);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  align-items: center;
  text-align: center;
  font-size: var(--font-size-sm);
  opacity: 0.7;
}

.footer__bottom-links {
  display: flex;
  gap: var(--spacing-lg);
  flex-wrap: wrap;
  justify-content: center;
}

@media (min-width: 640px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}


/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-primary { color: var(--color-primary); }
.text-accent { color: var(--color-accent); }
.text-cta { color: var(--color-cta); }
.text-light { color: var(--color-text-light); }
.text-white { color: var(--color-white); }

.fw-bold { font-weight: 700; }
.fw-extrabold { font-weight: 800; }

.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }
.mt-xl { margin-top: var(--spacing-xl); }
.mt-2xl { margin-top: var(--spacing-2xl); }
.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }
.mb-xl { margin-bottom: var(--spacing-xl); }
.mb-2xl { margin-bottom: var(--spacing-2xl); }

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


/* ============================================
   404 PAGE
   ============================================ */
.error-page {
  text-align: center;
  padding: var(--spacing-4xl) 0;
}

.error-page h1 {
  font-family: var(--font-heading);
  font-size: 6rem;
  color: var(--color-accent);
  font-weight: 300;
  line-height: 1;
  margin-bottom: var(--spacing-md);
}

.error-page h2 {
  font-family: var(--font-heading);
  font-size: var(--font-size-2xl);
  color: var(--color-dark);
  margin-bottom: var(--spacing-md);
  font-weight: 400;
}

.error-page p {
  color: var(--color-text-light);
  margin-bottom: var(--spacing-xl);
  font-size: var(--font-size-lg);
}


/* ============================================
   PAGE CONTENT (legal, sitemap)
   ============================================ */
.page-content {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: var(--spacing-2xl) var(--spacing-md);
}

.page-content h1 {
  font-family: var(--font-heading);
  font-size: var(--font-size-3xl);
  color: var(--color-dark);
  margin-bottom: var(--spacing-xl);
  font-weight: 400;
}

.page-content h2 {
  font-family: var(--font-heading);
  font-size: var(--font-size-xl);
  color: var(--color-dark);
  margin-top: var(--spacing-2xl);
  margin-bottom: var(--spacing-md);
  font-weight: 400;
}

.page-content h3 {
  font-size: var(--font-size-lg);
  color: var(--color-dark);
  margin-top: var(--spacing-xl);
  margin-bottom: var(--spacing-sm);
  font-weight: 600;
}

.page-content p {
  margin-bottom: var(--spacing-md);
  line-height: var(--line-height-relaxed);
}

.page-content ul,
.page-content ol {
  margin-bottom: var(--spacing-md);
  padding-left: var(--spacing-xl);
}

.page-content ul {
  list-style: disc;
}

.page-content ol {
  list-style: decimal;
}

.page-content li {
  margin-bottom: var(--spacing-sm);
}

.page-content a {
  text-decoration: underline;
  text-underline-offset: 2px;
}


/* ============================================
   HTML SITEMAP
   ============================================ */
.sitemap-list h3 {
  font-family: var(--font-heading);
  font-size: var(--font-size-lg);
  color: var(--color-primary);
  margin-top: var(--spacing-xl);
  margin-bottom: var(--spacing-md);
  font-weight: 400;
}

.sitemap-list ul {
  padding-left: var(--spacing-lg);
  list-style: disc;
}

.sitemap-list li {
  margin-bottom: var(--spacing-sm);
}


/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children */
.reveal.is-visible .step,
.reveal.is-visible .service-card,
.reveal.is-visible .location-card {
  animation: stagger-up 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.reveal.is-visible .step:nth-child(1),
.reveal.is-visible .service-card:nth-child(1),
.reveal.is-visible .location-card:nth-child(1) { animation-delay: 0s; }

.reveal.is-visible .step:nth-child(2),
.reveal.is-visible .service-card:nth-child(2),
.reveal.is-visible .location-card:nth-child(2) { animation-delay: 0.1s; }

.reveal.is-visible .step:nth-child(3),
.reveal.is-visible .service-card:nth-child(3),
.reveal.is-visible .location-card:nth-child(3) { animation-delay: 0.2s; }

@keyframes stagger-up {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ============================================
   PREFERS REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .reveal.is-visible .step,
  .reveal.is-visible .service-card,
  .reveal.is-visible .location-card {
    animation: none;
  }

  .services-carousel__track,
  .carousel__track {
    scroll-behavior: auto;
  }

  .hero__subtitle,
  .hero h1,
  .hero > .hero__content > p,
  .hero__actions {
    animation: none;
  }

  .hero__circle {
    animation: none;
  }

  .faq-item__answer {
    transition: none;
  }

  .btn::after,
  .nav__cta a::after {
    transition: none;
  }
}


/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  body::after {
    display: none;
  }

  .top-bar,
  .header,
  .footer,
  .nav__toggle,
  .btn,
  .cta-banner,
  .wave-divider,
  .hero__bg-shapes,
  .promo-banner,
  .sticky-cta {
    display: none !important;
  }

  body {
    font-size: 12pt;
    color: #000;
    background: #fff;
  }

  a {
    color: #000;
    text-decoration: underline;
  }

  .section {
    padding: 1rem 0;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ============================================
   CONVERSION COMPONENTS
   ============================================ */

/* --- Promo Banner --- */
.promo-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-cta);
  color: var(--color-dark);
  text-align: center;
  padding: var(--spacing-sm) var(--spacing-lg);
  font-size: var(--font-size-sm);
  font-family: var(--font-body);
  font-weight: 500;
  line-height: 1;
}

@media (min-width: 640px) {
  .promo-banner {
    font-size: var(--font-size-base);
  }
}

/* --- Hero Trust Signals --- */
.hero__trust {
  display: flex;
  flex-wrap: nowrap;
  gap: var(--spacing-md) var(--spacing-xl);
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: var(--font-size-sm);
  opacity: 0.9;
}

.hero__trust li {
  white-space: nowrap;
}

.hero__trust li {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
}

@media (min-width: 640px) {
  .hero__trust {
    font-size: var(--font-size-base);
  }
}

/* --- Why Choose Us Grid --- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-xl);
}

.why-card {
  text-align: center;
  padding: var(--spacing-xl);
  background: var(--color-white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.why-card__icon {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-md);
}

.why-card h3 {
  font-family: var(--font-heading);
  font-size: var(--font-size-lg);
  color: var(--color-dark);
  margin-bottom: var(--spacing-sm);
  font-weight: 700;
}

.why-card p {
  color: var(--color-text-light);
  font-size: var(--font-size-sm);
}

@media (min-width: 640px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* --- Reviews Aggregate Score --- */
.reviews-aggregate {
  margin-bottom: var(--spacing-md);
}

.reviews-aggregate__stars {
  color: var(--color-star);
  font-size: var(--font-size-2xl);
  letter-spacing: 2px;
}

.reviews-aggregate__score {
  display: block;
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--color-dark);
  margin-top: var(--spacing-xs);
}

/* --- Testimonial Source Label --- */
.testimonial__source {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  margin-top: var(--spacing-xs);
}

/* --- Sticky Mobile CTA --- */
.sticky-cta {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--color-white);
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.15);
  padding: var(--spacing-sm) var(--spacing-md);
  gap: var(--spacing-sm);
  align-items: center;
}

.sticky-cta__btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-cta);
  color: var(--color-dark);
  padding: var(--spacing-md) var(--spacing-lg);
  border-radius: var(--border-radius-full);
  font-weight: 700;
  font-size: var(--font-size-base);
  min-height: 48px;
  text-align: center;
  transition: background var(--transition-fast);
}

.sticky-cta__btn:hover {
  background: var(--color-cta-hover);
  color: var(--color-dark);
}

.sticky-cta__phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: var(--color-white);
  padding: var(--spacing-md) var(--spacing-lg);
  border-radius: var(--border-radius-full);
  font-weight: 700;
  font-size: var(--font-size-base);
  min-height: 48px;
  white-space: nowrap;
  transition: background var(--transition-fast);
}

.sticky-cta__phone:hover {
  background: var(--color-primary-dark);
  color: var(--color-white);
}

/* Pad footer so content isn't hidden behind sticky CTA on mobile */
@media (max-width: 1023px) {
  .footer {
    padding-bottom: 80px;
  }
}

/* Hide sticky CTA on desktop */
@media (min-width: 1024px) {
  .sticky-cta {
    display: none;
  }
}


/* ============================================
   BLOG
   ============================================ */

/* Blog Grid — listing page */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-xl);
}

@media (min-width: 640px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Blog Card */
.blog-card {
  background: var(--color-white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.blog-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.blog-card:hover .blog-card__image img {
  transform: scale(1.05);
}

.blog-card__category {
  position: absolute;
  top: var(--spacing-md);
  left: var(--spacing-md);
  background: var(--color-primary);
  color: var(--color-white);
  font-size: var(--font-size-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25em 0.75em;
  border-radius: var(--border-radius-full);
}

.blog-card__body {
  padding: var(--spacing-lg);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
  margin-bottom: var(--spacing-sm);
}

.blog-card__title {
  font-family: var(--font-heading);
  font-size: var(--font-size-xl);
  line-height: var(--line-height-tight);
  color: var(--color-text);
  margin-bottom: var(--spacing-sm);
}

.blog-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.blog-card__title a:hover {
  color: var(--color-primary);
}

.blog-card__excerpt {
  font-size: var(--font-size-base);
  color: var(--color-text-light);
  line-height: var(--line-height-base);
  flex: 1;
  margin-bottom: var(--spacing-md);
}

.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  font-weight: 600;
  font-size: var(--font-size-sm);
  color: var(--color-primary);
  transition: color var(--transition-fast), gap var(--transition-fast);
}

.blog-card__link:hover {
  color: var(--color-accent);
  gap: 0.6em;
}

/* Featured blog card — spans full width on listing page */
.blog-card--featured {
  grid-column: 1 / -1;
}

@media (min-width: 768px) {
  .blog-card--featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .blog-card--featured .blog-card__image {
    aspect-ratio: auto;
    min-height: 320px;
  }

  .blog-card--featured .blog-card__body {
    padding: var(--spacing-2xl);
    justify-content: center;
  }

  .blog-card--featured .blog-card__title {
    font-size: var(--font-size-2xl);
  }
}

/* Blog Post — article page */
.blog-post {
  max-width: 780px;
  margin: 0 auto;
}

.blog-post__header {
  margin-bottom: var(--spacing-2xl);
}

.blog-post__category {
  display: inline-block;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: var(--font-size-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25em 0.75em;
  border-radius: var(--border-radius-full);
  margin-bottom: var(--spacing-md);
}

.blog-post__title {
  font-family: var(--font-heading);
  font-size: var(--font-size-3xl);
  line-height: var(--line-height-tight);
  color: var(--color-text);
  margin-bottom: var(--spacing-md);
}

.blog-post__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--spacing-md);
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
  padding-bottom: var(--spacing-lg);
  border-bottom: 1px solid var(--color-border);
}

.blog-post__hero-image {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  margin-bottom: var(--spacing-2xl);
}

.blog-post__hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Blog article prose */
.blog-post__content {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
  color: var(--color-text);
}

.blog-post__content h2 {
  font-family: var(--font-heading);
  font-size: var(--font-size-2xl);
  margin-top: var(--spacing-2xl);
  margin-bottom: var(--spacing-md);
  color: var(--color-text);
}

.blog-post__content h3 {
  font-family: var(--font-heading);
  font-size: var(--font-size-xl);
  margin-top: var(--spacing-xl);
  margin-bottom: var(--spacing-sm);
  color: var(--color-text);
}

.blog-post__content p {
  margin-bottom: var(--spacing-lg);
}

.blog-post__content ul,
.blog-post__content ol {
  margin-bottom: var(--spacing-lg);
  padding-left: var(--spacing-xl);
}

.blog-post__content li {
  margin-bottom: var(--spacing-sm);
}

.blog-post__content img {
  border-radius: var(--border-radius);
  margin: var(--spacing-xl) 0;
}

.blog-post__content blockquote {
  border-left: 4px solid var(--color-cta);
  padding: var(--spacing-md) var(--spacing-lg);
  margin: var(--spacing-xl) 0;
  background: var(--color-surface-warm);
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  font-style: italic;
  color: var(--color-text-light);
}

/* Blog post sidebar CTA */
.blog-cta-box {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-2xl);
  color: var(--color-white);
  text-align: center;
  margin: var(--spacing-2xl) 0;
}

.blog-cta-box h3 {
  font-family: var(--font-heading);
  font-size: var(--font-size-xl);
  color: var(--color-white);
  margin-bottom: var(--spacing-sm);
}

.blog-cta-box p {
  opacity: 0.9;
  margin-bottom: var(--spacing-lg);
}

/* Blog author box */
.blog-author {
  display: flex;
  gap: var(--spacing-lg);
  align-items: center;
  padding: var(--spacing-xl);
  background: var(--color-surface-warm);
  border-radius: var(--border-radius-lg);
  margin-top: var(--spacing-2xl);
}

.blog-author__avatar {
  width: 64px;
  height: 64px;
  border-radius: var(--border-radius-full);
  background: var(--color-primary);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: var(--font-size-xl);
  font-weight: 700;
  flex-shrink: 0;
}

.blog-author__info h4 {
  font-family: var(--font-heading);
  margin-bottom: 0.25em;
}

.blog-author__info p {
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
}

/* Blog tags */
.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-xl);
  padding-top: var(--spacing-xl);
  border-top: 1px solid var(--color-border);
}

.blog-tags__label {
  font-weight: 700;
  font-size: var(--font-size-sm);
  color: var(--color-text);
}

.blog-tag {
  display: inline-block;
  font-size: var(--font-size-xs);
  font-weight: 600;
  padding: 0.3em 0.8em;
  border-radius: var(--border-radius-full);
  background: var(--color-primary-light);
  color: var(--color-primary);
  transition: background var(--transition-fast), color var(--transition-fast);
}

.blog-tag:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

/* ============================================
   FINAL CTA — Split layout with lady-on-mobile
   Image bottom sits flush on the footer divider
   ============================================ */

.final-cta {
  overflow: visible;
  padding-bottom: 0;
}

.final-cta__grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-2xl);
}

.final-cta__content {
  text-align: center;
}

.final-cta__content h2 {
  font-family: var(--font-heading);
  font-size: var(--font-size-3xl);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: var(--line-height-tight);
  color: var(--color-white);
  margin-bottom: var(--spacing-lg);
}

.final-cta__subtitle {
  font-size: var(--font-size-lg);
  color: rgba(255, 255, 255, 0.8);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--spacing-xl);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta__features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--spacing-2xl);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.final-cta__features li {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  font-size: var(--font-size-lg);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
  justify-content: center;
}

.final-cta__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: var(--border-radius-full);
  background: var(--color-cta);
  color: var(--color-dark);
  font-weight: 700;
  font-size: 0.875rem;
}

.final-cta__image {
  max-width: 280px;
  margin: 0 auto;
  align-self: flex-end;
}

.final-cta__image img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

@media (min-width: 768px) {
  .final-cta {
    padding-bottom: 0;
  }

  .final-cta__grid {
    flex-direction: row;
    align-items: flex-end;
    gap: var(--spacing-3xl);
  }

  .final-cta__content {
    flex: 1;
    text-align: left;
    padding-bottom: var(--spacing-3xl);
  }

  .final-cta__features li {
    justify-content: flex-start;
  }

  .final-cta__subtitle {
    margin-left: 0;
    margin-right: 0;
  }

  .final-cta__image {
    flex: 0 0 auto;
    max-width: 320px;
    margin-bottom: -1px;
  }
}

@media (min-width: 1024px) {
  .final-cta__content h2 {
    font-size: var(--font-size-4xl);
  }

  .final-cta__image {
    max-width: 380px;
  }
}


/* ============================================
   CTA BANNER STRIP — Image + text side-by-side
   Warm salmon background, washing machine imagery
   ============================================ */

.cta-strip {
  background: #e5a192;
  overflow: visible;
  padding: 0;
  position: relative;
}

.cta-strip__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.cta-strip__image {
  width: 100%;
  max-width: 480px;
  flex-shrink: 0;
  margin-top: -4rem;
}

.cta-strip__image img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.15));
}

.cta-strip__content {
  padding: var(--spacing-lg) var(--spacing-xl) var(--spacing-xl);
  text-align: center;
}

.cta-strip__content h2 {
  font-family: var(--font-heading);
  font-size: var(--font-size-3xl);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: var(--line-height-tight);
  color: var(--color-dark);
  margin-bottom: var(--spacing-md);
}

.cta-strip__subtitle {
  font-family: var(--font-body);
  font-size: var(--font-size-lg);
  color: var(--color-text);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--spacing-xl);
}

.btn--white {
  display: inline-block;
  background: var(--color-white);
  color: var(--color-dark);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--font-size-base);
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: var(--shadow-md);
}

.btn--white:hover {
  background: #f1f5f9;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
  .cta-strip__inner {
    flex-direction: row;
    align-items: center;
  }

  .cta-strip__image {
    width: 45%;
    max-width: none;
    margin-top: -5rem;
  }

  .cta-strip__content {
    flex: 1;
    padding: var(--spacing-2xl) var(--spacing-2xl) var(--spacing-2xl);
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .cta-strip__content h2 {
    font-size: var(--font-size-4xl);
  }

  .cta-strip__image {
    margin-top: -6rem;
  }

  .cta-strip__content {
    padding: var(--spacing-2xl) var(--spacing-3xl);
  }
}


/* ============================================
   NEWSLETTER / EMAIL SIGNUP
   ============================================ */
.newsletter {
  background: var(--color-primary);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

/* Bubble container — fills the section, no pointer events */
.newsletter__bubbles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

/* Individual bubbles — realistic soap bubble style */
.newsletter__bubble {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background:
    /* Specular highlight — bright gloss top-left */
    radial-gradient(circle at 30% 25%, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0.25) 5%, transparent 35%),
    /* Depth ring — white only */
    radial-gradient(circle at 50% 50%, transparent 30%, rgba(255,255,255,0.04) 45%, rgba(255,255,255,0.06) 55%, transparent 70%),
    /* Body — pure white translucency */
    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;
}

/* Specular highlight spot */
.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);
}

/* Small secondary reflection bottom-right */
.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);
}


/* Each bubble: unique size, position, opacity and float speed */
.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; }

/* Small bubble layer — simpler, no pseudo-elements */
.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;
}

/* 18 tiny bubbles scattered across the section */
.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; }
.newsletter__bubble:nth-child(19) { width: 8px;  height: 8px;  top: 55%;  left: 72%;  animation-duration: 15s; animation-delay: -2s;  opacity: 0.9; }
.newsletter__bubble:nth-child(20) { width: 14px; height: 14px; top: 30%;  right: 8%;  animation-duration: 17s; animation-delay: -3s;  opacity: 0.75; }
.newsletter__bubble:nth-child(21) { width: 16px; height: 16px; top: 85%;  left: 42%;  animation-duration: 21s; animation-delay: -6s;  opacity: 0.7; }
.newsletter__bubble:nth-child(22) { width: 11px; height: 11px; top: 18%;  left: 82%;  animation-duration: 16s; animation-delay: -1s;  opacity: 0.8; }
.newsletter__bubble:nth-child(23) { width: 19px; height: 19px; top: 50%;  left: 5%;   animation-duration: 23s; animation-delay: -4s;  opacity: 0.65; }
.newsletter__bubble:nth-child(24) { width: 9px;  height: 9px;  top: 38%;  left: 28%;  animation-duration: 15s; animation-delay: -2s;  opacity: 0.85; }
.newsletter__bubble:nth-child(25) { width: 13px; height: 13px; top: 70%;  right: 38%; animation-duration: 18s; animation-delay: -5s;  opacity: 0.75; }
.newsletter__bubble:nth-child(26) { width: 7px;  height: 7px;  top: 25%;  left: 68%;  animation-duration: 14s; animation-delay: -1s;  opacity: 0.9; }
.newsletter__bubble:nth-child(27) { width: 17px; height: 17px; top: 60%;  left: 88%;  animation-duration: 20s; animation-delay: -3s;  opacity: 0.65; }
.newsletter__bubble:nth-child(28) { width: 10px; height: 10px; top: 5%;   left: 48%;  animation-duration: 16s; animation-delay: -2s;  opacity: 0.8; }
.newsletter__bubble:nth-child(29) { width: 21px; height: 21px; top: 42%;  right: 5%;  animation-duration: 22s; animation-delay: -6s;  opacity: 0.6; }
.newsletter__bubble:nth-child(30) { width: 6px;  height: 6px;  top: 80%;  left: 62%;  animation-duration: 14s; animation-delay: -1s;  opacity: 0.9; }

@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);
  }
}

@media (prefers-reduced-motion: reduce) {
  .newsletter__bubble {
    animation: none;
  }
}

.newsletter__inner {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.newsletter__content h2 {
  font-family: var(--font-heading);
  font-size: var(--font-size-3xl);
  font-weight: 700;
  line-height: var(--line-height-tight);
  margin-bottom: var(--spacing-md);
  color: var(--color-white);
}

.newsletter__content p {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-base);
  color: rgba(255, 255, 255, 0.9);
  max-width: 560px;
  margin: 0 auto;
}

.newsletter__form {
  width: 100%;
  max-width: 520px;
}

.newsletter__field {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.newsletter__input {
  width: 100%;
  padding: var(--spacing-md) var(--spacing-lg);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--border-radius);
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  transition: border-color var(--transition-fast), background var(--transition-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(--font-size-base);
  font-weight: 700;
  padding: var(--spacing-md) var(--spacing-xl);
}

.newsletter__note {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.6);
  margin-top: var(--spacing-sm);
}

.newsletter__note a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.newsletter__note a:hover {
  color: var(--color-white);
}

.newsletter__success {
  font-size: var(--font-size-lg);
  color: var(--color-white);
  padding: var(--spacing-lg) 0;
}

.newsletter__success strong {
  color: var(--color-cta);
}

@media (min-width: 640px) {
  .newsletter__field {
    flex-direction: row;
  }

  .newsletter__input {
    flex: 1;
  }

  .newsletter__btn {
    width: auto;
    white-space: nowrap;
  }
}

@media (min-width: 768px) {
  .newsletter__inner {
    flex-direction: row;
    text-align: left;
    gap: var(--spacing-3xl);
  }

  .newsletter__content {
    flex: 1;
  }

  .newsletter__content p {
    margin: 0;
  }

  .newsletter__form {
    flex: 1;
    max-width: none;
  }
}


/* Related posts */
.related-posts {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
}

@media (min-width: 640px) {
  .related-posts {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .related-posts {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* ============================================
   SOCIAL PROOF TOASTER — Bottom-left popup
   ============================================ */
.toaster {
  position: fixed;
  bottom: var(--spacing-lg);
  left: var(--spacing-lg);
  z-index: 9000;
  width: 320px;
  max-width: calc(100vw - 2rem);
  background: var(--color-white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-border);
  padding: var(--spacing-md) var(--spacing-lg);
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  transform: translateX(-120%);
  opacity: 0;
  transition: transform var(--transition-slow), opacity var(--transition-base);
  pointer-events: none;
}

.toaster.is-visible {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.toaster__avatar {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--border-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-lg);
  font-weight: 700;
  font-family: var(--font-body);
  color: var(--color-white);
  line-height: 1;
  user-select: none;
}

.toaster__body {
  flex: 1;
  min-width: 0;
}

.toaster__text {
  font-family: var(--font-body);
  font-size: var(--font-size-sm);
  color: var(--color-text);
  line-height: 1.45;
  margin: 0;
}

.toaster__text strong {
  font-weight: 700;
  color: var(--color-primary);
}

.toaster__time {
  display: block;
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  margin-top: 2px;
}

.toaster__close {
  position: absolute;
  top: 6px;
  right: 8px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text-muted);
  font-size: var(--font-size-base);
  line-height: 1;
  padding: 4px;
  border-radius: var(--border-radius-full);
  transition: color var(--transition-fast), background var(--transition-fast);
}

.toaster__close:hover,
.toaster__close:focus-visible {
  color: var(--color-text);
  background: var(--color-border-light);
}

.toaster__verified {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: var(--font-size-xs);
  color: var(--color-cta-hover);
  font-weight: 600;
  margin-top: 2px;
}

.toaster__verified svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .toaster {
    transition: none;
  }
}

/* Small screens — full width, smaller bottom spacing */
@media (max-width: 480px) {
  .toaster {
    left: 0.5rem;
    right: 0.5rem;
    bottom: 0.5rem;
    width: auto;
  }
}


/* ============================================
   CHATBOT WIDGET
   ============================================ */
.chatbot-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 8000;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-lg), 0 0 0 0 rgba(0, 88, 163, 0.4);
  transition: all var(--transition-base);
  border: none;
  animation: chatbot-pulse 3s ease-in-out infinite;
}

.chatbot-fab:hover {
  transform: scale(1.08);
  box-shadow: var(--shadow-xl);
  animation: none;
}

.chatbot-fab svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
  transition: transform var(--transition-fast);
}

.chatbot-fab.is-open svg {
  transform: rotate(90deg);
}

@keyframes chatbot-pulse {
  0%, 100% { box-shadow: var(--shadow-lg), 0 0 0 0 rgba(0, 88, 163, 0.35); }
  50% { box-shadow: var(--shadow-lg), 0 0 0 10px rgba(0, 88, 163, 0); }
}

/* Chat window */
.chatbot {
  position: fixed;
  bottom: 96px;
  right: 24px;
  z-index: 8001;
  width: 370px;
  max-width: calc(100vw - 32px);
  max-height: calc(100vh - 140px);
  border-radius: var(--border-radius-lg);
  background: var(--color-white);
  box-shadow: var(--shadow-2xl);
  display: none;
  flex-direction: column;
  overflow: hidden;
  font-family: var(--font-body);
  opacity: 0;
  transform: translateY(16px) scale(0.96);
  transition: opacity var(--transition-base), transform var(--transition-base);
}

.chatbot.is-visible {
  display: flex;
}

.chatbot.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Header */
.chatbot__header {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.chatbot__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}

.chatbot__header-text {
  flex: 1;
}

.chatbot__header-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--font-size-base);
  line-height: 1.2;
}

.chatbot__header-subtitle {
  font-size: var(--font-size-xs);
  opacity: 0.8;
  margin-top: 2px;
}

.chatbot__close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  transition: background var(--transition-fast);
  flex-shrink: 0;
}

.chatbot__close:hover {
  background: rgba(255,255,255,0.3);
}

.chatbot__close svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Messages area */
.chatbot__messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 200px;
  max-height: 340px;
  scroll-behavior: smooth;
}

.chatbot__msg {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: var(--font-size-sm);
  line-height: 1.5;
  animation: chatbot-msg-in 0.25s ease-out;
}

@keyframes chatbot-msg-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.chatbot__msg--bot {
  background: var(--color-primary-light);
  color: var(--color-text);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.chatbot__msg--user {
  background: var(--color-primary);
  color: var(--color-white);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.chatbot__msg a {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.chatbot__msg--bot a:hover {
  color: var(--color-accent);
}

/* Quick reply chips */
.chatbot__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 16px 12px;
  animation: chatbot-msg-in 0.3s ease-out;
}

.chatbot__chip {
  padding: 7px 14px;
  border-radius: var(--border-radius-full);
  background: var(--color-white);
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
  font-size: var(--font-size-xs);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  font-family: var(--font-body);
  white-space: nowrap;
}

.chatbot__chip:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-1px);
}

/* CTA bar */
.chatbot__cta {
  padding: 12px 16px;
  border-top: 1px solid var(--color-border-light);
  flex-shrink: 0;
}

.chatbot__cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 20px;
  border-radius: var(--border-radius-full);
  background: var(--color-cta);
  color: var(--color-dark);
  font-weight: 700;
  font-size: var(--font-size-sm);
  text-decoration: none;
  transition: all var(--transition-fast);
  box-shadow: 0 2px 0 rgba(5, 180, 130, 0.3), var(--shadow-sm);
}

.chatbot__cta a:hover {
  background: var(--color-cta-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-cta-glow);
}

/* Input bar */
.chatbot__input-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-top: 1px solid var(--color-border-light);
  background: var(--color-surface);
  flex-shrink: 0;
}

.chatbot__input {
  flex: 1;
  padding: 10px 14px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--border-radius-full);
  font-size: var(--font-size-sm);
  font-family: var(--font-body);
  background: var(--color-white);
  color: var(--color-text);
  outline: none;
  transition: border-color var(--transition-fast);
}

.chatbot__input:focus {
  border-color: var(--color-primary);
}

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

.chatbot__send {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  transition: background var(--transition-fast);
}

.chatbot__send:hover {
  background: var(--color-primary-dark);
}

.chatbot__send svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Typing indicator */
.chatbot__typing {
  display: flex;
  gap: 4px;
  padding: 10px 14px;
  align-self: flex-start;
}

.chatbot__typing span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-text-muted);
  animation: chatbot-typing 1.2s ease-in-out infinite;
}

.chatbot__typing span:nth-child(2) { animation-delay: 0.15s; }
.chatbot__typing span:nth-child(3) { animation-delay: 0.3s; }

@keyframes chatbot-typing {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-4px); }
}

/* Mobile adjustments */
@media (max-width: 480px) {
  .chatbot {
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    max-height: calc(100vh - 60px);
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
  }

  .chatbot-fab {
    bottom: 16px;
    right: 16px;
    width: 56px;
    height: 56px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .chatbot-fab {
    animation: none;
  }

  .chatbot__msg,
  .chatbot__chips {
    animation: none;
  }

  .chatbot__typing span {
    animation: none;
    opacity: 0.5;
  }
}
