/* EZ-PROFINAL SK — Corporate B2B styles
   Palette: graphite/dark-navy #0F1A2E + steel-blue #2563EB / cyan #06B6D4
   Accent CTA: signal-red #DC2626
*/

:root {
  --bg: #0F1A2E;
  --bg-2: #142340;
  --bg-3: #1B2D52;
  --line: #233764;
  --line-2: #2C4274;
  --text: #E6ECF5;
  --text-2: #A8B5CC;
  --text-3: #7C8AA6;
  --accent: #6366f1;
  --accent-2: #818cf8;
  --cta: #DC2626;
  --cta-hover: #B91C1C;
  --warn: #EA580C;
  --ok: #10B981;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip; /* nie hidden — hidden rozbije position:sticky hlavičky */
}

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--text);
}

h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }

a { color: var(--accent-2); text-decoration: none; }
a:hover { color: var(--text); }

.mono { font-family: 'JetBrains Mono', 'Courier New', monospace; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 26, 46, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text);
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  display: grid;
  place-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}

.nav-links {
  display: none;
  gap: 0.25rem;
  align-items: center;
}

.nav-links a, .nav-links button.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.55rem 0.85rem;
  border-radius: 6px;
  color: var(--text-2);
  font-size: 0.92rem;
  font-weight: 500;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.15s ease;
}

.nav-links a:hover, .nav-links button.nav-trigger:hover,
.nav-links a.active {
  color: var(--text);
  background: var(--bg-2);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-panel {
  display: none;
  position: absolute;
  top: calc(100% + 0.4rem);
  left: 0;
  min-width: 260px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.5rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown.open .nav-dropdown-panel {
  display: block;
}

.nav-dropdown-panel a {
  display: block;
  padding: 0.6rem 0.75rem;
  border-radius: 6px;
  font-size: 0.92rem;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1rem;
  background: var(--cta);
  color: #fff !important;
  font-weight: 600;
  border-radius: 6px;
  font-size: 0.9rem;
  margin-left: 0.5rem;
}

.nav-cta:hover {
  background: var(--cta-hover);
  color: #fff !important;
}

.nav-toggle {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  cursor: pointer;
}

.nav-toggle svg { width: 20px; height: 20px; }

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  padding: 0.75rem 0 1rem;
}

.mobile-nav.open { display: block; }

.mobile-nav a, .mobile-nav .mobile-group-label {
  display: block;
  padding: 0.65rem 0.5rem;
  color: var(--text-2);
  font-size: 0.95rem;
  border-radius: 6px;
}

.mobile-nav a:hover { color: var(--text); background: var(--bg-2); }
.mobile-nav .mobile-group-label {
  color: var(--text-3);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding-top: 1rem;
  font-weight: 600;
}

@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(3rem, 6vw, 5rem);
  background:
    radial-gradient(ellipse 80% 60% at 90% 0%, rgba(37, 99, 235, 0.18), transparent 60%),
    radial-gradient(ellipse 60% 60% at 0% 100%, rgba(6, 182, 212, 0.12), transparent 60%),
    var(--bg);
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1.15fr 1fr;
    gap: 3.5rem;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.75rem;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(37, 99, 235, 0.35);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-2);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 8px var(--accent-2);
}

.hero h1 {
  margin: 0 0 1.25rem;
}

.hero-sub {
  color: var(--text-2);
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  margin-bottom: 2rem;
  max-width: 56ch;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.4rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.15s ease;
  font-family: inherit;
}

.btn-primary {
  background: var(--cta);
  color: #fff !important;
}

.btn-primary:hover {
  background: var(--cta-hover);
  color: #fff !important;
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--text) !important;
  border-color: var(--line-2);
}

.btn-secondary:hover {
  background: var(--bg-2);
  border-color: var(--accent-2);
  color: var(--text) !important;
}

.btn-ghost {
  background: var(--bg-2);
  color: var(--text) !important;
  border-color: var(--line);
}

.btn-ghost:hover {
  background: var(--bg-3);
  color: var(--text) !important;
}

/* ============ HERO VISUAL ============ */
.hero-visual {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-2);
  aspect-ratio: 4 / 3;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15, 26, 46, 0.85) 100%);
  pointer-events: none;
}

.hero-visual-tag {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.55rem 0.9rem;
  background: rgba(15, 26, 46, 0.85);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  color: var(--text-2);
  z-index: 1;
  backdrop-filter: blur(6px);
}

.hero-visual-tag b { color: var(--accent-2); }

/* ============ STATS BAR ============ */
.stats {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
  padding: 1.75rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

.stat {
  text-align: left;
}

.stat-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}

.stat-num .unit {
  font-size: 0.65em;
  color: var(--accent-2);
  font-weight: 500;
  margin-left: 0.15em;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-3);
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ============ SECTIONS ============ */
section {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.section-head {
  margin-bottom: 2.5rem;
  max-width: 720px;
}

.section-head .eyebrow { margin-bottom: 0.75rem; }

.section-head p {
  color: var(--text-2);
  margin: 0.75rem 0 0;
  font-size: 1.05rem;
}

.divider {
  border-top: 1px solid var(--line);
}

/* ============ CARDS / SERVICES ============ */
.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cards { grid-template-columns: repeat(3, 1fr); } }

.card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: all 0.18s ease;
  color: var(--text);
}

.card:hover {
  border-color: var(--accent-2);
  background: var(--bg-3);
  transform: translateY(-2px);
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(37, 99, 235, 0.15);
  display: grid;
  place-items: center;
  color: var(--accent-2);
  margin-bottom: 0.25rem;
}

.card-icon svg { width: 22px; height: 22px; }

.card h3 { margin: 0; font-size: 1.1rem; }

.card p {
  margin: 0;
  color: var(--text-2);
  font-size: 0.93rem;
  line-height: 1.55;
}

.card-link {
  margin-top: auto;
  padding-top: 0.5rem;
  color: var(--accent-2);
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.card:hover .card-link { color: var(--text); }

/* ============ FEATURE BLOCK (alt rows) ============ */
.feature-rows { display: flex; flex-direction: column; gap: 3rem; }

.feature-row {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .feature-row { grid-template-columns: 1fr 1fr; gap: 3.5rem; }
  .feature-row.reverse > div:first-child { order: 2; }
}

.feature-img {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
}

.feature-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

.feature-row h2 { margin: 0 0 1rem; }
.feature-row p { color: var(--text-2); margin: 0 0 1rem; }

.bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.bullets li {
  position: relative;
  padding-left: 1.7rem;
  color: var(--text-2);
  font-size: 0.95rem;
}

.bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(6, 182, 212, 0.15);
  border: 1px solid var(--accent-2);
}

.bullets li::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 0.85rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-2);
}

/* ============ BRAND STRIP ============ */
.brands {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 2rem 0;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: center;
}

@media (min-width: 768px) { .brands-grid { grid-template-columns: repeat(6, 1fr); } }

.brand-chip {
  display: grid;
  place-items: center;
  height: 56px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text-2);
  background: var(--bg);
  font-size: 0.95rem;
  text-align: center;
  padding: 0 0.5rem;
}

.brand-chip:hover { color: var(--accent-2); border-color: var(--accent-2); }

/* ============ USP STRIP ============ */
.usp {
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(6, 182, 212, 0.05)),
    var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 2rem;
}

.usp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) { .usp-grid { grid-template-columns: repeat(2, 1fr); } }

.usp-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.usp-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 8px;
  background: var(--bg);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--accent-2);
}

.usp-icon svg { width: 18px; height: 18px; }

.usp-item h4 { margin: 0 0 0.25rem; font-size: 1rem; }
.usp-item p { margin: 0; color: var(--text-2); font-size: 0.92rem; }

/* ============ CTA BLOCK ============ */
.cta-block {
  background: linear-gradient(135deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: clamp(2rem, 4vw, 3rem);
  text-align: center;
}

.cta-block h2 { margin: 0 0 0.75rem; }
.cta-block p { color: var(--text-2); margin: 0 0 1.75rem; max-width: 56ch; margin-left: auto; margin-right: auto; }

.cta-row { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }

/* ============ FOOTER ============ */
.site-footer {
  border-top: 1px solid var(--line);
  background: #0A1322;
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }

.footer-col h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-3);
  margin: 0 0 0.85rem;
  font-weight: 600;
}

.footer-col a, .footer-col p {
  display: block;
  color: var(--text-2);
  font-size: 0.9rem;
  margin: 0 0 0.5rem;
  text-decoration: none;
}

.footer-col a:hover { color: var(--text); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--text-3);
  font-size: 0.82rem;
}

.footer-bottom .legal { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.footer-bottom .legal a { color: var(--text-3); }
.footer-bottom .legal a:hover { color: var(--text); }

/* ============ GALLERY ============ */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 640px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }

.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid var(--line);
  cursor: pointer;
  background: var(--bg-2);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img { transform: scale(1.04); }

.gallery-item-label {
  position: absolute;
  left: 0.7rem;
  bottom: 0.7rem;
  padding: 0.3rem 0.65rem;
  background: rgba(15, 26, 46, 0.85);
  border-radius: 6px;
  font-size: 0.78rem;
  color: var(--text);
  backdrop-filter: blur(4px);
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(5, 10, 22, 0.94);
  z-index: 100;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  cursor: zoom-out;
}

.lightbox.open { display: flex; }
.lightbox img { max-width: 100%; max-height: 92vh; border-radius: 10px; }
.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--bg-2);
  border: 1px solid var(--line);
  width: 44px;
  height: 44px;
  border-radius: 8px;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ============ CONTACT / FORM ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1.1fr; } }

.contact-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.contact-row {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  margin-bottom: 1.1rem;
}

.contact-row:last-child { margin-bottom: 0; }

.contact-row .icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--accent-2);
}

.contact-row .icon svg { width: 18px; height: 18px; }

.contact-row .label {
  font-size: 0.78rem;
  text-transform: uppercase;
  color: var(--text-3);
  letter-spacing: 0.06em;
  margin-bottom: 0.15rem;
}

.contact-row .value {
  color: var(--text);
  font-size: 0.98rem;
  word-break: break-word;
}

.contact-row .value a { color: var(--text); }
.contact-row .value a:hover { color: var(--accent-2); }

form.contact-form {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.75rem;
}

.field { margin-bottom: 1.1rem; }

.field label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-2);
  margin-bottom: 0.4rem;
  font-weight: 500;
}

.field input, .field select, .field textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  font-family: inherit;
  font-size: 1rem; /* 16 px — menej by iPhone pri ťuknutí priblížil */
  transition: border-color 0.15s;
}

.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent-2);
}

.field textarea { min-height: 120px; resize: vertical; }

.form-row { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }

.form-note {
  font-size: 0.82rem;
  color: var(--text-3);
  margin-top: 0.5rem;
}

/* ============ MAP ============ */
.map-frame {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16 / 9;
  background: var(--bg-2);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(40%) brightness(0.85);
}

/* ============ ABOUT (O nás) ============ */
.about-grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1.4fr; } }

.about-photo {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  position: relative;
  background: var(--bg-2);
}

.about-photo img { width: 100%; height: 100%; object-fit: cover; }

.about-photo-tag {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: rgba(15, 26, 46, 0.92);
  padding: 0.5rem 0.8rem;
  border-radius: 6px;
  border: 1px solid var(--line);
}

.about-photo-tag b { display: block; color: var(--text); font-size: 1rem; }
.about-photo-tag span { color: var(--text-3); font-size: 0.82rem; }

/* ============ TIMELINE ============ */
.timeline {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--line);
}

.timeline li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1.5rem;
}

.timeline li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--accent-2);
}

.timeline .year {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  color: var(--accent-2);
  margin-bottom: 0.15rem;
}

.timeline .event {
  color: var(--text-2);
  font-size: 0.95rem;
}

.timeline .event b { color: var(--text); }

/* ============ COOKIE BANNER ============ */
.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 80;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: 12px;
  padding: 1.1rem 1.25rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  display: none;
  flex-direction: column;
  gap: 0.85rem;
}

.cookie-banner.show { display: flex; }

@media (min-width: 768px) {
  .cookie-banner {
    flex-direction: row;
    align-items: center;
    max-width: 720px;
    left: 50%;
    transform: translateX(-50%);
  }
}

.cookie-banner p {
  margin: 0;
  color: var(--text-2);
  font-size: 0.88rem;
  flex: 1;
}

.cookie-banner p a { color: var(--accent-2); }

.cookie-actions { display: flex; gap: 0.5rem; flex-shrink: 0; }

.cookie-actions button {
  padding: 0.55rem 1rem;
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text-2);
}

.cookie-actions .accept {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.cookie-actions .accept:hover { background: #1D4ED8; }
.cookie-actions button:hover { color: var(--text); border-color: var(--accent-2); }

/* ============ PRODUCT PAGE SUBHEADER ============ */
.page-header {
  padding: clamp(3rem, 6vw, 4.5rem) 0 clamp(2rem, 4vw, 3rem);
  background:
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(37, 99, 235, 0.15), transparent 60%),
    var(--bg);
  border-bottom: 1px solid var(--line);
}

.breadcrumbs {
  font-size: 0.85rem;
  color: var(--text-3);
  margin-bottom: 1rem;
  font-family: 'JetBrains Mono', monospace;
}

.breadcrumbs a { color: var(--text-3); }
.breadcrumbs a:hover { color: var(--text); }

.page-header p.lead {
  color: var(--text-2);
  font-size: 1.05rem;
  max-width: 64ch;
  margin: 1rem 0 0;
}

/* ============ SPECS TABLE ============ */
.specs {
  display: grid;
  gap: 0.6rem;
  margin: 1.5rem 0;
}

.spec-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0.75rem;
  padding: 0.6rem 0.85rem;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.88rem;
}

.spec-row .key { color: var(--text-3); min-width: 0; overflow-wrap: break-word; word-break: normal; hyphens: none; }
.spec-row .val { color: var(--text); font-family: 'JetBrains Mono', monospace; min-width: 0; overflow-wrap: break-word; word-break: normal; hyphens: none; font-size: 0.85rem; }

/* Ensure cards in 2-col mobile have minmax to prevent text-pushed overflow */
.cards { grid-template-columns: minmax(0, 1fr); }
@media (min-width: 640px) { .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .cards { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

/* ============ UTILITIES ============ */
.text-accent { color: var(--accent-2); }
.text-cta { color: var(--cta); }
.text-muted { color: var(--text-3); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* ============ SEO CONTENT (long-form below the fold) ============ */
.seo-content {
  padding-top: 0;
}

.seo-content .container { max-width: 960px; }

.seo-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 0.85rem;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
}

.seo-content h3 {
  margin-top: 1.75rem;
  margin-bottom: 0.6rem;
  font-size: clamp(1.1rem, 1.7vw, 1.25rem);
  color: var(--text);
}

.seo-content p {
  color: var(--text-2);
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.7;
}

.seo-content a {
  color: var(--accent-2);
  border-bottom: 1px solid rgba(6, 182, 212, 0.3);
}

.seo-content a:hover { color: var(--text); border-bottom-color: var(--accent-2); }

.seo-content ul, .seo-content ol {
  color: var(--text-2);
  padding-left: 1.4rem;
  margin: 0 0 1rem;
  line-height: 1.7;
}

.seo-content ul li, .seo-content ol li { margin-bottom: 0.4rem; }

.seo-content strong { color: var(--text); }

.seo-toc {
  margin: 1rem 0 2rem;
  padding: 1.1rem 1.3rem;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.seo-toc-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-3);
  font-family: 'JetBrains Mono', monospace;
  margin-bottom: 0.6rem;
}

.seo-toc ol {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.35rem;
}

@media (min-width: 640px) { .seo-toc ol { grid-template-columns: 1fr 1fr; } }

.seo-toc ol li { margin: 0; counter-increment: toc; }
.seo-toc ol li::before {
  content: counter(toc, decimal-leading-zero) ' ';
  color: var(--accent-2);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  margin-right: 0.35rem;
}
.seo-toc ol { counter-reset: toc; }
.seo-toc a { color: var(--text-2); border-bottom: 0; font-size: 0.92rem; }
.seo-toc a:hover { color: var(--accent-2); }

/* FAQ accordion */
.faq {
  margin: 1.5rem 0;
  display: grid;
  gap: 0.65rem;
}

.faq-item {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 1rem 1.2rem;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  list-style: none;
  font-size: 1rem;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-family: 'JetBrains Mono', monospace;
  color: var(--accent-2);
  font-size: 1.3rem;
  line-height: 1;
  transition: transform 0.2s;
  flex-shrink: 0;
}

.faq-item[open] summary::after { content: '−'; }

.faq-item .faq-body {
  padding: 0 1.2rem 1.1rem;
  color: var(--text-2);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item .faq-body p { margin: 0 0 0.7rem; }
.faq-item .faq-body p:last-child { margin: 0; }

/* Glossary table */
.glossary {
  display: grid;
  gap: 0.5rem;
  margin: 1.25rem 0;
}

.glossary dt {
  font-family: 'JetBrains Mono', monospace;
  color: var(--accent-2);
  font-weight: 600;
  margin-top: 0.6rem;
  font-size: 0.95rem;
}

.glossary dd {
  margin: 0.15rem 0 0.8rem;
  color: var(--text-2);
  font-size: 0.94rem;
  line-height: 1.65;
}

/* Comparison table */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0 1.5rem;
  font-size: 0.92rem;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  display: block;
  overflow-x: auto;
}

.compare-table table { width: 100%; min-width: 560px; border-collapse: collapse; }
.compare-table table, .compare-table thead, .compare-table tbody, .compare-table tr, .compare-table th, .compare-table td { display: revert; }

.compare-table th, .compare-table td {
  padding: 0.75rem 0.9rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.compare-table thead th {
  background: var(--bg-3);
  color: var(--text);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.compare-table tbody td:first-child {
  color: var(--text);
  font-weight: 500;
}

.compare-table tbody td { color: var(--text-2); }
.compare-table tbody tr:last-child td { border-bottom: 0; }

/* Use-case cards (small variant for SEO content) */
.usecase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
  margin: 1.25rem 0;
}

@media (min-width: 640px) { .usecase-grid { grid-template-columns: 1fr 1fr; } }

.usecase {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent-2);
  border-radius: 10px;
  padding: 1rem 1.15rem;
}

.usecase h4 {
  margin: 0 0 0.4rem;
  font-size: 0.98rem;
  color: var(--text);
}

.usecase p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.6;
}

.region-coverage {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin: 1.25rem 0;
}

@media (min-width: 768px) { .region-coverage { grid-template-columns: repeat(4, 1fr); } }

.region-coverage .region {
  padding: 0.9rem 1rem;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  text-align: center;
}

.region-coverage .region b {
  display: block;
  color: var(--text);
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.region-coverage .region span {
  color: var(--text-3);
  font-size: 0.82rem;
  font-family: 'JetBrains Mono', monospace;
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.001s !important;
    animation-duration: 0.001s !important;
  }
}

/* ============================================================
   ▼▼▼ V2 FUNNEL UPGRADE — CTA density + visual step-by-step ▼▼▼
   ============================================================ */

/* ---------- PROCESS CARDS (numbered step-by-step) ---------- */
.process {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
  margin: 1.75rem 0 1.5rem;
  position: relative;
}

@media (min-width: 768px) { .process { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; } }
@media (min-width: 1024px) { .process { grid-template-columns: repeat(3, 1fr); gap: 1.4rem; } }

.process-step {
  position: relative;
  padding: 1.4rem 1.3rem 1.3rem;
  background: linear-gradient(180deg, var(--bg-2), var(--bg));
  border: 1px solid var(--line);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.process-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.process-step:hover {
  border-color: var(--accent-2);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(6, 182, 212, 0.08);
}

.process-step:hover::before { opacity: 1; }

.process-step-num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 3.4rem;
  line-height: 0.9;
  color: var(--accent-2);
  letter-spacing: -0.03em;
  opacity: 0.85;
  transition: color 0.2s ease;
}

.process-step:hover .process-step-num { color: var(--text); opacity: 1; }

.process-step-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(6, 182, 212, 0.12);
  border: 1px solid rgba(6, 182, 212, 0.3);
  display: grid;
  place-items: center;
  color: var(--accent-2);
  margin-top: 0.25rem;
}

.process-step-icon svg { width: 22px; height: 22px; }

.process-step h3 {
  margin: 0.25rem 0 0.15rem;
  font-size: 1.05rem;
  color: var(--text);
}

.process-step p {
  margin: 0;
  color: var(--text-2);
  font-size: 0.92rem;
  line-height: 1.6;
}

.process-step-cta {
  margin-top: 0.6rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.85rem;
  color: var(--accent-2);
  font-weight: 600;
  border-bottom: 0;
}

.process-step-cta:hover { color: var(--text); }
.process-step-cta svg { width: 14px; height: 14px; transition: transform 0.2s ease; }
.process-step-cta:hover svg { transform: translateX(3px); }

/* ---------- INLINE CTA STRIP (after info block) ---------- */
.inline-cta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin: 1.25rem 0 1.5rem;
  padding: 0.85rem 1.1rem;
  background: rgba(6, 182, 212, 0.06);
  border: 1px solid rgba(6, 182, 212, 0.18);
  border-left: 3px solid var(--accent-2);
  border-radius: 8px;
  font-size: 0.95rem;
  color: var(--text-2);
}

.inline-cta .inline-cta-icon {
  width: 28px; height: 28px;
  flex-shrink: 0;
  border-radius: 6px;
  background: rgba(6, 182, 212, 0.15);
  display: grid;
  place-items: center;
  color: var(--accent-2);
}

.inline-cta .inline-cta-icon svg { width: 16px; height: 16px; }

.inline-cta strong { color: var(--text); }

.inline-cta a {
  color: var(--accent-2);
  font-weight: 600;
  border-bottom: 1px solid rgba(6, 182, 212, 0.4);
  white-space: nowrap;
}

.inline-cta a:hover { color: var(--text); border-bottom-color: var(--accent-2); }

/* Mid-content CTA block (between major sections, smaller than .cta-block) */
.mid-cta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: center;
  margin: 2rem 0 2.25rem;
  padding: 1.4rem 1.5rem;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(6, 182, 212, 0.06)), var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 12px;
}

@media (min-width: 768px) { .mid-cta { grid-template-columns: 1fr auto; gap: 1.5rem; } }

.mid-cta-text { display: flex; flex-direction: column; gap: 0.25rem; }
.mid-cta-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  color: var(--accent-2);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.mid-cta-title { color: var(--text); font-size: 1.1rem; font-weight: 600; }
.mid-cta-sub { color: var(--text-2); font-size: 0.92rem; line-height: 1.55; }

.mid-cta-actions { display: flex; gap: 0.6rem; flex-wrap: wrap; }

.mid-cta .btn { padding: 0.7rem 1.15rem; font-size: 0.92rem; }

/* ---------- BANNER CTA (full-width dark with claim) ---------- */
.banner-cta {
  margin: 2.5rem 0;
  padding: 2.2rem 1.75rem;
  background:
    radial-gradient(circle at 100% 0%, rgba(220, 38, 38, 0.18), transparent 60%),
    radial-gradient(circle at 0% 100%, rgba(6, 182, 212, 0.12), transparent 60%),
    #0A1322;
  border: 1px solid var(--line);
  border-radius: 14px;
  display: grid;
  gap: 1.25rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

@media (min-width: 900px) { .banner-cta { grid-template-columns: 1fr auto; padding: 2.5rem 2.25rem; } }

.banner-cta-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cta);
  margin-bottom: 0.5rem;
}

.banner-cta h3 {
  margin: 0 0 0.4rem;
  font-size: clamp(1.25rem, 2.4vw, 1.85rem);
  color: var(--text);
  line-height: 1.25;
}

.banner-cta p {
  margin: 0;
  color: var(--text-2);
  font-size: 0.98rem;
  max-width: 58ch;
}

.banner-cta-actions { display: flex; gap: 0.6rem; flex-wrap: wrap; }

/* ---------- NEXT-STEP TILES (3 paths after big section) ---------- */
.next-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin: 2rem 0 2.25rem;
}

@media (min-width: 768px) { .next-steps { grid-template-columns: repeat(3, 1fr); } }

.next-step {
  display: block;
  padding: 1.2rem 1.3rem;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--text);
  transition: all 0.18s ease;
  border-bottom: 1px solid var(--line);
}

.next-step:hover {
  border-color: var(--accent-2);
  transform: translateY(-2px);
  background: var(--bg-3);
  color: var(--text);
}

.next-step-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--accent-2);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

.next-step-eyebrow svg { width: 14px; height: 14px; }

.next-step-title {
  font-weight: 600;
  color: var(--text);
  font-size: 1rem;
  margin-bottom: 0.3rem;
  line-height: 1.3;
}

.next-step-sub {
  color: var(--text-2);
  font-size: 0.88rem;
  line-height: 1.5;
}

.next-step-arrow {
  margin-top: 0.7rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.85rem;
  color: var(--accent-2);
  font-weight: 600;
}

.next-step:hover .next-step-arrow svg { transform: translateX(3px); }
.next-step-arrow svg { width: 14px; height: 14px; transition: transform 0.2s ease; }

/* ---------- STAT COUNTER STRIPS (animated) ---------- */
.stat-strip {
  margin: 2.25rem 0;
  padding: 1.75rem 1.5rem;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.07), rgba(6, 182, 212, 0.04)), var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  text-align: center;
}

@media (min-width: 768px) { .stat-strip { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } }

.stat-strip-item .stat-strip-num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  line-height: 1;
  color: var(--accent-2);
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
  display: inline-flex;
  align-items: baseline;
  gap: 0.15rem;
}

.stat-strip-num .unit {
  font-size: 0.55em;
  color: var(--text-2);
  font-weight: 600;
}

.stat-strip-label {
  color: var(--text-3);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ---------- TESTIMONIAL/QUOTE BLOCK (visual rhythm) ---------- */
.quote-block {
  margin: 2.25rem 0;
  padding: 1.75rem 1.85rem;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent-2);
  border-radius: 12px;
  position: relative;
}

.quote-block::before {
  content: '"';
  position: absolute;
  top: 0.15rem;
  right: 1.25rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 4.5rem;
  color: var(--accent-2);
  opacity: 0.18;
  line-height: 1;
}

.quote-block blockquote {
  margin: 0;
  font-style: italic;
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.65;
}

.quote-block cite {
  display: block;
  margin-top: 0.9rem;
  font-style: normal;
  color: var(--text-3);
  font-size: 0.85rem;
  font-family: 'JetBrains Mono', monospace;
}

.quote-block cite b { color: var(--text-2); font-weight: 600; }

/* ---------- FAQ ICON UPGRADE ---------- */
.faq-item summary::before {
  content: '';
  display: inline-flex;
  width: 28px;
  height: 28px;
  margin-right: 0.6rem;
  flex-shrink: 0;
  border-radius: 6px;
  background:
    rgba(6, 182, 212, 0.12)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2306B6D4' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3'/%3E%3Cpath d='M12 17h.01'/%3E%3C/svg%3E")
    center / 16px no-repeat;
}

.faq-item .faq-body > * + .faq-cta { margin-top: 0.5rem; }

.faq-cta {
  margin-top: 0.5rem !important;
  font-size: 0.88rem !important;
  color: var(--accent-2) !important;
  font-style: normal;
}

.faq-cta a {
  font-weight: 600;
  border-bottom: 1px solid rgba(6, 182, 212, 0.35);
}

/* ---------- GLOSSARY CARDS (replaces flat dl) ---------- */
.glossary-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
  margin: 1.25rem 0;
}

@media (min-width: 640px) { .glossary-cards { grid-template-columns: 1fr 1fr; } }

.glossary-card {
  display: flex;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  transition: border-color 0.18s ease;
}

.glossary-card:hover { border-color: var(--accent-2); }

.glossary-card-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 7px;
  background: rgba(6, 182, 212, 0.12);
  color: var(--accent-2);
  display: grid;
  place-items: center;
}

.glossary-card-icon svg { width: 18px; height: 18px; }

.glossary-card dt {
  font-family: 'JetBrains Mono', monospace;
  color: var(--text);
  font-weight: 600;
  font-size: 0.92rem;
  margin: 0 0 0.2rem;
}

.glossary-card dd {
  margin: 0;
  color: var(--text-2);
  font-size: 0.88rem;
  line-height: 1.5;
}

/* ---------- USECASE ICON CARDS ---------- */
.usecase-icon-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin: 1.5rem 0;
}

@media (min-width: 640px) { .usecase-icon-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .usecase-icon-grid { grid-template-columns: repeat(3, 1fr); } }

.usecase-icon {
  padding: 1.2rem 1.25rem;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.usecase-icon-head {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.25rem;
}

.usecase-icon-circle {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(6, 182, 212, 0.13);
  color: var(--accent-2);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.usecase-icon-circle svg { width: 18px; height: 18px; }

.usecase-icon h4 {
  margin: 0;
  color: var(--text);
  font-size: 1rem;
}

.usecase-icon p {
  margin: 0;
  color: var(--text-2);
  font-size: 0.9rem;
  line-height: 1.55;
}

.usecase-icon-cta {
  margin-top: auto;
  padding-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--accent-2);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  border-bottom: 0;
}

.usecase-icon-cta:hover { color: var(--text); }
.usecase-icon-cta svg { width: 13px; height: 13px; }

/* ---------- COMPARE TABLE STATUS BADGES ---------- */
.compare-table td .badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
  border: 1px solid var(--line);
}

.badge-ok { color: var(--ok); border-color: rgba(16, 185, 129, 0.4); background: rgba(16, 185, 129, 0.08); }
.badge-warn { color: var(--warn); border-color: rgba(234, 88, 12, 0.4); background: rgba(234, 88, 12, 0.08); }
.badge-info { color: var(--accent-2); border-color: rgba(6, 182, 212, 0.4); background: rgba(6, 182, 212, 0.1); }

/* ---------- DESKTOP FLOATING CTA CARD (right side) ---------- */
.floating-cta {
  display: none;
}

@media (min-width: 1280px) {
  .floating-cta {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    position: fixed;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 60;
    width: 260px;
    padding: 1.1rem 1.15rem;
    background: rgba(15, 26, 46, 0.96);
    border: 1px solid var(--line-2);
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .floating-cta.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(-50%) translateX(0);
  }
  /* Desktop rail prekrýval široké obsahové sekcie — na desktope skryté,
     kontakt je v hlavičke (telefón + Audit CTA); na mobile ostáva spodná lišta. */
  .floating-cta { display: none !important; }
}

.floating-cta-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  color: var(--cta);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.floating-cta-eyebrow::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cta);
  box-shadow: 0 0 8px var(--cta);
  animation: pulse-dot 1.6s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.floating-cta-title {
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.3;
}

.floating-cta-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.75rem;
  background: var(--cta);
  color: #fff !important;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.92rem;
  font-family: 'JetBrains Mono', monospace;
  border-bottom: 0;
}

.floating-cta-phone:hover { background: var(--cta-hover); color: #fff !important; }
.floating-cta-phone svg { width: 16px; height: 16px; }

.floating-cta-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.6rem 0.75rem;
  background: transparent;
  color: var(--text) !important;
  border: 1px solid var(--line-2);
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  border-bottom: 1px solid var(--line-2);
}

.floating-cta-secondary:hover { border-color: var(--accent-2); color: var(--text) !important; }

.floating-cta-note {
  color: var(--text-3);
  font-size: 0.75rem;
  line-height: 1.4;
  margin-top: 0.1rem;
}

/* ---------- MOBILE BOTTOM STICKY BAR ---------- */
.mobile-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 70;
  display: flex;
  gap: 0.5rem;
  padding: 0.6rem 0.75rem;
  background: rgba(10, 19, 34, 0.97);
  border-top: 1px solid var(--line-2);
  backdrop-filter: blur(12px);
  transform: translateY(100%);
  transition: transform 0.25s ease;
}

.mobile-sticky-cta.is-visible { transform: translateY(0); }

@media (min-width: 1024px) { .mobile-sticky-cta { display: none !important; } }

.mobile-sticky-cta .btn {
  flex: 1;
  padding: 0.7rem 0.85rem;
  font-size: 0.92rem;
  justify-content: center;
}

.mobile-sticky-cta .btn-primary svg { width: 16px; height: 16px; }

/* Push body bottom space on mobile so sticky CTA does not overlap content */
@media (max-width: 1023px) {
  body { padding-bottom: 70px; }
  .cookie-banner { bottom: 75px; }
}

/* ---------- REVEAL ANIMATION (process cards entry) ---------- */
.reveal-up { opacity: 0; transform: translateY(18px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal-up.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal-up { opacity: 1 !important; transform: none !important; transition: none !important; } }

/* ---------- Process page-level: when used as full section, add header above ---------- */
.process-section-head {
  margin: 1.5rem 0 0.75rem;
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.process-section-head .eyebrow { margin-bottom: 0; }

/* ============================================================
   ▼▼▼ V3 VISUAL RHYTHM — anti-monotony SEO content patterns ▼▼▼
   Added 2026-06-01. Breaks up uniform dark-navy block grids
   with asymmetric, light-respite, and hero-stat patterns.
   ============================================================ */

/* Section ribbon — colored eyebrow strip pre sekciou (numbered) */
.section-ribbon {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 2.5rem 0 0.5rem;
  padding: 0.35rem 0.75rem 0.35rem 0.6rem;
  background: linear-gradient(90deg, rgba(6, 182, 212, 0.18), rgba(6, 182, 212, 0.04));
  border-left: 3px solid var(--accent-2);
  border-radius: 0 999px 999px 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.74rem;
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section-ribbon .ribbon-num {
  color: var(--text);
  font-weight: 700;
}

.section-ribbon .ribbon-symbol {
  font-size: 0.95rem;
  line-height: 1;
  opacity: 0.85;
}

/* Light-respite section — inverted palette, full-bleed break */
.respite {
  margin: 3rem -1.25rem;
  padding: 3rem 1.5rem;
  background: #F8FAFC;
  color: #0F172A;
  border-top: 1px solid #E2E8F0;
  border-bottom: 1px solid #E2E8F0;
  position: relative;
}

.respite::before,
.respite::after {
  content: '';
  position: absolute;
  left: 50%;
  width: 64px;
  height: 4px;
  background: var(--accent-2);
  border-radius: 2px;
  transform: translateX(-50%);
}

.respite::before { top: 0; }
.respite::after { bottom: 0; }

.respite-inner {
  max-width: 920px;
  margin: 0 auto;
}

.respite h2,
.respite h3,
.respite h4 { color: #0F172A; margin-top: 0; }

.respite p { color: #334155; }
.respite strong { color: #0F172A; }

.respite a {
  color: #0E7490;
  border-bottom: 1px solid rgba(14, 116, 144, 0.35);
}

.respite a:hover { color: #0F172A; border-bottom-color: #0F172A; }

.respite .respite-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #0E7490;
  background: rgba(6, 182, 212, 0.12);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .respite {
    margin: 4rem calc(50% - 50vw);
    padding: 4rem 2rem;
  }
}

/* Big stat hero — gigantic centered single number */
.big-stat {
  margin: 3rem -1.25rem;
  padding: 4rem 1.25rem 4.25rem;
  background:
    radial-gradient(circle at 50% 0%, rgba(6, 182, 212, 0.16), transparent 55%),
    linear-gradient(180deg, #08111F, #0A1322 65%, #0F1A2E);
  position: relative;
  text-align: center;
  overflow: hidden;
}

.big-stat::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(45deg, rgba(6, 182, 212, 0.04) 25%, transparent 25%, transparent 75%, rgba(6, 182, 212, 0.04) 75%),
    linear-gradient(45deg, rgba(6, 182, 212, 0.04) 25%, transparent 25%, transparent 75%, rgba(6, 182, 212, 0.04) 75%);
  background-size: 28px 28px;
  background-position: 0 0, 14px 14px;
  opacity: 0.5;
  pointer-events: none;
}

.big-stat-eyebrow {
  position: relative;
  display: inline-flex;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.2rem;
  padding: 0.3rem 0.85rem;
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.25);
  border-radius: 999px;
}

.big-stat-number {
  position: relative;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(4.2rem, 12vw, 8.5rem);
  line-height: 0.95;
  color: var(--text);
  letter-spacing: -0.04em;
  margin: 0;
  display: inline-flex;
  align-items: baseline;
  gap: 0.25rem;
}

.big-stat-number .big-stat-unit {
  font-size: 0.32em;
  color: var(--accent-2);
  font-weight: 600;
  letter-spacing: 0;
  margin-left: 0.15em;
}

.big-stat-caption {
  position: relative;
  margin: 1rem auto 0;
  max-width: 36rem;
  color: var(--text-2);
  font-size: 1.05rem;
  line-height: 1.55;
}

.big-stat-actions {
  position: relative;
  margin-top: 1.5rem;
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .big-stat { margin: 4rem calc(50% - 50vw); }
}

/* Asymmetric split — text + visual side-by-side (60/40) */
.split-asym {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
  margin: 2.5rem 0;
}

@media (min-width: 900px) {
  .split-asym {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 2.5rem;
  }
  .split-asym.flip { grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr); }
  .split-asym.flip .split-asym-text { order: 2; }
  .split-asym.flip .split-asym-visual { order: 1; }
}

.split-asym-text > :first-child { margin-top: 0; }
.split-asym-text > :last-child { margin-bottom: 0; }

.split-asym-visual {
  position: relative;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(6, 182, 212, 0.05)), var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 2rem 1.5rem;
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.split-asym-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(6, 182, 212, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 182, 212, 0.07) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.5;
  pointer-events: none;
}

.split-asym-visual .stat-mega {
  position: relative;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  line-height: 0.9;
  color: var(--accent-2);
  letter-spacing: -0.03em;
  text-align: center;
}

.split-asym-visual .stat-mega-unit {
  display: block;
  font-size: 0.28em;
  color: var(--text-2);
  margin-top: 0.4rem;
  letter-spacing: 0;
}

.split-asym-visual .stat-mega-caption {
  position: relative;
  margin-top: 1rem;
  color: var(--text-3);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: center;
}

.split-asym-visual .visual-icon-bg {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.split-asym-visual .visual-icon-bg svg {
  width: 96px;
  height: 96px;
  color: var(--accent-2);
  opacity: 0.5;
  filter: drop-shadow(0 0 24px rgba(6, 182, 212, 0.35));
}

/* Comparison split-screen — 2 columns side-by-side (vs.) */
.vs-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin: 2rem 0 2.5rem;
  position: relative;
}

@media (min-width: 720px) {
  .vs-split { grid-template-columns: 1fr 1fr; gap: 0; }
  .vs-split::before {
    content: 'VS';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: var(--bg);
    border: 2px solid var(--accent-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    color: var(--accent-2);
    font-size: 0.85rem;
    z-index: 2;
    box-shadow: 0 0 0 6px var(--bg);
  }
}

.vs-side {
  padding: 1.5rem 1.4rem;
  background: var(--bg-2);
  border: 1px solid var(--line);
}

.vs-side:first-child { border-radius: 12px 12px 0 0; border-bottom: 0; }
.vs-side:last-child { border-radius: 0 0 12px 12px; }

@media (min-width: 720px) {
  .vs-side:first-child { border-radius: 12px 0 0 12px; border-right: 0; border-bottom: 1px solid var(--line); }
  .vs-side:last-child { border-radius: 0 12px 12px 0; }
}

.vs-side.them {
  background: linear-gradient(135deg, #1A1F2C, #161A24);
  color: var(--text-3);
}

.vs-side.us {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.08), rgba(37, 99, 235, 0.06)), var(--bg-2);
  border-color: rgba(6, 182, 212, 0.4);
}

.vs-side-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.6rem;
}

.vs-side.them .vs-side-label { color: var(--text-3); }
.vs-side.us .vs-side-label { color: var(--accent-2); }

.vs-side h4 {
  margin: 0 0 1rem;
  font-size: 1.1rem;
  color: var(--text);
}

.vs-side.them h4 { color: var(--text-2); }

.vs-side ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.vs-side ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
  font-size: 0.94rem;
  line-height: 1.5;
  color: var(--text-2);
}

.vs-side ul li::before {
  content: '';
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 0.2rem;
  border-radius: 50%;
}

.vs-side.them ul li::before {
  background: rgba(124, 138, 166, 0.25);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%237C8AA6' stroke-width='3' stroke-linecap='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.vs-side.us ul li::before {
  background: rgba(6, 182, 212, 0.18);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%2306B6D4' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.vs-side.them ul li { color: var(--text-3); }

/* Horizontal timeline — process steps with connecting lines */
.timeline-h {
  display: grid;
  gap: 1rem;
  margin: 2rem 0 2.5rem;
  grid-template-columns: 1fr;
  position: relative;
}

@media (min-width: 768px) {
  .timeline-h { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
  .timeline-h.cols-4 { grid-template-columns: repeat(4, 1fr); }
  .timeline-h.cols-5 { grid-template-columns: repeat(5, 1fr); }
}

.timeline-step {
  position: relative;
  padding: 1.3rem 1.1rem 1.2rem;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.timeline-step:hover {
  border-color: var(--accent-2);
  transform: translateY(-3px);
}

.timeline-step::after {
  content: '';
  display: none;
  position: absolute;
  top: 35px;
  right: -16px;
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent-2), transparent);
}

@media (min-width: 768px) {
  .timeline-step:not(:last-child)::after { display: block; }
}

.timeline-step-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: var(--accent-2);
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.25);
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  margin-bottom: 0.7rem;
}

.timeline-step h4 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.3;
}

.timeline-step p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.5;
}

/* Pull-quote — full-bleed editorial quote */
.pull-quote {
  margin: 3rem -1.25rem;
  padding: 3rem 1.25rem;
  background: linear-gradient(180deg, #0A1322, var(--bg) 80%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
  position: relative;
}

.pull-quote::before {
  content: '"';
  position: absolute;
  top: 0.1rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 8rem;
  color: var(--accent-2);
  opacity: 0.18;
  line-height: 0.85;
  pointer-events: none;
}

.pull-quote blockquote {
  position: relative;
  margin: 0 auto;
  max-width: 38rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-style: italic;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.35;
  color: var(--text);
  letter-spacing: -0.01em;
}

.pull-quote cite {
  position: relative;
  display: block;
  margin-top: 1.25rem;
  font-style: normal;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  color: var(--accent-2);
  letter-spacing: 0.04em;
}

.pull-quote cite b { color: var(--text-2); font-weight: 600; margin-right: 0.4rem; }

@media (min-width: 768px) {
  .pull-quote { margin: 4rem calc(50% - 50vw); padding: 4rem 2rem; }
}

/* Glossary tag-cloud — chips with hover expand */
.glossary-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.5rem 0 1rem;
  padding: 0;
  list-style: none;
}

.glossary-tag {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1rem;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  color: var(--accent-2);
  cursor: help;
  transition: all 0.2s ease;
}

.glossary-tag::before {
  content: '#';
  color: var(--text-3);
  font-weight: 500;
}

.glossary-tag:hover {
  background: rgba(6, 182, 212, 0.1);
  border-color: var(--accent-2);
  color: var(--text);
  transform: translateY(-2px);
}

.glossary-tag .tag-tip {
  position: absolute;
  bottom: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  max-width: 260px;
  padding: 0.65rem 0.85rem;
  background: #08111F;
  border: 1px solid var(--accent-2);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: var(--text-2);
  line-height: 1.45;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 10;
  text-transform: none;
  letter-spacing: 0;
}

.glossary-tag .tag-tip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--accent-2);
}

.glossary-tag:hover .tag-tip,
.glossary-tag:focus-within .tag-tip { opacity: 1; }

/* Zigzag FAQ — Q left / A right, alternating */
.faq-zig {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}

.faq-zig-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  background: linear-gradient(180deg, var(--bg-2), var(--bg));
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.2rem 1.3rem;
  position: relative;
}

@media (min-width: 768px) {
  .faq-zig-item {
    grid-template-columns: 1fr 1fr;
    gap: 1.6rem;
    padding: 1.4rem 1.5rem;
  }
  .faq-zig-item.flip { direction: rtl; }
  .faq-zig-item.flip > * { direction: ltr; }
}

.faq-zig-item:hover { border-color: var(--accent-2); }

.faq-zig-q {
  position: relative;
  padding-left: 2.3rem;
}

.faq-zig-q::before {
  content: 'Q';
  position: absolute;
  left: 0;
  top: -0.1rem;
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: rgba(6, 182, 212, 0.13);
  color: var(--accent-2);
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-zig-q h4 {
  margin: 0;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.35;
}

.faq-zig-a {
  position: relative;
  padding-left: 2.3rem;
  color: var(--text-2);
  font-size: 0.93rem;
  line-height: 1.6;
}

.faq-zig-a::before {
  content: 'A';
  position: absolute;
  left: 0;
  top: -0.1rem;
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: rgba(124, 138, 166, 0.15);
  color: var(--text-2);
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-zig-a p { margin: 0 0 0.5rem; color: var(--text-2); font-size: 0.93rem; }
.faq-zig-a p:last-child { margin: 0; }
.faq-zig-a a { color: var(--accent-2); font-weight: 600; }

/* Diagonal stripe SVG divider between sections */
.svg-divider {
  height: 60px;
  margin: 0.5rem 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.svg-divider svg {
  width: 100%;
  max-width: 480px;
  height: 24px;
  opacity: 0.4;
  color: var(--accent-2);
}

/* Animated pulse signal accent */
.pulse-signal {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pulse-signal::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 0 0 rgba(6, 182, 212, 0.6);
  animation: signal-pulse 1.8s ease-in-out infinite;
}

@keyframes signal-pulse {
  0% { box-shadow: 0 0 0 0 rgba(6, 182, 212, 0.6); }
  70% { box-shadow: 0 0 0 12px rgba(6, 182, 212, 0); }
  100% { box-shadow: 0 0 0 0 rgba(6, 182, 212, 0); }
}

/* Brand strip parallax */
.brand-strip {
  margin: 2.5rem -1.25rem;
  padding: 1.75rem 0;
  background: #0A1322;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  position: relative;
}

@media (min-width: 768px) {
  .brand-strip { margin: 3rem calc(50% - 50vw); }
}

.brand-strip-label {
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}

.brand-strip-track {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.4rem 2.5rem;
  padding: 0 1rem;
}

.brand-strip-item {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--text-2);
  letter-spacing: 0.02em;
  opacity: 0.85;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.brand-strip-item:hover { color: var(--accent-2); opacity: 1; }

.brand-strip-item .brand-strip-meta {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 400;
  font-size: 0.7rem;
  color: var(--text-3);
  letter-spacing: 0.04em;
  margin-top: 0.1rem;
}

/* Image+caption masonry grid (for galéria-like inside SEO) */
.img-mosaic {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  margin: 2rem 0 2.5rem;
}

@media (min-width: 640px) { .img-mosaic { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) {
  .img-mosaic {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 130px;
    grid-auto-flow: dense;
  }
  .img-mosaic .tile-lg { grid-column: span 2; grid-row: span 2; }
  .img-mosaic .tile-tall { grid-row: span 2; }
}

.img-mosaic figure {
  position: relative;
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-2);
  min-height: 200px;
  display: flex;
  align-items: flex-end;
}

.img-mosaic figure::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-image: var(--bg-img);
  transition: transform 0.45s ease;
}

.img-mosaic figure:hover::before { transform: scale(1.05); }

.img-mosaic figure::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(8, 17, 31, 0.85));
}

.img-mosaic figcaption {
  position: relative;
  z-index: 2;
  padding: 0.85rem 1rem;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.35;
}

.img-mosaic figcaption .cap-eyebrow {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  margin-bottom: 0.3rem;
}

/* SEO content default container override when we have full-bleed blocks */
.seo-content .container { overflow: visible; }

/* Stack reveal helpers */
.seo-content > .container > *:first-child { margin-top: 0; }

/* ============================================================
   ▼▼▼ V4 BREATHING + MOBILE OVERFLOW + LIGHT SECTIONS ▼▼▼
   Added 2026-06-01. Fixes mobile overflows (table, big-stat,
   brand-strip, respite, tag-tip), gives sections breathing
   space, introduces 4-5 light-section breaks, adds card
   variants, raises cookie banner z-index above sticky CTA.
   ============================================================ */

/* ---------- 1. MOBILE OVERFLOW FIXES ---------- */

/* big-stat: full-bleed negative margins broke mobile.
   Use safe calc on small viewports, restore -calc only when room exists. */
@media (max-width: 767px) {
  .big-stat {
    margin-left: 0;
    margin-right: 0;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .big-stat-number {
    font-size: clamp(3.2rem, 14vw, 6rem);
    flex-wrap: wrap;
    justify-content: center;
  }
  .big-stat-number .big-stat-unit {
    font-size: 0.4em;
  }
  .big-stat-caption {
    font-size: 0.95rem;
  }
}

/* compare-table: outer wrapper provides horizontal scroll on mobile,
   nested table breaks if min-width forces overflow with display:revert.
   Force table to honor wrapper overflow. */
.compare-table {
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
}
@media (max-width: 767px) {
  .compare-table { font-size: 0.85rem; }
  .compare-table table { min-width: 520px; }
  .compare-table th, .compare-table td { padding: 0.6rem 0.7rem; }
}

/* Make compare-table wrapper visually signal scrollability on mobile */
@media (max-width: 767px) {
  .compare-table::after {
    content: '← scroll →';
    display: block;
    text-align: center;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    color: var(--text-3);
    padding: 0.4rem 0;
    background: rgba(6, 182, 212, 0.04);
    border-top: 1px dashed var(--line);
    letter-spacing: 0.08em;
  }
}

/* brand-strip: full-bleed negative margin breaks on mobile */
@media (max-width: 767px) {
  .brand-strip {
    margin-left: 0;
    margin-right: 0;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .brand-strip-track { gap: 1rem 1.5rem; padding: 0; }
  .brand-strip-item { font-size: 1rem; }
}

/* respite: full-bleed negative margin breaks on mobile */
@media (max-width: 767px) {
  .respite {
    margin-left: 0;
    margin-right: 0;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

/* pull-quote: full-bleed negative margin breaks on mobile */
@media (max-width: 767px) {
  .pull-quote {
    margin-left: 0;
    margin-right: 0;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

/* tag-tip: max-width 260 overflowed 393 viewport. Clamp + ensure no body overflow even when hidden. */
.glossary-tag .tag-tip {
  max-width: min(260px, calc(100vw - 32px));
}
/* Belt-and-braces — glossary tags container clips any out-of-bounds tooltip layout */
.glossary-tags { overflow: hidden; }
@media (max-width: 767px) {
  /* On mobile, hover tooltips don't work well — convert to inline help text via overflow guard.
     Tag-tip would push body width because it's max-content + absolutely positioned.
     Use overflow: hidden on the parent UL to clip stray tooltip layout. */
  .glossary-tags {
    overflow: hidden;
  }
  .glossary-tag .tag-tip {
    max-width: calc(100vw - 40px);
    width: max-content;
  }
  .glossary-tag {
    position: static;
  }
  .glossary-tag:focus-within .tag-tip,
  .glossary-tag:hover .tag-tip {
    position: fixed;
    left: 1rem !important;
    right: 1rem !important;
    bottom: 80px;
    top: auto;
    transform: none;
    max-width: none;
    width: auto;
    z-index: 95;
  }
  .glossary-tag:focus-within .tag-tip::after,
  .glossary-tag:hover .tag-tip::after {
    display: none;
  }
}

/* ---------- 2. SECTION BREATHING (vertical rhythm) ---------- */

/* Major sections — moderate block padding for "dýchanie" without bloating */
section {
  padding: clamp(3rem, 5vw, 4.5rem) 0;
}

/* SEO content full-bleed breaks — keep compact vertical rhythm */
.big-stat { padding-block: clamp(3rem, 5vw, 4rem); }
.respite { padding-block: clamp(3rem, 5vw, 4rem); }
.pull-quote { padding-block: clamp(2.5rem, 4vw, 3.5rem); }
.brand-strip { padding-block: clamp(2rem, 3.5vw, 2.5rem); }

/* Hero/stats/brands/cta keep tighter rhythm */
.stats { padding: 1.5rem 0 !important; }
.brands { padding: 1.75rem 0 !important; }
.hero { padding-top: clamp(2rem, 4vw, 3.5rem); padding-bottom: clamp(2rem, 4vw, 3rem); }
.site-footer { padding-top: 2rem; padding-bottom: 1.25rem; margin-top: 1rem; }

/* Desktop hero — reduce image aspect ratio for shorter section */
@media (min-width: 1024px) {
  .hero-visual { aspect-ratio: 5 / 3; }
  .hero { padding-top: 2.5rem; padding-bottom: 2.5rem; }
  .hero-grid { gap: 2.5rem; }
  .hero-sub { font-size: 1rem; margin-bottom: 1.5rem; }
}

/* Cta block compact */
.cta-block { padding: clamp(1.5rem, 3vw, 2.25rem); }
.cta-block h2 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
.cta-block p { margin-bottom: 1.25rem; }

/* Add visual gap between consecutive `.seo-content .container` blocks */
.seo-content .container + .container {
  margin-top: 0.5rem;
}

/* Section ribbon — clean breathing top space */
.section-ribbon { margin-top: 2rem; }
.seo-content .container > .section-ribbon:first-child { margin-top: 0; }

/* Tighten seo-content vertical rhythm to compensate for added breathing elsewhere */
.seo-content h2 { margin-top: 1.25rem; margin-bottom: 0.5rem; font-size: clamp(1.3rem, 2.2vw, 1.75rem); }
.seo-content h3 { margin-top: 1rem; margin-bottom: 0.35rem; }
.seo-content p { margin-bottom: 0.7rem; }

/* Compress vertical spacing of full-bleed elements when stacked */
.seo-content .big-stat,
.seo-content .pull-quote,
.seo-content .brand-strip,
.seo-content .respite {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

/* Make big-stat / respite shorter overall */
.big-stat { padding-block: clamp(2rem, 3vw, 2.75rem); }
.respite { padding-block: clamp(2rem, 3vw, 2.75rem); }
.pull-quote { padding-block: clamp(1.5rem, 2.5vw, 2.25rem); }
.brand-strip { padding-block: clamp(1.25rem, 2vw, 1.75rem); }

.big-stat-number { font-size: clamp(3rem, 7vw, 5.5rem); }
.big-stat-caption { font-size: 0.95rem; margin-top: 0.7rem; }
.big-stat-actions { margin-top: 1rem; }
.big-stat-eyebrow { margin-bottom: 0.7rem; }
.respite-inner { max-width: 820px; }
.respite h2 { font-size: clamp(1.25rem, 2vw, 1.65rem) !important; }
.respite-eyebrow { margin-bottom: 0.6rem; }

.pull-quote blockquote { font-size: clamp(1.15rem, 2.4vw, 1.65rem); }
.pull-quote cite { margin-top: 0.85rem; }

/* Inline CTA tighter padding */
.inline-cta { margin: 1rem 0 1.25rem; padding: 0.7rem 0.95rem; font-size: 0.9rem; }

/* TOC tighter */
.seo-toc { padding: 0.9rem 1.1rem; margin: 0.75rem 0 1.5rem; }
.seo-toc ol { gap: 0.25rem; }

/* Glossary tags more compact */
.glossary-tag { padding: 0.4rem 0.8rem; font-size: 0.82rem; }
.glossary-tags { gap: 0.45rem; margin: 1rem 0 0.75rem; }

/* Section ribbon — slightly more compact */
.section-ribbon { padding: 0.3rem 0.65rem 0.3rem 0.5rem; font-size: 0.7rem; }

/* Tighten split-asym blocks */
.split-asym { margin: 1.5rem 0; gap: 1.25rem; }
@media (min-width: 900px) {
  .split-asym { gap: 1.75rem; }
}
.split-asym-visual { min-height: 180px; padding: 1.5rem 1.25rem; }
.split-asym-visual .stat-mega { font-size: clamp(2.5rem, 5vw, 4rem); }
.split-asym-visual .visual-icon-bg svg { width: 72px; height: 72px; }

/* Tighten next-steps gap */
.next-steps { gap: 0.7rem; margin: 1.25rem 0 1.5rem; }
@media (min-width: 768px) { .next-steps { gap: 0.85rem; } }
.next-step { padding: 1rem 1.1rem; }
.next-step-title { font-size: 0.95rem; }
.next-step-sub { font-size: 0.84rem; }

/* Tighten banner-cta */
.banner-cta { margin: 2rem 0; padding: 1.75rem 1.5rem; }
@media (min-width: 900px) { .banner-cta { padding: 2rem 2rem; } }
.banner-cta h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); }

/* Tighten compare-table */
.compare-table { margin: 1rem 0 1.25rem; }
.compare-table th, .compare-table td { padding: 0.6rem 0.8rem; font-size: 0.88rem; }

/* Compact faq-zig items and timeline-h */
.faq-zig { gap: 0.55rem; margin: 1rem 0 1.5rem; }
.faq-zig-item { padding: 0.85rem 1.05rem; gap: 0.4rem; }
@media (min-width: 768px) { .faq-zig-item { padding: 1rem 1.2rem; gap: 1.4rem; } }
.faq-zig-q h4 { font-size: 0.95rem; }
.faq-zig-a { font-size: 0.88rem; line-height: 1.55; }
.faq-zig-a p { font-size: 0.88rem; }

.timeline-step { padding: 1.05rem 1rem 1rem; }
.timeline-step h4 { font-size: 0.95rem; }
.timeline-step p { font-size: 0.85rem; }

/* Bigger gap between grid items in SEO content but not excessive */
.usecase-icon-grid {
  gap: 0.85rem;
}
@media (min-width: 1024px) { .usecase-icon-grid { gap: 1rem; } }

.timeline-h { gap: 0.85rem; }
@media (min-width: 768px) { .timeline-h { gap: 1rem; } }

/* ---------- 3. LIGHT-SECTION VARIANTS (anti-monotony) ---------- */

/* Light variant of feature-rows section (alternate dark/light rhythm) */
.section-light {
  background: #F8FAFC;
  color: #0F172A;
  border-top: 1px solid #E2E8F0;
  border-bottom: 1px solid #E2E8F0;
  position: relative;
}

.section-light h2,
.section-light h3,
.section-light h4 { color: #0F172A; }

.section-light p,
.section-light .feature-row p {
  color: #334155;
}

.section-light .eyebrow {
  background: rgba(14, 116, 144, 0.1);
  border-color: rgba(14, 116, 144, 0.3);
  color: #0E7490;
}

.section-light .eyebrow-dot { background: #0E7490; box-shadow: 0 0 8px #0E7490; }

.section-light .bullets li { color: #334155; }
.section-light .bullets li::before {
  background: rgba(14, 116, 144, 0.15);
  border-color: #0E7490;
}
.section-light .bullets li::after { background: #0E7490; }

.section-light .btn-ghost {
  background: #fff;
  color: #0F172A !important;
  border-color: #CBD5E1;
}
.section-light .btn-ghost:hover {
  background: #F1F5F9;
  border-color: #0E7490;
  color: #0F172A !important;
}

.section-light .feature-img {
  border-color: #CBD5E1;
}

/* Compact feature-rows desktop */
@media (min-width: 1024px) {
  .feature-rows { gap: 1.25rem; }
  .feature-img { aspect-ratio: 16 / 9; }
  .feature-row { gap: 2.25rem; grid-template-columns: 0.7fr 1fr; }
  .feature-row.reverse { grid-template-columns: 0.7fr 1fr; }
}
.feature-row h2 { margin-bottom: 0.7rem; font-size: clamp(1.3rem, 2vw, 1.65rem); }
.feature-row p { margin-bottom: 0.75rem; }
.bullets { margin-bottom: 1rem; gap: 0.4rem; }
.bullets li { font-size: 0.92rem; }

.section-light strong { color: #0F172A; }

.section-light a { color: #0E7490; }
.section-light a:hover { color: #0F172A; }

.section-light { padding: clamp(2.5rem, 4vw, 3.75rem) 0; }
.section-light .section-head { margin-bottom: 1.5rem; }
.section-light .section-head h2 { font-size: clamp(1.4rem, 2.2vw, 1.9rem); }
.section-light .section-head p { font-size: 0.95rem; margin-top: 0.5rem; }

.section-light::before,
.section-light::after {
  content: '';
  position: absolute;
  left: 50%;
  width: 80px;
  height: 4px;
  background: var(--accent-2);
  border-radius: 2px;
  transform: translateX(-50%);
}
.section-light::before { top: 0; }
.section-light::after { bottom: 0; }

/* Light variant of services cards section */
.section-light .card {
  background: #fff;
  border-color: #E2E8F0;
  color: #0F172A;
  padding: 1.1rem 1.15rem;
  gap: 0.5rem;
}

.section-light .card:hover {
  background: #F8FAFC;
  border-color: #0E7490;
}

.section-light .card h3 { color: #0F172A; font-size: 1rem; }
.section-light .card p { color: #475569; font-size: 0.88rem; line-height: 1.5; }
.section-light .card-icon {
  background: rgba(14, 116, 144, 0.1);
  color: #0E7490;
  width: 38px;
  height: 38px;
}
.section-light .card-icon svg { width: 18px; height: 18px; }
.section-light .card-link { color: #0E7490; font-size: 0.85rem; }

/* Light variant of brands chip strip */
.brands-light .brand-chip {
  background: #fff;
  border-color: #CBD5E1;
  color: #475569;
}
.brands-light .brand-chip:hover {
  color: #0E7490;
  border-color: #0E7490;
}

/* Light variant of CTA-block */
.cta-block-light {
  background: linear-gradient(135deg, #fff, #F1F5F9);
  border-color: #E2E8F0;
  color: #0F172A;
}
.cta-block-light h2 { color: #0F172A; }
.cta-block-light p { color: #475569; }
.cta-block-light .eyebrow {
  background: rgba(14, 116, 144, 0.1);
  border-color: rgba(14, 116, 144, 0.3);
  color: #0E7490;
}
.cta-block-light .eyebrow-dot { background: #0E7490; box-shadow: 0 0 8px #0E7490; }
.cta-block-light .btn-secondary {
  background: transparent;
  color: #0F172A !important;
  border-color: #CBD5E1;
}
.cta-block-light .btn-secondary:hover {
  background: #fff;
  border-color: #0E7490;
}

/* Light variant of USP block */
.section-light .usp {
  background:
    linear-gradient(135deg, rgba(14, 116, 144, 0.06), rgba(6, 182, 212, 0.04)),
    #fff;
  border-color: #E2E8F0;
}
.section-light .usp-icon {
  background: #fff;
  border-color: #CBD5E1;
  color: #0E7490;
}
.section-light .usp-item h4 { color: #0F172A; }
.section-light .usp-item p { color: #475569; }

/* ---------- 4. COOKIE BANNER + STICKY CTA Z-INDEX FIX ---------- */
/* Cookie banner above sticky CTA (was z-80 vs 70 — both visible, banner could overlap) */
.cookie-banner { z-index: 90 !important; }
.mobile-sticky-cta { z-index: 70; }

/* When cookie banner is visible, sticky CTA position is managed via JS
   (script.js → adjustStickyCtaForBanner) which sets inline `bottom` value
   above the cookie banner. Z-index ensures banner overlays sticky if any visual
   overlap happens during animation. */

/* ---------- 5. CARD VARIANTS (4+ styles for differentiation) ---------- */

/* Variant A: Borderless card — pure typography, no box */
.card-borderless {
  background: transparent;
  border: 0;
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
}
.card-borderless:hover {
  background: transparent;
  border-color: var(--accent-2);
  transform: none;
}
.card-borderless .card-icon {
  background: transparent;
  border: 1px solid var(--accent-2);
}

/* Variant B: Filled card — cyan-tinted background, no border */
.card-filled {
  background: rgba(6, 182, 212, 0.08);
  border: 1px solid rgba(6, 182, 212, 0.18);
  border-radius: 12px;
}
.card-filled:hover {
  background: rgba(6, 182, 212, 0.13);
  border-color: var(--accent-2);
}

/* Variant C: Outline-only — sharp corners, no fill */
.card-outline {
  background: transparent;
  border: 1px solid var(--line-2);
  border-radius: 4px;
}
.card-outline:hover {
  background: transparent;
  border-color: var(--accent-2);
  box-shadow: inset 0 0 0 1px var(--accent-2);
}

/* Variant D: Hero card — full-width, big number/icon */
.card-hero {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 2rem 1.75rem;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(6, 182, 212, 0.05)), var(--bg-3);
  border: 1px solid var(--line-2);
  border-radius: 14px;
  align-items: center;
}
@media (min-width: 768px) {
  .card-hero { grid-template-columns: auto 1fr; gap: 2rem; padding: 2.5rem 2.25rem; }
}
.card-hero .card-hero-num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(3rem, 6vw, 4.5rem);
  line-height: 1;
  color: var(--accent-2);
  letter-spacing: -0.03em;
}
.card-hero h3 {
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  margin: 0 0 0.5rem;
}

/* Variant E: Quote card — italic, no border, indented */
.card-quote {
  background: transparent;
  border: 0;
  border-left: 3px solid var(--accent-2);
  border-radius: 0;
  padding: 0.75rem 1.5rem;
  font-style: italic;
}
.card-quote:hover {
  background: rgba(6, 182, 212, 0.04);
  transform: none;
  border-color: var(--accent-2);
}
.card-quote h3 { font-style: normal; font-size: 1rem; color: var(--text); }
.card-quote p { font-style: italic; color: var(--text); font-size: 1rem; }
.card-quote cite {
  display: block;
  font-style: normal;
  font-size: 0.82rem;
  color: var(--text-3);
  margin-top: 0.6rem;
  font-family: 'JetBrains Mono', monospace;
}

/* ---------- 6. FAQ accordion-compact mode (less vertical sprawl) ---------- */
/* For pages with >5 FAQ pairs, collapse into <details> after first 5 */
.faq-zig-collapsed {
  margin-top: 1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg-2);
  overflow: hidden;
}

.faq-zig-collapsed > summary {
  cursor: pointer;
  padding: 1rem 1.25rem;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  font-size: 0.95rem;
}

.faq-zig-collapsed > summary::-webkit-details-marker { display: none; }

.faq-zig-collapsed > summary::after {
  content: '+ rozbaliť';
  font-family: 'JetBrains Mono', monospace;
  color: var(--accent-2);
  font-size: 0.82rem;
}

.faq-zig-collapsed[open] > summary::after { content: '− zbaliť'; }

.faq-zig-collapsed[open] > summary {
  border-bottom: 1px solid var(--line);
}

.faq-zig-collapsed .faq-zig {
  margin: 1rem 1.25rem 1.5rem;
}

/* ---------- 7. Aktívne section spacing helper classes ---------- */

.s-light { /* shortcut to add light-bg to any container */
  background: #F8FAFC;
  color: #0F172A;
}

/* ---------- 8. Container max-width slightly tighter for breathing ---------- */
@media (min-width: 1024px) {
  .seo-content .container { max-width: 920px; }
}

/* ---------- 9. Big-stat extra room above and below for desktop ---------- */
@media (min-width: 768px) {
  .big-stat,
  .pull-quote,
  .respite,
  .brand-strip {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
}

/* ---------- 10. Mobile compaction — tighten layouts on < 640px ---------- */
@media (max-width: 639px) {
  /* Services card grid: 9 cards stacked = too long. Show 2-col on phones. */
  .cards { grid-template-columns: 1fr 1fr; gap: 0.65rem; }
  /* ...but spec-heavy cards (with param tables) need full width so SK labels don't break mid-word */
  .cards:has(.specs) { grid-template-columns: 1fr; }
  .card,
  .section-light .card { padding: 0.85rem 0.75rem; gap: 0.4rem; }
  .card h3,
  .section-light .card h3 { font-size: 0.88rem; line-height: 1.3; }
  .card p,
  .section-light .card p { font-size: 0.78rem; line-height: 1.4; }
  .card-icon,
  .section-light .card-icon { width: 34px; height: 34px; }
  .card-icon svg,
  .section-light .card-icon svg { width: 16px; height: 16px; }
  .card-link,
  .section-light .card-link { font-size: 0.75rem; }

  /* Feature rows: shrink image + tight text gap on mobile */
  .feature-rows { gap: 2rem; }
  .feature-row { gap: 1.25rem; }
  .feature-img { aspect-ratio: 16 / 10; }
  .feature-row h2 { font-size: 1.35rem; margin-bottom: 0.6rem; }
  .feature-row p { font-size: 0.95rem; margin-bottom: 0.75rem; }
  .bullets { margin-bottom: 1rem; gap: 0.4rem; }
  .bullets li { font-size: 0.9rem; }

  /* Tighten section padding on mobile */
  section { padding: 2.5rem 0; }

  /* Tighten SEO content on mobile */
  .seo-content h2 { font-size: 1.4rem; margin-top: 1.25rem; }
  .seo-content h3 { font-size: 1.05rem; }
  .seo-content p { font-size: 0.95rem; line-height: 1.6; margin-bottom: 0.7rem; }
  .section-ribbon { margin-top: 1.75rem; }

  /* Tighten USP on mobile */
  .usp { padding: 1.25rem; }
  .usp-grid { gap: 1rem; }

  /* Tighten timeline cards + 2-col on mobile (8 cards × 1 = too tall) */
  .timeline-h { grid-template-columns: 1fr 1fr; gap: 0.55rem; }
  .timeline-step { padding: 0.7rem 0.75rem; }
  .timeline-step h4 { font-size: 0.85rem; line-height: 1.25; }
  .timeline-step p { font-size: 0.75rem; line-height: 1.4; }
  .timeline-step-badge { font-size: 0.65rem; padding: 0.15rem 0.45rem; }

  /* Tighten usecase grid + show 2-col on small mobile (6 cards × 1-col = too tall) */
  .usecase-icon-grid { grid-template-columns: 1fr 1fr; gap: 0.55rem; }
  .usecase-icon { padding: 0.75rem 0.8rem; gap: 0.3rem; }
  .usecase-icon h4 { font-size: 0.85rem; line-height: 1.25; }
  .usecase-icon p { font-size: 0.75rem; line-height: 1.4; }
  .usecase-icon-circle { width: 30px; height: 30px; }
  .usecase-icon-circle svg { width: 15px; height: 15px; }
  .usecase-icon-cta { font-size: 0.75rem; }

  /* Tighten FAQ zig items */
  .faq-zig-item { padding: 0.85rem 1rem; }
  .faq-zig-q h4 { font-size: 0.95rem; }
  .faq-zig-a { font-size: 0.88rem; }
  .faq-zig { gap: 0.5rem; }

  /* Tighten brand-strip */
  .brand-strip-track { gap: 0.6rem 1.25rem; }
  .brand-strip-item { font-size: 0.92rem; }
  .brand-strip-item .brand-strip-meta { font-size: 0.65rem; }

  /* Tighten next-steps */
  .next-step { padding: 0.95rem 1rem; }
  .next-step-title { font-size: 0.92rem; }
  .next-step-sub { font-size: 0.82rem; }
  .next-steps { gap: 0.55rem; }

  /* Tighten banner-cta */
  .banner-cta { padding: 1.5rem 1.25rem; }
  .banner-cta h3 { font-size: 1.15rem; }
  .banner-cta p { font-size: 0.9rem; }

  /* Tighten cta-block */
  .cta-block { padding: 1.5rem 1.25rem; }
  .cta-block h2 { font-size: 1.3rem; }
  .cta-block p { font-size: 0.9rem; margin-bottom: 1.25rem; }

  /* Tighten big-stat caption */
  .big-stat-caption { font-size: 0.88rem; }
  .big-stat-eyebrow { font-size: 0.7rem; }

  /* Tighten footer */
  .site-footer { padding-top: 2rem; }
  .footer-grid { gap: 1.25rem; margin-bottom: 1.25rem; }

  /* Tighten hero */
  .hero { padding-top: 2.5rem; padding-bottom: 2rem; }
  .hero-sub { font-size: 0.95rem; margin-bottom: 1.25rem; }
  .hero-grid { gap: 1.5rem; }
}

/* ---------- 11. Compress vs-split and respite text ---------- */
@media (max-width: 767px) {
  .vs-side { padding: 1rem 1rem; }
  .vs-side h4 { margin-bottom: 0.6rem; font-size: 1rem; }
  .vs-side ul li { font-size: 0.88rem; margin-bottom: 0.45rem; }

  .respite p { font-size: 0.92rem; margin-bottom: 0.7rem; }
  .respite h2 { font-size: 1.3rem !important; }

  .split-asym { gap: 1rem; margin: 1.5rem 0; }
  .split-asym-visual { padding: 1.25rem 1rem; min-height: 160px; }
  .split-asym-visual .stat-mega { font-size: 2.5rem; }
}

/* ============================================================
   V5 — BREATHING OVERHAUL (2026-06-02)
   Override agent v4 compression. Igor preferuje dýchanie pred
   krátkou stránkou. Aplikované cez !important kde treba prebiť
   skoršie definície.
   ============================================================ */

/* CONTAINER — viac horizontal breathing */
.container {
  padding-left: 32px;
  padding-right: 32px;
}
@media (min-width: 1024px) {
  .container {
    padding-left: 48px;
    padding-right: 48px;
  }
}

/* SECTION block padding — major rhythm */
section {
  padding-block: 96px !important;
}
@media (min-width: 768px) {
  section {
    padding-block: 128px !important;
  }
}

/* Stats/brands utility strips — primerane viac padding */
.stats { padding: 56px 0 !important; }
.brands { padding: 64px 0 !important; }

/* Hero — viac priestoru pre dýchanie nadpisu */
.hero {
  padding-top: 88px !important;
  padding-bottom: 96px !important;
}
@media (min-width: 1024px) {
  .hero {
    padding-top: 112px !important;
    padding-bottom: 120px !important;
  }
  .hero-grid { gap: 4rem; }
  .hero-sub { font-size: 1.05rem; margin-bottom: 2rem; }
}

/* H1/H2/H3 — VŠETKY potrebujú viac priestoru okolo seba */
h1 {
  margin-top: 0;
  margin-bottom: 32px !important;
  line-height: 1.15;
}
h2 {
  margin-top: 24px;
  margin-bottom: 32px !important;
  line-height: 1.2;
}
h3 {
  margin-top: 32px;
  margin-bottom: 16px !important;
  line-height: 1.3;
}

/* SEO content typography — najvačší breathing fix */
.seo-content {
  padding-block: 96px !important;
}
.seo-content h2 {
  margin-top: 96px !important;
  margin-bottom: 32px !important;
  font-size: clamp(1.5rem, 2.5vw, 1.95rem) !important;
  line-height: 1.2;
}
.seo-content > .container:first-of-type h2:first-child,
.seo-content .container:first-child h2 {
  margin-top: 0 !important;
}
.seo-content h3 {
  margin-top: 56px !important;
  margin-bottom: 20px !important;
  line-height: 1.3;
}
.seo-content p {
  margin-bottom: 20px !important;
  line-height: 1.7;
}
.seo-content ul, .seo-content ol {
  margin-bottom: 24px;
}
.seo-content li {
  margin-bottom: 12px !important;
  line-height: 1.65;
}

/* Containers in seo-content — viac vertical gap */
.seo-content .container {
  padding-block: 32px;
}
.seo-content .container + .container {
  margin-top: 48px !important;
}

/* Section ribbon — viac priestoru pred a po */
.section-ribbon {
  margin-top: 0 !important;
  margin-bottom: 24px !important;
  display: inline-block;
}

/* Big-stat / banner-cta / pull-quote / respite / brand-strip — full-bleed sekcie */
.big-stat {
  padding-block: 80px !important;
  margin-block: 64px !important;
}
.big-stat-eyebrow { margin-bottom: 20px; }
.big-stat-number { font-size: clamp(4rem, 10vw, 7rem) !important; }
.big-stat-caption { font-size: 1rem; margin-top: 20px !important; }
.big-stat-actions { margin-top: 32px !important; }

.banner-cta {
  padding-block: 72px !important;
  padding-inline: 40px;
  margin-block: 64px !important;
}
.banner-cta-eyebrow { margin-bottom: 16px; }
.banner-cta h2 { margin-bottom: 20px; }
.banner-cta-actions { margin-top: 32px !important; }

.pull-quote {
  padding-block: 80px !important;
  margin-block: 80px !important;
}
.pull-quote blockquote { font-size: clamp(1.25rem, 2.6vw, 1.8rem); }
.pull-quote cite { margin-top: 32px !important; }

.respite {
  padding-block: 96px !important;
  margin-block: 64px !important;
}
.respite-eyebrow { margin-bottom: 20px; }
.respite-inner h2 { margin-bottom: 32px !important; }
.respite-inner p { margin-bottom: 32px !important; }

.brand-strip {
  padding-block: 56px !important;
  margin-block: 48px !important;
}
.brand-strip-label { margin-bottom: 32px !important; }

/* VS split — viac padding v každej polovici */
.vs-split { margin-block: 56px !important; gap: 32px; }
.vs-side { padding: 40px !important; }
.vs-side h4 { margin-bottom: 24px; font-size: 1.25rem; }
.vs-side ul li { margin-bottom: 16px; }

/* Split-asym — Typy UPS karty */
.split-asym { margin-block: 56px !important; gap: 40px; padding-block: 16px; }
.split-asym-text { padding: 24px 0; }
.split-asym-text h3 { margin-top: 0 !important; margin-bottom: 16px !important; }
.split-asym-text p { margin-bottom: 12px; }

/* Timeline horizontal */
.timeline-h { margin-block: 56px !important; gap: 32px; }
.timeline-step { padding: 32px 24px !important; }
.timeline-step h4 { margin-top: 16px; margin-bottom: 12px; }

/* FAQ zigzag */
.faq-zig { margin-block: 56px !important; }
.faq-zig-item { padding: 40px !important; margin-bottom: 32px !important; gap: 32px; }
.faq-zig-item h3 { margin-top: 0 !important; margin-bottom: 16px !important; }

/* Glossary tags — viac priestoru okolo */
.glossary-tags {
  margin-block: 40px !important;
  gap: 12px !important;
}
.glossary-tag { padding: 12px 20px !important; }

/* Use case grid */
.usecase-icon-grid {
  margin-block: 56px !important;
  gap: 32px;
}
.usecase-icon-item { padding: 32px 24px !important; }
.usecase-icon-item h3 { margin-top: 16px; margin-bottom: 12px; }

/* Compare table */
.compare-table { margin-block: 40px !important; }
.compare-table th, .compare-table td { padding: 16px 20px !important; }

/* Next steps tiles */
.next-steps { margin-block: 56px !important; gap: 24px; }
.next-step { padding: 32px 24px !important; }
.next-step h4 { margin-top: 12px; margin-bottom: 12px; }

/* USP grid + services grid — viac gap */
.usp-grid, .services-grid {
  gap: 32px !important;
  margin-top: 48px;
}
.usp-grid > *, .services-grid > * {
  padding: 32px 28px !important;
}
.usp-grid h3, .services-grid h3 {
  margin-top: 0 !important;
  margin-bottom: 12px !important;
}

/* Mobile — proporčne menej ale stále dýchajúce */
@media (max-width: 767px) {
  section { padding-block: 64px !important; }
  .hero { padding-top: 56px !important; padding-bottom: 64px !important; }
  .seo-content { padding-block: 64px !important; }
  .seo-content h2 { margin-top: 64px !important; margin-bottom: 24px !important; }
  .seo-content h3 { margin-top: 40px !important; margin-bottom: 16px !important; }
  .big-stat { padding-block: 56px !important; margin-block: 48px !important; }
  .banner-cta { padding-block: 56px !important; padding-inline: 24px; margin-block: 48px !important; }
  .pull-quote { padding-block: 56px !important; margin-block: 56px !important; }
  .respite { padding-block: 64px !important; margin-block: 48px !important; }
  .brand-strip { padding-block: 40px !important; margin-block: 32px !important; }
  .vs-split, .split-asym, .timeline-h, .faq-zig, .usecase-icon-grid, .next-steps { margin-block: 40px !important; }
  .vs-side, .faq-zig-item, .usecase-icon-item, .next-step, .timeline-step { padding: 24px !important; }
  .container { padding-left: 20px; padding-right: 20px; }
}

/* ============================================================
   V6 — TYPY UPS TIER CARDS / STEPPER / BRAND CARDS  (2026-06-02)
   Igor: "rovnako široké, nezaujímavé, strohé ako tabuľka"
   ============================================================ */

/* ---------- TIER GRID — Typy UPS (3 cards, On-line FAVORIT) ---------- */
.tier-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-block: 64px !important;
  align-items: stretch;
}
@media (min-width: 900px) {
  .tier-grid {
    grid-template-columns: 1fr 1fr 1.15fr;
    gap: 24px;
    align-items: stretch;
  }
}

.tier-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 36px 28px 32px;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.tier-card:hover { transform: translateY(-4px); border-color: var(--line-2); }

.tier-card.tier-basic { /* off-line */ }
.tier-card.tier-mid { /* line-interactive */ }
.tier-card.tier-pro {
  background: linear-gradient(155deg, rgba(6, 182, 212, 0.12), rgba(37, 99, 235, 0.06)), var(--bg-3);
  border: 1px solid rgba(6, 182, 212, 0.45);
  box-shadow: 0 0 0 1px rgba(6, 182, 212, 0.18), 0 32px 64px -32px rgba(6, 182, 212, 0.45);
  transform: translateY(-4px);
}
@media (min-width: 900px) {
  .tier-card.tier-pro { transform: translateY(-12px); }
}

.tier-ribbon {
  position: absolute;
  top: 16px;
  right: -42px;
  background: var(--accent-2);
  color: #0F1A2E;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  padding: 6px 50px;
  transform: rotate(35deg);
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.tier-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-3);
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.tier-card.tier-pro .tier-eyebrow { color: var(--accent-2); }

.tier-card h3 {
  margin: 0 0 10px !important;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.45rem;
  line-height: 1.2;
  color: var(--text);
}

.tier-card .tier-tagline {
  color: var(--text-2);
  font-size: 0.95rem;
  margin-bottom: 24px;
  line-height: 1.5;
}

/* Big stat per card (prepínací čas) */
.tier-stat {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(2.8rem, 5.5vw, 4rem);
  line-height: 0.95;
  color: var(--accent-2);
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}
.tier-card.tier-basic .tier-stat { color: #94A3B8; }
.tier-card.tier-mid .tier-stat { color: #60A5FA; }
.tier-card.tier-pro .tier-stat { color: var(--accent-2); text-shadow: 0 0 32px rgba(6, 182, 212, 0.4); }

.tier-stat-unit {
  display: block;
  font-size: 0.78rem;
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-3);
  margin-top: 4px;
  margin-bottom: 24px;
}

/* SVG diagram per card */
.tier-diagram {
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed var(--line);
  border-radius: 10px;
  padding: 16px 12px;
  margin-bottom: 24px;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tier-card.tier-pro .tier-diagram {
  background: rgba(6, 182, 212, 0.05);
  border-color: rgba(6, 182, 212, 0.3);
}
.tier-diagram svg {
  width: 100%;
  height: 100%;
  max-width: 280px;
}

/* Features list */
.tier-features {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}
.tier-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-2);
  line-height: 1.5;
  margin-bottom: 10px !important;
}
.tier-features li::before {
  content: '';
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  margin-top: 3px;
  border-radius: 50%;
  background: rgba(6, 182, 212, 0.18);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='9' viewBox='0 0 24 24' fill='none' stroke='%2306B6D4' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.tier-card.tier-basic .tier-features li::before {
  background-color: rgba(124, 138, 166, 0.18);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='9' viewBox='0 0 24 24' fill='none' stroke='%237C8AA6' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}

.tier-usecase {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-3);
  border-top: 1px solid var(--line);
  padding-top: 14px;
  margin-top: auto;
  line-height: 1.5;
}
.tier-card.tier-pro .tier-usecase { color: var(--accent-2); border-top-color: rgba(6, 182, 212, 0.25); }

/* ---------- STEPPER — Krok za krokom (sticky left + content right) ---------- */
.stepper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-block: 56px !important;
  position: relative;
}
@media (min-width: 960px) {
  .stepper {
    grid-template-columns: 220px 1fr;
    gap: 56px;
    align-items: start;
  }
}

.stepper-sidebar {
  position: relative;
}
@media (min-width: 960px) {
  .stepper-sidebar {
    position: sticky;
    top: 96px;
    align-self: start;
  }
}

.stepper-sidebar-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-3);
  margin-bottom: 18px;
  display: block;
}

.stepper-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 960px) {
  .stepper-nav { grid-template-columns: 1fr; gap: 4px; }
}

.stepper-nav li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.82rem;
  color: var(--text-3);
  border-left: 2px solid var(--line);
  border-radius: 0 6px 6px 0;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.stepper-nav li a:hover { color: var(--accent-2); border-left-color: var(--accent-2); background: rgba(6, 182, 212, 0.06); }
.stepper-nav .step-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line-2);
  flex-shrink: 0;
}

.stepper-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.stepper-item {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent-2);
  border-radius: 0 14px 14px 0;
  padding: 28px 32px;
  position: relative;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.stepper-item:hover {
  transform: translateX(4px);
  border-color: var(--line-2);
  border-left-color: var(--accent-2);
}

.stepper-num {
  position: absolute;
  top: 24px;
  right: 32px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 1;
  color: rgba(6, 182, 212, 0.18);
  letter-spacing: -0.03em;
}

.stepper-item h4 {
  margin: 0 0 12px !important;
  padding-right: 80px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  color: var(--text);
  line-height: 1.3;
}
.stepper-item p {
  margin: 0 !important;
  color: var(--text-2);
  font-size: 0.95rem;
  line-height: 1.6;
  padding-right: 60px;
}

@media (max-width: 959px) {
  .stepper-num { font-size: 2rem; top: 20px; right: 20px; }
  .stepper-item { padding: 24px 22px; }
  .stepper-item h4 { padding-right: 60px; font-size: 1.05rem; }
  .stepper-item p { padding-right: 0; }
}

/* ---------- BRAND CARDS — Porovnanie značiek ---------- */
.brand-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-block: 56px !important;
}
@media (min-width: 640px) { .brand-cards { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .brand-cards { grid-template-columns: repeat(4, 1fr); } }

.brand-card {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.brand-card:hover { transform: translateY(-4px); border-color: var(--line-2); }

.brand-card.brand-favorit {
  background: linear-gradient(160deg, rgba(6, 182, 212, 0.1), rgba(37, 99, 235, 0.05)), var(--bg-3);
  border: 1px solid rgba(6, 182, 212, 0.45);
  box-shadow: 0 0 0 1px rgba(6, 182, 212, 0.18), 0 24px 48px -24px rgba(6, 182, 212, 0.4);
}

.brand-card-ribbon {
  position: absolute;
  top: 14px;
  right: -36px;
  background: var(--accent-2);
  color: #0F1A2E;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  padding: 5px 46px;
  transform: rotate(35deg);
  text-transform: uppercase;
}

.brand-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 6px;
  white-space: nowrap;
}
.brand-card.brand-favorit .brand-logo { color: var(--accent-2); }

.brand-tagline {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-3);
  margin-bottom: 16px;
}

.brand-stars {
  font-size: 1.05rem;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
  color: #FBBF24;
  line-height: 1;
}
.brand-stars .star-off { color: var(--line-2); }

.brand-features {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  flex-grow: 1;
}
.brand-features li {
  font-size: 0.86rem;
  color: var(--text-2);
  line-height: 1.45;
  margin-bottom: 10px !important;
  display: flex;
  flex-direction: column;
}
.brand-features li b {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-3);
  margin-bottom: 2px;
}

.brand-price {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: var(--text);
  margin-bottom: 16px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  text-align: center;
}
.brand-price .price-label {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-3);
  margin-bottom: 4px;
}
.brand-card.brand-favorit .brand-price { background: rgba(6, 182, 212, 0.08); }

.brand-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-2);
  border-top: 1px solid var(--line);
  padding-top: 14px;
  transition: gap 0.2s;
}
.brand-cta:hover { gap: 12px; color: var(--text); }
.brand-cta svg { width: 13px; height: 13px; }

/* Mobile tweaks */
@media (max-width: 767px) {
  .tier-grid { gap: 20px; margin-block: 40px !important; }
  .tier-card { padding: 28px 22px 24px; }
  .tier-card.tier-pro { transform: none; }
  .tier-stat { font-size: 2.5rem; }
  .stepper { margin-block: 40px !important; gap: 20px; min-width: 0; }
  .stepper-sidebar { min-width: 0; width: 100%; }
  .stepper-nav { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .stepper-nav li { min-width: 0; }
  .stepper-nav li a {
    padding: 8px 10px;
    font-size: 0.72rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border-left-width: 2px;
  }
  .stepper-content { min-width: 0; }
  .stepper-item { padding: 22px 20px; min-width: 0; }
  .stepper-item h4 { font-size: 1rem; padding-right: 50px; }
  .stepper-num { font-size: 1.8rem; top: 18px; right: 18px; }
  .brand-cards { gap: 18px; margin-block: 40px !important; }
  .brand-card { padding: 24px 20px 20px; }
  .brand-logo { font-size: 1.6rem; }
  /* Tier ribbon must not extend past card horizontally on mobile */
  .tier-ribbon { right: -38px; padding: 5px 42px; font-size: 0.65rem; }
}

/* Tablet tweaks */
@media (min-width: 768px) and (max-width: 959px) {
  .stepper { grid-template-columns: 1fr; gap: 32px; }
  .stepper-nav { grid-template-columns: repeat(4, 1fr); gap: 6px; }
  .stepper-nav li a { padding: 8px 12px; font-size: 0.78rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
}

/* ============================================================
   V7 — FULL WIDTH UTILIZATION (2026-06-02)
   Container 1280 → 1440-1520, SEO 960 → 1280.
   Igor: "môžeš využiť aj celú šírku stránky nech je to dynamické"
   ============================================================ */

.container {
  max-width: 1440px !important;
}
@media (min-width: 1600px) {
  .container { max-width: 1520px !important; }
}

/* SEO content — bola 960px, teraz 1280px pre breathing + width */
.seo-content .container {
  max-width: 1280px !important;
}

/* Tier-grid (Topológie) — 3 karty väčšie, posledná elevated wider */
.tier-grid {
  max-width: 1400px !important;
  gap: 32px !important;
}
@media (min-width: 1280px) {
  .tier-grid {
    grid-template-columns: 1fr 1fr 1.25fr !important;
  }
}

/* Stepper — sidebar zostáva, content vpravo dostane viac priestoru */
.stepper {
  max-width: 1400px !important;
  gap: 56px !important;
}

/* Brand cards (Porovnanie) — 4 karty cez celú šírku */
.brand-cards {
  max-width: 1440px !important;
  gap: 28px !important;
}

/* Use case grid — 6 cards 3-col cez wider plochu */
.usecase-icon-grid {
  max-width: 1400px !important;
  gap: 32px !important;
}
@media (min-width: 1280px) {
  .usecase-icon-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

/* Hero — asymmetric ratio 1.3 : 1 pre dramatic feel */
.hero .container {
  max-width: 1500px !important;
}
@media (min-width: 1280px) {
  .hero-grid {
    grid-template-columns: 1.3fr 1fr !important;
    gap: 80px !important;
  }
}

/* VS split + FAQ zigzag + glossary + next-steps + compare table — všetky širšie */
.vs-split { max-width: 1280px !important; gap: 40px !important; }
.faq-zig { max-width: 1280px !important; }
.glossary-tags { max-width: 1280px !important; gap: 14px !important; }
.next-steps { max-width: 1400px !important; gap: 32px !important; }
.compare-table { max-width: 1280px !important; }

/* Pull-quote + respite — wider content limit pre čítavosť */
.pull-quote blockquote { max-width: 1100px !important; margin-left: auto !important; margin-right: auto !important; }
.respite-inner { max-width: 1100px !important; }

/* Brand strip already full-bleed — len wider tracker */
.brand-strip .container { max-width: 1440px !important; }
.brand-strip-track { gap: 56px !important; }

/* Banner CTA — wider dramatic full row */
.banner-cta { max-width: 1400px !important; }

/* Pri 1600+ ešte dynamickejšie spread */
@media (min-width: 1600px) {
  .tier-grid, .brand-cards, .usecase-icon-grid, .next-steps { max-width: 1520px !important; }
  .hero .container { max-width: 1600px !important; }
  .seo-content .container { max-width: 1320px !important; }
}

/* ============================================================
   V9 — FAQ klasický accordion (<details>/<summary>)
   Igor: "zmen QA sekciu na klasicku rozbalovaciu"
   ============================================================ */

.faq-accordion {
  max-width: 900px;
  margin: 56px auto !important;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.faq-item[open] {
  border-color: rgba(6, 182, 212, 0.45);
  background: linear-gradient(180deg, rgba(6, 182, 212, 0.04), transparent 60%), var(--bg-2);
}

.faq-accordion details summary {
  list-style: none !important;
  list-style-type: none !important;
  cursor: pointer;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.4;
  user-select: none;
  transition: color 0.2s ease;
}

.faq-accordion details summary::-webkit-details-marker {
  display: none !important;
  -webkit-appearance: none !important;
}
.faq-accordion details summary::marker {
  display: none !important;
  content: "" !important;
}
.faq-accordion details summary::before,
.faq-accordion .faq-item summary::after,
.faq-accordion .faq-item[open] summary::after {
  display: none !important;
  content: none !important;
}

/* ============================================================
   V10 — Inline-CTA visibility boost (2026-06-02)
   Igor: "tento text zaniká v kontexte stránky, treba zvýrazniť"
   ============================================================ */

.seo-content .inline-cta,
.inline-cta {
  position: relative;
  display: flex !important;
  align-items: center !important;
  gap: 18px !important;
  flex-wrap: wrap !important;
  margin: 48px 0 !important;
  padding: 24px 28px 24px 32px !important;
  background:
    linear-gradient(135deg, rgba(6, 182, 212, 0.18) 0%, rgba(6, 182, 212, 0.08) 100%) !important;
  border: 1px solid rgba(6, 182, 212, 0.45) !important;
  border-left: 5px solid var(--accent-2) !important;
  border-radius: 12px !important;
  font-size: 1.05rem !important;
  color: var(--text) !important;
  line-height: 1.55 !important;
  box-shadow:
    0 4px 24px rgba(6, 182, 212, 0.12),
    0 0 0 1px rgba(6, 182, 212, 0.05) inset;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.seo-content .inline-cta::after,
.inline-cta::after {
  content: '';
  position: absolute;
  top: 16px;
  right: 18px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 14px 14px 0;
  border-color: transparent var(--accent-2) transparent transparent;
  opacity: 0.85;
}

.inline-cta:hover {
  box-shadow:
    0 8px 32px rgba(6, 182, 212, 0.25),
    0 0 0 1px rgba(6, 182, 212, 0.15) inset;
  transform: translateY(-1px);
}

.inline-cta .inline-cta-icon {
  width: 44px !important;
  height: 44px !important;
  flex-shrink: 0;
  border-radius: 50% !important;
  background: var(--accent-2) !important;
  color: #0F1A2E !important;
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 6px rgba(6, 182, 212, 0.15);
  animation: inline-cta-pulse 2.4s ease-in-out infinite;
}

.inline-cta .inline-cta-icon svg {
  width: 22px;
  height: 22px;
  stroke: #0F1A2E;
  stroke-width: 2.4;
}

@keyframes inline-cta-pulse {
  0%, 100% { box-shadow: 0 0 0 6px rgba(6, 182, 212, 0.15); }
  50% { box-shadow: 0 0 0 10px rgba(6, 182, 212, 0.05); }
}

.inline-cta strong {
  color: var(--text) !important;
  font-weight: 700;
  font-size: 1.1rem;
  display: block;
  margin-bottom: 4px;
}

.inline-cta a {
  color: var(--accent-2) !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  border-bottom: 1.5px solid rgba(6, 182, 212, 0.4);
  transition: border-bottom-color 0.2s ease;
}

.inline-cta a:hover {
  border-bottom-color: var(--accent-2);
}

@media (max-width: 640px) {
  .inline-cta { padding: 20px 22px 20px 24px !important; gap: 14px !important; }
  .inline-cta .inline-cta-icon { width: 38px !important; height: 38px !important; }
  .inline-cta::after { display: none; }
  .inline-cta strong { font-size: 1.02rem; }
}

/* ============================================================
   V11 — Next-step tiles VISUAL HIERARCHY fix (2026-06-02)
   Igor: "sekcie, nadpisy a súvisiaci text nie je spravne vizuálne
          definovaný. Nie je jasné čo k čomu patrí"
   Root cause: span elementy bez display:block → text inline flow
   ============================================================ */

.next-step {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px;
  padding: 28px 26px 24px 26px !important;
  background: var(--bg-2) !important;
  border: 1px solid var(--line) !important;
  border-radius: 14px;
  color: var(--text);
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

.next-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--accent-2);
  opacity: 0.5;
  transition: opacity 0.2s ease;
}

.next-step:hover {
  border-color: rgba(6, 182, 212, 0.5) !important;
  transform: translateY(-3px);
  background: var(--bg-3) !important;
  box-shadow: 0 12px 32px rgba(6, 182, 212, 0.15);
}

.next-step:hover::before { opacity: 1; }

.next-step-eyebrow {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
  padding: 6px 12px;
  background: rgba(6, 182, 212, 0.12);
  border: 1px solid rgba(6, 182, 212, 0.25);
  border-radius: 999px;
  color: var(--accent-2);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  align-self: flex-start;
}

.next-step-eyebrow svg { width: 13px; height: 13px; }

.next-step-title {
  display: block !important;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700 !important;
  font-size: 1.25rem !important;
  color: var(--text) !important;
  line-height: 1.25;
  margin-top: 8px;
  margin-bottom: 4px !important;
}

.next-step-sub {
  display: block !important;
  color: var(--text-2) !important;
  font-size: 0.95rem !important;
  line-height: 1.55;
  margin-bottom: 8px;
}

.next-step-arrow {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  margin-top: auto !important;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 0.92rem !important;
  font-weight: 600 !important;
  color: var(--accent-2) !important;
  align-self: stretch;
  justify-content: space-between;
}

.next-step-arrow svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.next-step:hover .next-step-arrow svg {
  transform: translateX(4px);
}

/* Variant: havária = crisis-red accent namiesto cyan */
.next-step[href^="tel:"]::before { background: var(--accent-3, #DC2626); opacity: 0.7; }
.next-step[href^="tel:"]:hover::before { opacity: 1; }
.next-step[href^="tel:"] .next-step-eyebrow {
  background: rgba(220, 38, 38, 0.15);
  border-color: rgba(220, 38, 38, 0.4);
  color: #FCA5A5;
}
.next-step[href^="tel:"] .next-step-arrow { color: #FCA5A5 !important; }

@media (max-width: 768px) {
  .next-step { padding: 22px 20px 20px 20px !important; gap: 10px; }
  .next-step-title { font-size: 1.1rem !important; }
  .next-step-sub { font-size: 0.9rem !important; }
}

/* ============================================================
   V12 — Hide section-ribbon "Sekcia N · ..." labels (2026-06-02)
   Igor: "sú tam potrebné tieto názvy? # Sekcia 07 · Slovník..."
   Developer-style indikátor bez user-facing hodnoty.
   ============================================================ */
.section-ribbon {
  display: none !important;
}

/* ============================================================
   V13 — STRATEGIC WIDTH PER CONTENT TYPE (2026-06-02)
   Igor: "Nie každá sekcia je vhodná na full width.
   Analyzuj kde by sa hodila aká šírka."
   ============================================================ */

/* Reading text (paragraphs, lists, H2/H3) — narrow column 820px max */
.seo-content .container {
  max-width: 1400px !important;  /* container širší, ale content vnútri sa zúži */
}

.seo-content > .container > h2,
.seo-content > .container > h3,
.seo-content > .container > p,
.seo-content > .container > ul,
.seo-content > .container > ol,
.seo-content > .container > blockquote {
  max-width: 820px;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Headings ostávajú centered v container ale narrow column */
.seo-content > .container > h2 {
  margin-top: 96px !important;
  margin-bottom: 32px !important;
}
.seo-content > .container > h2:first-child,
.seo-content > .container:first-child > h2:first-child {
  margin-top: 0 !important;
}

/* FAQ accordion — medium-narrow (scan-friendly Q/A) */
.faq-accordion {
  max-width: 880px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Glossary tags — medium-wide pre tag cloud breathing */
.glossary-tags {
  max-width: 1100px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* VS-split (2-col content) — narrow than tier-grid */
.vs-split {
  max-width: 1100px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Pull-quote — centered editorial */
.pull-quote {
  max-width: 1100px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.pull-quote blockquote {
  max-width: 900px !important;
}

/* Respite section — centered, narrow content */
.respite-inner {
  max-width: 920px !important;
}

/* Banner CTA — wide ale nie monštrum */
.banner-cta {
  max-width: 1200px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Compare table — narrow than originally (reading) */
.compare-table {
  max-width: 1100px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Inline-CTA — narrow ako reading content (semantic group) */
.inline-cta {
  max-width: 880px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Use cases grid (6 cards) — wide */
.usecase-icon-grid {
  max-width: 1400px !important;
}

/* Tier-grid (3 cards) — medium-wide */
.tier-grid {
  max-width: 1280px !important;
}

/* Brand cards (4 cards) — medium-wide */
.brand-cards {
  max-width: 1280px !important;
}

/* Next-steps (3 tiles) — wide */
.next-steps {
  max-width: 1280px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Stepper — medium */
.stepper {
  max-width: 1200px !important;
}

/* Hero asymmetric — wide */
.hero .container {
  max-width: 1440px !important;
}

/* Section-light wrappers — outer full, inner content narrow per type */
.section-light .container,
section .container {
  max-width: 1400px !important;
}

/* Specific section content readability — paragraphs in light sections */
.section-light .container > p,
.section-light .container > h2,
.section-light .container > h3 {
  max-width: 820px;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center;
}

/* Big stat, brand strip — keep full-bleed (already) */

/* Mobile — strip all max-widths to full viewport */
@media (max-width: 880px) {
  .seo-content > .container > *,
  .faq-accordion,
  .glossary-tags,
  .vs-split,
  .pull-quote,
  .pull-quote blockquote,
  .respite-inner,
  .banner-cta,
  .compare-table,
  .inline-cta,
  .usecase-icon-grid,
  .tier-grid,
  .brand-cards,
  .next-steps,
  .stepper {
    max-width: 100% !important;
  }
}

.faq-accordion details summary:hover {
  color: var(--accent-2);
}

.faq-q {
  flex: 1;
}

.faq-icon {
  position: relative;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  transition: transform 0.25s ease, border-color 0.2s ease, background 0.2s ease;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--accent-2);
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.faq-icon::before {
  width: 12px;
  height: 2px;
}

.faq-icon::after {
  width: 2px;
  height: 12px;
}

.faq-item[open] .faq-icon {
  border-color: var(--accent-2);
  background: rgba(6, 182, 212, 0.12);
  transform: rotate(90deg);
}

.faq-item[open] .faq-icon::after {
  opacity: 0;
  transform: scaleY(0);
}

.faq-answer {
  padding: 0 28px 24px 28px;
  color: var(--text-2);
  line-height: 1.65;
}

.faq-answer p {
  margin: 0 0 12px 0 !important;
}

.faq-answer p:last-child {
  margin-bottom: 0 !important;
}

.faq-answer a {
  color: var(--accent-2);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid rgba(6, 182, 212, 0.3);
}

.faq-answer a:hover {
  border-bottom-color: var(--accent-2);
}

@media (max-width: 640px) {
  .faq-accordion { gap: 10px; }
  .faq-item summary { padding: 18px 20px; font-size: 0.97rem; }
  .faq-answer { padding: 0 20px 20px 20px; font-size: 0.95rem; }
  .faq-icon { width: 24px; height: 24px; }
}

/* ============================================================
   V8 — Big-stat flex-column center + tier-stat ms inline unit
   ============================================================ */

/* Big-stat: explicit flex column center (text-align bez auto-margin nestačilo) */
.big-stat {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
}
.big-stat-eyebrow,
.big-stat-number,
.big-stat-caption,
.big-stat-actions {
  position: relative;
  z-index: 1;
}
.big-stat-caption {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center;
}
.big-stat-actions {
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Tier-stat: inline "ms" jednotka pri čísle ako "kVA" v big-stat */
.tier-stat-ms {
  font-size: 0.32em;
  font-weight: 600;
  color: inherit;
  opacity: 0.85;
  letter-spacing: 0;
  margin-left: 0.18em;
  vertical-align: baseline;
}
.tier-card.tier-pro .tier-stat-ms {
  color: var(--accent-2);
  opacity: 1;
}
.tier-stat-unit {
  display: block;
  font-size: 0.7rem !important;
  margin-top: 8px !important;
}
