/* ==========================================================================
   KOSI STAV – Stavebné povolenia
   Dizajn „showroom" – svetlý bento layout, pill tvary, veľká fotka
   (predloha: Vespa Matic hero)
   ========================================================================== */

:root {
  --bg: #F1F2ED;
  --card: #FFFFFF;
  --ink: #101110;
  --ink-2: #1C1D1A;
  --muted: #63665D;
  --line: #E2E3DC;
  --red: #E8611A;
  --red-dark: #C94F10;

  --r-xl: 36px;
  --r-lg: 28px;
  --r-md: 20px;

  --font: "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

h1, h2, h3 {
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1.04;
}

a { color: inherit; }
:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; }
::selection { background: var(--ink); color: var(--bg); }

.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
.section { padding: 110px 0 0; }
.hero + .section { padding-top: 48px; }
section[id] { scroll-margin-top: 24px; }

/* ---------- Reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
[data-reveal="l"] { transform: translateX(-36px); }
[data-reveal="r"] { transform: translateX(36px); }
[data-reveal].in { opacity: 1; transform: none; }
.stagger > *:nth-child(2) { transition-delay: .07s; }
.stagger > *:nth-child(3) { transition-delay: .14s; }
.stagger > *:nth-child(4) { transition-delay: .21s; }
.stagger > *:nth-child(5) { transition-delay: .28s; }
.stagger > *:nth-child(6) { transition-delay: .35s; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ---------- Pill prvky ---------- */
.pill {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-size: 15px; font-weight: 500;
  padding: 13px 26px;
  border-radius: 999px;
  background: var(--card); color: var(--ink);
  text-decoration: none; border: 0; cursor: pointer;
  white-space: nowrap;
  transition: background .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.pill:hover { box-shadow: 0 10px 26px rgba(16, 17, 16, 0.12); transform: translateY(-1px); }
.pill:active { transform: translateY(0) scale(.98); }
.pill--dark { background: var(--ink); color: #fff; }
.pill--dark:hover { background: #000; }
.pill--red { background: var(--red); color: #fff; }
.pill--red:hover { background: var(--red-dark); }
.pill svg { width: 15px; height: 15px; flex: none; }

.circ {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; flex: none;
  border-radius: 50%;
  background: var(--ink); color: #fff;
  text-decoration: none; border: 0; cursor: pointer;
  transition: background .2s ease, transform .25s ease;
}
.circ svg { width: 17px; height: 17px; }
.circ:hover { background: #000; transform: rotate(45deg); }
.circ--ghost { background: rgba(255, 255, 255, 0.16); border: 1px solid rgba(255, 255, 255, 0.55); backdrop-filter: blur(6px); }
.circ--ghost:hover { background: rgba(255, 255, 255, 0.3); }

/* Sekčné hlavičky – veľký nadpis na jeden riadok, od ľavého kraja */
.sec-top {
  display: block;
  text-align: left;
  margin-left: calc(50% - 50vw + 8px);
  width: calc(100vw - 16px);
  margin-bottom: 46px;
}
.sec-top h2 {
  font-size: clamp(42px, 7.2vw, 118px);
  max-width: none;
  margin-top: 6px;
  font-style: normal;
}
.sec-top h2 em { font-style: italic; }
@media (min-width: 700px) {
  .sec-top h2 { white-space: nowrap; }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 780px;
  padding: 14px;
  display: flex;
}
.hero-inner {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(575px, 47%) 1fr;
}

/* ---------- Horná navigácia ---------- */
.hero-topbar {
  position: absolute; top: 12px; left: 12px; z-index: 20;
  display: flex; align-items: center; gap: 10px;
}

/* Logo */
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--card);
  border-radius: 999px;
  padding: 11px clamp(15px, 1.5vw, 22px) 11px clamp(11px, 1.1vw, 16px);
  text-decoration: none;
  transition: box-shadow .2s ease, transform .2s ease;
}
.brand:hover { box-shadow: 0 10px 26px rgba(16, 17, 16, 0.12); transform: translateY(-1px); }
.brand-mark { width: clamp(25px, 2vw, 30px); height: auto; flex: none; }
.brand-text {
  font-size: clamp(16px, 1.35vw, 20px); font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--red);
}
.brand-text em { font-style: normal; color: var(--ink); }

.hero-nav {
  display: flex; align-items: center;
  background: var(--card);
  border-radius: 999px;
  padding: 7px;
  gap: 2px;
}
.hero-nav a {
  font-size: clamp(12.5px, 1vw, 15px); font-weight: 500;
  color: var(--ink); text-decoration: none;
  padding: 11px clamp(12px, 1.42vw, 22px);
  white-space: nowrap;
  border-radius: 999px;
  transition: background .2s ease;
}
.hero-nav a:hover { background: rgba(16, 17, 16, 0.06); }
.hero-nav a.active { background: var(--ink); color: #fff; }

/* Hamburger (mobil) */
.nav-toggle {
  display: none;
  position: fixed; top: 20px; right: 20px; z-index: 60;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--ink); border: 0; cursor: pointer;
}
.nav-toggle span {
  display: block; width: 20px; height: 2px; margin: 2.5px auto;
  background: #fff; border-radius: 2px;
  transition: all .25s ease;
}
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(4.5px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-4.5px) rotate(-45deg); }

.m-nav {
  position: fixed; inset: 0; z-index: 50;
  background: var(--bg);
  display: none; flex-direction: column; justify-content: center; gap: 4px;
  padding: 90px 32px 44px;
}
body.nav-open .m-nav { display: flex; }
body.nav-open { overflow: hidden; }
.m-nav a {
  font-size: clamp(30px, 8vw, 44px); font-weight: 500;
  color: var(--ink); text-decoration: none;
  letter-spacing: -0.02em;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
}
.m-nav a:hover { color: var(--red); }
.m-nav .m-phone { margin-top: 26px; font-size: 20px; font-weight: 600; color: var(--red); border-bottom: 0; }

/* ---------- Ľavý stĺpec ---------- */
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 82px 40px 215px 10px;
  min-height: 100%;
  overflow: hidden;
}
.hero-left h1 {
  font-size: clamp(36px, 3.8vw, 60px);
  font-weight: 500;
}
.h1-red { font-style: normal; color: var(--red); }
.hero-actions {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  margin-top: 38px;
}
/* ---------- Fotka vpravo ---------- */
.hero-media {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  min-height: 100%;
  background: var(--ink);
}
.hero-media > picture,
.hero-media > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10, 11, 10, 0.34), rgba(10, 11, 10, 0) 45%);
  pointer-events: none;
}

/* biela plocha s kontaktom – vyrezaná do pravého horného rohu fotky */
.hero-plate {
  position: absolute; top: 0; right: 0; z-index: 5;
  background: var(--bg);
  padding: 0 0 14px 14px;
  border-bottom-left-radius: 30px;
  display: flex; align-items: flex-start;
}
.hero-plate::before,
.hero-plate::after {
  content: ""; position: absolute;
  width: 20px; height: 20px;
  background: radial-gradient(circle 20px at 0% 100%, rgba(0,0,0,0) 19px, var(--bg) 19.6px);
  pointer-events: none;
}
.hero-plate::before { top: 0; left: -20px; }
.hero-plate::after { right: 0; bottom: -20px; }
.hero-plate-in { display: flex; gap: 10px; align-items: center; padding: 6px 0 0 6px; }
.hero-plate .pill { padding: 13px 26px; }

/* kruhová ikonka (kontaktné riadky) */
.chip-ico {
  width: 30px; height: 30px; flex: none;
  border-radius: 50%;
  background: var(--ink); color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.chip-ico svg { width: 14px; height: 14px; }

/* ---------- Mini slider typov stavieb – plávajúca karta cez roh fotky ---------- */
.type-slider {
  position: absolute; z-index: 6;
  left: -14px; bottom: 36px;
  width: calc(47% + 164px);
  max-width: calc(100% - 30px);
  background: rgba(241, 242, 237, 0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
  padding: 14px 14px 14px 18px;
}
.hc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.hc-card {
  position: relative;
  display: flex; align-items: center; justify-content: flex-start;
  border-radius: 18px;
  padding: 56px 16px;
  text-decoration: none;
  transition: transform .3s ease, box-shadow .3s ease;
}
.hc-card:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(16, 17, 16, 0.16); }
.hc-card--red   { background: linear-gradient(155deg, rgba(240, 126, 52, 0.88) 0%, rgba(232, 97, 26, 0.9) 45%, rgba(191, 76, 12, 0.92) 100%); }
.hc-card--dark  { background: linear-gradient(155deg, rgba(46, 50, 60, 0.88) 0%, rgba(22, 24, 30, 0.9) 60%, rgba(12, 14, 18, 0.92) 100%); }
.hc-card--light { background: linear-gradient(155deg, rgba(226, 223, 212, 0.94) 0%, rgba(211, 207, 194, 0.92) 55%, rgba(193, 188, 174, 0.94) 100%); }
.hc-card {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.22);
}
.hc-top {
  position: absolute; top: 15px; left: 17px; right: 17px;
  display: flex; align-items: center; justify-content: space-between;
}
.hc-ico { width: 30px; height: 30px; color: #fff; opacity: 0.8; }
.hc-ico svg { width: 100%; height: 100%; }
.hc-card .circ--ghost { width: 32px; height: 32px; }
.hc-card .circ--ghost svg { width: 12px; height: 12px; }
.hc-card:hover .circ--ghost { transform: rotate(45deg); }
.hc-card h3 {
  color: #fff;
  font-size: clamp(18px, 1.95vw, 28px); font-weight: 600;
  letter-spacing: -0.025em; line-height: 1.18;
  margin: 0;
  text-align: left;
  white-space: nowrap;
}
.hc-card--light .hc-ico { color: var(--ink); opacity: 0.6; }
.hc-card--light h3 { color: var(--ink); }
.hc-card--light .circ--ghost {
  border-color: rgba(16, 17, 16, 0.35);
  color: var(--ink);
  background: rgba(16, 17, 16, 0.05);
}

/* ==========================================================================
   01 · POSTUP
   ========================================================================== */
.timeline {
  position: relative;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  padding-top: 6px;
}
.tl-step { position: relative; }
/* spojovacia čiara medzi krúžkami – rovná, prerušovaná */
.tl-step:not(:last-child)::before {
  content: ""; position: absolute; top: 27px; left: 70px; right: -22px;
  border-top: 2px dashed #C8CAC1;
}
.tl-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--ink); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 600;
  position: relative; z-index: 2;
  margin-bottom: 26px;
}
.tl-step:last-child .tl-num { background: var(--red); }
.tl-body h3 {
  font-size: clamp(24px, 2.8vw, 40px); font-weight: 600;
  letter-spacing: -0.025em; line-height: 1.06;
  margin-bottom: 12px;
  font-style: normal;
}
.tl-body h3 em { font-style: normal; }
.tl-body p { font-size: 14.5px; }
.step-tag {
  display: inline-block;
  margin-top: 16px;
  font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--red);
  border: 1.5px solid var(--red);
  border-radius: 999px;
  padding: 5px 14px;
}

/* ==========================================================================
   02 · VYBAVÍME – tmavá karta
   ========================================================================== */
#vybavime { padding-top: 80px; }
#vybavime .container { max-width: none; padding: 0; }
.deliver-card {
  background: var(--ink); color: #A2A49B;
  border-radius: 0 var(--r-xl) var(--r-xl) 0;
  padding: 44px clamp(24px, 4vw, 64px) 48px;
  margin: 0 clamp(24px, 5vw, 80px) 0 0;
}
#vybavime .sec-top { margin-bottom: 22px; }
.deliver-card .deliver-card h2 { color: #fff; }
.deliver-card .sec-top p { color: #A2A49B; }
.deliver-list {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0 60px;
}
.dl-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 15px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.16);
}
.dl-check {
  width: 30px; height: 30px; flex: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.dl-check svg { width: 13px; height: 13px; }
.dl-check path {
  stroke-dasharray: 24; stroke-dashoffset: 24;
  transition: stroke-dashoffset .5s ease .25s;
}
.in .dl-check path { stroke-dashoffset: 0; }
.dl-item strong {
  display: block;
  font-size: 16.5px; font-weight: 600; letter-spacing: -0.01em;
  color: #fff; margin-bottom: 2px;
}
.dl-item p { font-size: 13.5px; line-height: 1.5; }
.deliver-foot {
  margin-top: 32px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.deliver-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.deliver-tags span {
  padding: 10px 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff; font-size: 14px; font-weight: 500;
}
.deliver-foot .pill { background: #fff; color: var(--ink); }
.deliver-foot .pill:hover { background: var(--bg); }

/* ==========================================================================
   03 · PRE AKÉ STAVBY
   ========================================================================== */
.types { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.type-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 3 / 3.7;
  text-decoration: none;
  display: block;
}
/* kreslené ilustrácie namiesto fotiek */
.type-illu {
  position: absolute; left: 0; right: 0; top: 0; bottom: 84px;
  display: flex; align-items: center; justify-content: center;
  transition: transform .5s ease;
}
.type-illu svg { width: 100%; height: 100%; }
.type-card:hover .type-illu { transform: translateY(-6px); }
.type-card--light  { background: linear-gradient(160deg, #FBFAF7 0%, #EFEDE5 55%, #E0DDD1 100%); color: var(--ink); }
.type-card--dark   { background: linear-gradient(160deg, #2E323C 0%, #17191F 60%, #0D0F13 100%); color: #fff; }
.type-card--orange { background: linear-gradient(160deg, #F08340 0%, #E8611A 50%, #C24E10 100%); color: #fff; }
.type-card--slate  { background: linear-gradient(160deg, #8E958C 0%, #6E756D 55%, #545A53 100%); color: #fff; }
.type-card--light .circ--ghost {
  border-color: rgba(16, 17, 16, 0.3);
  background: rgba(16, 17, 16, 0.05);
  color: var(--ink);
}
.type-card .circ--ghost { position: absolute; top: 14px; right: 14px; z-index: 2; }
.type-body {
  position: absolute; left: 14px; right: 14px; bottom: 14px; z-index: 2;
  background: var(--card);
  border-radius: var(--r-md);
  padding: 16px 18px;
}
.type-body h3 { font-size: 19px; font-weight: 600; letter-spacing: -0.01em; }
.type-body p { font-size: 13.5px; margin-top: 3px; color: var(--muted); }

/* ==========================================================================
   04 · PODKLADY
   ========================================================================== */
.needs {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 14px;
  align-items: stretch;
}
.needs-intro {
  background: var(--card);
  border-radius: var(--r-xl);
  padding: 48px 46px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 20px;
}
.needs-intro h2 { font-size: clamp(32px, 3.4vw, 46px); }
.needs-intro p { font-size: 15.5px; max-width: 420px; }
.needs-intro .pill { margin-top: 8px; }
.needs-list {
  background: var(--card);
  border-radius: var(--r-xl);
  padding: 26px 40px;
  display: flex; flex-direction: column; justify-content: center;
}
.need-item {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px dashed var(--line);
}
.need-item:last-child { border-bottom: 0; }
.need-num {
  width: 46px; height: 46px; flex: none;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 600; color: var(--ink);
}
.need-item strong {
  display: block;
  font-size: 17.5px; font-weight: 600; color: var(--ink);
  letter-spacing: -0.01em; margin-bottom: 2px;
}
.need-item p { font-size: 14px; }

/* ==========================================================================
   05 · PREČO MY + štatistiky
   ========================================================================== */
.benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.benefit {
  background: var(--card);
  border-radius: var(--r-lg);
  padding: 28px 28px 30px;
}
.benefit-ico {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--bg);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 40px;
}
.benefit-ico svg { width: 20px; height: 20px; }
.benefit h3 { font-size: 19.5px; font-weight: 600; letter-spacing: -0.015em; margin-bottom: 8px; }
.benefit p { font-size: 14.5px; }

/* ==========================================================================
   06 · CENA
   ========================================================================== */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; align-items: stretch; }
.price-card {
  position: relative;
  background: var(--card);
  border-radius: var(--r-xl);
  padding: 36px 34px;
  display: flex; flex-direction: column;
}
.price-card--dark { background: var(--ink); color: #A2A49B; }
.price-head {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  margin-bottom: 26px;
}
.price-tag {
  font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted);
}
.price-card--dark .price-tag { color: #8B8D84; }
.price-flag {
  font-size: 12.5px; font-weight: 600;
  padding: 7px 16px;
  border-radius: 999px;
  background: var(--red); color: #fff;
  letter-spacing: 0.04em; text-transform: uppercase;
  white-space: nowrap;
}
.price-card h3 { font-size: 24px; font-weight: 600; letter-spacing: -0.015em; }
.price-card--dark h3 { color: #fff; }
.price-card h3 small {
  display: block;
  font-size: 13.5px; font-weight: 500; letter-spacing: 0;
  color: var(--muted); margin-top: 4px;
}
.price-card--dark h3 small { color: #8B8D84; }
.price-val {
  font-size: clamp(34px, 2.9vw, 46px);
  font-weight: 500; color: var(--ink);
  letter-spacing: -0.03em; line-height: 1;
  margin: 22px 0 6px;
  white-space: nowrap;
}
.price-card--dark .price-val { color: #fff; }
.price-val small { font-size: 0.4em; font-weight: 500; color: var(--muted); vertical-align: 10px; margin-right: 7px; }
.price-list { list-style: none; margin: 20px 0 30px; }
.price-list li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 14.5px;
  padding: 9px 0;
  border-bottom: 1px dashed var(--line);
}
.price-card--dark .price-list li { border-color: rgba(255, 255, 255, 0.14); }
.price-list li::before {
  content: "";
  width: 18px; height: 18px; flex: none; margin-top: 2px;
  border-radius: 50%;
  background: var(--red);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='9' fill='black'/%3E%3Cpath d='m6.4 10.4 2.4 2.4 4.8-5.4' stroke='white' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='9' fill='black'/%3E%3Cpath d='m6.4 10.4 2.4 2.4 4.8-5.4' stroke='white' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}
.price-card .pill { margin-top: auto; width: 100%; }
.price-card--dark .pill { background: #fff; color: var(--ink); }
.price-card--dark .pill:hover { background: var(--bg); }
.price-note {
  margin-top: 26px;
  font-size: 13.5px; text-align: center;
  max-width: 660px; margin-inline: auto;
}

/* ==========================================================================
   07 · REFERENCIE
   ========================================================================== */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.testi {
  background: var(--card);
  border-radius: var(--r-lg);
  padding: 30px 28px 26px;
  display: flex; flex-direction: column; gap: 16px;
}
.testi-stars { color: var(--red); font-size: 15px; letter-spacing: 4px; }
.testi blockquote {
  font-size: 16.5px; line-height: 1.55;
  color: var(--ink-2);
}
.testi-who {
  margin-top: auto;
  display: flex; align-items: center; gap: 13px;
  border-top: 1px dashed var(--line);
  padding-top: 18px;
}
.testi-ava {
  width: 46px; height: 46px; flex: none;
  border-radius: 50%;
  background: var(--ink); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 14.5px; font-weight: 600;
}
.testi-who strong { display: block; font-size: 15px; font-weight: 600; color: var(--ink); }
.testi-who small { font-size: 12.5px; color: var(--muted); }

/* ==========================================================================
   08 · FAQ
   ========================================================================== */
/* svetlý banner v štýle tmavej sekcie – od ľavého kraja, zaoblený vpravo */
#faq .container { max-width: none; padding: 0; }
#faq .sec-top { margin-bottom: 22px; }
.faq-card {
  background: linear-gradient(160deg, #E4DFCF 0%, #DBD5C2 55%, #CFC9B4 100%);
  border-radius: 0 var(--r-xl) var(--r-xl) 0;
  padding: 40px clamp(24px, 4vw, 64px) 44px 18px;
  margin: 0 clamp(24px, 5vw, 80px) 0 0;
}
.faq-list { display: grid; gap: 0; }
.faq-item {
  background: transparent;
  border-radius: 0;
  padding: 0;
  border-bottom: 1px dashed rgba(16, 17, 16, 0.2);
}
.faq-item summary {
  display: flex; align-items: center; gap: 20px;
  padding: 21px 0;
  cursor: pointer; list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-num {
  flex: none;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 600; color: var(--ink);
}
.faq-item summary h3 { flex: 1; font-size: 17.5px; font-weight: 600; letter-spacing: -0.01em; }
.faq-item summary:hover h3 { color: var(--red); }
.faq-x {
  flex: none;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--ink); color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: transform .25s ease, background .25s ease;
}
.faq-x svg { width: 13px; height: 13px; }
.faq-item[open] .faq-x { transform: rotate(45deg); background: var(--red); }
.faq-a { padding: 0 62px 24px; font-size: 14.5px; max-width: 900px; }

/* ==========================================================================
   09 · KONTAKT
   ========================================================================== */
.contact-card {
  background: var(--card);
  border-radius: var(--r-xl);
  padding: 54px 52px;
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 60px;
}
.contact-info h2 { font-size: clamp(32px, 3.4vw, 46px); margin: 16px 0 12px; }
.contact-info > p { font-size: 15.5px; max-width: 400px; margin-bottom: 26px; }
.contact-rows { display: flex; flex-direction: column; gap: 8px; }
.contact-row {
  display: flex; align-items: center; gap: 16px;
  background: var(--bg);
  border-radius: 999px;
  padding: 10px 22px 10px 10px;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}
a.contact-row:hover { transform: translateX(4px); box-shadow: 0 8px 22px rgba(16, 17, 16, 0.08); }
.contact-row .chip-ico { width: 40px; height: 40px; }
.contact-row small {
  display: block;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted);
}
.contact-row b { font-size: 15.5px; font-weight: 600; color: var(--ink); }
.billing {
  margin-top: 22px;
  border: 2px dashed var(--line);
  border-radius: var(--r-md);
  padding: 18px 22px;
  font-size: 13.5px;
}
.billing-title {
  font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink); margin-bottom: 8px;
}

.contact-form { display: flex; flex-direction: column; gap: 12px; }
.form-title { font-size: 20px; font-weight: 600; color: var(--ink); letter-spacing: -0.01em; margin-bottom: 6px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.contact-form label {
  display: flex; flex-direction: column; gap: 6px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted);
}
.contact-form input, .contact-form textarea {
  font-family: var(--font); font-size: 15px; color: var(--ink);
  background: var(--bg);
  border: 1.5px solid transparent;
  border-radius: 999px;
  padding: 14px 22px;
  outline: none;
  transition: border-color .2s ease, background .2s ease;
}
.contact-form textarea { border-radius: var(--r-md); resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus {
  border-color: var(--ink);
  background: #fff;
}
.contact-form ::placeholder { color: #A2A49B; }
.contact-form .pill { width: 100%; margin-top: 8px; padding: 16px 26px; }
.form-note { font-size: 12.5px; text-align: center; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { padding: 70px 0 26px; }
.footer-top {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
  padding-bottom: 30px;
  border-bottom: 2px dashed var(--line);
}
.footer-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.footer-brand svg { width: 30px; height: 26px; }
.footer-brand b { font-size: 19px; font-weight: 700; letter-spacing: -0.02em; color: var(--red); }
.footer-brand b em { font-style: normal; color: var(--ink); }
.footer-nav { display: flex; gap: 6px; flex-wrap: wrap; }
.footer-nav a {
  font-size: 14px; font-weight: 500;
  color: var(--ink); text-decoration: none;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  transition: background .2s ease, border-color .2s ease;
}
.footer-nav a:hover { background: var(--card); border-color: var(--card); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; flex-wrap: wrap;
  padding-top: 22px;
  font-size: 13px;
}
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--ink); }

/* ==========================================================================
   RESPONZIVITA
   ========================================================================== */
@media (max-width: 1240px) {
}

@media (max-width: 1080px) {
  .hero { height: auto; min-height: 0; max-height: none; padding: 12px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-topbar { position: static; margin: 4px 0 0; align-self: flex-start; flex-wrap: wrap; }
  .hero-left { padding: 12px 4px 34px; gap: 34px; }
  .hero-left h1 { margin-top: 26px; }
  .hero-media { min-height: 74vh; }
  /* karta ostáva vyrezaná do fotky aj na tablete/mobile – zarovnaná k fotke */
  .type-slider {
    left: -12px; right: auto; bottom: 20px;
    width: 92%;
    border-radius: 0 var(--r-lg) var(--r-lg) 0;
    padding: 12px 14px 12px 12px;
    background: var(--bg);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .hc-grid { gap: 10px; }
  .hc-card { padding: 44px 14px; }
  .timeline { grid-template-columns: 1fr 1fr; gap: 44px 36px; }
  .tl-step:nth-child(even)::before { display: none; }
  .deliver-list { grid-template-columns: 1fr; }
  .deliver-card { padding: 44px 34px 40px; }
  .types { grid-template-columns: 1fr 1fr; }
  .needs { grid-template-columns: 1fr; }
  .benefits { grid-template-columns: 1fr 1fr; }
  .pricing { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .testi-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .contact-card { grid-template-columns: 1fr; gap: 44px; }
  }

@media (max-width: 900px) {
  .hero-nav { display: none; }
  .nav-toggle { display: block; }
  .hero-plate .pill { display: none; }
  .section { padding: 80px 0 0; }
}

@media (max-width: 600px) {
  .hero-left h1 { font-size: clamp(36px, 10vw, 46px); }
  .hero-media { min-height: 78vh; border-radius: var(--r-lg); }
  .type-slider { left: -12px; right: auto; width: 94%; bottom: 16px; padding: 10px 12px 10px 10px; }
    /* na telefóne tri tenké karty pod sebou – ikona, text a šípka v jednom riadku */
  .hc-grid { display: grid; grid-template-columns: 1fr; gap: 8px; }
  .hc-card {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 14px;
    border-radius: 14px;
  }
  .hc-top { display: contents; }
  .hc-ico { order: 1; width: 24px; height: 24px; }
  .hc-card h3 { order: 2; flex: 1; font-size: 17.5px; text-align: left; }
  .hc-card .circ--ghost { order: 3; width: 28px; height: 28px; }
  .hc-card .circ--ghost svg { width: 11px; height: 11px; }
  /* karty typov stavieb vodorovne posuvne (slideshow) */
  .types {
    display: flex; gap: 12px;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-right: -20px; padding-right: 20px;
  }
  .types::-webkit-scrollbar { display: none; }
  .type-card { flex: 0 0 76%; scroll-snap-align: start; }
  /* kompaktné karty výhod – ikona v riadku s nadpisom */
  .benefits { grid-template-columns: 1fr; gap: 10px; }
  .benefit {
    display: grid; grid-template-columns: auto 1fr;
    gap: 0 13px;
    padding: 16px 18px 18px;
    border-radius: var(--r-md);
  }
  .benefit-ico { width: 36px; height: 36px; margin-bottom: 0; }
  .benefit-ico svg { width: 17px; height: 17px; }
  .benefit h3 { align-self: center; font-size: 17px; margin-bottom: 0; }
  .benefit p { grid-column: 2; font-size: 14px; margin-top: 6px; }
  /* kroky pod sebou – číslo vľavo, text vedľa neho */
  .timeline { grid-template-columns: 1fr; gap: 26px; }
  .tl-step {
    display: grid; grid-template-columns: 50px 1fr;
    gap: 0 16px; align-items: center;
  }
  .tl-num { width: 50px; height: 50px; margin-bottom: 0; font-size: 15px; }
  .tl-body {
    display: flex; align-items: center; gap: 9px;
    flex-wrap: wrap; min-width: 0;
  }
  .tl-body h3 { font-size: clamp(19px, 5.6vw, 26px); min-width: 0; margin-bottom: 0; }
  .tl-body .step-tag {
    margin-top: 0; flex: none;
    font-size: 9.5px; letter-spacing: 0.06em;
    padding: 4px 9px; border-width: 1px;
  }
  .tl-step:nth-child(even)::before { display: block; }
  .tl-step:not(:last-child)::before {
    top: 54px; bottom: -30px; left: 24px; right: auto;
    height: auto; background: none; border-top: 0;
    border-left: 2px dashed #C8CAC1;
  }
    .contact-card { padding: 36px 24px; }
  .price-card { padding: 30px 22px; }
  .form-row { grid-template-columns: 1fr; }
  .faq-a { padding: 0 0 22px; }
  .faq-item summary { gap: 12px; }
  .faq-num { display: none; }
  .deliver-card { padding: 36px 22px; }
  .needs-intro, .needs-list { padding: 32px 24px; }
}

/* ==========================================================================
   COOKIE LIŠTA
   ========================================================================== */
.cc {
  position: fixed; z-index: 200;
  left: 14px; right: 14px; bottom: 14px;
  max-width: 720px;
  background: var(--card);
  border-radius: var(--r-lg);
  box-shadow: 0 18px 50px rgba(16, 17, 16, 0.22);
  padding: 22px 24px;
  animation: cc-in .35s cubic-bezier(.2,.7,.2,1) both;
}
.cc[hidden] { display: none; }
@keyframes cc-in { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .cc { animation: none; } }

.cc-box { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.cc-text { flex: 1; min-width: 240px; }
.cc-title { font-size: 16.5px; font-weight: 600; color: var(--ink); margin-bottom: 5px; }
.cc-text p { font-size: 13.5px; line-height: 1.55; }
.cc-actions { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.cc-actions .pill { padding: 11px 20px; font-size: 14px; }
.pill--ghost { background: transparent; border: 1.5px solid var(--line); color: var(--ink); }
.pill--ghost:hover { background: var(--bg); box-shadow: none; }

.cc-prefs { margin-top: 20px; padding-top: 18px; border-top: 1px dashed var(--line); }
.cc-prefs[hidden] { display: none; }
.cc-row {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 20px;
  padding: 13px 0;
  border-bottom: 1px dashed var(--line);
  cursor: pointer;
}
.cc-row b { display: block; font-size: 14.5px; font-weight: 600; color: var(--ink); margin-bottom: 2px; }
.cc-row small { font-size: 12.5px; line-height: 1.5; display: block; max-width: 520px; }
.cc-row input { width: 20px; height: 20px; flex: none; margin-top: 3px; accent-color: var(--red); cursor: pointer; }
.cc-row input:disabled { cursor: default; opacity: .55; }
.cc-save { margin-top: 16px; }

.footer-link {
  background: none; border: 0; padding: 0; cursor: pointer;
  font: inherit; color: var(--muted); text-decoration: underline;
}
.footer-link:hover { color: var(--ink); }

@media (max-width: 600px) {
  .cc { left: 10px; right: 10px; bottom: 10px; padding: 18px 18px 20px; }
  .cc-box { gap: 16px; }
  .cc-actions { width: 100%; }
  .cc-actions .pill { flex: 1; }
  .cc-row { gap: 14px; }
}

/* odkazy v texte cookie lišty a pod formulárom */
.cc-text a, .form-note a { color: var(--red); text-decoration: underline; text-underline-offset: 2px; }
.cc-text a:hover, .form-note a:hover { color: var(--red-dark); }
.footer-bottom a, .footer-link { text-decoration: underline; text-underline-offset: 3px; }

/* FAQ banner – responzivita */
@media (max-width: 600px) {
  .faq-card {
    padding: 30px 16px 34px;
    margin-right: 12px;
    border-radius: 0 var(--r-lg) var(--r-lg) 0;
  }
}

/* FAQ – položky ako riadky vo svetlom banneri */
.faq-item:last-child { border-bottom: 0; }
.faq-num { background: rgba(16, 17, 16, 0.07); }
.faq-a { color: rgba(16, 17, 16, 0.72); }

/* Karty typov stavieb – rovnaká výška bieleho štítku na všetkých kartách */
.type-body h3 { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.type-body p { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* Logo – responzivita */
@media (max-width: 900px) {
  .hero-topbar { padding-right: 64px; }
}
@media (max-width: 600px) {
  .brand { padding: 9px 18px 9px 13px; gap: 8px; }
  .brand-mark { width: 26px; height: 23px; }
  .brand-text { font-size: 18px; }
}

/* zápis v obchodnom registri – jemnejší riadok */
.billing-reg { display: inline-block; margin-top: 6px; font-size: 12.5px; line-height: 1.5; }
