/* ==========================================================================
   Naturestone | Revitalizace — style.css
   Antracit + pískový akcent (#d4a373), glassmorphism, bento-grid, responzivní
   ========================================================================== */

:root {
  /* Brand palette */
  --anthracite: #26282d;
  --anthracite-deep: #1b1d21;
  --sand: #d4a373;
  --sand-deep: #b8814a;
  --stone-warm: #e9ddc9;
  --tint: #f6f3ee;
  --tint-2: #fbf6ef;
  --ink: #1b1d21;
  --ink-2: #2c2f35;
  --muted: #5b5e64;
  --muted-2: #8a8d93;
  --line: rgba(0, 0, 0, 0.08);
  --line-sand: rgba(212, 163, 115, 0.3);
  --white-08: rgba(255, 255, 255, 0.08);
  --white-12: rgba(255, 255, 255, 0.12);
  --white-15: rgba(255, 255, 255, 0.15);

  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 4px 14px -6px rgba(38, 40, 45, 0.15);
  --shadow-md: 0 12px 30px -12px rgba(38, 40, 45, 0.25);
  --shadow-lg: 0 22px 50px -22px rgba(38, 40, 45, 0.35);
  --shadow-cta: 0 10px 30px -8px rgba(184, 129, 74, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  --font: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: inherit; }
ul { list-style: none; }
section[id] { scroll-margin-top: 84px; }

/* ===== Layout helpers ===== */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1rem; }
.container.narrow { max-width: 960px; }
.relative { position: relative; }
.center { text-align: center; }
.mt-8 { margin-top: 2rem; }
.hidden, [hidden] { display: none !important; }
.icon { width: 1.25em; height: 1.25em; flex-shrink: 0; }
.icon.xs { width: 0.85em; height: 0.85em; }
.icon.sand { color: var(--sand); }
.tabular { font-variant-numeric: tabular-nums; }

/* ===== Sections ===== */
.section-light { background: #fff; padding: 4rem 0; }
.section-light-alt { background: var(--tint); padding: 4rem 0; }
.section-tint { background: var(--tint); padding: 4rem 0; }
.section-dark { background: var(--anthracite-deep); color: #f4f1ec; padding: 4rem 0; position: relative; overflow: hidden; }
.section-dark h2.light, .section-dark h2 { color: #fff; }
.section-dark .light-sub { color: rgba(255, 255, 255, 0.7); max-width: 640px; margin: 1rem auto 0; }
@media (min-width: 768px) {
  .section-light, .section-light-alt, .section-tint, .section-dark { padding: 6rem 0; }
}

/* Anthracite gradient section background */
.section-dark::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(212, 163, 115, 0.12), transparent 60%),
    radial-gradient(900px 500px at 0% 100%, rgba(212, 163, 115, 0.08), transparent 55%),
    linear-gradient(180deg, #26282d 0%, #1b1d21 100%);
  z-index: 0;
}
.section-dark > .container { position: relative; z-index: 1; }

/* ===== Eyebrow / headings ===== */
.eyebrow {
  letter-spacing: 0.18em; text-transform: uppercase;
  font-size: 0.72rem; font-weight: 700; color: var(--sand-deep);
}
.eyebrow-light { color: var(--sand); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 900; letter-spacing: -0.02em; line-height: 1.1; }
h3 { font-size: 1.15rem; font-weight: 800; }
.accent { color: var(--sand-deep); }
.accent-strong { color: var(--sand-deep); font-weight: 700; }
.gradient-text {
  background: linear-gradient(135deg, var(--sand) 0%, #f0d9b8 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.section-head { max-width: 640px; margin: 0 auto 3rem; }
.section-head.center { text-align: center; }
.section-head p { color: var(--muted); margin-top: 1rem; }
.section-line-top { position: absolute; top: 0; left: 10%; right: 10%; height: 1px; background: linear-gradient(90deg, transparent, rgba(212, 163, 115, 0.5), transparent); }

/* ===== Glass ===== */
.glass {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid var(--white-12);
}

/* ===== Buttons ===== */
.btn-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: linear-gradient(135deg, var(--sand) 0%, var(--sand-deep) 100%);
  color: var(--anthracite-deep);
  font-weight: 700; font-size: 0.9rem;
  padding: 0.7rem 1.25rem; border-radius: var(--radius);
  box-shadow: var(--shadow-cta);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  position: relative; overflow: hidden;
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 16px 38px -10px rgba(184, 129, 74, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.4); filter: brightness(1.04); }
.btn-cta:active { transform: translateY(0); }
.btn-lg { padding: 1rem 1.75rem; font-size: 1rem; border-radius: var(--radius); }
.btn-block { width: 100%; }
.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff; font-weight: 600; font-size: 0.9rem;
  padding: 0.7rem 1.25rem; border-radius: var(--radius);
  transition: background 0.2s, color 0.2s; background: transparent;
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.1); }
.btn-ghost-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  border: 1px solid var(--white-15); color: #fff; font-weight: 600; font-size: 0.85rem;
  padding: 0.75rem 1rem; border-radius: var(--radius);
}

/* shine sweep on CTA */
.btn-shine::after {
  content: ""; position: absolute; top: 0; left: 0; width: 35%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: translateX(-130%) skewX(-18deg);
  animation: shine 4.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes shine { 0% { transform: translateX(-130%) skewX(-18deg); } 60%, 100% { transform: translateX(260%) skewX(-18deg); } }

/* ===== Scroll progress ===== */
.scroll-progress { position: fixed; inset: 0 0 auto 0; height: 3px; z-index: 100; }
#scroll-progress-bar { height: 100%; width: 0; background: linear-gradient(90deg, var(--sand), var(--sand-deep), var(--sand)); transition: width 0.15s ease-out; }

/* ===== Header ===== */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  transition: background 0.3s, box-shadow 0.3s, border-color 0.3s;
  background: transparent;
}
#site-header.scrolled {
  background: rgba(27, 29, 33, 0.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--white-12);
  box-shadow: 0 8px 30px -12px rgba(0, 0, 0, 0.6);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; gap: 1rem; }
@media (min-width: 1024px) { .header-inner { height: 72px; } }
.logo { display: flex; align-items: center; gap: 0.625rem; }
.logo-img { height: 42px; width: auto; max-width: 220px; object-fit: contain; display: block; }
@media (min-width: 1024px) { .logo-img { height: 48px; } }
.footer-logo-img { height: 52px; margin-bottom: 0.5rem; }
.logo-mark {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 9px;
  background: linear-gradient(135deg, var(--sand), var(--sand-deep));
  color: var(--anthracite-deep); font-weight: 900; font-size: 1.1rem;
  box-shadow: var(--shadow-sm);
}
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name { font-size: 0.95rem; font-weight: 800; color: #fff; letter-spacing: -0.01em; }
.logo-name .logo-dot { color: var(--sand); }
.logo-sub { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sand); }
.nav-desktop { display: none; align-items: center; gap: 0.25rem; }
@media (min-width: 1024px) { .nav-desktop { display: flex; } }
.nav-desktop a {
  position: relative; padding: 0.5rem 0.75rem; border-radius: 6px;
  font-size: 0.875rem; font-weight: 500; color: rgba(255, 255, 255, 0.65);
  transition: background 0.2s, color 0.2s;
}
.nav-desktop a:hover { background: rgba(255, 255, 255, 0.1); color: #fff; }
.nav-desktop a.active { color: #fff; }
.nav-desktop a.active::after {
  content: ""; position: absolute; left: 0.75rem; right: 0.75rem; bottom: -2px;
  height: 2px; border-radius: 2px; background: var(--sand);
}
.header-actions { display: flex; align-items: center; gap: 0.5rem; }
.header-phone {
  display: none; align-items: center; gap: 0.5rem;
  border: 1px solid var(--white-15); border-radius: var(--radius);
  padding: 0.5rem 0.75rem; font-size: 0.875rem; font-weight: 600; color: #fff;
  transition: background 0.2s;
}
.header-phone:hover { background: rgba(255, 255, 255, 0.1); }
.header-phone .icon { color: var(--sand); }
@media (min-width: 640px) { .header-phone { display: flex; } }
.header-phone .phone-full { display: none; }
.header-phone .phone-short { display: inline; }
@media (min-width: 768px) { .header-phone .phone-full { display: inline; } .header-phone .phone-short { display: none; } }
.menu-toggle { display: flex; flex-direction: column; gap: 4px; width: 40px; height: 40px; align-items: center; justify-content: center; border: 1px solid var(--white-15); border-radius: var(--radius); }
.menu-toggle .menu-bar { width: 18px; height: 2px; background: #fff; border-radius: 1px; transition: transform 0.25s, opacity 0.25s; }
.menu-toggle.open .menu-bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.open .menu-bar:nth-child(2) { opacity: 0; }
.menu-toggle.open .menu-bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
@media (min-width: 1024px) { .menu-toggle { display: none; } }
.mobile-menu { display: none; border-top: 1px solid var(--white-12); background: rgba(27, 29, 33, 0.97); backdrop-filter: blur(20px); }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 0.85rem 1rem; font-size: 1rem; font-weight: 500; color: rgba(255, 255, 255, 0.8); border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
.mobile-menu a:hover { background: rgba(255, 255, 255, 0.08); color: #fff; }

.hero { position: relative; padding-top: 8rem; padding-bottom: 7rem; }
@media (min-width: 1024px) { .hero { padding-top: 11rem; padding-bottom: 9rem; } }
.hero-bg-photo {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to top, rgba(38, 40, 45, 0.1) 0%, rgba(38, 40, 45, 0.75) 60%, rgba(38, 40, 45, 0.98) 100%), url('../img/hero-stone-bg.jpg');
  background-size: cover;
  background-position: center bottom;
  opacity: 0.28;
  pointer-events: none;
  z-index: 0;
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.5) 65%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.5) 65%, rgba(0, 0, 0, 0) 100%);
}
.hero-grid {
  position: absolute; inset: 0; opacity: 0.06;
  background-image: radial-gradient(circle at 1px 1px, var(--sand) 1px, transparent 0);
  background-size: 26px 26px;
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(60px); pointer-events: none; }
.hero-glow-l { left: -128px; top: 33%; width: 288px; height: 288px; background: rgba(212, 163, 115, 0.12); }
.hero-glow-r { right: -96px; top: 40px; width: 320px; height: 320px; background: rgba(184, 129, 74, 0.1); }
.hero-divider { position: absolute; left: 0; right: 0; bottom: -1px; width: 100%; height: 60px; line-height: 0; pointer-events: none; z-index: 10; }
.hero-divider svg { position: relative; display: block; width: 100%; height: 60px; }
.urgency-badge {
  display: inline-flex; align-items: center; justify-content: center; text-align: center; gap: 0.75rem; margin: 0 auto 2rem;
  padding: 0.5rem 1.25rem; border-radius: 999px; font-size: 0.8rem;
  background: rgba(255, 255, 255, 0.08); border: 1px solid var(--white-12);
  backdrop-filter: blur(14px); color: rgba(255, 255, 255, 0.9);
}
.urgency-badge strong { color: var(--sand); }
.pulse-wrap { position: relative; display: inline-flex; width: 10px; height: 10px; }
.pulse-dot { position: relative; width: 10px; height: 10px; border-radius: 50%; background: var(--sand); }
.pulse-ring { position: absolute; inset: 0; border-radius: 50%; background: var(--sand); animation: pulse-ring 1.8s ease-out infinite; }
@keyframes pulse-ring { 0% { transform: scale(0.7); opacity: 0.8; } 80%, 100% { transform: scale(2.2); opacity: 0; } }
.hero-content { max-width: 1100px; margin: 0 auto; text-align: center; }
.hero h1 { font-size: clamp(1.75rem, 3.1vw, 2.7rem); font-weight: 900; line-height: 1.25; letter-spacing: -0.02em; color: #fff; text-wrap: normal; }
.hero-sub { margin: 1.75rem auto 0; max-width: 760px; font-size: 1.1rem; color: rgba(255, 255, 255, 0.8); line-height: 1.6; text-wrap: pretty; }
.hero-sub strong { color: #fff; }
.hero-ctas { display: flex; flex-direction: column; align-items: center; gap: 1rem; margin-top: 2.75rem; }
@media (min-width: 640px) { .hero-ctas { flex-direction: row; justify-content: center; } }
.trust-badges { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-top: 3rem; }
@media (min-width: 640px) { .trust-badges { grid-template-columns: repeat(3, 1fr); } }
.trust-badge { display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem 1rem; border-radius: var(--radius); text-align: left; }
.trust-icon { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: var(--radius); background: rgba(212, 163, 115, 0.15); color: var(--sand); flex-shrink: 0; }
.trust-badge span:last-child { display: flex; flex-direction: column; line-height: 1.2; }
.trust-badge strong { font-size: 0.875rem; color: #fff; }
.trust-badge small { font-size: 0.75rem; color: rgba(255, 255, 255, 0.6); }
.social-proof { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.75rem; margin-top: 2.75rem; font-size: 0.875rem; color: rgba(255, 255, 255, 0.65); }
@media (min-width: 640px) { .social-proof { flex-direction: row; gap: 1.5rem; } }
.stars { display: flex; align-items: center; gap: 0.125rem; }
.star { width: 16px; height: 16px; color: var(--sand); fill: var(--sand); }
.star.lg { width: 20px; height: 20px; }
.stars-label { margin-left: 0.375rem; font-weight: 700; color: rgba(255, 255, 255, 0.9); }
.stars-sub { color: rgba(255, 255, 255, 0.55); }
.divider-v { width: 1px; height: 16px; background: rgba(255, 255, 255, 0.2); display: none; }
@media (min-width: 640px) { .divider-v { display: block; } }
.link-sand { color: var(--sand); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.link-sand:hover { text-decoration: underline; }
@media (max-width: 639px) { .hide-mobile { display: none !important; } }

/* ===== Before / After slider ===== */
.ba-slider {
  position: relative; width: 100%; aspect-ratio: 16/9; max-height: 560px;
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-lg);
  user-select: none; touch-action: pan-y; cursor: ew-resize;
  margin-top: 2.5rem;
}
.ba-img-after { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-before { position: absolute; inset: 0; height: 100%; overflow: hidden; }
.ba-img-before { position: absolute; top: 0; left: 0; height: 100%; object-fit: cover; max-width: none; }
.ba-tag { position: absolute; top: 1rem; padding: 0.375rem 0.75rem; border-radius: 999px; font-size: 0.75rem; font-weight: 700; box-shadow: var(--shadow-sm); }
.ba-tag-after { right: 1rem; background: var(--sand); color: var(--anthracite-deep); }
.ba-tag-before { left: 1rem; background: rgba(27, 29, 33, 0.9); color: #fff; }
.ba-handle { position: absolute; top: 0; bottom: 0; transform: translateX(-50%); display: flex; align-items: center; justify-content: center; z-index: 5; }
.ba-line { position: absolute; top: 0; bottom: 0; width: 2px; background: rgba(255, 255, 255, 0.9); }
.ba-knob {
  position: relative; width: 48px; height: 48px; border-radius: 50%; background: #fff; color: var(--sand-deep);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.9), 0 6px 18px rgba(0, 0, 0, 0.35);
  cursor: ew-resize; border: none;
}
.ba-knob .icon { width: 24px; height: 24px; }
.ba-caption { text-align: center; font-size: 0.875rem; color: var(--muted-2); margin-top: 1rem; }

/* ===== Bento grid ===== */
.bento-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-top: 3rem; }
@media (min-width: 640px) { .bento-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .bento-grid { grid-template-columns: repeat(4, 1fr); grid-template-rows: auto auto; } }
.bento-grid-row2 { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-top: 1rem; }
@media (min-width: 640px) { .bento-grid-row2 { grid-template-columns: repeat(3, 1fr); } }
.bento-card { background: #fff; border: 1px solid var(--line-sand); border-radius: var(--radius-lg); padding: 1.5rem; transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s; position: relative; overflow: hidden; }
.bento-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(212, 163, 115, 0.55); }
.bento-big { grid-column: 1 / -1; }
@media (min-width: 640px) { .bento-big { grid-column: span 2; } }
@media (min-width: 1024px) { .bento-big { grid-column: span 2; grid-row: span 2; background: #fff; } }
.bento-glow { position: absolute; top: -64px; right: -64px; width: 224px; height: 224px; border-radius: 50%; background: rgba(212, 163, 115, 0.15); filter: blur(40px); opacity: 0; transition: opacity 0.3s; }
.bento-big:hover .bento-glow { opacity: 1; }
.pill { display: inline-flex; align-items: center; gap: 0.375rem; padding: 0.25rem 0.75rem; border-radius: 999px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.pill-solution { background: rgba(212, 163, 115, 0.15); color: var(--sand-deep); }
.pill .icon { width: 14px; height: 14px; }
.bento-big h3 { font-size: 1.5rem; margin-top: 1rem; }
.bento-big p { color: var(--muted); margin-top: 0.75rem; }
.check-list { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.625rem; }
.check-list li { display: flex; align-items: flex-start; gap: 0.625rem; font-size: 0.875rem; font-weight: 500; color: var(--ink-2); }
.check-list li::before { content: "✓"; display: flex; align-items: center; justify-content: center; width: 20px; height: 20px; border-radius: 50%; background: rgba(212, 163, 115, 0.18); color: var(--sand-deep); font-weight: 700; font-size: 0.75rem; flex-shrink: 0; margin-top: 1px; }
.bento-icon { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: var(--radius); background: rgba(184, 129, 74, 0.12); color: var(--sand-deep); }
.bento-problem .bento-icon { background: rgba(184, 129, 74, 0.12); }
.bento-feature { background: linear-gradient(135deg, #fff, var(--tint-2)); }
.bento-feature .bento-icon { background: rgba(212, 163, 115, 0.18); }
.bento-card h3 { margin-top: 1rem; }
.bento-card p { color: var(--muted); margin-top: 0.5rem; font-size: 0.875rem; }

/* ===== Process ===== */
.process-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; position: relative; margin-top: 3.5rem; }
@media (min-width: 640px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; } }
.process-line { display: none; position: absolute; left: 0; right: 0; top: 36px; height: 2px; background: linear-gradient(90deg, transparent, rgba(212, 163, 115, 0.4), transparent); }
@media (min-width: 1024px) { .process-line { display: block; } }
.process-card { background: #fff; border: 1px solid var(--line-sand); border-radius: var(--radius-lg); padding: 1.5rem; transition: transform 0.3s, box-shadow 0.3s; position: relative; }
.process-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.process-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; position: relative; z-index: 1; }
.process-badge { display: flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--sand), var(--sand-deep)); color: #fff; box-shadow: var(--shadow-md); }
@media (min-width: 1024px) { .process-badge { box-shadow: var(--shadow-md), 0 0 0 6px var(--tint); } }
.process-num { font-size: 1.75rem; font-weight: 900; color: rgba(212, 163, 115, 0.3); }
.process-card h3 { margin-top: 0; }
.process-card p { color: var(--muted); margin-top: 0.5rem; font-size: 0.875rem; flex: 1; }
.process-time { display: inline-flex; align-items: center; gap: 0.375rem; margin-top: 1rem; padding: 0.25rem 0.75rem; border-radius: 999px; background: rgba(212, 163, 115, 0.12); font-size: 0.75rem; font-weight: 700; color: var(--sand-deep); }

/* ===== Stats ===== */
.stats-section .stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 1024px) { .stats-section .stats-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } }
.stat-card { border-radius: var(--radius-lg); padding: 1.25rem; text-align: center; transition: transform 0.3s; position: relative; overflow: hidden; }
.stat-card:hover { transform: translateY(-4px); }
@media (min-width: 1024px) { .stat-card { padding: 1.75rem; } }
.stat-icon { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: var(--radius); background: rgba(212, 163, 115, 0.15); color: var(--sand); margin-bottom: 0.75rem; box-shadow: 0 0 0 1px rgba(212, 163, 115, 0.25); }
.stat-value { font-size: 1.875rem; font-weight: 900; color: #fff; font-variant-numeric: tabular-nums; }
@media (min-width: 1024px) { .stat-value { font-size: 2.25rem; } }
.stat-label { margin-top: 0.25rem; font-size: 0.875rem; font-weight: 600; color: rgba(255, 255, 255, 0.85); }
.stat-sub { font-size: 0.75rem; color: rgba(255, 255, 255, 0.55); }

/* ===== Testimonials ===== */
.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-top: 3rem; }
@media (min-width: 768px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review-card { background: linear-gradient(135deg, #fff, var(--tint-2)); border: 1px solid var(--line-sand); border-radius: var(--radius-lg); padding: 1.5rem; position: relative; display: flex; flex-direction: column; transition: transform 0.3s, box-shadow 0.3s; }
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.quote-mark { position: absolute; right: 1.25rem; top: 1.25rem; width: 36px; height: 36px; color: rgba(212, 163, 115, 0.25); }
blockquote { margin-top: 1rem; flex: 1; font-size: 0.95rem; line-height: 1.6; color: var(--ink-2); }
figcaption { display: flex; align-items: center; gap: 0.75rem; margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.avatar { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; color: #fff; font-size: 0.875rem; font-weight: 700; flex-shrink: 0; box-shadow: var(--shadow-sm); }
.avatar-1 { background: linear-gradient(135deg, var(--sand), var(--sand-deep)); }
.avatar-2 { background: linear-gradient(135deg, #7a8a6a, #5c6b4f); }
.avatar-3 { background: linear-gradient(135deg, #a87a5c, #7d5740); }
figcaption span:last-child { display: flex; flex-direction: column; line-height: 1.3; }
figcaption strong { font-size: 0.875rem; color: var(--ink); }
figcaption small { font-size: 0.75rem; color: var(--muted-2); }
.reviews-aggregate { display: flex; flex-direction: column; align-items: center; gap: 1rem; margin-top: 2.5rem; padding: 1.25rem 1.5rem; border: 1px solid var(--line-sand); background: var(--tint-2); border-radius: var(--radius-lg); text-align: center; }
@media (min-width: 640px) { .reviews-aggregate { flex-direction: row; gap: 2rem; text-align: left; } }
.agg-score { font-size: 1.125rem; font-weight: 900; color: var(--ink); margin-left: 0.375rem; }

/* ===== Gallery ===== */
.gallery-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-top: 3rem; }
@media (min-width: 640px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
.gallery-item { background: var(--tint); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s; }
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(212, 163, 115, 0.55); }
.gallery-thumb { position: relative; display: block; width: 100%; aspect-ratio: 4/3; overflow: hidden; border: none; padding: 0; background: none; cursor: pointer; }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover .gallery-thumb img { transform: scale(1.05); }
.gallery-tag { position: absolute; left: 0.75rem; top: 0.75rem; padding: 0.25rem 0.75rem; border-radius: 999px; background: rgba(27, 29, 33, 0.85); color: var(--sand); font-size: 0.75rem; font-weight: 700; backdrop-filter: blur(4px); }
.gallery-zoom { position: absolute; right: 0.75rem; top: 0.75rem; width: 36px; height: 36px; border-radius: 50%; background: rgba(255, 255, 255, 0.9); color: var(--ink); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; box-shadow: var(--shadow-sm); }
.gallery-item:hover .gallery-zoom { opacity: 1; }
.gallery-overlay { position: absolute; left: 0; right: 0; bottom: 0; padding: 3rem 1rem 1rem; background: linear-gradient(to top, rgba(27, 29, 33, 0.95), rgba(27, 29, 33, 0.7), transparent); color: rgba(255, 255, 255, 0.7); font-size: 0.75rem; transform: translateY(100%); transition: transform 0.3s; }
.gallery-item:hover .gallery-overlay { transform: translateY(0); }
.gallery-cap { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; padding: 1rem; }
.gallery-cap h3 { font-size: 0.875rem; }
.gallery-cap p { display: flex; align-items: center; gap: 0.25rem; margin-top: 0.125rem; font-size: 0.75rem; color: var(--muted-2); }
.gallery-cap p .icon { color: var(--sand-deep); width: 14px; height: 14px; }
.gallery-area { flex-shrink: 0; padding: 0.25rem 0.625rem; border-radius: var(--radius); background: rgba(212, 163, 115, 0.15); font-size: 0.75rem; font-weight: 700; color: var(--sand-deep); }

/* ===== Lightbox ===== */
.lightbox { position: fixed; inset: 0; z-index: 90; display: flex; align-items: center; justify-content: center; background: rgba(0, 0, 0, 0.9); backdrop-filter: blur(4px); padding: 1rem; }
.lightbox-close { position: absolute; right: 1rem; top: 1rem; width: 44px; height: 44px; border-radius: 50%; background: rgba(255, 255, 255, 0.1); color: #fff; display: flex; align-items: center; justify-content: center; }
.lightbox-close:hover { background: rgba(255, 255, 255, 0.2); }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; border-radius: 50%; background: rgba(255, 255, 255, 0.1); color: #fff; display: flex; align-items: center; justify-content: center; }
.lightbox-nav:hover { background: rgba(255, 255, 255, 0.2); }
.lightbox-prev { left: 0.75rem; }
.lightbox-next { right: 0.75rem; }
@media (min-width: 640px) { .lightbox-prev { left: 1.5rem; } .lightbox-next { right: 1.5rem; } }
.lightbox-figure { max-width: 900px; max-height: 88vh; display: flex; flex-direction: column; align-items: center; }
.lightbox-figure img { max-height: 72vh; width: auto; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.lightbox-cap { margin-top: 1rem; display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; border-radius: 999px; background: rgba(255, 255, 255, 0.1); color: #fff; font-size: 0.875rem; flex-wrap: wrap; justify-content: center; }
.lightbox-cap .sep { opacity: 0.5; }
.lightbox-cap .tag { color: var(--sand); font-weight: 700; }
.lightbox-sub { margin-top: 0.5rem; font-size: 0.75rem; color: rgba(255, 255, 255, 0.6); }

/* ===== Comparison table ===== */
.compare-table { margin-top: 3rem; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.compare-row { display: grid; grid-template-columns: 1.4fr 1fr 1fr; }
.compare-head { background: var(--anthracite-deep); color: #fff; }
.compare-head .compare-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 700; color: rgba(255, 255, 255, 0.55); }
.compare-head .compare-our, .compare-head .compare-other { text-align: center; border-left: 1px solid rgba(255, 255, 255, 0.1); }
.compare-head .compare-our small { display: block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; color: var(--sand); }
.compare-head .compare-other small { display: block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; color: rgba(255, 255, 255, 0.45); }
.compare-head .compare-our strong, .compare-head .compare-other strong { font-size: 1rem; }
.compare-head .compare-other strong { color: rgba(255, 255, 255, 0.7); }
.compare-row { border-bottom: 1px solid var(--line); }
.compare-row:last-child { border-bottom: none; }
.compare-row.alt { background: var(--tint-2); }
.compare-label { padding: 1rem 1.5rem; font-size: 0.875rem; font-weight: 600; color: var(--ink); align-self: center; }
.compare-our, .compare-other { padding: 1rem 1.5rem; border-left: 1px solid var(--line); font-size: 0.875rem; display: flex; align-items: center; gap: 0.5rem; }
.compare-our { background: rgba(212, 163, 115, 0.06); }
.cell-ok, .cell-no { display: flex; align-items: center; gap: 0.5rem; }
.cell-ok::before, .cell-no::before { content: ""; display: inline-block; width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0; background-position: center; background-repeat: no-repeat; background-size: 12px; }
.cell-ok::before { background-color: rgba(16, 185, 129, 0.15); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2310b981' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); }
.cell-no::before { background-color: rgba(239, 68, 68, 0.1); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ef4444' stroke-width='3'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E"); }
.cell-ok { color: var(--ink-2); font-weight: 500; }
.cell-no { color: var(--muted-2); }
.compare-other .cell-ok { color: var(--muted-2); }

/* ===== Brands compatibility ===== */
.brands-section { padding: 4.5rem 0; background: var(--tint-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-sub-text { max-width: 760px; margin: 1rem auto 2.25rem; color: var(--muted); font-size: 1rem; line-height: 1.6; }
.brands-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.875rem 1rem; max-width: 960px; margin: 0 auto; }
.brand-chip { display: inline-flex; align-items: center; gap: 0.625rem; padding: 0.75rem 1.25rem; border-radius: 999px; background: #fff; border: 1px solid rgba(0, 0, 0, 0.08); box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04); font-size: 0.9375rem; color: var(--anthracite); transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s; }
.brand-chip:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08); border-color: var(--sand-deep); }
.brand-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sand-deep); }
.brand-chip small { color: var(--muted-2); font-size: 0.8125rem; font-weight: 400; }
.brand-chip-more { background: rgba(212, 163, 115, 0.12); border-color: rgba(212, 163, 115, 0.3); color: var(--anthracite-deep); font-weight: 600; }
.compare-savings { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1rem; padding: 1.5rem; border-radius: var(--radius-lg); background: linear-gradient(135deg, var(--anthracite-deep), var(--anthracite)); color: #fff; }
@media (min-width: 640px) { .compare-savings { flex-direction: row; align-items: center; gap: 2rem; } }
.savings-left { display: flex; align-items: center; gap: 1rem; }
.savings-icon { display: flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: var(--radius); background: rgba(16, 185, 129, 0.15); color: #34d399; }
.savings-left small { display: block; font-size: 0.75rem; color: rgba(255, 255, 255, 0.6); }
.savings-left strong { font-size: 1.5rem; font-weight: 900; }
.compare-savings p { flex: 1; font-size: 0.875rem; color: rgba(255, 255, 255, 0.7); }

/* ===== Calculator ===== */
.calc-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 3rem; }
@media (min-width: 1024px) { .calc-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; } }
.calc-panel { border-radius: var(--radius-xl); padding: 1.75rem; background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.12); box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25); }
@media (min-width: 640px) { .calc-panel { padding: 2.25rem 2rem; } }
.calc-step { display: flex; align-items: center; gap: 0.5rem; color: var(--sand); font-size: 0.875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.calc-step.sand .icon { color: var(--sand); }
.calc-step-sub { color: rgba(255, 255, 255, 0.65); font-size: 0.875rem; margin-top: 0.5rem; margin-bottom: 1.5rem; line-height: 1.5; }
.calc-area { margin-top: 1.5rem; }
.calc-area-head { display: flex; align-items: center; justify-content: space-between; }
.calc-area-head label { font-size: 0.9375rem; font-weight: 700; color: #fff; }
.calc-area-range { font-size: 0.8125rem; font-weight: 600; color: var(--sand); background: rgba(212, 163, 115, 0.12); padding: 0.25rem 0.625rem; border-radius: 999px; white-space: nowrap; }
.calc-area-value { display: flex; align-items: baseline; gap: 0.5rem; margin-top: 0.75rem; }
.calc-area-value > span { font-size: 3rem; font-weight: 900; color: #fff; font-variant-numeric: tabular-nums; line-height: 1; }
.calc-area-value .unit { font-size: 1.25rem; font-weight: 700; color: rgba(255, 255, 255, 0.6); }
.ns-range { -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 999px; margin-top: 1.25rem; outline: none; background: linear-gradient(90deg, var(--sand) 0%, var(--sand-deep) var(--fill, 13%), rgba(255, 255, 255, 0.16) var(--fill, 13%)); }
.ns-range::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 26px; height: 26px; border-radius: 50%; background: #fff; border: 3px solid var(--sand-deep); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); cursor: pointer; transition: transform 0.15s; }
.ns-range::-webkit-slider-thumb:hover { transform: scale(1.12); }
.ns-range::-moz-range-thumb { width: 26px; height: 26px; border-radius: 50%; background: #fff; border: 3px solid var(--sand-deep); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); cursor: pointer; }
.range-ticks { display: flex; justify-content: space-between; margin-top: 0.375rem; font-size: 0.75rem; color: rgba(255, 255, 255, 0.45); white-space: nowrap; }

.calc-summary { margin-top: 2rem; border-radius: var(--radius-lg); border: 1px solid rgba(212, 163, 115, 0.22); background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(212, 163, 115, 0.03)); padding: 1.5rem; box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2); }
.summary-row { display: flex; justify-content: space-between; align-items: center; font-size: 0.9375rem; color: rgba(255, 255, 255, 0.75); padding-bottom: 0.875rem; border-bottom: 1px dashed rgba(255, 255, 255, 0.12); margin-bottom: 1rem; }
.summary-row span:last-child { font-weight: 700; color: var(--sand); }
.summary-total { display: flex; align-items: flex-end; justify-content: space-between; margin-top: 0.5rem; }
.summary-total small { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; color: rgba(255, 255, 255, 0.55); font-weight: 600; }
.total-value { font-size: 2.25rem; font-weight: 900; color: #fff; font-variant-numeric: tabular-nums; line-height: 1.1; }
@media (min-width: 640px) { .total-value { font-size: 3rem; } }
.total-value .cur { font-size: 1.25rem; font-weight: 700; color: rgba(255, 255, 255, 0.6); }
.vat { padding: 0.25rem 0.625rem; border-radius: var(--radius); background: rgba(212, 163, 115, 0.15); font-size: 0.75rem; font-weight: 600; color: var(--sand); white-space: nowrap; }
.savings-badge { display: flex; align-items: flex-start; gap: 0.625rem; margin-top: 1.25rem; padding: 0.875rem 1rem; border-radius: var(--radius); background: rgba(16, 185, 129, 0.1); border: 1px solid rgba(16, 185, 129, 0.25); color: #34d399; font-size: 0.875rem; line-height: 1.45; }
.savings-badge .icon { width: 18px; height: 18px; flex-shrink: 0; margin-top: 0.125rem; }
.savings-badge strong { font-weight: 700; }
.summary-foot { margin-top: 1rem; font-size: 0.75rem; line-height: 1.5; color: rgba(255, 255, 255, 0.45); }

/* form */
.form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: repeat(2, 1fr); } }
.form-row .field { margin-top: 0; }
.field { margin-top: 1.25rem; }
.field label { display: block; margin-bottom: 0.5rem; font-size: 0.875rem; font-weight: 600; color: rgba(255, 255, 255, 0.8); }
.req { color: var(--sand); margin-left: 0.125rem; }
.field input { width: 100%; padding: 0.875rem 1rem; border-radius: var(--radius); border: 1px solid rgba(255, 255, 255, 0.14); background: rgba(255, 255, 255, 0.06); color: #f4f1ec; font-size: 0.875rem; transition: border-color 0.2s, background 0.2s, box-shadow 0.2s; }
.field input::placeholder { color: rgba(244, 241, 236, 0.4); }
.field input:focus { outline: none; border-color: var(--sand); background: rgba(255, 255, 255, 0.1); box-shadow: 0 0 0 3px rgba(212, 163, 115, 0.25); }

/* File upload */
.file-upload-zone {
  position: relative;
  border: 2px dashed rgba(212, 163, 115, 0.35);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  padding: 1.25rem 1rem;
  text-align: center;
  transition: border-color 0.25s, background-color 0.25s;
  cursor: pointer;
  overflow: hidden;
}
.file-upload-zone:hover,
.file-upload-zone.dragover {
  border-color: var(--sand);
  background: rgba(212, 163, 115, 0.08);
}
.file-input-hidden {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}
.upload-prompt {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  pointer-events: none;
}
.upload-icon {
  width: 28px;
  height: 28px;
  color: var(--sand);
  margin-bottom: 0.125rem;
}
.upload-text {
  font-size: 0.875rem;
  color: #f4f1ec;
}
.upload-sub {
  font-size: 0.75rem;
  color: rgba(244, 241, 236, 0.5);
}
.file-previews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(84px, 1fr));
  gap: 0.75rem;
  margin-top: 0.875rem;
}
.file-preview-card {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.25);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  animation: fadeInScale 0.25s ease-out;
}
@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.85); }
  to { opacity: 1; transform: scale(1); }
}
.file-preview-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.file-remove-btn {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.15s;
  padding: 0;
  z-index: 3;
}
.file-remove-btn:hover {
  background: rgba(239, 68, 68, 0.9);
  border-color: transparent;
  transform: scale(1.1);
}
.file-remove-btn .icon {
  width: 12px;
  height: 12px;
}
.file-preview-name {
  position: absolute;
  bottom: 0;
  inset-x: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
  padding: 0.375rem 0.375rem 0.25rem;
  font-size: 0.6875rem;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.calc-prefill { margin-top: 1.25rem; padding: 1rem; border-radius: var(--radius); border: 1px solid rgba(255, 255, 255, 0.1); background: rgba(255, 255, 255, 0.05); font-size: 0.875rem; }
.prefill-row { display: flex; justify-content: space-between; }
.prefill-row + .prefill-row { margin-top: 0.375rem; }
.prefill-row span { color: rgba(255, 255, 255, 0.55); }
.prefill-price { color: var(--sand); font-weight: 700; }
.form-error { margin-top: 1rem; padding: 0.5rem 0.75rem; border-radius: var(--radius); background: rgba(239, 68, 68, 0.12); color: #fca5a5; font-size: 0.875rem; }
#lead-submit { margin-top: 1.5rem; }
.submit-loading { display: none; }
#lead-submit.loading .submit-default { display: none; }
#lead-submit.loading .submit-loading { display: inline-flex; }
.icon.spin { animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.form-trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem 1rem; margin-top: 1rem; font-size: 0.75rem; color: rgba(255, 255, 255, 0.45); }
.form-trust span { display: inline-flex; align-items: center; gap: 0.25rem; }
.form-trust .icon { color: var(--sand); width: 14px; height: 14px; }
.form-success { margin-top: 1.5rem; display: flex; flex-direction: column; align-items: center; text-align: center; padding: 2rem 1.5rem; border-radius: var(--radius-lg); border: 1px solid rgba(16, 185, 129, 0.3); background: rgba(16, 185, 129, 0.1); }
.success-icon { display: flex; align-items: center; justify-content: center; width: 64px; height: 64px; border-radius: 50%; background: rgba(16, 185, 129, 0.2); color: #34d399; }
.success-icon .icon { width: 36px; height: 36px; }
.form-success h3 { margin-top: 1rem; font-size: 1.25rem; color: #fff; }
.form-success p { margin-top: 0.5rem; font-size: 0.875rem; color: rgba(255, 255, 255, 0.7); }
.success-summary { margin-top: 1rem; padding: 0.5rem 1rem; border-radius: var(--radius); background: rgba(255, 255, 255, 0.05); font-size: 0.875rem; color: rgba(255, 255, 255, 0.6); }
.success-summary strong { color: var(--sand); }
.form-success .btn-ghost { margin-top: 1.25rem; }

/* ===== Guarantee ===== */
.guarantee-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-top: 3rem; }
@media (min-width: 640px) { .guarantee-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .guarantee-grid { grid-template-columns: repeat(4, 1fr); } }
.guarantee-card { border-radius: var(--radius-lg); padding: 1.5rem; transition: transform 0.3s; }
.guarantee-card:hover { transform: translateY(-4px); }
.g-icon { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: var(--radius); background: rgba(212, 163, 115, 0.15); color: var(--sand); box-shadow: 0 0 0 1px rgba(212, 163, 115, 0.25); margin-bottom: 1rem; transition: transform 0.3s; }
.guarantee-card:hover .g-icon { transform: scale(1.1); }
.guarantee-card h3 { font-size: 1rem; color: #fff; }
.guarantee-card p { margin-top: 0.5rem; font-size: 0.875rem; color: rgba(255, 255, 255, 0.65); }
.guarantee-seal { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1rem; align-items: center; text-align: center; padding: 1.5rem; border-radius: var(--radius-lg); border: 1px solid var(--line-sand); background: rgba(27, 29, 33, 0.4); }
@media (min-width: 640px) { .guarantee-seal { flex-direction: row; text-align: left; } }
.seal-5 { display: flex; align-items: center; justify-content: center; width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg, var(--sand), var(--sand-deep)); color: var(--anthracite-deep); font-size: 1.5rem; font-weight: 900; flex-shrink: 0; box-shadow: var(--shadow-md); }
.guarantee-seal strong { display: block; font-size: 1.125rem; color: #fff; }
.guarantee-seal p { font-size: 0.875rem; color: rgba(255, 255, 255, 0.6); margin-top: 0.25rem; }
.guarantee-seal .btn-cta { flex-shrink: 0; }

/* ===== Service area ===== */
.regions-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-top: 3rem; }
@media (min-width: 768px) { .regions-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .regions-grid { grid-template-columns: repeat(4, 1fr); } }
.region-card { background: #fff; border: 1px solid var(--line-sand); border-radius: var(--radius-lg); padding: 1.5rem; transition: transform 0.3s, box-shadow 0.3s; }
.region-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.region-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 0.5rem; }
.region-head h3 { font-size: 1rem; line-height: 1.35; }
.region-time { display: inline-flex; align-items: center; gap: 0.25rem; padding: 0.25rem 0.625rem; border-radius: 999px; background: rgba(212, 163, 115, 0.12); font-size: 0.75rem; font-weight: 700; color: var(--sand-deep); white-space: nowrap; flex-shrink: 0; }
.region-card ul { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.375rem; }
.region-card li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--muted); }
.region-card li .icon { color: var(--sand-deep); width: 14px; height: 14px; }
.cities-strip { margin-top: 2.5rem; background: #fff; border: 1px solid var(--line-sand); border-radius: var(--radius-lg); padding: 1.5rem; }
.cities-head { display: flex; flex-direction: column; gap: 1rem; justify-content: space-between; align-items: flex-start; }
@media (min-width: 640px) { .cities-head { flex-direction: row; align-items: center; } }
.cities-head h3 { font-size: 1.125rem; }
.cities-head p { font-size: 0.875rem; color: var(--muted); margin-top: 0.25rem; }
.cities-chips { margin-top: 1.5rem; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.city-chip { display: inline-flex; align-items: center; gap: 0.375rem; padding: 0.375rem 0.75rem; border-radius: 999px; border: 1px solid var(--line-sand); background: var(--tint-2); font-size: 0.75rem; font-weight: 500; color: var(--muted); transition: border-color 0.2s, color 0.2s; }
.city-chip:hover { border-color: var(--sand); color: var(--ink); }
.city-chip .icon { color: var(--sand-deep); width: 14px; height: 14px; }
.city-more { background: rgba(212, 163, 115, 0.15); color: var(--sand-deep); font-weight: 700; border-color: transparent; }

/* ===== FAQ ===== */
.faq-list { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item { background: #fff; border: 1px solid var(--line-sand); border-radius: var(--radius-lg); overflow: hidden; transition: border-color 0.2s, box-shadow 0.2s; }
.faq-item[open] { border-color: var(--sand); box-shadow: var(--shadow-md); }
.faq-item summary { display: flex; align-items: center; gap: 0.75rem; padding: 1.25rem 1.5rem; font-size: 1.0625rem; font-weight: 700; color: var(--ink); cursor: pointer; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-q-icon { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: var(--radius); background: rgba(212, 163, 115, 0.15); color: var(--sand-deep); flex-shrink: 0; }
.faq-q-icon .icon { width: 16px; height: 16px; }
.faq-item summary > span:nth-child(2) { flex: 1; }
.faq-chevron { transition: transform 0.25s; display: flex; }
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-a { padding: 0 1.5rem 1.25rem 3.5rem; }
.faq-a p { color: var(--muted); font-size: 0.95rem; line-height: 1.6; }
.faq-cta { margin-top: 2.5rem; text-align: center; background: #fff; border: 1px solid var(--line-sand); border-radius: var(--radius-lg); padding: 1.5rem; }
.faq-cta p { font-size: 0.875rem; color: var(--muted); }
.faq-phone { display: block; margin: 0.5rem 0; font-size: 1.25rem; font-weight: 900; color: var(--sand-deep); }
.faq-phone:hover { text-decoration: underline; }
.faq-hours { font-size: 0.75rem !important; color: var(--muted-2) !important; }

/* ===== Combined Final CTA & Footer ===== */
.final-cta-footer {
  position: relative;
  background: var(--anthracite-deep);
  color: rgba(255, 255, 255, 0.7);
  padding: 5rem 0 3rem;
  overflow: hidden;
}
.final-cta-content {
  padding-bottom: 3.5rem;
}
.final-cta-content .container {
  position: relative;
  z-index: 1;
}
.final-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: radial-gradient(circle at 1px 1px, var(--sand) 1px, transparent 0);
  background-size: 30px 30px;
  pointer-events: none;
}
.final-glow {
  position: absolute;
  right: -80px;
  top: 35%;
  transform: translateY(-50%);
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: rgba(212, 163, 115, 0.15);
  filter: blur(80px);
  pointer-events: none;
}
.final-cta-footer h2 { font-size: clamp(1.75rem, 5vw, 3rem); }
.final-cta-footer .light-sub { max-width: 640px; margin: 1.25rem auto 2.25rem; }
.final-trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem 1.5rem; margin-top: 2rem; font-size: 0.875rem; color: rgba(255, 255, 255, 0.6); }
.final-trust span { display: inline-flex; align-items: center; gap: 0.375rem; }

/* Footer inner */
#site-footer { border-top: none; }
.footer-inner { padding: 0 1rem 3rem; }
@media (min-width: 1024px) { .footer-inner { padding: 0 2rem 3rem; } }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer-logo .logo-name { font-size: 1rem; }
.footer-brand p { margin-top: 1rem; max-width: 420px; font-size: 0.875rem; line-height: 1.6; }
.footer-brand .link-sand { display: inline-flex; align-items: center; gap: 0.375rem; margin-top: 1rem; font-size: 0.875rem; }
.footer-col h3 { font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.05em; color: #fff; }
.footer-col ul { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.75rem; font-size: 0.875rem; }
.footer-col li { display: flex; align-items: center; gap: 0.625rem; line-height: 1.4; }
.footer-col li .icon { color: var(--sand); width: 16px; height: 16px; flex-shrink: 0; }
.footer-col li a { display: inline-flex; align-items: center; gap: 0.625rem; }
.footer-col li a .icon { color: var(--sand); width: 16px; height: 16px; flex-shrink: 0; }
.footer-col a:hover { color: var(--sand); }
.footer-note { margin-top: 1rem; font-size: 0.75rem; color: rgba(255, 255, 255, 0.45); }
.footer-line { height: 1px; margin: 2rem 0; background: linear-gradient(90deg, transparent, rgba(212, 163, 115, 0.5), transparent); }
.footer-bottom { display: flex; flex-direction: column; gap: 0.75rem; font-size: 0.75rem; color: rgba(255, 255, 255, 0.45); }
@media (min-width: 640px) { .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; } }
.footer-legal { display: flex; flex-wrap: wrap; gap: 0.5rem 1rem; }
.footer-legal a:hover { color: rgba(255, 255, 255, 0.7); }
.footer-disclaimer { margin-top: 1rem; font-size: 0.6875rem; line-height: 1.5; color: rgba(255, 255, 255, 0.35); }

/* ===== Mobile CTA + back to top ===== */
.mobile-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 55; }
@media (min-width: 1024px) { .mobile-cta { display: none; } }
.mobile-cta-fade { position: absolute; left: 0; right: 0; bottom: 100%; height: 24px; background: linear-gradient(to top, rgba(0, 0, 0, 0.25), transparent); pointer-events: none; }
.mobile-cta-bar { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; padding: 0.5rem 0.75rem calc(0.5rem + env(safe-area-inset-bottom, 0px)); padding-top: 0.5rem; border-top: 1px solid var(--white-12); background: rgba(27, 29, 33, 0.95); backdrop-filter: blur(20px); }
.mobile-cta-bar .btn-ghost-outline, .mobile-cta-bar .btn-cta { justify-content: center; padding: 0.75rem; }
.back-to-top { position: fixed; right: 1rem; bottom: 5rem; z-index: 56; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line-sand); background: rgba(27, 29, 33, 0.9); color: var(--sand); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-md); backdrop-filter: blur(10px); opacity: 0; transform: translateY(1rem); pointer-events: none; transition: opacity 0.3s, transform 0.3s, background 0.2s; }
@media (min-width: 1024px) { .back-to-top { bottom: 1.5rem; right: 1.5rem; } }
.back-to-top.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { background: var(--anthracite-deep); }

/* ===== Modals (exit / admin) ===== */
.modal-overlay { position: fixed; inset: 0; z-index: 90; display: flex; align-items: center; justify-content: center; background: rgba(0, 0, 0, 0.7); backdrop-filter: blur(4px); padding: 1rem; }
.modal-overlay[hidden] { display: none; }
.modal-card { position: relative; width: 100%; max-width: 420px; background: #fff; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); animation: pop 0.3s cubic-bezier(0.22, 1, 0.36, 1); }
@keyframes pop { from { transform: scale(0.95); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.modal-close { position: absolute; right: 1rem; top: 1rem; z-index: 2; width: 36px; height: 36px; border-radius: 50%; background: rgba(0, 0, 0, 0.05); color: var(--ink); display: flex; align-items: center; justify-content: center; }
.modal-close:hover { background: rgba(0, 0, 0, 0.1); }
.modal-top { position: relative; padding: 2.5rem 1.5rem 2rem; text-align: center; background: var(--anthracite-deep); color: #fff; }
.modal-top::before { content: ""; position: absolute; inset: 0; opacity: 0.07; background-image: radial-gradient(circle at 1px 1px, var(--sand) 1px, transparent 0); background-size: 22px 22px; }
.modal-top > * { position: relative; }
.modal-gift { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, var(--sand), var(--sand-deep)); color: #fff; box-shadow: var(--shadow-md); margin-bottom: 0.75rem; }
.modal-gift .icon { width: 28px; height: 28px; }
.modal-top h3 { font-size: 1.5rem; color: #fff; margin-top: 0.5rem; }
.modal-top p { font-size: 0.875rem; color: rgba(255, 255, 255, 0.7); margin-top: 0.5rem; }
.modal-body { padding: 1.5rem; }
.modal-input-wrap { position: relative; margin-bottom: 1rem; }
.modal-input-icon { position: absolute; left: 0.875rem; top: 50%; transform: translateY(-50%); color: var(--sand-deep); width: 20px; height: 20px; }
.modal-body input { width: 100%; padding: 0.875rem 1rem 0.875rem 2.75rem; border-radius: var(--radius); border: 1px solid var(--line); background: var(--tint); font-size: 0.875rem; color: var(--ink); transition: border-color 0.2s, background 0.2s; }
.modal-body input:focus { outline: none; border-color: var(--sand); background: #fff; }
#exit-submit { margin-top: 1rem; }
.modal-trust { display: flex; align-items: center; justify-content: center; gap: 0.375rem; margin-top: 0.875rem; font-size: 0.75rem; color: var(--muted-2); }
.modal-trust .icon { width: 14px; height: 14px; }
.modal-decline { display: block; width: 100%; margin-top: 0.75rem; padding-top: 0.25rem; font-size: 0.75rem; color: var(--muted-2); text-decoration: underline; text-underline-offset: 2px; background: none; border: none; }
.modal-decline:hover { color: var(--ink); }
.modal-success { text-align: center; padding: 1rem 0; }
.modal-success .success-icon { background: rgba(16, 185, 129, 0.15); color: #059669; margin: 0 auto; }
.modal-success h4 { margin-top: 0.75rem; font-size: 1.125rem; color: var(--ink); }
.modal-success p { margin-top: 0.25rem; font-size: 0.875rem; color: var(--muted); }
#exit-submit .submit-loading { display: none; }
#exit-submit.loading .submit-default { display: none; }
#exit-submit.loading .submit-loading { display: inline-flex; }

/* ===== Admin modal ===== */
.admin-overlay { align-items: flex-start; padding: 1rem; }
@media (min-width: 640px) { .admin-overlay { padding: 2rem; } }
.admin-card { position: relative; width: 100%; max-width: 1100px; max-height: 88vh; display: flex; flex-direction: column; background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); animation: pop 0.3s cubic-bezier(0.22, 1, 0.36, 1); }
.admin-head { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; padding: 1rem 1.25rem; background: var(--anthracite-deep); color: #fff; }
.admin-title { display: flex; align-items: center; gap: 0.75rem; }
.admin-icon { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: var(--radius); background: rgba(212, 163, 115, 0.15); color: var(--sand); }
.admin-title h3 { font-size: 0.95rem; color: #fff; }
.admin-title p { font-size: 0.75rem; color: rgba(255, 255, 255, 0.55); }
.admin-actions { display: flex; align-items: center; gap: 0.5rem; }
.admin-btn { display: inline-flex; align-items: center; gap: 0.375rem; padding: 0.375rem 0.75rem; border-radius: var(--radius); border: 1px solid var(--white-15); color: rgba(255, 255, 255, 0.8); font-size: 0.75rem; font-weight: 600; transition: background 0.2s; }
.admin-btn:hover { background: rgba(255, 255, 255, 0.1); }
.admin-btn-icon { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: var(--radius); border: 1px solid var(--white-15); color: #fff; }
.admin-btn-icon:hover { background: rgba(255, 255, 255, 0.1); }
.admin-search { display: flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.25rem; background: var(--tint); border-bottom: 1px solid var(--line); position: relative; }
.admin-search-icon { position: absolute; left: 1.75rem; top: 50%; transform: translateY(-50%); color: var(--muted-2); width: 16px; height: 16px; }
.admin-search input { flex: 1; padding: 0.5rem 0.75rem 0.5rem 2.25rem; border-radius: var(--radius); border: 1px solid var(--line); background: #fff; font-size: 0.875rem; }
.admin-search input:focus { outline: none; border-color: var(--sand); }
.admin-results-count { font-size: 0.75rem; color: var(--muted-2); }
.admin-status-strip { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; padding: 0.625rem 1.25rem; background: #fff; border-bottom: 1px solid var(--line); }
.status-pill { display: inline-flex; align-items: center; gap: 0.375rem; padding: 0.25rem 0.75rem; border-radius: 999px; font-size: 0.75rem; font-weight: 700; transition: transform 0.2s; border: none; }
.status-pill:hover { transform: scale(1.05); }
.status-pill.active { box-shadow: 0 0 0 2px currentColor, 0 0 0 4px #fff; }
.status-pill .count { padding: 0.0625rem 0.375rem; border-radius: 999px; background: rgba(255, 255, 255, 0.6); font-size: 0.625rem; }
.status-new { background: rgba(212, 163, 115, 0.15); color: var(--sand-deep); }
.status-contacted { background: #dbeafe; color: #1d4ed8; }
.status-won { background: #d1fae5; color: #047857; }
.status-lost { background: #e5e7eb; color: #4b5563; }
.status-clear { margin-left: auto; display: inline-flex; align-items: center; gap: 0.25rem; font-size: 0.75rem; color: var(--muted-2); background: none; border: none; }
.status-clear:hover { color: var(--ink); }
.admin-body { flex: 1; overflow: auto; background: #fff; }
.admin-empty { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 5rem 1rem; text-align: center; color: var(--muted-2); }
.admin-empty .icon { width: 40px; height: 40px; color: rgba(212, 163, 115, 0.4); margin-bottom: 0.75rem; }
.admin-table { width: 100%; border-collapse: collapse; text-align: left; font-size: 0.875rem; }
.admin-table thead { position: sticky; top: 0; background: var(--anthracite-deep); color: rgba(255, 255, 255, 0.6); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; }
.admin-table th { padding: 0.75rem 1rem; font-weight: 700; }
.admin-table td { padding: 0.75rem 1rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.admin-table tr.alt { background: rgba(251, 246, 239, 0.6); }
.admin-table tr:hover { background: rgba(212, 163, 115, 0.06); }
.admin-code { font-family: ui-monospace, monospace; font-size: 0.75rem; font-weight: 700; color: var(--sand-deep); white-space: nowrap; }
.admin-name { font-weight: 600; color: var(--ink); }
.admin-meta { font-size: 0.75rem; color: var(--muted-2); }
.admin-price { font-weight: 700; color: var(--ink); text-align: right; white-space: nowrap; }
.admin-status-select { position: relative; display: inline-block; }
.admin-status-select select { appearance: none; border: none; border-radius: 999px; padding: 0.25rem 1.75rem 0.25rem 0.625rem; font-size: 0.75rem; font-weight: 700; cursor: pointer; outline: none; }
.admin-status-select select:focus { box-shadow: 0 0 0 2px rgba(212, 163, 115, 0.4); }
.admin-status-select .caret { position: absolute; right: 0.5rem; top: 50%; transform: translateY(-50%); width: 12px; height: 12px; opacity: 0.6; pointer-events: none; }
.admin-foot { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; padding: 0.625rem 1.25rem; background: var(--tint); border-top: 1px solid var(--line); font-size: 0.75rem; color: var(--muted-2); }
.admin-foot .icon { color: var(--sand-deep); width: 14px; height: 14px; }

/* ===== Cookie consent ===== */
.cookie-consent { position: fixed; left: 0; right: 0; bottom: 0; z-index: 65; transform: translateY(100%); opacity: 0; transition: transform 0.3s, opacity 0.3s; padding: 0 0.75rem 0.75rem; }
.cookie-consent.show { transform: translateY(0); opacity: 1; }
.cookie-consent[hidden] { display: none; }
@media (min-width: 1024px) { .cookie-consent { padding: 0 1rem 1.25rem; } }
.cookie-card { max-width: 1100px; margin: 0 auto; border-radius: var(--radius-lg); border: 1px solid var(--white-12); background: rgba(27, 29, 33, 0.95); box-shadow: var(--shadow-lg); backdrop-filter: blur(20px); overflow: hidden; }
.cookie-main { display: flex; flex-direction: column; gap: 1rem; padding: 1.25rem; }
@media (min-width: 640px) { .cookie-main { flex-direction: row; align-items: center; gap: 1.25rem; } }
.cookie-icon { display: none; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: var(--radius); background: rgba(212, 163, 115, 0.15); color: var(--sand); box-shadow: 0 0 0 1px rgba(212, 163, 115, 0.25); flex-shrink: 0; }
@media (min-width: 640px) { .cookie-icon { display: flex; } }
.cookie-text h3 { font-size: 0.875rem; color: #fff; display: flex; align-items: center; gap: 0.5rem; }
.cookie-text h3 .icon { display: none; color: var(--sand); width: 16px; height: 16px; }
@media (min-width: 640px) { .cookie-text h3 .icon { display: none; } }
.cookie-text p { margin-top: 0.375rem; font-size: 0.75rem; line-height: 1.5; color: rgba(255, 255, 255, 0.65); }
.cookie-actions { display: flex; flex-direction: column; gap: 0.5rem; flex-shrink: 0; }
@media (min-width: 640px) { .cookie-actions { flex-direction: row; } }
.cookie-defer { display: none; padding: 0.625rem 1rem; font-size: 0.75rem; font-weight: 600; color: rgba(255, 255, 255, 0.55); background: none; border: none; }
.cookie-defer:hover { color: rgba(255, 255, 255, 0.8); }
@media (min-width: 640px) { .cookie-defer { display: inline-flex; align-items: center; } }
.cookie-foot { display: flex; align-items: center; gap: 0.375rem; padding: 0.5rem 1.25rem; border-top: 1px solid rgba(255, 255, 255, 0.08); background: rgba(255, 255, 255, 0.02); font-size: 0.6875rem; color: rgba(255, 255, 255, 0.45); }
.cookie-foot .icon { color: var(--sand); width: 14px; height: 14px; }

/* ===== Custom scrollbar ===== */
.ns-scroll::-webkit-scrollbar { width: 8px; height: 8px; }
.ns-scroll::-webkit-scrollbar-track { background: transparent; }
.ns-scroll::-webkit-scrollbar-thumb { background: rgba(212, 163, 115, 0.45); border-radius: 9999px; }
.ns-scroll::-webkit-scrollbar-thumb:hover { background: rgba(212, 163, 115, 0.7); }

/* ===== Reveal on scroll ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ===== Reduced motion ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
