/* =========================
   Base + Theme Variables
   ========================= */

:root {
  --font-heading: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  --color-bg: #f7f6f3;
  --color-bg-soft: #ffffff;
  --color-bg-alt: #eef7f5;
  --color-text: #1a1f25;
  --color-text-strong: #0f172a;
  --color-muted: #7d8a95;

  --color-primary: #8ed1c6;                /* mint */
  --color-primary-soft: rgba(142, 209, 198, 0.18);
  --color-accent: #b1c8ff;                 /* soft blue */

  --color-border: rgba(0,0,0,0.06);
  --color-border-soft: rgba(148,163,253,0.18);

  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-pill: 999px;

  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.08);
  --shadow-soft-strong: 0 24px 70px rgba(15, 23, 42, 0.16);

  --transition-base: all 0.25s ease;
}

/* Dark Mode overrides */

body.dark {
  --color-bg: #050816;
  --color-bg-soft: #0b1020;
  --color-bg-alt: #101827;
  --color-text: #f9fafb;
  --color-text-strong: #e5e7eb;
  --color-muted: #9ca3af;
  --color-border: rgba(148,163,253,0.15);
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.55);
  --shadow-soft-strong: 0 30px 80px rgba(15, 23, 42, 0.9);
}

/* =========================
   Global
   ========================= */

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

html,
body {
  padding: 0;
  margin: 0;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: linear-gradient(180deg, #f6fcf9 0%, #e7faf4 100%);
  color: var(--color-text);
  min-height: 100vh;
  position: relative;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

body::before {
  background: radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.6), transparent 55%);
  opacity: 0.5;
  filter: blur(30px);
}

body::after {
  background-image:
    radial-gradient(circle at 80% 0%, rgba(231, 250, 244, 0.7), transparent 55%),
    url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHdpZHRoPScxMjAnIGhlaWdodD0nMTIwJyB2aWV3Qm94PScwIDAgMTIwIDEyMCc+CiAgPGZpbHRlciBpZD0nbic+CiAgICA8ZmVUdXJidWxlbmNlIHR5cGU9J2ZyYWN0YWxOb2lzZScgYmFzZUZyZXF1ZW5jeT0nMC44JyBudW1PY3RhdmVzPSczJyBzdGl0Y2hUaWxlcz0nc3RpdGNoJy8+CiAgPC9maWx0ZXI+CiAgPHJlY3Qgd2lkdGg9JzEyMCcgaGVpZ2h0PScxMjAnIGZpbHRlcj0ndXJsKCNuKScgb3BhY2l0eT0nMC4wMycvPgo8L3N2Zz4=");
  background-size: auto, 220px 220px;
  background-repeat: no-repeat, repeat;
  opacity: 0.85;
  mix-blend-mode: soft-light;
}

body.dark {
  background: radial-gradient(circle at 10% 0%, #050816 0%, #0c152f 60%, #040714 100%);
}

body.dark::before {
  background: radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.05), transparent 55%);
  opacity: 0.3;
  filter: blur(40px);
}

body.dark::after {
  background-image:
    radial-gradient(circle at 80% 0%, rgba(120, 160, 255, 0.12), transparent 55%),
    url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHdpZHRoPScxMjAnIGhlaWdodD0nMTIwJyB2aWV3Qm94PScwIDAgMTIwIDEyMCc+CiAgPGZpbHRlciBpZD0nbic+CiAgICA8ZmVUdXJidWxlbmNlIHR5cGU9J2ZyYWN0YWxOb2lzZScgYmFzZUZyZXF1ZW5jeT0nMC44JyBudW1PY3RhdmVzPSczJyBzdGl0Y2hUaWxlcz0nc3RpdGNoJy8+CiAgPC9maWx0ZXI+CiAgPHJlY3Qgd2lkdGg9JzEyMCcgaGVpZ2h0PScxMjAnIGZpbHRlcj0ndXJsKCNuKScgb3BhY2l0eT0nMC4wMicgZmlsbD0nI2ZmZicvPgo8L3N2Zz4=");
  background-size: auto, 220px 220px;
  background-repeat: no-repeat, repeat;
  opacity: 0.7;
  mix-blend-mode: soft-light;
}

.decor-bubbles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 3;
  mix-blend-mode: screen;
}

.decor-bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, rgba(255,255,255,0.96), rgba(130, 214, 193, 0.72));
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow:
    0 25px 60px rgba(73, 109, 102, 0.25),
    inset 0 0 30px rgba(255,255,255,0.65);
  opacity: 0.85;
  transition: transform 0.4s ease, opacity 0.4s ease;
  pointer-events: auto;
  cursor: pointer;
}

.decor-bubble:hover {
  transform: scale(1.08);
  opacity: 0.75;
}

.decor-bubble.popping {
  animation: bubblePop 0.4s ease forwards;
}

@keyframes bubblePop {
  to {
    transform: scale(1.6);
    opacity: 0;
  }
}

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

a {
  color: inherit;
  text-decoration: none;
}

.section {
  padding: 6rem 1.5rem;
  position: relative;
  z-index: 2;
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
}

.section-light,
.section-clean,
.section-soft-bg {
  background: transparent;
}

body.dark .section,
body.dark .section-light,
body.dark .section-clean,
body.dark .section-soft-bg {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  color: var(--color-text-strong);
  margin: 0;
}

h1 {
  font-size: clamp(2.6rem, 4.8vw, 3.8rem);
  line-height: 1.08;
}

h2 {
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  line-height: 1.2;
}

h3 {
  font-size: 1.3rem;
  line-height: 1.3;
}

p {
  margin: 0 0 0.9rem;
  color: var(--color-text);
  line-height: 1.6;
}

.section-header {
  max-width: 720px;
  margin-bottom: 2.4rem;
}

.section-header h2 {
  margin-bottom: 0.5rem;
}

.section-header p {
  color: var(--color-muted);
  font-size: 1rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* =========================
   Particles Background
   ========================= */

.particles-layer {
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  filter: blur(1px);
  animation: float 14s linear infinite;
}

@keyframes float {
  from {
    transform: translate3d(0, 0, 0);
    opacity: 0;
  }
  10% {
    opacity: 0.7;
  }
  to {
    transform: translate3d(0, -180px, 0);
    opacity: 0;
  }
}

/* =========================
   Header & Nav
   ========================= */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(148, 163, 253, 0.18);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.04);
}

body.dark .header {
  background: rgba(5, 8, 22, 0.9);
  border-bottom: 1px solid rgba(148, 163, 253, 0.2);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: block;
  object-fit: contain;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.12);
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Portal label */

.app-label {
  display: none;
  font-size: 0.7rem;
  padding: 0.1rem 0.6rem;
  border-radius: var(--radius-pill);
  background: rgba(142, 209, 198, 0.16);
  color: var(--color-muted);
}

body.app-mode .app-label {
  display: inline-flex;
  align-items: center;
  margin-left: 0.4rem;
}

/* Hide marketing nav in portal mode */

body.app-mode .nav,
body.app-mode .nav-mobile,
body.app-mode .nav-cta,
body.app-mode .header-icons {
  display: none !important;
}

body.app-mode .header {
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

/* Nav */

.nav {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  font-size: 0.95rem;
}

.nav-primary {
  justify-content: center;
  margin: 0 auto;
}

.nav-link {
  padding: 0.35rem 0;
  position: relative;
  font-weight: 500;
  color: var(--color-text);
  transition: color 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: var(--radius-pill);
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--color-text-strong);
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
  transform: scaleX(1);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--color-primary), var(--color-accent));
  border-radius: var(--radius-pill);
  transition: width 0.2s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  margin-left: 0.5rem;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.burger span {
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: var(--radius-pill);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 0 1.5rem 1rem;
  gap: 0.75rem;
  background: rgba(247, 246, 243, 0.98);
  border-bottom: 1px solid var(--color-border);
}

body.dark .nav-mobile {
  background: rgba(5, 8, 22, 0.98);
}

.nav-mobile.open {
  display: flex;
}

/* =========================
   Buttons & Pills
   ========================= */

.btn {
  border: none;
  cursor: pointer;
  border-radius: var(--radius-pill);
  padding: 0.7rem 1.4rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: var(--transition-base);
  white-space: nowrap;
  background: transparent;
  color: var(--color-text);
}

.btn-primary {
  background: linear-gradient(135deg, #a8edea, #fed6e3);
  color: #0f172a;
  box-shadow: 0 12px 30px rgba(174, 214, 212, 0.45);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(174, 214, 212, 0.55);
}

.btn-outline {
  border: 1px solid rgba(148, 163, 253, 0.45);
  background: rgba(255,255,255,0.7);
  color: var(--color-text);
}

.btn-outline:hover {
  background: rgba(142, 209, 198, 0.2);
}

.btn-soft {
  background: var(--color-primary-soft);
  color: var(--color-text);
  border: 1px solid rgba(142, 209, 198, 0.25);
}

.btn-soft:hover {
  background: rgba(142, 209, 198, 0.3);
}

.btn-text {
  background: transparent;
  border: none;
  padding: 0;
  color: var(--color-muted);
  cursor: pointer;
}

.btn-text:hover {
  color: var(--color-primary);
}

.btn-ghost {
  background: transparent;
  color: var(--color-text);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.8);
}

.btn-sm {
  padding: 0.55rem 1.1rem;
  font-size: 0.82rem;
}

.btn-full {
  width: 100%;
}

.btn-text {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-size: 0.78rem;
  color: var(--color-muted);
}

.btn-text:hover {
  color: var(--color-text);
}

.text-danger {
  color: #f97373;
}

.link-btn {
  margin-top: 0.5rem;
  padding: 0;
  border: none;
  background: none;
  color: var(--color-primary);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.link-btn::after {
  content: "→";
  font-size: 0.95rem;
  transition: transform 0.2s ease;
}

.link-btn:hover::after {
  transform: translateX(3px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-icons {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(148, 163, 253, 0.35);
  background: rgba(255, 255, 255, 0.75);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-base);
  color: var(--color-text);
  position: relative;
}

.icon-btn:hover,
.icon-btn:focus-visible {
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.12);
  transform: translateY(-1px);
}

.icon-svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
}

.icon-svg path,
.icon-svg circle {
  stroke-width: 1.6;
}

.cart-icon-btn {
  padding-right: 0.9rem;
}

.cart-count-badge {
  position: absolute;
  top: -6px;
  right: -2px;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--color-primary);
  color: #0f172a;
  font-size: 0.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.theme-toggle-btn {
  border-color: rgba(148, 163, 253, 0.6);
}

.theme-icon {
  font-size: 0.95rem;
}

body.dark .icon-btn {
  background: rgba(15, 23, 42, 0.7);
  border-color: rgba(148, 163, 253, 0.4);
  color: var(--color-text);
}

body.dark .cart-count-badge {
  color: #0f172a;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.8rem;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.pill-soft {
  background: rgba(142, 209, 198, 0.16);
  color: var(--color-muted);
}

/* =========================
   Theme Toggle
   ========================= */

.theme-toggle {
  position: fixed;
  /* move it left so it doesn't sit under the cart */
  right: 1.4 rem;     /* was 1.4rem */
  bottom: 10.4rem;    /* align vertically with the cart FAB */
  z-index: 80;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--color-bg-soft);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-base);
}

.theme-toggle:hover {
  transform: translateY(-2px);
}

/* =========================
   Hero
   ========================= */

.hero {
  padding: clamp(2.5rem, 5vh, 5rem) 1.5rem;
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.4rem;
  align-items: center;
  justify-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.hero-copy {
  max-width: 620px;
  width: 100%;
}

.hero-text {
  max-width: 520px;
  color: #0e1111;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin: 0 auto;
  text-align: center;
  padding: 0 1rem;
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.hero-actions .btn {
  min-width: 180px;
}

.hero-media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  width: min(420px, 85vw);
  height: clamp(260px, 42vh, 420px);
  max-width: 100%;
  margin: 0 auto;
}

.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: inherit;
  pointer-events: none;
}

.eyebrow {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: #0e1111;
  margin-bottom: 0.2rem;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 3vw, 2.35rem);
  line-height: 1.05;
  letter-spacing: -0.5px;
  margin: 0 0 0.9rem;
  color: #0e1111;
}

.hero-subtitle {
  color: #1b1f1f;
  max-width: 520px;
  margin-bottom: 1.25rem;
  font-size: 1rem;
  line-height: 1.5;
}

body.dark .hero-text,
body.dark .hero h1,
body.dark .hero-subtitle,
body.dark .eyebrow {
  color: #f3f6ff;
}

body.dark .hero-subtitle {
  color: #e5e9f5;
}

@media (max-width: 1024px) {
  .hero {
    min-height: calc(100vh - 160px);
  }
  .hero-inner {
    gap: 1.8rem;
  }
  .hero-text {
    max-width: 100%;
    gap: 0.9rem;
  }
  .hero h1 {
    font-size: clamp(2rem, 4.2vw, 2.4rem);
  }
  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
  }
  .hero-media {
    width: min(360px, 80vw);
    height: clamp(240px, 38vh, 360px);
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: auto;
    padding: 3rem 1rem;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.4rem;
  }
  .hero-text {
    gap: 0.7rem;
    padding: 0;
  }
  .hero h1 {
    font-size: clamp(1.7rem, 6.2vw, 2.1rem);
    line-height: 1.08;
  }
  .hero-subtitle {
    font-size: 0.9rem;
    line-height: 1.45;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .hero-media {
    width: min(320px, 90vw);
    height: clamp(220px, 45vh, 320px);
    margin-top: 1rem;
    order: -1;
    margin-bottom: 1.5rem;
  }
}

.hero-process-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.4rem;
  margin-top: 1.2rem;
  padding: 0.55rem 0.8rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(148,163,253,0.2);
  background: rgba(255,255,255,0.75);
  font-size: 0.8rem;
}

.hero-process-strip div {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.hero-process-strip span {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-muted);
}



.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-photo {
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  position: relative;
  max-width: 380px;
  margin: 0 auto;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-room-label {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-pill);
  background: rgba(15, 23, 42, 0.7);
  color: #fff;
  font-size: 0.8rem;
  border: 1px solid rgba(255,255,255,0.2);
}

.hero-kit-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 1rem 1.2rem;
  border-radius: var(--radius-lg);
  width: 200px;
  text-align: left;
}

.hero-kit-badge h4 {
  margin: 0.2rem 0 0.4rem;
  font-size: 1rem;
}

.hero-kit-badge ul {
  list-style: none;
  padding: 0;
  margin: 0 0 0.4rem;
  display: grid;
  gap: 0.25rem;
  font-size: 0.85rem;
}

.hero-kit-note {
  font-size: 0.7rem;
  color: var(--color-muted);
}

.hero-bubbles {
  padding-top: 0;
  padding-bottom: 4rem;
  margin-top: 2rem;
}

.hero-bubbles-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hero-bubble {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 253, 0.25);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
  animation: floatSoft 12s ease-in-out infinite;
}

.hero-bubble:nth-child(2) {
  animation-delay: 2s;
}

.hero-bubble:nth-child(3) {
  animation-delay: 4s;
}

.bubble-icon {
  font-size: 1.1rem;
}

.bubble-title {
  margin: 0;
  font-weight: 600;
  font-size: 0.9rem;
}

.bubble-text {
  margin: 0;
  font-size: 0.85rem;
  color: var(--color-muted);
}

.trust-pills {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(148,163,253,0.2);
  font-size: 0.85rem;
  color: var(--color-text);
}

.trust-pill span {
  font-size: 0.95rem;
}

@keyframes floatSoft {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
  100% {
    transform: translateY(0);
  }
}

.hero-stats {
  padding: 1.4rem;
  display: grid;
  gap: 1rem;
}

.hero-badge {
  padding: 0.8rem 1rem;
  text-align: center;
  font-size: 0.85rem;
}

.hero .stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-muted);
  margin-bottom: 0.3rem;
}

.glass {
  background: radial-gradient(circle at top left, rgba(255,255,255,0.9), rgba(255,255,255,0.85));
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-soft);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

@keyframes sparkleFloat {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-60px);
  }
}

/* =========================
   Service Snapshot & Trust
   ========================= */

.service-snapshot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1.2rem;
}

.service-snapshot-card {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.service-perfect {
  font-size: 0.82rem;
  color: var(--color-muted);
  margin: 0;
}

.service-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.35rem;
  font-size: 0.9rem;
}

.service-checklist li {
  display: flex;
  gap: 0.35rem;
}

.service-checklist li::before {
  content: "•";
  color: var(--color-primary);
}

.service-snapshot-card h3 {
  margin-bottom: 0.2rem;
}

.service-snapshot-card p {
  margin-bottom: 0;
  color: var(--color-muted);
}

.service-icon {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--color-muted);
}

.trust-bar {
  padding: 1.8rem 0;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
}

body.dark .trust-bar {
  background: rgba(6, 10, 25, 0.92);
}

.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.8);
  border: 1px solid var(--color-border);
  font-size: 0.9rem;
}

.trust-icon {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(168,237,234,0.8), rgba(254,214,227,0.8));
  border: 1px solid rgba(255,255,255,0.8);
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
}

.trust-item p {
  margin: 0;
  font-weight: 600;
}

/* =========================
   What’s Included
   ========================= */

.whats-included-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.4rem;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
}

.check-icon {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: rgba(15, 157, 88, 0.12);
  color: #0f9d58;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-right: 0.6rem;
}

.checklist li {
  display: flex;
  align-items: center;
  font-size: 0.95rem;
  color: var(--color-text);
}

/* =========================
   Before / After Feature
   ========================= */

.before-after-feature {
  max-width: 820px;
  margin: 0 auto;
}

/* =========================
   Eco Promise
   ========================= */

.eco-promise-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.eco-promise-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.eco-pill {
  padding: 0.6rem 0.9rem;
  border-radius: var(--radius-pill);
  background: rgba(142, 209, 198, 0.15);
  font-size: 0.85rem;
  color: var(--color-text);
  border: 1px solid rgba(142, 209, 198, 0.25);
}

/* =========================
   Promos
   ========================= */

.promos-grid.refined {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}

/* =========================
   Meet Cleaner
   ========================= */

.meet-cleaner-card {
  display: grid;
  grid-template-columns: minmax(0, 200px) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: center;
  padding: 2rem;
  background: rgba(255,255,255,0.95);
}

.meet-cleaner-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--color-bg-soft);
  border: 4px solid rgba(142, 209, 198, 0.35);
}

.meet-cleaner-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.meet-cleaner-copy h3 {
  margin-top: 0.4rem;
  margin-bottom: 0.8rem;
}

.meet-highlights {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.meet-highlights li {
  font-size: 0.85rem;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-pill);
  background: rgba(142,209,198,0.15);
}

.social-mini {
  display: flex;
  gap: 0.45rem;
  margin-top: 1.3rem;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(148,163,253,0.25);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
  box-shadow: 0 12px 26px rgba(15,23,42,0.1);
  transition: var(--transition-base);
}

.social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(15,23,42,0.15);
}

body.dark .glass {
  background: radial-gradient(circle at top left, rgba(15,23,42,0.98), rgba(9,9,16,0.98));
}

body.dark .service-card,
body.dark .service-snapshot-card,
body.dark .promo-card,
body.dark .product-card,
body.dark .meet-cleaner-card,
body.dark .after-clean-widget,
body.dark .after-clean-item {
  background: rgba(6, 10, 25, 0.92);
  border-color: rgba(148, 163, 253, 0.25);
  box-shadow: 0 20px 50px rgba(2, 6, 23, 0.5);
}

/* Satisfaction meter */

.satisfaction-meter {
  position: relative;
  width: 100%;
  height: 12px;
  background: rgba(148, 163, 253, 0.18);
  border-radius: var(--radius-pill);
  overflow: hidden;
  margin: 0.5rem 0 0.25rem;
}

.satisfaction-fill {
  position: absolute;
  inset: 0;
  width: 60%;
  background: linear-gradient(to right, var(--color-primary), var(--color-accent));
  border-radius: inherit;
  transform-origin: left;
  transition: transform 0.35s ease;
}

.satisfaction-meter:hover .satisfaction-fill {
  transform: scaleX(1);
}

/* =========================
   Promos Strip & Cards
   ========================= */

.promos {
  padding-top: 4.5rem;
  padding-bottom: 4rem;
}

.promos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}

.promo-card {
  position: relative;
  background: var(--color-bg-soft);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  border: 1px solid var(--color-border-soft);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.88rem;
  transition: var(--transition-base);
}

.promo-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft-strong);
}

.promo-card h3 {
  font-size: 1rem;
  margin: 0 0 0.1rem;
}

.promo-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--color-muted);
}

.promo-code {
  margin-top: 0.4rem;
  font-weight: 600;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-pill);
  background: rgba(148, 163, 253, 0.15);
}

.promo-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-muted);
}

.promo-footnote {
  font-size: 0.7rem;
  color: var(--color-muted);
  margin-top: 0.15rem;
}

.promos-note {
  margin-top: 1.2rem;
  font-size: 0.77rem;
  color: var(--color-muted);
}

.promos-strip {
  padding: 0.9rem 1.5rem 1rem;
  background: rgba(255,255,255,0.96);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  position: relative;
  z-index: 4;
}

body.dark .promos-strip {
  background: #020817;
}

.promos-inner {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 0.78rem;
  color: var(--color-muted);
}

.promos-label {
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-pill);
  background: var(--color-primary-soft);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-text);
}

.promos-items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

/* =========================
   Generic Section Headers
   ========================= */

.section-header {
  margin-bottom: 2.2rem;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 0.3rem;
}

/* =========================
   Services & Modal
   ========================= */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.4rem;
}

.service-card {
  padding: 1.6rem;
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(148, 163, 253, 0.2);
  box-shadow: var(--shadow-soft);
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  min-height: 210px;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft-strong);
}

.service-card p {
  color: var(--color-muted);
  margin: 0;
  flex: 1;
}

.icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: rgba(142, 209, 198, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: var(--color-muted);
}

.service-basics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.service-kit-card {
  padding: 1.5rem;
  border-radius: var(--radius-xl);
}

.service-kit-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 0.8rem;
  display: grid;
  gap: 0.4rem;
}

.service-addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.service-addons-grid article {
  padding: 1.4rem;
  border-radius: var(--radius-xl);
}

.service-addons-grid ul {
  list-style: none;
  padding: 0;
  margin: 0 0 0.6rem;
  display: grid;
  gap: 0.3rem;
  color: var(--color-muted);
}

.service-flow-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.2rem;
}

.service-flow-grid article {
  padding: 1.4rem;
  border-radius: var(--radius-xl);
  position: relative;
  padding-top: 2.6rem;
}

.flow-step {
  position: absolute;
  top: 1rem;
  left: 1.4rem;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(148, 163, 253, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-muted);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,0.32);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 80;
}

.modal {
  background: var(--color-bg-soft);
  border-radius: 22px;
  padding: 1.6rem 1.8rem;
  max-width: 480px;
  width: 92%;
  box-shadow: var(--shadow-soft);
  position: relative;
}

.modal-close {
  position: absolute;
  right: 1rem;
  top: 0.8rem;
  background: none;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
}

/* =========================
   Pricing & Forms
   ========================= */

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 1.2fr);
  gap: 2.4rem;
  align-items: flex-start;
}

.pricing-card {
  padding: 1.6rem;
}

.pricing-notes {
  list-style: disc;
  padding-left: 1.3rem;
  color: var(--color-muted);
}

.label {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  margin-bottom: 0.3rem;
}

#messSlider {
  width: 100%;
  margin-bottom: 0.8rem;
}

.addon-options {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
  color: var(--color-muted);
}

#estimatedPrice {
  font-size: 1.7rem;
  margin-top: 0.1rem;
}

.estimate-caption {
  font-size: 0.78rem;
  color: var(--color-muted);
}

/* Forms */

.card {
  background: var(--color-bg-soft);
  border-radius: var(--radius-xl);
  padding: 1.6rem 1.6rem 1.4rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--color-border);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 0.6rem;
}

.field label {
  font-size: 0.8rem;
  color: var(--color-muted);
}

input,
textarea,
select {
  border-radius: 12px;
  border: 1px solid var(--color-border-soft);
  padding: 0.65rem 0.75rem;
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  background: rgba(255,255,255,0.98);
  transition: var(--transition-base);
}

body.dark input,
body.dark textarea,
body.dark select {
  background: #020817;
  color: var(--color-text);
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 1px rgba(148, 163, 253, 0.22);
}

.form-success {
  font-size: 0.8rem;
  color: #16a34a;
  margin-top: 0.4rem;
}

/* === SmartQuote Wizard === */

.smartquote-section .section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2rem;
}

.quote-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.4rem;
  margin-bottom: 2rem;
}

.quote-info-grid article {
  padding: 1.4rem;
  border-radius: var(--radius-xl);
}

.quote-info-grid ul {
  list-style: disc;
  margin: 0 0 0.8rem 1.1rem;
  color: var(--color-muted);
  display: grid;
  gap: 0.35rem;
}

.smartquote-card {
  padding: 2.2rem;
  border-radius: 32px;
  background: radial-gradient(circle at top left, rgba(255,255,255,0.88), rgba(255,255,255,0.86));
}

.wizard-progress {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.wizard-step-label {
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--color-muted);
  margin-bottom: 0.2rem;
}

.wizard-step-title {
  font-size: 1.2rem;
  margin: 0;
}

.wizard-progress-bar {
  flex: 1;
  height: 6px;
  border-radius: var(--radius-pill);
  background: rgba(142, 209, 198, 0.25);
  overflow: hidden;
  position: relative;
}

.wizard-progress-bar span {
  position: absolute;
  inset: 0;
  width: 20%;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, #8ed1c6, #b1c8ff);
  transition: width 0.35s ease;
}

.wizard-form {
  position: relative;
}

.wizard-step {
  display: none;
  animation: fadeUp 0.35s ease;
}

.wizard-step.active {
  display: block;
}

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

.step-intro h3 {
  margin-bottom: 0.4rem;
  font-size: 1.3rem;
}

.step-intro p {
  margin-top: 0;
  color: var(--color-muted);
  font-size: 0.92rem;
}

.pill-group {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.pill-group-wrap {
  justify-content: flex-start;
}

.pill-option {
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--color-text);
}

.pill-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.pill-option span {
  display: inline-flex;
  border-radius: var(--radius-pill);
  padding: 0.5rem 1.1rem;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(142, 209, 198, 0.35);
  transition: var(--transition-base);
}

.pill-option input:checked + span {
  background: linear-gradient(120deg, rgba(142, 209, 198, 0.22), rgba(177, 200, 255, 0.4));
  border-color: rgba(177, 200, 255, 0.8);
  color: var(--color-text-strong);
  font-weight: 600;
}

.pill-option span:hover {
  border-color: rgba(177, 200, 255, 0.8);
}

.pill-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.pill-checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  border-radius: var(--radius-pill);
  padding: 0.45rem 0.85rem;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(177, 200, 255, 0.35);
  cursor: pointer;
  transition: var(--transition-base);
}

.pill-checkbox input {
  accent-color: #8ed1c6;
}

.pill-checkbox-locked {
  opacity: 0.7;
  cursor: not-allowed;
}

.checklist-field legend {
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.field-hint {
  font-size: 0.78rem;
  color: var(--color-muted);
  margin-bottom: 0.6rem;
}

.field-error {
  font-size: 0.78rem;
  color: #d14343;
  min-height: 0.9rem;
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: #fca5a5;
  box-shadow: 0 0 0 1px rgba(239, 68, 68, 0.25);
}

.wizard-controls {
  margin-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.media-block {
  margin-top: 1.4rem;
  padding: 1.2rem;
  border-radius: var(--radius-lg);
  border: 1px dashed rgba(177, 200, 255, 0.6);
  background: rgba(255,255,255,0.7);
}

.media-helper {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-bottom: 0.8rem;
}

.room-upload-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
}

.room-upload {
  padding: 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(142, 209, 198, 0.4);
  background: rgba(255,255,255,0.95);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.room-upload h4 {
  margin: 0;
  font-size: 1rem;
}

.room-tip {
  font-size: 0.78rem;
  color: var(--color-muted);
  margin: 0;
}

.slider-field {
  margin-bottom: 1.4rem;
}

.slider-field input[type="range"] {
  width: 100%;
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--color-muted);
  margin-top: 0.35rem;
}

.condition-scale {
  list-style: none;
  margin: 0.8rem 0 0;
  padding: 0;
  font-size: 0.8rem;
  color: var(--color-muted);
  display: grid;
  gap: 0.35rem;
}

.extras-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.extras-grid fieldset {
  border: 1px solid rgba(177, 200, 255, 0.4);
  border-radius: var(--radius-lg);
  padding: 0.9rem;
  min-height: 100%;
}

.extras-grid legend {
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.extras-grid .pill-checkbox {
  border-radius: 14px;
  padding: 0.35rem 0.6rem;
}

.toggle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.toggle-field p {
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.review-summary {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(177, 200, 255, 0.4);
  padding: 1.2rem;
  background: rgba(255,255,255,0.85);
  display: grid;
  gap: 1rem;
}

.review-block h4 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
}

.review-block ul {
  margin: 0;
  padding-left: 1rem;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.review-note {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-top: 1rem;
}

.link-btn {
  border: none;
  background: none;
  color: var(--color-text);
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
  margin-top: 0.4rem;
}

.wizard-thankyou {
  text-align: center;
  padding: 2rem;
}

.wizard-thankyou h3 {
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
}

@media (max-width: 768px) {
  .smartquote-card {
    padding: 1.5rem;
  }

  .wizard-controls {
    flex-direction: column-reverse;
  }
}

.form-note {
  font-size: 0.78rem;
  color: var(--color-muted);
  margin-top: 0.4rem;
}

/* =========================
   About / Careers / Gallery
   ========================= */

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(260px, 2fr);
  gap: 2.5rem;
  align-items: center;
}

.about-text p {
  color: var(--color-muted);
  margin-bottom: 0.8rem;
}

.about-visual {
  position: relative;
}

.about-photo-bg {
  width: 100%;
  height: 220px;
  border-radius: var(--radius-xl);
  background-image:
    linear-gradient(to bottom right, var(--color-primary), var(--color-accent)),
    url("/images/about-bg.jpg");
  background-size: cover;
  background-position: center;
  mix-blend-mode: luminosity;
  opacity: 0.9;
}

.about-overlay-card {
  position: absolute;
  right: 6%;
  bottom: -14%;
  padding: 0.8rem 1rem;
  font-size: 0.8rem;
}

.about-pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.about-pillars-grid article {
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  min-height: 220px;
}

.about-pillars-grid h3 {
  margin-top: 0;
}

.about-supplies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: start;
}

.about-supplies-card {
  padding: 1.5rem;
  border-radius: var(--radius-xl);
}

.about-supplies-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.45rem;
  color: var(--color-muted);
}

.about-service-area-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
  padding: 2rem;
  border-radius: var(--radius-xl);
}

.about-service-area-list {
  display: grid;
  gap: 1.1rem;
}

.about-service-area-list strong {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 0.2rem;
}

.careers-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 1.2fr);
  gap: 2.4rem;
}

.career-list {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
  color: var(--color-muted);
}

.gallery-grid {
  columns: 3 200px;
  column-gap: 0.75rem;
}

/* Before / After slider */

.before-after {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  padding: 1rem;
}

.before-after-inner {
  position: relative;
  width: 100%;
  height: 260px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.before-after-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.before-after-img-after {
  clip-path: inset(0 0 0 50%);
  transition: clip-path 0.25s ease;
}

.before-after-slider {
  width: 100%;
  margin-top: 0.9rem;
}

.before-after-label {
  position: absolute;
  top: 1.4rem;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
}

.before-after-label-left {
  left: 1.8rem;
}

.before-after-label-right {
  right: 1.8rem;
}


.gallery-item {
  width: 100%;
  margin-bottom: 0.75rem;
  border-radius: 18px;
  cursor: pointer;
  transition: var(--transition-base);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.16);
}

.gallery-item:hover {
  transform: translateY(-4px);
}

/* Lightbox */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 70;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 80%;
}

.lightbox-content img {
  width: 100%;
  height: auto;
  border-radius: 18px;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}

/* =========================
   Policies Layout
   ========================= */

.policy-hero {
  max-width: 720px;
}

.policy-hero p {
  color: var(--color-muted);
}

.policy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.4rem;
  align-items: center;
}

.policy-updated {
  font-size: 0.8rem;
  color: var(--color-muted);
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.policy-card {
  padding: 1.4rem 1.5rem;
}

.policy-card h3 {
  margin-bottom: 0.5rem;
}

.policy-tagline {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin-bottom: 0.8rem;
}

.policy-card ul {
  margin: 0;
  padding-left: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.policy-card li {
  font-size: 0.9rem;
  color: var(--color-text);
}

.policy-callout {
  margin-top: 2.2rem;
  padding: 1.4rem 1.6rem;
  border-radius: var(--radius-xl);
  border: 1px dashed var(--color-border-soft);
  background: var(--color-bg-alt);
}

.policy-callout h3 {
  margin-bottom: 0.4rem;
}

.policy-disclaimer {
  font-size: 0.8rem;
  color: var(--color-muted);
  margin-top: 0.8rem;
}

@media (max-width: 800px) {
  .policy-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* =========================
   Testimonials & FAQ
   ========================= */

   .faq-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.9rem;
  font-size: 0.78rem;
  color: var(--color-muted);
}

.faq-chip {
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-pill);
  background: var(--color-primary-soft);
  color: var(--color-text);
}

.faq-note {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--color-muted);
}

body.dark .faq-note {
  color: var(--color-text);
}
body.dark .faq-chip {
  background: rgba(148, 163, 253, 0.2);
  color: var(--color-text);
}

body.dark .faq-note,
body.dark .testimonial-name {
  color: var(--color-text);
}

.testimonials-faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 1.2fr);
  gap: 2.4rem;
  align-items: flex-start;
}

.faq-dark,
.faq-dark p,
.faq-dark li,
.faq-dark .accordion-body,
.faq-dark .accordion-header {
  color: var(--color-text);
}

.testimonial-card {
  padding: 1.4rem;
  min-height: 140px;
}

.testimonial-name {
  margin-top: 0.6rem;
  font-size: 0.85rem;
  color: var(--color-muted);
}

.testimonial-dots {
  display: flex;
  gap: 0.35rem;
  margin-top: 0.6rem;
}

.testimonial-dots span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(148,163,253,0.4);
  cursor: pointer;
  transition: var(--transition-base);
}

.testimonial-dots span.active {
  width: 18px;
  background: linear-gradient(to right, var(--color-primary), var(--color-accent));
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.accordion-item {
  border-radius: 16px;
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border-soft);
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  text-align: left;
  padding: 0.7rem 0.9rem;
  background: transparent;
  border: none;
  font-size: 0.88rem;
  cursor: pointer;
}

.accordion-body {
  padding: 0 0.9rem 0.7rem;
  font-size: 0.8rem;
  color: var(--color-muted);
  display: none;
}

.accordion-item.open .accordion-body {
  display: block;
}

/* =========================
   Contact
   ========================= */

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 1.2fr);
  gap: 2.4rem;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.contact-list li {
  margin-bottom: 0.4rem;
}

.map-wrapper iframe {
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

/* =========================
   Footer
   ========================= */

.footer {
  padding: 2.5rem 1.5rem 1.2rem;
  background: rgba(255,255,255,0.98);
  border-top: 1px solid var(--color-border);
  position: relative;
  z-index: 3;
}

body.dark .footer {
  background: #020817;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 0.5rem;
}

.footer-links,
.footer-social {
  display: flex;
  gap: 0.9rem;
  font-size: 0.8rem;
  color: var(--color-muted);
}

.footer-social a {
  font-size: 1.1rem;
}

.footer-bottom {
  font-size: 0.7rem;
  color: var(--color-muted);
}

/* =========================
   Chatbot
   ========================= */

.chatbot {
  position: fixed;
  right: 1.4rem;
  bottom: 1.6rem;
  z-index: 70;
}

.chatbot-toggle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chatbot-window {
  position: absolute;
  right: 0;
  bottom: 70px;
  width: 280px;
  background: var(--color-bg-soft);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--color-border);
  display: none;
  flex-direction: column;
  overflow: hidden;
}

.chatbot-header {
  padding: 0.6rem 0.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.8rem;
}

.chatbot-body {
  padding: 0.8rem;
  max-height: 360px;
  overflow-y: auto;
  font-size: 0.78rem;
}

.chatbot-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.chatbot-form label {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.72rem;
}

.chatbot-form label span {
  color: var(--color-muted);
  font-weight: 600;
}

.chatbot-form input,
.chatbot-form select,
.chatbot-form textarea {
  border-radius: 12px;
  font-size: 0.78rem;
}

.chatbot-form textarea {
  resize: vertical;
}

.chatbot-form button {
  margin-top: 0.2rem;
}

.chatbot-hint {
  font-size: 0.68rem;
  color: var(--color-muted);
  margin: 0.4rem 0 0;
}

.chatbot-status {
  min-height: 1em;
  font-size: 0.72rem;
  margin-top: 0.2rem;
}

.chatbot-status.success {
  color: #16a34a;
}

.chatbot-status.error {
  color: #dc2626;
}

/* =========================
   Scroll Reveal / Parallax
   ========================= */

[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 32px, 0) scale(0.985);
  transition:
    opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1),
    transform 0.9s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}

[data-reveal].visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

[data-parallax] {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  transform-style: preserve-3d;
}

/* =========================
   Dashboards (Admin/Employee)
   ========================= */

   /* Admin Shop Management */

#adminProductsCard {
  margin-top: 2rem;
}

.product-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.product-form .form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.5rem;
}

.checkbox-inline {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--color-muted);
}

.product-form-actions {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  margin-top: 0.3rem;
}

.admin-products-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0.5rem;
  font-size: 0.8rem;
}

.admin-product-row {
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 0.5rem 0.6rem;
  border-radius: 14px;
  background: var(--color-bg-soft);
  border: 1px solid rgba(148,163,253,0.16);
}

.admin-product-name {
  font-weight: 500;
}

.admin-product-meta {
  font-size: 0.72rem;
  color: var(--color-muted);
}

.admin-product-actions {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  align-items: flex-end;
}

.text-danger {
  color: #dc2626;
}

.dashboard {
  padding: 5.5rem 1.5rem 3rem;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, var(--color-primary-soft), transparent),
    var(--color-bg);
}

.dashboard h2 {
  font-size: 1.9rem;
  margin-bottom: 0.25rem;
}

.dashboard p.section-subtitle {
  margin-bottom: 1.8rem;
  color: var(--color-muted);
}

.dashboard-card {
  padding: 1.1rem 1.2rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
  background: var(--color-bg-soft);
}

/* Main admin grid
   Desktop: 2 columns, Bookings column wider
   Smaller screens: stack into a single column
*/
.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.1fr);
  gap: 1.5rem;
  align-items: flex-start;
  max-width: 1160px;
  margin: 0 auto;
}

/* Make each card flex so inner content grows naturally */
.dashboard-grid .dashboard-card {
  display: flex;
  flex-direction: column;
}

/* Let the “Bookings Overview” card breathe a bit more */
.dashboard-grid .dashboard-card:first-child {
  min-height: 100%;
}

/* Tablets & below: single column */
@media (max-width: 980px) {
  .dashboard {
    padding: 4.5rem 1rem 2.5rem;
  }

  .dashboard-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* Fine-tune the Bookings Overview column */
#adminDashboard .dashboard-card .dashboard-header h3 {
  margin-bottom: 0.6rem;
}

#adminDashboard .dashboard-card .dashboard-card {
  margin-top: 0.7rem;
}

/* Jobs list */

.jobs-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.8rem;
}

.job-card {
  padding: 0.7rem 0.75rem;
  border-radius: 14px;
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border-soft);
  display: grid;
  grid-template-columns: minmax(0,1.8fr) minmax(0,1.4fr);
  gap: 0.5rem;
  align-items: flex-start;
}

@media (max-width: 700px) {
  .job-card {
    grid-template-columns: 1fr;
  }
}

.job-meta {
  color: var(--color-muted);
  font-size: 0.75rem;
}

.job-actions {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: flex-end;
}

.job-status {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.7rem;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-pill);
  background: var(--color-primary-soft);
  color: var(--color-muted);
}

.job-upload {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.7rem;
}

.job-upload input {
  padding: 0.2rem 0.3rem;
  font-size: 0.7rem;
}

.job-upload button {
  padding: 0.25rem 0.55rem;
  font-size: 0.7rem;
}

/* ===== DUSTLESS ASSISTANT (Admin Dashboard) ===== */

.admin-subtitle {
  font-size: 0.75rem;
  color: var(--color-muted);
  margin-top: 0.1rem;
}

/* Admin tables & chips */

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.75rem;
}

.admin-table th,
.admin-table td {
  padding: 0.35rem 0.4rem;
  border-bottom: 1px solid rgba(148,163,253,0.16);
  text-align: left;
}

.admin-chip {
  display: inline-flex;
  padding: 0.15rem 0.45rem;
  border-radius: var(--radius-pill);
  font-size: 0.65rem;
  background: var(--color-primary-soft);
  color: var(--color-muted);
}

.dashboard-note {
  font-size: 0.72rem;
  color: var(--color-muted);
  margin-top: 0.2rem;
}

/* Admin products list */

.admin-product-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(148,163,253,0.12);
  font-size: 0.78rem;
}

.admin-product-name {
  font-weight: 500;
}

.admin-product-meta {
  font-size: 0.72rem;
  color: var(--color-muted);
}

.admin-product-actions {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  align-items: flex-end;
}

/* =========================
   Shop / Products
   ========================= */

.shop-section {
  background:
    radial-gradient(circle at top left, rgba(142, 209, 198, 0.12), transparent),
    var(--color-bg);
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.4rem;
  margin-top: 1.5rem;
}

.product-card {
  background: rgba(255,255,255,0.95);
  border-radius: var(--radius-xl);
  padding: 1.1rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  cursor: pointer;
  transition: var(--transition-base);
  border: 1px solid rgba(148, 163, 253, 0.18);
  min-height: 320px;
}

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

.product-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 0.4rem;
}

.product-name {
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-text);
}

.cart-header,
.cart-footer {
  padding: 1.1rem 1.2rem;
  border-bottom: 1px solid var(--color-border);
}

.product-price {
  font-weight: 600;
  color: var(--color-primary);
  font-size: 1rem;
}

.product-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.55rem;
  border-radius: var(--radius-pill);
  font-size: 0.65rem;
  background: rgba(142, 209, 198, 0.16);
  color: var(--color-muted);
}

.product-quick-view {
  border-radius: var(--radius-pill);
  padding: 0.55rem 1rem;
  border: 1px solid rgba(148, 163, 253, 0.3);
  font-size: 0.85rem;
  font-weight: 600;
  width: fit-content;
  margin-top: auto;
}

.shop-featured-row {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

/* Product Modal */

.product-modal {
  max-width: 900px;
}

.product-modal-body {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
  gap: 1.5rem;
  align-items: flex-start;
}

.product-modal-image {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  object-fit: cover;
}

.product-modal-info h3 {
  font-size: 1.4rem;
  margin-bottom: 0.25rem;
}

.product-modal-price {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-primary);
}

.product-modal-subcopy {
  font-size: 0.8rem;
  color: var(--color-muted);
  margin-left: 0.6rem;
}

.product-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.product-modal-note {
  font-size: 0.78rem;
  color: var(--color-muted);
}

@media (max-width: 800px) {
  .product-modal-body {
    grid-template-columns: 1fr;
  }
}

/* =========================
   Cart (Drawer + FAB)
   ========================= */

.cart-fab {
  position: fixed;
  right: 1.4rem;
  bottom: 5.4rem;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.18);
  z-index: 90;
  cursor: pointer;
}

body.dark .cart-fab {
  background: #0b1426;
  color: var(--color-text);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.55);
}

.cart-icon {
  font-size: 1.3rem;
}

.cart-count {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--color-primary);
  color: #fff;
  font-size: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(360px, 100vw);
  height: 100vh;
  background: #ffffff;
  box-shadow: -18px 0 50px rgba(15, 23, 42, 0.18);
  z-index: 95;
  display: flex;
  flex-direction: column;
}

body.dark .cart-drawer {
  background: #050c1b;
  box-shadow: -18px 0 60px rgba(0,0,0,0.5);
}

.cart-header,
.cart-footer {
  padding: 1.1rem 1.2rem;
  border-bottom: 1px solid var(--color-border);
}

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

.cart-items {
  flex: 1;
  padding: 0.9rem 1.2rem;
  overflow-y: auto;
}

.cart-item {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) auto;
  gap: 0.35rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(148, 163, 253, 0.08);
  font-size: 0.8rem;
}

.cart-item-title {
  font-weight: 500;
}

.cart-item-meta {
  color: var(--color-muted);
}

.cart-item-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.3rem;
}

.cart-remove {
  border: none;
  background: transparent;
  font-size: 0.7rem;
  color: var(--color-muted);
  cursor: pointer;
}

.cart-summary {
  font-size: 0.82rem;
  margin-bottom: 0.4rem;
}

.cart-total-line,
.cart-eco-line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.1rem;
}

.eco-label {
  font-size: 0.7rem;
  color: var(--color-muted);
}

.cart-secure-note {
  font-size: 0.7rem;
  color: var(--color-muted);
  margin-top: 0.3rem;
}

/* Hide cart UI in portal mode */

body.app-mode .cart-fab,
body.app-mode .cart-drawer {
  display: none !important;
}

/* =========================
   After Cleaning Widget
   ========================= */

.after-clean-widget {
  margin-top: 1.2rem;
  padding: 1rem 1rem 1.1rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
}

.after-clean-products {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-top: 0.6rem;
}

.after-clean-item {
  flex: 1 1 120px;
  padding: 0.5rem 0.6rem;
  border-radius: 14px;
  background: var(--color-bg-soft);
  font-size: 0.75rem;
}

/* =========================
   Timeline & Mess Meter
   ========================= */

.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.timeline-step {
  padding: 1.4rem;
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.timeline-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(142,209,198,0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.4rem;
}

.mess-meter-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.6rem;
  padding: 1.5rem;
  border-radius: var(--radius-xl);
}

.mess-meter-control label {
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.4rem;
}

#messMeterSlider {
  width: 100%;
  margin-bottom: 0.5rem;
}

.mess-meter-message {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-text);
}

/* =========================
   Room Focus
   ========================= */

.room-focus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1rem;
}

.room-card {
  padding: 1.3rem;
  border-radius: var(--radius-xl);
}

.room-card h3 {
  margin-bottom: 0.4rem;
}

.room-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.35rem;
  font-size: 0.9rem;
}

.room-card li::before {
  content: "— ";
  color: var(--color-muted);
}

/* =========================
   Utilities & Responsive
   ========================= */

.hidden {
  display: none !important;
}

@media (max-width: 900px) {
  .hero-inner,
  .pricing-layout,
  .about-layout,
  .careers-layout,
  .testimonials-faq-layout,
  .contact-layout,
  .whats-included-grid,
  .eco-promise-inner,
  .meet-cleaner-card {
    grid-template-columns: 1fr;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .nav-primary {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .header-actions .nav-cta {
    display: none;
  }

  .hero {
    padding-top: 6rem;
  }

  .meet-cleaner-photo {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .burger {
    display: flex;
  }

  .footer-inner,
  .promos-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

:root {
  --color-border-soft: rgba(148, 163, 253, 0.18);
  --color-text-strong: #111827;
  --shadow-soft-strong: 0 24px 60px rgba(15, 23, 42, 0.16);
}

/* Pills, soft buttons, text buttons, muted text */

.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.6rem;
  border-radius: var(--radius-pill);
  font-size: 0.65rem;
  border: 1px solid rgba(148,163,253,0.22);
  color: var(--color-muted);
}

.pill-soft {
  background: var(--color-primary-soft);
  border-color: transparent;
}

.btn-soft {
  background: var(--color-primary-soft);
  color: var(--color-text);
}

.btn-soft:hover {
  background: rgba(142, 209, 198, 0.28);
}

.btn-text {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: var(--color-primary);
}

.btn-text.text-danger {
  color: #dc2626;
}

@media (max-width: 600px) {
  .header-inner {
    padding: 0.5rem; /* Add some padding for mobile */
  }

  .btn {
    margin-top: 0.5rem; /* Add margin for spacing */
  }
}

/* Extra-small screens: fix wide header + long CTAs */
@media (max-width: 480px) {
  /* Allow button text to wrap on very small screens */
  .btn {
    white-space: normal;
    text-align: center;
  }

  /* Make hero CTAs stack and fill width nicely */
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* Make the big “Get My Personalized Cleaning Plan” submit buttons comfy */
  .booking-card form button.btn-primary,
  .quote-form button.btn-primary {
    width: 100%;
    justify-content: center;
  }

  /* Tame the nav CTA in the header so it doesn’t stretch the layout */
  .nav-cta {
    font-size: 0.78rem;
    padding: 0.55rem 0.9rem;
    max-width: 190px;
  }
}

.muted {
  color: var(--color-muted);
}

/* Product modal backdrop if you follow the updated HTML */
.modal-backdrop.hidden {
  display: none;
}

/* Simple overlay style for product modal if using same modal-backdrop */
.safety-trust .section-header p {
  margin-bottom: 1.5rem;
}

.safety-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.safety-card {
  padding: 1.1rem;
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-height: 170px;
}

.safety-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(148,163,253,0.2);
  font-size: 1.1rem;
}
