/* ═══════════════ WISE CLEAN CY ═══════════════ */
:root {
  --teal: #0C3A34;
  --teal-deep: #082A26;
  --aqua: #23C9A8;
  --aqua-dark: #17A488;
  --off: #F3F7F6;
  --ink: #10201D;
  --muted: #5A716C;
  --white: #FFFFFF;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(8, 42, 38, 0.12);
  --font-head: "Bricolage Grotesque", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--off);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 { font-family: var(--font-head); line-height: 1.15; }

section { padding: 3.5rem 1.25rem; }

.section-head { text-align: center; max-width: 38rem; margin: 0 auto 2.25rem; }
.section-head h2 { font-size: clamp(1.7rem, 5vw, 2.4rem); font-weight: 700; color: var(--teal); }
.section-head p { color: var(--muted); margin-top: .5rem; }

/* ─────────── Buttons ─────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:active { transform: scale(.97); }

.btn-call {
  background: var(--aqua);
  color: var(--teal-deep);
  padding: .8rem 1.4rem;
  box-shadow: 0 6px 18px rgba(35, 201, 168, .35);
}
.btn-call:hover { background: #35dcbb; }

.btn-header { padding: .55rem 1rem; font-size: .9rem; }

/* ─────────── Header ─────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(12, 58, 52, .92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.header-inner {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: .6rem 1rem;
}
.brand { display: flex; align-items: center; gap: .6rem; text-decoration: none; color: var(--white); min-width: 0; }
.brand-logo { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; flex-shrink: 0; box-shadow: 0 0 0 2px rgba(35,201,168,.5); }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; min-width: 0; }
.brand-text strong { font-family: var(--font-head); font-size: 1rem; letter-spacing: .04em; white-space: nowrap; }
.brand-text small { font-size: .66rem; color: rgba(255,255,255,.65); letter-spacing: .02em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.header-actions { display: flex; align-items: center; gap: .6rem; flex-shrink: 0; }

.lang-toggle {
  display: flex;
  background: rgba(255,255,255,.12);
  border-radius: 999px;
  padding: 3px;
}
.lang-btn {
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.75);
  font: 700 .78rem var(--font-body);
  padding: .35rem .6rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
.lang-btn.is-active { background: var(--aqua); color: var(--teal-deep); }

/* ─────────── Hero ─────────── */
.hero {
  position: relative;
  min-height: 82svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
  padding: 5rem 1.25rem;
}
.hero-media { position: absolute; inset: 0; }
.hero-video { width: 100%; height: 100%; object-fit: cover; background: var(--teal-deep); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,42,38,.55) 0%, rgba(8,42,38,.35) 45%, rgba(8,42,38,.72) 100%);
}
.hero-content { position: relative; max-width: 42rem; }
.hero-eyebrow {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--aqua);
  margin-bottom: 1rem;
}
.hero-title {
  font-size: clamp(2.2rem, 8vw, 3.8rem);
  font-weight: 800;
  text-shadow: 0 2px 24px rgba(0,0,0,.35);
}
.hero-sub {
  margin: 1rem auto 1.8rem;
  max-width: 32rem;
  font-size: clamp(1rem, 3vw, 1.15rem);
  color: rgba(255,255,255,.92);
}
.btn-hero { font-size: clamp(1rem, 3.4vw, 1.2rem); padding: 1rem 1.8rem; }
.hero-hours { margin-top: 1.1rem; font-size: .85rem; color: rgba(255,255,255,.75); }

/* ─────────── Trust strip ─────────── */
.trust { background: var(--teal); padding: 1.4rem 1.25rem; }
.trust-list {
  list-style: none;
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 1.5rem;
}
.trust-list li {
  display: flex;
  align-items: center;
  gap: .65rem;
  color: rgba(255,255,255,.92);
  font-size: .86rem;
  font-weight: 600;
}
.trust-list svg { color: var(--aqua); flex-shrink: 0; }

/* ─────────── Services ─────────── */
.services { max-width: 72rem; margin: 0 auto; }
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(12,58,52,.05);
}
.service-icon {
  width: 54px; height: 54px;
  flex-shrink: 0;
  border-radius: 14px;
  display: grid; place-items: center;
  background: rgba(35,201,168,.12);
  color: var(--teal);
}
.service-card h3 { font-size: 1rem; font-weight: 600; color: var(--ink); font-family: var(--font-body); }

/* ─────────── Before / After ─────────── */
.beforeafter { background: var(--white); }
.ba-grid {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.ba-item { margin: 0; }
.ba-item figcaption {
  text-align: center;
  margin-top: .7rem;
  font-weight: 700;
  color: var(--teal);
  font-family: var(--font-head);
  font-size: 1.05rem;
}
.ba {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  user-select: none;
  -webkit-user-select: none;
  background: var(--teal-deep);
  touch-action: pan-y;
  cursor: ew-resize;
}
.ba-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.ba-before-clip {
  position: absolute; inset: 0;
  clip-path: inset(0 calc(100% - var(--pos)) 0 0);
}
.ba-label {
  position: absolute;
  top: .8rem;
  padding: .25rem .7rem;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  z-index: 3;
  pointer-events: none;
}
.ba-label-before { left: .8rem; background: rgba(8,42,38,.72); color: #fff; }
.ba-label-after { right: .8rem; background: var(--aqua); color: var(--teal-deep); }
.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: var(--pos);
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  width: 0;
}
.ba-handle-line {
  position: absolute; top: 0; bottom: 0;
  width: 3px;
  background: var(--white);
  box-shadow: 0 0 10px rgba(0,0,0,.35);
}
.ba-handle-knob {
  position: relative;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--white);
  color: var(--teal);
  display: grid; place-items: center;
  box-shadow: 0 4px 14px rgba(0,0,0,.3);
}
.ba-range {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: 0;
  pointer-events: none;
  z-index: 4;
  margin: 0;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
}
.ba-range::-webkit-slider-thumb { -webkit-appearance: none; width: 44px; height: 100%; }
.ba-range::-moz-range-thumb { width: 44px; height: 300px; border: 0; background: transparent; }
.ba-range:focus-visible ~ .ba-handle .ba-handle-knob,
.ba:has(.ba-range:focus-visible) .ba-handle-knob {
  outline: 3px solid var(--aqua);
  outline-offset: 2px;
}

/* ─────────── Reviews ─────────── */
.reviews { max-width: 72rem; margin: 0 auto; }
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.review-card {
  margin: 0;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(12,58,52,.05);
  display: flex;
  flex-direction: column;
  gap: .9rem;
}
.review-stars { display: flex; gap: 2px; color: #F5B301; }
.review-card blockquote {
  margin: 0;
  font-size: .95rem;
  color: var(--ink);
  line-height: 1.55;
  flex: 1;
}
.review-card figcaption { display: flex; align-items: center; gap: .7rem; }
.review-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--aqua);
  display: grid; place-items: center;
  font: 700 1.05rem var(--font-head);
  flex-shrink: 0;
}
.review-meta { display: flex; flex-direction: column; line-height: 1.25; }
.review-meta strong { font-size: .92rem; color: var(--teal); }
.review-meta small { font-size: .78rem; color: var(--muted); }

/* ─────────── FAQ ─────────── */
.faq { max-width: 46rem; margin: 0 auto; }
.faq-list { display: grid; gap: .8rem; }
.faq-item {
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(12,58,52,.05);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 1.25rem;
  font-weight: 700;
  color: var(--teal);
  font-size: .95rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-chevron { flex-shrink: 0; color: var(--aqua); transition: transform .2s ease; }
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-item p {
  padding: 0 1.25rem 1.15rem;
  color: var(--muted);
  font-size: .92rem;
}

/* ─────────── How it works ─────────── */
.how { max-width: 72rem; margin: 0 auto; }
.how-steps {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  counter-reset: step;
}
.how-step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.6rem;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid rgba(12,58,52,.05);
}
.how-num {
  display: inline-grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--aqua);
  font: 800 1.15rem var(--font-head);
  margin-bottom: .8rem;
}
.how-step h3 { color: var(--teal); font-size: 1.15rem; font-weight: 700; }
.how-step p { color: var(--muted); font-size: .92rem; margin-top: .35rem; }

/* ─────────── CTA band ─────────── */
.cta-band {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-deep) 100%);
  color: var(--white);
  text-align: center;
  padding: 4rem 1.25rem;
}
.cta-band h2 { font-size: clamp(1.6rem, 5.5vw, 2.4rem); font-weight: 800; }
.cta-band > p { color: rgba(255,255,255,.8); margin-top: .6rem; }
.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  margin-top: 1.6rem;
  background: var(--aqua);
  color: var(--teal-deep);
  font: 800 clamp(1.5rem, 6.5vw, 2.2rem) var(--font-head);
  letter-spacing: .03em;
  padding: 1rem 2rem;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 10px 34px rgba(35,201,168,.4);
  transition: transform .15s ease;
}
.cta-phone:hover { transform: translateY(-2px); }
.cta-phone:active { transform: scale(.98); }
.cta-alt { margin-top: 1rem; color: rgba(255,255,255,.75); font-size: .95rem; }
.cta-alt a { color: var(--aqua); font-weight: 700; text-decoration: none; }
.cta-alt a:hover { text-decoration: underline; }

/* ─────────── Contact ─────────── */
.contact { display: grid; place-items: center; }
.contact-card {
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(12,58,52,.05);
  padding: 2.2rem 1.6rem;
  max-width: 26rem;
  width: 100%;
  text-align: center;
}
.contact-logo { width: 84px; height: 84px; border-radius: 50%; object-fit: cover; margin: 0 auto 1rem; box-shadow: 0 0 0 3px rgba(35,201,168,.4); }
.contact-card h2 { color: var(--teal); font-size: 1.6rem; margin-bottom: 1.2rem; }
.contact-actions { display: flex; flex-direction: column; gap: .7rem; }
.contact-actions .btn { justify-content: center; width: 100%; padding: .9rem 1rem; }
.btn-secondary-num { background: rgba(35,201,168,.15); color: var(--teal); box-shadow: none; }
.btn-secondary-num:hover { background: rgba(35,201,168,.28); }
.btn-fb { background: #1877F2; color: #fff; padding: .9rem 1rem; box-shadow: 0 6px 18px rgba(24,119,242,.3); }
.btn-fb:hover { background: #3b8bf4; }
.btn-ig {
  background: linear-gradient(45deg, #F58529, #DD2A7B 55%, #8134AF);
  color: #fff;
  padding: .9rem 1rem;
  box-shadow: 0 6px 18px rgba(221,42,123,.3);
}
.btn-ig:hover { filter: brightness(1.08); }
.contact-meta { margin-top: 1.5rem; display: grid; gap: .8rem; }
.contact-meta dt { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.contact-meta dd { font-weight: 600; color: var(--ink); }

/* ─────────── Footer ─────────── */
.site-footer {
  background: var(--teal-deep);
  color: rgba(255,255,255,.8);
  text-align: center;
  padding: 2.5rem 1.25rem;
}
.footer-logo { width: 66px; height: 66px; border-radius: 50%; object-fit: cover; margin: 0 auto .8rem; }
.footer-tagline { font-family: var(--font-head); letter-spacing: .2em; text-transform: uppercase; font-size: .8rem; color: var(--aqua); }
.footer-links { margin-top: .9rem; display: flex; justify-content: center; gap: .6rem; color: rgba(255,255,255,.4); }
.footer-links a { color: #fff; font-weight: 600; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.3); }
.footer-links a:hover { border-color: var(--aqua); color: var(--aqua); }
.footer-copy { margin-top: 1.1rem; font-size: .8rem; }

/* ─────────── Tablet & desktop ─────────── */
@media (min-width: 640px) {
  .trust-list { grid-template-columns: repeat(4, 1fr); }
  .trust-list li { justify-content: center; text-align: center; flex-direction: column; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .how-steps { grid-template-columns: repeat(3, 1fr); }
  .ba-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  section { padding: 4.5rem 2rem; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .service-card { flex-direction: column; text-align: center; align-items: center; padding: 1.8rem 1.4rem; gap: 1.1rem; }
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
  .ba-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

/* ─────────── Reduced motion ─────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
