/* ============================================================
   XFOIL® — Carbon / Motorsport Design System
   ============================================================ */

:root {
  --bg: #0a0b0d;
  --bg-2: #0f1114;
  --bg-3: #14171c;
  --card: #15181d;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: #eceef1;
  --muted: #9aa1ab;
  --red: #e8222d;
  --red-hot: #ff4d3a;
  --gold: #d8b56a;
  --green: #38c172;
  --radius: 14px;
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Barlow", "Segoe UI", sans-serif;
  --header-h: 72px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* carbon texture + ambient glow */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(1100px 500px at 80% -10%, rgba(232, 34, 45, 0.07), transparent 60%),
    radial-gradient(900px 600px at -10% 30%, rgba(255, 255, 255, 0.03), transparent 55%),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.012) 0 2px, transparent 2px 6px),
    var(--bg);
}

::selection { background: var(--red); color: #fff; }

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

.wrap { width: min(1200px, 92%); margin: 0 auto; }

/* ---------- Typography ---------- */
h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.015em;
  line-height: 1.05;
}

h1 { font-size: clamp(3rem, 7.5vw, 5.8rem); font-weight: 800; }
h2 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); }
h3 { font-size: 1.45rem; letter-spacing: 0.03em; }

.accent { color: var(--red-hot); }
.gold { color: var(--gold); }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.85rem;
  color: var(--red-hot);
  margin-bottom: 18px;
}
.kicker::before {
  content: "";
  width: 34px; height: 2px;
  background: var(--red);
  transform: skewX(-30deg);
}

.lead { font-size: 1.15rem; color: var(--muted); max-width: 62ch; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1.05rem;
  padding: 14px 30px;
  border: none;
  cursor: pointer;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-red {
  background: linear-gradient(110deg, var(--red), #b3151e);
  color: #fff;
  box-shadow: 0 8px 28px rgba(232, 34, 45, 0.35);
}
.btn-red:hover { box-shadow: 0 12px 36px rgba(232, 34, 45, 0.5); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  box-shadow: inset 0 0 0 1px var(--line-strong);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.12); }

.btn-wa {
  background: #1faa53;
  color: #fff;
}
.btn-wa:hover { background: #25c061; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(10, 11, 13, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: flex;
  align-items: baseline;
  line-height: 1;
}
.logo .x {
  color: var(--red-hot);
  font-size: 2.3rem;
  margin-right: 1px;
  text-shadow: 0 0 22px rgba(232, 34, 45, 0.6);
}
.logo .reg { font-size: 0.7rem; color: var(--muted); margin-left: 3px; align-self: flex-start; }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 1rem;
  color: var(--muted);
  padding: 8px 13px;
  transition: color 0.15s;
}
.main-nav a:hover { color: #fff; }
.main-nav a.active { color: #fff; position: relative; }
.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 13px; right: 13px; bottom: 2px;
  height: 2px;
  background: var(--red);
  transform: skewX(-30deg);
}

.header-cta { display: flex; align-items: center; gap: 12px; }
.header-cta .btn { padding: 10px 22px; font-size: 0.95rem; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  width: 44px; height: 44px;
  position: relative;
  z-index: 110;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: #fff;
  margin: 6px auto;
  transition: transform 0.25s, opacity 0.25s;
}
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 1020px) {
  .nav-toggle { display: block; }
  .header-cta .btn-ghost { display: none; }
  .main-nav {
    /* NOTE: .site-header has backdrop-filter, which makes it the containing
       block for this fixed child — so `inset:0` would only fill the header.
       Use viewport units to cover the whole screen instead. */
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    background: var(--bg);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 105;
  }
  .nav-open .main-nav { transform: translateX(0); }
  .main-nav a { font-size: 1.7rem; padding: 12px 20px; }
}

/* ---------- Notice ribbon ---------- */
.ribbon {
  margin-top: var(--header-h);
  background: linear-gradient(100deg, var(--red) 0%, #8f0f17 100%);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.95rem;
  text-align: center;
  padding: 9px 16px;
}
.ribbon strong { font-weight: 800; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  margin-top: var(--header-h);
  min-height: calc(100svh - var(--header-h));
  display: flex;
  align-items: center;
  padding: 44px 0 52px;
  isolation: isolate;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-bg img,
.hero-bg video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(1.02) brightness(0.6);
}
.hero-bg img { z-index: 0; }
.hero-bg video { z-index: 1; } /* video sits over the poster fallback */
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2; /* gradient MUST sit above the video, or the text is unreadable */
  background:
    linear-gradient(100deg, rgba(10,11,13,0.96) 16%, rgba(10,11,13,0.8) 46%, rgba(10,11,13,0.45) 100%),
    linear-gradient(to top, var(--bg) 2%, transparent 36%);
}
.hero-content { max-width: 660px; }
.hero h1 { font-size: clamp(2.6rem, 6.2vw, 4.7rem); line-height: 1.02; margin: 6px 0 18px; }
.hero h1 .stroke {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.7);
}
.hero .lead { margin-bottom: 26px; font-size: 1.08rem; }
/* On phones the text spans full width, so use a vertical (not left-weighted)
   dark gradient and dim the video harder for legibility over a light car. */
@media (max-width: 720px) {
  .hero-bg img,
  .hero-bg video { filter: saturate(0.9) contrast(1.02) brightness(0.46); }
  .hero-bg::after {
    background:
      linear-gradient(180deg, rgba(10,11,13,0.55) 0%, rgba(10,11,13,0.74) 55%, var(--bg) 100%);
  }
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 34px;
  border: 1px solid var(--line);
  background: rgba(13, 14, 17, 0.65);
  backdrop-filter: blur(8px);
  max-width: 760px;
}
.hero-stats div {
  flex: 1 1 160px;
  padding: 18px 22px;
  border-right: 1px solid var(--line);
}
.hero-stats div:last-child { border-right: 0; }
.hero-stats b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--red-hot);
  line-height: 1.1;
}
.hero-stats span { font-size: 0.85rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }

/* Page hero (subpages) */
.page-hero {
  position: relative;
  padding: 120px 0 70px;
  margin-top: var(--header-h);
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.page-hero .hero-bg::after {
  background:
    linear-gradient(100deg, rgba(10,11,13,0.97) 30%, rgba(10,11,13,0.7) 65%, rgba(10,11,13,0.45) 100%),
    linear-gradient(to top, var(--bg) 0%, transparent 40%);
}
.page-hero h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); margin-bottom: 16px; }
.page-hero .lead { margin-bottom: 28px; }

/* ---------- Sections ---------- */
section { padding: 96px 0; }
section.tight { padding: 64px 0; }
.section-head { margin-bottom: 52px; max-width: 780px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .kicker { justify-content: center; }
.section-head.center .kicker::before { display: none; }
.section-head h2 { margin-bottom: 14px; }

.alt-bg { background: linear-gradient(to bottom, var(--bg-2), var(--bg)); border-block: 1px solid var(--line); }

/* ---------- Service cards ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 22px;
}
.svc-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.svc-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232, 34, 45, 0.45);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45);
}
.svc-card .thumb { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.svc-card .thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.svc-card:hover .thumb img { transform: scale(1.06); }
.svc-card .thumb::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(21,24,29,1) 0%, transparent 45%);
}
.svc-card .body { padding: 6px 26px 28px; margin-top: -34px; position: relative; z-index: 1; flex: 1; display: flex; flex-direction: column; }
.svc-card h3 { margin-bottom: 10px; }
.svc-card p { color: var(--muted); font-size: 0.98rem; flex: 1; }
.svc-card .more {
  margin-top: 18px;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.95rem;
  color: var(--red-hot);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.svc-card .more::after { content: "→"; transition: transform 0.2s; }
.svc-card:hover .more::after { transform: translateX(5px); }
.svc-card .tag {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  background: rgba(10, 11, 13, 0.8);
  border: 1px solid var(--line-strong);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 99px;
  color: var(--muted);
}

/* ---------- Feature rows ---------- */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.feature-row.flip > .media { order: 2; }
.feature-row .media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}
.feature-row .media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, transparent 60%, rgba(232,34,45,0.18));
  pointer-events: none;
}
@media (max-width: 900px) {
  .feature-row { grid-template-columns: 1fr; gap: 36px; }
  .feature-row.flip > .media { order: 0; }
}

.checklist { display: grid; gap: 12px; margin-top: 24px; }
.checklist li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: var(--text);
}
.checklist li::before {
  content: "✓";
  flex: 0 0 24px;
  height: 24px;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--red), #9d1118);
  clip-path: polygon(5px 0, 100% 0, calc(100% - 5px) 100%, 0 100%);
  margin-top: 3px;
}
.checklist li span b { color: #fff; }

/* ---------- Benefit tiles ---------- */
.tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.tile {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color 0.2s, transform 0.2s;
}
.tile:hover { border-color: rgba(232, 34, 45, 0.4); transform: translateY(-4px); }
.tile .ico {
  font-size: 1.6rem;
  width: 52px; height: 52px;
  display: grid;
  place-items: center;
  background: rgba(232, 34, 45, 0.12);
  border: 1px solid rgba(232, 34, 45, 0.3);
  border-radius: 12px;
  margin-bottom: 16px;
}
.tile h3 { font-size: 1.2rem; margin-bottom: 8px; }
.tile p { color: var(--muted); font-size: 0.94rem; }

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 22px;
  align-items: stretch;
}
.price-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px 30px;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.price-card:hover { transform: translateY(-6px); box-shadow: 0 26px 50px rgba(0,0,0,0.45); }
.price-card.featured {
  border-color: rgba(232, 34, 45, 0.55);
  background: linear-gradient(180deg, rgba(232,34,45,0.09), var(--card) 45%);
  box-shadow: 0 20px 50px rgba(232, 34, 45, 0.15);
}
.price-card .flag {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%) skewX(-12deg);
  background: linear-gradient(110deg, var(--red), #b3151e);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  padding: 5px 16px;
  white-space: nowrap;
}
.price-card .plan {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 1.35rem;
  margin-bottom: 4px;
}
.price-card .plan small { display: block; font-size: 0.85rem; color: var(--muted); letter-spacing: 0.12em; }
.price-card .amount {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.9rem;
  line-height: 1;
  margin: 14px 0 2px;
}
.price-card .amount .cur { font-size: 1.4rem; color: var(--muted); font-weight: 600; }
.price-card .was {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.price-card .was s { color: var(--red-hot); text-decoration-color: var(--red-hot); }
.price-card .note { font-size: 0.82rem; color: var(--muted); margin-bottom: 18px; }
.price-card ul { display: grid; gap: 9px; margin: 18px 0 26px; flex: 1; }
.price-card ul li {
  font-size: 0.95rem;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #cdd2d9;
}
.price-card ul li::before { content: "✓"; color: var(--red-hot); font-weight: 800; }
.price-card ul li.hl { color: var(--gold); font-weight: 600; }
.price-card ul li.hl::before { color: var(--gold); }
.price-card .btn { width: 100%; }
.pricing-note { margin-top: 26px; font-size: 0.88rem; color: var(--muted); max-width: 860px; }

/* PPF dual price */
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 18px 0 22px; }
.duo > div {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px;
  text-align: center;
}
.duo .lbl { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); display: block; margin-bottom: 4px; }
.duo .val { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; }
.duo > div.prem { border-color: rgba(216, 181, 106, 0.4); }
.duo > div.prem .val { color: var(--gold); }

/* ---------- Tint simulator ---------- */
.simulator {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.simulator .sim-stage { position: relative; aspect-ratio: 16 / 8.5; }
.simulator .sim-stage img { width: 100%; height: 100%; object-fit: cover; }
.simulator .shade {
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 0.05;
  transition: opacity 0.15s linear;
  pointer-events: none;
}
.simulator .sim-readout {
  position: absolute;
  bottom: 16px; left: 16px;
  background: rgba(10, 11, 13, 0.85);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(6px);
  padding: 10px 18px;
  border-radius: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.simulator .sim-readout b { color: var(--red-hot); font-size: 1.5rem; }
.sim-controls { padding: 26px 30px 30px; }
.sim-controls label {
  display: block;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 12px;
  font-size: 0.9rem;
}
input[type="range"].tint-range {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  height: 6px;
  border-radius: 99px;
  background: linear-gradient(to right, #e9e9e9, #0a0a0a);
  outline: none;
  cursor: pointer;
}
input[type="range"].tint-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--red);
  border: 3px solid #fff;
  box-shadow: 0 4px 14px rgba(232, 34, 45, 0.5);
}
input[type="range"].tint-range::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--red);
  border: 3px solid #fff;
}
.sim-marks { display: flex; justify-content: space-between; font-size: 0.78rem; color: var(--muted); margin-top: 10px; text-transform: uppercase; letter-spacing: 0.06em; }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
}
.gallery-grid a {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid var(--line);
}
.gallery-grid img {
  width: 100%; height: 100%;
  object-fit: cover;
  /* Source images are 2×2 Vorher/Nachher collages — zoom into the
     top-right quadrant so each tile shows ONE clean "Nachher" car.
     The full collage is still visible in the lightbox on click. */
  transform: scale(2);
  transform-origin: 100% 0%;
  transition: transform 0.45s ease, filter 0.45s ease;
}
.gallery-grid a:hover img { transform: scale(2.12); filter: brightness(1.1); }
.gallery-grid a::after {
  content: "+";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 2.4rem;
  font-weight: 300;
  color: #fff;
  background: rgba(232, 34, 45, 0.25);
  opacity: 0;
  transition: opacity 0.25s;
}
.gallery-grid a:hover::after { opacity: 1; }

/* lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(5, 6, 8, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 4vmin;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: 8px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.8);
}
.lightbox .lb-close, .lightbox .lb-prev, .lightbox .lb-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line-strong);
  color: #fff;
  width: 52px; height: 52px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s;
}
.lightbox .lb-close:hover, .lightbox .lb-prev:hover, .lightbox .lb-next:hover { background: var(--red); }
.lb-close { top: 22px; right: 22px; }
.lb-prev { left: 18px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 18px; top: 50%; transform: translateY(-50%); }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 12px; max-width: 860px; margin: 0 auto; }
.faq details {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq details[open] { border-color: rgba(232, 34, 45, 0.4); }
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 20px 26px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.18rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  flex: 0 0 auto;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--red-hot);
  transition: transform 0.25s;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq-body { padding: 0 26px 22px; color: var(--muted); }

/* ---------- Steps ---------- */
.steps { display: grid; gap: 0; counter-reset: step; }
.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.step:last-child { border-bottom: 0; }
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.2rem;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--red-hot);
  line-height: 1;
}
.step h3 { margin-bottom: 6px; font-size: 1.25rem; }
.step p { color: var(--muted); font-size: 0.98rem; }

/* ---------- Quote form ---------- */
.quote-box {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
@media (max-width: 900px) { .quote-box { grid-template-columns: 1fr; } }
.quote-form { padding: 44px 42px; }
.quote-form h2 { font-size: 2rem; margin-bottom: 8px; }
.quote-form > p { color: var(--muted); margin-bottom: 28px; font-size: 0.98rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }

.field label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 7px;
  font-weight: 600;
}
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--line-strong);
  border-radius: 9px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 13px 15px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(232, 34, 45, 0.18);
}
.field textarea { resize: vertical; min-height: 110px; }
.quote-form .btn { margin-top: 22px; width: 100%; }
.form-alt { margin-top: 16px; text-align: center; font-size: 0.92rem; color: var(--muted); }
.form-alt a { color: var(--red-hot); font-weight: 600; }

.quote-side {
  background:
    linear-gradient(160deg, rgba(232, 34, 45, 0.16), rgba(10, 11, 13, 0.4)),
    var(--bg-2);
  border-left: 1px solid var(--line);
  padding: 44px 42px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
@media (max-width: 900px) { .quote-side { border-left: 0; border-top: 1px solid var(--line); } }
.quote-side h3 { font-size: 1.3rem; }
.contact-list { display: grid; gap: 18px; }
.contact-list a, .contact-list div { display: flex; gap: 14px; align-items: flex-start; }
.contact-list .ci {
  flex: 0 0 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  font-size: 1.1rem;
}
.contact-list b { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); font-weight: 600; }
.contact-list span { color: var(--text); font-size: 1.02rem; }
.contact-list a:hover span { color: var(--red-hot); }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  padding: 90px 0;
  text-align: center;
  isolation: isolate;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background:
    radial-gradient(700px 300px at 50% 120%, rgba(232, 34, 45, 0.22), transparent 70%),
    var(--bg-2);
}
.cta-band h2 { font-size: clamp(2.4rem, 5vw, 3.8rem); margin-bottom: 14px; }
.cta-band p { color: var(--muted); max-width: 56ch; margin: 0 auto 34px; }
.cta-band .hero-actions { justify-content: center; }

/* ---------- Partners ---------- */
.partners {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.partners span {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 1.15rem;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 14px 34px;
  border-radius: 99px;
  transition: color 0.2s, border-color 0.2s;
}
.partners span:hover { color: #fff; border-color: var(--red); }

/* ---------- Video embeds ---------- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 22px;
}
.video-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s, border-color 0.25s;
}
.video-card:hover { transform: translateY(-5px); border-color: rgba(232, 34, 45, 0.45); }
.video-card .frame { position: relative; aspect-ratio: 16 / 9; background: #000; }
.video-card iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
.video-card .cap {
  padding: 16px 20px;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1.05rem;
}
.video-card .cap small { display: block; color: var(--muted); font-family: var(--font-body); text-transform: none; letter-spacing: 0; font-size: 0.85rem; margin-top: 3px; }

/* ---------- Social band ---------- */
.social-band {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}
.social-band a {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.social-band a:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(0,0,0,0.4); }
.social-band .sb-ico {
  flex: 0 0 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}
.social-band a:nth-child(1) .sb-ico { background: linear-gradient(135deg, #ff0000, #b00); }
.social-band a:nth-child(2) .sb-ico { background: linear-gradient(135deg, #f58529, #dd2a7b 55%, #8134af); }
.social-band a:nth-child(3) .sb-ico { background: linear-gradient(135deg, #2af0ea, #111 45%, #fe2c55); }
.social-band a:nth-child(4) .sb-ico { background: #1877f2; }
.social-band a:hover { border-color: var(--line-strong); }
.social-band b {
  display: block;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.1rem;
}
.social-band span { color: var(--muted); font-size: 0.85rem; }

/* ---------- Booking modal ---------- */
body.booking-open { overflow: hidden; }
.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 4vh 16px;
  background: rgba(5, 6, 8, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  overflow-y: auto;
}
.booking-modal.open { display: flex; }
.booking-panel {
  width: min(760px, 100%);
  background: linear-gradient(180deg, #16191f, #101216);
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.8);
  overflow: hidden;
  animation: bookingIn 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes bookingIn {
  from { opacity: 0; transform: translateY(26px) scale(0.985); }
  to { opacity: 1; transform: none; }
}
.booking-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 28px 20px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(500px 120px at 20% 0%, rgba(232, 34, 45, 0.16), transparent 70%);
}
.booking-head h3 {
  font-size: 1.7rem;
  display: flex;
  align-items: center;
  gap: 12px;
}
.booking-head h3 .x { color: var(--red-hot); }
.booking-head p { color: var(--muted); font-size: 0.9rem; margin-top: 2px; }
.booking-close {
  flex: 0 0 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.booking-close:hover { background: var(--red); border-color: var(--red); }

.booking-body { max-height: min(64vh, 640px); overflow-y: auto; padding: 10px 16px 16px; }
.booking-body::-webkit-scrollbar { width: 10px; }
.booking-body::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.12); border-radius: 99px; }
.booking-body::-webkit-scrollbar-track { background: transparent; }

.bk-cat { border-bottom: 1px solid var(--line); }
.bk-cat:last-child { border-bottom: 0; }
.bk-cat > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 14px;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 1.15rem;
}
.bk-cat > summary::-webkit-details-marker { display: none; }
.bk-cat > summary .bk-count {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  border: 1px solid var(--line-strong);
  border-radius: 99px;
  padding: 3px 10px;
  margin-left: auto;
}
.bk-cat > summary::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--red-hot);
  transition: transform 0.25s;
}
.bk-cat[open] > summary::after { transform: rotate(45deg); }

.bk-item {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  text-align: left;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 15px 18px;
  margin: 0 0 10px;
  color: var(--text);
  font-family: var(--font-body);
  transition: border-color 0.18s, background 0.18s;
}
.bk-item:hover { border-color: rgba(232, 34, 45, 0.45); background: #181b21; }
.bk-item.selected { border-color: var(--red); background: rgba(232, 34, 45, 0.08); }
.bk-item .bk-info { flex: 1; min-width: 0; }
.bk-item .bk-name { font-weight: 600; font-size: 0.98rem; line-height: 1.35; }
.bk-item .bk-meta { color: var(--muted); font-size: 0.82rem; margin-top: 3px; }
.bk-item .bk-price {
  margin-top: 8px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--red-hot);
  white-space: nowrap;
}

/* quantity stepper */
.bk-stepper { flex: 0 0 auto; display: flex; align-items: center; }
.bk-add {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: rgba(232, 34, 45, 0.12);
  border: 1px solid rgba(232, 34, 45, 0.5);
  color: var(--red-hot);
  font-size: 1.5rem; font-weight: 400; line-height: 1;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, transform 0.12s;
}
.bk-add:hover { background: var(--red); color: #fff; }
.bk-add:active { transform: scale(0.92); }
.bk-stepper.active {
  background: var(--red);
  border-radius: 10px;
  padding: 3px;
  gap: 0;
}
.bk-step {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border: 0; border-radius: 8px;
  background: transparent;
  color: #fff;
  font-size: 1.35rem; font-weight: 600; line-height: 1;
  cursor: pointer;
  transition: background 0.15s;
}
.bk-step:hover { background: rgba(255, 255, 255, 0.18); }
.bk-step:disabled { opacity: 0.4; cursor: not-allowed; }
.bk-step:disabled:hover { background: transparent; }
.bk-qty {
  min-width: 30px; text-align: center;
  color: #fff; font-weight: 700; font-size: 1rem;
  font-variant-numeric: tabular-nums;
}

.booking-foot {
  padding: 16px 28px 22px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.booking-foot .bk-note { color: var(--muted); font-size: 0.8rem; max-width: 380px; }

/* ---- two views: service list <-> request form ---- */
.bk-form { display: none; padding: 4px 2px 6px; }
.booking-panel.show-form .bk-list { display: none; }
.booking-panel.show-form .bk-form { display: block; }
.booking-panel.show-form .booking-foot { display: none; }

.bk-back {
  background: none; border: 0; color: var(--muted);
  font-family: var(--font-cond); text-transform: uppercase; letter-spacing: 0.05em;
  font-size: 0.85rem; cursor: pointer; padding: 6px 0; margin-bottom: 6px;
}
.bk-back:hover { color: #fff; }
.bk-chosen {
  background: rgba(232, 34, 45, 0.08); border: 1px solid rgba(232, 34, 45, 0.4);
  border-radius: 12px; padding: 12px 16px; margin-bottom: 16px;
}
.bk-chosen-lbl {
  display: block; color: var(--muted); font-size: 0.72rem;
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px;
}
.bk-chosen-list { display: flex; flex-direction: column; gap: 8px; }
.bk-chosen-row {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
}
.bk-chosen-row + .bk-chosen-row { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 8px; }
.bk-chosen-name { font-size: 0.95rem; line-height: 1.35; }
.bk-chosen-price { color: var(--red-hot); font-family: var(--font-cond); font-weight: 700; font-size: 1.15rem; white-space: nowrap; }
.bk-chosen-empty { color: var(--muted); font-size: 0.92rem; }
.bk-fields {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.bk-form label {
  display: flex; flex-direction: column; gap: 5px;
  font-size: 0.82rem; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.04em;
}
.bk-form .bk-full { margin-top: 12px; }
.bk-form input, .bk-form select, .bk-form textarea {
  font-family: var(--font-body); font-size: 0.95rem; color: #fff;
  background: rgba(255, 255, 255, 0.05); border: 1px solid var(--line);
  border-radius: 8px; padding: 11px 12px; text-transform: none; letter-spacing: 0;
}
.bk-form input:focus, .bk-form select:focus, .bk-form textarea:focus {
  outline: none; border-color: var(--red); background: rgba(255, 255, 255, 0.08);
}
.bk-form textarea { resize: vertical; }
.bk-form-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
.bk-form-actions .btn { flex: 1; min-width: 180px; text-align: center; justify-content: center; }
.bk-wa { display: inline-flex; align-items: center; justify-content: center; }
.bk-form-hint { color: var(--muted); font-size: 0.78rem; margin-top: 14px; }

@media (max-width: 620px) {
  .booking-panel { border-radius: 14px; }
  .booking-head, .booking-foot { padding-left: 18px; padding-right: 18px; }
  .bk-item { flex-wrap: wrap; }
  .bk-item .bk-go { display: none; }
  .bk-fields { grid-template-columns: 1fr; }
}

/* hide cituro's default floating button if it ever appears */
div.cituroContainer[floating] { display: none !important; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  background: #08090b;
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 54px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 18px;
}
.site-footer p, .site-footer li, .site-footer a { color: var(--muted); font-size: 0.95rem; }
.site-footer li { margin-bottom: 9px; }
.site-footer a:hover { color: var(--red-hot); }
.footer-brand .logo { margin-bottom: 14px; }
.social-row { display: flex; gap: 10px; margin-top: 18px; }
.social-row a {
  width: 42px; height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  font-size: 1rem;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.social-row a:hover { background: var(--red); border-color: var(--red); color: #fff; }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 22px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--muted);
}
.footer-bottom nav { display: flex; gap: 20px; }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 90;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #1faa53;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(31, 170, 83, 0.45);
  transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* ---------- Legal pages ---------- */
.legal { max-width: 820px; }
.legal h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); margin-bottom: 30px; }
.legal h2 { font-size: 1.5rem; margin: 38px 0 12px; }
.legal h3 { font-size: 1.15rem; margin: 26px 0 8px; }
.legal p, .legal li { color: var(--muted); margin-bottom: 12px; font-size: 0.98rem; }
.legal ul { list-style: disc; padding-left: 22px; }
.legal a { color: var(--red-hot); word-break: break-word; }

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* hero load-in */
@keyframes heroIn {
  from { opacity: 0; transform: translateY(34px); }
  to { opacity: 1; transform: none; }
}
.hero-content > * { animation: heroIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) both; }
.hero-content > *:nth-child(2) { animation-delay: 0.12s; }
.hero-content > *:nth-child(3) { animation-delay: 0.24s; }
.hero-content > *:nth-child(4) { animation-delay: 0.36s; }
.hero-stats { animation: heroIn 0.85s 0.5s cubic-bezier(0.22, 1, 0.36, 1) both; }
