/* ═══════════════════════════════════════════════════════════════
   HHpasport — Shared Stylesheet
   Consolidates all page styles into a single CSS file.
   ═══════════════════════════════════════════════════════════════ */

/* ═══ RESET & VARIABLES ═══ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --teal: #2c3e50;
  --teal-dark: #1a2a38;
  --teal-light: #34495e;
  --gold: #c49858;
  --gold-light: #d4ad6e;
  --gold-dim: rgba(196,152,88,0.08);
  --gold-glow: rgba(196,152,88,0.20);
  --bg-primary: #ffffff;
  --bg-secondary: #f7f8fa;
  --bg-card: #ffffff;
  --text-primary: #1a2a38;
  --text-secondary: #5a6d7e;
  --text-muted: #8899a8;
  --border: rgba(44,62,80,0.08);
  --border-hover: rgba(196,152,88,0.25);
  --shadow-sm: 0 2px 8px rgba(44,62,80,0.06);
  --shadow-md: 0 8px 30px rgba(44,62,80,0.08);
  --shadow-lg: 0 20px 60px rgba(44,62,80,0.10);
  --shadow-img: 0 24px 60px rgba(44,62,80,0.14);
  --red: #e74c3c;
  --green: #27ae60;
  --font-main: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

html { overflow-x: hidden; background: var(--bg-primary); scroll-behavior: smooth; }
body {
  font-family: var(--font-main);
  color: var(--text-primary);
  background: var(--bg-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ═══ LOADER ═══ */
.loader {
  position: fixed; inset: 0; background: #fff;
  z-index: 10000; display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 20px;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo { opacity: 0.9; }
.loader-bar {
  width: 100px; height: 2px; background: rgba(196,152,88,0.15);
  position: relative; overflow: hidden; border-radius: 1px;
}
.loader-bar::before {
  content: ''; position: absolute; left: -50%; top: 0; width: 50%; height: 100%;
  background: var(--gold);
  animation: slide 0.9s ease-in-out infinite;
}
@keyframes slide { 0% { left: -50%; } 100% { left: 100%; } }

/* ═══ GOLD TOP LINE ═══ */
.gold-accent-line { height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold)); }

/* ═══ NAV ═══ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 14px 48px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(30px) saturate(160%);
  -webkit-backdrop-filter: blur(30px) saturate(160%);
  border-bottom: 1px solid var(--border);
  transform: translateY(-100%);
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  font-weight: 700; font-size: 17px; letter-spacing: 0.5px;
  color: var(--teal); cursor: pointer; text-decoration: none;
}
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a, .nav-dropdown-trigger {
  font-size: 13px; font-weight: 500; color: var(--text-secondary);
  transition: color 0.3s ease; letter-spacing: 0.3px; cursor: pointer;
  text-decoration: none;
}
.nav-links a:hover, .nav-dropdown-trigger:hover { color: var(--teal); }
.nav-links a.active { color: var(--gold); font-weight: 600; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
  display: flex; align-items: center; gap: 4px; background: none; border: none; padding: 0;
  font-family: inherit;
}
.nav-dropdown-trigger svg { width: 12px; height: 12px; transition: transform 0.2s ease; }
.nav-dropdown:hover .nav-dropdown-trigger svg { transform: rotate(180deg); }
.nav-dropdown-trigger.active { color: var(--gold); font-weight: 600; }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%);
  background: #fff; border: 1px solid var(--border); border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1); padding: 8px;
  min-width: 200px; opacity: 0; visibility: hidden;
  transition: all 0.2s ease; pointer-events: none;
}
.nav-dropdown-menu::before {
  content: ''; position: absolute; top: -16px; left: 0; right: 0; height: 16px;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1; visibility: visible; pointer-events: auto;
}
.nav-dropdown-menu a {
  display: block; padding: 10px 16px; border-radius: 6px;
  font-size: 13px; font-weight: 500; color: var(--text-secondary);
  transition: all 0.15s ease; white-space: nowrap;
}
.nav-dropdown-menu a:hover { background: var(--bg-secondary); color: var(--teal); }
.nav-dropdown-menu a.active { color: var(--gold); font-weight: 600; }
.nav-tag { display: none; }
.nav-dropdown-menu a .nav-tag { display: block; font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--gold); opacity: 0.7; margin-top: 2px; }
.mobile-sub .nav-tag { display: block; font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--gold); opacity: 0.7; margin-top: 2px; }
.nav-cta {
  font-size: 13px; font-weight: 700;
  padding: 10px 28px; border-radius: 6px;
  background: var(--gold); color: #fff;
  transition: all 0.3s ease; letter-spacing: 0.3px;
  border: none; cursor: pointer;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 4px 16px var(--gold-glow); }

/* Mobile nav */
.nav-burger {
  display: none; background: none; border: none; cursor: pointer;
  width: 28px; height: 20px; position: relative; z-index: 1001;
}
.nav-burger span {
  display: block; width: 100%; height: 2px; background: var(--teal);
  position: absolute; left: 0; transition: all 0.3s ease;
}
.nav-burger span:nth-child(1) { top: 0; }
.nav-burger span:nth-child(2) { top: 9px; }
.nav-burger span:nth-child(3) { top: 18px; }
.nav-burger.active span:nth-child(1) { top: 9px; transform: rotate(45deg); }
.nav-burger.active span:nth-child(2) { opacity: 0; }
.nav-burger.active span:nth-child(3) { top: 9px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.mobile-menu.active { opacity: 1; visibility: visible; }
.mobile-menu nav {
  display: flex; flex-direction: column; gap: 24px; text-align: center;
}
.mobile-menu nav a {
  font-size: 20px; font-weight: 600; color: var(--teal);
  transition: color 0.3s;
}
.mobile-menu nav a:hover,
.mobile-menu nav a.active { color: var(--gold); }
.mobile-dropdown-label {
  font-size: 11px; font-weight: 700; color: var(--gold);
  text-transform: uppercase; letter-spacing: 2px; padding: 12px 0 4px;
  font-family: var(--font-mono);
}
.mobile-menu nav a.mobile-sub {
  padding-left: 16px; font-size: 18px;
}
.mobile-menu nav a.mobile-cta {
  display: inline-block; margin-top: 16px;
  padding: 14px 40px; border-radius: 6px;
  background: var(--gold); color: #fff; font-weight: 700;
}

/* ═══ HERO ═══ */
.hero {
  min-height: 100vh; position: relative; overflow: hidden;
  display: flex; align-items: center;
}
.hero-image-wrap {
  position: absolute; inset: 0;
  will-change: transform; transition: transform 0.15s ease-out;
}
.hero-image-wrap img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 40%;
  transform: scale(1.08);
}
/* Light overlay — subpages default */
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.88) 0%, rgba(255,255,255,0.45) 45%, rgba(255,255,255,0.55) 100%),
    linear-gradient(180deg, transparent 30%, rgba(247,248,250,0.5) 70%, rgba(247,248,250,0.95) 100%);
}
/* Dark overlay — index hero */
.hero--dark .hero-overlay {
  background:
    linear-gradient(180deg, rgba(20,30,42,0.7) 0%, rgba(20,30,42,0.55) 50%, rgba(20,30,42,0.85) 100%);
}
.hero-gradient-bottom {
  position: absolute; bottom: 0; left: 0; right: 0; height: 180px; z-index: 2;
  background: linear-gradient(180deg, transparent 0%, var(--bg-secondary) 100%);
  pointer-events: none;
}
/* Content — left-aligned on subpages */
.hero-content {
  position: relative; z-index: 3;
  padding: 0 48px;
  max-width: 840px;
  will-change: transform, opacity;
}
/* Content — centered on dark index hero */
.hero--dark .hero-content {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
/* hero-badge — subpages only */
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 20px; border-radius: 100px;
  background: rgba(196,152,88,0.08);
  border: 1px solid rgba(196,152,88,0.2);
  font-size: 11px; font-weight: 700; color: var(--gold);
  letter-spacing: 2.5px; text-transform: uppercase;
  margin-bottom: 32px; opacity: 0;
  backdrop-filter: blur(8px);
}

/* Hero title */
.hero-title {
  font-size: clamp(40px, 5.8vw, 76px);
  font-weight: 800; line-height: 1.05; letter-spacing: -2.5px;
  margin-bottom: 24px; color: var(--teal);
}
.hero--dark .hero-title { color: #fff; }
.hero-title-line {
  display: block; opacity: 0; transform: translateY(40px);
}
.hero-title-accent {
  color: var(--gold); font-weight: 800;
}

/* Divider line between title and claim */
.hero-divider {
  width: 60px; height: 2px;
  background: var(--gold);
  margin-bottom: 28px;
  opacity: 0; transform: scaleX(0);
  transform-origin: center;
}

/* Claim — three words separated by gold dots */
.hero-claim {
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 500; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 44px; opacity: 0;
  font-family: var(--font-mono);
}
.hero-claim-sep {
  display: inline-block; width: 6px; height: 6px;
  background: var(--gold); border-radius: 50%;
  margin: 0 16px; vertical-align: middle;
  opacity: 0.8;
}

/* Subpage subtitle */
.hero-sub {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--text-secondary); font-weight: 400; line-height: 1.75;
  max-width: 560px; margin-bottom: 36px; opacity: 0;
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; opacity: 0; justify-content: center; }
.hero-ctas .btn-primary svg {
  transition: transform 0.3s ease;
}
.hero-ctas .btn-primary:hover svg {
  transform: translateX(4px);
}


.hero-scroll-hint {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0; z-index: 3;
}
.hero-scroll-hint span {
  font-size: 10px; color: var(--text-muted); letter-spacing: 3px; text-transform: uppercase;
}
.hero--dark .hero-scroll-hint span { color: rgba(255,255,255,0.4); }
.hero--dark .scroll-line { background: linear-gradient(180deg, rgba(255,255,255,0.4), transparent); }
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollDown 2.5s ease-in-out infinite;
}
@keyframes scrollDown {
  0% { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0.3; }
}

/* Hero responsive */
@media (max-width: 768px) {
  .hero-content { padding: 0 24px; }
  .hero-title { letter-spacing: -1.5px; }
  .hero-claim { letter-spacing: 2px; }
  .hero-claim-sep { margin: 0 10px; width: 5px; height: 5px; }
}

/* ═══ BUTTONS ═══ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 6px;
  background: var(--gold); color: #fff;
  font-size: 15px; font-weight: 700; font-family: var(--font-main);
  transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
  letter-spacing: 0.2px; border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px var(--gold-glow); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 6px;
  background: transparent; border: 1.5px solid var(--border);
  color: var(--teal); font-size: 15px; font-weight: 600; font-family: var(--font-main);
  transition: all 0.35s cubic-bezier(0.16,1,0.3,1); cursor: pointer;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-dim); }

/* ═══ CONTAINER ═══ */
.container { max-width: 1200px; margin: 0 auto; width: 100%; }

/* ═══ SECTIONS ═══ */
.section {
  position: relative; padding: 120px 48px; overflow: hidden;
}
.section-label {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 600; color: var(--gold);
  letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(30px, 3.5vw, 50px);
  font-weight: 800; line-height: 1.12; letter-spacing: -1.5px;
  margin-bottom: 18px; color: var(--teal);
}
.section-desc {
  font-size: 16px; line-height: 1.75; color: var(--text-secondary);
  font-weight: 400; max-width: 540px;
}
.section-center { text-align: center; }
.section-center .section-desc { margin: 0 auto; }

/* Perspective for 3D scroll reveal effects */
.audience-grid,
.stats-grid { perspective: 1200px; }
.story-block { perspective: 800px; }

/* ═══ CTA / CONTACT SECTION ═══ */
.cta-section {
  padding: 120px 48px 140px; text-align: center;
  position: relative; overflow: hidden;
  background: var(--teal); color: #fff;
}
.cta-section .section-title,
.cta-section .section-label,
.cta-section .section-desc { color: #fff; }
.cta-section .section-desc { opacity: 0.7; }
.h-pattern-bg {
  position: absolute; inset: 0; pointer-events: none;
  width: 100%; height: 100%;
  background-image: url('../media/vzor-light.svg');
  background-size: 1200px auto;
  background-repeat: repeat;
  background-position: center center;
  opacity: 0.05;
  filter: brightness(10);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 100%);
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 100%);
}
.cta-content { position: relative; z-index: 2; max-width: 650px; margin: 0 auto; }
.cta-section .section-label { color: var(--gold-light); }
.cta-title {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800; letter-spacing: -2px; line-height: 1.1; margin-bottom: 16px; color: #fff;
}
.cta-desc { font-size: 17px; color: rgba(255,255,255,0.7); font-weight: 400; line-height: 1.65; margin-bottom: 36px; }

/* ═══ CONTACT FORM ═══ */
.contact-form { max-width: 520px; margin: 0 auto; text-align: left; }
.form-row { margin-bottom: 18px; position: relative; }
.form-row-half { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row-half > div { display: flex; flex-direction: column; }
.form-row-half > div .form-input,
.form-row-half > div .form-select { margin-top: auto; }
.form-label {
  display: block; font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,0.55); letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 7px;
}
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 13px 18px; border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06); color: #fff;
  font-family: var(--font-main); font-size: 15px; font-weight: 400;
  outline: none;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  -webkit-appearance: none; appearance: none;
}
.form-textarea { resize: vertical; min-height: 80px; }
.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold); background: rgba(255,255,255,0.09);
  box-shadow: 0 0 0 3px rgba(196,152,88,0.12);
}
.form-input.error, .form-select.error { border-color: #e74c3c; background: rgba(231,76,60,0.06); }
.form-input.valid, .form-select.valid { border-color: #27ae60; }
.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='rgba(255,255,255,0.5)' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
  padding-right: 44px;
}
.form-select option { background: var(--teal-dark); color: #fff; }
.form-error {
  display: none; font-size: 12px; color: #ff6b6b;
  margin-top: 5px; align-items: center; gap: 4px;
}
.form-error.visible { display: flex; }
.form-divider { width: 40px; height: 1px; background: rgba(255,255,255,0.12); margin: 32px auto; }
.form-submit {
  width: 100%; padding: 15px; border-radius: 8px; border: none;
  background: var(--gold); color: #fff;
  font-family: var(--font-main); font-size: 16px; font-weight: 700;
  letter-spacing: 0.3px; cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.form-submit:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 30px var(--gold-glow); }
.form-submit:active { transform: translateY(0); }
.form-note { text-align: center; margin-top: 14px; font-size: 12px; color: rgba(255,255,255,0.35); }
.form-success { display: none; text-align: center; padding: 40px 20px; }
.form-success.visible { display: block; }
.form-success-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(39,174,96,0.15); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.form-success h3 { font-size: 24px; font-weight: 700; margin-bottom: 10px; color: #fff; }
.form-success p { font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.6; }

/* ═══ CONTACT INFO BAR ═══ */
.contact-info-bar {
  padding: 48px; background: var(--bg-secondary);
  display: flex; justify-content: center; gap: 48px; flex-wrap: wrap;
}
.contact-item { display: flex; align-items: center; gap: 14px; }
.contact-item-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--gold-dim); display: flex; align-items: center; justify-content: center;
}
.contact-item-label { font-size: 11px; color: var(--text-muted); letter-spacing: 1px; text-transform: uppercase; font-weight: 600; }
.contact-item-value { font-size: 15px; font-weight: 600; color: var(--teal); }
.contact-item-value a { color: var(--teal); transition: color 0.3s; }
.contact-item-value a:hover { color: var(--gold); }

/* ═══ FOOTER ═══ */
.footer {
  padding: 40px 48px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.footer-left { font-size: 12px; color: var(--text-muted); }
.footer-links { display: flex; gap: 24px; font-size: 12px; flex-wrap: wrap; }
.footer-links a { color: var(--text-secondary); transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }
.footer-right { display: flex; gap: 24px; font-size: 12px; color: var(--text-muted); }
.footer-right a { transition: color 0.3s ease; }
.footer-right a:hover { color: var(--teal); }

/* ═══ HH PATTERN ANIMATION ═══ */
@keyframes patternDrift {
  0% { transform: translate(0, 0); }
  100% { transform: translate(160px, 160px); }
}

/* Pattern on light backgrounds (hero, story, why sections) */
.hh-pattern-light {
  position: absolute; inset: 0; pointer-events: none;
  width: 100%; height: 100%;
  background-image: url('../media/vzor-light.svg');
  background-size: 1200px auto;
  background-repeat: repeat;
  background-position: center center;
  opacity: 0.05;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 100%);
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 100%);
}

/* ═══ REVEAL ANIMATIONS ═══ */
.reveal-up { opacity: 0; transform: translateY(50px); }
.reveal-left { opacity: 0; transform: translateX(-60px); }
.reveal-right { opacity: 0; transform: translateX(60px); }

/* ═══════════════════════════════════════════════════════════════
   INDEX PAGE — Audience Cards, Story, Stats, Reviews
   ═══════════════════════════════════════════════════════════════ */

/* Audience Cards */
.audience-section {
  position: relative; z-index: 10;
  margin-top: -120px;
  padding: 0 48px 80px;
  pointer-events: none;
}
.audience-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; max-width: 1100px; margin: 0 auto;
  pointer-events: auto;
}
.audience-card {
  border-radius: 16px;
  min-height: 320px;
  position: relative; overflow: hidden;
  cursor: pointer;
  opacity: 0;
  transform: translateY(80px) scale(0.92);
  display: flex; flex-direction: column; justify-content: flex-end;
  box-shadow: 0 20px 60px rgba(44,62,80,0.18);
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1), box-shadow 0.5s ease;
  text-decoration: none;
}
.audience-card:hover {
  transform: translateY(-8px) scale(1) !important;
  box-shadow: 0 30px 80px rgba(44,62,80,0.25);
}
.audience-card-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.audience-card:hover .audience-card-bg { transform: scale(1.06); }
.audience-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(26,42,56,0.92) 0%, rgba(26,42,56,0.65) 45%, rgba(26,42,56,0.15) 100%);
  transition: background 0.4s ease;
}
.audience-card:hover .audience-card-overlay {
  background: linear-gradient(0deg, rgba(26,42,56,0.95) 0%, rgba(26,42,56,0.55) 45%, rgba(26,42,56,0.10) 100%);
}
.audience-card-content {
  position: relative; z-index: 2;
  padding: 32px 28px;
}
.audience-card-tag {
  display: inline-block;
  padding: 4px 12px; border-radius: 4px;
  background: rgba(196,152,88,0.2);
  font-family: var(--font-mono);
  font-size: 10px; font-weight: 600; color: var(--gold-light);
  letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 12px;
}
.audience-card-title {
  font-size: 22px; font-weight: 700; margin-bottom: 10px; color: #fff;
  letter-spacing: -0.3px;
}
.audience-card-desc {
  font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.7;
  margin-bottom: 16px;
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height 0.5s cubic-bezier(0.16,1,0.3,1), opacity 0.4s ease, margin 0.4s ease;
}
.audience-card:hover .audience-card-desc {
  max-height: 120px; opacity: 1; margin-bottom: 16px;
}
.audience-card-link {
  font-size: 13px; font-weight: 700; color: var(--gold-light);
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap 0.3s ease, color 0.3s ease;
}
.audience-card:hover .audience-card-link { gap: 10px; color: var(--gold); }

/* Story Section */
.story-section { padding: 120px 48px; }
.story-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  max-width: 1200px; margin: 0 auto; width: 100%;
}
.story-text { opacity: 0; }
.story-text p { font-size: 16px; color: var(--text-secondary); line-height: 1.75; margin-bottom: 20px; }
.story-text p:last-child { margin-bottom: 0; }
.story-visual { opacity: 0; position: relative; }
.story-values {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px;
}
.story-value {
  padding: 24px 20px; border-radius: 12px; border: 1px solid var(--border);
  transition: all 0.4s ease;
}
.story-value:hover { border-color: var(--border-hover); box-shadow: var(--shadow-sm); }
.story-value-title { font-size: 15px; font-weight: 700; color: var(--teal); margin-bottom: 6px; }
.story-value-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

/* Stats */
.stats-section { padding: 100px 48px; background: var(--teal); color: #fff; position: relative; overflow: hidden; }
.stats-section .section-title { color: #fff; }
.stats-pattern {
  position: absolute; inset: 0; pointer-events: none;
  width: 100%; height: 100%;
  background-image: url('../media/vzor-light.svg');
  background-size: 1200px auto;
  background-repeat: repeat;
  background-position: center center;
  opacity: 0.05;
  filter: brightness(10);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 100%);
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 100%);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; max-width: 1200px; margin: 0 auto; position: relative; z-index: 2;
}
.stat-card {
  text-align: center; padding: 36px 20px; border-radius: 16px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08);
  opacity: 0; transition: transform 0.4s ease, background 0.4s ease;
}
.stat-card:hover { transform: translateY(-3px); background: rgba(255,255,255,0.10); }
.stat-number {
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 800; letter-spacing: -1.5px; color: #fff; margin-bottom: 4px;
}
.stat-unit {
  font-family: var(--font-mono); font-size: 11px; color: var(--gold-light);
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px;
}
.stat-desc { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* Reviews 3D Carousel */
.reviews-section { padding: 80px 0 60px; overflow: hidden; }
.reviews-header { text-align: center; max-width: 600px; margin: 0 auto 56px; padding: 0 48px; }
.reviews-carousel-3d {
  position: relative; height: 420px; perspective: 2000px;
  overflow: hidden; cursor: grab; -webkit-user-select: none; user-select: none;
}
.reviews-carousel-3d:active { cursor: grabbing; }
.reviews-carousel-3d::before, .reviews-carousel-3d::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 14%; z-index: 20; pointer-events: none;
}
.reviews-carousel-3d::before { left: 0; background: linear-gradient(to right, var(--bg-primary) 0%, transparent 100%); }
.reviews-carousel-3d::after { right: 0; background: linear-gradient(to left, var(--bg-primary) 0%, transparent 100%); }
.reviews-scene { position: relative; width: 100%; height: 100%; transform-style: preserve-3d; }
.review-card {
  position: absolute; width: 340px; top: 10px; left: 50%;
  padding: 32px 28px; border-radius: 16px; background: #fff; border: 1px solid var(--border);
  display: flex; flex-direction: column; will-change: transform, opacity;
  pointer-events: none; transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.review-card.in-view { pointer-events: auto; }
.review-card.in-view:hover { box-shadow: var(--shadow-lg); border-color: var(--border-hover); }
.review-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.review-star { color: #f5a623; font-size: 16px; }
.review-text { font-size: 14px; color: var(--text-secondary); line-height: 1.75; margin-bottom: 20px; font-style: italic; flex: 1; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--gold-dim); display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px; color: var(--gold); flex-shrink: 0;
}
.review-name { font-size: 14px; font-weight: 600; color: var(--teal); }
.review-source { font-size: 11px; color: var(--text-muted); }
.review-source a { color: var(--text-muted); text-decoration: none; transition: color 0.3s; }
.review-source a:hover { color: var(--gold); text-decoration: underline; }
.review-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 12px; font-size: 12px; color: var(--gold);
  text-decoration: none; font-weight: 600; transition: gap 0.3s;
}
.review-link:hover { gap: 10px; }
.reviews-nav {
  display: flex; justify-content: center; align-items: center;
  gap: 24px; margin-top: 32px; padding: 0 48px;
}
.reviews-btn {
  width: 48px; height: 48px; border-radius: 50%;
  border: 1.5px solid var(--border); background: #fff; color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.3s;
}
.reviews-btn:hover { border-color: var(--gold); color: var(--gold); box-shadow: var(--shadow-sm); }
.reviews-counter {
  font-size: 14px; color: var(--text-muted);
  font-variant-numeric: tabular-nums; min-width: 64px; text-align: center;
}
.reviews-badge {
  text-align: center; margin-top: 28px; font-size: 13px; color: var(--text-muted); padding: 0 48px;
}
.reviews-badge a { color: var(--gold); font-weight: 600; text-decoration: underline; }

/* ═══════════════════════════════════════════════════════════════
   SUBPAGE COMPONENTS — Scenarios, What-is, Why, Process, Team, etc.
   ═══════════════════════════════════════════════════════════════ */

/* Scenario Cards */
.scenario-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; max-width: 1200px; margin: 0 auto; margin-top: 48px;
}
.scenario-card {
  padding: 36px 28px; border-radius: 12px;
  background: var(--bg-card); border: 1px solid var(--border);
  transition: all 0.4s ease; cursor: pointer;
  opacity: 0; transform: translateY(40px);
}
.scenario-card:hover {
  border-color: var(--border-hover); box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.scenario-number {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--gold-dim); color: var(--gold);
  font-weight: 700; font-size: 18px; margin-bottom: 16px;
}
.scenario-title { font-size: 18px; font-weight: 700; color: var(--teal); margin-bottom: 12px; }
.scenario-text { font-size: 14px; color: var(--text-secondary); line-height: 1.75; }

/* What-is Section */
.what-section { position: relative; }
.what-content {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.what-text { opacity: 0; transform: translateX(-60px); }
.what-text p { font-size: 16px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 16px; }
.what-text p:last-child { margin-bottom: 0; }
.what-legal {
  padding: 20px 24px; border-radius: 10px;
  background: var(--gold-dim); border-left: 3px solid var(--gold);
  margin: 32px 0; font-size: 14px; color: var(--text-secondary);
  font-weight: 500;
}
.what-legal a { color: var(--gold); text-decoration: underline; font-weight: 600; }
.what-legal a:hover { color: var(--gold-light); }

/* Document Parts */
.doc-parts { opacity: 0; transform: translateX(60px); }
.doc-parts-title { font-size: 18px; font-weight: 700; color: var(--teal); margin-bottom: 24px; }
.doc-part {
  padding: 20px; border-radius: 10px;
  background: var(--bg-secondary); margin-bottom: 16px;
  border-left: 3px solid var(--gold);
  transition: all 0.3s ease;
}
.doc-part:hover { background: var(--gold-dim); }
.doc-part-letter {
  font-family: var(--font-mono); font-weight: 700; color: var(--gold);
  font-size: 13px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 6px;
}
.doc-part-name { font-size: 15px; font-weight: 600; color: var(--teal); margin-bottom: 4px; }
.doc-part-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

/* Why Section */
.why-section { position: relative; background: var(--bg-secondary); }
.why-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.why-boxes { opacity: 0; transform: translateX(-60px); }
.why-box {
  padding: 32px 28px; border-radius: 12px;
  background: var(--bg-card); border: 1px solid var(--border);
  margin-bottom: 24px; transition: all 0.3s ease;
}
.why-box:hover { border-color: var(--border-hover); box-shadow: var(--shadow-md); }
.why-box-title { font-size: 18px; font-weight: 700; color: var(--teal); margin-bottom: 12px; }
.why-box-text { font-size: 14px; color: var(--text-secondary); line-height: 1.75; }

/* Comparison Table */
.comparison-box {
  opacity: 0; transform: translateX(60px);
  margin-top: 40px; border-radius: 12px; overflow: hidden;
  border: 1px solid var(--border); background: var(--bg-card);
}
.comparison-box > h3 {
  padding: 20px 24px; margin: 0; font-size: 18px; font-weight: 700;
  color: var(--teal); background: var(--bg-secondary); border-bottom: 1px solid var(--border);
}
.comparison-label {
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  color: var(--gold); letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 24px;
}
.comparison-item {
  display: grid; grid-template-columns: 1fr 2fr; gap: 0;
  border-bottom: 1px solid var(--border);
}
.comparison-item:last-child { border-bottom: none; }
.comparison-item:first-child .comparison-col {
  padding-top: 16px; padding-bottom: 12px; background: var(--bg-secondary);
}
.comparison-col {
  padding: 16px 20px; display: flex; align-items: flex-start;
}
.comparison-col-title { font-size: 13px; font-weight: 700; color: var(--teal); margin: 0; }
.comparison-col-text { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }
.comparison-col.vs-highlight {
  background: var(--gold-dim);
}
.comparison-col.vs-highlight .comparison-col-title { color: var(--gold); }
.comparison-col.vs-highlight .comparison-col-text { color: var(--teal); font-weight: 600; }
/* VS Comparison Box (compact) */
.vs-box {
  opacity: 0; transform: translateX(60px);
  border-radius: 12px; overflow: hidden;
  border: 1px solid var(--border); background: var(--bg-card);
}
.vs-box-title {
  padding: 16px 20px; margin: 0; font-size: 17px; font-weight: 700;
  color: var(--teal); background: var(--bg-secondary); border-bottom: 1px solid var(--border);
}
.vs-row {
  display: grid; grid-template-columns: 0.7fr 1fr 1fr; gap: 0;
  border-bottom: 1px solid var(--border);
}
.vs-row:last-child { border-bottom: none; }
.vs-header { background: var(--bg-secondary); }
.vs-header .vs-bad,
.vs-header .vs-good {
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  padding: 10px 14px;
}
.vs-header .vs-bad { color: var(--text-muted); }
.vs-header .vs-good { color: var(--gold); background: var(--gold-dim); }
.vs-aspect {
  padding: 10px 14px; font-size: 13px; font-weight: 700; color: var(--teal);
  display: flex; align-items: center;
}
.vs-bad {
  padding: 10px 14px; font-size: 13px; color: var(--text-muted); line-height: 1.5;
  border-left: 1px solid var(--border);
}
.vs-good {
  padding: 10px 14px; font-size: 13px; color: var(--teal); font-weight: 600; line-height: 1.5;
  background: var(--gold-dim); border-left: 1px solid var(--border);
}

/* Contact person — prominent strip with CTA */
.contact-person-strip {
  padding: 24px 0; margin: 0;
}
.contact-person-label {
  font-size: 16px; font-weight: 600; color: var(--teal);
  margin-bottom: 14px; line-height: 1.5;
}
.contact-person-inner {
  display: flex; align-items: center; gap: 24px;
  padding: 24px 32px; border-radius: 12px;
  background: var(--teal); color: #fff;
  box-shadow: var(--shadow-md);
}
.contact-person-initials {
  width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0;
  background: rgba(255,255,255,0.15); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; font-weight: 700; letter-spacing: 0.5px;
  border: 2px solid rgba(196,152,88,0.4);
}
.contact-person-info {
  font-size: 15px; color: #fff; line-height: 1.6;
  flex: 1;
}
.contact-person-info strong {
  font-weight: 700; font-size: 16px;
}
.contact-person-note {
  display: block; font-size: 13px; color: rgba(255,255,255,0.7);
  margin-top: 2px;
}
.contact-person-actions {
  display: flex; gap: 10px; flex-shrink: 0;
}
.contact-person-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: 8px;
  font-size: 13px; font-weight: 600; font-family: var(--font-main);
  white-space: nowrap; transition: all 0.25s ease;
  background: rgba(255,255,255,0.12); color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
}
.contact-person-btn:hover {
  background: var(--gold); border-color: var(--gold);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(196,152,88,0.3);
}
.contact-person-btn svg { flex-shrink: 0; stroke: var(--gold); }
.contact-person-btn:hover svg { stroke: #fff; }
@media (max-width: 900px) {
  .contact-person-inner { flex-wrap: wrap; }
  .contact-person-actions { width: 100%; margin-top: 4px; }
}
@media (max-width: 600px) {
  .contact-person-inner { flex-direction: column; text-align: center; gap: 16px; padding: 24px 20px; }
  .contact-person-actions { flex-direction: column; gap: 8px; }
  .contact-person-btn { justify-content: center; }
}

/* Contact service directory (kontakt.html — light card) */
.contact-general-block {
  padding: 28px; border-radius: 12px;
  background: var(--teal); color: #fff;
  margin-bottom: 32px; text-align: center;
}
.contact-general-block p {
  margin: 0 0 16px; font-size: 15px; color: rgba(255,255,255,0.8); line-height: 1.5;
}
.contact-general-actions {
  display: flex; justify-content: center; gap: 12px; flex-wrap: wrap;
}
.contact-general-actions .contact-person-btn {
  background: rgba(255,255,255,0.15); color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 14px; padding: 12px 22px;
}
.contact-general-actions .contact-person-btn:hover {
  background: var(--gold); border-color: var(--gold);
}
.contact-general-actions .contact-person-btn svg { stroke: var(--gold); }
.contact-general-actions .contact-person-btn:hover svg { stroke: #fff; }
.contact-service-block {
  margin-bottom: 28px;
}
.contact-service-block--secondary {
  margin-bottom: 20px;
}
.contact-service-label {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 700; color: var(--gold);
  text-transform: uppercase; letter-spacing: 0.8px;
  margin-bottom: 8px;
}
.contact-service-label svg { flex-shrink: 0; }
.contact-service-desc {
  font-size: 14px; color: var(--text-muted);
  line-height: 1.5; margin: 0 0 14px;
}
.contact-service-person {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px; border-radius: 10px;
  background: #f7f9fb;
  border: 1px solid var(--border);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.contact-service-person:hover {
  background: #f0f4f6; border-color: var(--border-hover);
}
.contact-service-person .contact-person-initials {
  background: var(--teal); color: #fff;
  border-color: rgba(196,152,88,0.3);
}
.contact-service-person-info {
  flex: 1; min-width: 0;
}
.contact-service-person-info strong {
  display: block; font-size: 15px; font-weight: 700; color: var(--text-primary);
}
.contact-service-person-info span {
  display: block; font-size: 13px; color: var(--text-muted); margin-top: 2px;
}
.contact-service-person-actions {
  display: flex; gap: 8px; flex-shrink: 0; flex-wrap: wrap;
}
.contact-service-person-actions .contact-person-btn {
  background: var(--teal); color: #fff;
  border: 1px solid var(--teal);
}
.contact-service-person-actions .contact-person-btn:hover {
  background: var(--gold); border-color: var(--gold);
}
.contact-service-person-actions .contact-person-btn svg {
  stroke: rgba(255,255,255,0.8);
}
.contact-service-person--compact {
  padding: 12px 16px; gap: 12px;
}
.contact-mgmt-grid {
  display: flex; flex-direction: column; gap: 10px;
}
.contact-office-info {
  display: flex; gap: 32px; flex-wrap: wrap;
}
.contact-teams-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.contact-team-col .contact-service-label {
  margin-bottom: 10px;
}
@media (max-width: 700px) {
  .contact-service-person {
    flex-direction: column; text-align: center; gap: 12px; padding: 16px;
  }
  .contact-service-person-actions {
    flex-direction: column; gap: 8px; width: 100%;
  }
  .contact-service-person-actions .contact-person-btn {
    justify-content: center;
  }
  .contact-service-person--compact {
    flex-direction: row; text-align: left; flex-wrap: wrap;
  }
  .contact-office-info { flex-direction: column; gap: 12px; }
  .contact-general-actions { flex-direction: column; }
  .contact-general-actions .contact-person-btn { justify-content: center; }
  .contact-teams-row { grid-template-columns: 1fr; }
}

/* Feature list styling */
.feature-list {
  list-style: none; padding: 0; margin: 12px 0 24px;
}
.feature-list li {
  position: relative; padding-left: 20px; margin-bottom: 10px;
  font-size: 15px; color: var(--text-secondary); line-height: 1.7;
}
.feature-list li::before {
  content: ''; position: absolute; left: 0; top: 10px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--gold);
}
.what-text h3 {
  font-size: 18px; font-weight: 700; color: var(--teal); margin: 24px 0 8px;
}
.what-text h3:first-child { margin-top: 0; }

/* Process Timeline */
.process-section { position: relative; }
.process-grid {
  max-width: 900px; margin: 48px auto 0;
  position: relative;
  padding-left: 100px;
}
.process-grid::before {
  content: '';
  position: absolute;
  left: 31px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--gold) 10%, var(--gold) 90%, transparent);
}
.process-step {
  position: relative;
  padding: 0 0 56px;
  opacity: 0;
}
.process-step:last-child { padding-bottom: 0; }
.process-number {
  position: absolute;
  left: -100px;
  top: 0;
  display: flex; align-items: center; justify-content: center;
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--gold); color: #fff; font-weight: 800; font-size: 28px;
  z-index: 1;
  box-shadow: 0 0 0 6px var(--bg-primary), 0 4px 16px rgba(0,0,0,0.1);
}
.process-title { font-size: 22px; font-weight: 700; color: var(--teal); margin-bottom: 10px; }
.process-text { font-size: 15px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 0; max-width: 640px; }

/* References (subpage compact) */
.references-section { position: relative; }
.references-container {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 32px; margin-top: 48px;
}
.reference-card {
  padding: 32px 28px; border-radius: 12px;
  background: var(--bg-card); border: 1px solid var(--border);
  opacity: 0; transform: translateY(40px);
  transition: all 0.3s ease;
}
.reference-card:hover { border-color: var(--border-hover); box-shadow: var(--shadow-md); }
.reference-badge {
  display: inline-block; padding: 4px 12px; border-radius: 4px;
  background: var(--gold-dim); font-family: var(--font-mono);
  font-size: 10px; font-weight: 600; color: var(--gold);
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px;
}
.reference-quote { font-size: 15px; color: var(--text-secondary); line-height: 1.75; margin-bottom: 16px; font-style: italic; }
.reference-author { font-size: 14px; font-weight: 600; color: var(--teal); }
.reference-author a { color: inherit; text-decoration: none; border-bottom: 1px dotted var(--teal); transition: opacity .2s; }
.reference-author a:hover { opacity: .75; }
.reference-role { font-size: 12px; color: var(--text-muted); }

/* Team */
.team-section { position: relative; }
.team-intro {
  max-width: 640px; margin: 0 auto 56px;
  text-align: center;
  opacity: 0; transform: translateY(30px);
}
.team-intro-text { font-size: 16px; color: var(--text-secondary); line-height: 1.75; }
.team-grid {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 48px;
}
.team-member { text-align: center; opacity: 0; transform: translateY(40px); }
.team-member-photo {
  width: 160px; height: 160px; border-radius: 12px;
  background: var(--bg-secondary); margin: 0 auto 20px;
  overflow: hidden; position: relative;
}
.team-member-photo img {
  width: 100%; height: 100%; object-fit: cover;
}
.team-member-photo .placeholder-photo {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--gold-dim), var(--bg-secondary));
  display: flex; align-items: center; justify-content: center;
  font-size: 48px; font-weight: 800; color: var(--gold);
  font-family: var(--font-mono);
}
.team-member-name { font-size: 18px; font-weight: 700; color: var(--teal); margin-bottom: 4px; }
.team-member-role {
  font-size: 13px; color: var(--gold); font-weight: 600; margin-bottom: 12px;
  letter-spacing: 1px; text-transform: uppercase; font-family: var(--font-mono);
}
.team-member-bio { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

/* Deliverables */
.deliverables-section { position: relative; }
.deliverables-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px;
}
.deliverable-item {
  padding: 32px 28px; border-radius: 12px;
  background: var(--bg-card); border: 1px solid var(--border);
  opacity: 0; transform: translateY(40px);
  transition: all 0.3s ease;
}
.deliverable-item:hover { border-color: var(--border-hover); box-shadow: var(--shadow-md); }
.deliverable-title { font-size: 16px; font-weight: 700; color: var(--teal); margin-bottom: 12px; }
.deliverable-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.75; }

/* Pricing */
.pricing-section { position: relative; }
.pricing-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px;
}
.pricing-card {
  padding: 40px 32px; border-radius: 12px;
  background: var(--bg-card); border: 1px solid var(--border);
  opacity: 0; transform: translateY(40px);
  transition: all 0.3s ease; text-align: center;
}
.pricing-card:hover { border-color: var(--border-hover); box-shadow: var(--shadow-lg); }
.pricing-label {
  font-size: 14px; font-weight: 600; color: var(--gold);
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px;
  font-family: var(--font-mono);
}
.pricing-title { font-size: 20px; font-weight: 700; color: var(--teal); margin-bottom: 20px; }
.pricing-amount { font-size: 36px; font-weight: 800; color: var(--gold); margin-bottom: 4px; }
.pricing-period { font-size: 13px; color: var(--text-secondary); margin-bottom: 24px; }
.pricing-features { text-align: left; margin-bottom: 32px; }
.pricing-feature {
  font-size: 13px; color: var(--text-secondary); line-height: 1.8;
  padding: 8px 0; border-bottom: 1px solid var(--border);
}
.pricing-feature:last-child { border-bottom: none; }

/* FAQ */
.faq-section { position: relative; }
.faq-container { max-width: 900px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border); border-radius: 10px;
  margin-bottom: 16px; overflow: hidden;
  opacity: 0; transform: translateY(30px);
  transition: all 0.3s ease;
}
.faq-item:hover { border-color: var(--border-hover); }
.faq-header {
  padding: 24px 28px; background: var(--bg-card);
  cursor: pointer; display: flex; align-items: center; justify-content: space-between;
  transition: background 0.3s ease; user-select: none;
}
.faq-header:hover { background: var(--bg-secondary); }
.faq-header.active { background: var(--gold-dim); }
.faq-title { font-size: 16px; font-weight: 600; color: var(--teal); }
.faq-toggle {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--gold-dim); display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-weight: 700; transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-header.active .faq-toggle { transform: rotate(180deg); }
.faq-content {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
  background: var(--bg-secondary);
}
.faq-content.active { max-height: 500px; }
.faq-text {
  padding: 24px 28px; font-size: 14px; color: var(--text-secondary);
  line-height: 1.8;
}
.faq-text a { color: var(--gold); text-decoration: underline; font-weight: 600; }
.faq-text a:hover { color: var(--gold-light); }

/* ═══════════════════════════════════════════════════════════════
   REFERENCE PAGE — Full reference grid with filters
   ═══════════════════════════════════════════════════════════════ */
.ref-page-section { position: relative; }
.ref-page-section + .ref-page-section { padding-top: 0; }
.ref-filters {
  display: flex; gap: 12px; flex-wrap: wrap;
  max-width: 1200px; margin: 0 auto 20px;
}
.ref-filter-btn {
  padding: 10px 24px; border-radius: 6px;
  border: 1.5px solid var(--border); background: transparent;
  color: var(--text-secondary); font-family: var(--font-main);
  font-size: 14px; font-weight: 600; cursor: pointer;
  transition: all 0.3s ease;
}
.ref-filter-btn:hover { border-color: var(--gold); color: var(--gold); }
.ref-filter-btn.active {
  background: var(--gold); color: #fff; border-color: var(--gold);
}
.ref-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.ref-card {
  border-radius: 12px; overflow: hidden;
  background: var(--bg-card); border: 1px solid var(--border);
  opacity: 0; transform: translateY(40px);
  transition: all 0.4s ease; cursor: pointer;
}
.ref-card:hover { border-color: var(--border-hover); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.ref-card.hidden { display: none; }
.ref-card-image {
  height: 240px; background: var(--bg-secondary);
  overflow: hidden; position: relative;
}
.ref-card-image img {
  width: 100% !important; height: 100% !important; object-fit: cover;
  position: absolute !important; inset: 0 !important; opacity: 0;
  transition: opacity 0.5s ease; max-width: none !important;
}
.ref-card-image img.active { opacity: 1; }
.ref-card-image img.is-drawing { object-fit: contain; background: #fff; padding: 8px; }
/* Hover progress bar */
.ref-card-progress {
  position: absolute; bottom: 0; left: 0; height: 3px;
  background: var(--gold); z-index: 3; width: 0;
  transition: width linear;
}
/* Image type badge */
.ref-card-badge {
  position: absolute; top: 12px; left: 12px; z-index: 3;
  padding: 3px 10px; border-radius: 4px;
  font-family: var(--font-mono); font-size: 9px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  background: rgba(0,0,0,0.65); color: #fff;
  backdrop-filter: blur(4px); opacity: 0;
  transition: opacity 0.3s ease; pointer-events: none;
}
.ref-card:hover .ref-card-badge { opacity: 1; }
/* Slide counter */
.ref-card-counter {
  position: absolute; top: 12px; right: 12px; z-index: 3;
  padding: 3px 10px; border-radius: 4px;
  font-family: var(--font-mono); font-size: 10px; font-weight: 600;
  background: rgba(0,0,0,0.55); color: #fff;
  backdrop-filter: blur(4px); opacity: 0;
  transition: opacity 0.3s ease; pointer-events: none;
}
.ref-card:hover .ref-card-counter { opacity: 1; }
/* Mini dots */
.ref-card-dots {
  position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 5px; z-index: 3; opacity: 0;
  transition: opacity 0.3s ease;
}
.ref-card:hover .ref-card-dots { opacity: 1; }
.ref-card-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.45); transition: all 0.25s ease;
  border: none; padding: 0; cursor: pointer;
}
.ref-card-dot.active { background: var(--gold); transform: scale(1.3); }
.ref-card-dot.is-drawing { border-radius: 2px; width: 8px; height: 6px; }
.ref-card-image .ref-card-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--gold-dim), var(--bg-secondary));
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--text-muted); font-style: italic;
}
.ref-card-body { padding: 20px 24px 24px; }
.ref-card-category {
  display: inline-block; padding: 4px 12px; border-radius: 4px;
  background: var(--gold-dim); font-family: var(--font-mono);
  font-size: 10px; font-weight: 600; color: var(--gold);
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px;
}
.ref-card-title { font-size: 18px; font-weight: 700; color: var(--teal); margin-bottom: 6px; }
.ref-card-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 10px; }
.ref-card-meta { font-size: 12px; color: var(--text-muted); display: flex; align-items: center; gap: 8px; }
.ref-card-drawings-count {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 2px 8px; border-radius: 3px;
  background: var(--gold-dim); color: var(--gold);
  font-family: var(--font-mono); font-size: 10px; font-weight: 600;
}

/* Reference Modal */
.ref-modal-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all 0.3s ease;
  padding: 24px;
}
.ref-modal-overlay.active { opacity: 1; visibility: visible; }
.ref-modal {
  background: #fff; border-radius: 16px; max-width: 900px; width: 100%;
  max-height: 90vh; overflow-y: auto; position: relative;
  box-shadow: 0 24px 64px rgba(0,0,0,0.25);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s ease;
}
.ref-modal-overlay.active .ref-modal { transform: translateY(0) scale(1); }
.ref-modal-close {
  position: absolute; top: 16px; right: 16px; z-index: 10;
  width: 40px; height: 40px; border-radius: 50%;
  border: none; background: rgba(255,255,255,0.9);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--teal); transition: all 0.2s ease;
}
.ref-modal-close:hover { background: var(--gold); color: #fff; }
.ref-modal-gallery {
  position: relative; width: 100%; height: 450px;
  border-radius: 16px 16px 0 0; overflow: hidden; background: #0a0a0a;
}
.ref-modal-gallery img {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0; opacity: 0; transition: opacity 0.4s ease;
}
.ref-modal-gallery img.active { opacity: 1; }
.ref-modal-gallery img.is-drawing { object-fit: contain; background: #fff; padding: 12px; }
/* Image type tabs in modal */
.ref-modal-tabs {
  position: absolute; top: 16px; left: 16px; z-index: 6;
  display: flex; gap: 6px;
}
.ref-modal-tab {
  padding: 5px 14px; border-radius: 6px; border: none;
  font-family: var(--font-mono); font-size: 10px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase; cursor: pointer;
  background: rgba(0,0,0,0.5); color: rgba(255,255,255,0.7);
  backdrop-filter: blur(6px); transition: all 0.2s ease;
}
.ref-modal-tab:hover { background: rgba(0,0,0,0.7); color: #fff; }
.ref-modal-tab.active { background: var(--gold); color: #fff; }
/* Image label badge in modal */
.ref-modal-img-label {
  position: absolute; bottom: 50px; left: 16px; z-index: 6;
  padding: 4px 12px; border-radius: 4px;
  font-family: var(--font-mono); font-size: 10px; font-weight: 600;
  letter-spacing: 1px; background: rgba(0,0,0,0.6); color: #fff;
  backdrop-filter: blur(4px); transition: opacity 0.3s ease;
}
.ref-modal-gallery-nav {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px; z-index: 5;
}
.ref-modal-gallery-dot {
  width: 10px; height: 10px; border-radius: 50%; border: 2px solid #fff;
  background: transparent; cursor: pointer; transition: all 0.2s ease;
  box-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.ref-modal-gallery-dot.active { background: var(--gold); border-color: var(--gold); }
.ref-modal-gallery-dot.is-drawing { border-radius: 3px; width: 12px; }
.ref-modal-gallery-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 44px; height: 44px; border-radius: 50%;
  border: none; background: rgba(255,255,255,0.9);
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--teal); transition: all 0.2s ease;
}
.ref-modal-gallery-arrow:hover { background: var(--gold); color: #fff; }
.ref-modal-gallery-arrow.prev { left: 16px; }
.ref-modal-gallery-arrow.next { right: 16px; }
.ref-modal-body { padding: 32px; }
.ref-modal-category {
  display: inline-block; padding: 4px 12px; border-radius: 4px;
  background: var(--gold-dim); font-family: var(--font-mono);
  font-size: 10px; font-weight: 600; color: var(--gold);
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px;
}
.ref-modal-title { font-size: 24px; font-weight: 800; color: var(--teal); margin-bottom: 8px; }
.ref-modal-meta { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }
.ref-modal-desc {
  font-size: 15px; line-height: 1.8; color: var(--text-secondary);
}
.ref-modal-specs {
  margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--border);
  display: flex; flex-wrap: wrap; gap: 16px;
}
.ref-modal-spec {
  display: flex; flex-direction: column; gap: 2px;
}
.ref-modal-spec-label {
  font-family: var(--font-mono); font-size: 9px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted);
}
.ref-modal-spec-value {
  font-size: 14px; font-weight: 600; color: var(--teal);
}
@media (max-width: 768px) {
  .ref-modal-gallery { height: 280px; }
  .ref-modal-body { padding: 24px 20px; }
  .ref-modal-title { font-size: 20px; }
  .ref-modal { border-radius: 12px; }
  .ref-modal-gallery { border-radius: 12px 12px 0 0; }
  .ref-card-image { height: 200px; }
  .ref-modal-tabs { top: 10px; left: 10px; }
  .ref-modal-tab { font-size: 9px; padding: 4px 10px; }
}

/* ═══════════════════════════════════════════════════════════════
   BLOG PAGE — Blog listing & article
   ═══════════════════════════════════════════════════════════════ */
.blog-section { position: relative; }
.blog-categories {
  display: flex; gap: 12px; flex-wrap: wrap;
  max-width: 1200px; margin: 0 auto 48px;
}
.blog-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.blog-card {
  border-radius: 12px; overflow: hidden;
  background: var(--bg-card); border: 1px solid var(--border);
  transition: all 0.4s ease; cursor: pointer;
  text-decoration: none; color: inherit;
}
.blog-card:hover { border-color: var(--border-hover); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.blog-card-image {
  height: 200px; background: var(--bg-secondary);
  overflow: hidden;
}
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.blog-card-body { padding: 24px; }
.blog-card-category {
  display: inline-block; padding: 4px 12px; border-radius: 4px;
  background: var(--gold-dim); font-family: var(--font-mono);
  font-size: 10px; font-weight: 600; color: var(--gold);
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px;
}
.blog-card-title { font-size: 18px; font-weight: 700; color: var(--teal); margin-bottom: 8px; }
.blog-card-excerpt { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 12px; }
.blog-card-meta { font-size: 12px; color: var(--text-muted); }
.blog-card--soon {
  opacity: 0.5; cursor: default; pointer-events: none; position: relative;
}
.blog-card--soon::after {
  content: 'Připravujeme';
  position: absolute; top: 16px; right: 16px;
  background: var(--gold); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 4px;
  z-index: 2;
}

/* Blog — Skeleton loading */
.blog-card--skeleton { pointer-events: none; }
.blog-card--skeleton .skeleton-image {
  width: 100%; height: 100%; min-height: 180px;
  background: linear-gradient(90deg, rgba(0,0,0,0.06) 25%, rgba(0,0,0,0.03) 50%, rgba(0,0,0,0.06) 75%);
  background-size: 200% 100%;
  animation: skeletonShimmer 1.5s ease-in-out infinite;
  border-radius: 4px;
}
.blog-card--skeleton .skeleton-category {
  width: 80px; height: 14px; border-radius: 4px; margin-bottom: 12px;
  background: rgba(0,0,0,0.06);
}
.blog-card--skeleton .skeleton-title {
  width: 90%; height: 20px; border-radius: 4px; margin-bottom: 10px;
  background: rgba(0,0,0,0.08);
}
.blog-card--skeleton .skeleton-text {
  width: 100%; height: 14px; border-radius: 4px; margin-bottom: 8px;
  background: rgba(0,0,0,0.04);
}
.blog-card--skeleton .skeleton-meta {
  width: 50%; height: 12px; border-radius: 4px; margin-top: 8px;
  background: rgba(0,0,0,0.04);
}
@keyframes skeletonShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Blog — Empty & Error states */
.blog-empty, .blog-error {
  grid-column: 1 / -1; text-align: center; padding: 64px 24px;
  font-size: 16px; color: var(--text-muted); line-height: 1.6;
}
.blog-error { color: #c0392b; }

/* Blog — Homepage preview footer */
.blog-preview-footer {
  grid-column: 1 / -1; text-align: center; padding-top: 32px;
}
.blog-view-all {
  display: inline-block; font-size: 15px; font-weight: 600;
  color: var(--gold); text-decoration: none;
  padding: 12px 32px; border: 2px solid var(--gold); border-radius: 8px;
  transition: all 0.3s ease;
}
.blog-view-all:hover {
  background: var(--gold); color: #fff;
}

/* Blog — Rendered article blocks (from Editor.js) */
.article-content .blog-heading { color: var(--teal); line-height: 1.3; margin: 40px 0 16px; }
.article-content .blog-heading--2 { font-size: 28px; font-weight: 800; letter-spacing: -0.5px; }
.article-content .blog-heading--3 { font-size: 22px; font-weight: 700; }
.article-content .blog-paragraph { font-size: 17px; line-height: 1.85; color: #333; margin-bottom: 20px; }
.article-content .blog-paragraph mark { background: rgba(196,152,88,0.2); padding: 2px 4px; border-radius: 3px; }
.article-content .blog-paragraph a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

/* Blog images */
.article-content .blog-image { margin: 32px 0; text-align: center; }
.article-content .blog-image img {
  max-width: 100%; height: auto; border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08); transition: transform 0.3s;
}
.article-content .blog-image img:hover { transform: scale(1.01); }
.article-content .blog-image--border img { border: 2px solid var(--border); }
.article-content .blog-image--stretched { margin-left: -48px; margin-right: -48px; }
.article-content .blog-image--stretched img { width: 100%; border-radius: 0; }
.article-content .blog-image--bg { background: var(--bg-secondary); padding: 24px; border-radius: 16px; }
.article-content .blog-image__caption {
  font-size: 13px; color: var(--text-muted, #999); margin-top: 10px; font-style: italic;
}

/* Blog quote */
.article-content .blog-quote {
  margin: 36px 0; padding: 24px 28px; border-left: 5px solid var(--gold);
  background: linear-gradient(135deg, rgba(196,152,88,0.06) 0%, rgba(34,52,59,0.02) 100%);
  border-radius: 0 12px 12px 0;
}
.article-content .blog-quote p { font-size: 19px; font-weight: 600; color: var(--teal); line-height: 1.55; margin: 0; }
.article-content .blog-quote__author { display: block; font-size: 14px; color: var(--gold); margin-top: 10px; font-style: normal; font-weight: 600; }

/* Blog list */
.article-content .blog-list { margin: 20px 0; padding-left: 24px; }
.article-content .blog-list li { font-size: 17px; line-height: 1.85; color: #333; margin-bottom: 8px; }
.article-content .blog-list li::marker { color: var(--gold); }

/* Blog delimiter */
.article-content .blog-delimiter { text-align: center; margin: 40px 0; }
.article-content .blog-delimiter span { font-size: 24px; letter-spacing: 16px; color: var(--gold); }

/* Blog table */
.article-content .blog-table-wrap { margin: 28px 0; overflow-x: auto; }
.article-content .blog-table {
  width: 100%; border-collapse: collapse; font-size: 15px; border-radius: 8px; overflow: hidden;
}
.article-content .blog-table th {
  background: var(--teal); color: #fff; padding: 12px 16px; text-align: left; font-weight: 700; font-size: 13px;
}
.article-content .blog-table td { padding: 12px 16px; border-bottom: 1px solid var(--border, #eee); }
.article-content .blog-table tr:nth-child(even) td { background: rgba(0,0,0,0.02); }
.article-content .blog-table tr:hover td { background: rgba(196,152,88,0.06); }

/* Gallery */
.article-content .blog-gallery { margin: 32px 0; }
.article-content .blog-gallery__grid { display: grid; gap: 10px; }
.article-content .blog-gallery__grid--2 { grid-template-columns: 1fr 1fr; }
.article-content .blog-gallery__grid--3 { grid-template-columns: 1fr 1fr 1fr; }
.article-content .blog-gallery__grid--4 { grid-template-columns: 1fr 1fr 1fr 1fr; }
.article-content .blog-gallery__item {
  border-radius: 10px; overflow: hidden; aspect-ratio: 4/3;
  cursor: pointer; position: relative;
}
.article-content .blog-gallery__item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.3s ease;
}
.article-content .blog-gallery__item:hover img { transform: scale(1.05); }
.article-content .blog-gallery__caption {
  text-align: center; font-size: 14px; color: #888; margin-top: 10px; font-style: italic;
}

/* Blog Lightbox */
.blog-lightbox-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.92);
  z-index: 20000; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.blog-lightbox-overlay.open { opacity: 1; pointer-events: auto; }
.blog-lightbox-overlay img {
  max-width: 90vw; max-height: 85vh; border-radius: 8px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4); object-fit: contain;
}
.blog-lightbox-close {
  position: absolute; top: 20px; right: 24px; width: 44px; height: 44px;
  border-radius: 50%; background: rgba(255,255,255,0.12); color: #fff;
  border: none; font-size: 24px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: background 0.2s;
}
.blog-lightbox-close:hover { background: rgba(255,255,255,0.25); }
.blog-lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.12); color: #fff; border: none;
  font-size: 22px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: background 0.2s;
}
.blog-lightbox-nav:hover { background: rgba(255,255,255,0.25); }
.blog-lightbox-prev { left: 20px; }
.blog-lightbox-next { right: 20px; }
.blog-lightbox-counter {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.7); font-size: 14px; font-weight: 600;
}

@media (max-width: 768px) {
  .article-content .blog-gallery__grid--3 { grid-template-columns: 1fr 1fr; }
  .article-content .blog-gallery__grid--4 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .article-content .blog-image--stretched { margin-left: -24px; margin-right: -24px; }
  .article-content .blog-heading--2 { font-size: 24px; }
  .article-content .blog-heading--3 { font-size: 19px; }
  .article-content .blog-paragraph { font-size: 16px; }
  .article-content .blog-quote p { font-size: 17px; }
}

/* Blog Article */
.article-header {
  padding: 180px 48px 80px; text-align: center;
  position: relative; overflow: hidden;
}
.article-header .hero-overlay {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.80) 50%, rgba(255,255,255,0.92) 100%),
    linear-gradient(180deg, transparent 40%, rgba(247,248,250,0.95) 100%);
}
.article-meta {
  display: flex; gap: 24px; justify-content: center; align-items: center;
  margin-bottom: 24px; font-size: 13px; color: var(--text-muted);
}
.article-meta-item { display: flex; align-items: center; gap: 6px; }
.article-title {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 800; line-height: 1.15; letter-spacing: -1.5px;
  color: var(--teal); max-width: 800px; margin: 0 auto;
}
/* Article gallery */
.article-gallery {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  margin: 32px 0;
}
.article-gallery img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 10px;
  display: block;
}
.article-gallery-wide { grid-column: 1 / -1; }
.article-gallery-wide img { aspect-ratio: 16/9; }
@media (max-width: 768px) {
  .article-gallery { grid-template-columns: 1fr; }
}

.article-content {
  max-width: 760px; margin: 0 auto;
  padding: 60px 48px 120px;
}
.article-content h2 {
  font-size: 28px; font-weight: 800; color: var(--teal);
  margin: 48px 0 20px; letter-spacing: -0.5px;
}
.article-content h3 {
  font-size: 20px; font-weight: 700; color: var(--teal);
  margin: 36px 0 16px;
}
.article-content p {
  font-size: 16px; color: var(--text-secondary); line-height: 1.85;
  margin-bottom: 20px;
}
.article-content ul, .article-content ol {
  margin: 16px 0 24px 24px; font-size: 16px;
  color: var(--text-secondary); line-height: 1.85;
}
.article-content li { margin-bottom: 8px; }
.article-content a { color: var(--gold); font-weight: 600; text-decoration: underline; }
.article-content a:hover { color: var(--gold-light); }
.article-content blockquote {
  margin: 32px 0; padding: 24px 28px; border-radius: 10px;
  background: var(--gold-dim); border-left: 3px solid var(--gold);
  font-size: 15px; color: var(--text-secondary); font-style: italic;
}
.article-content table {
  width: 100%; border-collapse: collapse; margin: 24px 0;
  font-size: 14px;
}
.article-content th, .article-content td {
  padding: 14px 18px; text-align: left;
  border-bottom: 1px solid var(--border);
}
.article-content th {
  font-weight: 700; color: var(--teal); background: var(--bg-secondary);
}
.article-content td { color: var(--text-secondary); }

/* ═══════════════════════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════════════════════ */
.contact-page-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.contact-details-card {
  padding: 40px; border-radius: 12px;
  background: var(--bg-card); border: 1px solid var(--border);
}
.contact-detail-item { margin-bottom: 32px; }
.contact-detail-item:last-child { margin-bottom: 0; }
.contact-detail-label {
  font-size: 11px; font-weight: 600; color: var(--text-muted);
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px;
}
.contact-detail-value {
  font-size: 18px; font-weight: 600; color: var(--teal);
}
.contact-detail-value a { color: var(--teal); transition: color 0.3s; }
.contact-detail-value a:hover { color: var(--gold); }
.contact-map {
  margin-top: 32px; border-radius: 12px; overflow: hidden;
  height: 250px; background: var(--bg-secondary);
}
.contact-map iframe { width: 100%; height: 100%; border: 0; }

/* Contact form on light bg */
.contact-form-light .form-label { color: var(--text-muted); }
.contact-form-light .form-input,
.contact-form-light .form-select,
.contact-form-light .form-textarea {
  border-color: var(--border);
  background: var(--bg-secondary); color: var(--text-primary);
}
.contact-form-light .form-input::placeholder,
.contact-form-light .form-textarea::placeholder { color: var(--text-muted); }
.contact-form-light .form-input:focus,
.contact-form-light .form-select:focus,
.contact-form-light .form-textarea:focus {
  border-color: var(--gold); background: var(--bg-primary);
  box-shadow: 0 0 0 3px rgba(196,152,88,0.08);
}
.contact-form-light .form-select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='rgba(90,109,126,0.5)' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.contact-form-light .form-select option { background: #fff; color: var(--text-primary); }
.contact-form-light .form-note { color: var(--text-muted); }
.contact-form-light .form-success h3 { color: var(--teal); }
.contact-form-light .form-success p { color: var(--text-secondary); }

/* ═══════════════════════════════════════════════════════════════
   LEGAL PAGES — cookies, GDPR
   ═══════════════════════════════════════════════════════════════ */
.legal-content {
  max-width: 760px; margin: 0 auto;
  padding: 60px 48px 120px;
}
.legal-content h1 {
  font-size: 36px; font-weight: 800; color: var(--teal);
  margin-bottom: 16px; letter-spacing: -1px;
}
.legal-content .legal-updated {
  font-size: 13px; color: var(--text-muted); margin-bottom: 48px;
}
.legal-content h2 {
  font-size: 22px; font-weight: 700; color: var(--teal);
  margin: 40px 0 16px;
}
.legal-content h3 {
  font-size: 18px; font-weight: 700; color: var(--teal);
  margin: 28px 0 12px;
}
.legal-content p {
  font-size: 15px; color: var(--text-secondary); line-height: 1.8;
  margin-bottom: 16px;
}
.legal-content ul {
  margin: 12px 0 20px 24px;
  font-size: 15px; color: var(--text-secondary); line-height: 1.8;
}
.legal-content li { margin-bottom: 6px; }
.legal-content a { color: var(--gold); font-weight: 600; text-decoration: underline; }
.legal-content a:hover { color: var(--gold-light); }
.legal-content table {
  width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 14px;
}
.legal-content th, .legal-content td {
  padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--border);
}
.legal-content th { font-weight: 700; color: var(--teal); background: var(--bg-secondary); }
.legal-content td { color: var(--text-secondary); }

/* Page header for subpages (non-hero) */
.page-header {
  padding: 160px 48px 80px; text-align: center;
  position: relative; overflow: hidden;
}
.page-header .hero-overlay {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.80) 50%, rgba(255,255,255,0.92) 100%),
    linear-gradient(180deg, transparent 40%, rgba(247,248,250,0.95) 100%);
}
.page-header-content { position: relative; z-index: 2; }
.page-header-label {
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  color: var(--gold); letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 14px;
}
.page-header-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800; line-height: 1.12; letter-spacing: -1.5px;
  color: var(--teal); margin-bottom: 16px;
}
.page-header-desc {
  font-size: 17px; color: var(--text-secondary); line-height: 1.7;
  max-width: 600px; margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .section { padding: 80px 32px; }
  .story-grid { grid-template-columns: 1fr; gap: 48px; }
  .audience-section { margin-top: -100px; padding: 0 32px 60px; }
  .audience-grid { grid-template-columns: 1fr 1fr; }
  .audience-card { min-height: 280px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-section { padding: 80px 32px; }
  .review-card { width: 300px; }
  .reviews-carousel-3d { height: 400px; }
  .reviews-header, .reviews-nav, .reviews-badge { padding-left: 32px; padding-right: 32px; }
  .story-section { padding: 80px 32px; }
  .scenario-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .what-content { grid-template-columns: 1fr; gap: 48px; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .vs-box { margin-top: 32px; }
  .vs-row { grid-template-columns: 1fr; }
  .vs-header { display: none; }
  .vs-aspect { background: var(--bg-secondary); font-size: 12px; text-transform: uppercase; letter-spacing: 1px; padding: 8px 14px; }
  .vs-bad, .vs-good { border-left: none; }
  .vs-bad::before { content: "Svépomocí: "; font-weight: 700; color: var(--text-muted); font-size: 11px; text-transform: uppercase; letter-spacing: 1px; }
  .vs-good::before { content: "HHpasport: "; font-weight: 700; color: var(--gold); font-size: 11px; text-transform: uppercase; letter-spacing: 1px; }
  .comparison-box { margin-top: 32px; }
  .comparison-item { grid-template-columns: 1fr; gap: 0; }
  .comparison-item:first-child { display: none; }
  .comparison-col { padding: 12px 20px; }
  .comparison-col::before {
    content: attr(data-label);
    display: block; font-size: 11px; font-weight: 700; color: var(--text-muted);
    text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px;
  }
  .process-grid { padding-left: 72px; }
  .process-grid::before { left: 23px; }
  .process-number { left: -72px; width: 48px; height: 48px; font-size: 22px; }
  .process-step { padding-bottom: 40px; }
  .references-container { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .deliverables-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .ref-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .contact-page-grid { grid-template-columns: 1fr; gap: 48px; }
  .article-content { padding: 48px 32px 80px; }
  .legal-content { padding: 48px 32px 80px; }
}
@media (max-width: 768px) {
  .nav { padding: 12px 20px; }
  .nav-links { display: none; }
  .nav-burger { display: block; }
  .nav-cta { display: none; }
  .hero-content { padding: 0 20px; }
  .section { padding: 64px 20px; }
  .audience-section { margin-top: -80px; padding: 0 20px 48px; }
  .audience-grid { grid-template-columns: 1fr; }
  .audience-card { min-height: 240px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .review-card { width: 280px; }
  .reviews-carousel-3d { height: 380px; }
  .reviews-carousel-3d::before, .reviews-carousel-3d::after { width: 8%; }
  .reviews-header, .reviews-nav, .reviews-badge { padding-left: 20px; padding-right: 20px; }
  .footer { padding: 24px 20px; flex-direction: column; text-align: center; }
  .footer-links, .footer-right { justify-content: center; }
  .contact-info-bar { padding: 32px 20px; gap: 24px; flex-direction: column; align-items: flex-start; }
  .cta-section { padding: 80px 20px 100px; }
  .contact-form { max-width: 100%; }
  .form-row-half { grid-template-columns: 1fr; }
  .story-section { padding: 64px 20px; }
  .story-grid { grid-template-columns: 1fr; gap: 32px; }
  .story-values { grid-template-columns: 1fr; }
  .scenario-grid { grid-template-columns: 1fr; gap: 16px; }
  .what-content { grid-template-columns: 1fr; gap: 32px; }
  .why-grid { grid-template-columns: 1fr; gap: 32px; }
  .deliverables-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .references-container { grid-template-columns: 1fr; }
  .ref-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .page-header { padding: 120px 20px 60px; }
  .article-header { padding: 140px 20px 60px; }
  .article-content { padding: 32px 20px 80px; }
  .legal-content { padding: 32px 20px 80px; }
}

/* Lazy loading */
img[loading="lazy"] { content-visibility: auto; }

/* ═══════════════════════════════════════
   Cookie Consent Banner
   ═══════════════════════════════════════ */
#cookieBanner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 99999;
  background: var(--bg-card); border-top: 1px solid var(--border);
  box-shadow: 0 -4px 24px rgba(0,0,0,.25);
  padding: 20px 24px;
  opacity: 0; transform: translateY(20px);
  transition: opacity .3s ease, transform .3s ease;
}
.cb-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.cb-text { flex: 1; min-width: 280px; }
.cb-text strong { display: block; font-size: 15px; color: var(--text-primary); margin-bottom: 4px; }
.cb-text p { font-size: 13px; color: var(--text-secondary); margin: 0; line-height: 1.5; }
.cb-text a { color: var(--gold); text-decoration: underline; }
.cb-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.cb-btn {
  padding: 10px 18px; border: none; border-radius: 6px; cursor: pointer;
  font-size: 13px; font-weight: 600; font-family: inherit;
  transition: opacity .2s, transform .1s;
}
.cb-btn:hover { opacity: .85; }
.cb-btn:active { transform: scale(.97); }
.cb-btn--accept { background: var(--teal); color: #fff; }
.cb-btn--analytics { background: var(--bg-section); color: var(--text-primary); border: 1px solid var(--border); }
.cb-btn--reject { background: transparent; color: var(--text-muted); border: 1px solid var(--border); }
@media (max-width: 640px) {
  .cb-inner { flex-direction: column; gap: 16px; }
  .cb-actions { width: 100%; }
  .cb-btn { flex: 1; }
}
