/* ═══════════════════════════════════════════════════════════════
   GlanzWerk Hausbetreuung — Main Stylesheet
   Style: Glassmorphism / Liquid Glass · palette: navy / amber
   ═══════════════════════════════════════════════════════════════ */

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

:root {
  /* Warm cream backgrounds */
  --cream:      #FDFAF6;
  --cream-mid:  #F2E9DF;
  --cream-deep: #E8D8CB;

  /* Dark espresso (text / footer) */
  --espresso:       #1C1510;
  --espresso-mid:   #2A2018;
  --espresso-light: #3D3028;

  /* Light gold accent */
  --amber:      #E8C070;
  --amber-light:#F0D080;
  --amber-dim:  rgba(232, 192, 112, 0.12);

  /* Navy blue (classic accent, back by popular demand) */
  --navy:       #0B1628;
  --navy-mid:   #152238;
  --navy-light: #1E3050;
  --navy-dim:   rgba(11, 22, 40, 0.08);

  /* Sage green */
  --sage:       #6B8F64;

  /* Utility */
  --white:      #FFFFFF;
  --muted:      rgba(255, 255, 255, 0.50);
  --border:     rgba(232, 192, 112, 0.22);
  --border-nav: rgba(255, 255, 255, 0.08);
  --radius:     20px;
  --radius-sm:  12px;
  --shadow:     0 20px 60px rgba(11, 22, 40, 0.45);
  --shadow-sm:  0 4px 20px rgba(11, 22, 40, 0.30);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --header-h:   56px;

  /* Unified glass — same look as hero price ribbon */
  --glass-fill:        rgba(8, 14, 28, 0.72);
  --glass-fill-hover:  rgba(8, 14, 28, 0.82);
  --glass-shine:       linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.14) 0%,
    rgba(255, 255, 255, 0.04) 28%,
    transparent 55%
  );
  --glass-shine-hover: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.16) 0%,
    rgba(255, 255, 255, 0.05) 28%,
    transparent 55%
  );
  --glass-bg:          rgba(255, 255, 255, 0.07);
  --glass-bg-mid:      rgba(8, 14, 28, 0.72);
  --glass-bg-deep:     rgba(8, 14, 28, 0.72);
  --glass-photo:       rgba(4, 8, 18, 0.22);
  --glass-photo-mid:   rgba(4, 8, 18, 0.28);
  --glass-border:      rgba(255, 255, 255, 0.22);
  --glass-border-hi:   rgba(255, 255, 255, 0.34);
  --glass-highlight:   rgba(255, 255, 255, 0.18);
  --glass-blur:        22px;
  --glass-blur-photo:  0px;
  --glass-sat:         1.35;
  --glass-shadow:
    0 12px 40px rgba(0, 0, 0, 0.28),
    0 1px 0 rgba(255, 255, 255, 0.14) inset,
    0 -1px 0 rgba(0, 0, 0, 0.12) inset;
  --glass-shadow-hover:
    0 16px 48px rgba(0, 0, 0, 0.32),
    0 1px 0 rgba(255, 255, 255, 0.18) inset;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Montserrat', -apple-system, sans-serif;
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
  width: 100%;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  box-sizing: border-box;
}

/* ─── UNIFIED GLASS (hero ribbon style) ──────────────────────────── */
.glass,
.hero-badge,
.hero-location,
.about-lead,
.about-value,
.review-card,
.service-card,
.why-item,
.fs-block,
.contact-form-wrap {
  background: var(--glass-shine), var(--glass-fill);
  backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-sat));
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-sat));
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  position: relative;
  overflow: hidden;
}

.hero-badge:hover,
.review-card:hover,
.service-card:hover,
.why-item:hover,
.about-value:hover,
.fs-block:hover {
  background: var(--glass-shine-hover), var(--glass-fill-hover);
  border-color: rgba(232, 192, 112, 0.40);
  box-shadow: var(--glass-shadow-hover);
}

/* Ribbon plaques: no backdrop-filter — it breaks CSS mask edge fade in Chromium.
   Fill + shine still read as glass over the hero photo. */
.hero-badge {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

/* Keep content above any decorative pseudos */
.service-card > *,
.why-item > *,
.review-card > *,
.contact-form-wrap > *,
.hero-badge > *,
.about-value > *,
.fs-block > * {
  position: relative;
  z-index: 1;
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .glass,
  .hero-badge,
  .hero-location,
  .about-lead,
  .about-value,
  .review-card,
  .service-card,
  .why-item,
  .fs-block,
  .contact-form-wrap {
    background: rgba(15, 26, 44, 0.92);
  }
}

/* ─── UTILITY ────────────────────────────────────────────────────── */
.gold { color: var(--amber); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  font-family: 'Montserrat', sans-serif;
}
.btn-primary {
  background: linear-gradient(160deg, #D4A43A 0%, #C08A22 52%, #A67414 100%);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow:
    0 8px 28px rgba(168,116,20,0.38),
    0 1px 0 rgba(255,255,255,0.22) inset;
}
.btn-primary:hover {
  background: linear-gradient(160deg, #E0B248 0%, #D4A43A 50%, #C08A22 100%);
  transform: translateY(-2px);
  box-shadow:
    0 12px 36px rgba(168,116,20,0.48),
    0 1px 0 rgba(255,255,255,0.28) inset;
}
.btn-outline {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px) saturate(1.3);
  -webkit-backdrop-filter: blur(12px) saturate(1.3);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.32);
  box-shadow: 0 1px 0 rgba(255,255,255,0.18) inset;
}
.btn-outline:hover {
  border-color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.14);
  transform: translateY(-2px);
}
/* Now same as regular outline since all sections are dark navy */
.btn-outline--dark {
  color: var(--white);
  border-color: rgba(255,255,255,0.30);
}
.btn-outline--dark:hover {
  border-color: var(--amber);
  color: var(--amber);
  background: rgba(232,192,112,0.10);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber-light);
  background: rgba(232,192,112,0.12);
  backdrop-filter: blur(12px) saturate(1.3);
  -webkit-backdrop-filter: blur(12px) saturate(1.3);
  border: 1px solid rgba(232,192,112,0.32);
  box-shadow: 0 1px 0 rgba(255,255,255,0.12) inset;
  padding: 4px 12px 4px 8px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 18px;
  height: 2px;
  background: var(--amber);
  border-radius: 2px;
  flex-shrink: 0;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--white);
  text-shadow: 0 2px 12px rgba(11,22,40,0.5);
}

.section-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.55);
  max-width: 560px;
  line-height: 1.75;
}

/* ─── SCROLL REVEAL ─────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible        { opacity: 1; transform: translateY(0); }
.reveal-delay-1        { transition-delay: 0.1s; }
.reveal-delay-2        { transition-delay: 0.2s; }
.reveal-delay-3        { transition-delay: 0.3s; }
.reveal-delay-4        { transition-delay: 0.4s; }

/* ─── HEADER — solid navy with glass feel (no see-through) ───────── */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 8px 0 0;
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.07) 0%,
      rgba(255,255,255,0.02) 40%,
      transparent 100%
    ),
    var(--navy);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  box-shadow:
    0 10px 36px rgba(0,0,0,0.28),
    0 1px 0 rgba(255,255,255,0.10) inset;
  transition: box-shadow 0.3s ease;
}
#header.menu-open {
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.08) 0%,
      rgba(255,255,255,0.03) 40%,
      transparent 100%
    ),
    var(--navy);
  box-shadow: 0 16px 48px rgba(0,0,0,0.40);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 8px;
  flex-wrap: nowrap;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 1;
  min-width: 0;
}
.nav-logo img {
  display: block;
  height: 42px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: nowrap;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color 0.25s;
  position: relative;
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1.5px;
  background: var(--white);
  transform: scaleX(0);
  transition: transform 0.25s;
  border-radius: 2px;
}
.nav-links a:hover              { color: var(--white); }
.nav-links a:hover::after       { transform: scaleX(1); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  white-space: nowrap;
}
.nav-cta-btn {
  white-space: nowrap;
  padding: 7px 16px;
  font-size: 0.78rem;
  line-height: 1.2;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile menu — expands inside header */
.mobile-menu {
  display: none;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
#header.menu-open .mobile-menu {
  grid-template-rows: 1fr;
}

.mobile-menu-inner {
  overflow: hidden;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  border-top: 0 solid transparent;
  margin-top: 0;
  transition: padding 0.35s ease, margin 0.35s ease, border-color 0.35s ease;
}
#header.menu-open .mobile-menu-inner {
  padding: 0 0 10px;
  margin-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.mobile-menu a {
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  transition: color 0.2s, background 0.2s;
  padding: 8px 4px;
  border-radius: 8px;
}
.mobile-menu a:hover { color: var(--white); background: rgba(255,255,255,0.06); }

@media (prefers-reduced-motion: reduce) {
  .mobile-menu { transition: none !important; }
  .mobile-menu-inner { transition: none !important; }
}

/* ─── HERO SECTION ───────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-h) + 48px) 0 80px;
  overflow: hidden;
  background: var(--navy);
}

/* Smooth fade into first solid section below */
/* Smooth fade into first solid section below — keep photo readable longer */
#hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, rgba(11,22,40,0.75) 70%, var(--navy));
  pointer-events: none;
  z-index: 1;
}
#hero .container {
  position: relative;
  z-index: 3;
}

/* ─── LIVE PHOTO BACKGROUNDS ─────────────────────────────────────── */
.live-bg {
  position: absolute;
  inset: -24px;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  transform: translate3d(var(--mx, 0px), var(--my, 0px), 0);
  will-change: transform;
}
.live-bg-inner {
  position: absolute;
  inset: -8%;
  width: auto;
  height: auto;
  background-size: cover;
  background-repeat: no-repeat;
  transform-origin: center center;
  animation: liveBgDrift 26s ease-in-out infinite alternate;
  will-change: transform;
}

/* Hero photo: starts below fixed header, head always framed at top */
#hero .live-bg {
  top: var(--header-h);
  left: -24px;
  right: -24px;
  bottom: -24px;
}
#hero .live-bg-inner {
  background-image: url('../assets/hero-main.png');
  /* Woman + dog framed on the right; glass sits on the left */
  background-position: 72% top;
  transform-origin: center top;
  inset: 0 -4% -6% -4%;
  animation: none;
}
#about .live-bg-inner {
  background-image: url('../assets/hero-walk.png');
  background-position: center 20%;
  animation-duration: 24s;
  animation-delay: -8s;
}
#reviews .live-bg-inner {
  background-image: url('../assets/reviews-bg.png');
  background-position: center 45%;
  animation-duration: 30s;
  animation-delay: -14s;
}
#reviews .live-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  /* Soft veil — photo stays visible under glass cards */
  background: linear-gradient(
    180deg,
    rgba(11,22,40,0.35) 0%,
    rgba(11,22,40,0.48) 45%,
    rgba(11,22,40,0.62) 100%
  );
  pointer-events: none;
}

@keyframes liveBgDrift {
  from { transform: scale(1.06) translate(-1.4%, -0.7%); }
  to   { transform: scale(1.12) translate(1.4%, 0.9%); }
}

/* Never shift upward — protects face/head framing */
@keyframes liveBgDriftHero {
  from { transform: scale(1.02) translate(0%, 0%); }
  to   { transform: scale(1.06) translate(1%, 1.2%); }
}

@media (prefers-reduced-motion: reduce) {
  .live-bg { transform: none !important; }
  .live-bg-inner { animation: none !important; transform: none !important; }
}

/* Hero inner */
.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  gap: 40px;
  width: 100%;
}

/* Left column: brand + stage (glass + badges) */
.hero-left {
  flex: 1 1 auto;
  max-width: 100%;
  min-width: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
}

/* Stepped glass: logo tab protrudes from the main panel */
.hero-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
.hero-panel-fill {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
  filter: drop-shadow(0 16px 48px rgba(0,0,0,0.28));
}
.hero-brand {
  position: relative;
  z-index: 1;
  display: block;
  width: clamp(148px, 34vw, 400px);
  max-width: calc(100% - 28px);
  margin: 0;
  padding: clamp(8px, 1.4vw, 14px) clamp(12px, 2.4vw, 28px) clamp(10px, 1.6vw, 16px);
  background: none;
  border: none;
  box-shadow: none;
  box-sizing: border-box;
}
.hero-brand img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 411 / 113;
  filter: brightness(1.35);
}
.hero-brand::after {
  content: '';
  display: block;
  height: 1px;
  width: 100%;
  margin-top: 10px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(232, 192, 112, 0.55) 18%,
    rgba(255, 255, 255, 0.55) 50%,
    rgba(232, 192, 112, 0.55) 82%,
    transparent 100%
  );
}

/* Default: stacked full-width (shrinks with viewport). Wide desktop overrides below. */
.hero-stage {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

/* Hero panel: dark scrim WITHOUT blur — photo behind stays sharp and visible */
.hero-glass {
  position: relative;
  z-index: 1;
  container-type: inline-size;
  container-name: hero-glass;
  background: none;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: none;
  border-radius: 0;
  padding: 28px 28px;
  height: auto;
  overflow: visible;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  box-shadow: none;
}
.hero-glass::before {
  display: none;
}

.hero-location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  max-width: 100%;
  align-self: flex-start;
  box-sizing: border-box;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber-light);
  padding: 7px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.hero-title {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  color: var(--white);
}
.hero-title span {
  background: linear-gradient(135deg, var(--amber-light) 0%, #FFF0A0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.90);
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 36em;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  margin-bottom: 0;
}

.hero-stats {
  display: flex;
  gap: 0;
  width: 100%;
  margin: 22px 0 0;
  padding: 18px 0 0;
  border: none;
  border-top: 1px solid rgba(255,255,255,0.14);
  flex-shrink: 0;
  background: none;
  box-shadow: none;
}
.hero-stats > div {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: row;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  padding: 4px 12px;
  text-align: center;
  border-radius: 0;
  background: none;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  overflow: visible;
}
.hero-stats > div + div {
  border-left: 1px solid rgba(255,255,255,0.14);
}
.hero-stat-num   { font-size: 1.45rem; font-weight: 700; color: var(--amber-light); line-height: 1; white-space: nowrap; }
.hero-stat-label { font-size: 1.05rem; font-weight: 500; color: rgba(255,255,255,0.88); margin-top: 0; line-height: 1.2; white-space: nowrap; }

@container hero-glass (max-width: 540px) {
  .hero-stats {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .hero-stats > div {
    flex: 0 0 auto;
    width: 100%;
    justify-content: center;
    padding: 10px 8px;
  }
  .hero-stats > div + div {
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.14);
  }
}

/* Price ribbon — JS scrollLeft + CSS mask fade (no backdrop-filter on plaques) */
.hero-badges-stack {
  position: relative;
  flex: none;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin-top: 8px;
  display: block;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: auto;
  /* Soft dissolve — plaques become transparent at edges (not a dark overlay) */
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 80px,
    #000 calc(100% - 80px),
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 80px,
    #000 calc(100% - 80px),
    transparent 100%
  );
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}
@media (max-width: 768px) {
  .hero-badges-stack {
    -webkit-mask-image: linear-gradient(
      90deg,
      transparent 0,
      #000 56px,
      #000 calc(100% - 56px),
      transparent 100%
    );
    mask-image: linear-gradient(
      90deg,
      transparent 0,
      #000 56px,
      #000 calc(100% - 56px),
      transparent 100%
    );
  }
}
.hero-badges-stack::-webkit-scrollbar { display: none; }
.hero-badges-track {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  width: max-content;
  gap: 0;
  animation: none;
}
.hero-badges-group {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 12px;
  padding-right: 12px;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  border-radius: var(--radius);
  padding: 12px 16px;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
}
.hero-badge-icon  { font-size: 1.15rem; flex-shrink: 0; line-height: 1; }
.hero-badge-title { font-size: 0.8rem; font-weight: 700; color: var(--white); line-height: 1.25; }
.hero-badge-sub   { font-size: 0.7rem; color: var(--amber-light); margin-top: 2px; }

/* Wide desktop: same full-width glass + ribbon; photo still shows through scrim */
@media (min-width: 1101px) {
  .hero-left {
    max-width: 100%;
  }
  .hero-glass {
    max-width: 100%;
    width: 100%;
    padding: 32px 40px;
  }
  .hero-badges-stack {
    width: 100%;
    max-width: 100%;
  }
}

/* ─── ROBOT VACUUM ───────────────────────────────────────────────── */
#robo-vac {
  position: fixed;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 50%;
  overflow: hidden;
  pointer-events: none;
  z-index: 9998;
  will-change: transform, left, top;
  filter:
    drop-shadow(0 4px 14px rgba(232,192,112,0.22))
    drop-shadow(0 2px 6px rgba(28,21,16,0.14));
}
#robo-vac img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
  border: 1.5px solid rgba(232,192,112,0.18);
}

/* Water droplet trail */
.robo-drop {
  position: fixed;
  pointer-events: none;
  z-index: 9996;
  border-radius: 50%;
  background: rgba(168, 200, 240, 0.50);
  animation: dropFade 1.1s ease-out forwards;
}
@keyframes dropFade {
  0%   { opacity: 0.50; transform: scale(1); }
  60%  { opacity: 0.18; transform: scale(1.4); }
  100% { opacity: 0;    transform: scale(1.8); }
}

/* ─── SECTION PADDING (global) ──────────────────────────────────── */
#services, #about, #full-services, #reviews, #contact { padding: 72px 0; }
#why { padding: 56px 0; }

/* ─── SERVICES INTRO (3 cards) ───────────────────────────────────── */
#services {
  padding: 72px 0;
  background:
    radial-gradient(ellipse 70% 50% at 15% 10%, rgba(232,192,112,0.10), transparent 55%),
    radial-gradient(ellipse 60% 45% at 90% 80%, rgba(30,48,80,0.55), transparent 50%),
    var(--navy);
  position: relative;
}
#services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  pointer-events: none;
}

.services-header { text-align: center; margin-bottom: 44px; }
.services-header .section-subtitle { margin: 0 auto; }

.services-carousel {
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.services-carousel-btn,
.services-carousel-dots {
  display: none;
}

.service-card {
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--amber-light), var(--amber), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
  z-index: 3;
  opacity: 0.9;
  border-radius: 0;
}
.service-card:hover {
  transform: translateY(-6px);
}
.service-card:hover::before { transform: scaleX(1); }

.service-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  flex-shrink: 0;
}
.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.service-media .service-title {
  position: absolute;
  left: 14px;
  right: auto;
  top: auto;
  bottom: 14px;
  margin: 0;
  padding: 10px 16px;
  width: fit-content;
  max-width: calc(100% - 28px);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--white);
  background: var(--glass-shine), var(--glass-fill);
  backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-sat));
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-sat));
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  box-shadow: var(--glass-shadow);
  text-shadow: none;
  z-index: 1;
}

.service-body {
  padding: 22px 26px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
  z-index: 1;
}

.service-subtitle { font-size: 0.88rem; color: var(--amber); font-weight: 500; margin-bottom: 12px; letter-spacing: 0.05em; }
.service-desc     { font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 20px; }

.service-items { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.service-item  { display: flex; align-items: flex-start; gap: 10px; font-size: 0.875rem; color: rgba(255,255,255,0.65); }
.service-item-dot { width: 6px; height: 6px; background: var(--amber); border-radius: 50%; margin-top: 7px; flex-shrink: 0; }

.service-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: auto;
}
.service-price-from  { font-size: 0.78rem; color: rgba(255,255,255,0.45); }
.service-price-amount{ font-size: 1.4rem; font-weight: 700; color: var(--amber); }
.service-price-unit  { font-size: 0.82rem; color: rgba(255,255,255,0.45); }

.service-more-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--amber);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-top: 16px;
  transition: gap var(--transition);
  font-family: 'Montserrat', sans-serif;
}
.service-more-btn:hover { gap: 10px; }
.service-more-btn svg  { transition: transform var(--transition); }
.service-more-btn.expanded svg { transform: rotate(180deg); }

.service-sub-list { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, margin-top 0.4s ease; }
.service-sub-list.open { max-height: 400px; margin-top: 16px; }
.service-sub-list ul {
  display: flex; flex-direction: column; gap: 6px;
  padding: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-sm);
}
.service-sub-list li { font-size: 0.82rem; color: rgba(255,255,255,0.65); display: flex; align-items: center; gap: 8px; }
.service-sub-list li::before { content: '›'; color: var(--amber); font-size: 1rem; line-height: 1; }

/* ─── ABOUT ──────────────────────────────────────────────────────── */
#about {
  padding: 96px 0;
  position: relative;
  overflow: hidden;
  background: var(--navy);
  min-height: 640px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#about > .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* Layout shell only — glass lives on inner cards */
.about-content {
  max-width: 100%;
  width: 100%;
  margin: 0;
  position: relative;
  z-index: 2;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  overflow: visible;
}
.about-content::before { display: none; }

.about-head {
  margin-bottom: 24px;
  max-width: 720px;
}
.about-head .section-title {
  text-shadow: 0 2px 20px rgba(0,0,0,0.55), 0 1px 4px rgba(0,0,0,0.4);
}

/* About cards — layout only; glass from unified recipe */
.about-lead,
.about-value {
  margin: 0;
  border-radius: var(--radius);
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

.about-body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 14px;
}
.about-lead {
  font-size: 1rem;
  color: rgba(255,255,255,0.92);
  line-height: 1.75;
  padding: 22px 24px;
}

.about-values-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.about-value {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px 20px;
}
.about-value::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  flex-shrink: 0;
  background: linear-gradient(90deg, var(--amber), transparent);
  border-radius: 2px;
  margin-bottom: 4px;
}
.about-value-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.35;
}
.about-value-text {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
}

/* ─── WHY US ─────────────────────────────────────────────────────── */
#why {
  padding: 56px 0;
  background:
    radial-gradient(ellipse 50% 60% at 50% 0%, rgba(232,192,112,0.07), transparent 60%),
    var(--navy);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.why-item {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.why-item:hover {
  transform: translateY(-4px);
}
.why-icon  { font-size: 2rem; margin-bottom: 12px; }
.why-title { font-size: 0.95rem; font-weight: 600; margin-bottom: 8px; color: var(--white); }
.why-text  { font-size: 0.82rem; color: rgba(255,255,255,0.55); line-height: 1.6; }

/* ─── FULL SERVICES (Accordion) ──────────────────────────────────── */
#full-services {
  padding: 72px 0;
  background:
    radial-gradient(ellipse 70% 45% at 20% 0%, rgba(255,255,255,0.06), transparent 55%),
    radial-gradient(ellipse 55% 40% at 90% 85%, rgba(232,192,112,0.08), transparent 50%),
    radial-gradient(ellipse 80% 55% at 50% 40%, rgba(30,48,80,0.55), transparent 65%),
    var(--navy);
}

.fs-header { text-align: center; margin-bottom: 48px; }
.fs-header .section-subtitle { margin: 0 auto; }

.fs-blocks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.fs-block {
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  /* Stronger glass read on navy */
  background:
    var(--glass-shine),
    linear-gradient(165deg, rgba(255,255,255,0.10) 0%, transparent 42%),
    rgba(8, 14, 28, 0.55);
  border-color: rgba(255, 255, 255, 0.28);
}
.fs-block:hover {
  background:
    var(--glass-shine-hover),
    linear-gradient(165deg, rgba(255,255,255,0.14) 0%, transparent 42%),
    rgba(8, 14, 28, 0.64);
}

@supports not (grid-template-rows: subgrid) {
  .fs-block {
    display: flex;
    flex-direction: column;
    grid-row: auto;
  }
  .fs-block-header {
    min-height: 11.5rem;
  }
}

.fs-block-header {
  padding: 28px 28px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  background:
    linear-gradient(160deg, rgba(255,255,255,0.12), rgba(255,255,255,0.03) 55%, transparent);
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.fs-block-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
  flex-shrink: 0;
}
.fs-block-icon {
  width: 52px; height: 52px;
  background: var(--glass-shine), rgba(255,255,255,0.10);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-sat));
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-sat));
  box-shadow: 0 1px 0 rgba(255,255,255,0.18) inset;
}
.fs-block-icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  display: block;
}
.fs-block-name { font-size: 1.2rem; font-weight: 700; line-height: 1.2; color: var(--white); }
.fs-block-sub  { font-size: 0.78rem; color: var(--amber-light); font-weight: 500; letter-spacing: 0.06em; margin-top: 2px; }
.fs-block-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.70);
  line-height: 1.65;
  flex: 1 1 auto;
}

.fs-modules { padding: 12px 0; position: relative; z-index: 1; }

.fs-module {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.fs-module:last-child { border-bottom: none; }

.fs-module-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s;
  font-family: 'Montserrat', sans-serif;
}
.fs-module-trigger:hover { background: rgba(255,255,255,0.04); }
.fs-module-trigger.active { background: rgba(232,192,112,0.10); }

.fs-module-emoji {
  font-size: 1.1rem;
  flex-shrink: 0;
  width: 28px;
  text-align: center;
}
.fs-module-info { flex: 1; min-width: 0; }
.fs-module-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}
.fs-module-price {
  font-size: 0.78rem;
  color: var(--amber);
  font-weight: 500;
  margin-top: 2px;
}
.fs-module-arrow {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(232,192,112,0.18);
  border: 1px solid rgba(232,192,112,0.30);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s, transform 0.3s;
}
.fs-module-arrow svg { width: 10px; height: 10px; stroke: var(--amber); transition: transform 0.3s; }
.fs-module-trigger.active .fs-module-arrow { background: rgba(232,192,112,0.20); }
.fs-module-trigger.active .fs-module-arrow svg { transform: rotate(180deg); }

.fs-module-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.fs-module-panel.open { max-height: 600px; }

.fs-module-content {
  padding: 10px 10px 10px 10px;
}
.fs-module-content-inner {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px) saturate(1.3);
  -webkit-backdrop-filter: blur(12px) saturate(1.3);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.10) inset;
}

.fs-module-section-title {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #E8C070;
  margin-bottom: 8px;
  margin-top: 12px;
}
.fs-module-section-title:first-child { margin-top: 0; }

.fs-items {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.fs-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.90);
  line-height: 1.5;
}
.fs-item::before {
  content: '•';
  color: #E8C070;
  font-size: 1rem;
  line-height: 1.4;
  flex-shrink: 0;
}

.fs-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.82rem;
}
.fs-price-row:last-child { border-bottom: none; }
.fs-price-row-label { color: rgba(255,255,255,0.80); }
.fs-price-row-val   { font-weight: 700; color: #E8C070; white-space: nowrap; }

.fs-not-included {
  margin-top: 10px;
  padding: 8px 12px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  border-left: 2px solid rgba(255,255,255,0.20);
}
.fs-not-included-title {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 5px;
}
.fs-not-item {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}
.fs-not-item::before { content: '✕ '; color: rgba(255,255,255,0.40); }

/* ─── REVIEWS ────────────────────────────────────────────────────── */
#reviews {
  padding: 110px 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.06);
}
#reviews > .container {
  position: relative;
  z-index: 2;
}

.reviews-header { text-align: center; margin-bottom: 56px; }
.reviews-header .section-subtitle { margin: 0 auto; }

.reviews-carousel { position: relative; }
.reviews-carousel-btn,
.reviews-carousel-dots { display: none; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}
.review-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 20px;
  font-size: 4rem; line-height: 1;
  color: var(--amber); opacity: 0.22;
  font-family: Georgia, serif;
  z-index: 1;
  inset: auto;
  background: none;
  pointer-events: none;
}
.review-stars { display: flex; gap: 3px; margin-bottom: 12px; }
.review-stars span { color: var(--amber); font-size: 0.9rem; }
.review-text { font-size: 0.9rem; color: rgba(255,255,255,0.82); line-height: 1.75; margin-bottom: 20px; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 40px; height: 40px;
  background: rgba(232,192,112,0.18);
  border: 1px solid rgba(232,192,112,0.32);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; font-weight: 700; color: var(--amber-light);
}
.review-name { font-size: 0.9rem; font-weight: 600; color: var(--white); }
.review-role { font-size: 0.78rem; color: rgba(255,255,255,0.50); }

/* ─── CONTACT ────────────────────────────────────────────────────── */
#contact {
  padding: 72px 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(232,192,112,0.08), transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 90%, rgba(30,48,80,0.7), transparent 50%),
    var(--navy-mid);
}

.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: start; }

.contact-info-items  { display: flex; flex-direction: column; gap: 20px; margin-top: 36px; }
.contact-info-item   { display: flex; gap: 16px; align-items: flex-start; }
.contact-info-icon {
  width: 44px; height: 44px;
  background: rgba(232,192,112,0.14);
  border: 1px solid rgba(232,192,112,0.28);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.12) inset;
}
.contact-info-label {
  font-size: 0.78rem; font-weight: 500; color: rgba(255,255,255,0.45);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 3px;
}
.contact-info-value { font-size: 0.95rem; font-weight: 500; color: var(--white); }
.contact-info-value a { color: var(--white); transition: color 0.2s; }
.contact-info-value a:hover { color: var(--amber); }

.contact-map {
  margin-top: 28px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow:
    0 12px 40px rgba(11,22,40,0.35),
    0 1px 0 rgba(255,255,255,0.10) inset;
  line-height: 0;
}
.contact-map iframe {
  display: block;
  filter: grayscale(0.15) contrast(1.05);
}

.contact-form-wrap {
  border-radius: var(--radius);
  padding: 40px;
  container-type: inline-size;
  container-name: contact-form;
  scroll-margin-top: calc(var(--header-h) + 16px);
}

.form-title    { font-size: 1.25rem; font-weight: 700; margin-bottom: 6px; color: var(--white); }
.form-subtitle { font-size: 0.875rem; color: rgba(255,255,255,0.50); margin-bottom: 28px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 0.82rem; font-weight: 500; color: rgba(255,255,255,0.55); }

.form-group input,
.form-group textarea {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-size: 0.9rem;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
  outline: none;
  width: 100%;
  box-shadow: 0 1px 0 rgba(255,255,255,0.06) inset;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(232,192,112,0.55);
  background: rgba(232,192,112,0.10);
  box-shadow:
    0 0 0 3px rgba(232,192,112,0.12),
    0 1px 0 rgba(255,255,255,0.08) inset;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.28); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit { width: 100%; justify-content: center; padding: 16px; font-size: 1rem; }

.form-success { display: none; text-align: center; padding: 24px; }
.form-success-icon { font-size: 2.5rem; margin-bottom: 12px; }
.form-success-text { font-size: 0.95rem; color: var(--muted); }

/* ─── SERVICE PICKER (form) ──────────────────────────────────────── */
.service-pick {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(4px, 1.6cqi, 10px);
  margin-bottom: 0;
  width: 100%;
  container-type: inline-size;
  container-name: service-pick;
}
.service-pick-item {
  position: relative;
  min-width: 0;
}
.service-pick-item input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.service-pick-label {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: clamp(3px, 1.2cqi, 6px);
  padding: clamp(8px, 2.2cqi, 12px) clamp(3px, 1.4cqi, 7px);
  min-height: clamp(44px, 10cqi, 56px);
  height: auto;
  width: 100%;
  box-sizing: border-box;
  background: var(--glass-shine), var(--glass-fill);
  backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-sat));
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-sat));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
  text-align: center;
  box-shadow: var(--glass-shadow);
}
.service-pick-label:hover {
  border-color: rgba(232,192,112,0.50);
  background: rgba(232,192,112,0.10);
}
.service-pick-item input:checked + .service-pick-label {
  border-color: var(--amber);
  background: rgba(232,192,112,0.16);
  box-shadow:
    0 0 0 3px rgba(232,192,112,0.12),
    0 1px 0 rgba(255,255,255,0.10) inset;
}
.service-pick-emoji {
  width: clamp(14px, 5.2cqi, 28px);
  height: clamp(14px, 5.2cqi, 28px);
  flex-shrink: 0;
  line-height: 1;
  background-color: var(--amber);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}
.service-pick-icon--animal {
  -webkit-mask-image: url('../assets/logo-animal.svg');
  mask-image: url('../assets/logo-animal.svg');
}
.service-pick-icon--house {
  -webkit-mask-image: url('../assets/logo-house.svg');
  mask-image: url('../assets/logo-house.svg');
}
.service-pick-icon--key {
  -webkit-mask-image: url('../assets/logo-key.svg');
  mask-image: url('../assets/logo-key.svg');
}
.service-pick-emoji img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  opacity: 0;
}
.service-pick-item input:checked + .service-pick-label .service-pick-emoji {
  background-color: var(--amber-light);
}
.service-pick-name  {
  font-size: clamp(0.5rem, 2.2vw, 0.85rem);
  font-size: clamp(0.5rem, 2.55cqi, 0.85rem);
  font-weight: 600;
  color: rgba(255,255,255,0.90);
  line-height: 1;
  white-space: nowrap;
  letter-spacing: -0.03em;
  min-width: 0;
}

@container contact-form (max-width: 520px) {
  .service-pick {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .service-pick-label {
    justify-content: flex-start;
    gap: 12px;
    padding: 12px 16px;
    min-height: 48px;
  }
  .service-pick-emoji {
    width: 26px;
    height: 26px;
  }
  .service-pick-name {
    font-size: 0.95rem;
    letter-spacing: -0.02em;
  }
}

/* ─── FOOTER — frosted edge over navy ────────────────────────────── */
#footer {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), transparent 40%),
    var(--navy);
  border-top: 1px solid rgba(255,255,255,0.10);
  padding: 36px 0 16px;
  box-shadow: 0 -1px 0 rgba(255,255,255,0.04) inset;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 28px;
}

.footer-brand img { display: block; height: 48px; width: auto; margin-bottom: 12px; }
.footer-brand p   { font-size: 0.82rem; color: rgba(255,255,255,0.40); line-height: 1.65; max-width: 240px; }

.footer-col-title { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--amber-light); margin-bottom: 12px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 0.82rem; color: rgba(255,255,255,0.45); transition: color 0.25s; }
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.07);
  gap: 16px; flex-wrap: wrap;
}
.footer-copy   { font-size: 0.78rem; color: rgba(255,255,255,0.30); }
.footer-legal  { display: flex; gap: 20px; }
.footer-legal a{ font-size: 0.78rem; color: rgba(255,255,255,0.30); transition: color 0.25s; }
.footer-legal a:hover { color: var(--white); }

/* ─── BACK TO TOP ────────────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 90;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(11, 22, 40, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.25s, color 0.25s, border-color 0.25s;
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top:hover {
  background: rgba(11, 22, 40, 0.72);
  color: var(--white);
  border-color: rgba(232,192,112,0.45);
}
.back-to-top:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
}

@media (max-width: 768px) {
  .back-to-top { bottom: 20px; left: 16px; width: 38px; height: 38px; }
}

/* ─── FLOATING ACTION BUTTONS ────────────────────────────────────── */
.fab-group {
  position: fixed;
  bottom: 28px; right: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 90;
}
.fab-group--nav { display: none; }

.fab {
  position: relative;
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease;
  text-decoration: none;
}
.fab svg { width: 24px; height: 24px; flex-shrink: 0; }

.fab::after {
  content: attr(data-tip);
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) scale(0.85);
  background: rgba(11, 22, 40, 0.72);
  backdrop-filter: blur(12px) saturate(1.3);
  -webkit-backdrop-filter: blur(12px) saturate(1.3);
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--white);
  font-size: 0.78rem; font-weight: 500;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: 10px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  font-family: 'Montserrat', sans-serif;
  box-shadow: 0 1px 0 rgba(255,255,255,0.10) inset;
}
.fab:hover::after { opacity: 1; transform: translateY(-50%) scale(1); }

.fab::before {
  content: '';
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border-width: 2px; border-style: solid;
  animation: fabPulse 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes fabPulse {
  0%   { transform: scale(1);    opacity: 0.7; }
  100% { transform: scale(1.65); opacity: 0; }
}

.fab-wa    { background: #25D366; box-shadow: 0 6px 22px rgba(37,211,102,0.38); color: #fff; }
.fab-wa    svg { fill: #fff; }
.fab-wa::before { border-color: rgba(37,211,102,0.45); animation-delay: 0s; }
.fab-wa:hover   { transform: scale(1.12); box-shadow: 0 10px 32px rgba(37,211,102,0.55); }

.fab-phone { background: #3B82F6; box-shadow: 0 6px 22px rgba(59,130,246,0.38); color: #fff; }
.fab-phone svg { fill: #fff; }
.fab-phone::before { border-color: rgba(59,130,246,0.45); animation-delay: 0.8s; }
.fab-phone:hover   { transform: scale(1.12); box-shadow: 0 10px 32px rgba(59,130,246,0.55); }
.fab-phone:hover svg { animation: phoneShake 0.5s ease; }
@keyframes phoneShake {
  0%,100% { transform: rotate(0); }
  20%     { transform: rotate(-15deg); }
  40%     { transform: rotate(15deg); }
  60%     { transform: rotate(-10deg); }
  80%     { transform: rotate(8deg); }
}

.fab-email { background: var(--amber); box-shadow: 0 6px 22px rgba(232,192,112,0.38); color: #fff; }
.fab-email svg { stroke: #fff; }
.fab-email::before { border-color: rgba(232,192,112,0.45); animation-delay: 1.6s; }
.fab-email:hover   { transform: scale(1.12); box-shadow: 0 10px 32px rgba(232,192,112,0.55); background: var(--amber-light); }

/* ─── SERVICE MODULE PICKER ─────────────────────────────────────── */
#service-modules-wrap {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-6px);
  transition: max-height 0.45s ease, opacity 0.35s ease, transform 0.35s ease, margin 0.35s ease;
  margin-bottom: 0;
}
#service-modules-wrap.visible {
  max-height: 500px;
  opacity: 1;
  transform: translateY(0);
  margin-bottom: 16px;
}
.module-header {
  font-size: 0.80rem;
  font-weight: 500;
  color: rgba(255,255,255,0.50);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.module-optional {
  color: rgba(255,255,255,0.28);
  font-weight: 400;
  font-style: italic;
}
.module-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.module-check-label {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  position: relative;
  user-select: none;
  box-shadow: 0 1px 0 rgba(255,255,255,0.06) inset;
}
.module-check-label:hover {
  background: rgba(232,192,112,0.07);
  border-color: rgba(232,192,112,0.28);
  transform: translateY(-1px);
}
.module-check-label.checked {
  border-color: var(--amber);
  background: rgba(232,192,112,0.12);
}
.module-check-label.checked .module-check-name { color: var(--white); }
.module-check-input {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
  pointer-events: none;
}
.module-check-name {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.68);
  line-height: 1.3;
  transition: color 0.2s;
}
.module-check-price {
  font-size: 0.73rem;
  color: var(--amber);
  font-weight: 600;
}
.module-check-tick {
  position: absolute;
  top: 8px; right: 10px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.55rem;
  transition: background 0.2s, border-color 0.2s;
}
.module-check-label.checked .module-check-tick {
  background: var(--amber);
  border-color: var(--amber);
}

/* ─── PRICE ESTIMATE ─────────────────────────────────────────────── */
#price-estimate {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-6px);
  transition: max-height 0.45s ease, opacity 0.35s ease, transform 0.35s ease, margin 0.35s ease;
  margin-bottom: 0;
}
#price-estimate.visible {
  max-height: 400px;
  opacity: 1;
  transform: translateY(0);
  margin-bottom: 16px;
}
.price-estimate-inner {
  background: rgba(232,192,112,0.08);
  border: 1px solid rgba(232,192,112,0.28);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
}
.price-estimate-title {
  font-size: 0.73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--amber-light);
  margin-bottom: 10px;
}
.est-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  padding: 3px 0;
  color: rgba(255,255,255,0.65);
  animation: estRowIn 0.25s ease;
}
@keyframes estRowIn {
  from { opacity: 0; transform: translateX(-6px); }
  to   { opacity: 1; transform: translateX(0); }
}
.est-val { font-weight: 600; color: var(--amber-light); white-space: nowrap; }
.price-estimate-divider {
  height: 1px;
  background: rgba(232,192,112,0.22);
  margin: 8px 0;
}
.price-estimate-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-weight: 700;
  color: var(--white);
  font-size: 0.9rem;
}
.price-estimate-total-val {
  font-size: 1.2rem;
  color: var(--amber);
  font-weight: 800;
  letter-spacing: -0.01em;
}
.price-estimate-note {
  font-size: 0.70rem;
  color: rgba(255,255,255,0.30);
  margin-top: 8px;
  line-height: 1.5;
}

/* Mobile: module grid 1 col */
@media (max-width: 480px) {
  .module-grid { grid-template-columns: 1fr; }
}

/* ─── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  :root { --header-h: 52px; }

  /* Narrow / tablet: links → burger; CTA always visible */
  .nav-links   { display: none; }
  .hamburger   { display: flex; flex-shrink: 0; }
  .mobile-menu { display: grid; }
  .nav-inner   {
    gap: 8px;
    justify-content: flex-start;
  }
  .nav-logo {
    flex: 1 1 auto;
    min-width: 0;
    margin-right: auto;
  }
  .nav-logo img { height: 40px; }
  .nav-cta {
    align-items: center;
  }
  .nav-cta-btn {
    height: 32px;
    padding: 0 12px;
    font-size: 0.7rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    box-sizing: border-box;
  }
  .hamburger {
    width: 32px;
    height: 32px;
    padding: 0;
    align-items: center;
    justify-content: center;
    gap: 3.5px;
    background: linear-gradient(180deg, #FFFFFF 0%, #F2F5FA 48%, #D8E0EC 100%);
    border-radius: 9px;
    border: 1px solid rgba(255,255,255,0.9);
    box-shadow:
      0 1px 0 rgba(255,255,255,1) inset,
      0 -2px 4px rgba(11,22,40,0.14) inset,
      0 3px 8px rgba(0,0,0,0.32);
  }
  .hamburger span {
    width: 14px;
    height: 2.5px;
    background: var(--navy-light);
    border-radius: 2px;
    box-shadow: 0 1px 0 rgba(255,255,255,0.55);
  }
  .hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .fab-group--float { display: none; }
  .fab-group--nav {
    display: flex;
    position: static;
    flex-direction: row;
    gap: 7px;
    flex-shrink: 0;
    z-index: auto;
  }
  .fab-group--nav .fab {
    width: 32px;
    height: 32px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.28);
  }
  .fab-group--nav .fab svg { width: 15px; height: 15px; }
  .fab-group--nav .fab::before,
  .fab-group--nav .fab::after { display: none; }
  .fab-group--nav .fab:hover { transform: none; }

  /* Hero tablet: keep full-width stacked layout (base styles) */
  .hero-desc         { max-width: 100%; }
  #hero              { padding: calc(var(--header-h) + 36px) 0 72px; align-items: flex-end; width: 100%; }
  #hero .live-bg-inner { background-position: 80% top; }


  /* Carousel: coverflow — peek + scale (services + reviews) */
  .services-carousel,
  .reviews-carousel {
    margin: 0;
    padding: 0;
    overflow: hidden;
  }
  .services-grid,
  .reviews-grid {
    display: flex;
    gap: 16px;
    align-items: center;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 18px 10% 22px;
    scroll-padding-inline: 10%;
    margin: 0;
  }
  .services-grid::-webkit-scrollbar,
  .reviews-grid::-webkit-scrollbar { display: none; }
  .services-grid .service-card,
  .reviews-grid .review-card {
    flex: 0 0 78%;
    width: auto;
    max-width: none;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    scale: var(--card-s, 1);
    box-shadow:
      0 10px 28px rgba(0, 0, 0, 0.22),
      0 1px 0 rgba(255, 255, 255, 0.12) inset;
  }
  .services-grid .service-card.reveal.visible,
  .reviews-grid .review-card.reveal.visible {
    opacity: var(--card-o, 1);
  }
  .services-grid .service-card:hover {
    transform: none;
  }
  .services-carousel-btn,
  .reviews-carousel-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 20%;
    z-index: 5;
    width: 26px;
    height: 26px;
    padding: 0;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.22);
    background: rgba(11, 22, 40, 0.48);
    backdrop-filter: blur(10px) saturate(1.2);
    -webkit-backdrop-filter: blur(10px) saturate(1.2);
    color: var(--white);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.22);
    transition: background 0.2s, border-color 0.2s, opacity 0.2s;
  }
  .services-carousel-btn svg,
  .reviews-carousel-btn svg {
    width: 13px;
    height: 13px;
    stroke-width: 2.25;
  }
  .reviews-carousel-btn { top: 50%; margin-top: -13px; }
  .services-carousel-btn:hover,
  .reviews-carousel-btn:hover {
    background: rgba(11, 22, 40, 0.78);
    border-color: rgba(232,192,112,0.40);
  }
  .services-carousel-btn:disabled,
  .reviews-carousel-btn:disabled {
    opacity: 0.35;
    cursor: default;
  }
  .services-carousel-prev,
  .reviews-carousel-prev { left: 4px; }
  .services-carousel-next,
  .reviews-carousel-next { right: 4px; }
  .service-media .service-title {
    left: 36px;
    max-width: calc(100% - 72px);
  }
  .services-carousel-dots,
  .reviews-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
  }
  .services-carousel-dot,
  .reviews-carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: rgba(255,255,255,0.28);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
  }
  .services-carousel-dot.is-active,
  .reviews-carousel-dot.is-active {
    background: var(--amber);
    transform: scale(1.2);
  }
}

@media (max-width: 1024px) {
  .why-grid       { grid-template-columns: repeat(2, 1fr); }
  .footer-grid    { grid-template-columns: 1fr 1fr; }
  .fs-blocks      { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --header-h: 52px; }

  /* Keep nav row compact — logo stays one line */
  .nav-inner { padding-bottom: 8px; }

  .nav-logo img { height: 36px; }


  /* Hero phone */
  #hero::after {
    height: 56px;
    background: linear-gradient(to bottom, transparent, var(--navy));
  }
  .hero-badge {
    background: var(--glass-shine), rgba(8, 14, 28, 0.90);
  }
  .hero-glass        { padding: 24px 20px; max-width: 100%; }
  .hero-left         { max-width: 100%; }
  #hero .live-bg-inner { background-position: 70% top; }
  .hero-title        { font-size: clamp(1.55rem, 7vw, 2.1rem); }
  .hero-desc         { max-width: 100%; font-size: 0.95rem; margin-bottom: 20px; }
  .hero-btns         { flex-direction: column; align-items: stretch; margin-bottom: 0; }
  .hero-btns .btn    { justify-content: center; width: 100%; }
  #hero              { padding: calc(var(--header-h) + 20px) 0 64px; min-height: auto; }

  .hero-stats      { margin-top: 18px; padding-top: 14px; }
  .hero-stat-num   { font-size: 1.2rem; }
  .hero-stat-label { font-size: 0.9rem; }

  .about-content      { padding: 0; }
  .about-lead,
  .about-value        { padding: 18px 18px; }
  .about-body         { grid-template-columns: 1fr; gap: 12px; }
  .about-values-row   { grid-template-columns: 1fr; gap: 12px; }
  .contact-grid  { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
  .why-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .why-item {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 14px;
    row-gap: 2px;
    align-items: center;
    text-align: left;
    padding: 16px 18px;
  }
  .why-icon {
    grid-row: 1 / 3;
    font-size: 1.55rem;
    margin-bottom: 0;
  }
  .why-title { margin-bottom: 2px; }
  .why-text { line-height: 1.45; }

  .services-carousel,
  .reviews-carousel {
    width: calc(100% + 48px);
    margin-left: -24px;
    margin-right: -24px;
  }
  .services-grid,
  .reviews-grid {
    gap: 12px;
    padding: 16px 12px 20px;
    scroll-padding-inline: 12px;
  }
  .services-grid .service-card,
  .reviews-grid .review-card {
    flex: 0 0 calc(100% - 24px);
  }

  /* Reviews: shift background photo to the right on mobile */
  #reviews .live-bg-inner { background-position: 30% 45%; }
  .form-row      { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .fs-blocks     { grid-template-columns: 1fr; }

  /* Robot vacuum — half size on mobile */
  #robo-vac      { width: 22px; height: 22px; min-width: 22px; min-height: 22px; }
  #robo-vac img  { width: 22px; height: 22px; }

  /* Section padding smaller on mobile */
  #services, #full-services, #reviews, #contact { padding: 64px 0; }
  #about { padding: 72px 0; min-height: 0; }
  #why { padding: 56px 0; }
}

@media (max-width: 640px) {
  .service-pick {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .service-pick-label {
    justify-content: flex-start;
    gap: 12px;
    padding: 12px 16px;
    min-height: 48px;
  }
  .service-pick-emoji {
    width: 26px;
    height: 26px;
  }
  .service-pick-name {
    font-size: 0.95rem;
    letter-spacing: -0.02em;
  }
}

@media (max-width: 480px) {
  .nav-cta-full { display: none; }
  .nav-logo img { height: 32px; }
  .fab-group--nav .fab {
    width: 28px;
    height: 28px;
  }
  .fab-group--nav .fab svg { width: 14px; height: 14px; }
  .nav-cta-btn {
    height: 28px;
    padding: 0 10px;
    font-size: 0.66rem;
  }
  .hamburger {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    gap: 3px;
  }
  .hamburger span {
    width: 12px;
    height: 2px;
  }
  .hamburger.open span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
  .hamburger.open span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }
  .hero-title  { font-size: 1.55rem; }
  .hero-stat-label { font-size: 0.85rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .why-grid    { grid-template-columns: 1fr; }
  .service-body { padding: 18px 18px 22px; }
  .service-media .service-title {
    font-size: 0.88rem;
    padding: 8px 12px;
    left: 34px;
    bottom: 12px;
    max-width: calc(100% - 68px);
  }
  .contact-form-wrap { padding: 28px 20px; }

  /* Reviews: a bit more right + slightly higher framing */
  #reviews .live-bg-inner { background-position: 22% 40%; }
}

/* ─── FLOATING LOGO MARKS (navy fields) ────────────────────────── */
.deco-marks {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
#services > .container,
#full-services > .container,
#why > .container,
#contact > .container,
#footer > .container {
  position: relative;
  z-index: 1;
}
#full-services,
#why,
#contact,
#footer {
  position: relative;
  overflow: hidden;
}
.deco-mark {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--s, 18px);
  height: var(--s, 18px);
}
.deco-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: decoTwinkle 6.5s ease-in-out infinite;
}
.deco-mark:nth-child(1) img { animation-duration: 5.8s; animation-delay: -0.8s; }
.deco-mark:nth-child(2) img { animation-duration: 7.4s; animation-delay: -3.1s; }
.deco-mark:nth-child(3) img { animation-duration: 6.2s; animation-delay: -1.9s; }
.deco-mark:nth-child(4) img { animation-duration: 8s;   animation-delay: -4.6s; }
.deco-mark:nth-child(5) img { animation-duration: 5.4s; animation-delay: -2.4s; }
.deco-mark:nth-child(6) img { animation-duration: 7.1s; animation-delay: -5.2s; }
.deco-mark:nth-child(7) img { animation-duration: 6.8s; animation-delay: -1.2s; }
@keyframes decoTwinkle {
  0%, 100% {
    opacity: 0;
    transform: scale(0.82);
    filter: brightness(0) invert(1) drop-shadow(0 0 0 transparent);
  }
  50% {
    opacity: 1;
    transform: scale(1.12);
    filter:
      brightness(0) invert(1)
      drop-shadow(0 0 6px rgba(255,255,255,1))
      drop-shadow(0 0 14px rgba(255,255,255,0.7));
  }
}
.deco-star {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--s, 2px);
  height: var(--s, 2px);
  border-radius: 50%;
  background: #fff;
  animation-name: starTwinkle;
  animation-duration: 6.8s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-delay: var(--d, 0s);
}
.deco-star:nth-child(odd)  { animation-duration: 5.6s; }
.deco-star:nth-child(even) { animation-duration: 7.6s; }
.deco-star:nth-child(3n)   { animation-duration: 6.4s; }
.deco-star:nth-child(5n)   { animation-duration: 8.2s; }
@keyframes starTwinkle {
  0%, 100% {
    opacity: 0;
    transform: scale(0.5);
    box-shadow: 0 0 0 transparent;
  }
  50% {
    opacity: 1;
    transform: scale(1.35);
    box-shadow:
      0 0 4px 1px rgba(255,255,255,0.95),
      0 0 10px 2px rgba(255,255,255,0.45);
  }
}
@media (max-width: 768px) {
  .deco-mark:nth-child(n+5) { display: none; }
  .deco-star:nth-child(n+14) { display: none; }
}

/* ─── PRICE SWITCH (html[data-prices=on|off]) ────────────────────
   off = hide prices + estimate; on = show everything
   Toggle: window.SHOW_PRICES in index.html <head>
──────────────────────────────────────────────────────────────── */
.js-no-price { display: none !important; }

html[data-prices="off"] .js-price,
html[data-prices="off"] .hero-badge-sub,
html[data-prices="off"] .service-price,
html[data-prices="off"] .fs-price-row-val,
html[data-prices="off"] .module-check-price,
html[data-prices="off"] #price-estimate {
  display: none !important;
}

html[data-prices="off"] span.js-no-price { display: inline !important; }
html[data-prices="off"] p.js-no-price,
html[data-prices="off"] div.js-no-price,
html[data-prices="off"] li.js-no-price { display: block !important; }
