/* ==========================================================================
   DIM AUTO DETAILING — landing styles
   Palette derived from the brand logo: lime→green gradient on near-black.
   Single breakpoint: 860px. Fonts: Oswald (display) + Manrope (body).
   ========================================================================== */

:root {
  /* surfaces — near-black so the brand's black-bg imagery blends seamlessly */
  --bg: #080908;
  --bg-soft: #0E110E;
  --surface: #141813;
  --surface-2: #1B201A;
  --surface-3: #232A21;

  /* greens — sampled from the logo gradient */
  --acid: #72E229;          /* primary bright lime */
  --acid-bright: #8CFD33;   /* highlight / glow */
  --green: #46C13A;         /* secondary green */
  --green-deep: #235D26;    /* deep gradient end */
  --grad: linear-gradient(118deg, #8CFD33 0%, #5FDD2B 40%, #2BA535 100%);
  --grad-soft: linear-gradient(118deg, rgba(140,253,51,0.16), rgba(43,165,53,0.10));

  /* text */
  --text: #F3F6F0;
  --text-soft: #B2B8AE;
  --text-mute: #767C72;
  --on-acid: #081606;       /* dark ink for text on lime */

  /* lines & effects */
  --line: rgba(255, 255, 255, 0.09);
  --line-2: rgba(255, 255, 255, 0.16);
  --line-acid: rgba(114, 226, 41, 0.34);
  --glow: 0 0 0 1px rgba(114,226,41,0.28), 0 18px 50px -22px rgba(114,226,41,0.45);
  --shadow: 0 28px 70px -34px rgba(0, 0, 0, 0.85);
  --shadow-card: 0 20px 44px -28px rgba(0, 0, 0, 0.9);

  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 26px;

  --container: 1240px;
  --pad-x: 32px;
  --header-h: 70px;

  --display: "Oswald", "Arial Narrow", system-ui, sans-serif;
  --sans: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
}

/* ----- reset / base ----- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 14px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 17px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
ul { list-style: none; padding: 0; }
svg { display: block; }
::selection { background: var(--acid); color: var(--on-acid); }

:focus-visible { outline: 2px solid var(--acid); outline-offset: 3px; border-radius: 4px; }

/* subtle ambient backdrop */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(900px 520px at 82% -8%, rgba(114, 226, 41, 0.10), transparent 60%),
    radial-gradient(760px 600px at -8% 18%, rgba(43, 165, 53, 0.07), transparent 60%);
}

/* ----- typography ----- */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #fff;
}
h2 { font-size: clamp(2.1rem, 5vw, 3.5rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); letter-spacing: 0.02em; }

em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--acid);
}

.eyebrow {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--acid);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--grad);
  border-radius: 2px;
}

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ----- layout ----- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

section { position: relative; }
.section {
  padding-block: clamp(64px, 9vw, 120px);
}
.section--soft { background: var(--bg-soft); }

.section-head {
  max-width: 760px;
  margin-bottom: clamp(34px, 5vw, 58px);
}
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 16px; }
.section-head p {
  margin-top: 18px;
  color: var(--text-soft);
  font-size: 1.05rem;
  max-width: 60ch;
}
.section-head.center p { margin-inline: auto; }

/* ----- buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .25s ease, background .25s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--grad);
  color: var(--on-acid);
  box-shadow: 0 14px 36px -16px rgba(114, 226, 41, 0.6);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 44px -16px rgba(114, 226, 41, 0.8); }
.btn-outline {
  border-color: var(--line-2);
  color: #fff;
  background: rgba(255,255,255,0.02);
}
.btn-outline:hover { border-color: var(--line-acid); color: var(--acid); transform: translateY(-2px); }
.btn-ghost { color: var(--text-soft); padding-inline: 14px; }
.btn-ghost:hover { color: #fff; }
.btn-lg { padding: 17px 34px; font-size: 1.02rem; }
.btn-sm { padding: 10px 18px; font-size: 0.85rem; }
.btn-block { width: 100%; }

/* loading spinner inside submit btn */
.btn .spinner {
  width: 17px; height: 17px;
  border: 2px solid rgba(8,22,6,0.35);
  border-top-color: var(--on-acid);
  border-radius: 50%;
  display: none;
  animation: spin .7s linear infinite;
}
.btn.is-loading .spinner { display: inline-block; }
.btn.is-loading .btn-label { opacity: .6; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(8, 9, 8, 0.82);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: var(--line);
}
.site-header .container {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}

.brand { display: inline-flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand img, .brand-logo { height: 46px; width: auto; display: block; }
.footer-brand .brand-logo { height: 62px; }
.brand-name {
  font-family: var(--display);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 1.16rem;
  line-height: 1;
  color: #fff;
}
.brand-name span { color: var(--acid); }

.nav {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav a {
  position: relative;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--text-soft);
  padding: 8px 14px;
  transition: color .2s ease;
}
.nav a:hover, .nav a.active { color: #fff; }
.nav-indicator {
  position: absolute;
  bottom: 2px;
  height: 2px;
  background: var(--grad);
  border-radius: 2px;
  transition: left .3s ease, width .3s ease;
  pointer-events: none;
}
.nav-footer { display: none; }

.header-actions { margin-left: auto; display: flex; align-items: center; gap: 12px; }

.burger {
  display: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  position: relative;
  flex-shrink: 0;
}
.burger span {
  position: absolute;
  left: 50%; top: 50%;
  width: 19px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform .3s ease, opacity .2s ease;
}
.burger span:nth-child(1) { transform: translate(-50%, -7px); }
.burger span:nth-child(3) { transform: translate(-50%, 5px); }
.nav-open .burger span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
.nav-open .burger span:nth-child(2) { opacity: 0; }
.nav-open .burger span:nth-child(3) { transform: translate(-50%, -50%) rotate(-45deg); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-h) + 40px);
  padding-bottom: 64px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: .55; }
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8,9,8,0.55) 0%, rgba(8,9,8,0.25) 38%, rgba(8,9,8,0.85) 86%, var(--bg) 100%),
    linear-gradient(95deg, rgba(8,9,8,0.92) 8%, rgba(8,9,8,0.4) 52%, transparent 80%);
}
.hero-inner { max-width: 720px; }
.hero .eyebrow { margin-bottom: 22px; }
.hero h1 {
  font-family: var(--display);
  text-transform: uppercase;
  font-weight: 700;
  font-size: clamp(2.7rem, 7.6vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: 0.005em;
  color: #fff;
}
.hero h1 em { display: inline; }
.hero-sub {
  margin-top: 24px;
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  color: var(--text-soft);
  max-width: 54ch;
}
.hero-cta { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero-stats {
  margin-top: 52px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 40px;
}
.hero-stat .num {
  font-family: var(--display);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1;
  color: #fff;
}
.hero-stat .num span { color: var(--acid); }
.hero-stat .lbl { font-size: 0.82rem; color: var(--text-mute); text-transform: uppercase; letter-spacing: 0.12em; margin-top: 6px; }

.scroll-cue {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 26px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--text-mute);
}
.scroll-cue svg { width: 16px; height: 16px; color: var(--acid); animation: bob 1.8s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

/* ==========================================================================
   SERVICES
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.service-card:hover { transform: translateY(-5px); border-color: var(--line-acid); box-shadow: var(--shadow-card); }
.service-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.service-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.service-card:hover .service-media img { transform: scale(1.06); }
.service-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(8,9,8,0.82) 100%);
}
.service-price {
  position: absolute;
  left: 14px; bottom: 14px;
  z-index: 1;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: 0.02em;
  color: #fff;
  background: rgba(8,9,8,0.55);
  border: 1px solid var(--line-acid);
  padding: 6px 13px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.service-price b { color: var(--acid); font-weight: 700; }
.service-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.service-body h3 { color: #fff; }
.service-body p { margin-top: 10px; color: var(--text-soft); font-size: 0.96rem; flex: 1; }
.service-cta {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--acid);
  transition: gap .2s ease;
}
.service-cta svg { width: 16px; height: 16px; transition: transform .2s ease; }
.service-card:hover .service-cta { gap: 12px; }
.service-card:hover .service-cta svg { transform: translateX(3px); }

/* ==========================================================================
   PRICING
   ========================================================================== */
.price-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.price-group {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 26px 28px;
}
.price-group.span-2 { grid-column: 1 / -1; }
.price-group h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  padding-bottom: 16px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.price-group h3 svg { width: 22px; height: 22px; color: var(--acid); flex-shrink: 0; }
.price-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px dashed var(--line);
}
.price-row:last-child { border-bottom: none; }
.price-row .pname { color: var(--text-soft); font-size: 0.98rem; }
.price-row .dots { flex: 1; border-bottom: 1px dotted rgba(255,255,255,0.16); transform: translateY(-4px); }
.price-row .pval {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.02rem;
  color: #fff;
  white-space: nowrap;
}
.price-row .pval b { color: var(--acid); }
.price-note {
  margin-top: 20px;
  font-size: 0.9rem;
  color: var(--text-mute);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.price-note svg { width: 18px; height: 18px; color: var(--acid); flex-shrink: 0; margin-top: 2px; }

/* ==========================================================================
   ABOUT / PHILOSOPHY
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.about-text h2 { margin-bottom: 22px; }
.about-text p { color: var(--text-soft); margin-bottom: 16px; }
.about-text p strong { color: #fff; font-weight: 600; }
.about-points { margin-top: 26px; display: grid; gap: 14px; }
.about-point { display: flex; gap: 14px; align-items: flex-start; }
.about-point .ic {
  width: 42px; height: 42px;
  flex-shrink: 0;
  display: grid; place-items: center;
  border-radius: 12px;
  border: 1px solid var(--line-acid);
  background: var(--grad-soft);
}
.about-point .ic svg { width: 20px; height: 20px; color: var(--acid); }
.about-point h4 { font-family: var(--sans); text-transform: none; font-size: 1rem; font-weight: 700; color: #fff; letter-spacing: 0; }
.about-point p { font-size: 0.92rem; margin: 4px 0 0; }
.about-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 5;
}
.about-media img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute;
  left: 18px; bottom: 18px;
  background: rgba(8,9,8,0.7);
  border: 1px solid var(--line-acid);
  backdrop-filter: blur(6px);
  border-radius: 14px;
  padding: 14px 18px;
}
.about-badge .num { font-family: var(--display); font-weight: 700; font-size: 1.8rem; color: var(--acid); line-height: 1; }
.about-badge .lbl { font-size: 0.8rem; color: var(--text-soft); margin-top: 4px; }

/* ==========================================================================
   BENEFITS / COMPARISON
   ========================================================================== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.benefit-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 28px 24px;
  transition: transform .3s ease, border-color .3s ease;
}
.benefit-card:hover { transform: translateY(-4px); border-color: var(--line-acid); }
.benefit-card .ic {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: var(--grad-soft);
  border: 1px solid var(--line-acid);
  margin-bottom: 18px;
}
.benefit-card .ic svg { width: 26px; height: 26px; color: var(--acid); }
.benefit-card h3 { font-size: 1.15rem; color: #fff; margin-bottom: 10px; }
.benefit-card p { color: var(--text-soft); font-size: 0.94rem; }

/* ceramic vs wax comparison */
.compare {
  margin-top: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  overflow: hidden;
}
.compare-head {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  background: var(--surface-2);
  border-bottom: 1px solid var(--line);
}
.compare-head > div { padding: 18px 22px; font-family: var(--display); text-transform: uppercase; letter-spacing: 0.04em; font-weight: 600; }
.compare-head .c-wax { color: var(--text-soft); }
.compare-head .c-ceramic { color: var(--acid); }
.compare-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  border-bottom: 1px solid var(--line);
}
.compare-row:last-child { border-bottom: none; }
.compare-row > div { padding: 16px 22px; font-size: 0.95rem; color: var(--text-soft); }
.compare-row .c-param { color: #fff; font-weight: 600; }
.compare-row .c-ceramic { color: var(--text); }

/* ==========================================================================
   PROCESS
   ========================================================================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: step;
}
.process-step {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 30px 24px 26px;
}
.process-step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--display);
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  margin-bottom: 16px;
}
.process-step h3 { font-size: 1.1rem; color: #fff; margin-bottom: 8px; }
.process-step p { color: var(--text-soft); font-size: 0.92rem; }

/* ==========================================================================
   VIDEOS / SWIPERS
   ========================================================================== */
.swiper { overflow: hidden; }
.media-swiper { overflow: hidden; }
.media-swiper .swiper-slide { width: min(420px, 78vw); height: auto; }
.video-card, .gallery-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #000;
}
.video-media { position: relative; aspect-ratio: 9 / 16; background: #000; }
.video-media video { width: 100%; height: 100%; object-fit: cover; }
.video-media.playing .video-play { opacity: 0; pointer-events: none; }
.video-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(8,9,8,0.1), rgba(8,9,8,0.5));
  transition: opacity .25s ease;
}
.video-play .pp {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--grad);
  display: grid; place-items: center;
  box-shadow: 0 12px 30px -10px rgba(114,226,41,0.7);
  transition: transform .2s ease;
}
.video-play:hover .pp { transform: scale(1.08); }
.video-play .pp svg { width: 26px; height: 26px; color: var(--on-acid); margin-left: 3px; }

/* gallery */
.gallery-card { aspect-ratio: 4 / 5; display: block; position: relative; }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gallery-card:hover img { transform: scale(1.05); }
.gallery-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(8,9,8,0.5));
  opacity: 0; transition: opacity .3s ease;
}
.gallery-card:hover::after { opacity: 1; }

/* swiper controls */
.swiper-nav { display: flex; gap: 10px; }
.swiper-arrow {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  display: grid; place-items: center;
  color: #fff;
  transition: all .2s ease;
}
.swiper-arrow:hover { border-color: var(--line-acid); color: var(--acid); }
.swiper-arrow.swiper-button-disabled { opacity: .3; cursor: default; }
.swiper-arrow svg { width: 20px; height: 20px; }
.swiper-pagination { position: static; margin-top: 22px; width: 100%; text-align: center; display: block; }
.swiper-pagination .swiper-pagination-bullet { margin: 0 4px; }
.swiper-pagination-bullet { background: var(--text-mute); opacity: .5; }
.swiper-pagination-bullet-active { background: var(--acid); opacity: 1; }
.slider-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; }

/* ==========================================================================
   BEFORE / AFTER
   ========================================================================== */
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.result-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  position: relative;
  aspect-ratio: 3 / 4;
  display: block;
}
.result-card img { width: 100%; height: 100%; object-fit: cover; }
.result-card .tag {
  position: absolute;
  top: 12px; left: 12px;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--on-acid);
  background: var(--grad);
  padding: 5px 11px;
  border-radius: 999px;
}

/* ==========================================================================
   REVIEWS
   ========================================================================== */
.reviews-lead { max-width: 740px; }
.review-quote {
  font-family: var(--display);
  font-weight: 500;
  text-transform: none;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  line-height: 1.3;
  color: #fff;
  letter-spacing: 0;
}
.reviews-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 34px;
}
.review-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 26px 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.review-stars { display: flex; gap: 3px; color: var(--acid); }
.review-stars svg { width: 17px; height: 17px; }
.review-card blockquote { color: var(--text); font-size: 1rem; line-height: 1.6; flex: 1; }
.review-author { display: flex; align-items: center; gap: 11px; }
.review-author .av {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--grad);
  display: grid; place-items: center;
  font-family: var(--display);
  font-weight: 700;
  color: var(--on-acid);
  font-size: 1.05rem;
}
.review-author .nm { font-weight: 600; color: #fff; font-size: 0.95rem; }
.review-author .meta { font-size: 0.82rem; color: var(--text-mute); }
.review-photos .slider-head { margin-bottom: 22px; }
.review-photo { display: block; aspect-ratio: 9 / 16; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.review-photo img { width: 100%; height: 100%; object-fit: cover; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list { max-width: 860px; margin-inline: auto; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-weight: 500;
  font-size: 1.02rem;
  color: #fff;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .q-ic {
  margin-left: auto;
  width: 26px; height: 26px;
  flex-shrink: 0;
  position: relative;
  transition: transform .3s ease;
}
.faq-item .q-ic::before, .faq-item .q-ic::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  background: var(--acid); border-radius: 2px;
  transform: translate(-50%, -50%);
}
.faq-item .q-ic::before { width: 14px; height: 2px; }
.faq-item .q-ic::after { width: 2px; height: 14px; transition: transform .3s ease; }
.faq-item[open] .q-ic::after { transform: translate(-50%, -50%) scaleY(0); }
.faq-item .faq-a { padding: 0 24px 22px; color: var(--text-soft); font-size: 0.98rem; }
.faq-item .faq-a p + p { margin-top: 10px; }

/* ==========================================================================
   CTA banner
   ========================================================================== */
.cta {
  position: relative;
  overflow: hidden;
}
.cta-1 {
  margin-top: clamp(-60px, -6vw, -30px);
  margin-bottom: clamp(24px, 4vw, 52px);
}
.cta-inner {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-acid);
  background:
    var(--grad-soft),
    radial-gradient(700px 300px at 90% 10%, rgba(114,226,41,0.12), transparent 60%),
    var(--surface);
  padding: clamp(36px, 6vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-inner h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
.cta-inner p { color: var(--text-soft); margin-top: 12px; max-width: 46ch; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ==========================================================================
   CONTACT / LOCATION
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}
.contact-cards { display: grid; gap: 14px; }
.contact-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 22px 24px;
  transition: border-color .2s ease;
}
.contact-card:hover { border-color: var(--line-acid); }
.contact-card .ic {
  width: 46px; height: 46px; flex-shrink: 0;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--grad-soft);
  border: 1px solid var(--line-acid);
}
.contact-card .ic svg { width: 22px; height: 22px; color: var(--acid); }
.contact-card .lbl { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--text-mute); margin-bottom: 5px; }
.contact-card .val { color: #fff; font-size: 1.08rem; font-weight: 600; }
.contact-card .val a:hover { color: var(--acid); }
.contact-card .sub { color: var(--text-soft); font-size: 0.92rem; margin-top: 3px; }
.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 380px;
  height: 100%;
}
.contact-map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; filter: invert(0.92) hue-rotate(150deg) saturate(0.7) brightness(0.9); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: #050605; border-top: 1px solid var(--line); padding-top: clamp(54px, 7vw, 84px); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
.footer-brand .brand { margin-bottom: 18px; }
.footer-brand p { color: var(--text-soft); font-size: 0.95rem; max-width: 38ch; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 44px; height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--text-soft);
  transition: all .2s ease;
}
.footer-social a:hover { border-color: var(--line-acid); color: var(--acid); transform: translateY(-2px); }
.footer-social svg { width: 20px; height: 20px; }
.footer-col h4 { font-family: var(--display); text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.92rem; color: #fff; margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a, .footer-col p { color: var(--text-soft); font-size: 0.95rem; transition: color .2s ease; }
.footer-col a:hover { color: var(--acid); }
.footer-seo {
  padding-block: 34px;
  border-bottom: 1px solid var(--line);
  color: var(--text-mute);
  font-size: 0.86rem;
  line-height: 1.7;
}
.footer-seo h2 { font-size: 1rem; color: var(--text-soft); margin-bottom: 12px; font-family: var(--sans); text-transform: none; letter-spacing: 0; font-weight: 700; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap;
  padding-block: 26px;
  font-size: 0.85rem;
  color: var(--text-mute);
}
.footer-bottom a:hover { color: var(--acid); }
.footer-credit { display: inline-flex; align-items: center; gap: 7px; }
.footer-credit svg { width: 15px; height: 15px; color: var(--acid); }
.footer-credit a { color: var(--text-soft); }
.footer-credit a:hover { color: var(--acid); }

/* ==========================================================================
   BOOKING MODAL
   ========================================================================== */
.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.booking-modal.is-open { display: flex; }
body.booking-open { overflow: hidden; }
.booking-overlay {
  position: absolute; inset: 0;
  background: rgba(4, 5, 4, 0.74);
  backdrop-filter: blur(6px);
  animation: fade .25s ease;
}
.booking-dialog {
  position: relative;
  width: 100%;
  max-width: 460px;
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 34px 32px 32px;
  max-height: calc(100dvh - 40px);
  overflow-y: auto;
  animation: pop .3s cubic-bezier(.2,.7,.3,1.1);
}
@keyframes fade { from { opacity: 0; } }
@keyframes pop { from { opacity: 0; transform: translateY(16px) scale(.97); } }
.booking-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--text-soft);
  transition: all .2s ease;
}
.booking-close:hover { color: #fff; border-color: var(--line-2); transform: rotate(90deg); }
.booking-close svg { width: 18px; height: 18px; }
.booking-dialog .eyebrow { margin-bottom: 12px; }
.booking-dialog h3 { font-size: 1.6rem; color: #fff; margin-bottom: 8px; }
.booking-lead { color: var(--text-soft); font-size: 0.95rem; margin-bottom: 22px; }

.field { display: block; margin-bottom: 16px; }
.field-label { display: block; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-mute); margin-bottom: 8px; }
.field-label em { -webkit-text-fill-color: var(--acid); color: var(--acid); }
.field input, .field textarea, .field select {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 16px;
  color: #fff;
  font-family: var(--sans);
  font-size: 1rem;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field textarea { resize: vertical; min-height: 56px; }
.field select {
  appearance: none;
  cursor: pointer;
  padding-right: 42px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' stroke='%2372E229' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 8 5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.field select option { background: var(--surface); color: var(--text); }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--line-acid);
  box-shadow: 0 0 0 3px rgba(114,226,41,0.14);
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-mute); }
.booking-error { color: #ff8b6b; font-size: 0.88rem; min-height: 1.2em; margin-bottom: 12px; }
.booking-success { text-align: center; padding: 14px 4px 6px; }
.booking-success-ic {
  width: 76px; height: 76px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--grad-soft);
  border: 1px solid var(--line-acid);
  display: grid; place-items: center;
}
.booking-success-ic svg { width: 38px; height: 38px; color: var(--acid); }
.booking-success h3 { margin-bottom: 10px; }
.booking-success p { color: var(--text-soft); margin-bottom: 24px; }

/* ==========================================================================
   SCROLL TOP
   ========================================================================== */
.scroll-top {
  position: fixed;
  right: 24px; bottom: 24px;
  z-index: 90;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--grad);
  display: grid; place-items: center;
  color: var(--on-acid);
  box-shadow: 0 14px 34px -14px rgba(114,226,41,0.7);
  opacity: 0; visibility: hidden;
  transform: translateY(12px);
  transition: all .3s ease;
}
.scroll-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top svg { width: 22px; height: 22px; }

/* ==========================================================================
   REVEAL ON SCROLL
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

/* ==========================================================================
   RESPONSIVE — single breakpoint 860px
   ========================================================================== */
@media (max-width: 860px) {
  :root { --pad-x: 20px; }
  body { font-size: 16px; }

  .nav {
    position: fixed;
    left: 0; right: 0;
    top: var(--header-h);
    transform: none;
    height: calc(100dvh - var(--header-h));
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    background: var(--bg);
    padding: 22px var(--pad-x) 40px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: transform .35s ease, opacity .3s ease, visibility .3s;
    z-index: 90;
  }
  .nav.open { opacity: 1; visibility: visible; transform: translateX(0); }
  .nav a { font-size: 1.4rem; padding: 16px 0; border-bottom: 1px solid var(--line); letter-spacing: 0.04em; }
  .nav-indicator { display: none; }
  .nav-footer {
    display: block;
    margin-top: auto;
    padding-top: 24px;
  }
  .nav-footer .btn { width: 100%; margin-bottom: 16px; }
  .nav-footer .nf-line { display: flex; align-items: center; gap: 12px; color: var(--text-soft); font-size: 0.95rem; padding: 8px 0; }
  .nav-footer .nf-line svg { width: 18px; height: 18px; color: var(--acid); flex-shrink: 0; }
  .burger { display: block; }
  .brand img, .brand-logo { height: 40px; }
  .footer-brand .brand-logo { height: 54px; }
  .header-actions .btn-cta-desktop { display: none; }
  body.nav-open { overflow: hidden; }

  .services-grid,
  .price-wrap,
  .benefits-grid,
  .process-grid,
  .results-grid,
  .reviews-cards { grid-template-columns: 1fr; }
  .price-group.span-2 { grid-column: auto; }

  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-media { aspect-ratio: 4 / 3; }
  .contact-map { min-height: 320px; }

  .compare-head, .compare-row { grid-template-columns: 1fr; }
  .compare-head { display: none; }
  .compare-row { padding: 6px 0; }
  .compare-row > div { padding: 10px 20px; }
  .compare-row .c-param { background: var(--surface-2); }
  .compare-row .c-wax::before { content: "Твердий віск: "; color: var(--text-mute); }
  .compare-row .c-ceramic::before { content: "Кераміка: "; color: var(--acid); }

  .cta-inner { flex-direction: column; align-items: flex-start; text-align: left; }

  .hero { min-height: auto; padding-top: calc(var(--header-h) + 70px); padding-bottom: 80px; }
  .hero-bg img { opacity: .4; }
  .scroll-cue { display: none; }
  .hero-stats { gap: 14px 28px; }

  .slider-head { flex-direction: column; align-items: flex-start; gap: 18px; }
  /* full-bleed sliders, clipped at viewport edges (no horizontal page overflow) */
  .media-swiper { margin-inline: calc(-1 * var(--pad-x)); padding-inline: var(--pad-x); }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (min-width: 861px) {
  .nav-footer { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
