/* ─────────────────────────────────────────────────────────────
   styles.css — Remba zdieľané štýly
   Zmeň tu = zmena platí na všetkých stránkach.
   ───────────────────────────────────────────────────────────── */

/* ── MONTSERRAT VARIABLE FONT (self-hosted) ───────────────────
   1 súbor pre VŠETKY weights 300-800 (variable font technology).
   12 separate weight files → 2 variable files (~100 KB total, predtým ~600 KB).
   `font-weight: 300 800` declaration range znamená že CSS `font-weight: 400/500/700/etc.`
   všetky používajú TENTO SÚBOR. */
@font-face { font-family: 'Montserrat'; font-style: normal; font-weight: 300 800; font-display: swap; src: url('/fonts/montserrat-variable-latin-ext.woff2') format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }
@font-face { font-family: 'Montserrat'; font-style: normal; font-weight: 300 800; font-display: swap; src: url('/fonts/montserrat-variable-latin.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }

/* ── PREMENNÉ ── */
:root {
  --red: #d2463c;
  --red-dark: #b33b32;
  --red-light: #e8574c;
  --dark: #1e1a17;
  --dark2: #2a2420;
  --mid: #3a3430;
  --gray: #6b6b6b;
  --light: #f5f4f2;
  --white: #fefefe;
  --font: 'Montserrat', sans-serif;
  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Montserrat', sans-serif;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
/* overflow-x: clip (nie hidden) — nerobí scroll context, nepoškodzuje position: sticky pre potomkov */
html { scroll-behavior: smooth; overflow-x: clip; }

/* ── Accessibility: viditeľný focus indikátor pre klávesnicovú navigáciu (WCAG 2.4.7) ── */
/* :focus-visible cieli LEN keyboard focus (Tab), nie mouse click — pre myš zostáva pôvodné správanie */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 2px;
  border-radius: 4px;
}
/* Skip link — viditeľný len pri keyboard focus */
.skip-to-content {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--dark);
  color: #fff;
  padding: 12px 20px;
  font-weight: 700;
  text-decoration: none;
  z-index: 9999;
  border-radius: 0 0 8px 0;
}
.skip-to-content:focus {
  left: 0;
}
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--dark);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
/* Cielené iba na hlavnú navigáciu (#mainNav) — generický `nav` selektor by inak ovplyvnil
   aj vnorené <nav class="breadcrumb"> v blog/show.php a hodil by ich pod fixed hlavnú nav. */
#mainNav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw;
  height: 72px;
  background: transparent;
  transition: background 0.4s, box-shadow 0.4s;
}
#mainNav.scrolled {
  background: rgba(30,26,23,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 1.6rem; font-weight: 800;
  color: var(--white); letter-spacing: -0.02em;
  text-decoration: none;
}
.nav-logo span { color: var(--red); }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,0.75); text-decoration: none;
  font-size: 0.9rem; font-weight: 400; letter-spacing: 0.01em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
/* Zvýšená špecifickosť (`.nav-links a.nav-cta`) — preraz `.nav-links a` styly bez !important */
.nav-links a.nav-cta {
  background: var(--red); color: var(--white);
  padding: 0.55rem 1.4rem; border-radius: 4px;
  font-weight: 500; transition: background 0.2s;
}
.nav-links a.nav-cta:hover { background: var(--red-light); color: var(--white); }
/* Hamburger je <button> — reset default button styles (border/bg/padding/font) */
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px; margin: 0;
  font: inherit; color: inherit;
}
.hamburger:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; border-radius: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: white; border-radius: 2px; transition: all 0.3s; }

/* ── SECTION LABEL ── */
.section-label {
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--red); margin-bottom: 1rem;
}

/* ── TLAČIDLÁ ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--red); color: white;
  padding: 0.85rem 1.65rem; border-radius: 8px;
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 600;
  letter-spacing: -0.005em;
  text-decoration: none; border: none; cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-primary:hover { background: var(--red-light); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(210,70,60,.28); }
.btn-primary svg { width: 16px; height: 16px; }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent; color: rgba(255,255,255,0.85);
  padding: 0.85rem 1.4rem; border-radius: 8px;
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 500;
  text-decoration: none; border: 1px solid rgba(255,255,255,0.22);
  cursor: pointer; transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.5); color: white; background: rgba(255,255,255,0.04); }

/* „Zavolať" — outlined s červenou ikonou, harmonizuje s tmavým hero */
.btn-call {
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: rgba(255,255,255,0.03);
  color: white;
  padding: 0.85rem 1.5rem; border-radius: 8px;
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 600;
  letter-spacing: -0.005em;
  text-decoration: none;
  border: 1px solid rgba(210,70,60,0.5);
  cursor: pointer; transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
.btn-call:hover { background: rgba(210,70,60,0.12); border-color: var(--red); transform: translateY(-1px); }
.btn-call svg { width: 16px; height: 16px; color: var(--red); flex-shrink: 0; }

/* USP pill badges pod hero h1 (Fixná cena · Fixný termín · 2 roky záruka) */
.hero-usp {
  display: flex; flex-wrap: wrap; gap: 0.6rem;
  margin: 0.85rem 0 1.4rem;
}
.hero-usp .pill {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.4rem 0.9rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50px;
  color: rgba(255,255,255,0.92);
  font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.01em;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero-usp .pill::before {
  content: "✓";
  color: var(--red);
  font-weight: 700;
  font-size: 0.78rem;
}
@media (max-width: 600px) {
  .hero-usp .pill { font-size: 0.78rem; padding: 0.35rem 0.75rem; }
}

.btn-red {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--red); color: white;
  padding: 0.9rem 1.75rem; border-radius: 6px;
  text-decoration: none; font-size: 0.9rem; font-weight: 600;
  transition: background 0.2s; white-space: nowrap;
}
.btn-red:hover { background: var(--red-light); }

.btn-white {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: white; color: var(--red);
  padding: 1rem 2rem; border-radius: 6px;
  text-decoration: none; font-size: 1rem; font-weight: 700;
  transition: opacity 0.2s;
}
.btn-white:hover { opacity: 0.9; }

/* ── PAGE HERO (podstránky) ── */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #2c2420 100%);
  padding: 120px 5vw 70px;
  color: white;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(210,70,60,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(210,70,60,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 700px; }
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; color: white; letter-spacing: -0.03em; line-height: 1.15; margin-bottom: 1rem; }
.page-hero h1 em { font-style: normal; color: var(--red); }
.page-hero p { font-size: 1rem; color: rgba(255,255,255,0.55); line-height: 1.7; max-width: 540px; font-weight: 300; }

/* breadcrumb — zdieľané na podstránkach */
/* position:relative + z-index:1 — postaví breadcrumb nad .page-hero::before grid overlay.
   Inak by absolutne pozicovaný ::before prekryl breadcrumb (linky nejdú kliknúť) na stránkach
   ktoré nemajú wrapper .page-hero-inner — kontakt.html, faq.html, referencie-galeria.php. */
.breadcrumb { font-size: 0.75rem; color: rgba(255,255,255,0.45); margin-bottom: 1.5rem; display: flex; gap: 0.5rem; align-items: center; flex-wrap: wrap; position: relative; z-index: 1; }
.breadcrumb a { color: rgba(255,255,255,0.45); text-decoration: none; }
.breadcrumb a:hover { color: white; }
.breadcrumb span { color: rgba(255,255,255,0.25); }
/* Špecifickosť `.breadcrumb span.bc-current` (0,0,2,1) > `.breadcrumb span` (0,0,1,1) — bez !important */
.breadcrumb span.bc-current,
.hero-breadcrumb span.bc-current { color: rgba(255,255,255,0.55); }

/* lead — podnadpis v hero sekcii */
.lead { font-size: clamp(0.9rem, 1.5vw, 1.05rem); color: rgba(255,255,255,0.65); line-height: 1.7; max-width: 560px; }

/* hero-breadcrumb (starší variant — cennik/o-nas) */
.hero-breadcrumb { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1.5rem; }
.hero-breadcrumb a { font-size: 0.8rem; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.hero-breadcrumb a:hover { color: rgba(255,255,255,0.7); }
.hero-breadcrumb span { font-size: 0.8rem; color: rgba(255,255,255,0.2); }
.hero-note {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.35rem 0;
  background: rgba(210,70,60,0.15); border: 1px solid rgba(210,70,60,0.25);
  color: #f47c77; padding: 0.5rem 1rem; border-radius: 6px;
  font-size: 0.82rem; font-weight: 500; margin-top: 1.5rem;
}
.hero-note > span { white-space: nowrap; }
.hero-note > span + span::before { content: ' · '; opacity: 0.5; white-space: pre; }
@media (max-width: 600px) {
  .hero-note {
    background: none; border: none; padding: 0;
    gap: 0.4rem; margin-top: 1.25rem;
  }
  .hero-note > span {
    background: rgba(210,70,60,0.18); border: 1px solid rgba(210,70,60,0.25);
    color: #f47c77; padding: 0.3rem 0.75rem; border-radius: 100px;
    font-size: 0.78rem;
  }
  .hero-note > span + span::before { display: none; }
}

/* ── MAIN / SEKCIE (podstránky) ── */
main { max-width: 1300px; margin: 0 auto; padding: 60px 5vw 80px; }
main section { padding: 60px 0; border-bottom: 1px solid #f0ede9; }
main section:last-child { border-bottom: none; }
main h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.15; margin-bottom: 1rem; }
main h2 em { font-style: normal; color: var(--red); }
main .lead { font-size: 1rem; color: var(--gray); line-height: 1.7; max-width: 600px; margin-bottom: 2.5rem; font-weight: 300; }
main .section-label { font-size: 0.72rem; margin-bottom: 0.75rem; }

/* ── FEATURES GRID (podstránky) ── */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.feature-item { background: var(--light); border-radius: 12px; padding: 1.75rem; display: flex; flex-direction: column; gap: 0.75rem; }
.feature-icon { font-size: 1.6rem; }
.feature-item h3 { font-size: 1rem; font-weight: 700; }
.feature-item p { font-size: 0.85rem; color: var(--gray); line-height: 1.6; }

/* ── STEPS (podstránky) ── */
.steps { display: flex; flex-direction: column; gap: 0; }
.step { display: grid; grid-template-columns: 60px 1fr; gap: 1.5rem; padding: 2rem 0; border-bottom: 1px solid #f0ede9; align-items: start; }
.step:last-child { border-bottom: none; }
.step-num { width: 48px; height: 48px; border-radius: 50%; background: var(--dark); color: white; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; font-weight: 800; letter-spacing: -0.02em; flex-shrink: 0; }
.step h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.4rem; }
.step p { font-size: 0.88rem; color: var(--gray); line-height: 1.6; }

/* ── PRICE TEASER (podstránky) ── */
.price-teaser { background: var(--dark); border-radius: 16px; padding: 2.5rem; display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center; }
.price-items { display: flex; flex-direction: column; gap: 0.75rem; }
.price-row-t { display: flex; justify-content: space-between; align-items: center; padding: 0.75rem 0; border-bottom: 1px solid rgba(255,255,255,0.07); gap: 1rem; }
.price-row-t:last-child { border-bottom: none; }
.price-row-t span { font-size: 0.9rem; color: rgba(255,255,255,0.6); }
.price-row-t strong { font-size: 0.95rem; color: white; white-space: nowrap; }
.price-cta-side { display: flex; flex-direction: column; align-items: center; gap: 1rem; text-align: center; }
.price-big { font-size: 3rem; font-weight: 800; color: white; letter-spacing: -0.04em; line-height: 1; }
.price-sub { font-size: 0.78rem; color: rgba(255,255,255,0.4); }

/* ── FAQ (podstránky) ── */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-list .faq-item { border-bottom: 1px solid #f0ede9; }
.faq-list .faq-item:last-child { border-bottom: none; }
.faq-list .faq-q { width: 100%; text-align: left; padding: 1.25rem 0; background: none; border: none; cursor: pointer; font-family: var(--font); font-size: 0.95rem; font-weight: 600; color: var(--dark); display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-list .faq-q .arr { min-width: 24px; height: 24px; background: var(--light); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; transition: transform 0.25s, background 0.25s; }
.faq-list .faq-item.open .faq-q .arr { transform: rotate(45deg); background: var(--red); color: white; }
.faq-list .faq-a { display: none; padding: 0 0 1.25rem; font-size: 0.88rem; color: var(--gray); line-height: 1.7; max-width: 680px; }
.faq-list .faq-item.open .faq-a { display: block; }

/* ── UTILITY — opakujúce sa vzory ── */
/* Červený link v texte (section-lead, faq-more atď.) */
.link-red { color: var(--red); text-decoration: none; font-weight: 600; }
.link-red:hover { text-decoration: underline; }
/* Poznámka pod sekciou (napr. FAQ → viac) */
.section-footnote { margin-top: 2rem; font-size: 0.9rem; color: var(--gray); }
.section-footnote a { color: var(--red); font-weight: 600; text-decoration: none; }
.section-footnote a:hover { text-decoration: underline; }
/* Link na cenník/blog v FAQ odpovedi */
.answer-link { margin-top: 0.75rem; font-size: 0.88rem; }
/* Zvýraznený riadok v cenníku */
.price-row-highlight {
  background: rgba(210,70,60,0.05);
  margin: 0 -2rem; padding: 0.9rem 2rem; border-radius: 8px;
}
.price-row-highlight .price-row-label { font-weight: 700; }
.price-row-highlight .price-row-val { color: var(--red); font-size: 1.1rem; }

/* ── CTA SEKCIA (podstránky) ── */
.cta-section { background: var(--red); border-radius: 16px; padding: 3rem; text-align: center; margin: 60px 0 0; }
/* Ak je CTA mimo <main> (priamo na stránke), treba 5vw margin */
.cta-section-outer { margin: 60px 5vw 0; }
/* Jednoduchý kontajner pre obsah v blogoch */
.content-wrap { max-width: 1100px; margin: 0 auto; }
.cta-section h2 { color: white; margin-bottom: 0.75rem; font-size: clamp(1.6rem, 3vw, 2.4rem); }
.cta-section h2 em { font-style: normal; color: rgba(255,255,255,0.85); }
.cta-section p { color: rgba(255,255,255,0.75); font-size: 1rem; margin-bottom: 1.75rem; }

/* ── SOCIAL PILLS ── */
.social-pill {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.55rem 1.1rem; border-radius: 50px;
  text-decoration: none; color: white;
  font-size: 0.82rem; font-weight: 700;
  transition: transform 0.18s, filter 0.18s;
  white-space: nowrap;
}
.social-pill:hover { transform: translateY(-2px); filter: brightness(1.1); }
.social-pill.facebook { background: #1877f2; box-shadow: 0 3px 10px rgba(24,119,242,0.28); }
.social-pill.instagram {
  background: linear-gradient(135deg, #f09433 0%, #dc2743 50%, #bc1888 100%);
  box-shadow: 0 3px 10px rgba(220,39,67,0.22);
}

/* ── FOOTER ── */
footer { background: #181411; padding: 3rem 5vw 2rem; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 2.5rem; flex-wrap: wrap; gap: 2rem; }
.footer-brand .nav-logo { font-size: 1.8rem; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.35); margin-top: 0.5rem; max-width: 260px; line-height: 1.6; }
.footer-links { display: flex; gap: 4rem; flex-wrap: wrap; }
.footer-col h4 { font-family: var(--font-head); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a { font-size: 0.88rem; color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(255,255,255,0.06); padding-top: 1.5rem; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.25); }
.footer-badges { display: flex; gap: 0.5rem; }
.footer-badge { font-size: 0.7rem; color: rgba(255,255,255,0.3); border: 1px solid rgba(255,255,255,0.1); padding: 0.25rem 0.6rem; border-radius: 4px; }

/* ── FAQ PAGE ── */
.faq-nav-wrap { position: sticky; top: 64px; z-index: 90; background: white; border-bottom: 1px solid #e8e4e0; }
.faq-nav-scroll { position: relative; }
.faq-nav { display: flex; padding: 0 5vw; gap: 0; overflow-x: auto; scrollbar-width: none; }
.faq-nav::-webkit-scrollbar { display: none; }
.faq-scroll-btn {
  position: absolute; top: 0; bottom: 0;
  border: none; background: none; cursor: pointer; z-index: 2;
  display: flex; align-items: center;
  font-weight: 800; color: var(--dark);
  transition: opacity .2s; gap: 4px; white-space: nowrap;
}
.faq-scroll-btn.left { left: 0; width: 56px; background: linear-gradient(to right, white 60%, transparent); justify-content: flex-start; padding-left: 8px; font-size: 1rem; }
.faq-scroll-btn.right { right: 0; width: 220px; background: linear-gradient(to left, white, white 75%, transparent); justify-content: flex-end; padding-right: 5vw; font-size: .82rem; gap: 6px; }
.faq-scroll-btn.right .fsb-label { font-size: .75rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--gray); }
.faq-scroll-btn.right .fsb-arrows { font-size: 1rem; color: var(--red); }
.faq-scroll-btn.hidden { opacity: 0; pointer-events: none; }
.faq-scroll-btn:hover .fsb-label { color: var(--red); }
.faq-nav a { display: inline-block; padding: 1rem 1.1rem; font-size: 0.78rem; font-weight: 700; color: var(--gray); text-decoration: none; border-bottom: 2px solid transparent; transition: color 0.2s, border-color 0.2s; white-space: nowrap; }
.faq-nav a:hover { color: var(--red); border-bottom-color: var(--red); }
.faq-nav a.active { color: var(--red); border-bottom-color: var(--red); }
.faq-select-wrap { display: none; padding: 1rem 5vw 1.25rem; }
.faq-select-label { display: block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red); margin-bottom: 0.5rem; }
.faq-select-outer { position: relative; }
.faq-select-outer::after { content: ''; position: absolute; inset: -3px; border-radius: 11px; background: linear-gradient(135deg, var(--red), #ff8c7a); z-index: -1; animation: pulse-border 2s ease-in-out infinite; }
@keyframes pulse-border { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.faq-select {
  width: 100%; padding: 1rem 3rem 1rem 1.1rem;
  font-family: var(--font); font-size: 1rem; font-weight: 700;
  color: var(--dark); background: white;
  border: 2px solid var(--red); border-radius: 8px;
  outline: none; cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23d2463c' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center;
  box-shadow: 0 4px 16px rgba(210,70,60,0.18); position: relative; z-index: 1;
}
.faq-select:focus { box-shadow: 0 4px 20px rgba(210,70,60,0.3); }
@media (max-width: 900px) { .faq-nav { display: none; } .faq-select-wrap { display: block; } }
/* Anchor scroll offset — len malý buffer, sekcie už majú padding-top:60px ktorý prekryje fixed nav (72px) */
section[id], div[id="kontakt"], #faq, #referencie, #sluzby, #kontakt { scroll-margin-top: 16px; }
/* Pre nadpisy v blog článkoch (TOC anchor links) treba väčší offset, lebo nie sú vnútri sekcie s paddingom */
.article-content h2[id], .article-content h3[id] { scroll-margin-top: 90px; }

/* Trustindex widget recenzií sa renderuje async — fixná min-height mierne menšia
   než reálna výška widgetu zaistí stabilný layout (žiadne skákanie #faq pri scrolle)
   a zároveň takmer žiadne prázdne miesto. Widget prirodzene prekročí túto rezerváciu. */
[data-widget="recenzie"] { min-height: 480px; }
@media (max-width: 900px) { [data-widget="recenzie"] { min-height: 480px; } }

.faq-intro-band { max-width: 860px; margin: 40px auto 0; padding: 1.75rem 5vw 0; }
.faq-intro-band .faq-intro-text { font-size: 0.95rem; color: var(--gray); margin: 0 0 1rem; line-height: 1.6; }
.faq-intro-band .faq-intro-text strong { color: var(--dark); font-weight: 700; }
.faq-intro-band .faq-intro-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.faq-intro-band .faq-intro-chips a { display: inline-flex; align-items: center; padding: 0.5rem 0.95rem; background: var(--light); color: var(--dark); border-radius: 999px; font-size: 0.85rem; font-weight: 600; text-decoration: none; transition: background 0.2s, color 0.2s, transform 0.15s; border: 1px solid transparent; }
.faq-intro-band .faq-intro-chips a:hover { background: var(--red); color: white; transform: translateY(-1px); }

.faq-layout { max-width: 860px; margin: 0 auto; padding: 60px 5vw 80px; }
.faq-group { margin-bottom: 4rem; }
.faq-group-title { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 800; color: var(--dark); letter-spacing: -0.02em; margin-bottom: 0.5rem; padding-bottom: 1rem; border-bottom: 2px solid var(--light); display: flex; align-items: center; gap: 0.75rem; }
.faq-group-title .group-icon { width: 36px; height: 36px; min-width: 36px; background: var(--red); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.faq-layout details { border-bottom: 1px solid #e8e4e0; }
.faq-layout details:last-child { border-bottom: none; }
.faq-layout summary { display: flex; justify-content: space-between; align-items: center; padding: 1.25rem 0; cursor: pointer; font-size: 0.95rem; font-weight: 700; color: var(--dark); list-style: none; gap: 1rem; }
.faq-layout summary::-webkit-details-marker { display: none; }
.faq-layout summary::after { content: '+'; font-size: 1.4rem; font-weight: 400; color: var(--red); flex-shrink: 0; transition: transform 0.2s; }
.faq-layout details[open] summary::after { transform: rotate(45deg); }
.faq-layout details[open] summary { color: var(--red); }
.faq-answer { padding: 0 0 1.5rem; font-size: 0.9rem; color: var(--gray); line-height: 1.8; }
.faq-answer a { color: var(--red); }
.faq-answer ul { padding-left: 1.5rem; margin-top: 0.5rem; }
.faq-answer li { margin-bottom: 0.4rem; }
.faq-answer strong { color: var(--dark); }

/* Collapsible content section (used on rekonstrukcia-bytu) */
.collapsible-section { padding: 0; border-top: 1px solid #e8e4e0; }
.collapsible-section + .collapsible-section { border-top: none; }
.collapsible-section:last-of-type { border-bottom: 1px solid #e8e4e0; }
.collapsible-section details { padding: 1.75rem 0; }
.collapsible-section summary { display: flex; justify-content: space-between; align-items: flex-start; gap: 1.5rem; cursor: pointer; list-style: none; padding: 0; transition: opacity 0.15s; }
.collapsible-section summary::-webkit-details-marker { display: none; }
.collapsible-section summary:hover { opacity: 0.75; }
.collapsible-section summary .summary-text { flex: 1; }
.collapsible-section summary .section-label { margin: 0 0 0.4rem 0; font-size: 0.7rem; }
.collapsible-section summary h2 { margin: 0; font-size: clamp(1.4rem, 2.5vw, 1.9rem); line-height: 1.25; }
.collapsible-section summary .toggle-icon { font-size: 2rem; font-weight: 300; color: var(--red); flex-shrink: 0; line-height: 1; transition: transform 0.25s ease; margin-top: 0.25rem; }
.collapsible-section details[open] summary .toggle-icon { transform: rotate(45deg); }
.collapsible-section .collapsible-body { padding-top: 1.5rem; max-width: 820px; }
.collapsible-section .collapsible-body .lead { font-size: 1rem; color: #555; margin-bottom: 1.5rem; line-height: 1.7; }
.collapsible-section .collapsible-body h3 { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin: 1.75rem 0 0.5rem 0; letter-spacing: -0.01em; }
.collapsible-section .collapsible-body h3:first-of-type { margin-top: 0; }
.collapsible-section .collapsible-body p { font-size: 0.95rem; line-height: 1.75; color: var(--gray); margin-bottom: 0.85rem; }
.collapsible-section .collapsible-body ul { padding-left: 1.25rem; margin: 0.5rem 0 1rem 0; }
.collapsible-section .collapsible-body li { font-size: 0.95rem; line-height: 1.7; color: var(--gray); margin-bottom: 0.5rem; }
.collapsible-section .collapsible-body strong { color: var(--dark); }
.collapsible-section .collapsible-body a { color: var(--red); }
.collapsible-section .price-table { width: 100%; border-collapse: collapse; margin: 0.5rem 0 1rem 0; font-size: 0.9rem; }
.collapsible-section .price-table th { text-align: left; padding: 0.6rem 0.75rem; background: var(--light); color: var(--dark); font-weight: 700; border-bottom: 2px solid #e8e4e0; }
.collapsible-section .price-table td { padding: 0.6rem 0.75rem; border-bottom: 1px solid #e8e4e0; color: var(--gray); }
.collapsible-section .price-table tr:last-child td { border-bottom: none; }
.collapsible-section .price-table td:first-child { font-weight: 600; color: var(--dark); }
.collapsible-section .lead-link { margin-top: 1.5rem; padding: 0.85rem 1.1rem; background: var(--light); border-left: 3px solid var(--red); font-size: 0.9rem; color: var(--dark); border-radius: 4px; }
.collapsible-section .lead-link a { color: var(--red); font-weight: 700; }
.cta-band { background: var(--red); color: white; padding: 60px 5vw; text-align: center; }
.cta-band h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 800; margin-bottom: 0.75rem; }
.cta-band p { font-size: 0.95rem; opacity: 0.85; margin-bottom: 2rem; }

/* ── RESPONZÍVNE ── */
@media (max-width: 1200px) {
  /* Nav menu má 9 položiek + logo + CTA tlačítko — nezmestí sa do ~1200px */
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.nav-open {
    display: flex; flex-direction: column;
    position: fixed; top: 72px; left: 0; right: 0;
    background: #111;
    padding: 1.5rem 5vw; gap: 1.25rem;
    z-index: 99;
  }
  .footer-links { gap: 2rem; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .price-teaser { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
}

/* ── SERVICES GRID (sluzby-widget) ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: #e8e5e1;
  border-radius: 16px;
  overflow: hidden;
}
.service-card {
  background: var(--white, #fff);
  padding: 2.5rem;
  transition: background 0.25s;
  text-decoration: none;
  display: block;
}
.service-card:hover { background: var(--dark, #1e1a17); }
.service-card:hover .service-num,
.service-card:hover h3,
.service-card:hover p { color: white !important; }
.service-card:hover .service-icon { background: rgba(210,70,60,0.2); }
.service-card:hover .service-icon { color: #fff; }
.service-num {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em;
  color: var(--red, #d2463c); margin-bottom: 1.5rem;
}
.service-icon {
  width: 52px; height: 52px;
  background: var(--light, #f5f4f2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--red, #d2463c);
  margin-bottom: 1.25rem;
  transition: background 0.25s, color 0.25s;
}
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 {
  font-size: 1.15rem; font-weight: 700;
  margin-bottom: 0.75rem; letter-spacing: -0.01em;
  color: var(--dark, #1e1a17); transition: color 0.25s;
}
.service-card p { font-size: 0.88rem; color: var(--gray, #6b6460); line-height: 1.6; transition: color 0.25s; }
@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr 1fr; } }

/* Service extra — odkaz na remeselniciba.sk pod sluzby gridom */
.service-extra {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  padding: 1.5rem 1.75rem;
  background: var(--light, #f5f4f2);
  border: 1px solid #ede9e5;
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: background .25s, border-color .25s, transform .25s;
}
.service-extra:hover { background: white; border-color: var(--red); transform: translateY(-2px); }
.service-extra-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: white; border-radius: 12px;
  color: var(--red, #d2463c);
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.service-extra-icon svg { width: 26px; height: 26px; }
.service-extra-text { display: flex; flex-direction: column; gap: .3rem; }
.service-extra-text strong:first-child { font-size: 1rem; font-weight: 700; color: var(--dark); letter-spacing: -.01em; }
.service-extra-text span { font-size: .87rem; color: var(--gray); line-height: 1.55; }
.service-extra-text span strong { color: var(--red); font-weight: 700; }
.service-extra-cta {
  font-size: .85rem; font-weight: 700; color: var(--red);
  white-space: nowrap; padding-left: .5rem;
}
@media (max-width: 900px) {
  .service-extra { grid-template-columns: auto 1fr; }
  .service-extra-cta { grid-column: 1 / -1; padding-left: 0; padding-top: .25rem; }
}
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }


/* ── MISTAKES GRID ── */
.mistakes-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem 3rem; }
.mistake-item { display: flex; flex-direction: column; gap: 0.4rem; }
.mistake-num { font-size: 2rem; font-weight: 800; color: rgba(210,70,60,0.12); letter-spacing: -0.04em; line-height: 1; margin-bottom: 0.2rem; }
.mistake-item h3 { font-size: 0.95rem; font-weight: 700; color: var(--dark); }
.mistake-item > p { font-size: 0.85rem; color: var(--gray); line-height: 1.65; }
@media (max-width: 600px) { .mistakes-grid { grid-template-columns: 1fr; } }

/* ── SCOPE GRID (kupelna, jadro, podkrovie) ── */
.scope-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.scope-card { background: var(--light); border-radius: 12px; padding: 2rem; display: flex; flex-direction: column; gap: .9rem; }
.scope-card--main { background: var(--dark); }
.scope-card--main h3, .scope-card--main p { color: rgba(255,255,255,0.85); }
.scope-tag { font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--red); }
.scope-card--main .scope-tag { color: #e87b72; }
.scope-list { list-style: none; display: flex; flex-direction: column; gap: .45rem; margin: .25rem 0; }
.scope-list li { font-size: .84rem; color: var(--gray); display: flex; gap: .5rem; align-items: flex-start; line-height: 1.5; }
.scope-list li::before { content: "✓"; color: var(--red); font-weight: 700; flex-shrink: 0; }
.scope-card--main .scope-list li { color: rgba(255,255,255,.55); }
.scope-card--main .scope-list li::before { color: #e87b72; }
.scope-price { font-size: 1rem; font-weight: 700; color: var(--dark); margin-top: auto; padding-top: 1rem; border-top: 1px solid rgba(0,0,0,.08); }
.scope-card--main .scope-price { color: white; border-top-color: rgba(255,255,255,.1); }

/* ── REVIEWS STRIP (kupelna, jadro, podkrovie) ── */
.reviews-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.review-strip-card { background: var(--light); border-radius: 12px; padding: 1.75rem; display: flex; flex-direction: column; gap: 1rem; }
.review-stars { color: #f4b942; font-size: .9rem; letter-spacing: .06em; }
.review-text-s { font-size: .88rem; color: #444; line-height: 1.7; font-style: italic; flex: 1; }
.review-author-s { display: flex; align-items: center; gap: .75rem; }
.review-av { width: 38px; height: 38px; min-width: 38px; border-radius: 50%; background: linear-gradient(135deg, var(--red), #8b0000); color: white; font-weight: 700; font-size: .85rem; display: flex; align-items: center; justify-content: center; }
.review-author-s strong { display: block; font-size: .88rem; font-weight: 600; color: var(--dark); }
.review-author-s span { font-size: .75rem; color: var(--gray); }

/* ── PRICE CARDS (service pages) ── */
.price-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-bottom: 1.5rem; }
.price-cards--4 { grid-template-columns: repeat(4, 1fr); }
.price-card { background: var(--light); border-radius: 12px; padding: 1.75rem; }
.price-card.featured { background: var(--dark); }
.price-card .lbl { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--red); margin-bottom: .5rem; }
.price-card .label { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--red); margin-bottom: .5rem; }
.price-card .val { font-size: 2rem; font-weight: 800; letter-spacing: -.04em; color: var(--dark); margin-bottom: .25rem; }
.price-card.featured .val { color: white; }
.price-card .sub { font-size: .8rem; color: var(--gray); margin-bottom: 1rem; }
.price-card.featured .sub { color: rgba(255,255,255,.45); }
.price-card > p { font-size: .82rem; color: #555; line-height: 1.6; }
.price-card.featured > p { color: rgba(255,255,255,.6); }
.price-card ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; margin-bottom: 0; }
.price-card ul li { font-size: .82rem; color: #555; display: flex; gap: .5rem; }
.price-card.featured ul li { color: rgba(255,255,255,.6); }
.price-card ul li::before { content: "✓"; color: var(--red); font-weight: 700; min-width: 1rem; }
@media (max-width: 900px) { .price-cards { grid-template-columns: 1fr; } }
@media (max-width: 900px) { .price-cards--4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .price-cards--4 { grid-template-columns: 1fr; } }

/* ── PRICE TABLE (murarske-prace) ── */
.price-table { width: 100%; border-collapse: collapse; margin-bottom: 1.5rem; }
.price-table th { text-align: left; font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--red); padding: .75rem 1rem; border-bottom: 2px solid var(--light); }
.price-table td { padding: .9rem 1rem; border-bottom: 1px solid var(--light); font-size: .88rem; }
.price-table tr:last-child td { border-bottom: none; }
.price-table .val { font-weight: 700; color: var(--dark); white-space: nowrap; }

/* ── INFO BOX (instalaterstvo) ── */
.info-box { background: var(--dark); border-radius: 16px; padding: 2.5rem; margin-bottom: 1.5rem; }
.info-box p { color: rgba(255,255,255,.55); font-size: .9rem; line-height: 1.7; margin-bottom: 1rem; }
.info-box p:last-child { margin-bottom: 0; }
.info-box strong { color: white; }

/* ── PROBLEMS GRID (jadro) ── */
.problems-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.problem-card { background: #fff5f4; border-radius: 12px; padding: 1.5rem; border-left: 3px solid var(--red); }
.problem-card h3 { font-size: .95rem; font-weight: 700; color: var(--dark); margin-bottom: .4rem; }
.problem-card p { font-size: .84rem; color: var(--gray); line-height: 1.65; margin: 0; }

/* ── COMPARE TABLE (jadro) ── */
.compare-wrap { overflow-x: auto; position: relative; }
table.compare-table { width: 100%; min-width: 520px; border-collapse: collapse; font-size: .88rem; }
.compare-table th { text-align: left; padding: .85rem 1rem; background: var(--dark); color: #fff; font-weight: 700; font-size: .8rem; letter-spacing: .04em; }
.compare-table th:first-child { border-radius: 8px 0 0 0; }
.compare-table th:last-child { border-radius: 0 8px 0 0; }
.compare-table td { padding: .8rem 1rem; border-bottom: 1px solid #ece9e5; color: #444; vertical-align: top; line-height: 1.5; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(even) td { background: var(--light); }
.compare-check { color: var(--red); font-weight: 700; }
.compare-cross { color: #bbb; }

/* ── HIGHLIGHTS GRID (podkrovie) ── */
.highlights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.highlight-card { background: var(--light); border-radius: 12px; padding: 1.75rem; display: flex; flex-direction: column; gap: .6rem; }
.highlight-icon { font-size: 1.75rem; line-height: 1; }
.highlight-card h3 { font-size: .95rem; font-weight: 700; color: var(--dark); margin: 0; }
.highlight-card p { font-size: .84rem; color: var(--gray); line-height: 1.65; margin: 0; }

/* ── INSULATION LAYERS (podkrovie) ── */
.insulation-layers { display: flex; flex-direction: column; gap: .5rem; max-width: 560px; }
.ins-layer { display: flex; align-items: center; gap: 1rem; border-radius: 8px; padding: .75rem 1.25rem; font-size: .88rem; font-weight: 600; }
.ins-layer-label { flex: 1; }
.ins-layer-val { font-weight: 800; white-space: nowrap; }
.ins-l1 { background: #fff3cd; color: #7a5500; }
.ins-l2 { background: #d4edda; color: #155724; }
.ins-l3 { background: #d1ecf1; color: #0c5460; }
.ins-l4 { background: #e2e3e5; color: #383d41; }
.ins-note { font-size: .78rem; color: var(--gray); margin-top: .5rem; line-height: 1.6; }

/* ── PERMIT BOX (podkrovie) ── */
.permit-box { background: #fff8e1; border-left: 4px solid #f4b942; border-radius: 8px; padding: 1.25rem 1.5rem; display: flex; gap: 1rem; align-items: flex-start; }
.permit-box-icon { font-size: 1.5rem; flex-shrink: 0; line-height: 1.2; }
.permit-box-text { font-size: .88rem; color: #5a4400; line-height: 1.65; }
.permit-box-text strong { display: block; font-weight: 700; margin-bottom: .25rem; color: #3d2e00; }

/* ── FEATURES GRID 2-COL VARIANT (kuchyna, podlahy) ── */
.features-grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) { .features-grid--2 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .features-grid--2 { grid-template-columns: 1fr; } }

/* ── RESPONSIVE: scope-grid, reviews-strip, problems, highlights ── */
@media (max-width: 900px) {
  .scope-grid { grid-template-columns: 1fr; }
  .reviews-strip { grid-template-columns: 1fr; }
  .problems-grid { grid-template-columns: 1fr 1fr; }
  .highlights-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .problems-grid { grid-template-columns: 1fr; }
  .highlights-grid { grid-template-columns: 1fr; }
}

/* ── HERO-INNER alias (o-nas, gdpr používajú .hero-inner namiesto .page-hero-inner) ── */
.page-hero .hero-inner { position: relative; z-index: 1; max-width: 680px; }
.project-hero .hero-inner { position: relative; z-index: 1; padding: 0 5vw 3rem; width: 100%; }

/* ── O NAS PAGE ── */
[data-page="o-nas"] .page-hero { background: #2a2420; padding: 130px 5vw 70px; }
[data-page="o-nas"] main section { padding: 80px 5vw; border-bottom: none; }
[data-page="o-nas"] main section.collapsible-section { padding: 0 5vw; margin-bottom: 80px; }
[data-page="o-nas"] main section.section-dark { background: #f9f8f6; }
.stats-strip { background: var(--red); padding: 2.5rem 5vw; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }

/* Speed stats — kompaktný highlight card pre rýchlosť realizácie */
.speed-stats {
  background: var(--dark);
  border-radius: 14px;
  padding: 1.75rem 2rem;
  margin: 1rem 0 2rem;
}
.speed-stats-label { font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--red); margin-bottom: 1.1rem; text-align: center; }
.speed-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; align-items: center; }
.speed-stat { display: flex; align-items: center; gap: 1rem; }
.speed-stat-num { font-size: 2.2rem; font-weight: 800; color: var(--red); line-height: 1; letter-spacing: -.03em; flex-shrink: 0; }
.speed-stat-text { font-size: .85rem; color: rgba(255,255,255,.78); line-height: 1.5; font-weight: 300; margin: 0; }
.speed-stat-text strong { color: white; font-weight: 700; }
.speed-stat + .speed-stat { border-left: 1px solid rgba(255,255,255,.08); padding-left: 1.5rem; }
@media (max-width: 900px) {
  .speed-stats { padding: 1.5rem 1.25rem; }
  .speed-stats-grid { grid-template-columns: 1fr; gap: 1rem; }
  .speed-stat + .speed-stat { border-left: none; border-top: 1px solid rgba(255,255,255,.08); padding-left: 0; padding-top: 1rem; }
}
.stat-item { text-align: center; }
.stat-num { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; color: white; letter-spacing: -.04em; line-height: 1; }
.stat-label { font-size: .78rem; color: rgba(255,255,255,.7); margin-top: .3rem; font-weight: 500; }
.who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.who-img { display: block; width: 100%; height: auto; border-radius: 20px; background: #f0eeec; aspect-ratio: 1400/1260; object-fit: cover; }
.who-content h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 800; color: var(--dark); letter-spacing: -.03em; line-height: 1.15; margin-bottom: 1.25rem; }
.who-content h2 em { color: var(--red); font-style: normal; }
.who-content p { font-size: .92rem; color: #555; line-height: 1.8; margin-bottom: .85rem; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.why-card { background: var(--light); border-radius: 16px; padding: 2rem 1.75rem; display: flex; flex-direction: column; gap: .75rem; transition: box-shadow .25s; }
.why-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,.07); }
.why-icon { color: var(--red); line-height: 0; }
.why-icon svg { width: 28px; height: 28px; }
.why-card h3 { font-size: .97rem; font-weight: 700; color: var(--dark); }
.why-card p { font-size: .85rem; color: var(--gray); line-height: 1.65; }
.how-list { display: flex; flex-direction: column; gap: 0; border-radius: 16px; overflow: hidden; }
.how-item { display: grid; grid-template-columns: 56px 1fr; gap: 1.25rem; align-items: start; padding: 1.75rem 2rem; background: var(--light); border-bottom: 1px solid #e8e4e0; }
.how-item:last-child { border-bottom: none; }
.how-num { font-size: 1.5rem; font-weight: 800; color: var(--red); letter-spacing: -.04em; line-height: 1.1; padding-top: .1rem; }
.how-item h3 { font-size: .95rem; font-weight: 700; color: var(--dark); margin-bottom: .35rem; }
.how-item p { font-size: .85rem; color: var(--gray); line-height: 1.65; }
.values-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: #e8e4e0; border-radius: 16px; overflow: hidden; }
.value-item { background: white; padding: 2rem; display: flex; gap: 1rem; }
.value-dot { width: 10px; height: 10px; min-width: 10px; background: var(--red); border-radius: 50%; margin-top: .45rem; }
.value-item h3 { font-size: .92rem; font-weight: 700; color: var(--dark); margin-bottom: .35rem; }
.value-item p { font-size: .83rem; color: var(--gray); line-height: 1.6; }
.section-title { font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 800; color: var(--dark); letter-spacing: -.03em; line-height: 1.2; margin-bottom: .75rem; }
.section-title em { color: var(--red); font-style: normal; }
.section-lead { font-size: .92rem; color: var(--gray); line-height: 1.7; max-width: 580px; margin-bottom: 2.5rem; }
@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 900px) { .who-grid { grid-template-columns: 1fr; gap: 2rem; } .who-img { order: -1; } }
@media (max-width: 600px) { .stats-strip { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1rem; } }
@media (max-width: 600px) { .why-grid { grid-template-columns: 1fr; } .values-list { grid-template-columns: 1fr; } }

/* ── KONTAKT PAGE ── */
.social-strip { background: white; border-top: 1px solid #e8e4e0; padding: 28px 5vw; display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.social-strip-label { font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gray); }
.social-links { display: flex; gap: .75rem; flex-wrap: wrap; }
.social-pill.facebook:hover { box-shadow: 0 6px 18px rgba(24,119,242,.42); }
.social-pill.instagram:hover { box-shadow: 0 6px 18px rgba(220,39,67,.38); }

/* ── REFERENCIE-GALERIA PAGE ── */
[data-page="referencie"] section { padding: 80px 5vw; }
[data-page="referencie"] section h2 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 800; color: var(--dark); letter-spacing: -.03em; line-height: 1.2; margin-bottom: .75rem; }
[data-page="referencie"] section h2 em { color: var(--red); font-style: normal; }
[data-page="referencie"] .section-lead { font-size: .92rem; color: var(--gray); line-height: 1.7; max-width: 580px; margin-bottom: 2.5rem; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: 280px 280px; gap: 12px; }
.gallery-item { position: relative; border-radius: 14px; overflow: hidden; background: #ccc center/cover no-repeat; text-decoration: none; display: flex; flex-direction: column; justify-content: flex-end; padding: 1.25rem; transition: transform .3s, box-shadow .3s; }
.gallery-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.65) 0%, transparent 55%); pointer-events: none; }
.gallery-item:hover { transform: scale(1.02); box-shadow: 0 16px 40px rgba(0,0,0,.25); }
.gallery-item.featured { grid-row: span 2; }
.gallery-tag { position: relative; z-index: 1; font-size: .73rem; font-weight: 700; color: rgba(255,255,255,.8); letter-spacing: .05em; text-transform: uppercase; margin-bottom: .3rem; }
.gallery-cta { position: relative; z-index: 1; font-size: .82rem; font-weight: 700; color: white; }
.gallery-more { margin-top: 2rem; }
.btn-secondary-dark { display: inline-flex; align-items: center; gap: .5rem; padding: .75rem 1.5rem; border: 2px solid var(--dark); border-radius: 10px; font-size: .87rem; font-weight: 700; color: var(--dark); text-decoration: none; transition: background .2s, color .2s; }
.btn-secondary-dark:hover { background: var(--dark); color: white; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.review-card { background: white; border-radius: 16px; padding: 2rem; display: flex; flex-direction: column; gap: 1rem; box-shadow: 0 2px 12px rgba(0,0,0,.06); }
.review-text { font-size: .92rem; color: var(--dark); line-height: 1.7; flex: 1; font-style: italic; }
.review-author { display: flex; align-items: center; gap: .9rem; }
.review-avatar { width: 44px; height: 44px; min-width: 44px; border-radius: 50%; background: var(--red); color: white; font-weight: 700; font-size: .85rem; display: flex; align-items: center; justify-content: center; }
.review-author strong { display: block; font-size: .88rem; font-weight: 700; color: var(--dark); }
.review-author span { font-size: .78rem; color: var(--gray); }
.review-source { font-size: .72rem; color: var(--red); font-weight: 600; margin-top: .2rem; }
/* gallery showcase (index — single featured card) */
.gallery-showcase { display: block; position: relative; border-radius: 20px; overflow: hidden; background: var(--dark); height: 420px; text-decoration: none; transition: transform .3s, box-shadow .3s; margin-top: 2rem; }
.gallery-showcase-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.gallery-showcase::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.78) 20%, rgba(0,0,0,.18) 100%); pointer-events: none; z-index: 1; }
.gallery-showcase:hover { transform: scale(1.01); box-shadow: 0 20px 50px rgba(0,0,0,.3); }
.gallery-showcase-inner { position: absolute; bottom: 0; left: 0; right: 0; padding: 2.5rem; z-index: 2; }
.gallery-showcase-tag { font-size: .72rem; font-weight: 700; color: rgba(255,255,255,.75); letter-spacing: .08em; text-transform: uppercase; margin-bottom: .5rem; }
.gallery-showcase-title { font-size: 1.6rem; font-weight: 800; color: white; letter-spacing: -.02em; margin: 0 0 1.1rem; }
.gallery-showcase-cta { display: inline-flex; align-items: center; background: var(--red); color: white; font-size: .85rem; font-weight: 700; padding: .6rem 1.25rem; border-radius: 8px; transition: background .2s; }
.gallery-showcase:hover .gallery-showcase-cta { background: #b83830; }

/* projects grid (referencie-galeria — 20 cards) */
.projects-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-top: 2rem; }
.project-card { position: relative; border-radius: 14px; overflow: hidden; background: var(--dark); height: 260px; text-decoration: none; display: flex; flex-direction: column; justify-content: flex-end; transition: transform .3s, box-shadow .3s; }
.project-card-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.project-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.75) 0%, transparent 55%); pointer-events: none; z-index: 1; }
.project-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,.3); }
.project-card-inner { position: relative; z-index: 2; padding: 1rem 1.1rem; }
.project-card-type { display: inline-block; font-size: .68rem; font-weight: 700; color: white; background: var(--red); padding: .2rem .6rem; border-radius: 5px; letter-spacing: .04em; text-transform: uppercase; margin-bottom: .4rem; }
.project-card-title { font-size: .88rem; font-weight: 700; color: white; line-height: 1.35; margin-bottom: .25rem; }
.project-card-meta { font-size: .72rem; color: rgba(255,255,255,.65); }

@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr; } .projects-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item.featured { grid-row: span 1; }
  .gallery-item { min-height: 180px; }
  .gallery-showcase { height: 280px; }
  .gallery-showcase-inner { padding: 1.5rem; }
  .gallery-showcase-title { font-size: 1.2rem; }
  .projects-grid { grid-template-columns: repeat(2, 1fr); gap: .85rem; }
  .project-card { height: 200px; }
}
@media (max-width: 480px) {
  .projects-grid { grid-template-columns: 1fr; }
}

/* ── BLOG PAGES ── */
.breadcrumb a:hover { color: rgba(255,255,255,.7); }
.blog-category { display: inline-block; background: rgba(210,70,60,.2); border: 1px solid rgba(210,70,60,.3); color: var(--red-light); padding: .3rem .9rem; border-radius: 100px; font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 1.25rem; }
.hero-meta { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.hero-meta span { font-size: .82rem; color: rgba(255,255,255,.4); }
.hero-meta strong { color: rgba(255,255,255,.7); }
.article-wrap { max-width: 1100px; margin: 0 auto; padding: 60px 5vw 100px; display: grid; grid-template-columns: 1fr 300px; gap: 4rem; align-items: start; }
.article-content { min-width: 0; }
.article-content h2 { font-size: 1.6rem; font-weight: 800; letter-spacing: -.02em; margin: 2.5rem 0 1rem; color: var(--dark); }
.article-content h3 { font-size: 1.15rem; font-weight: 700; margin: 1.75rem 0 .75rem; color: var(--dark); }
.article-content p { font-size: .97rem; line-height: 1.8; color: #3a3a3a; margin-bottom: 1.1rem; overflow-wrap: break-word; }
.article-content ul, .article-content ol { padding-left: 1.5rem; margin-bottom: 1.25rem; display: flex; flex-direction: column; gap: .5rem; }
.article-content li { font-size: .95rem; line-height: 1.7; color: #3a3a3a; overflow-wrap: break-word; }
.article-content strong { color: var(--dark); }
.article-img { width: 100%; aspect-ratio: 16/7; border-radius: 12px; margin: 2rem 0; background-size: cover; background-position: center; display: flex; align-items: flex-end; padding: 1rem 1.25rem; }
.img-caption { font-size: .75rem; color: rgba(255,255,255,.6); background: rgba(0,0,0,.5); padding: .3rem .75rem; border-radius: 4px; }
/* Outer wrap — neskroluje, drží badge fixne. JS doň pridá vnútorný .table-scroll. */
.table-wrap {
  position: relative;
  margin: 1.5rem 0 2rem;
}
/* Inner — skutočný scroll container so shadow gradientmi */
.table-scroll, .table-wrap > div.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 8px;
  border: 1px solid #e8e5e1;
  background:
    linear-gradient(to right, #fff 30%, rgba(255,255,255,0)),
    linear-gradient(to right, rgba(255,255,255,0), #fff 70%) 100% 0,
    radial-gradient(farthest-side at 0 50%, rgba(0,0,0,0.18), rgba(0,0,0,0)),
    radial-gradient(farthest-side at 100% 50%, rgba(0,0,0,0.18), rgba(0,0,0,0)) 100% 0;
  background-repeat: no-repeat;
  background-size: 40px 100%, 40px 100%, 14px 100%, 14px 100%;
  background-attachment: local, local, scroll, scroll;
}
/* Fallback: keď je tabuľka priamo v .table-wrap (bez .table-scroll wrapper, napr. kalkulačka bez blog-enhancements.js) */
/* `:has()` cieli `.table-wrap` ktorý NEMA `.table-scroll` dieťa → scrolluje sa wrap sám. Lepšie ako display:block na table (zachová table layout). */
.table-wrap:not(:has(> .table-scroll)) {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 8px;
  border: 1px solid #e8e5e1;
}
/* Badge — VŽDY viditeľný kým nezmizne JS-om. Sedí na outer .table-wrap / .compare-wrap (nescrolluje). */
.table-wrap::after,
.compare-wrap::after {
  content: '↔ POSUŇTE';
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #fff;
  background: var(--red);
  padding: 4px 11px;
  border-radius: 100px;
  pointer-events: none;
  opacity: 0.95;
  transition: opacity 0.3s;
  z-index: 3;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.table-wrap.is-scrolled::after,
.compare-wrap.is-scrolled::after { opacity: 0; }
.table-wrap.no-overflow::after,
.compare-wrap.no-overflow::after { opacity: 0; }
/* Defenzívne: na compare-wrap bez <table> (napr. grid-based porovnanie v o-nas.html)
   badge nikdy nezobrazovať — táto tabuľka sa skladá pod seba a vždy je celá viditeľná. */
.compare-wrap:not(:has(table))::after { display: none; }
.table-wrap .price-table { width: 100%; border-collapse: collapse; font-size: .88rem; min-width: 480px; }
.table-wrap .price-table th { background: var(--dark); color: white; padding: .75rem 1rem; text-align: left; font-weight: 600; font-size: .8rem; letter-spacing: .04em; }
.table-wrap .price-table td { padding: .75rem 1rem; border-bottom: 1px solid #e8e5e1; color: #444; }
.table-wrap .price-table tr:last-child td { border-bottom: none; }
.table-wrap .price-table tr:nth-child(even) td { background: var(--light); }
.table-wrap .price-table .highlight td { color: var(--dark); font-weight: 700; }
.table-wrap .price-table .price-col { font-weight: 700; color: var(--red); white-space: nowrap; }
.callout { background: var(--light); border-left: 4px solid var(--red); border-radius: 0 10px 10px 0; padding: 1.25rem 1.5rem; margin: 2rem 0; }
.callout strong { display: block; font-size: .9rem; color: var(--dark); margin-bottom: .4rem; }
.callout p { font-size: .88rem; color: var(--gray); line-height: 1.6; margin: 0; }
.mistakes { display: flex; flex-direction: column; gap: 1rem; margin: 1.5rem 0 2rem; }
.mistakes .mistake-item { display: flex; gap: 1rem; align-items: flex-start; background: #fff5f5; border: 1px solid rgba(210,70,60,.15); border-radius: 10px; padding: 1.1rem 1.25rem; flex-direction: row; }
.mistakes .mistake-num { min-width: 28px; height: 28px; background: var(--red); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .78rem; font-weight: 700; margin-top: 1px; }
.mistakes .mistake-item strong { display: block; font-size: .9rem; margin-bottom: .25rem; }
.mistakes .mistake-item p { font-size: .83rem; color: var(--gray); line-height: 1.5; margin: 0; }
.sidebar { position: sticky; top: 90px; }
.sidebar-card { background: var(--light); border-radius: 14px; padding: 1.75rem; margin-bottom: 1.5rem; }
.sidebar-card h4 { font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--red); margin-bottom: 1.1rem; }
.toc-list { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.toc-list a { font-size: .85rem; color: var(--gray); text-decoration: none; transition: color .2s; display: flex; align-items: center; gap: .5rem; }
.toc-list a::before { content: '→'; color: var(--red); font-size: .75rem; }
.toc-list a:hover { color: var(--dark); }
.sidebar-cta { background: var(--dark); border-radius: 14px; padding: 1.75rem; text-align: center; }
.sidebar-cta h4 { color: white; font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.sidebar-cta p { font-size: .82rem; color: rgba(255,255,255,.5); margin-bottom: 1.25rem; line-height: 1.5; }
.sidebar-cta a { display: block; background: var(--red); color: white; padding: .85rem 1rem; border-radius: 6px; text-decoration: none; font-size: .88rem; font-weight: 600; transition: background .2s; }
.sidebar-cta a:hover { background: var(--red-light); }
.related {
  background: #fff;
  padding: 70px 5vw 90px;
  border-top: 1px solid #ece6dd;
  border-bottom: 1px solid #ece6dd;
  position: relative;
}
/* Malý červený dekoračný „tab" hore v strede — vizuálne uzatvára článok a začína novú sekciu */
.related::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 3px;
  background: var(--red);
  border-radius: 0 0 4px 4px;
}
.related h2 {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 2rem;
  text-align: center;
}
.related-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.related-card { background: white; border-radius: 12px; overflow: hidden; text-decoration: none; transition: box-shadow .2s; display: block; }
.related-card:hover { box-shadow: 0 6px 30px rgba(0,0,0,.1); }
.related-img { aspect-ratio: 16/9; background-size: cover; background-position: center; }
.related-body { padding: 1.25rem; }
.related-tag { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--red); margin-bottom: .4rem; }
.related-card h3 { font-size: .97rem; font-weight: 700; line-height: 1.4; color: var(--dark); margin-bottom: .4rem; }
.related-card span { font-size: .78rem; color: var(--gray); }
.blog-cta-section { background: var(--dark); padding: 80px 5vw; text-align: center; }
.blog-cta-section h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; color: white; letter-spacing: -.03em; margin-bottom: 1rem; }
.blog-cta-section p { font-size: 1rem; color: rgba(255,255,255,.5); max-width: 500px; margin: 0 auto 2.5rem; line-height: 1.7; }
@media (max-width: 900px) { .blog-cta-section { padding: 50px 5vw; } }
@media (max-width: 900px) { .article-wrap { grid-template-columns: 1fr; } .sidebar { display: none; } }
@media (max-width: 600px) { .related-grid { grid-template-columns: 1fr; } }
@media (max-width: 900px) {
  .article-wrap { padding: 36px 4vw 60px; gap: 2rem; }
  .article-content h2 { font-size: 1.2rem; margin: 1.75rem 0 .75rem; }
  .article-content h3 { font-size: 1rem; }
  .article-content p, .article-content li { font-size: .9rem; }
  .blog-price-table { font-size: .82rem; }
  .blog-price-table th, .blog-price-table td { padding: .6rem .75rem; }
  .callout { padding: 1rem 1.1rem; }
  .blog-mistake-item { padding: .9rem 1rem; }
}

/* ── REALIZACIA PAGE ── */
.photo-count { font-size: .6em; font-weight: 500; color: var(--gray); }
.project-hero { height: 520px; background: var(--dark2); background-size: cover; background-position: center; position: relative; display: flex; align-items: flex-end; }
.project-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,16,13,.85) 0%, rgba(20,16,13,.2) 60%, transparent 100%); }
.project-hero .hero-inner h1 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800; color: white; letter-spacing: -.03em; line-height: 1.1; margin-bottom: 1rem; }
.project-hero .hero-inner h1 em { font-style: normal; color: var(--red-light); }
.hero-inner { position: relative; z-index: 1; padding: 0 5vw 3rem; width: 100%; }
.project-tags { display: flex; flex-wrap: wrap; gap: .5rem; }
.project-tag { background: rgba(255,255,255,.12); color: rgba(255,255,255,.85); padding: .3rem .85rem; border-radius: 50px; font-size: .78rem; font-weight: 500; border: 1px solid rgba(255,255,255,.15); }
.project-body { max-width: 1240px; margin: 0 auto; padding: 60px 5vw 80px; display: grid; grid-template-columns: 1fr 280px; gap: 3rem; align-items: start; }
.project-section { margin-bottom: 3rem; }
.project-section h2 { font-size: 1.6rem; font-weight: 800; letter-spacing: -.02em; margin-bottom: 1.1rem; line-height: 1.2; }
.project-section p { font-size: .97rem; color: #444; line-height: 1.8; margin-bottom: 1rem; }
.project-description p { font-size: .97rem; color: #444; line-height: 1.8; margin-bottom: 1rem; }
.project-description p:last-child { margin-bottom: 0; }
.project-description strong { color: #1e1a17; font-weight: 700; }
.project-description em { font-style: italic; }
.project-description a { color: var(--red); text-decoration: underline; text-underline-offset: 2px; }
.project-description a:hover { color: #b83830; }
.project-description ul, .project-description ol { margin: .5rem 0 1rem 1.2rem; }
.project-description li { font-size: .95rem; color: #444; line-height: 1.7; margin-bottom: .25rem; }
.work-list { list-style: none; display: flex; flex-direction: column; gap: .65rem; margin-top: .5rem; }
.work-list li { display: flex; align-items: flex-start; gap: .75rem; font-size: .92rem; color: #333; line-height: 1.5; }
.work-list li::before { content: "✓"; color: var(--red); font-weight: 800; min-width: 1.1rem; margin-top: .05rem; }
.photo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; border-radius: 12px; overflow: hidden; }
.photo-grid a { display: block; aspect-ratio: 4/3; overflow: hidden; background: var(--light); }
.photo-grid a:first-child { grid-column: span 2; aspect-ratio: 16/9; }
.photo-grid img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.photo-grid a:hover img { transform: scale(1.05); }
.photo-grid--collapsed > a:nth-child(n+13) { display: none; }
.photo-grid-more {
  display: inline-flex; align-items: center; gap: .5rem;
  margin-top: 1.25rem; padding: .85rem 1.5rem;
  background: var(--light); color: var(--dark);
  border: 1.5px solid #ddd; border-radius: 999px;
  font-family: inherit; font-size: .9rem; font-weight: 600;
  cursor: pointer; transition: all .2s ease;
}
.photo-grid-more:hover { background: var(--dark); color: var(--light); border-color: var(--dark); }
.photo-grid-more.is-hidden { display: none; }
.lightbox { display: none; position: fixed; inset: 0; z-index: 999; background: rgba(0,0,0,.92); align-items: center; justify-content: center; cursor: zoom-out; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 90vh; object-fit: contain; border-radius: 4px; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.lightbox-close { position: absolute; top: 1.5rem; right: 1.5rem; color: rgba(255,255,255,.7); font-size: 2rem; cursor: pointer; line-height: 1; background: none; border: none; transition: color .2s; }
.lightbox-close:hover { color: white; }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15); color: white; font-size: 1.5rem; width: 50px; height: 50px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.lightbox-nav:hover { background: rgba(255,255,255,.2); }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.before-after { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; border-radius: 10px; overflow: hidden; margin-top: 1.5rem; }
.ba-item { position: relative; aspect-ratio: 4/3; }
.ba-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ba-label { position: absolute; top: .75rem; left: .75rem; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: .25rem .7rem; border-radius: 4px; }
.ba-label.before { background: rgba(0,0,0,.7); color: rgba(255,255,255,.8); }
.ba-label.after { background: var(--red); color: white; }
.project-sidebar { position: sticky; top: 96px; }
.project-sidebar .sidebar-card { background: var(--dark); border-radius: 16px; padding: 2rem; margin-bottom: 1.5rem; }
.project-sidebar .sidebar-card h3 { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 1.25rem; }
.sidebar-stat { display: flex; justify-content: space-between; align-items: center; padding: .75rem 0; border-bottom: 1px solid rgba(255,255,255,.07); }
.sidebar-stat:last-of-type { border-bottom: none; }
.sidebar-stat-label { font-size: .82rem; color: rgba(255,255,255,.45); }
.sidebar-stat-val { font-size: .9rem; font-weight: 600; color: white; }
.cta-card { background: var(--red); border-radius: 16px; padding: 2rem; text-align: center; }
.cta-card p { font-size: .88rem; color: rgba(255,255,255,.85); line-height: 1.6; margin-bottom: 1.25rem; }
@media (max-width: 900px) {
  .project-hero { height: 360px; }
  .project-body { grid-template-columns: 1fr; padding: 40px 5vw 60px; }
  .project-sidebar { position: static; }
  .photo-grid { grid-template-columns: 1fr 1fr; }
  .photo-grid a:first-child { grid-column: span 2; }
  .before-after { grid-template-columns: 1fr; }
}

/* project stats strip */
.project-stats-strip { display: flex; background: white; border-bottom: 1px solid #ede9e5; }
.pstat { flex: 1; padding: 1.5rem 2rem; text-align: center; border-right: 1px solid #ede9e5; }
.pstat:last-child { border-right: none; }
.pstat-val { display: block; font-size: 1.6rem; font-weight: 800; color: var(--dark); letter-spacing: -.03em; line-height: 1; margin-bottom: .3rem; }
.pstat-label { font-size: .72rem; font-weight: 600; color: var(--gray); text-transform: uppercase; letter-spacing: .08em; }
@media (max-width: 900px) {
  .project-stats-strip { flex-wrap: wrap; }
  .pstat { flex: 1 1 50%; border-bottom: 1px solid #ede9e5; }
  .pstat:nth-child(2) { border-right: none; }
  .pstat:nth-child(3), .pstat:nth-child(4) { border-bottom: none; }
}

/* process timeline */
.process-steps { display: flex; flex-direction: column; gap: 0; margin-top: 1rem; }
.process-step { display: flex; gap: 1.25rem; position: relative; padding-bottom: 1.5rem; }
.process-step:last-child { padding-bottom: 0; }
.process-step::before { content: ''; position: absolute; left: 15px; top: 32px; bottom: 0; width: 2px; background: #ede9e5; }
.process-step:last-child::before { display: none; }
.process-step .step-num { min-width: 32px; height: 32px; background: var(--red); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .78rem; font-weight: 800; flex-shrink: 0; position: relative; z-index: 1; margin-top: .1rem; }
.step-body strong { display: block; font-size: .92rem; font-weight: 700; color: var(--dark); margin-bottom: .2rem; }
.step-body p { font-size: .85rem; color: var(--gray); line-height: 1.6; margin: 0; }

/* project quote */
.project-quote { background: var(--light); border-radius: 16px; padding: 2rem; margin: 2rem 0; position: relative; }
.project-quote::before { content: '\201E'; font-size: 5rem; color: var(--red); opacity: .15; position: absolute; top: -.5rem; left: 1.25rem; line-height: 1; font-family: Georgia, serif; }
.project-quote p { font-size: 1rem; color: var(--dark); line-height: 1.75; font-style: italic; position: relative; z-index: 1; margin-bottom: .75rem; }
.project-quote cite { font-size: .78rem; color: var(--gray); font-style: normal; font-weight: 600; }

/* project next */
.project-next-wrap { max-width: 1100px; margin: 0 auto; padding: 0 5vw 3rem; }
.project-next { border-top: 1px solid #ede9e5; padding-top: 2rem; }
.project-next-label { font-size: .72rem; font-weight: 700; color: var(--gray); letter-spacing: .08em; text-transform: uppercase; margin-bottom: .75rem; }
.project-next-link { display: flex; align-items: center; justify-content: space-between; background: var(--dark); border-radius: 14px; padding: 1.5rem 1.75rem; text-decoration: none; transition: background .2s, transform .2s, box-shadow .2s; gap: 1rem; }
.project-next-link:hover { background: #2e2824; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.18); }
.project-next-link strong { display: block; font-size: 1rem; color: white; margin-bottom: .25rem; }
.project-next-link span { font-size: .82rem; color: rgba(255,255,255,.45); }
.project-next-arrow { color: var(--red); font-size: 1.75rem; flex-shrink: 0; font-weight: 700; transition: transform .2s; }
.project-next-link:hover .project-next-arrow { transform: translateX(4px); }

/* sidebar contact block */
.sidebar-contact { margin-top: 1.5rem; padding: 1.5rem; background: var(--light); border-radius: 12px; }
.sidebar-contact strong { display: block; font-size: .8rem; font-weight: 700; color: var(--dark); margin-bottom: .4rem; }
.sidebar-contact p { font-size: .8rem; color: var(--gray); line-height: 1.6; margin-bottom: .75rem; }
.sidebar-contact a { display: block; font-size: .95rem; font-weight: 700; color: var(--dark); text-decoration: none; }
.sidebar-contact a:hover { color: var(--red); }

/* ── GDPR PAGE ── */
.gdpr-page .toc { background: var(--light); border-radius: 12px; padding: 1.5rem 2rem; margin-bottom: 3rem; }
.gdpr-page .toc h3 { font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gray); margin-bottom: 1rem; }
.gdpr-page .toc ol { padding-left: 1.25rem; display: flex; flex-direction: column; gap: .4rem; }
.gdpr-page .toc li a { font-size: .88rem; color: var(--dark); text-decoration: none; transition: color .2s; }
.gdpr-page .toc li a:hover { color: var(--red); }
.gdpr-page h2 { font-size: 1.15rem; font-weight: 800; letter-spacing: -.01em; margin: 2.5rem 0 .75rem; color: var(--dark); padding-top: .5rem; border-top: 1px solid #ede9e5; }
.gdpr-page h2:first-of-type { border-top: none; margin-top: 0; }
.gdpr-page p { font-size: .9rem; color: #444; line-height: 1.8; margin-bottom: .75rem; }
.gdpr-page ul, .gdpr-page ol { margin: .5rem 0 1rem 1.25rem; }
.gdpr-page ul li, .gdpr-page ol li { font-size: .9rem; color: #444; line-height: 1.8; margin-bottom: .25rem; }
.gdpr-page strong { color: var(--dark); }
.gdpr-page a { color: var(--red); text-decoration: none; }
.gdpr-page a:hover { text-decoration: underline; }
.gdpr-highlight { background: var(--light); border-left: 3px solid var(--red); padding: 1rem 1.25rem; border-radius: 0 8px 8px 0; margin: 1.5rem 0; font-size: .87rem; color: var(--gray); line-height: 1.7; }
.gdpr-page table { width: 100%; border-collapse: collapse; margin: 1rem 0 1.5rem; font-size: .87rem; }
.gdpr-page th { background: var(--light); padding: .75rem 1rem; text-align: left; font-weight: 600; border-bottom: 2px solid #e0ddd9; }
.gdpr-page td { padding: .75rem 1rem; border-bottom: 1px solid #ede9e5; color: #444; vertical-align: top; }
.gdpr-page tr:last-child td { border-bottom: none; }

/* ── INDEX PAGE ── */
[data-page="index"] #hero { position: relative; min-height: 100vh; display: flex; align-items: center; background: var(--dark); overflow: hidden; }
[data-page="index"] .hero-bg { position: absolute; inset: 0; background: linear-gradient(135deg, #2a1a14 0%, #1e1a17 50%, #1a1e1a 100%); }
[data-page="index"] .hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(210,70,60,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(210,70,60,.06) 1px, transparent 1px); background-size: 80px 80px; }
[data-page="index"] .hero-accent { position: absolute; width: 600px; height: 600px; background: radial-gradient(circle, rgba(210,70,60,.18) 0%, transparent 70%); top: -100px; right: -100px; pointer-events: none; }
[data-page="index"] .hero-accent2 { position: absolute; width: 400px; height: 400px; background: radial-gradient(circle, rgba(210,70,60,.1) 0%, transparent 70%); bottom: -50px; left: 10%; pointer-events: none; }
[data-page="index"] .hero-img-placeholder { position: absolute; right: 0; top: 0; bottom: 0; width: 50%; border-left: 1px solid rgba(255,255,255,.06); overflow: hidden; }
[data-page="index"] .hero-img-placeholder img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 30% center; }
[data-page="index"] .hero-content { position: relative; z-index: 2; padding: 0 5vw; max-width: 680px; }
[data-page="index"] .hero-badge { display: inline-flex; align-items: center; gap: .5rem; background: rgba(210,70,60,.15); border: 1px solid rgba(210,70,60,.3); color: var(--red-light); padding: .35rem 1rem; border-radius: 100px; font-size: .8rem; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 2rem; }
[data-page="index"] .hero-badge::before { content: "●"; font-size: .5rem; }
[data-page="index"] h1 { font-size: clamp(2.4rem, 7vw, 4.5rem); font-weight: 800; line-height: 1.05; color: var(--white); letter-spacing: -.03em; margin-bottom: 1.5rem; }
[data-page="index"] h1 em { font-style: normal; color: var(--red); }
[data-page="index"] .hero-sub { font-size: 1.15rem; color: rgba(255,255,255,.6); line-height: 1.6; max-width: 500px; margin-bottom: 2.5rem; font-weight: 300; }
[data-page="index"] .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; margin-bottom: 3.5rem; }
[data-page="index"] .hero-stats { display: flex; gap: 2.5rem; flex-wrap: wrap; }
[data-page="index"] .hero-stat strong { display: block; font-size: 2rem; font-weight: 800; color: var(--white); }
[data-page="index"] .hero-stat span { font-size: .85rem; color: rgba(255,255,255,.45); }
[data-page="index"] .ticker { background: var(--red); color: white; padding: .75rem 0; overflow: hidden; white-space: nowrap; }
[data-page="index"] .ticker-inner { display: inline-flex; animation: ticker 28s linear infinite; }
[data-page="index"] .ticker-item { font-size: .85rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 0 3rem; }
[data-page="index"] .ticker-item::after { content: "◆"; margin-left: 3rem; opacity: .5; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
[data-page="index"] section { padding: 100px 5vw; }

/* MOBILE — hero nemá zaberať celú obrazovku, ale len toľko, koľko obsah potrebuje */
@media (max-width: 900px) {
  [data-page="index"] #hero { min-height: auto; align-items: flex-start; padding: 110px 0 60px; }
  [data-page="index"] .hero-img-placeholder { display: none; }
  [data-page="index"] .hero-badge { margin-bottom: 1.5rem; }
  [data-page="index"] .hero-actions { margin-bottom: 2.5rem; }
  [data-page="index"] .hero-stats { gap: 1.5rem; }
}
[data-page="index"] h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; line-height: 1.1; letter-spacing: -.03em; color: var(--dark); margin-bottom: 1.5rem; }
[data-page="index"] h2 em { font-style: normal; color: var(--red); }
[data-page="index"] .section-lead { font-size: 1.1rem; color: var(--gray); max-width: 560px; line-height: 1.7; margin-bottom: 3.5rem; font-weight: 300; }
[data-page="index"] #onas { background: var(--light); }
[data-page="index"] .onas-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
[data-page="index"] .onas-img { aspect-ratio: 4/3; background: repeating-linear-gradient(45deg, #e0ddd9 0px, #e0ddd9 2px, #ece9e5 2px, #ece9e5 14px); border-radius: 12px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
[data-page="index"] .onas-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
[data-page="index"] .onas-values { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2rem; }
[data-page="index"] .value-item { display: flex; gap: 1rem; align-items: flex-start; }
[data-page="index"] .value-icon { width: 40px; height: 40px; min-width: 40px; display: flex; align-items: center; justify-content: center; color: var(--red); }
[data-page="index"] .value-icon svg { width: 28px; height: 28px; }
[data-page="index"] .value-item strong { display: block; font-weight: 600; font-size: .95rem; margin-bottom: .2rem; }
[data-page="index"] .value-item p { font-size: .85rem; color: var(--gray); line-height: 1.5; }
[data-page="index"] #galeria { background: #2a2420; }
[data-page="index"] #galeria h2, [data-page="index"] #galeria .section-label { color: var(--white); }
[data-page="index"] #galeria .section-lead { color: rgba(255,255,255,.5); }
[data-page="index"] .gallery-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 280px 200px; gap: 10px; border-radius: 12px; overflow: hidden; }
[data-page="index"] .gallery-item { background: #2a2420; background-size: cover; background-position: center; position: relative; overflow: hidden; display: block; text-decoration: none; }
[data-page="index"] .gallery-item.featured { grid-row: span 2; }
[data-page="index"] .gallery-item::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0); transition: background .25s; }
[data-page="index"] .gallery-item:hover::after { background: rgba(0,0,0,.28); }
[data-page="index"] .gallery-tag { position: absolute; bottom: 1rem; left: 1rem; background: rgba(0,0,0,.65); color: white; padding: .25rem .75rem; border-radius: 4px; font-size: .75rem; font-weight: 500; z-index: 1; }
[data-page="index"] .gallery-cta { position: absolute; bottom: 1rem; right: 1rem; background: var(--red); color: white; padding: .35rem .9rem; border-radius: 4px; font-size: .78rem; font-weight: 700; z-index: 1; opacity: 0; transform: translateY(4px); transition: opacity .2s, transform .2s; }
[data-page="index"] .gallery-item:hover .gallery-cta { opacity: 1; transform: translateY(0); }
[data-page="index"] .gallery-more { display: flex; align-items: center; justify-content: center; gap: .5rem; margin-top: 2rem; text-align: center; }
[data-page="index"] #referencie { background: var(--light); }
[data-page="index"] .reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
[data-page="index"] .review-card { background: var(--white); padding: 2rem; border-radius: 12px; border: 1px solid rgba(0,0,0,.06); }
[data-page="index"] .review-stars { color: #f4b942; font-size: 1rem; margin-bottom: 1rem; letter-spacing: .1em; }
[data-page="index"] .review-text { font-size: .95rem; line-height: 1.7; color: #444; margin-bottom: 1.5rem; font-style: italic; }
[data-page="index"] .review-author { display: flex; align-items: center; gap: .75rem; }
[data-page="index"] .review-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--red), #8b0000); display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: .9rem; }
[data-page="index"] .review-author strong { display: block; font-size: .9rem; font-weight: 600; }
[data-page="index"] .review-author span { font-size: .8rem; color: var(--gray); }
[data-page="index"] .review-source { margin-top: .5rem; font-size: .72rem; color: var(--gray); letter-spacing: .05em; text-transform: uppercase; }
[data-page="index"] #cennik { background: var(--light); padding: 80px 5vw; }
[data-page="index"] .cennik-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
[data-page="index"] .price-list { display: flex; flex-direction: column; gap: .75rem; margin-bottom: 2.5rem; }
[data-page="index"] .price-list-item { display: flex; align-items: center; gap: .75rem; font-size: .92rem; }
[data-page="index"] .check { color: var(--red); font-weight: 700; }
[data-page="index"] .btn-row { display: flex; gap: 1rem; flex-wrap: wrap; }
[data-page="index"] .btn-secondary-light { border-color: #ccc !important; color: var(--dark) !important; }
[data-page="index"] .usp-card { background: var(--dark); border-radius: 20px; padding: 2.5rem; display: flex; flex-direction: column; gap: 0; }
[data-page="index"] .usp-label { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 1.5rem; }
[data-page="index"] .usp-list { display: flex; flex-direction: column; gap: 1.25rem; }
[data-page="index"] .usp-item { display: flex; gap: 1rem; align-items: flex-start; }
[data-page="index"] .usp-icon { width: 36px; height: 36px; min-width: 36px; display: flex; align-items: center; justify-content: center; color: var(--red); }
[data-page="index"] .usp-icon svg { width: 26px; height: 26px; }
[data-page="index"] .usp-text strong { display: block; color: white; font-size: .9rem; margin-bottom: .2rem; }
[data-page="index"] .usp-text span { font-size: .8rem; color: rgba(255,255,255,.45); line-height: 1.5; }
[data-page="index"] .pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: start; }
[data-page="index"] .pricing-card { border-radius: 16px; border: 1.5px solid #e8e5e1; padding: 2.5rem; position: relative; transition: box-shadow .25s; }
[data-page="index"] .pricing-card:hover { box-shadow: 0 8px 40px rgba(0,0,0,.08); }
[data-page="index"] .pricing-card.featured { background: #1e1a17; border-color: #1e1a17; color: white; }
[data-page="index"] .pricing-card.featured h3, [data-page="index"] .pricing-card.featured .price-val, [data-page="index"] .pricing-card.featured li { color: white; }
[data-page="index"] .pricing-card.featured .price-note, [data-page="index"] .pricing-card.featured .pricing-desc { color: rgba(255,255,255,.55); }
[data-page="index"] .featured-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--red); color: white; font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: .3rem 1rem; border-radius: 100px; }
[data-page="index"] .pricing-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: .5rem; }
[data-page="index"] .pricing-desc { font-size: .85rem; color: var(--gray); margin-bottom: 2rem; line-height: 1.5; }
[data-page="index"] .price-val { font-size: 2.4rem; font-weight: 800; letter-spacing: -.03em; color: var(--dark); }
[data-page="index"] .price-unit { font-size: 1rem; font-weight: 400; }
[data-page="index"] .price-note { font-size: .78rem; color: var(--gray); margin-bottom: 1.5rem; }
[data-page="index"] .pricing-list { list-style: none; margin: 1.5rem 0 2rem; display: flex; flex-direction: column; gap: .75rem; }
[data-page="index"] .pricing-list li { font-size: .88rem; color: #444; display: flex; align-items: flex-start; gap: .6rem; }
[data-page="index"] .pricing-list li::before { content: "✓"; color: var(--red); font-weight: 700; min-width: 1rem; }
[data-page="index"] .pricing-card.featured .pricing-list li::before { color: #f47c77; }
[data-page="index"] #faq { background: var(--light); }
[data-page="index"] .faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; max-width: 900px; }
[data-page="index"] .faq-item { background: var(--white); border-radius: 10px; overflow: hidden; }
[data-page="index"] .faq-q { width: 100%; text-align: left; padding: 1.25rem 1.5rem; background: none; border: none; cursor: pointer; font-size: .95rem; font-weight: 500; color: var(--dark); display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
[data-page="index"] .faq-q .arrow { min-width: 20px; height: 20px; background: var(--light); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .8rem; transition: transform .25s, background .25s; }
[data-page="index"] .faq-item.open .faq-q .arrow { transform: rotate(45deg); background: var(--red); color: white; }
[data-page="index"] .faq-a { display: none; padding: 0 1.5rem 1.25rem; font-size: .87rem; color: var(--gray); line-height: 1.7; }
[data-page="index"] .faq-item.open .faq-a { display: block; }
[data-page="index"] #blog { background: var(--white); }
[data-page="index"] .blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
[data-page="index"] .blog-card { cursor: pointer; text-decoration: none; color: inherit; display: block; }
[data-page="index"] .blog-img { aspect-ratio: 16/9; background: repeating-linear-gradient(45deg, #f0ede9 0px, #f0ede9 2px, #e8e5e1 2px, #e8e5e1 14px); border-radius: 10px; margin-bottom: 1.25rem; display: flex; align-items: center; justify-content: center; font-size: .72rem; color: #bbb; overflow: hidden; transition: opacity .2s; }
[data-page="index"] .blog-card:hover .blog-img { opacity: .8; }
[data-page="index"] .blog-tag { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--red); margin-bottom: .5rem; }
[data-page="index"] .blog-card h3 { font-size: 1.05rem; font-weight: 700; line-height: 1.35; letter-spacing: -.01em; margin-bottom: .5rem; }
[data-page="index"] .blog-card p { font-size: .85rem; color: var(--gray); line-height: 1.6; }
[data-page="index"] .blog-meta { font-size: .77rem; color: #bbb; margin-top: .75rem; }
[data-page="index"] #kontakt { background: #f5f4f2; }
[data-page="index"] #kontakt h2, [data-page="index"] #kontakt .section-label { color: var(--dark); }
[data-page="index"] #kontakt .section-lead { color: var(--gray); }
[data-page="index"] .kontakt-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; }
[data-page="index"] .kontakt-info { display: flex; flex-direction: column; gap: 1.75rem; }
[data-page="index"] .kontakt-item { display: flex; gap: 1rem; align-items: flex-start; }
[data-page="index"] .kontakt-icon { width: 44px; height: 44px; min-width: 44px; background: rgba(210,70,60,.15); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
[data-page="index"] .kontakt-item strong { display: block; font-size: .78rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: .25rem; }
[data-page="index"] .kontakt-item a, [data-page="index"] .kontakt-item p { color: rgba(255,255,255,.85); text-decoration: none; font-size: 1rem; transition: color .2s; }
[data-page="index"] .kontakt-item a:hover { color: var(--red-light); }
[data-page="index"] .contact-form { display: flex; flex-direction: column; gap: 1rem; }
[data-page="index"] .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
[data-page="index"] .form-group { display: flex; flex-direction: column; gap: .4rem; }
[data-page="index"] .form-group label { font-size: .78rem; font-weight: 500; color: rgba(255,255,255,.5); letter-spacing: .05em; }
[data-page="index"] .form-group input, [data-page="index"] .form-group textarea, [data-page="index"] .form-group select { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); color: white; padding: .85rem 1rem; border-radius: 8px; font-family: var(--font-body); font-size: .95rem; outline: none; transition: border-color .2s; resize: none; }
[data-page="index"] .form-group input:focus, [data-page="index"] .form-group textarea:focus, [data-page="index"] .form-group select:focus { border-color: var(--red); }
[data-page="index"] .form-group input::placeholder, [data-page="index"] .form-group textarea::placeholder { color: rgba(255,255,255,.25); }
[data-page="index"] .form-group select option { background: var(--dark2); }
[data-page="index"] .form-success { display: none; background: rgba(37,211,102,.1); border: 1px solid rgba(37,211,102,.3); color: #25d366; padding: 1rem 1.5rem; border-radius: 8px; font-size: .95rem; text-align: center; }
[data-page="index"] #tweaks-panel { display: none; position: fixed; bottom: 24px; right: 24px; z-index: 200; background: white; border: 1px solid #e8e5e1; border-radius: 14px; padding: 1.5rem; width: 280px; box-shadow: 0 16px 60px rgba(0,0,0,.18); }
[data-page="index"] #tweaks-panel h4 { font-weight: 800; font-size: 1rem; margin-bottom: 1.25rem; letter-spacing: -.01em; }
[data-page="index"] .tweak-row { margin-bottom: 1rem; }
[data-page="index"] .tweak-row label { display: block; font-size: .75rem; font-weight: 500; color: #888; text-transform: uppercase; letter-spacing: .07em; margin-bottom: .4rem; }
[data-page="index"] .tweak-row input[type=color] { width: 100%; height: 38px; border: 1.5px solid #e8e5e1; border-radius: 6px; cursor: pointer; }
[data-page="index"] .tweak-row input[type=text], [data-page="index"] .tweak-row select { width: 100%; padding: .5rem .75rem; border: 1.5px solid #e8e5e1; border-radius: 6px; font-family: var(--font-body); font-size: .88rem; color: var(--dark); background: white; outline: none; cursor: pointer; }
@media (max-width: 900px) {
  [data-page="index"] .hero-img-placeholder { display: none; }
  [data-page="index"] .onas-grid, [data-page="index"] .kontakt-grid, [data-page="index"] .cennik-grid { grid-template-columns: 1fr; }
  [data-page="index"] .onas-values { grid-template-columns: 1fr; }
  [data-page="index"] .reviews-grid, [data-page="index"] .pricing-grid, [data-page="index"] .blog-grid { grid-template-columns: 1fr; }
  [data-page="index"] .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  [data-page="index"] .gallery-item.featured { grid-row: auto; }
  [data-page="index"] .faq-grid { grid-template-columns: 1fr; }
  [data-page="index"] .form-row { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   KALKULAČKA — /kalkulacka/
   ═══════════════════════════════════════════════════════════════ */

/* Layout */
.kalk-wrap { display: grid; grid-template-columns: 1fr 360px; gap: 2.5rem; align-items: start; margin-top: 1rem; }
@media (max-width: 900px) {
  .kalk-wrap { grid-template-columns: 1fr; }
  /* Na mobile: skryť sticky sidebar — zostane len výsledok pod formulárom */
  .kalk-wrap > aside .kalk-result { display: none; }
}

.kalk-form { display: flex; flex-direction: column; gap: 1.75rem; }
.kalk-section { background: white; border: 1px solid #ede9e5; border-radius: 14px; padding: 1.5rem 1.75rem; }
.kalk-section-title { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--red); margin-bottom: 1.25rem; }
.kalk-row { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.25rem; }
.kalk-row:last-child { margin-bottom: 0; }
.kalk-label { font-size: .92rem; font-weight: 600; color: var(--dark); }
.kalk-hint { font-size: .78rem; color: var(--gray); margin-top: -.25rem; }

/* Slider */
.kalk-slider-wrap { display: flex; align-items: center; gap: 1rem; }
.kalk-slider { flex: 1; -webkit-appearance: none; appearance: none; height: 6px; border-radius: 3px; background: #ede9e5; outline: none; }
.kalk-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 22px; height: 22px; background: var(--red); border-radius: 50%; cursor: pointer; box-shadow: 0 2px 8px rgba(210,70,60,.3); transition: transform .15s; }
.kalk-slider::-webkit-slider-thumb:hover { transform: scale(1.15); }
.kalk-slider::-moz-range-thumb { width: 22px; height: 22px; background: var(--red); border: none; border-radius: 50%; cursor: pointer; }
.kalk-slider-value { min-width: 70px; padding: .35rem .75rem; background: var(--light); border-radius: 6px; font-size: .9rem; font-weight: 700; color: var(--dark); text-align: center; }

/* Select */
.kalk-select { width: 100%; padding: .7rem .9rem; font-family: inherit; font-size: .92rem; color: var(--dark); background: var(--light); border: 1px solid #ede9e5; border-radius: 8px; cursor: pointer; transition: border-color .2s; }
.kalk-select:hover, .kalk-select:focus { border-color: var(--red); outline: none; }

/* Toggle (segmented switch) */
.kalk-toggle { display: inline-flex; gap: 0; background: var(--light); padding: 4px; border-radius: 8px; border: 1px solid #ede9e5; }
.kalk-toggle input { display: none; }
.kalk-toggle label { padding: .55rem 1.4rem; font-size: .85rem; font-weight: 600; color: var(--gray); cursor: pointer; border-radius: 6px; transition: all .2s; user-select: none; }
.kalk-toggle input:checked + label { background: var(--red); color: white; box-shadow: 0 2px 6px rgba(210,70,60,.25); }

/* Checkbox grid */
.kalk-checkbox-grid { display: flex; flex-direction: column; gap: .5rem; }
.kalk-checkbox-item { display: flex; align-items: center; gap: .85rem; padding: .7rem .95rem; background: var(--light); border: 1px solid #ede9e5; border-radius: 8px; cursor: pointer; transition: all .15s; user-select: none; }
.kalk-checkbox-item:hover { background: white; border-color: #ddd; }
.kalk-checkbox-item input { width: 18px; height: 18px; accent-color: var(--red); cursor: pointer; flex-shrink: 0; margin: 0; }
.kalk-checkbox-item:has(input:checked) { background: #fff1ef; border-color: var(--red); }
.kalk-checkbox-text { flex: 1; font-size: .88rem; color: var(--dark); line-height: 1.4; }
.kalk-checkbox-price { font-size: .8rem; color: var(--red); font-weight: 700; white-space: nowrap; }

/* Number input */
.kalk-number { display: inline-flex; align-items: center; gap: .5rem; background: var(--light); border: 1px solid #ede9e5; border-radius: 8px; padding: .25rem; }
.kalk-number button { width: 32px; height: 32px; border: none; background: white; border-radius: 6px; font-size: 1rem; font-weight: 700; cursor: pointer; color: var(--dark); transition: background .2s; }
.kalk-number button:hover { background: var(--red); color: white; }
.kalk-number input { width: 50px; text-align: center; border: none; background: transparent; font-family: inherit; font-size: .92rem; font-weight: 700; color: var(--dark); }
.kalk-number input:focus { outline: none; }

/* Result sidebar — bez sticky (pri scrolle sa pohybuje s obsahom, nie fixne) */
.kalk-result { background: var(--dark); border-radius: 16px; padding: 2rem 1.75rem; color: white; }
.kalk-result-label { font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--red); margin-bottom: .75rem; }
.kalk-result-title { font-size: 1.1rem; font-weight: 700; line-height: 1.3; margin-bottom: 1.5rem; color: white; }
.kalk-result-range { display: flex; align-items: baseline; gap: .5rem; flex-wrap: wrap; margin-bottom: 1rem; }
.kalk-result-num { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 800; letter-spacing: -.03em; color: var(--red); line-height: 1; }
.kalk-result-sep { color: rgba(255,255,255,.4); font-size: .9rem; font-weight: 500; }
.kalk-result-note { font-size: .78rem; color: rgba(255,255,255,.55); line-height: 1.55; padding-top: 1rem; margin-top: 1rem; border-top: 1px solid rgba(255,255,255,.1); }
.kalk-result-cta { display: block; text-align: center; margin-top: 1.5rem; padding: .9rem 1.25rem; background: var(--red); color: white; font-size: .9rem; font-weight: 700; text-decoration: none; border-radius: 8px; transition: background .2s, transform .2s; }
.kalk-result-cta:hover { background: #b83830; transform: translateY(-1px); }

/* „Zmenili ste vstupy" upozornenie — zladený callout (skryté kým ho JS nezapne) */
.kalk-stale-hint { display: none; }
.kalk-stale-hint.is-on {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  max-width: 32rem;
  margin: .9rem auto 0;
  padding: .6rem .85rem;
  background: #fff8f7;
  border: 1px solid rgba(210, 70, 60, .2);
  border-left: 3px solid var(--red);
  border-radius: 8px;
  font-size: .8rem;
  line-height: 1.45;
  color: var(--dark);
  text-align: left;
}
.kalk-stale-hint.is-on::before {
  content: "↻";
  flex: 0 0 auto;
  color: var(--red);
  font-weight: 700;
}
/* Variant vnútri tmavého výsledkového bloku */
.kalk-result .kalk-stale-hint.is-on {
  max-width: none;
  margin: 0 0 1rem;
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .14);
  border-left-color: var(--red);
  color: rgba(255, 255, 255, .72);
}

.kalk-disclaimer { margin-top: 2rem; padding: 1rem 1.25rem; background: #fff8f7; border-left: 3px solid var(--red); border-radius: 6px; font-size: .82rem; color: var(--dark); line-height: 1.6; }
.kalk-disclaimer strong { color: var(--red); }

/* ──────────────────────────────────────────────────────────────
   HERO TAGLINE — silná veta medzi H1 a hero-sub (one-stop pivot)
   ────────────────────────────────────────────────────────────── */
[data-page="index"] .hero-tagline {
  font-size: clamp(1.1rem, 2.6vw, 1.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.35;
  letter-spacing: -.01em;
  margin-bottom: 1rem;
  max-width: 520px;
}

/* ──────────────────────────────────────────────────────────────
   ONE-STOP SECTION — „Čo všetko zariadime za vás"
   Hub & spoke diagram + Bez/S Remba tabuľka.
   ────────────────────────────────────────────────────────────── */
#onestop { padding: 5rem 5vw; background: #fff; }
#onestop .onestop-head { max-width: 720px; margin: 0 auto 3rem; text-align: center; }
#onestop h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; color: var(--dark); letter-spacing: -.02em; line-height: 1.15; margin-bottom: 1rem; }
#onestop h2 em { font-style: normal; color: var(--red); }
#onestop .onestop-lead { font-size: 1.05rem; color: var(--gray); line-height: 1.55; }

/* Hub & spoke diagram */
.spoke-wrap { max-width: 880px; margin: 0 auto 2rem; }
.spoke-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-items: stretch;
}
.spoke-cell {
  background: #fff;
  border: 1px solid #e8e5e1;
  border-radius: 14px;
  padding: 1rem .85rem;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .35rem;
  min-height: 90px;
  transition: transform .15s, border-color .15s;
}
.spoke-cell:hover { transform: translateY(-2px); border-color: rgba(210,70,60,.3); }
.spoke-icon { font-size: 1.6rem; line-height: 1; }
.spoke-label { font-size: .82rem; font-weight: 600; color: var(--dark); letter-spacing: .01em; }
.spoke-center {
  background: var(--dark);
  border: none;
  color: var(--white);
}
.spoke-center .spoke-icon { font-size: 2rem; }
.spoke-center .spoke-brand { font-size: 1.15rem; font-weight: 800; letter-spacing: .02em; margin-top: .15rem; }
.spoke-center .spoke-sub { font-size: .72rem; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: .12em; margin-top: .2rem; }

.spoke-customer {
  margin: 0 auto;
  max-width: 280px;
  text-align: center;
  padding: 1rem;
  background: #fff;
  border: 1px dashed rgba(210,70,60,.4);
  border-radius: 14px;
  color: var(--dark);
  font-size: .88rem;
  font-weight: 500;
}
.spoke-customer strong { color: var(--red); }
.spoke-arrow {
  display: block;
  text-align: center;
  font-size: 2rem;
  color: var(--red);
  line-height: 1;
  margin: .25rem 0;
}

.onestop-disclaimer {
  max-width: 720px;
  margin: 2rem auto 3rem;
  padding: 1rem 1.25rem;
  background: #fff;
  border-left: 3px solid var(--red);
  border-radius: 6px;
  font-size: .88rem;
  color: var(--dark);
  line-height: 1.55;
}
.onestop-disclaimer strong { color: var(--red); }

/* Bez / S Remba tabuľka */
.compare-wrap { max-width: 880px; margin: 0 auto; }
.compare-table {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e8e5e1;
}
.compare-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  border-bottom: 1px solid #f0ede9;
}
.compare-row:last-child { border-bottom: none; }
.compare-row.head {
  background: var(--dark);
  color: var(--white);
}
.compare-row.head .compare-cell { font-weight: 700; font-size: .9rem; letter-spacing: .03em; text-transform: uppercase; }
.compare-row.head .compare-cell.remba { color: #ffb3a8; }
.compare-cell {
  padding: 1rem 1.1rem;
  font-size: .95rem;
  color: var(--dark);
  line-height: 1.4;
}
.compare-cell.label { font-weight: 600; background: #fafaf8; }
.compare-cell.bez { color: #8a4a44; }
.compare-cell.bez::before { content: "✗ "; color: #c44; font-weight: 700; }
.compare-cell.remba { color: var(--dark); font-weight: 500; }
.compare-cell.remba::before { content: "✓ "; color: #2c8a3f; font-weight: 700; }

/* Mobile: diagram → 2 stĺpce, tabuľka → karty */
@media (max-width: 700px) {
  #onestop { padding: 3rem 5vw; }
  .spoke-grid { grid-template-columns: repeat(2, 1fr); }
  .spoke-grid .spoke-center { grid-column: 1 / -1; order: 0; }
  .spoke-cell { min-height: 70px; padding: .8rem .5rem; }
  .spoke-icon { font-size: 1.3rem; }
  .spoke-label { font-size: .72rem; }
  .spoke-arrow { margin: .5rem 0; }

  .compare-row { grid-template-columns: 1fr; }
  .compare-row { padding: .25rem 0; }
  .compare-cell { padding: .65rem 1rem; }
  .compare-cell.label { font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; padding-bottom: .25rem; }
  .compare-cell.bez { font-size: .9rem; padding-top: .25rem; padding-bottom: .25rem; }
  .compare-cell.remba { font-size: .9rem; padding-top: .25rem; }
  .compare-row.head .compare-cell { display: none; }
  .compare-row.head .compare-cell.label { display: block; background: var(--dark); color: var(--white); padding: .8rem 1rem; }
}

/* ──────────────────────────────────────────────────────────────
   ONE-STOP info box pre service stránky (kupelna.html, atd.)
   Variant B — bez linku, len text.
   ────────────────────────────────────────────────────────────── */
.onestop-box {
  max-width: 880px;
  margin: 1.5rem auto 2rem;
  padding: 1rem 1.25rem;
  background: #fff8f7;
  border-left: 3px solid var(--red);
  border-radius: 6px;
  font-size: .92rem;
  color: var(--dark);
  line-height: 1.55;
}
.onestop-box strong { color: var(--red); }

/* ──────────────────────────────────────────────────────────────
   COLLAPSIBLE-HIGHLIGHT — kompaktný rozbaľovací box s podtitulom
   a CTA pillom. Full width na desktope (stretchne sa do parent
   sekcie), menšie fonty a padding pre minimálnu vizuálnu váhu.
   ────────────────────────────────────────────────────────────── */
.collapsible-highlight {
  background: linear-gradient(135deg, #fff8f5 0%, #fffaf7 100%);
  border: 1px solid #f0d8c5;
  border-radius: 12px;
  padding: 0 clamp(1rem, 2.5vw, 1.5rem);
  margin: 0;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.collapsible-highlight:hover { border-color: var(--red); box-shadow: 0 4px 16px rgba(210,70,60,0.07); }
.collapsible-highlight details[open] { border-color: var(--red); }
.collapsible-highlight details { padding: 1rem 0; }
.collapsible-highlight summary .summary-text { flex: 1; }
.collapsible-highlight summary .section-label { color: var(--red); font-size: 0.66rem; margin-bottom: 0.35rem; }
.collapsible-highlight summary h2 { color: var(--dark); font-size: clamp(1.05rem, 1.6vw, 1.25rem); margin-bottom: 0.5rem; line-height: 1.3; }
.collapsible-highlight .summary-subtitle {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.55;
  margin: 0 0 0.85rem 0;
  font-weight: 400;
}
.collapsible-highlight .summary-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.95rem;
  background: var(--red);
  color: #fff;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background 0.2s, transform 0.2s;
}
.collapsible-highlight summary:hover .summary-cta { background: #b83830; transform: translateY(-1px); }
.collapsible-highlight .cta-arrow { font-size: 0.9rem; line-height: 1; transition: transform 0.25s ease; }
.collapsible-highlight details[open] .cta-arrow { transform: rotate(180deg); }
.collapsible-highlight .cta-text-open { display: none; }
.collapsible-highlight details[open] .cta-text-closed { display: none; }
.collapsible-highlight details[open] .cta-text-open { display: inline; }
.collapsible-highlight details[open] .summary-cta { background: var(--dark); }
/* Toggle "+" v rohu skryjeme — CTA je dostatočné a jednoznačnejšie */
.collapsible-highlight .toggle-icon { display: none; }
/* Body */
.collapsible-highlight .collapsible-body {
  padding-top: 1rem;
  margin-top: 1rem;
  border-top: 1px solid #f0d8c5;
}
.collapsible-highlight .collapsible-body p { font-size: 0.9rem; line-height: 1.7; color: var(--dark); margin-bottom: 0.75rem; }
.collapsible-highlight .collapsible-body p:last-child { margin-bottom: 0; }

@media (max-width: 700px) {
  .collapsible-highlight { padding: 0 1rem; margin: 1.25rem 0; }
  .collapsible-highlight details { padding: 0.9rem 0; }
  .collapsible-highlight .summary-subtitle { font-size: 0.85rem; margin-bottom: 0.75rem; }
  .collapsible-highlight .summary-cta { font-size: 0.75rem; padding: 0.45rem 0.85rem; }
}

/* ── Trustindex carousel — šipky aj na strednom rozlíšení ──────────────────
   Trustindex defaultne ukazuje šipky iba od 1024px. Telefón (do 480px) ich
   nemá zobrazovať — ale tablety a stredné rozlíšenia (600–1023px) áno. */
@media (min-width: 600px) {
  .ti-widget.ti-goog .ti-controls { display: block !important; }
}
