/* Hallmark · redesign: hi-vis inversion (yellow-led rhythm, black punctuation)
 * theme: in-house warm-black + hi-vis yellow · IA preserved · hero: service roller
 * pre-emit critique: P4 H5 E4 S5 R4 V4 */
@import url("tokens.css");

/* ========================================================================
   01. RESET + BASE
   ======================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  font-size: 15px;
  scrollbar-color: var(--brand-yellow) var(--ink);
  scrollbar-width: thin;
}
html, body { overflow-x: clip; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.55;
  font-feature-settings: "ss01", "cv02", "cv03", "cv11";
  transition: background-color 0.4s var(--ease-out), color 0.4s var(--ease-out);
}
html::-webkit-scrollbar { width: 12px; height: 12px; }
html::-webkit-scrollbar-track { background: var(--ink); }
html::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--brand-yellow), var(--brand-yellow-deep));
  border-radius: 999px;
  border: 2px solid var(--ink);
}
html::-webkit-scrollbar-thumb:hover { background: var(--brand-yellow); }

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
h1, h2, h3, h4, h5, h6 { margin: 0; font-family: var(--font-display); line-height: 1.05; font-weight: 700; letter-spacing: -0.02em; }
p { margin: 0 0 1em; }
em { font-style: normal; color: var(--brand-yellow); font-weight: 700; }

::selection { background: var(--brand-yellow); color: var(--ink); }

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-gutter);
}

.mono-label {
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; transform: none; opacity: 1; }
}

/* ========================================================================
   02. SECTION DEFAULTS
   ======================================================================== */
.section {
  position: relative;
  padding: clamp(88px, 11vh, 150px) 0;
  background: var(--bg);
  color: var(--text);
  scroll-margin-top: 100px;
  transition: background-color 0.4s var(--ease-out), color 0.4s var(--ease-out);
}
.section-head {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: clamp(20px, 4vw, 64px);
  align-items: baseline;
  margin-bottom: clamp(48px, 6vh, 88px);
}
.section-index {
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand-yellow);
  padding-top: 6px;
  border-top: 1px solid var(--brand-yellow);
}
.section-title { font-size: var(--fs-h1); max-width: 14ch; }
.section-lead {
  margin-top: 1em;
  max-width: 58ch;
  font-size: var(--fs-lead);
  color: var(--muted);
}
@media (max-width: 720px) {
  .section-head { grid-template-columns: 1fr; gap: 12px; margin-bottom: 36px; }
  .section-index { border-top: none; padding-top: 0; }
  /* compact mobile: shorter sections, calmer headings — built to scan + convert */
  .section { padding: 64px 0; }
  .section-title { font-size: clamp(2.05rem, 8.4vw, 2.6rem); }
  .section-lead { font-size: 0.98rem; }
}

/* --- Accent legibility: on light sections the deeper amber reads better and is
   easier on the eyes than bright hi-vis yellow (dark sections keep bright yellow) --- */
.section:not([data-theme="dark"]) .section-index { color: var(--brand-yellow-deep); border-top-color: var(--brand-yellow-deep); }
.section:not([data-theme="dark"]) .section-title em { color: var(--brand-yellow-deep); }

/* ========================================================================
   03. FLOATING NAV
   ======================================================================== */
.nav {
  position: fixed;
  top: clamp(12px, 1.6vh, 20px);
  left: 0; right: 0;
  z-index: 100;
  pointer-events: none;
  transition: top 0.3s var(--ease-out);
}
.nav-shell {
  pointer-events: auto;
  width: min(calc(100% - clamp(32px, 6vw, 64px)), 1320px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 28px);
  padding: 10px 12px 10px 18px;
  background: rgba(11, 10, 8, 0.84);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  border: 1px solid rgba(255, 212, 0, 0.16);
  border-radius: 999px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.28);
  color: var(--cream);
  transition: background 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.nav.is-scrolled .nav-shell {
  background: rgba(11, 10, 8, 0.88);
  box-shadow: 0 16px 50px rgba(0,0,0,0.42);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.nav-logo-img {
  height: 40px;
  width: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.55));
}
.nav-word {
  display: flex;
  flex-direction: column;
  line-height: 1.12;
}
.nav-word .brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
}
.nav-word .brand em { color: var(--brand-yellow); }
.nav-word .sub {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(246,241,230,0.62);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.live {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3ad46d;
  box-shadow: 0 0 0 3px rgba(58,212,109,0.2);
  animation: live-pulse 2s var(--ease-in-out) infinite;
}
@keyframes live-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(58,212,109,0.35); }
  50%      { box-shadow: 0 0 0 5px rgba(58,212,109,0); }
}
.nav-links {
  display: flex;
  gap: clamp(8px, 1.2vw, 16px);
  margin-left: auto;
  margin-right: auto;
  padding: 0 8px;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(246,241,230,0.82);
  padding: 6px 10px;
  border-radius: 999px;
  transition: background 0.25s, color 0.25s;
}
.nav-links a:hover { color: var(--brand-yellow); }
.nav-links a.is-active {
  color: var(--ink);
  background: var(--brand-yellow);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
  background: var(--brand-yellow);
  color: var(--ink);
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
  flex-shrink: 0;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(255,212,0,0.38);
}
.nav-cta-icon { font-size: 1.1rem; }
.nav-cta-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-cta-label {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.72;
}
.nav-cta-number { font-size: 0.9rem; font-weight: 800; letter-spacing: -0.01em; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-shell { padding: 8px 8px 8px 14px; justify-content: space-between; }
  .nav-word .sub { display: none; }
  .nav-cta { margin-left: auto; }
}
@media (max-width: 500px) {
  .nav-cta-label { display: none; }
  .nav-cta { padding: 9px 14px; gap: 8px; }
  .nav-cta-number { font-size: 0.88rem; }
  .nav-cta-icon { font-size: 1.05rem; }
  .nav-logo-img { height: 34px; }
}
@media (max-width: 360px) {
  .nav-cta-text { display: none; }
  .nav-cta { padding: 10px 12px; }
  .nav-cta-icon { font-size: 1.2rem; }
}

/* ========================================================================
   04. HERO — image-backed dark + service roller
   ======================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  background: var(--ink);
  color: var(--cream);
  display: flex;
  align-items: center;
  scroll-margin-top: 0;
  isolation: isolate;
  overflow: clip;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 72% center; }
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11,10,8,0.95) 0%, rgba(11,10,8,0.80) 38%, rgba(11,10,8,0.32) 70%, rgba(11,10,8,0.58) 100%),
    linear-gradient(180deg, rgba(11,10,8,0.50) 0%, rgba(11,10,8,0.0) 34%, rgba(11,10,8,0.66) 100%);
  z-index: 1;
}
/* Short viewports: let the hero grow with content instead of clipping. */
@media (max-height: 780px) {
  .hero { min-height: 0; }
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: clamp(118px, 14vh, 168px) var(--container-gutter) clamp(56px, 7vh, 88px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(36px, 4.5vw, 80px);
  align-items: center;
}
.hero-main { min-width: 0; }
.hero-label {
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand-yellow);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid rgba(255,212,0,0.45);
  border-radius: 999px;
  background: rgba(255,212,0,0.08);
  margin-bottom: clamp(20px, 3vh, 36px);
  white-space: nowrap;
  max-width: 100%;
}
.hl-short { display: none; }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.8vw, 4.05rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.035em;
  max-width: 22ch;
  color: var(--cream);
  margin-bottom: clamp(18px, 2.2vh, 28px);
}
.hero-title em {
  color: var(--brand-yellow);
  font-style: normal;
}
.hero-lead {
  font-size: clamp(0.96rem, 1.05vw, 1.1rem);
  max-width: 46ch;
  color: rgba(246, 241, 230, 0.82);
  margin-bottom: clamp(26px, 3.6vh, 40px);
  line-height: 1.5;
}
.hero-lead strong { color: var(--cream); font-weight: 700; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: clamp(28px, 4vh, 44px);
}
/* Single-line rotating fact ticker (replaces the wrapping meta row) */
.hero-ticker {
  margin-top: clamp(12px, 1.6vh, 22px);
  display: flex;
  align-items: center;
  gap: 11px;
  width: 100%;
  padding-top: clamp(16px, 2vh, 24px);
  border-top: 1px solid rgba(255, 212, 0, 0.18);
  font-family: var(--font-mono);
  font-size: clamp(0.66rem, 0.78vw, 0.8rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(246, 241, 230, 0.74);
  min-height: 1.5em;
  overflow: hidden;
}
.hero-ticker-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--brand-yellow);
  box-shadow: 0 0 0 0 rgba(255,212,0,0.5);
  animation: live-pulse 2s var(--ease-in-out) infinite;
  flex-shrink: 0;
}
.hero-ticker-text {
  display: inline-block;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}
.hero-ticker-text.is-out { opacity: 0; transform: translateY(-7px); }
@media (prefers-reduced-motion: reduce) {
  .hero-ticker-text { transition: none; }
  .hero-ticker-text.is-out { opacity: 1; transform: none; }
}

/* --- Service roller — glass card over the hero image; services roll through like a turning wheel --- */
.hero-roller { min-width: 0; }
.roller-card {
  position: relative;
  background: rgba(13, 12, 10, 0.62);
  backdrop-filter: blur(22px) saturate(135%);
  -webkit-backdrop-filter: blur(22px) saturate(135%);
  color: var(--cream);
  border: 1px solid rgba(255,212,0,0.22);
  border-radius: var(--radius-xl);
  padding: clamp(22px, 2.4vw, 32px) clamp(22px, 2.6vw, 34px) clamp(18px, 2vw, 26px);
  padding-left: calc(clamp(22px, 2.6vw, 34px) + 14px);
  box-shadow: 0 40px 100px -30px rgba(0,0,0,0.8), 0 12px 30px rgba(0,0,0,0.42);
  overflow: hidden;
  isolation: isolate;
}
.roller-card::before {
  /* hazard tread strip on the left edge */
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 12px;
  background: repeating-linear-gradient(-45deg, var(--brand-yellow) 0 11px, var(--ink) 11px 22px);
  z-index: 3;
}
.roller-head {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-bottom: 14px;
  margin-bottom: clamp(18px, 2.2vh, 28px);
  border-bottom: 1px solid rgba(255,212,0,0.22);
}
.roller-kicker { color: var(--brand-yellow); font-size: 0.64rem; }
.roller-count { color: rgba(246,241,230,0.5); font-size: 0.7rem; letter-spacing: 0.16em; }
.roller-count b { color: var(--cream); font-weight: 700; }

.roller-stage {
  position: relative;
  z-index: 2;
  display: grid;
  perspective: 1000px;
}
.roller-slide {
  grid-area: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(12px, 1.8vh, 20px);
  min-width: 0;
  opacity: 0;
  transform: translateY(38%) rotateX(-56deg) scale(0.95);
  transform-origin: 50% 100%;
  transition: transform 0.72s var(--ease-in-out), opacity 0.5s var(--ease-out);
  pointer-events: none;
  backface-visibility: hidden;
}
.roller-slide.is-current {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.roller-slide.is-leaving {
  opacity: 0;
  transform: translateY(-38%) rotateX(56deg) scale(0.95);
  transform-origin: 50% 0%;
}
.roller-slide:focus-visible {
  outline: 2px solid var(--brand-yellow);
  outline-offset: 6px;
  border-radius: var(--radius-sm);
}
.roller-cat { color: var(--brand-yellow); font-size: 0.64rem; }
.roller-name {
  font-family: var(--font-display);
  font-size: clamp(2.05rem, 3.2vw, 3.2rem);
  font-weight: 900;
  line-height: 0.97;
  letter-spacing: -0.03em;
  color: var(--cream);
  min-width: 0;
  overflow-wrap: anywhere;
  transition: color 0.25s var(--ease-out);
}
.roller-slide:hover .roller-name { color: var(--brand-yellow); }
.roller-price {
  display: inline-flex;
  align-items: baseline;
  gap: 9px;
  font-variant-numeric: tabular-nums;
}
.roller-price i {
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(246,241,230,0.55);
}
.roller-price b {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--brand-yellow);
}
.roller-price b.is-text { font-size: clamp(1.15rem, 1.6vw, 1.5rem); }
.roller-cur {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(246,241,230,0.55);
}
.roller-go {
  margin-left: 4px;
  font-weight: 700;
  color: var(--brand-yellow);
  opacity: 0.65;
  transition: transform 0.25s var(--ease-out), opacity 0.25s var(--ease-out);
}
.roller-slide:hover .roller-go,
.roller-slide:focus-visible .roller-go { transform: translateX(5px); opacity: 1; }
.roller-hint {
  position: relative;
  z-index: 2;
  margin: 14px 0 0;
  font-size: 0.62rem;
  color: rgba(246,241,230,0.4);
}
.roller-foot {
  position: relative;
  z-index: 2;
  margin-top: clamp(20px, 2.6vh, 32px);
  display: flex;
  align-items: center;
  gap: 16px;
}
.roller-progress {
  flex: 1;
  height: 3px;
  border-radius: 999px;
  background: rgba(246,241,230,0.16);
  overflow: hidden;
}
.roller-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--brand-yellow);
  border-radius: inherit;
}
.roller-dots { display: flex; gap: 4px; }
.roller-dot {
  width: 23px;
  height: 23px;
  padding: 7px;
  border-radius: 50%;
  background: rgba(246,241,230,0.3);
  background-clip: content-box;
  transition: background-color 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}
.roller-dot:hover { background-color: rgba(246,241,230,0.6); }
.roller-dot.is-active { background-color: var(--brand-yellow); transform: scale(1.18); }
.roller-dot:focus-visible { outline: 2px solid var(--brand-yellow); outline-offset: 1px; }

@media (prefers-reduced-motion: reduce) {
  .roller-progress { display: none; }
  .roller-slide { transition: opacity 0.15s ease; transform: none; }
  .roller-slide.is-leaving { transform: none; }
}

@media (max-width: 920px) {
  .hero { min-height: 0; }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: clamp(30px, 4.5vh, 46px);
    padding-top: clamp(104px, 13vh, 140px);
    padding-bottom: clamp(56px, 8vh, 88px);
    align-items: start;
  }
  /* on mobile the roller is the centrepiece — let it run full width and bigger */
  .hero-roller { width: 100%; max-width: 600px; }
  .roller-name { font-size: clamp(2.3rem, 9vw, 3rem); }
  .roller-price b { font-size: clamp(2rem, 7.5vw, 2.5rem); }
}
@media (max-width: 560px) {
  /* swap to the short eyebrow so the pill stays on one row */
  .hl-full { display: none; }
  .hl-short { display: inline; }
  .hero-label { font-size: 0.62rem; letter-spacing: 0.1em; }
}
@media (max-width: 480px) {
  .roller-name { font-size: clamp(2.05rem, 9.6vw, 2.5rem); }
  .roller-price b { font-size: clamp(1.8rem, 8.5vw, 2.2rem); }
  .roller-card { border-radius: var(--radius-lg); }
  /* keep the hero compact on phones */
  .hero-lead { display: none; }
}

/* ========================================================================
   05. BUTTONS
   ======================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 26px;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), background-color 0.25s var(--ease-out), color 0.25s var(--ease-out);
  white-space: nowrap;
}
.btn-sm { padding: 9px 16px; font-size: 0.86rem; }
.btn-primary {
  background: var(--brand-yellow);
  color: var(--ink);
  box-shadow: 0 10px 28px rgba(255,212,0,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(255,212,0,0.45); }
.btn-ghost {
  background: rgba(255,255,255,0.08);
  color: var(--cream);
  border-color: rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.14); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--cream);
  border-color: rgba(255,255,255,0.28);
}
.btn-outline:hover { border-color: var(--brand-yellow); color: var(--brand-yellow); }
.btn-ghost-light {
  background: rgba(255,255,255,0.06);
  color: var(--brand-yellow);
  border-color: rgba(255,212,0,0.4);
}
.btn-ghost-light:hover { background: var(--brand-yellow); color: var(--ink); border-color: var(--brand-yellow); }
[data-theme="cream"] .btn-outline,
[data-theme="warm"] .btn-outline { color: var(--ink); border-color: var(--ink-20); }
[data-theme="cream"] .btn-outline:hover,
[data-theme="warm"] .btn-outline:hover { color: var(--brand-yellow-deep); border-color: var(--brand-yellow-deep); }

/* On the yellow field the buttons invert: ink fills, ink outlines */
[data-theme="yellow"] .btn-primary {
  background: var(--ink);
  color: var(--brand-yellow);
  box-shadow: 0 10px 28px rgba(11,10,8,0.28);
}
[data-theme="yellow"] .btn-primary:hover { box-shadow: 0 16px 36px rgba(11,10,8,0.34); }
[data-theme="yellow"] .btn-ghost {
  background: rgba(11,10,8,0.07);
  color: var(--ink);
  border-color: rgba(11,10,8,0.24);
  backdrop-filter: none;
}
[data-theme="yellow"] .btn-ghost:hover { background: rgba(11,10,8,0.13); }
[data-theme="yellow"] .btn-outline { color: var(--ink); border-color: rgba(11,10,8,0.36); }
[data-theme="yellow"] .btn-outline:hover { border-color: var(--ink); color: var(--ink); background: rgba(11,10,8,0.05); }
/* …except inside dark cards living in yellow sections (estimator result bar) */
[data-theme="yellow"] .est-bar .btn-primary {
  background: var(--brand-yellow);
  color: var(--ink);
  box-shadow: 0 10px 28px rgba(255,212,0,0.3);
}
.btn-ico { font-size: 1.18rem; line-height: 1; }

/* ========================================================================
   06. TRUST BAR
   ======================================================================== */
.trust-bar {
  background: var(--ink);
  color: var(--cream);
  padding: 20px 0;
  border-top: 1px solid rgba(255,212,0,0.18);
  border-bottom: 1px solid rgba(255,212,0,0.18);
}
.trust-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(246,241,230,0.58);
}
.trust-item { display: inline-flex; align-items: baseline; gap: 8px; }
.trust-num {
  color: var(--brand-yellow);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
}
.trust-sep { color: rgba(255,212,0,0.32); }

@media (max-width: 600px) {
  .trust-sep { display: none; }
  .trust-track { gap: 14px 22px; }
}

/* ========================================================================
   07. SERVICII
   ======================================================================== */
/* Bento: 7 cards, zero holes — row 1: card + feature×2 + card · row 2: four compact cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: clamp(14px, 1.6vw, 22px);
}
@media (max-width: 980px) { .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
  isolation: isolate;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 24px 64px rgba(0,0,0,0.24); }

/* ---------- Scroll-in choreography for service cards ----------
   Staggered fade + lift + subtle tilt with a clip-path wipe on the media band
   and a cascade reveal on the inner body elements. */
.service-card--enter {
  opacity: 0;
  transform: translate3d(0, 44px, 0) scale(0.97) rotateX(8deg);
  transform-origin: 50% 100%;
  filter: blur(6px);
  transition:
    opacity 1.05s cubic-bezier(0.22, 1, 0.36, 1) var(--svc-delay, 0ms),
    transform 1.1s cubic-bezier(0.22, 1, 0.36, 1) var(--svc-delay, 0ms),
    filter 0.9s cubic-bezier(0.22, 1, 0.36, 1) var(--svc-delay, 0ms);
  will-change: opacity, transform, filter;
}
.service-card--enter.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1) rotateX(0deg);
  filter: blur(0);
}

/* Inner piece cascade: media sweeps, then number + badge, then body text steps in. */
.service-card--enter .service-media {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.1s cubic-bezier(0.77, 0, 0.18, 1) calc(var(--svc-delay, 0ms) + 120ms);
}
.service-card--enter.is-visible .service-media {
  clip-path: inset(0 0% 0 0);
}

.service-card--enter .service-num,
.service-card--enter .service-badge {
  opacity: 0;
  transform: translateY(-8px);
  transition:
    opacity 0.6s var(--ease-out) calc(var(--svc-delay, 0ms) + 520ms),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) calc(var(--svc-delay, 0ms) + 520ms);
}
.service-card--enter.is-visible .service-num,
.service-card--enter.is-visible .service-badge {
  opacity: 1;
  transform: translateY(0);
}

.service-card--enter .service-title,
.service-card--enter .service-copy,
.service-card--enter .service-points {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.8s var(--ease-out),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.service-card--enter .service-title { transition-delay: calc(var(--svc-delay, 0ms) + 420ms); }
.service-card--enter .service-copy  { transition-delay: calc(var(--svc-delay, 0ms) + 520ms); }
.service-card--enter .service-points { transition-delay: calc(var(--svc-delay, 0ms) + 620ms); }

.service-card--enter.is-visible .service-title,
.service-card--enter.is-visible .service-copy,
.service-card--enter.is-visible .service-points {
  opacity: 1;
  transform: translateY(0);
}

/* Subtle yellow glow that pulses in behind the card on reveal */
.service-card--enter::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(255, 212, 0, 0);
  opacity: 0;
  pointer-events: none;
  transition:
    box-shadow 1.4s cubic-bezier(0.22, 1, 0.36, 1) calc(var(--svc-delay, 0ms) + 300ms),
    opacity 1.4s cubic-bezier(0.22, 1, 0.36, 1) calc(var(--svc-delay, 0ms) + 300ms);
  z-index: -1;
}
.service-card--enter.is-visible::before {
  box-shadow: 0 24px 48px -18px rgba(255, 212, 0, 0.22);
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .service-card--enter,
  .service-card--enter::before,
  .service-card--enter .service-media,
  .service-card--enter .service-num,
  .service-card--enter .service-badge,
  .service-card--enter .service-title,
  .service-card--enter .service-copy,
  .service-card--enter .service-points {
    opacity: 1;
    transform: none;
    filter: none;
    clip-path: none;
    transition: none;
  }
}
.service-card.is-feature {
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-90) 100%);
  grid-column: span 2;
}
/* Clean inset frame that follows the rounded corners and sits above the media,
   so the image never appears to spill over the yellow line */
.service-card.is-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid var(--brand-yellow);
  border-radius: inherit;
  pointer-events: none;
  z-index: 4;
}
@media (max-width: 620px) { .service-card.is-feature { grid-column: auto; } }
.service-num {
  position: absolute;
  top: 18px;
  left: 20px;
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  color: var(--brand-yellow);
  letter-spacing: 0.12em;
  z-index: 2;
}
.service-badge {
  position: absolute;
  top: 18px;
  right: 20px;
  font-family: var(--font-mono);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--brand-yellow);
  padding: 6px 10px;
  border-radius: 999px;
  z-index: 2;
}
.service-media {
  position: relative;
  height: 200px;
  background-color: var(--ink-80);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  flex-shrink: 0;
}
.service-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,10,8,0.15) 0%, rgba(11,10,8,0.75) 100%);
}
.service-media-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, var(--ink-90) 0%, var(--ink) 100%);
}
.service-media-icon svg { width: 84px; height: 84px; position: relative; z-index: 1; }
.service-media-icon::after { display: none; }
.is-feature .service-media { height: 200px; }
/* row-two cards (TPMS, depozitare, consultanță, freon) run compact */
.services-grid .service-card:nth-child(n+4) .service-media { height: 108px; }
.services-grid .service-card:nth-child(n+4) .service-media-icon svg { width: 52px; height: 52px; }

.service-body {
  padding: 26px 26px 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-title {
  font-size: var(--fs-h3);
  font-weight: 700;
  margin-bottom: 12px;
}
.service-copy {
  font-size: 0.94rem;
  color: rgba(246,241,230,0.74);
  line-height: 1.5;
  margin-bottom: 20px;
  flex: 1;
}
.service-copy strong { color: var(--cream); }
.service-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-yellow);
}
.service-points li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-points li::before {
  content: "→";
  color: var(--brand-yellow);
  opacity: 0.72;
}

/* Mobile: sticky card deck — each service stacks over the last as you scroll */
@media (max-width: 620px) {
  .services-grid { display: block; }
  .service-card {
    position: sticky;
    top: calc(80px + var(--stack, 0px));
    margin-bottom: 16px;
    box-shadow: 0 -16px 40px rgba(11, 10, 8, 0.26);
  }
  .service-card:nth-child(1) { --stack: 0px; }
  .service-card:nth-child(2) { --stack: 9px; }
  .service-card:nth-child(3) { --stack: 18px; }
  .service-card:nth-child(4) { --stack: 27px; }
  .service-card:nth-child(5) { --stack: 36px; }
  .service-card:nth-child(6) { --stack: 45px; }
  .service-card:nth-child(7) { --stack: 54px; }
  .services-grid .service-card:nth-child(n+4) .service-media { height: 120px; }
  /* lighter entrance on mobile — no blur/tilt while cards are sticky-stacked */
  .service-card--enter {
    filter: none;
    transform: translate3d(0, 28px, 0);
    transition: opacity 0.7s var(--ease-out) var(--svc-delay, 0ms), transform 0.7s var(--ease-out) var(--svc-delay, 0ms);
  }
}

/* ========================================================================
   08. JANTE FEATURE
   ======================================================================== */
.jante-feature {
  position: relative;
  overflow: hidden;
  padding: clamp(110px, 14vh, 180px) 0;
}
.jante-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.24;
}
.jante-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.jante-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--ink) 0%, rgba(11,10,8,0.72) 50%, var(--ink) 100%);
}
.jante-feature > .container { position: relative; z-index: 1; }
.jante-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 4vw, 80px);
  align-items: start;
}
@media (max-width: 900px) { .jante-grid { grid-template-columns: 1fr; } }

.jante-copy .section-title { font-size: var(--fs-h1); margin-bottom: 22px; max-width: 14ch; }
.jante-copy .section-lead { max-width: 54ch; margin-bottom: 48px; }

/* Process as a vertical numbered timeline — number rail left, step content right */
.jante-process {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
  max-width: 600px;
}
.process-step {
  position: relative;
  display: grid;
  grid-template-columns: 40px 1fr;
  grid-template-rows: auto auto;
  gap: 2px 18px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,212,0,0.14);
  transition: border-color 0.3s var(--ease-out);
}
.process-step:last-child { border-bottom: none; }
.process-step:hover { border-color: rgba(255,212,0,0.45); }
.process-step::after {
  /* rail segment connecting the number badges */
  content: "";
  position: absolute;
  left: 19.5px;
  top: 58px;
  bottom: -2px;
  width: 1px;
  background: rgba(255,212,0,0.18);
}
.process-step:last-child::after { display: none; }
.step-num {
  grid-row: 1 / span 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,212,0,0.42);
  background: rgba(255,212,0,0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--brand-yellow);
  letter-spacing: 0.06em;
  font-weight: 700;
}
.step-title {
  grid-column: 2;
  font-size: 1.05rem;
  margin: 0;
  font-weight: 700;
  align-self: center;
}
.step-copy {
  grid-column: 2;
  font-size: 0.84rem;
  color: rgba(246,241,230,0.7);
  line-height: 1.5;
  margin: 0;
}

.jante-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
.jante-note {
  color: rgba(246,241,230,0.56);
  font-size: 0.72rem;
  margin: 0;
  max-width: 32ch;
}

.jante-visual {
  padding: 32px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--hairline-light);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 120px;
}
/* Desktop parallax: the card drifts as you scroll the section (JS-driven via --pllx) */
@media (min-width: 901px) and (prefers-reduced-motion: no-preference) {
  .jante-visual {
    position: relative;
    top: 0;
    transform: translate3d(0, var(--pllx, 0px), 0);
    will-change: transform;
  }
}
.jante-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 28px;
}
.jante-stat {
  padding: 18px;
  background: rgba(255,212,0,0.06);
  border: 1px solid rgba(255,212,0,0.18);
  border-radius: var(--radius-md);
}
.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--brand-yellow);
  margin-bottom: 4px;
}
.stat-lbl {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(246,241,230,0.64);
}
.jante-disclaimer {
  margin: 0;
  color: rgba(246,241,230,0.48);
  font-size: 0.66rem;
  line-height: 1.45;
}

/* ========================================================================
   09. ESTIMATOR (preț)
   ======================================================================== */
/* One unified board: tabs → pills → price list → sticky result bar.
   The bar pins to the viewport bottom while the board is in view, so the
   live price + call CTA stay visible while selecting — desktop and mobile. */
.estimator { max-width: 1040px; margin: 0 auto; }
.est-board {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2.6vh, 30px);
  padding: clamp(18px, 2.6vw, 36px);
  background: var(--paper);
  border: 1px solid var(--hairline-strong);
  border-radius: var(--radius-xl);
  box-shadow: 0 26px 70px -30px rgba(11,10,8,0.4);
}
.est-group { display: flex; flex-direction: column; gap: 12px; }
.estimator-label {
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-40);
  font-weight: 600;
}
.est-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
@media (max-width: 860px) { .est-tabs { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.est-tabs .est-opt {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  text-align: center;
  padding: 13px 10px;
  border-radius: var(--radius-md);
}
.est-opt-sub {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.55;
  font-weight: 500;
}
.est-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.est-opt {
  padding: 12px 18px;
  border: 1px solid var(--hairline-strong);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink-60);
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.25s var(--ease-out);
}
.est-opt:hover { border-color: var(--brand-yellow-deep); color: var(--ink); }
.est-opt:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }
.est-opt.is-active {
  background: var(--ink);
  color: var(--brand-yellow);
  border-color: var(--ink);
  box-shadow: 0 10px 24px rgba(11,10,8,0.22);
}

.est-includes {
  list-style: none;
  margin: -8px 0 0;
  padding: 0 6px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-40);
}
.est-includes li::before { content: "✓"; color: var(--brand-yellow-deep); margin-right: 7px; }

.est-bar {
  position: sticky;
  bottom: 14px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 14px 14px 24px;
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 48px rgba(11,10,8,0.4);
}
.est-bar-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.est-bar-label { color: var(--brand-yellow); font-size: 0.58rem; }
.est-bar-value {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.6vw, 2.1rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--brand-yellow);
}
.est-bar-note {
  font-size: 0.76rem;
  color: rgba(246,241,230,0.66);
  overflow-wrap: anywhere;
}
.est-bar .btn-primary { flex-shrink: 0; }
@media (max-width: 640px) {
  .est-board { padding: 16px 14px; border-radius: var(--radius-lg); }
  .est-bar { padding: 12px 12px 12px 16px; bottom: 10px; }
  .est-bar-note { font-size: 0.68rem; }
  .est-bar .btn-primary { padding: 14px 18px; }
}

/* Hallmark · component: price-list (estimator) · genre: editorial · theme: in-house (warm-black + hi-vis)
 * pre-emit critique: P4 H5 E4 S5 R5 V4
 * states: default · hover · selected · service-swap reveal · reduced-motion · mobile 320 */
.result-table-wrap {
  background: var(--paper);
  border: 1px solid var(--hairline-strong);
  border-radius: var(--radius-lg);
  padding: 10px 10px 6px;
  box-shadow: var(--shadow-sm);
}
.price-list { display: flex; flex-direction: column; }

.price-row {
  display: grid;
  align-items: center;
  gap: 10px 16px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border-bottom: 1px solid var(--hairline);
}
.price-list--1col .price-row { grid-template-columns: minmax(0, 1fr) minmax(84px, auto); }
.price-list--2col .price-row { grid-template-columns: minmax(0, 1.3fr) minmax(84px, 1fr) minmax(84px, 1fr); }
.price-row:last-child { border-bottom: none; }

.price-row--head {
  padding: 4px 16px 12px;
  border-bottom: 1px solid var(--hairline-strong);
  border-radius: 0;
}
.price-row--head .price-size,
.price-col {
  font-family: var(--font-mono);
  font-size: var(--fs-mono-sm);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-40);
  font-weight: 600;
  line-height: 1.3;
}
.price-col { text-align: right; }

.price-size {
  font-family: var(--font-display);
  font-size: 1.06rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  min-width: 0;
  overflow-wrap: anywhere;
}
.price-tag {
  display: inline-flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 4px;
  font-variant-numeric: tabular-nums;
}
.price-tag b {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
}
.price-tag i {
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-40);
}

/* hover + selected — selected row becomes a dark chip echoing the active size pill */
.price-row[data-size] {
  cursor: default;
  transition: background 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), border-color 0.25s var(--ease-out);
}
.price-row[data-size]:hover { background: var(--paper-warm); }
.price-row.is-selected {
  background: var(--ink);
  border-color: transparent;
  box-shadow: 0 12px 28px rgba(11, 10, 8, 0.20);
}
.price-row.is-selected .price-size { color: var(--brand-yellow); }
.price-row.is-selected .price-tag b { color: var(--cream); }
.price-row.is-selected .price-tag i { color: rgba(246, 241, 230, 0.6); }

/* staggered reveal when the service changes */
@keyframes price-row-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}
.price-list[data-animate] .price-row[data-size] { opacity: 0; }
.price-list[data-animate].is-in .price-row[data-size] {
  animation: price-row-in 0.5s var(--ease-out) both;
  animation-delay: calc(var(--row-i) * 45ms);
}

.price-disclaimer { margin: 14px 16px 16px; color: var(--ink-40); font-size: 0.68rem; line-height: 1.45; }

@media (max-width: 420px) {
  .price-list--2col .price-row { grid-template-columns: minmax(0, 1fr) 70px 70px; gap: 8px 10px; padding: 12px; }
  .price-tag b { font-size: 1.24rem; }
  .price-size { font-size: 0.98rem; }
}
@media (prefers-reduced-motion: reduce) {
  .price-list[data-animate] .price-row[data-size] { opacity: 1; }
}

/* ========================================================================
   10. DESPRE
   ======================================================================== */
/* Two-column "story + profile card": dark profile aside beside the studio story.
   Fills the section width and reads as an intentional, balanced layout. */
.despre-profile {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 4vw, 60px);
  align-items: start;
  max-width: 1080px;
  margin: 0 auto;
}
@media (max-width: 820px) {
  .despre-profile { grid-template-columns: 1fr; gap: 28px; max-width: 560px; }
}

.despre-aside {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  padding: clamp(26px, 3vw, 36px);
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius-lg);
  box-shadow: 0 26px 60px -28px rgba(11,10,8,0.4);
  position: sticky;
  top: 104px;
}
@media (max-width: 820px) { .despre-aside { position: static; } }
.despre-avatar {
  width: clamp(84px, 12vw, 110px);
  height: clamp(84px, 12vw, 110px);
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--brand-yellow);
  box-shadow: 0 10px 26px rgba(0,0,0,0.35);
  flex-shrink: 0;
}
.despre-id { display: flex; flex-direction: column; gap: 5px; min-width: 0; }
.despre-name {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--cream);
}
.despre-handle { color: rgba(246,241,230,0.55); font-size: 0.64rem; overflow-wrap: anywhere; }
.despre-cta { width: 100%; justify-content: center; margin-top: 2px; }

.despre-main { min-width: 0; }
.despre-lede {
  font-size: clamp(1.15rem, 1.6vw, 1.5rem);
  font-weight: 600;
  line-height: 1.38;
  max-width: 40ch;
  margin: 0 0 20px;
}
.despre-lede strong { color: var(--brand-yellow-deep); }
.despre-body p {
  font-size: var(--fs-body-lg);
  line-height: 1.66;
  color: var(--ink-60);
  margin-bottom: 16px;
  max-width: 60ch;
}
.despre-body p strong { color: var(--ink); font-weight: 700; }
.despre-foot { color: var(--ink-40); font-size: 0.64rem; margin: 22px 0 0; }

.despre-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
  padding: 20px 0;
  border-top: 1px solid var(--hairline-light);
  border-bottom: 1px solid var(--hairline-light);
}
.stat {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  transition-delay: var(--stat-delay, 0ms);
}
.stat.is-visible { opacity: 1; transform: none; }
.stat .value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--cream);
  margin-bottom: 6px;
}
.stat .value .unit { color: var(--brand-yellow); margin-left: 1px; }
.stat .label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(246,241,230,0.5);
  line-height: 1.3;
}

/* ========================================================================
   11. RECENZII
   ======================================================================== */
.recenzii-section { background: var(--ink); color: var(--cream); }
.recenzii-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.2vw, 28px);
}
@media (max-width: 900px) { .recenzii-grid { grid-template-columns: 1fr; } }

.recenzie {
  padding: 32px 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--hairline-light);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}
.recenzie:hover { transform: translateY(-4px); border-color: rgba(255,212,0,0.36); }
.recenzie.is-featured {
  background: rgba(255,212,0,0.08);
  border-color: rgba(255,212,0,0.42);
}
.recenzie-stars {
  color: var(--brand-yellow);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.recenzie-text {
  font-size: 1.02rem;
  line-height: 1.55;
  margin: 0 0 20px;
  color: var(--cream);
  font-weight: 500;
  quotes: none;
  flex: 1;
}
.recenzie-text strong { color: var(--brand-yellow); font-weight: 700; }

.recenzie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid var(--hairline-light);
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.recenzie-name { color: var(--cream); font-weight: 700; }
.recenzie-badge { color: var(--brand-yellow); opacity: 0.72; }
.recenzie-date { color: rgba(246,241,230,0.52); margin-left: auto; }

.recenzii-cta { margin-top: 48px; text-align: center; }

/* ========================================================================
   12. ZONE
   ======================================================================== */
.zone-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .zone-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .zone-grid { grid-template-columns: 1fr 1fr; } }

.zone-card {
  padding: 26px 24px;
  background: var(--paper);
  border: 1px solid var(--hairline-strong);
  border-radius: var(--radius-md);
  transition: transform 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}
.zone-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-yellow-deep);
}
.zone-hq {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--brand-yellow);
}
[data-theme="yellow"] .zone-hq { border-color: var(--paper); }
.zone-hq .zone-name { color: var(--brand-yellow); }
.zone-hq .zone-info, .zone-hq .zone-dist { color: rgba(246,241,230,0.6); }

.zone-idx {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--brand-yellow-deep);
  margin-bottom: 12px;
}
.zone-hq .zone-idx { color: var(--brand-yellow); }
.zone-name {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.zone-info { font-size: 0.9rem; color: var(--ink-40); margin: 0 0 10px; }
.zone-dist {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  color: var(--ink-40);
  text-transform: uppercase;
}
.zone-note { margin-top: 32px; color: var(--ink-40); font-size: 0.7rem; }

/* ========================================================================
   13. FAQ
   ======================================================================== */
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--hairline-strong);
  padding: 4px 0;
}
.faq-item[open] { background: var(--paper-warm); }
.faq-q {
  list-style: none;
  padding: 22px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  transition: color 0.2s var(--ease-out);
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q:hover { color: var(--brand-yellow-deep); }
.faq-ico {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  transition: transform 0.3s var(--ease-out), background 0.3s var(--ease-out), color 0.3s var(--ease-out);
}
.faq-item[open] .faq-ico {
  transform: rotate(45deg);
  background: var(--brand-yellow);
  border-color: var(--brand-yellow);
}
.faq-a { padding: 0 4px 28px; max-width: 72ch; color: var(--ink-60); font-size: 1.02rem; line-height: 1.65; }

/* ========================================================================
   14. CONTACT
   ======================================================================== */
.contact-section { background: var(--ink); color: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2.4vw, 28px);
  margin-bottom: 50px;
}
@media (max-width: 980px) { .contact-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-card {
  padding: 32px 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--hairline-light);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
  transition: border-color 0.3s var(--ease-out);
}
.contact-card:hover { border-color: rgba(255,212,0,0.32); }
.contact-card-label {
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand-yellow);
  margin-bottom: 16px;
}
.contact-phone {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 12px;
  transition: color 0.2s;
}
.contact-phone:hover { color: var(--brand-yellow); }
.contact-hint {
  font-size: 0.86rem;
  color: rgba(246,241,230,0.64);
  margin: 0;
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact-address { font-size: 1.02rem; line-height: 1.55; margin-bottom: 18px; }
.contact-address strong { color: var(--brand-yellow); }
.contact-address .mono-label {
  display: block;
  font-size: 0.66rem;
  color: rgba(246,241,230,0.48);
  margin-top: 8px;
}
.contact-hours {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
}
.contact-hours li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--hairline-light);
}
.contact-hours li:last-child { border-bottom: none; }
.contact-hours strong { color: var(--cream); font-weight: 700; letter-spacing: -0.01em; }
.contact-hours em { color: rgba(246,241,230,0.42); font-style: normal; }

.open-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.3);
  flex-shrink: 0;
}
[data-open-status].is-open .open-dot {
  background: #3ad46d;
  box-shadow: 0 0 0 3px rgba(58,212,109,0.2);
  animation: live-pulse 2s var(--ease-in-out) infinite;
}
[data-open-status].is-open .open-text { color: #3ad46d; }
[data-open-status].is-closed .open-dot { background: var(--safety-red); }

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--hairline-light);
  box-shadow: 0 24px 60px rgba(0,0,0,0.28);
}
.contact-map iframe { display: block; filter: grayscale(0.1); }

/* ========================================================================
   15. FOOTER
   ======================================================================== */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding-top: 48px;
  position: relative;
}
.footer-inner { position: relative; }
.footer-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 52px 48px;
  background: linear-gradient(135deg, var(--brand-yellow) 0%, var(--brand-yellow-deep) 100%);
  color: var(--ink);
  border-radius: var(--radius-xl);
  margin-bottom: 28px;
  box-shadow: 0 28px 70px -22px rgba(0,0,0,0.5);
}
@media (max-width: 900px) { .footer-cta { grid-template-columns: 1fr; text-align: center; padding: 40px 32px; } }

.footer-cta-label {
  color: var(--ink);
  opacity: 0.64;
  margin-bottom: 10px;
  font-size: 0.7rem;
}
.footer-cta-headline {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  max-width: 24ch;
}
.footer-cta-headline em { color: var(--ink); background: rgba(11,10,8,0.12); padding: 0 8px; border-radius: 6px; }
.footer-cta-actions { display: flex; flex-direction: column; gap: 12px; }
.footer-cta-phone {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  grid-template-areas: "label icon" "number icon";
  gap: 0 18px;
  align-items: center;
  padding: 16px 24px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 999px;
  transition: transform 0.25s var(--ease-out);
}
.footer-cta-phone:hover { transform: translateY(-3px); }
.fc-label { grid-area: label; font-family: var(--font-mono); font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--brand-yellow); }
.fc-number { grid-area: number; font-size: 1.4rem; font-weight: 800; letter-spacing: -0.01em; }
.fc-icon { grid-area: icon; font-size: 1.8rem; color: var(--brand-yellow); }

.footer-cta-wa {
  padding: 12px 24px;
  background: rgba(11,10,8,0.14);
  color: var(--ink);
  border-radius: 999px;
  font-weight: 700;
  text-align: center;
  transition: background 0.2s;
}
.footer-cta-wa:hover { background: rgba(11,10,8,0.22); }

.footer-cta-ribbon {
  overflow: hidden;
  padding: 20px 0;
  border-top: 1px solid rgba(255,212,0,0.2);
  border-bottom: 1px solid rgba(255,212,0,0.2);
  background: var(--ink-90);
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}
.footer-cta-ribbon-track {
  display: flex;
  gap: 32px;
  width: max-content;
  animation: ribbon-scroll 40s linear infinite;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.footer-cta-ribbon-group {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  align-items: center;
  color: var(--brand-yellow);
}
.footer-cta-ribbon-group .sep { color: rgba(255,212,0,0.4); }

@keyframes ribbon-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.footer-meta {
  padding: 40px 24px 36px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 40px;
  justify-content: space-between;
  border-top: 1px solid var(--hairline-light);
  margin-top: 20px;
}
.footer-brand { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.footer-logo { height: 46px; width: auto; align-self: flex-start; filter: drop-shadow(0 1px 3px rgba(0,0,0,0.5)); }
.footer-brand-legal { font-family: var(--font-mono); font-size: 0.72rem; color: rgba(246,241,230,0.5); }

.footer-nav { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-nav a {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(246,241,230,0.7);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--brand-yellow); }
.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  color: rgba(246,241,230,0.4);
  letter-spacing: 0.08em;
}

/* ========================================================================
   16. STICKY MOBILE CALL BAR
   ======================================================================== */
.sticky-call {
  position: fixed;
  bottom: 16px;
  right: 16px;
  z-index: 90;
  display: none;
  gap: 8px;
  align-items: stretch;
  pointer-events: none;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}
.sticky-call.is-visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.sticky-call-phone {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--brand-yellow);
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(11,10,8,0.28), 0 4px 12px rgba(0,0,0,0.3);
}
.sc-icon { font-size: 1.3rem; }
.sc-text { display: flex; flex-direction: column; line-height: 1.1; }
.sc-label { font-family: var(--font-mono); font-size: 0.58rem; text-transform: uppercase; letter-spacing: 0.14em; opacity: 0.7; }
.sc-number { font-size: 0.96rem; font-weight: 800; letter-spacing: -0.01em; }
.sticky-call-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  box-shadow: 0 10px 30px rgba(37,211,102,0.38);
  font-weight: 900;
}
.sc-ico-wa { font-size: 1.2rem; }

@media (max-width: 780px) {
  .sticky-call { display: flex; }
}

/* ========================================================================
   17. REDUCED MOTION
   ======================================================================== */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}
