/* ============================================
   Asel — Architectural Precision × Mediterranean
   New design system v1.0
   ============================================ */

/* ---------- ACCESSIBILITY ---------- */
:focus-visible { outline: 2px solid var(--aqua); outline-offset: 2px; }
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.skip-link {
  position: absolute; top: -100%; left: 0; z-index: 2000;
  background: var(--ink); color: var(--linen);
  padding: var(--space-3) var(--space-5); border-radius: 0 0 var(--radius) 0;
  font-size: var(--fs-sm); font-weight: 600; text-decoration: none;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 0; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* ---------- TOKENS ---------- */
:root {
  color-scheme: dark;
  /* Palette */
  --ink: #1C1F26;
  --ink-soft: #2C313C;
  --linen: #F2EFE8;
  --linen-warm: #EAE5D8;
  --paper: #FAFAF7;
  --aqua: #00A6A0;
  --aqua-deep: #008078;
  --aqua-pale: #E6F5F4;
  --silver: #A8AEB6;
  --silver-deep: #6E757F;
  --amber: #B87333;
  --amber-pale: #F0E6DC;
  --white: #FFFFFF;
  --line: rgba(28, 31, 38, 0.12);
  --line-light: rgba(28, 31, 38, 0.06);

  /* Type */
  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --font-brand: 'Playfair Display', 'Georgia', serif;

  /* Scale */
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.25rem;
  --fs-xl: 1.5rem;
  --fs-2xl: 2rem;
  --fs-3xl: 2.5rem;
  --fs-4xl: 3.25rem;
  --fs-5xl: 4.5rem;

  /* Space */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;

  /* Layout */
  --maxw: 1280px;
  --radius: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(28, 31, 38, 0.08);
  --shadow-md: 0 4px 20px rgba(28, 31, 38, 0.08);
  --shadow-lg: 0 12px 40px rgba(28, 31, 38, 0.12);
  --header-h: 72px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ---------- 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-body);
  font-size: var(--fs-base);
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; }
::selection { background: var(--aqua); color: var(--white); }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.1; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.75rem, 7vw, var(--fs-5xl)); font-weight: 700; line-height: 1.05; }
h2 { font-size: clamp(1.75rem, 4vw, var(--fs-3xl)); font-weight: 600; line-height: 1.1; }
h3 { font-size: var(--fs-2xl); font-weight: 500; line-height: 1.15; }
h4 { font-size: var(--fs-lg); font-weight: 500; line-height: 1.2; }
p { color: var(--ink-soft); }
strong { font-weight: 600; }
.mono { font-family: var(--font-mono); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--aqua);
  position: relative;
  display: inline-block;
}
.eyebrow::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  height: 2px; width: 0;
  background: linear-gradient(90deg, var(--aqua), var(--aqua-deep));
  border-radius: 1px;
  transition: width 0.6s var(--ease) 0.2s;
}
.reveal.visible .eyebrow::after,
.section-head.reveal.visible .eyebrow::after,
.eyebrow.visible::after { width: 100%; }
.muted { color: var(--silver-deep); }
.accent { color: var(--aqua); }

/* ---------- LAYOUT ---------- */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--space-5); width: 100%; }
@media (max-width: 480px) {
  .container { padding: 0 var(--space-4); }
}
.section { padding: var(--space-9) 0; position: relative; }
.section:first-of-type { border-top: none; }
.section + .section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 120px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--aqua), transparent);
  opacity: 0.2;
}
.section-sm { padding: var(--space-7) 0; }
@media (max-width: 768px) {
  .section { padding: var(--space-7) 0; }
  .section-sm { padding: var(--space-6) 0; }
}
@media (max-width: 480px) {
  .section { padding: var(--space-6) 0; }
  .section-sm { padding: var(--space-5) 0; }
}
.section-ink { background: var(--ink); color: var(--linen); border-top: none; position: relative; }
.section-ink::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.section-ink > * { position: relative; z-index: 1; }
.section-ink + .section { border-top: none; }
.section-ink h2, .section-ink h3, .section-ink h4 { color: var(--white); }
.section-ink p { color: var(--silver); }
.section-linen { background: var(--white); }
.grid { display: grid; gap: var(--space-6); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 960px) { .grid-3, .grid-4, .grid-5 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; } }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 12px 28px;
  border-radius: var(--radius);
  font-family: var(--font-brand);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background-color, box-shadow, color 0.3s var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary { background: var(--aqua); color: var(--white); box-shadow: 0 4px 16px rgba(0, 166, 160, 0.15); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0, 166, 160, 0.4); }
.btn-primary:active { transform: translateY(0); }
.btn-primary:focus-visible { outline: 2px solid var(--white); outline-offset: 2px; }
.btn-ink { background: var(--ink); color: var(--linen); }
.btn-ink:hover { background: var(--ink-soft); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; border: 1.5px solid var(--line); color: var(--ink); position: relative; overflow: hidden; z-index: 1; }
.btn-outline::before { content: ''; position: absolute; left: 0; top: 0; width: 0; height: 100%; background: var(--aqua); transition: width 0.3s var(--ease); z-index: -1; }
.btn-outline:hover { border-color: var(--aqua); color: var(--white); }
.btn-outline:hover::before { width: 100%; }
.btn-amber { background: var(--amber); color: var(--white); box-shadow: 0 4px 16px rgba(184, 115, 51, 0.15); }
.btn-amber:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(224, 145, 66, 0.4); }
.btn-lg { padding: 16px 36px; font-size: var(--fs-base); }
.btn-sm { padding: 8px 16px; font-size: var(--fs-xs); }

/* CTA button — stronger visual presence */
.btn-cta {
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}
.btn-cta::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}
.btn-cta:hover::before { width: 300px; height: 300px; }
.btn-cta:active { transform: scale(0.98); }

/* CTA arrow */
.btn-cta::after { content: ' →'; display: inline; transition: transform 0.2s var(--ease); }
.btn-cta:hover::after { transform: translateX(4px); }

/* ---------- HEADER ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 1000;
  background: rgba(28, 31, 38, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 166, 160, 0.18);
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.header.scrolled { background: rgba(28, 31, 38, 0.96); border-bottom-color: rgba(0, 166, 160, 0.28); }
.header-inner { max-width: var(--maxw); margin: 0 auto; height: 100%; display: flex; align-items: center; justify-content: space-between; gap: var(--space-5); padding: 0 var(--space-5); }

/* Logo */
.logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-brand); font-weight: 700; font-size: 1.5rem; letter-spacing: -0.01em; color: var(--white); }
.logo-mark { width: 36px; height: 36px; position: relative; flex-shrink: 0; }
.logo-mark svg, .logo-mark img { width: 100%; height: 100%; display: block; }
.header .logo-mark img, .footer .logo-mark img { content: url('/assets/img/logo-asel-profile-light.svg'); }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name { font-family: var(--font-brand); font-size: 1.5rem; font-weight: 700; letter-spacing: -0.01em; color: var(--white); }
.logo-slogan { font-family: var(--font-mono); font-size: 0.625rem; font-weight: 400; color: var(--aqua); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 2px; }
@media (max-width: 480px) {
  .logo { gap: 8px; }
  .logo-mark { width: 32px; height: 32px; }
  .logo-name, .apple-preview .logo-name { font-size: 1.22rem; }
  .logo-slogan { display: none; }
}

/* Nav */
.nav { display: flex; align-items: center; gap: var(--space-6); }
.nav a {
  font-family: var(--font-body); font-size: var(--fs-sm); font-weight: 500; color: var(--silver);
  position: relative; padding: 4px 0; transition: color 0.2s;
}
.nav a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--aqua); transition: width 0.3s var(--ease); }
.nav a:hover, .nav a.active { color: var(--white); }
.nav a:hover::after, .nav a.active::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: var(--space-4); }
.phone-link { font-family: var(--font-body); font-size: var(--fs-sm); font-weight: 600; color: var(--white); }
.phone-link:hover { color: var(--aqua); }
.header-quote { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 42px; padding-inline: 18px; }
.header-quote span { display: inline-block; transition: transform .2s var(--ease); }
.header-quote:hover span { transform: translateX(3px); }
.header-quote-mobile { display: none; }

/* Burger */
.burger { display: none; flex-direction: column; align-items: center; justify-content: center; gap: 5px; min-width: 44px; min-height: 44px; padding: 8px; z-index: 1001; }
.language-switcher { display: inline-flex; align-items: center; gap: 2px; padding: 3px; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; }
.language-switcher a { display: grid; place-items: center; min-width: 30px; min-height: 28px; padding: 0 6px; border-radius: 999px; color: rgba(255,255,255,.72); font-family: var(--font-mono); font-size: 11px; font-weight: 600; }
.language-switcher a[aria-current="page"] { color: var(--ink); background: var(--white); }
@media (max-width: 1180px) { .language-switcher { display: none; } }
.mobile-menu .language-switcher { display: flex; align-self: flex-start; margin-bottom: 12px; border-color: var(--line); }
.mobile-menu .language-switcher a { color: var(--silver-deep); }
.mobile-menu .language-switcher a[aria-current="page"] { color: var(--white); background: var(--aqua-deep); }
.burger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: background-color, color, opacity, transform 0.3s var(--ease); }
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; top: 0; right: -100%; bottom: 0; width: min(360px, 85vw);
  background: var(--ink); z-index: 999;
  padding: calc(var(--header-h) + var(--space-5)) var(--space-6);
  transition: right 0.4s var(--ease);
  display: flex; flex-direction: column; gap: var(--space-5);
  overflow-y: auto;
}
.mobile-menu.open { right: 0; }
.mobile-menu a { font-family: var(--font-body); font-size: var(--fs-lg); color: var(--linen); padding: var(--space-3) 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.mobile-menu a:hover { color: var(--aqua); }
.mobile-menu .mobile-cta { margin-top: var(--space-5); }
.mobile-menu .language-switcher { flex-direction: row; gap: 4px; padding: 3px; }
.mobile-menu .language-switcher a {
  display: grid;
  place-items: center;
  min-width: 36px;
  min-height: 36px;
  padding: 0 8px;
  border: 0;
  border-radius: 999px;
  color: var(--silver);
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1;
}
.mobile-menu .language-switcher a[aria-current="page"] { color: var(--white); background: var(--aqua-deep); }

.menu-overlay {
  position: fixed; inset: 0; background: rgba(28, 31, 38, 0.5); backdrop-filter: blur(4px);
  z-index: 998; opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.menu-overlay.show { opacity: 1; pointer-events: auto; }

@media (max-width: 860px) {
  .nav, .phone-link { display: none; }
  .burger { display: flex; }
  .header-actions .header-quote { display: none; }
  .header-actions .header-phone-mobile { display: flex; }
  .header-actions .header-quote-mobile { display: inline-flex; }
}
.header-phone-mobile {
  display: none;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--radius);
  background: var(--aqua);
  color: var(--white);
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease);
}
.header-phone-mobile:hover { transform: scale(1.05); background: #008B86; }
.header-phone-mobile svg { width: 16px; height: 16px; fill: #fff !important; flex-shrink: 0; }
.header-phone-mobile svg path { fill: #fff !important; }
.header-quote-mobile {
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 44px;
  padding: 8px 13px;
  border-radius: var(--radius);
  background: var(--aqua);
  color: var(--white);
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: -.01em;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color .2s var(--ease), transform .2s var(--ease);
}
.header-quote-mobile:hover { background: #008B86; transform: translateY(-1px); }
.header-quote-mobile:focus-visible, .header-phone-mobile:focus-visible { outline: 2px solid var(--white); outline-offset: 2px; }
@media (max-width: 480px) {
  .header-phone-mobile { width: 44px; min-width: 44px; height: 44px; padding: 0; justify-content: center; gap: 0; font-size: 0; }
  .header-phone-mobile svg { width: 18px; height: 18px; }
  .header-quote-mobile { padding-inline: 12px; }
}

/* ---------- HERO ---------- */
.hero {
  min-height: 80vh; padding: calc(var(--header-h) + var(--space-8)) 0 var(--space-9);
  position: relative; overflow: hidden;
  background: var(--ink);
}

/* Blueprint animated background — technical grid + scan beam + glow orbs */
.hero-bg.blueprint { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.bp-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,166,160,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,166,160,0.08) 1px, transparent 1px);
  background-size: 60px 60px;
}
.bp-scan {
  position: absolute; top: 0; bottom: 0; width: 300px;
  background: linear-gradient(90deg, transparent, rgba(0,166,160,0.12), transparent);
  animation: bpScan 8s ease-in-out infinite;
}
@keyframes bpScan {
  0% { left: -300px; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}
.bp-glow { position: absolute; border-radius: 50%; filter: blur(100px); will-change: transform; }
.bp-glow-1 { width: 500px; height: 500px; background: rgba(0,166,160,0.20); top: -20%; right: -5%; animation: bpOrbFloat 12s ease-in-out infinite; }
.bp-glow-2 { width: 450px; height: 450px; background: rgba(184,115,51,0.12); bottom: -10%; left: -5%; animation: bpOrbFloat 15s ease-in-out infinite reverse; }
@keyframes bpOrbFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(40px, -30px); }
}

.hero-inner { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--space-5); display: grid; grid-template-columns: 1fr; gap: var(--space-5); align-items: center; min-height: calc(70vh - var(--header-h) - var(--space-8)); }
@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; gap: var(--space-7); }
  .hero-content { max-width: 100% !important; }
  .hero-visual { display: none; }
}

.hero-content {
  max-width: 580px;
}

.hero-eyebrow { margin-bottom: var(--space-4); display: flex; align-items: center; gap: var(--space-2); }
.hero-eyebrow .dot { width: 8px; height: 8px; background: var(--aqua); border-radius: 50%; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.3); } }

.hero h1 { margin-bottom: var(--space-5); color: var(--linen); }
.hero h1 em { font-style: italic; color: var(--aqua); font-family: var(--font-display); font-weight: 400; }

.hero-desc { font-size: var(--fs-md); line-height: 1.7; max-width: 520px; margin-bottom: var(--space-6); color: var(--silver); font-weight: 400; }

/* Hero grid — text left, visual right */
.hero-inner { grid-template-columns: 1.05fr 0.95fr; gap: var(--space-7); }
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr 0.85fr; gap: var(--space-6); }
}
@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; gap: var(--space-7); }
  .hero-content { max-width: 100% !important; }
}

.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-frame {
  position: relative; width: 100%; max-width: 480px;
  border-radius: var(--radius-lg, 18px);
  overflow: visible;
}
.hero-frame picture {
  display: block; width: 100%; aspect-ratio: 1/1;
  border-radius: 18px; overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.45), 0 0 0 1px rgba(242,239,232,0.08);
  position: relative;
}
.hero-frame picture::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,13,17,0.35) 100%);
  pointer-events: none;
}
.hero-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Floating stat tag on the photo corner */
.hero-frame-tag {
  position: absolute; bottom: -18px; right: -12px;
  display: flex; align-items: center; gap: 10px;
  padding: 12px 18px;
  background: var(--linen);
  color: var(--ink);
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.35);
  font-family: var(--font-mono);
}
.hero-frame-tag-num {
  font-family: var(--font-display); font-weight: 700;
  font-size: 26px; line-height: 1;
  color: var(--aqua-deep, #008078);
}
.hero-frame-tag-text {
  font-size: 10px; line-height: 1.2;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--silver-deep, #6b7280);
}
@media (max-width: 860px) {
  .hero-frame-tag { bottom: -14px; right: 12px; }
  .hero-frame { max-width: 380px; margin: 0 auto; }
}

/* Trust row under hero description */
.hero-trust {
  list-style: none; padding: 0; margin: 0 0 var(--space-5);
  display: flex; flex-wrap: wrap; gap: 18px;
  font-family: var(--font-mono); font-size: 12px;
  color: var(--silver);
  letter-spacing: 0.02em;
}
.hero-trust li { display: flex; align-items: baseline; gap: 6px; }
.hero-trust strong {
  font-family: var(--font-display); font-weight: 600;
  font-size: 16px; color: var(--aqua);
  letter-spacing: 0;
}

/* Hero phone ghost button */
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0 22px; height: 48px;
  background: transparent;
  color: var(--linen);
  border: 1px solid rgba(242,239,232,0.25);
  border-radius: 999px;
  font-family: var(--font-body); font-weight: 500; font-size: 15px;
  cursor: pointer; text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.btn-ghost:hover {
  border-color: var(--aqua); color: var(--aqua);
  background: rgba(0,166,160,0.06);
}
.btn-ghost svg { flex-shrink: 0; }

/* Mobile */
@media (max-width: 860px) {
  .hero h1 { font-weight: 700; }
}

/* Hero specs */
.hero-specs { display: flex; gap: var(--space-6); margin-bottom: var(--space-6); }
.hero-spec { display: flex; flex-direction: column; }
.hero-spec-val { font-family: var(--font-display); font-size: var(--fs-2xl); font-weight: 600; color: var(--linen); text-shadow: none; }
.hero-spec-label { font-family: var(--font-mono); font-size: var(--fs-xs); color: var(--silver); text-transform: uppercase; letter-spacing: 0.1em; text-shadow: none; }

.hero-actions { display: flex; flex-wrap: wrap; gap: var(--space-3); }
.hero-action-note {
  flex-basis: 100%;
  color: var(--silver);
  font-size: var(--fs-sm);
  line-height: 1.4;
}
.hero-action-note strong { color: var(--aqua); font-weight: 650; }

/* Hero outline button on dark blueprint bg */
.hero .btn-outline { border-color: rgba(242,239,232,0.3); color: var(--linen); }
.hero .btn-outline:hover { border-color: var(--aqua); color: var(--aqua); }
.hero .btn-outline::before { background: var(--aqua); }
.hero .btn-outline:hover::before { width: 100%; }

/* Hero promo card */
.hero-promo {
  background: rgba(242,239,232,0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0,166,160,0.25);
  border-radius: 16px;
  padding: 44px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  max-width: 460px;
}
.hero-promo::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--aqua), var(--amber), var(--aqua));
  animation: promoBar 3s ease-in-out infinite;
}
@keyframes promoBar {
  0%, 100% { opacity: 0.6; transform: scaleX(0.8); }
  50% { opacity: 1; transform: scaleX(1); }
}
.hero-promo-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(184,115,51,0.15);
  border: 1px solid rgba(184,115,51,0.3);
  border-radius: 6px;
  padding: 4px 12px;
  margin-bottom: 24px;
}
.hero-promo-gift {
  color: var(--aqua);
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  animation: promoFloat 4s ease-in-out infinite;
}
@keyframes promoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.hero-promo-title {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 600;
  line-height: 1.2;
  color: var(--linen);
  margin-bottom: 16px;
}
.hero-promo-title em {
  font-style: italic;
  color: var(--aqua);
  font-weight: 400;
}
.hero-promo-desc {
  font-size: var(--fs-sm);
  line-height: 1.6;
  color: var(--silver);
  margin-bottom: 28px;
}
.hero-promo-cta {
  width: 100%;
  justify-content: center;
  margin-bottom: 16px;
}
.hero-promo-note {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--silver-deep);
  letter-spacing: 0.05em;
}

/* Hero visual */
.hero-visual { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/5; }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(28,31,38,0.4) 0%, transparent 40%); }

@media (max-width: 860px) {
  .hero-visual { display: none; }
}

/* Hero promo badge — над заголовком */
.hero-promo-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  background: rgba(184, 115, 51, 0.12);
  border: 1px solid rgba(184, 115, 51, 0.35);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  font-weight: 500;
  color: var(--amber);
  margin-bottom: var(--space-4);
  letter-spacing: 0.02em;
}
.hero-promo-badge svg { color: var(--amber); flex-shrink: 0; }

/* CTA promo tag */
.cta-promo-tag {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: var(--space-4);
  padding: 8px 14px;
  background: rgba(184, 115, 51, 0.15);
  border: 1px solid rgba(184, 115, 51, 0.35);
  border-radius: var(--radius);
  font-size: var(--fs-sm);
  color: var(--silver);
}
.cta-promo-tag svg { color: var(--amber); flex-shrink: 0; }
.cta-promo-tag strong { color: var(--linen); font-weight: 600; }

/* Promotion — one clear offer with the condition visible at a glance */
.hero-promo-badge,
.cta-promo-tag {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  column-gap: 12px;
  align-items: center;
  text-align: left;
}
.hero-promo-badge {
  width: min(100%, 430px);
  padding: 12px 14px;
  border-radius: 16px;
  letter-spacing: normal;
  text-transform: none;
}
.cta-promo-tag {
  width: min(100%, 440px);
  margin-top: var(--space-4);
  padding: 11px 13px;
  border-radius: 14px;
}
.hero-promo-badge svg,
.cta-promo-tag svg {
  grid-row: 1 / span 3;
  width: 38px;
  height: 38px;
  padding: 9px;
  color: var(--amber);
  background: rgba(184, 115, 51, .14);
  border: 1px solid rgba(184, 115, 51, .26);
  border-radius: 50%;
}
.promo-kicker {
  color: var(--amber);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  line-height: 1.2;
  text-transform: uppercase;
}
.promo-offer {
  color: var(--linen);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.25;
}
.promo-condition {
  color: var(--silver);
  font-size: 12px;
  line-height: 1.3;
}

@media (max-width: 640px) {
  .hero-promo-badge,
  .cta-promo-tag { width: 100%; }
}

/* ===== HERO QUIZ ===== */
.hero-quiz {
  background: rgba(242,239,232,0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0,166,160,0.25);
  border-radius: 16px;
  padding: 28px 32px;
  position: relative;
  overflow: hidden;
  max-width: 460px;
  color: var(--linen);
}
.hero-quiz::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--aqua), var(--amber), var(--aqua));
  animation: promoBar 3s ease-in-out infinite;
}
.hero-quiz-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--aqua);
  background: rgba(0,166,160,0.12);
  border: 1px solid rgba(0,166,160,0.3);
  border-radius: 6px;
  padding: 4px 12px;
  margin-bottom: 18px;
}
.hero-quiz-badge .dot { width: 6px; height: 6px; background: var(--aqua); border-radius: 50%; animation: pulse 2s infinite; }
.hero-quiz-title {
  font-family: var(--font-display); font-size: var(--fs-xl); font-weight: 600;
  line-height: 1.2; color: var(--linen); margin-bottom: 8px;
}
.hero-quiz-title em { font-style: italic; color: var(--aqua); font-weight: 400; }
.hero-quiz-sub { font-size: var(--fs-sm); color: var(--silver); margin-bottom: 20px; line-height: 1.5; }

/* Quiz steps */
.hq-step { display: none; animation: hqFade 0.4s var(--ease); }
.hq-step.active { display: block; }
@keyframes hqFade { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.hq-step-q { font-size: var(--fs-sm); font-weight: 600; color: var(--linen); margin-bottom: 14px; }
.hq-step-q span { font-family: var(--font-mono); font-size: 11px; color: var(--aqua); margin-right: 8px; letter-spacing: 0.1em; }

/* Quiz options — compact cards on dark bg */
.hq-options { display: grid; gap: 8px; margin-bottom: 18px; }
.hq-options.cols-2 { grid-template-columns: repeat(2, 1fr); }
.hq-options.cols-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 480px) { .hq-options.cols-3 { grid-template-columns: repeat(2, 1fr); } }
.hq-option {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  cursor: pointer;
  transition: background-color, border-color, color 0.25s var(--ease);
  text-align: left;
  font-size: var(--fs-sm);
  color: var(--silver);
  position: relative;
}
.hq-option:hover {
  border-color: var(--aqua);
  background: rgba(0,166,160,0.08);
  color: var(--linen);
  transform: translateY(-1px);
}
.hq-option.selected {
  border-color: var(--aqua);
  background: rgba(0,166,160,0.15);
  color: var(--white);
}
.hq-option.selected::after {
  content: '✓';
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  color: var(--aqua); font-weight: 700; font-size: var(--fs-md);
}
.hq-option-icon { width: 32px; height: 32px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; opacity: 0.7; }
.hq-option-icon svg { width: 20px; height: 20px; stroke: var(--aqua); fill: none; stroke-width: 1.8; }
.hq-option.selected .hq-option-icon { opacity: 1; }
.hq-option-label { font-weight: 500; line-height: 1.3; }

/* Quiz nav */
.hq-nav { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.hq-back {
  font-family: var(--font-mono); font-size: var(--fs-xs);
  color: var(--silver-deep); background: none; border: none; cursor: pointer;
  display: flex; align-items: center; gap: 4px; transition: color 0.2s;
}
.hq-back:hover { color: var(--linen); }
.hq-back:disabled { opacity: 0.3; cursor: not-allowed; }
.hq-next {
  background: var(--aqua); color: var(--white);
  padding: 10px 24px; border-radius: var(--radius);
  font-family: var(--font-brand); font-size: var(--fs-sm); font-weight: 600;
  border: none; cursor: pointer; transition: background-color, border-color, box-shadow, color, opacity, transform 0.25s var(--ease);
  box-shadow: 0 4px 16px rgba(0,166,160,0.15);
  display: flex; align-items: center; gap: 6px;
}
.hq-next:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,166,160,0.4); }
.hq-next:disabled { opacity: 0.4; cursor: not-allowed; }

/* Quiz progress dots */
.hq-dots { display: flex; gap: 6px; }
.hq-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.15); transition: background-color, box-shadow, opacity, transform 0.3s; }
.hq-dot.active { background: var(--aqua); width: 24px; border-radius: 4px; }
.hq-dot.done { background: var(--aqua-deep); }

/* Quiz result (inline) */
.hq-result { display: none; animation: hqFade 0.5s var(--ease); }
.hq-result.active { display: block; }
.hq-result-title { font-family: var(--font-display); font-size: var(--fs-lg); font-weight: 600; color: var(--linen); margin-bottom: 8px; }
.hq-result-title em { font-style: italic; color: var(--aqua); }
.hq-result-desc { font-size: var(--fs-xs); color: var(--silver); line-height: 1.5; margin-bottom: 16px; }
.hq-result-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.hq-result-item { display: flex; align-items: flex-start; gap: 8px; font-size: var(--fs-xs); color: var(--silver); line-height: 1.4; }
.hq-result-item .check { width: 18px; height: 18px; background: var(--aqua); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.hq-result-item .check svg { width: 10px; height: 10px; stroke: var(--white); fill: none; stroke-width: 3; }
.hq-result-item strong { color: var(--linen); }

/* Quiz form (inline on dark) */
.hq-form { display: flex; flex-direction: column; gap: 10px; }
.hq-input {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  font-size: var(--fs-sm); color: var(--linen);
  background: rgba(255,255,255,0.05);
  transition: border-color 0.2s;
}
.hq-input:focus { outline: none; border-color: var(--aqua); }
.hq-input::placeholder { color: var(--silver-deep); }
.hq-form-row { display: flex; gap: 8px; }
.hq-consent { display: flex; align-items: flex-start; gap: 8px; font-size: 11px; color: var(--silver-deep); line-height: 1.4; }
.hq-consent input { margin-top: 2px; flex-shrink: 0; accent-color: var(--aqua); }
.hq-consent a { color: var(--aqua); text-decoration: underline; }
.hq-submit {
  width: 100%; background: var(--aqua); color: var(--white);
  padding: 12px; border-radius: var(--radius);
  font-family: var(--font-brand); font-size: var(--fs-sm); font-weight: 600;
  border: none; cursor: pointer; transition: background-color, border-color, box-shadow, color, transform 0.25s;
  box-shadow: 0 4px 16px rgba(0,166,160,0.15);
}
.hq-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,166,160,0.4); }

/* Quiz success (inline) */
.hq-success { display: none; text-align: center; animation: hqFade 0.5s var(--ease); }
.hq-success.active { display: block; }
.hq-success-icon { width: 56px; height: 56px; background: var(--aqua); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.hq-success-icon svg { width: 28px; height: 28px; stroke: var(--white); fill: none; stroke-width: 3; }
.hq-success h3 { font-family: var(--font-display); font-size: var(--fs-lg); color: var(--linen); margin-bottom: 6px; }
.hq-success p { font-size: var(--fs-sm); color: var(--silver); }

/* Mobile: show quiz below hero content */
@media (max-width: 860px) {
  .hero-quiz { max-width: 100%; margin-top: var(--space-5); }
}

.hero-visual-tag {
  position: absolute; bottom: var(--space-5); left: var(--space-5); z-index: 2;
  background: rgba(28, 31, 38, 0.7); backdrop-filter: blur(12px); color: var(--white);
  padding: var(--space-3) var(--space-4); border-radius: var(--radius); font-size: var(--fs-sm);
}
.hero-visual-tag strong { color: var(--aqua); font-family: var(--font-mono); }

/* Scroll indicator */
.scroll-indicator {
  position: absolute; bottom: var(--space-6); left: 50%; transform: translateX(-50%);
  font-family: var(--font-mono); font-size: var(--fs-xs); color: var(--silver-deep);
  text-transform: uppercase; letter-spacing: 0.15em;
  display: flex; flex-direction: column; align-items: center; gap: var(--space-2);
  z-index: 3;
}
.scroll-indicator::after { content: ''; width: 1px; height: 32px; background: var(--silver); animation: scrollLine 2s ease-in-out infinite; }
@keyframes scrollLine { 0%, 100% { transform: scaleY(1); } 50% { transform: scaleY(0.3); } }
@media (max-width: 860px) { .scroll-indicator { display: none; } }

/* ---------- SECTION HEADER ---------- */
.section-head { margin-bottom: var(--space-8); max-width: 640px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { margin: var(--space-3) 0 var(--space-4); }
.section-head p { font-size: var(--fs-md); }
@media (max-width: 768px) {
  .section-head { margin-bottom: var(--space-6); }
}
@media (max-width: 480px) {
  .section-head { margin-bottom: var(--space-5); }
}

/* ---------- FEATURE CARDS ---------- */
.feature-card {
  background: var(--white);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  transition: background-color, border-color, box-shadow, color, transform 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--aqua); }
.feature-card:hover .product-price,
.feature-card:hover div[style*="font-display"][style*="aqua"] { transform: scale(1.05); }
.feature-card .product-price,
.feature-card div[style*="font-display"][style*="aqua"] { transition: transform 0.3s var(--ease-spring); display: inline-block; }
.feature-card .icon { width: 48px; height: 48px; margin-bottom: var(--space-5); color: var(--aqua); }
.feature-card h3 { margin-bottom: var(--space-3); }
.feature-card p { font-size: var(--fs-sm); }

/* ---------- SERVICE CARDS ---------- */
.service-card {
  display: block; text-decoration: none; color: inherit;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  transition: background-color, border-color, box-shadow, color, transform 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--aqua); }
.service-icon { width: 56px; height: 56px; margin-bottom: var(--space-5); }
.service-photo { border-radius: var(--radius); overflow: hidden; margin-bottom: var(--space-4); aspect-ratio: 4/3; }
.service-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.service-card:hover .service-photo img { transform: scale(1.06); }

/* Editorial service list (2026 pattern) */
/* Editorial service list */
.services-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
@media (max-width: 860px) {
  .services-list { grid-template-columns: 1fr; }
}
.service-row { display: flex; flex-direction: column; border-radius: var(--radius-lg); overflow: hidden; background: var(--white); border: 1.5px solid var(--ink); transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease); text-decoration: none; color: inherit; }
.service-row:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--aqua); }
.service-row-photo { overflow: hidden; aspect-ratio: 16/9; }
.service-row-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.service-row:hover .service-row-photo img { transform: scale(1.05); }
.service-row-body { padding: var(--space-6); display: flex; flex-direction: column; }
.service-row-body h3 { font-family: var(--font-display); font-size: var(--fs-xl); margin-bottom: var(--space-3); }
.service-row-body p { font-size: var(--fs-base); color: var(--silver-deep); margin-bottom: var(--space-4); }
.service-row-link { font-family: var(--font-mono); font-size: var(--fs-sm); color: var(--aqua); font-weight: 600; transition: transform 0.3s var(--ease); }
.service-row:hover .service-row-link { transform: translateX(6px); }
@media (max-width: 768px) {
  .service-row-body { padding: var(--space-5); }
  .services-list { gap: var(--space-5); }
}
@media (max-width: 480px) {
  .service-row-body { padding: var(--space-4); }
  .services-list { gap: var(--space-4); }
}
.service-card h3 { margin-bottom: var(--space-3); }
.service-card p { font-size: var(--fs-sm); margin-bottom: var(--space-4); }
.service-arrow { font-size: var(--fs-lg); color: var(--aqua); font-weight: 600; transition: transform 0.3s var(--ease); }
.service-card:hover .service-arrow { transform: translateX(4px); }

/* ---------- PRODUCT CARDS ---------- */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
@media (max-width: 860px) { .product-grid { grid-template-columns: 1fr; } }

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: background-color, border-color, box-shadow, transform 0.4s var(--ease-spring);
  display: flex; flex-direction: column;
  border: 1px solid var(--line-light);
}
.product-card.reveal { transform: translateY(30px); }
html.js .product-card.reveal.visible { transform: translateY(0); }
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-8px); }
.product-img { position: relative; aspect-ratio: 1/1; overflow: hidden; background: var(--linen); }
.product-img.tall { aspect-ratio: 1/1; }
.product-img.tall img { object-fit: contain; }
.product-img img { width: 100%; height: 100%; object-fit: cover; }
.product-badge { position: absolute; top: var(--space-4); left: var(--space-4); background: var(--ink); color: var(--linen); padding: 6px 12px; border-radius: var(--radius); font-family: var(--font-mono); font-size: var(--fs-xs); font-weight: 500; }
.product-badge.accent { background: var(--aqua); }

.product-body { padding: var(--space-6); flex: 1; display: flex; flex-direction: column; }
.product-body h3 { margin-bottom: var(--space-2); }
.product-subtitle { font-family: var(--font-mono); font-size: var(--fs-xs); color: var(--silver-deep); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: var(--space-3); }
.product-price { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--aqua); margin-bottom: var(--space-4); }
.product-specs { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3); margin-bottom: var(--space-5); padding: var(--space-4) 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.product-spec { display: flex; flex-direction: column; }
.product-spec dt { font-family: var(--font-mono); font-size: var(--fs-xs); color: var(--silver-deep); text-transform: uppercase; }
.product-spec dd { font-size: var(--fs-sm); font-weight: 600; color: var(--ink); }
.product-cta { margin-top: auto; }
.price-tag { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--aqua); margin: var(--space-3) 0 var(--space-1); }
.price-note { font-size: var(--fs-sm); color: var(--silver-deep); margin-bottom: var(--space-3); }
.price-bonus { font-size: var(--fs-sm); color: var(--aqua-deep); background: rgba(0,181,168,0.08); border: 1px solid rgba(0,181,168,0.2); border-radius: var(--radius); padding: var(--space-2) var(--space-3); margin-bottom: var(--space-3); }

/* ---------- STATS ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-5); }
@media (max-width: 640px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat { text-align: center; }
.stat-val { font-family: var(--font-display); font-size: var(--fs-4xl); font-weight: 700; color: var(--aqua); line-height: 1; }
.stat-label { font-family: var(--font-mono); font-size: var(--fs-xs); color: var(--silver); text-transform: uppercase; letter-spacing: 0.1em; margin-top: var(--space-3); }
.section-ink .stat-val { color: var(--aqua); }
.section-ink .stat-label { color: var(--silver); }

/* ---------- STEPS GRID ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-4);
}
.step-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding: var(--space-6) var(--space-5);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
  position: relative;
}
.step-card:hover { background: rgba(0, 166, 160, 0.08); border-color: var(--aqua); }
.step-num {
  font-family: var(--font-display);
  font-size: var(--fs-4xl);
  font-weight: 700;
  color: var(--aqua);
  line-height: 1;
  letter-spacing: -0.03em;
}
.step-body h3 { color: var(--white); margin-bottom: var(--space-2); font-size: var(--fs-lg); }
.step-body p { color: var(--silver); font-size: var(--fs-sm); line-height: 1.5; }
.step-num-light { font-family: var(--font-mono); font-size: 1.8rem; font-weight: 700; color: var(--aqua); margin-bottom: var(--space-3); letter-spacing: 0.05em; }

/* Thermal break cards — horizontal on desktop, vertical on mobile */
.thermal-break-inner { display: flex; gap: var(--space-4); align-items: center; }
.thermal-break-img { flex: 0 0 140px; background: var(--white); border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 1470/2139; }
.thermal-break-body { flex: 1; background: var(--ink); border-radius: var(--radius-lg); }
@media (max-width: 860px) {
  .thermal-break-inner { flex-direction: column; gap: 0; }
  .thermal-break-img { flex: none; width: 100%; aspect-ratio: auto; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
  .thermal-break-body { border-radius: 0 0 var(--radius-lg) var(--radius-lg); width: 100%; }
}

/* ---------- THERMAL BREAK (single warm profile) ---------- */
.thermal-break {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: var(--space-8);
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}

/* Visual side */
.thermal-break-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--linen);
  aspect-ratio: 3/4;
}
.thermal-break-img {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  padding: var(--space-5);
}
.thermal-break-img img {
  max-width: 100%; max-height: 100%;
  object-fit: contain;
}

/* Labels */
.tb-label {
  position: absolute;
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius);
  background: rgba(28, 31, 38, 0.88);
  backdrop-filter: blur(4px);
  z-index: 3;
}
.tb-label-cold {
  top: var(--space-3); left: var(--space-3);
  color: #4A9EFF;
}
.tb-label-warm {
  top: var(--space-3); right: var(--space-3);
  color: #FF6B4A;
}

/* Break line indicator (vertical, center) */
.tb-break-line {
  position: absolute;
  top: 12%; bottom: 12%;
  left: 50%;
  width: 3px;
  background: var(--aqua);
  border-radius: 2px;
  box-shadow: 0 0 16px rgba(0, 166, 160, 0.5);
  z-index: 2;
  animation: breakPulse 3s ease-in-out infinite;
}
@keyframes breakPulse {
  0%, 100% { box-shadow: 0 0 16px rgba(0, 166, 160, 0.5); }
  50% { box-shadow: 0 0 28px rgba(0, 166, 160, 0.8); }
}
.tb-break-badge {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  transform-origin: center;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--aqua-deep);
  background: var(--white);
  padding: 3px 10px;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 166, 160, 0.3);
  white-space: nowrap;
  z-index: 3;
}

/* Arrows — fly toward profile, hit it, bounce back */
.tb-arrows {
  position: absolute;
  top: 0; bottom: 0;
  width: 38%;
  pointer-events: none;
  z-index: 1;
  --travel: 90px;
}
.tb-arrows-cold { left: 0; }
.tb-arrows-warm { right: 0; }

.tb-arrow {
  position: absolute;
  top: var(--top);
  width: 48px;
  height: 2px;
  border-radius: 1px;
  animation: arrowBounce 2.8s var(--ease) infinite;
  animation-delay: var(--delay);
}

/* COLD: blue, left side. Flies right → hits profile → bounces back left */
.tb-arrows-cold .tb-arrow {
  left: 0;
  background: linear-gradient(90deg, rgba(74, 158, 255, 0.1) 0%, rgba(74, 158, 255, 0.8) 100%);
}
/* Head pointing right (toward profile) */
.tb-arrows-cold .tb-arrow::before {
  content: '';
  position: absolute;
  right: -2px; top: -4px;
  width: 0; height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid #4A9EFF;
  animation: headForward 2.8s var(--ease) infinite;
  animation-delay: var(--delay);
}
/* Head pointing left (bouncing back) */
.tb-arrows-cold .tb-arrow::after {
  content: '';
  position: absolute;
  left: -2px; top: -4px;
  width: 0; height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-right: 8px solid #4A9EFF;
  opacity: 0;
  animation: headBack 2.8s var(--ease) infinite;
  animation-delay: var(--delay);
}
@keyframes arrowBounce {
  0% { transform: translateX(0); opacity: 0; }
  8% { opacity: 1; }
  38% { transform: translateX(var(--travel)); opacity: 1; }
  44% { transform: translateX(var(--travel)) scaleX(0.85); opacity: 1; }
  50% { transform: translateX(calc(var(--travel) - 6px)) scaleX(1); opacity: 1; }
  88% { transform: translateX(0); opacity: 0.2; }
  100% { transform: translateX(0); opacity: 0; }
}
@keyframes headForward {
  0%, 44% { opacity: 0.9; }
  45%, 100% { opacity: 0; }
}
@keyframes headBack {
  0%, 44% { opacity: 0; }
  45%, 88% { opacity: 0.9; }
  89%, 100% { opacity: 0; }
}

/* WARM: red, right side. Flies left → hits profile → bounces back right */
.tb-arrows-warm .tb-arrow {
  right: 0;
  background: linear-gradient(270deg, rgba(255, 107, 74, 0.1) 0%, rgba(255, 107, 74, 0.8) 100%);
  animation: arrowBounceWarm 2.8s var(--ease) infinite;
  animation-delay: var(--delay);
}
/* Head pointing left (toward profile) */
.tb-arrows-warm .tb-arrow::before {
  content: '';
  position: absolute;
  left: -2px; top: -4px;
  width: 0; height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-right: 8px solid #FF6B4A;
  animation: headForward 2.8s var(--ease) infinite;
  animation-delay: var(--delay);
}
/* Head pointing right (bouncing back) */
.tb-arrows-warm .tb-arrow::after {
  content: '';
  position: absolute;
  right: -2px; top: -4px;
  width: 0; height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid #FF6B4A;
  opacity: 0;
  animation: headBack 2.8s var(--ease) infinite;
  animation-delay: var(--delay);
}
@keyframes arrowBounceWarm {
  0% { transform: translateX(0); opacity: 0; }
  8% { opacity: 1; }
  38% { transform: translateX(calc(var(--travel) * -1)); opacity: 1; }
  44% { transform: translateX(calc(var(--travel) * -1)) scaleX(0.85); opacity: 1; }
  50% { transform: translateX(calc(var(--travel) * -1 + 6px)) scaleX(1); opacity: 1; }
  88% { transform: translateX(0); opacity: 0.2; }
  100% { transform: translateX(0); opacity: 0; }
}

@media (max-width: 760px) {
  .tb-arrows { --travel: 55px; }
  .tb-arrow { width: 36px; }
}
@media (max-width: 420px) {
  .tb-arrows { --travel: 40px; }
  .tb-arrow { width: 28px; }
}

/* Info side */
.thermal-break-info h3 {
  font-size: var(--fs-2xl);
  margin: var(--space-3) 0 var(--space-3);
}
.thermal-break-info p {
  font-size: var(--fs-sm);
  line-height: 1.6;
  margin-bottom: var(--space-5);
}

/* Badge (reuse from old) */
.thermal-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.thermal-badge.warm {
  background: rgba(0, 166, 160, 0.1);
  color: var(--aqua-deep);
  border: 1px solid rgba(0, 166, 160, 0.2);
}

/* Points list */
.thermal-points {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.thermal-points li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--fs-sm);
  font-weight: 500;
}
.thermal-points li svg { flex-shrink: 0; color: var(--aqua); }

/* Mobile */
@media (max-width: 760px) {
  .thermal-break { grid-template-columns: 1fr; gap: var(--space-5); }
  .thermal-break-visual { aspect-ratio: 4/5; max-width: 300px; margin: 0 auto; }
  .thermal-break-info { text-align: center; }
  .thermal-break-info .thermal-badge { margin: 0 auto; }
  .thermal-points { align-items: center; }
  .thermal-points li { justify-content: center; }
}
@media (max-width: 420px) {
  .thermal-break-visual { max-width: 240px; }
  .tb-label { font-size: 0.625rem; padding: 3px 8px; }
}

@media (max-width: 960px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .steps-grid { grid-template-columns: 1fr; } }

/* ---------- PROCESS TIMELINE ---------- */
.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-3);
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding-top: var(--space-6);
}
.timeline-track {
  position: absolute;
  top: calc(var(--space-6) + 32px);
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--amber) 0%, var(--aqua) 50%, var(--aqua-deep) 100%);
  opacity: 0.2;
  z-index: 0;
  border-radius: 1px;
}
.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 var(--space-2);
}
.timeline-node {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--ink-soft);
  border: 2px solid rgba(0, 166, 160, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  transition: border-color 0.4s var(--ease);
  position: relative;
}
.timeline-node svg {
  width: 26px;
  height: 26px;
  color: var(--aqua);
  transition: color 0.3s var(--ease);
}
.timeline-num {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--aqua);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--ink);
}
.timeline-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.timeline-content h3 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: var(--space-2);
  letter-spacing: 0;
}
.timeline-content p {
  color: var(--silver);
  font-size: var(--fs-sm);
  line-height: 1.5;
  max-width: 180px;
  margin-bottom: var(--space-4);
}
.timeline-duration {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: var(--radius);
  background: rgba(0, 166, 160, 0.1);
  border: 1px solid rgba(0, 166, 160, 0.2);
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  font-weight: 500;
  color: var(--aqua);
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.timeline-step:hover .timeline-node {
  border-color: var(--aqua);
  transform: scale(1.12);
  box-shadow: 0 0 28px rgba(0, 166, 160, 0.35);
  background: var(--ink);
}
.timeline-step:hover .timeline-node svg { color: var(--white); }
.timeline-step:hover .timeline-content h3 { color: var(--aqua); }

/* Sequential reveal: each step animates after the previous */
.timeline .timeline-step:nth-child(2) { transition-delay: 0.12s; }
.timeline .timeline-step:nth-child(3) { transition-delay: 0.24s; }
.timeline .timeline-step:nth-child(4) { transition-delay: 0.36s; }
.timeline .timeline-step:nth-child(5) { transition-delay: 0.48s; }
.timeline .timeline-step:nth-child(6) { transition-delay: 0.60s; }

/* Node entrance: pop-in when visible */
.timeline-step.visible .timeline-node {
  animation: nodePop 0.6s var(--ease-spring) backwards;
}
.timeline-step:nth-child(2).visible .timeline-node { animation-delay: 0.15s; }
.timeline-step:nth-child(3).visible .timeline-node { animation-delay: 0.3s; }
.timeline-step:nth-child(4).visible .timeline-node { animation-delay: 0.45s; }
.timeline-step:nth-child(5).visible .timeline-node { animation-delay: 0.6s; }
.timeline-step:nth-child(6).visible .timeline-node { animation-delay: 0.75s; }

@keyframes nodePop {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

/* Track line: draw from left to right */
.timeline.visible .timeline-track {
  animation: trackDraw 1.2s var(--ease) forwards;
  transform-origin: left center;
  opacity: 0;
}
@keyframes trackDraw {
  0% { transform: scaleX(0); opacity: 0; }
  100% { transform: scaleX(1); opacity: 0.2; }
}

/* Vertical track on mobile: draw top to bottom */
@media (max-width: 860px) {
  .timeline.visible .timeline-track {
    animation: trackDrawV 1.2s var(--ease) forwards;
    transform-origin: top center;
  }
  @keyframes trackDrawV {
    0% { transform: scaleY(0); opacity: 0; }
    100% { transform: scaleY(1); opacity: 0.2; }
  }
  /* Reset horizontal node delays, use vertical stagger */
  .timeline-step:nth-child(2).visible .timeline-node { animation-delay: 0.2s; }
  .timeline-step:nth-child(3).visible .timeline-node { animation-delay: 0.4s; }
  .timeline-step:nth-child(4).visible .timeline-node { animation-delay: 0.6s; }
  .timeline-step:nth-child(5).visible .timeline-node { animation-delay: 0.8s; }
  .timeline-step:nth-child(6).visible .timeline-node { animation-delay: 1s; }
}

/* Duration badge: slide-in after node */
.timeline-step.visible .timeline-duration {
  animation: badgeSlide 0.4s var(--ease) backwards;
  animation-delay: 0.3s;
}
.timeline-step:nth-child(2).visible .timeline-duration { animation-delay: 0.45s; }
.timeline-step:nth-child(3).visible .timeline-duration { animation-delay: 0.6s; }
.timeline-step:nth-child(4).visible .timeline-duration { animation-delay: 0.75s; }
.timeline-step:nth-child(5).visible .timeline-duration { animation-delay: 0.9s; }
.timeline-step:nth-child(6).visible .timeline-duration { animation-delay: 1.05s; }

@keyframes badgeSlide {
  0% { opacity: 0; transform: translateY(8px); }
  100% { opacity: 1; transform: translateY(0); }
}

@media (max-width: 960px) {
  .timeline { grid-template-columns: repeat(3, 1fr); gap: var(--space-4); }
  .timeline-track { left: 16%; right: 16%; }
}
@media (max-width: 860px) {
  .timeline { grid-template-columns: 1fr; gap: var(--space-5); }
  .timeline-track {
    top: 28px; left: 28px; right: auto;
    width: 2px; height: calc(100% - 56px);
    background: linear-gradient(180deg, var(--amber) 0%, var(--aqua) 50%, var(--aqua-deep) 100%);
  }
  .timeline-step {
    flex-direction: row; align-items: flex-start;
    text-align: left; gap: var(--space-5); padding: 0;
  }
  .timeline-node { margin-bottom: 0; flex-shrink: 0; width: 56px; height: 56px; }
  .timeline-node svg { width: 22px; height: 22px; }
  .timeline-num { top: -8px; right: -8px; width: 22px; height: 22px; font-size: 0.625rem; }
  .timeline-content { align-items: flex-start; padding-top: var(--space-1); }
  .timeline-content h3 { margin-bottom: var(--space-1); }
  .timeline-content p { max-width: 100%; margin-bottom: var(--space-3); }
}
@media (max-width: 420px) {
  .timeline-track { left: 24px; }
  .timeline-node { width: 48px; height: 48px; }
  .timeline-node svg { width: 20px; height: 20px; }
  .timeline-step { gap: var(--space-4); }
}

/* ---------- IMAGE + TEXT ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-8); align-items: center; }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: var(--space-6); }
  .split .split-img { order: 2; }
  .split > div:not(.split-img) { order: 1; }
}
@media (max-width: 480px) { .split { gap: var(--space-5); } }
.split-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 5/4; }
.split-img img { width: 100%; height: 100%; object-fit: cover; }

.checklist { display: flex; flex-direction: column; gap: var(--space-4); margin: var(--space-5) 0; }
.checklist li { display: flex; align-items: start; gap: var(--space-3); font-size: var(--fs-md); }
.checklist .check-icon { width: 24px; height: 24px; flex-shrink: 0; margin-top: 2px; }

/* ---------- CTA BANNER ---------- */
.cta-banner {
  background: var(--ink);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-6);
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; top: 0; right: 0; bottom: 0; width: 40%;
  background: radial-gradient(circle at top right, rgba(0, 166, 160, 0.15), transparent 70%);
}
.cta-banner h2 { color: var(--white); margin-bottom: var(--space-3); position: relative; }
.cta-banner p { color: var(--silver); position: relative; }
.cta-banner .btn { position: relative; flex-shrink: 0; }
@media (max-width: 640px) {
  .cta-banner { flex-direction: column; text-align: center; padding: var(--space-6); gap: var(--space-4); }
  .cta-banner h2 { font-size: var(--fs-xl); }
  .cta-banner .btn { width: 100%; }
  .cta-promo-tag { display: flex; justify-content: center; text-align: left; flex-wrap: wrap; }
}

/* ---------- TESTIMONIAL ---------- */
.testimonial { background: var(--white); border: 1.5px solid var(--ink); border-radius: var(--radius-md); padding: var(--space-7); position: relative; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease); }
.testimonial:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--aqua); }
.testimonial .quote-mark { font-family: var(--font-display); font-size: 4rem; line-height: 1; color: var(--aqua-pale); position: absolute; top: var(--space-4); left: var(--space-5); }
.testimonial p { font-size: var(--fs-md); position: relative; padding-top: var(--space-5); }
.testimonial-author { display: flex; align-items: center; gap: var(--space-3); margin-top: var(--space-5); padding-top: var(--space-5); border-top: 1px solid var(--line); }
.testimonial-author .avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--aqua-pale); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; color: var(--aqua-deep); }
.testimonial-author .name { font-weight: 600; }
.testimonial-author .role { font-size: var(--fs-sm); color: var(--silver-deep); }

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; padding: var(--space-5) 0; display: flex; justify-content: space-between; align-items: center; font-family: var(--font-display); font-size: var(--fs-lg); font-weight: 500; cursor: pointer; }
.faq-q .toggle { width: 28px; height: 28px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; transition: transform 0.3s; color: var(--aqua); }
.faq-item.open .faq-q .toggle { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p { padding: 0 0 var(--space-5); font-size: var(--fs-sm); }

/* ---------- FORM ---------- */
.form-group { margin-bottom: var(--space-5); }
.form-label { display: block; font-family: var(--font-mono); font-size: var(--fs-xs); font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; color: var(--silver-deep); margin-bottom: var(--space-2); }
.form-input, .form-textarea, .form-select {
  width: 100%; padding: 14px 16px; background: var(--white); border: 1.5px solid var(--line);
  border-radius: var(--radius); font-size: var(--fs-base); color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none; border-color: var(--aqua); box-shadow: 0 0 0 3px var(--aqua-pale);
}
.form-textarea { resize: vertical; min-height: 120px; }

.form-success { display: none; padding: var(--space-5); background: var(--aqua-pale); border: 1px solid var(--aqua); border-radius: var(--radius); margin-top: var(--space-5); }
.form-success.show { display: block; animation: fadeIn 0.3s ease; }
.form-error.show { display: block !important; }
.form-consent, .modal-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 4px 0 var(--space-5);
  color: var(--silver-deep);
  font-size: var(--fs-sm);
  line-height: 1.55;
}
.form-consent input, .modal-consent input {
  width: 20px;
  height: 20px;
  margin: 1px 0 0;
  flex: 0 0 20px;
  accent-color: var(--aqua-deep);
}
.form-consent a, .modal-consent a { color: var(--aqua-deep); text-decoration: underline; text-underline-offset: 3px; }
.form-honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

/* ---------- CONTACT BLOCK ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: var(--space-8); align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info { display: flex; flex-direction: column; gap: var(--space-5); }
.contact-item { display: flex; gap: var(--space-4); align-items: start; }
.contact-item .icon { width: 44px; height: 44px; flex-shrink: 0; color: var(--aqua); }
.contact-item .label { font-family: var(--font-mono); font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: 0.1em; color: var(--silver-deep); margin-bottom: 4px; }
.contact-item .value { font-size: var(--fs-md); font-weight: 500; }
.contact-item .value a:hover { color: var(--aqua); }

/* ---------- FOOTER ---------- */
.footer { background: var(--ink); color: var(--silver); padding: var(--space-8) 0 var(--space-6); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--space-7); margin-bottom: var(--space-7); }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer h4 { color: var(--white); margin-bottom: var(--space-4); font-size: var(--fs-sm); font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.1em; }
.footer ul li { margin-bottom: var(--space-3); }
.footer ul a { font-size: var(--fs-sm); }
.footer ul a:hover { color: var(--aqua); }
.footer-brand p { font-size: var(--fs-sm); margin-top: var(--space-4); max-width: 280px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: var(--space-5); display: flex; justify-content: space-between; align-items: center; font-size: var(--fs-xs); flex-wrap: wrap; gap: var(--space-3); }
.socials { display: flex; gap: var(--space-3); }
.socials a { width: 40px; height: 40px; border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; transition: background-color, border-color, color 0.2s; }
.socials a:hover { background: var(--aqua); border-color: var(--aqua); }
.socials svg { width: 20px; height: 20px; }

/* ---------- PAGE HERO ---------- */
.page-hero {
  padding: calc(var(--header-h) + var(--space-8)) 0 var(--space-8);
  background: linear-gradient(160deg, var(--ink) 0%, var(--ink-soft) 100%);
  color: var(--linen);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero .breadcrumb { font-family: var(--font-mono); font-size: var(--fs-xs); color: var(--silver); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: var(--space-4); }
.page-hero .breadcrumb a:hover { color: var(--aqua); }
.page-hero h1 { color: var(--white); margin-bottom: var(--space-4); }
.page-hero h1 em { font-style: italic; color: var(--aqua); font-weight: 400; }
.page-hero p { font-size: var(--fs-md); color: var(--silver); max-width: 560px; }

/* ---------- GALLERY ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4); }
@media (max-width: 860px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .gallery-grid { grid-template-columns: 1fr; } }
.gallery-item { position: relative; border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 4/3; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item .gallery-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(28,31,38,0.88), rgba(28,31,38,0.06) 58%); opacity: 1; transition: background 0.3s; display: flex; align-items: flex-end; padding: var(--space-5); pointer-events: none; }
.gallery-item:hover .gallery-overlay { background: linear-gradient(to top, rgba(28,31,38,0.94), rgba(28,31,38,0.12) 68%); }
.gallery-item .gallery-caption { color: var(--white); }
.gallery-item .gallery-caption h3,
.gallery-item .gallery-caption h4 { color: var(--white); margin-bottom: 4px; font-size: var(--fs-lg); }
.gallery-item .gallery-caption span { font-family: var(--font-mono); font-size: var(--fs-xs); color: var(--aqua); }

.gallery-filter { display: flex; gap: var(--space-2); margin-bottom: var(--space-7); flex-wrap: wrap; }
.gallery-note { max-width: 860px; margin: calc(var(--space-7) * -0.55) 0 var(--space-6); color: var(--text-muted); font-size: var(--fs-sm); line-height: 1.65; }
.gallery-credits { margin-top: var(--space-6); color: var(--text-muted); font-size: var(--fs-sm); }
.gallery-credits summary { width: fit-content; cursor: pointer; color: var(--text); font-weight: 600; }
.gallery-credits p { max-width: 900px; margin-top: var(--space-3); line-height: 1.7; }
.gallery-credits a { text-decoration: underline; text-underline-offset: 3px; }
.filter-btn { padding: 8px 20px; border-radius: var(--radius); font-size: var(--fs-sm); font-weight: 500; background: var(--linen); color: var(--ink-soft); transition: background-color, color 0.2s; }
.filter-btn:hover { background: var(--ink); color: var(--linen); }
.filter-btn.active { background: var(--aqua); color: var(--white); }

/* ---------- LIGHTBOX ---------- */
.lightbox { position: fixed; inset: 0; background: rgba(28,31,38,0.9); backdrop-filter: blur(8px); z-index: 2000; display: none; align-items: center; justify-content: center; padding: var(--space-6); }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90%; max-height: 85vh; border-radius: var(--radius-md); }
.lightbox-close { position: absolute; top: var(--space-5); right: var(--space-5); width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.5rem; }
.lightbox-close:hover { background: rgba(255,255,255,0.2); }

/* ---------- BLOG CARDS ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
@media (max-width: 860px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card { background: var(--white); border: 1px solid var(--line-light); border-radius: var(--radius-lg); overflow: hidden; transition: background-color, border-color, box-shadow, transform 0.3s var(--ease); }
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.blog-card .blog-img { aspect-ratio: 16/9; overflow: hidden; background: var(--linen); }
.blog-card .blog-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: var(--space-5); }
.blog-meta { display: flex; gap: var(--space-3); align-items: center; margin-bottom: var(--space-3); font-family: var(--font-mono); font-size: var(--fs-xs); color: var(--silver-deep); }
.blog-meta .tag { background: var(--aqua-pale); color: var(--aqua-deep); padding: 4px 10px; border-radius: var(--radius); font-weight: 500; }
.blog-card h3 { font-size: var(--fs-lg); margin-bottom: var(--space-2); }
.blog-card p { font-size: var(--fs-sm); }

/* ---------- ANIMATIONS ---------- */
/* By default elements are visible (no-JS / first-paint safe).
   JS adds html.js synchronously in <head> BEFORE first paint — only then
   do we hide .reveal so IntersectionObserver can animate them in. */
.reveal { opacity: 1; transform: none; }
html.js .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
html.js .reveal.visible { opacity: 1; transform: translateY(0); }
html.js .reveal-delay-1 { transition-delay: 0.1s; }
html.js .reveal-delay-2 { transition-delay: 0.2s; }
html.js .reveal-delay-3 { transition-delay: 0.3s; }
/* Hero is above the fold — never leave it hidden waiting for observer */
html.js .hero .reveal { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- PAGE SPECIFIC ---------- */

/* Products page — detailed spec table */
.spec-table { width: 100%; border-collapse: collapse; margin-top: var(--space-5); }
.spec-table th, .spec-table td { padding: var(--space-4); text-align: left; border-bottom: 1px solid var(--line); font-size: var(--fs-sm); }
.spec-table th { font-family: var(--font-mono); font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: 0.08em; color: var(--silver-deep); }
.spec-table td { font-weight: 500; }
.spec-table tr:hover { background: var(--linen); }

/* Services list */
.service-list { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); margin-top: var(--space-6); }
@media (max-width: 640px) { .service-list { grid-template-columns: 1fr; } }
.service-item { display: flex; gap: var(--space-4); padding: var(--space-4); border: 1.5px solid var(--ink); border-radius: var(--radius-md); background: var(--white); transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease); }
.service-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--aqua); }
.service-item .icon { width: 40px; height: 40px; flex-shrink: 0; color: var(--aqua); }
.service-item h4 { margin-bottom: var(--space-1); }
.service-item p { font-size: var(--fs-sm); }

/* Advantage list */
.advantage-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
@media (max-width: 760px) { .advantage-list { grid-template-columns: 1fr; } }
.advantage { text-align: center; }
.advantage .num { font-family: var(--font-mono); font-size: var(--fs-xs); color: var(--aqua); letter-spacing: 0.1em; margin-bottom: var(--space-3); }
.advantage h4 { margin-bottom: var(--space-3); }
.advantage p { font-size: var(--fs-sm); }

/* Map */
.map-wrap { border-radius: var(--radius-md); overflow: hidden; margin-top: var(--space-6); border: 1px solid var(--line); }
#map { height: 400px; width: 100%; }

/* Partners */
.partner-logos { display: flex; align-items: center; justify-content: center; gap: var(--space-8); flex-wrap: wrap; opacity: 0.6; }
.partner-logos span { font-family: var(--font-display); font-size: var(--fs-xl); font-weight: 600; color: var(--silver-deep); }

/* Slogan strip */
.slogan-strip {
  background: var(--ink); color: var(--linen);
  padding: var(--space-5) 0;
  text-align: center; font-family: var(--font-mono);
  font-size: var(--fs-sm); letter-spacing: 0.2em; text-transform: uppercase;
}
.slogan-strip .accent { color: var(--aqua); }
/* ---------- WORKS GRID ---------- */
.works-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
}
.works-item {
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: var(--radius-md);
  position: relative;
  cursor: pointer;
}
.works-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.works-item:hover img { transform: scale(1.08); }
.works-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,31,38,0) 60%, rgba(28,31,38,0) 100%);
  transition: background 0.3s;
  pointer-events: none;
}
.works-item:hover::after {
  background: linear-gradient(to top, rgba(0,166,160,0.15) 0%, rgba(28,31,38,0) 50%);
}

@media (max-width: 760px) {
  .works-mosaic { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .works-mosaic { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- PRICING CARDS ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  max-width: 1100px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--white);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  transition: border-color, box-shadow, transform 0.3s var(--ease);
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.pricing-featured {
  border: 2px solid var(--aqua);
  position: relative;
}
.pricing-featured::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top, rgba(0,166,160,0.04), transparent 60%);
  pointer-events: none;
}
.pricing-header {
  text-align: center;
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-5);
  border-bottom: 1px solid var(--line);
}
.pricing-badge {
  display: inline-block;
  background: var(--ink);
  color: var(--linen);
  padding: 4px 14px;
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  font-weight: 600;
  margin-bottom: var(--space-3);
}
.pricing-badge.accent { background: var(--aqua); }
.pricing-header h3 {
  font-size: var(--fs-xl);
  margin-bottom: var(--space-1);
}
.pricing-sub {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--silver-deep);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.pricing-features {
  flex: 1;
  margin-bottom: var(--space-5);
}
.pricing-features li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--line-light);
  font-size: var(--fs-sm);
}
.pf-label {
  color: var(--silver-deep);
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.pf-val {
  font-weight: 600;
  color: var(--ink);
}
.pricing-cta {
  width: 100%;
  text-align: center;
}

@media (max-width: 860px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
}

/* ---------- SLIDER IN CARDS ---------- */
.pf-slider {
  flex-direction: column;
  align-items: stretch !important;
  gap: var(--space-2);
}
.pf-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pf-track {
  position: relative;
  height: 6px;
  background: var(--line);
  border-radius: 3px;
  display: flex;
  align-items: center;
}
.pf-fill {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  border-radius: 3px;
  background: var(--aqua);
  transition: width 0.6s var(--ease);
}
.pf-fill[data-level="1"] { width: 20%; background: var(--amber); }
.pf-fill[data-level="2"] { width: 40%; background: var(--amber); }
.pf-fill[data-level="3"] { width: 60%; background: var(--aqua); }
.pf-fill[data-level="4"] { width: 80%; background: var(--aqua); }
.pf-fill[data-level="5"] { width: 100%; background: var(--aqua-deep); }
.pf-dots {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1px;
  pointer-events: none;
}
.pf-dots span {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--white);
  opacity: 0.6;
  flex-shrink: 0;
}
.pricing-features li.pf-slider {
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--line-light);
}

/* Cross-section in product cards */
.product-img.section-img {
  aspect-ratio: 1692/2400;
  background: var(--linen);
  padding: var(--space-4);
}
.product-img.section-img img {
  object-fit: contain;
}
.product-img.section-img:hover img {
  transform: scale(1.02);
}

/* ---------- MODALS ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28,31,38,0.6);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
}
.modal-overlay.active {
  display: flex;
}
.modal-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: modalSlide 0.3s var(--ease);
  box-shadow: var(--shadow-lg);
}
@keyframes modalSlide {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.modal-close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  background: none;
  border: none;
  font-size: 28px;
  color: var(--silver-deep);
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color, color 0.2s;
}
.modal-close:hover {
  background: var(--linen);
  color: var(--ink);
}
.modal-header {
  margin-bottom: var(--space-4);
  padding-right: var(--space-6);
}
.modal-header h3 {
  font-size: var(--fs-xl);
  margin-bottom: var(--space-1);
}
.modal-img {
  background: var(--linen);
}
.modal-specs {
  list-style: none;
  padding: 0;
}
.modal-specs li {
  display: flex;
  justify-content: space-between;
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--line-light);
  font-size: var(--fs-sm);
}
.modal-specs li span:first-child {
  color: var(--silver-deep);
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.modal-specs li span:last-child {
  font-weight: 600;
  color: var(--ink);
}
@media (max-width: 480px) {
  .modal-box { padding: var(--space-4); max-height: 95vh; }
  .modal-img { max-height: 200px; }
}

/* Split reversed: text left, image right */
.split-reverse .split-img { order: 2; }
.split-reverse > div:not(.split-img) { order: 1; }
@media (max-width: 860px) {
  .split-reverse .split-img { order: 2; }
  .split-reverse > div:not(.split-img) { order: 1; }
}

/* ---------- FLOATING MESSENGER BUTTONS ---------- */
.floating-messengers {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.floating-messengers a {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
  text-decoration: none;
}
.floating-messengers a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
.floating-messengers a svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}
.floating-messengers .fm-phone {
  background: var(--ink);
}
.floating-messengers .fm-telegram {
  background: #0088cc;
}
.floating-messengers .fm-whatsapp {
  background: #25D366;
}
@media (max-width: 600px) {
  .floating-messengers {
    bottom: 16px;
    right: 16px;
  }
  .floating-messengers a {
    width: 46px;
    height: 46px;
  }
  .floating-messengers a svg {
    width: 24px;
    height: 24px;
  }
}

/* Hide floating messengers when footer is on screen — prevents covering footer socials */
.floating-messengers {
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
}
.floating-messengers.hidden-near-footer {
  transform: translateX(120px);
  opacity: 0;
  pointer-events: none;
}
.cookie-open .floating-messengers { opacity: 0; pointer-events: none; }
.menu-open .floating-messengers { opacity: 0; pointer-events: none; }
@media (prefers-reduced-motion: reduce) {
  .floating-messengers { transition: none; }
}

/* ===== MEASURE MODAL ===== */
.measure-overlay {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(28,31,38,0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s var(--ease);
  padding: 20px;
  overscroll-behavior: contain;
}
.measure-overlay[hidden] { display: none; }
.measure-overlay.open { opacity: 1; pointer-events: auto; }
.measure-overlay .modal-box {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 440px; width: 100%;
  padding: 40px 36px;
  transform: translateY(20px);
  transition: transform 0.3s var(--ease);
  box-shadow: var(--shadow-lg);
  max-height: 90vh; overflow-y: auto;
}
.measure-overlay.open .modal-box { transform: translateY(0); }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 44px; height: 44px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--silver-deep); transition: color 0.2s, background 0.2s;
}
.modal-close:hover { color: var(--ink); background: rgba(28,31,38,0.06); }
.modal-body { text-align: center; }
.modal-eyebrow {
  font-family: var(--font-mono); font-size: var(--fs-xs); font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--aqua);
  margin-bottom: 16px;
}
.modal-title { font-family: var(--font-display); font-size: var(--fs-2xl); font-weight: 600; margin-bottom: 8px; }
.modal-desc { font-size: var(--fs-sm); color: var(--silver-deep); margin-bottom: 24px; }
.modal-form { display: flex; flex-direction: column; gap: 12px; }
.modal-input {
  width: 100%; padding: 14px 18px; border: 2px solid var(--line);
  border-radius: var(--radius); font-family: var(--font-body); font-size: var(--fs-base);
  color: var(--ink); background: var(--white); transition: border-color 0.2s;
}
.modal-input:focus { outline: none; border-color: var(--aqua); }
.modal-input::placeholder { color: var(--silver); }
.modal-consent { text-align: left; margin: 0; }
.modal-submit {
  width: 100%; background: var(--aqua); color: var(--white); padding: 16px;
  border-radius: var(--radius); font-family: var(--font-display); font-size: var(--fs-md);
  font-weight: 600; border: none; cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s; box-shadow: 0 4px 16px rgba(0,166,160,0.15);
}
.modal-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,166,160,0.4); }
.modal-trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-top: 20px; font-size: var(--fs-xs); color: var(--silver-deep); }
.modal-success { display: none; }
.modal-success.active { display: block; }
.modal-error { min-height: 1.5em; margin: 0; color: #b42318; font-size: var(--fs-sm); text-align: left; }
.modal-success-icon {
  width: 72px; height: 72px; background: var(--aqua); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
  color: var(--white);
}
@media (max-width: 480px) {
  .modal-box { padding: 32px 20px; }
  .modal-title { font-size: var(--fs-xl); }
}

/* ===== PRIVACY & ANALYTICS CONSENT ===== */
.cookie-consent {
  position: fixed;
  z-index: 3000;
  left: 20px;
  right: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
  padding: 20px 22px;
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 60px rgba(12, 35, 38, 0.24);
}
.cookie-copy { max-width: 62ch; }
.cookie-copy h2 { margin: 0 0 4px; font-family: var(--font-display); font-size: var(--fs-lg); }
.cookie-copy p { margin: 0; color: var(--silver-deep); font-size: var(--fs-sm); }
.cookie-copy a { color: var(--aqua-deep); text-decoration: underline; text-underline-offset: 3px; }
.cookie-actions { display: flex; gap: 10px; flex: 0 0 auto; }
.cookie-actions .btn { min-height: 44px; white-space: nowrap; }
.cookie-settings-button {
  color: inherit;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
.legal-content { max-width: 780px; }
.legal-content h2 { margin-top: var(--space-8); margin-bottom: var(--space-3); font-size: var(--fs-xl); }
.legal-content p { max-width: 72ch; margin-bottom: var(--space-4); }
.legal-content a { color: var(--aqua-deep); text-decoration: underline; text-underline-offset: 3px; }
.calculator-card {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 48px);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.solution-links { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(32px, 6vw, 80px); align-items: start; }
.solution-links > div p { max-width: 48ch; }
.solution-links nav { border-top: 1px solid var(--line); }
.solution-links nav a { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 60px; padding: 14px 4px; border-bottom: 1px solid var(--line); color: var(--ink); font-weight: 600; }
.solution-links nav a span { color: var(--aqua-deep); transition: transform .2s var(--ease); }
.solution-links nav a:hover span { transform: translateX(4px); }
@media (max-width: 760px) { .solution-links { grid-template-columns: 1fr; gap: 20px; } }
.calc-result { display: flex; flex-wrap: wrap; gap: var(--space-4); margin-top: var(--space-6); }
.form-note { margin-top: var(--space-5); color: var(--silver-deep); font-size: var(--fs-sm); }
@media (max-width: 760px) {
  .cookie-consent { align-items: stretch; flex-direction: column; gap: 16px; left: 12px; right: 12px; bottom: 12px; }
  .cookie-actions { flex-direction: column-reverse; }
  .cookie-actions .btn { width: 100%; }
}

/* ===== ACCESSIBILITY & PERFORMANCE FIXES ===== */

/* Respect reduced motion preferences */
@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;
  }
  .bp-scan, .bp-glow, .hero-quiz::before, .pulse, .dot {
    animation: none !important;
  }
}

/* Touch optimization */
button, a, .btn, .quiz-option, .hq-option, .hq-next, .hq-back, .hq-submit, .quiz-submit-btn, .burger, .filter-btn, .socials a {
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(0, 166, 160, 0.15);
}

/* Typography: tabular numbers for price/data columns */
.hero-spec-val, .product-price, .stat-val, h2 em, .mono, .quiz-result-item strong {
  font-variant-numeric: tabular-nums;
}

/* Prevent widow lines on headings */
h1, h2, h3 {
  text-wrap: balance;
}
p {
  text-pretty: balance;
}
