/* =========================================================================
   dachvital-poptavka — conversion landing page
   Brand (brandbook.md): orange #FF5500 / #FF8800, navy #15324F,
   accent blue #0082D2, greys #999999 / #E0E0E0.
   Type: Poppins (Nexa substitute, headings) + Roboto (body). Self-hosted.
   No external libraries, no build step.
   ========================================================================= */

/* ---------- fonts ------------------------------------------------------- */
@font-face { font-family: "Poppins"; font-weight: 600; font-display: swap; src: url("/fonts/poppins-600.woff2") format("woff2"); }
@font-face { font-family: "Poppins"; font-weight: 700; font-display: swap; src: url("/fonts/poppins-700.woff2") format("woff2"); }
@font-face { font-family: "Roboto"; font-weight: 400; font-display: swap; src: url("/fonts/roboto-400.woff2") format("woff2"); }
@font-face { font-family: "Roboto"; font-weight: 500; font-display: swap; src: url("/fonts/roboto-500.woff2") format("woff2"); }

/* ---------- tokens ------------------------------------------------------ */
:root {
  --orange: #FF5500;
  --orange-2: #FF8800;
  --navy: #15324F;
  --navy-deep: #0D2236;
  --navy-soft: #1E4066;
  --blue: #0082D2;
  --grey: #999999;
  --grey-light: #E0E0E0;
  --grey-bg: #F4F6F8;
  --white: #FFFFFF;
  --ink: #15324F;
  --ink-soft: #45596E;
  --radius: 14px;
  --radius-sm: 9px;
  --shadow: 0 10px 34px rgba(13, 34, 54, 0.14);
  --shadow-soft: 0 4px 18px rgba(13, 34, 54, 0.08);
  --grad-brand: linear-gradient(120deg, var(--orange) 0%, var(--orange-2) 100%);
  --font-head: "Poppins", "Segoe UI", sans-serif;
  --font-body: "Roboto", "Segoe UI", sans-serif;
  --header-h: 64px;
}

/* ---------- reset / base ------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange); }
h1, h2, h3, h4, legend { font-family: var(--font-head); font-weight: 700; line-height: 1.18; margin: 0 0 0.5em; color: inherit; }
h1 { font-size: clamp(1.9rem, 5.2vw, 3.1rem); letter-spacing: -0.015em; }
h2 { font-size: clamp(1.5rem, 3.6vw, 2.2rem); letter-spacing: -0.01em; }
h3, .h3 { font-size: 1.15rem; }
.h4 { font-size: 1rem; }
p { margin: 0 0 1em; }
.muted { color: var(--grey); }
.container { width: min(1140px, 100% - 2.5rem); margin-inline: auto; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; border-radius: 4px; }

section { scroll-margin-top: calc(var(--header-h) + 8px); }

.eyebrow {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--orange);
  margin-bottom: 0.7em;
}
.section--dark .eyebrow, .hero .eyebrow { color: var(--orange-2); }

.stars { color: #FFB300; letter-spacing: 0.1em; }

/* ---------- buttons ----------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85em 1.7em;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
  -webkit-tap-highlight-color: transparent;
}
.btn--primary {
  background: var(--grad-brand);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(255, 85, 0, 0.35);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(255, 85, 0, 0.42); }
.btn--primary:active { transform: translateY(0); }
.btn--ghost { background: transparent; color: inherit; border-color: currentColor; }
.btn--sm { font-size: 0.86rem; padding: 0.55em 1.2em; }
.btn--block { width: 100%; }

.btn__spinner {
  width: 1.1em; height: 1.1em;
  border: 2.5px solid rgba(255,255,255,0.35);
  border-top-color: #fff;
  border-radius: 50%;
  display: none;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.btn.is-loading .btn__spinner { display: inline-block; }
.btn.is-loading .btn__label { opacity: 0.75; }
.btn.is-loading { pointer-events: none; }

/* ---------- header ------------------------------------------------------ */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  height: var(--header-h);
  display: flex;
  align-items: center;
  color: var(--white);
  background: transparent;
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
}
.site-header.is-scrolled { background: rgba(13, 34, 54, 0.92); backdrop-filter: blur(8px); box-shadow: 0 2px 14px rgba(0,0,0,0.25); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.site-header__logo img { height: 30px; width: auto; }
.site-header__actions { display: flex; align-items: center; gap: 0.9rem; }
.site-header__phone {
  display: inline-flex; align-items: center; gap: 0.45em;
  color: var(--white); text-decoration: none;
  font-family: var(--font-head); font-weight: 600; font-size: 0.95rem;
}
.site-header__phone:hover { color: var(--orange-2); }
@media (max-width: 560px) {
  .site-header__phone span { display: none; }
  .site-header__phone svg { width: 22px; height: 22px; }
}

/* ---------- hero -------------------------------------------------------- */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 520px at 84% -10%, rgba(0, 130, 210, 0.16), transparent 60%),
    linear-gradient(158deg, var(--navy) 0%, var(--navy-deep) 74%);
  color: var(--white);
  padding: calc(var(--header-h) + clamp(2rem, 6vw, 4.5rem)) 0 clamp(2.6rem, 6vw, 5rem);
  overflow: hidden;
}
.hero__decor { position: absolute; inset: 0; pointer-events: none; }
.hero__plane {
  position: absolute;
  background: var(--grad-brand);
  transform: skewY(-11deg);
  border-radius: 10px;
}
.hero__plane--1 { width: 46vw; max-width: 620px; height: 220px; left: -14vw; bottom: -140px; opacity: 0.95; }
.hero__plane--2 { width: 30vw; max-width: 380px; height: 150px; left: 20vw; bottom: -160px; opacity: 0.35; }
.hero__plane--3 { width: 260px; height: 700px; right: -130px; top: -220px; transform: rotate(24deg); opacity: 0.12; }
.hero__grid {
  position: relative;
  display: grid;
  gap: clamp(1.6rem, 4vw, 3.5rem);
  align-items: center;
}
@media (min-width: 900px) { .hero__grid { grid-template-columns: 1.15fr 0.85fr; } }
.hero h1 .accent {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__sub { font-size: 1.08rem; color: rgba(255,255,255,0.85); max-width: 34em; }
.hero__chips { list-style: none; margin: 1.4rem 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0.55rem; }
.hero__chips li {
  display: inline-flex; align-items: center; gap: 0.45em;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  padding: 0.42em 1em;
  font-size: 0.88rem;
  font-weight: 500;
  backdrop-filter: blur(4px);
}

/* ---------- cards / forms ----------------------------------------------- */
.card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); }

.lead-form { padding: 1.6rem 1.5rem 1.3rem; color: var(--ink); position: relative; overflow: hidden; }
.lead-form::before { content: ""; position: absolute; inset: 0 0 auto; height: 6px; background: var(--grad-brand); }
.lead-form__head h2, .lead-form__head .h3 { margin-bottom: 0.15em; font-size: 1.35rem; }
.lead-form__head p { color: var(--ink-soft); font-size: 0.92rem; margin-bottom: 1.1em; }

.field { margin-bottom: 0.95rem; }
.field label, .field legend { display: block; font-family: var(--font-head); font-weight: 600; font-size: 0.88rem; margin-bottom: 0.3em; }
.field input[type="text"], .field input[type="tel"] {
  width: 100%;
  font: inherit;
  padding: 0.72em 0.95em;
  border: 1.5px solid var(--grey-light);
  border-radius: var(--radius-sm);
  background: #FBFCFD;
  color: var(--ink);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.field input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0, 130, 210, 0.18); }
.field.is-invalid input { border-color: #D93025; box-shadow: 0 0 0 3px rgba(217, 48, 37, 0.12); }
.field.is-valid input { border-color: #1E8E3E; }
.field__err { display: none; color: #D93025; font-size: 0.8rem; margin-top: 0.25em; }
.field.is-invalid .field__err { display: block; }

.field--radios { border: 0; padding: 0; margin: 0 0 1.1rem; }
.radio-pills { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.radio-pills label { position: relative; cursor: pointer; margin: 0; }
.radio-pills input { position: absolute; opacity: 0; }
.radio-pills span {
  display: inline-block;
  padding: 0.44em 0.95em;
  border-radius: 999px;
  border: 1.5px solid var(--grey-light);
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.16s ease;
}
.radio-pills input:checked + span { background: var(--navy); border-color: var(--navy); color: var(--white); }
.radio-pills input:focus-visible + span { outline: 3px solid var(--blue); outline-offset: 2px; }

.hp-field { position: absolute; left: -9999px; top: -9999px; height: 0; overflow: hidden; margin: 0; }

.form-status { min-height: 1.2em; font-size: 0.88rem; font-weight: 500; margin: 0.6em 0 0; }
.form-status[data-state="err"] { color: #D93025; }

.form-gdpr { font-size: 0.76rem; color: #66727E; margin: 0.8em 0 0; }
.form-gdpr a { color: #66727E; }

/* success state */
.lead-form.is-done > :not(.form-success) { display: none; }
.lead-form.is-done { padding: 2.4rem 1.5rem; }
.form-success { text-align: center; }
.form-success__check { width: 76px; height: 76px; margin: 0 auto 1rem; }
.form-success__check circle { stroke: #1E8E3E; stroke-width: 2.5; stroke-dasharray: 151; stroke-dashoffset: 151; animation: draw 0.7s ease forwards; }
.form-success__check path { stroke: #1E8E3E; stroke-width: 3.5; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 40; stroke-dashoffset: 40; animation: draw 0.5s ease 0.5s forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
@media (prefers-reduced-motion: reduce) {
  .form-success__check circle, .form-success__check path { animation: none; stroke-dashoffset: 0; }
}

/* ---------- trust bar --------------------------------------------------- */
.trustbar { background: var(--navy-deep); color: var(--white); padding: 1.9rem 0; border-top: 1px solid rgba(255,255,255,0.06); }
.trustbar__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem 1rem; text-align: center; }
@media (min-width: 760px) { .trustbar__grid { grid-template-columns: repeat(4, 1fr); } }
.trustbar__item strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.1;
}
.trustbar__item span { font-size: 0.83rem; color: rgba(255,255,255,0.72); line-height: 1.45; display: inline-block; margin-top: 0.3em; }

/* ---------- sections ---------------------------------------------------- */
.section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.section--grey { background: var(--grey-bg); }
.section--dark { background: linear-gradient(165deg, var(--navy) 0%, var(--navy-deep) 85%); color: var(--white); }
.section__head { max-width: 640px; margin-bottom: clamp(1.8rem, 4vw, 3rem); }
.section__lead { color: var(--ink-soft); font-size: 1.05rem; }
.section--dark .section__lead { color: rgba(255,255,255,0.78); }

/* ---------- calculator -------------------------------------------------- */
.calc { padding: clamp(1.3rem, 3vw, 2.2rem); }
.calc__services { display: grid; gap: 0.7rem; margin-bottom: 1.6rem; }
@media (min-width: 640px) { .calc__services { grid-template-columns: repeat(3, 1fr); } }
.calc__service {
  font: inherit;
  text-align: left;
  display: grid;
  grid-template-columns: 42px 1fr;
  grid-template-rows: auto auto;
  column-gap: 0.8rem;
  align-items: center;
  padding: 0.9rem 1rem;
  border: 2px solid var(--grey-light);
  border-radius: var(--radius-sm);
  background: var(--white);
  cursor: pointer;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}
.calc__service svg { grid-row: span 2; width: 42px; height: 42px; color: var(--grey); transition: color 0.18s ease; }
.calc__service strong { font-family: var(--font-head); font-size: 0.98rem; }
.calc__service span { font-size: 0.82rem; color: var(--grey); }
.calc__service:hover { border-color: var(--orange-2); transform: translateY(-2px); }
.calc__service.is-active { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255, 85, 0, 0.14); }
.calc__service.is-active svg { color: var(--orange); }

.calc__io { display: grid; gap: 1.6rem; align-items: center; }
@media (min-width: 820px) { .calc__io { grid-template-columns: 1.1fr 0.9fr; gap: 2.5rem; } }

.calc__input label { font-family: var(--font-head); font-weight: 600; font-size: 0.95rem; display: block; margin-bottom: 0.8em; }
.calc__input output { color: var(--orange); font-size: 1.15em; }
.calc__scale { display: flex; justify-content: space-between; font-size: 0.78rem; color: var(--grey); margin-top: 0.4em; }

input[type="range"] {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(to right, var(--orange) var(--fill, 30%), var(--grey-light) var(--fill, 30%));
  outline: none;
  cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--orange);
  box-shadow: 0 2px 8px rgba(13,34,54,0.25);
  transition: transform 0.15s ease;
}
input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.12); }
input[type="range"]::-moz-range-thumb {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--orange);
  box-shadow: 0 2px 8px rgba(13,34,54,0.25);
}

.calc__result {
  background: linear-gradient(158deg, var(--navy) 0%, var(--navy-deep) 90%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem 1.6rem;
  position: relative;
  overflow: hidden;
}
.calc__result::after {
  content: "";
  position: absolute;
  width: 190px; height: 110px;
  right: -60px; bottom: -70px;
  background: var(--grad-brand);
  transform: skewY(-11deg);
  opacity: 0.5;
  border-radius: 8px;
}
.calc__result-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.6); margin-bottom: 0.3em; }
.calc__price {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  margin-bottom: 0.4em;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.calc__price.is-updating { opacity: 0; transform: translateY(6px); }
.calc__note { font-size: 0.82rem; color: rgba(255,255,255,0.7); position: relative; z-index: 1; }
.calc__result .btn { position: relative; z-index: 1; margin-top: 0.4rem; }

/* ---------- gallery / compare slider ------------------------------------ */
.gallery { display: grid; gap: 1.6rem; }
@media (min-width: 720px) { .gallery { grid-template-columns: 1fr 1fr; gap: 2rem 1.8rem; } }
@media (min-width: 1020px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
.gallery__item { margin: 0; }
.gallery__item figcaption { font-size: 0.85rem; color: rgba(255,255,255,0.72); margin-top: 0.7em; line-height: 1.5; }
.gallery__item figcaption strong { color: var(--white); }

.compare-slider {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: var(--shadow);
  touch-action: pan-y;
  user-select: none;
  background: var(--navy-soft);
}
.compare-slider__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.compare-slider__img--after { clip-path: inset(0 0 0 50%); }
.compare-slider__badge {
  position: absolute;
  top: 0.8rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3em 0.8em;
  border-radius: 999px;
  color: var(--white);
  z-index: 2;
}
.compare-slider__badge--before { left: 0.8rem; background: rgba(13,34,54,0.72); }
.compare-slider__badge--after { right: 0.8rem; background: var(--orange); }
.compare-slider__handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--white);
  transform: translateX(-50%);
  cursor: ew-resize;
  z-index: 3;
  box-shadow: 0 0 12px rgba(0,0,0,0.4);
}
.compare-slider__handle span {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 3px 12px rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease;
}
.compare-slider__handle span::before,
.compare-slider__handle span::after {
  content: "";
  width: 0; height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  margin: 0 2.5px;
}
.compare-slider__handle span::before { border-right: 7px solid var(--navy); }
.compare-slider__handle span::after { border-left: 7px solid var(--navy); }
.compare-slider.is-dragging .compare-slider__handle span,
.compare-slider__handle:hover span { transform: translate(-50%, -50%) scale(1.12); }

/* ---------- process ----------------------------------------------------- */
.process {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  gap: 1.8rem;
  counter-reset: step;
  position: relative;
}
@media (min-width: 900px) { .process { grid-template-columns: repeat(5, 1fr); gap: 1.4rem; } }
.process__step { position: relative; padding-left: 3.4rem; }
@media (min-width: 900px) {
  .process__step { padding-left: 0; padding-top: 3.6rem; }
  .process__step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 1.35rem;
    left: 3.4rem;
    right: -0.7rem;
    height: 2px;
    background: linear-gradient(to right, var(--orange-2), var(--grey-light));
    opacity: 0.6;
  }
}
@media (max-width: 899px) {
  .process__step:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 1.35rem;
    top: 3.2rem;
    bottom: -1.6rem;
    width: 2px;
    background: linear-gradient(to bottom, var(--orange-2), var(--grey-light));
    opacity: 0.6;
  }
}
.process__num {
  position: absolute;
  left: 0; top: 0;
  width: 2.7rem; height: 2.7rem;
  border-radius: 50%;
  background: var(--grad-brand);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 14px rgba(255,85,0,0.35);
}
.process__step h3 { font-size: 1.02rem; margin-bottom: 0.35em; }
.process__step p { font-size: 0.9rem; color: var(--ink-soft); margin: 0; }

/* ---------- myths ------------------------------------------------------- */
.myths { display: grid; gap: 1.2rem; }
@media (min-width: 760px) { .myths { grid-template-columns: 1fr 1fr; gap: 1.5rem; } }
.myth { padding: 1.5rem 1.6rem; box-shadow: var(--shadow-soft); }
.myth__tag {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25em 0.75em;
  border-radius: 999px;
  margin-right: 0.6em;
  vertical-align: 0.12em;
}
.myth__tag--x { background: rgba(217, 48, 37, 0.1); color: #C5221F; }
.myth__tag--ok { background: rgba(30, 142, 62, 0.12); color: #1E8E3E; }
.myth__myth { font-family: var(--font-head); font-weight: 600; font-size: 1.02rem; color: var(--ink); padding-bottom: 0.9em; border-bottom: 1px dashed var(--grey-light); }
.myth__truth { margin: 0.9em 0 0; font-size: 0.94rem; color: var(--ink-soft); }

/* ---------- split (servisní oblast) ------------------------------------- */
.split { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 880px) { .split { grid-template-columns: 1fr 1fr; gap: 3.5rem; } }
.split__media img { border-radius: var(--radius); }
.area-chips { list-style: none; margin: 1.1rem 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.area-chips li {
  background: var(--white);
  border: 1.5px solid var(--grey-light);
  border-radius: 999px;
  padding: 0.4em 1em;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy);
}
.area-chips__more { border-style: dashed; color: var(--grey); }

/* ---------- testimonials ------------------------------------------------ */
.testimonials { display: grid; gap: 1.2rem; }
@media (min-width: 680px) { .testimonials { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1020px) { .testimonials { grid-template-columns: repeat(3, 1fr); } }
.testimonial { margin: 0; padding: 1.5rem 1.6rem; box-shadow: var(--shadow-soft); display: flex; flex-direction: column; }
.testimonial .stars { font-size: 0.9rem; margin-bottom: 0.6em; }
.testimonial p:not(.stars) { font-size: 0.95rem; color: var(--ink-soft); flex: 1; }
.testimonial footer { font-family: var(--font-head); font-weight: 600; font-size: 0.9rem; margin-top: 0.6em; }
.testimonial footer::before { content: "— "; color: var(--orange); }

/* ---------- guarantees --------------------------------------------------- */
.guarantees { display: grid; gap: 1.6rem; }
@media (min-width: 680px) { .guarantees { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (min-width: 1020px) { .guarantees { grid-template-columns: repeat(4, 1fr); } }
.guarantee svg { width: 42px; height: 42px; color: var(--orange-2); margin-bottom: 0.7rem; }
.guarantee h3 { font-size: 1.02rem; }
.guarantee p { font-size: 0.9rem; color: rgba(255,255,255,0.75); margin: 0; }
.guarantees__capacity {
  margin: 2.4rem 0 0;
  padding: 1.1rem 1.4rem;
  background: rgba(255,255,255,0.06);
  border-left: 4px solid var(--orange);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
}

/* ---------- final CTA ---------------------------------------------------- */
.section--final {
  background:
    radial-gradient(900px 460px at 12% 110%, rgba(255, 85, 0, 0.22), transparent 60%),
    linear-gradient(158deg, var(--navy-deep) 0%, var(--navy) 90%);
  color: var(--white);
}
.final__grid { display: grid; gap: 2.2rem; align-items: center; }
@media (min-width: 880px) { .final__grid { grid-template-columns: 1fr 0.9fr; gap: 4rem; } }
.final__copy p { color: rgba(255,255,255,0.82); }
.final__phone { font-size: 1.05rem; }
.final__phone a { color: var(--orange-2); font-family: var(--font-head); font-weight: 700; text-decoration: none; }
.final__phone a:hover { text-decoration: underline; }

/* ---------- footer ------------------------------------------------------- */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,0.78); padding: 3rem 0 0; font-size: 0.9rem; border-top: 1px solid rgba(255,255,255,0.06); }
.site-footer__grid { display: grid; gap: 2rem; padding-bottom: 2.2rem; }
@media (min-width: 760px) { .site-footer__grid { grid-template-columns: 1.3fr 1fr 1fr; gap: 3rem; } }
.site-footer .h4 { color: var(--white); margin-bottom: 0.7em; }
.site-footer address { font-style: normal; line-height: 1.9; }
.site-footer a { color: rgba(255,255,255,0.85); }
.site-footer a:hover { color: var(--orange-2); }
.site-footer__links { list-style: none; margin: 0; padding: 0; line-height: 2.1; }
.site-footer__bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 1.1rem 0; font-size: 0.8rem; color: rgba(255,255,255,0.66); }
.site-footer__bottom p { margin: 0; }

/* ---------- sticky mobile CTA -------------------------------------------- */
.sticky-cta {
  position: fixed;
  inset: auto 0 0;
  z-index: 55;
  display: none;
  gap: 0.6rem;
  padding: 0.65rem 0.9rem calc(0.65rem + env(safe-area-inset-bottom));
  background: rgba(13, 34, 54, 0.94);
  backdrop-filter: blur(8px);
  color: var(--white);
  box-shadow: 0 -4px 18px rgba(0,0,0,0.3);
}
.sticky-cta .btn { flex: 1; font-size: 0.92rem; padding: 0.7em 1em; }
.sticky-cta.is-visible { display: flex; }
@media (min-width: 900px) { .sticky-cta.is-visible { display: none; } }

/* ---------- cookie banner ------------------------------------------------ */
.cookie-banner {
  position: fixed;
  z-index: 70;
  left: 1rem; right: 1rem; bottom: 1rem;
  max-width: 440px;
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  padding: 1.1rem 1.3rem;
  display: none;
  font-size: 0.85rem;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin-bottom: 0.8em; }
.cookie-banner p a { color: #B84600; }
.cookie-banner__actions { display: flex; gap: 0.6rem; justify-content: flex-end; }
.cookie-banner .btn--ghost { color: var(--ink-soft); border-color: var(--grey-light); }

/* ---------- reveal animations -------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease var(--reveal-delay, 0ms), transform 0.6s cubic-bezier(0.22, 0.85, 0.35, 1) var(--reveal-delay, 0ms);
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- mobile polish -------------------------------------------------- */
@media (max-width: 640px) {
  .hero { padding-bottom: 2.2rem; }
  .hero__plane--1 { height: 110px; bottom: -70px; }
  .hero__plane--2 { display: none; }
}
/* cookie banner nesmi prekryt sticky CTA listu */
@media (max-width: 899px) {
  .cookie-banner { bottom: calc(4.8rem + env(safe-area-inset-bottom)); }
}
