/* =========================================================
   VERNA s.r.o. - dizajn system
   Farby z loga: teal #2A7F6B, zlta #F2D65A, salvia #7DB39A
   Pisma: Lora (nadpisy) + Raleway (text)
   ========================================================= */

:root {
  --teal: #2A7F6B;
  --teal-dark: #1E5C4D;
  --teal-700: #236A59;
  --teal-soft: #E4F0EC;
  --yellow: #F2D65A;
  --yellow-deep: #E6C23F;
  --sage: #7DB39A;
  --cream: #FAF7EF;
  --cream-2: #F2EDDF;
  --ink: #243B36;
  --muted: #5A6B65;
  --line: #E2DECF;
  --white: #FFFFFF;

  --shadow-sm: 0 2px 8px rgba(36, 59, 54, 0.06);
  --shadow-md: 0 12px 30px rgba(36, 59, 54, 0.10);
  --shadow-lg: 0 24px 60px rgba(36, 59, 54, 0.16);

  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;

  --container: 1180px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);

  --z-header: 50;
  --z-fab: 40;
  --z-overlay: 60;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Raleway', system-ui, -apple-system, sans-serif;
  background: var(--cream);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 {
  font-family: 'Lora', Georgia, serif;
  line-height: 1.15;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.7rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; position: relative; }
.section--tight { padding: 64px 0; }
.section--cream2 { background: var(--cream-2); }
.section--teal { background: var(--teal); color: #EAF3EF; }
.section--teal h2, .section--teal h3 { color: var(--white); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--teal);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--yellow-deep); border-radius: 2px;
}
.section--teal .eyebrow { color: var(--yellow); }
.section--teal .eyebrow::before { background: var(--yellow); }

.section-head { max-width: 660px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { color: var(--muted); margin-top: 16px; font-size: 1.06rem; }
.section--teal .section-head p { color: #CFE4DC; }

.lead { font-size: 1.15rem; color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px; border-radius: 999px;
  font-weight: 700; font-size: 0.98rem; letter-spacing: 0.01em;
  transition: transform .25s var(--ease), background-color .25s var(--ease), box-shadow .25s var(--ease), color .25s var(--ease);
  cursor: pointer; white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; }
.btn-primary { background: var(--teal); color: var(--white); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--teal-dark); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.btn-accent { background: var(--yellow); color: var(--ink); box-shadow: var(--shadow-sm); }
.btn-accent:hover { background: var(--yellow-deep); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.55); }
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-outline { background: transparent; color: var(--teal); border: 1.5px solid var(--teal); }
.btn-outline:hover { background: var(--teal); color: var(--white); transform: translateY(-2px); }
.btn-lg { padding: 18px 38px; font-size: 1.05rem; }

/* ---------- Header ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: var(--z-header);
  transition: background-color .3s var(--ease), box-shadow .3s var(--ease), padding .3s var(--ease);
  padding: 18px 0;
}
/* Jemny tmavy scrim hore, aby boli logo a nav citatelne na fotke */
.header::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(to bottom, rgba(20, 46, 40, 0.55), rgba(20, 46, 40, 0));
  transition: opacity .3s var(--ease); opacity: 1;
}
.header.scrolled {
  background: rgba(250, 247, 239, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}
.header.scrolled::before { opacity: 0; }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; }
/* Hore biele monochrom logo na fotke, po scrollnuti farebne na kremovom pozadi */
.brand img { height: 44px; width: auto; transition: height .3s var(--ease), filter .3s var(--ease); filter: brightness(0) invert(1); }
.header.scrolled .brand img { height: 38px; filter: none; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: 10px 16px; border-radius: 999px; font-weight: 600; font-size: 0.95rem;
  color: #fff; transition: color .2s var(--ease), background-color .2s var(--ease);
  white-space: nowrap;
}
.nav a:hover { color: var(--white); background: rgba(255, 255, 255, 0.15); }
.nav a.active { color: var(--yellow); }
.header.scrolled .nav a { color: var(--ink); }
.header.scrolled .nav a:hover { color: var(--teal); background: var(--teal-soft); }
.header.scrolled .nav a.active { color: var(--teal); }

.header__actions { display: flex; align-items: center; gap: 14px; }
.header__phone {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: #fff;
  font-size: 0.95rem;
}
.header__phone svg { width: 18px; height: 18px; color: var(--yellow); }
.header__phone:hover { color: var(--yellow); }
.header.scrolled .header__phone { color: var(--ink); }
.header.scrolled .header__phone svg { color: var(--teal); }
.header.scrolled .header__phone:hover { color: var(--teal); }

.nav-toggle { display: none; width: 46px; height: 46px; border-radius: 12px; align-items: center; justify-content: center; color: #fff; }
.header.scrolled .nav-toggle { color: var(--ink); }
.nav-toggle svg { width: 26px; height: 26px; }

/* Mobile menu */
.mobile-nav {
  position: fixed; inset: 0; z-index: var(--z-overlay);
  background: var(--cream); padding: 90px 28px 40px;
  transform: translateX(100%); transition: transform .35s var(--ease);
  display: flex; flex-direction: column;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a { font-family: 'Lora', serif; font-size: 1.5rem; padding: 16px 0; border-bottom: 1px solid var(--line); color: var(--ink); }
.mobile-nav a:hover { color: var(--teal); }
.mobile-nav .btn { margin-top: 28px; }
.mobile-close { position: absolute; top: 24px; right: 24px; width: 46px; height: 46px; color: var(--ink); }
.mobile-close svg { width: 28px; height: 28px; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; color: var(--white); overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(20,46,40,0.86) 0%, rgba(30,92,77,0.62) 45%, rgba(30,92,77,0.18) 100%);
}
.hero__inner { position: relative; z-index: 1; padding: 140px 0 80px; max-width: 700px; }
.hero h1 { color: var(--white); }
.hero h1 em { color: var(--yellow); font-style: normal; }
.hero__sub { font-size: 1.2rem; color: #E2EFE9; margin: 24px 0 36px; max-width: 560px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 16px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 26px;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25);
  padding: 8px 16px 8px 10px; border-radius: 999px; font-size: 0.85rem; font-weight: 600; color: #fff;
  backdrop-filter: blur(6px);
}
.hero__badge .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 0 4px rgba(242,214,90,0.25); }

/* Hero trust strip */
.hero__trust {
  position: relative; z-index: 1; margin-top: 48px;
  display: flex; flex-wrap: wrap; gap: 14px 36px; align-items: center;
}
.hero__trust span { display: inline-flex; align-items: center; gap: 9px; font-size: 0.92rem; color: #DCECE6; font-weight: 600; }
.hero__trust svg { width: 20px; height: 20px; color: var(--yellow); flex: none; }

/* ---------- Page hero (vnutorne stranky) ---------- */
.page-hero { position: relative; padding: 160px 0 80px; color: var(--white); overflow: hidden; }
.page-hero__bg { position: absolute; inset: 0; z-index: 0; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(110deg, rgba(20,46,40,0.88), rgba(30,92,77,0.55)); }
.page-hero__inner { position: relative; z-index: 1; max-width: 720px; }
.page-hero h1 { color: var(--white); }
.page-hero p { color: #DCECE6; font-size: 1.15rem; margin-top: 18px; max-width: 580px; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 0.85rem; color: #BEDAD0; margin-bottom: 22px; font-weight: 600; }
.breadcrumb a:hover { color: var(--yellow); }
.breadcrumb span { opacity: 0.6; }

/* ---------- Grids ---------- */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Cards ---------- */
.card {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  overflow: hidden; transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--cream-2); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.card:hover .card__media img { transform: scale(1.06); }
.card__tag {
  position: absolute; top: 14px; left: 14px; background: var(--yellow); color: var(--ink);
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
}
.card__body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.card__body h3 { margin-bottom: 10px; }
.card__body p { color: var(--muted); font-size: 0.98rem; margin-bottom: 18px; }
.card__link { margin-top: auto; display: inline-flex; align-items: center; gap: 8px; color: var(--teal); font-weight: 700; font-size: 0.92rem; }
.card__link svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.card:hover .card__link svg { transform: translateX(4px); }

/* Feature card (icon) */
.feature {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.feature:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.feature__icon {
  width: 56px; height: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center;
  background: var(--teal-soft); color: var(--teal); margin-bottom: 20px;
}
.feature__icon svg { width: 28px; height: 28px; }
.feature h3 { margin-bottom: 10px; font-size: 1.22rem; }
.feature p { color: var(--muted); font-size: 0.97rem; }

/* Service tiles (homepage 3 oblasti) */
.area {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 380px;
  display: flex; align-items: flex-end; color: var(--white); box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.area:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.area img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform .6s var(--ease); }
.area:hover img { transform: scale(1.07); }
.area::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,46,40,0.92) 8%, rgba(20,46,40,0.35) 55%, rgba(20,46,40,0.05) 100%); z-index: 1; }
.area__content { position: relative; z-index: 2; padding: 32px; width: 100%; }
.area__num { font-family: 'Lora', serif; font-size: 0.9rem; color: var(--yellow); font-weight: 600; letter-spacing: 0.1em; }
.area__content h3 { color: var(--white); margin: 6px 0 10px; font-size: 1.55rem; }
.area__content p { color: #DCECE6; font-size: 0.97rem; margin-bottom: 18px; }
.area--featured { grid-row: span 1; }
.area__flag { position: absolute; top: 22px; right: 22px; z-index: 2; background: var(--yellow); color: var(--ink); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; padding: 6px 13px; border-radius: 999px; }
.area__soon { position: absolute; top: 22px; right: 22px; z-index: 2; background: rgba(255,255,255,0.18); border: 1px solid rgba(255,255,255,0.4); color: #fff; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; padding: 6px 13px; border-radius: 999px; backdrop-filter: blur(6px); }

/* ---------- Split (text + image) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); position: relative; }
.split__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 5 / 4; }
.split__body h2 { margin-bottom: 18px; }
.split__body p { color: var(--muted); margin-bottom: 18px; }
.checklist { display: grid; gap: 14px; margin: 24px 0 30px; }
.checklist li { display: flex; gap: 14px; align-items: flex-start; font-weight: 500; }
.checklist svg { width: 24px; height: 24px; color: var(--teal); flex: none; margin-top: 1px; }
.section--teal .checklist svg { color: var(--yellow); }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.stat { text-align: center; }
.stat__num { font-family: 'Lora', serif; font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 700; color: var(--white); line-height: 1; }
.stat__num em { color: var(--yellow); font-style: normal; }
.stat__label { color: #CFE4DC; font-size: 0.95rem; margin-top: 10px; }

/* ---------- Configurator ---------- */
.config { background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--line); box-shadow: var(--shadow-md); overflow: hidden; }
.config__bar { display: flex; align-items: center; gap: 10px; padding: 16px 22px; background: var(--cream-2); border-bottom: 1px solid var(--line); }
.config__bar .dots { display: flex; gap: 7px; }
.config__bar .dots i { width: 11px; height: 11px; border-radius: 50%; display: block; }
.config__bar .dots i:nth-child(1) { background: #E68A8A; }
.config__bar .dots i:nth-child(2) { background: var(--yellow); }
.config__bar .dots i:nth-child(3) { background: var(--sage); }
.config__bar span { font-size: 0.85rem; color: var(--muted); font-weight: 600; }
.config__frame { position: relative; width: 100%; min-height: 620px; background: var(--cream); }
.config__frame iframe { width: 100%; height: 620px; border: 0; display: block; }
.config__fallback {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 40px; gap: 18px;
}
.config__fallback .feature__icon { margin: 0 auto; }
.config__fallback p { color: var(--muted); max-width: 440px; }
.config__note { font-size: 0.85rem; color: var(--muted); margin-top: 16px; text-align: center; }

/* ---------- Forms ---------- */
.form-card { background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--line); box-shadow: var(--shadow-md); padding: 40px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.88rem; font-weight: 700; color: var(--ink); }
.field label .req { color: #C0593F; }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 1rem; padding: 13px 16px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--line); background: var(--cream); color: var(--ink); transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--teal); box-shadow: 0 0 0 4px rgba(42,127,107,0.12); background: var(--white);
}
.form-consent { display: flex; gap: 12px; align-items: flex-start; font-size: 0.85rem; color: var(--muted); }
.form-consent input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--teal); flex: none; }
.form-note { font-size: 0.82rem; color: var(--muted); margin-top: 6px; }
.form-success {
  display: none; gap: 14px; align-items: center; padding: 18px 22px; border-radius: var(--radius-sm);
  background: var(--teal-soft); color: var(--teal-dark); font-weight: 600; margin-bottom: 24px;
}
.form-success svg { width: 26px; height: 26px; flex: none; }
.form-success.show { display: flex; }

/* ---------- Contact info cards ---------- */
.contact-item { display: flex; gap: 18px; align-items: flex-start; padding: 22px 0; border-bottom: 1px solid var(--line); }
.contact-item:last-child { border-bottom: none; }
.contact-item .feature__icon { margin: 0; width: 50px; height: 50px; flex: none; }
.contact-item h4 { font-family: 'Raleway', sans-serif; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); font-weight: 700; margin-bottom: 4px; }
.contact-item a, .contact-item p { font-size: 1.08rem; font-weight: 600; color: var(--ink); }
.contact-item a:hover { color: var(--teal); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; border-radius: var(--radius-xl); overflow: hidden; padding: 64px 56px; color: var(--white); }
.cta-band__bg { position: absolute; inset: 0; background: linear-gradient(120deg, var(--teal-dark), var(--teal)); z-index: 0; }
.cta-band__inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 36px; flex-wrap: wrap; }
.cta-band h2 { color: var(--white); max-width: 620px; }
.cta-band p { color: #CFE4DC; margin-top: 12px; max-width: 520px; }
.cta-band__flower { position: absolute; right: -40px; bottom: -40px; width: 260px; opacity: 0.14; z-index: 0; }

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.step { position: relative; padding-top: 18px; }
.step__num { font-family: 'Lora', serif; font-size: 2.4rem; font-weight: 700; color: var(--sage); line-height: 1; opacity: 0.55; }
.step h3 { font-size: 1.18rem; margin: 12px 0 8px; }
.step p { color: var(--muted); font-size: 0.95rem; }

/* ---------- Accordion (FAQ) ---------- */
.faq { max-width: 800px; margin: 0 auto; display: grid; gap: 14px; }
.faq__item { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.faq__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 26px; text-align: left; font-weight: 700; font-size: 1.05rem; color: var(--ink); }
.faq__q svg { width: 22px; height: 22px; color: var(--teal); flex: none; transition: transform .3s var(--ease); }
.faq__item.open .faq__q svg { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq__a p { padding: 0 26px 24px; color: var(--muted); }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #B9C7C2; padding: 72px 0 32px; position: relative; overflow: hidden; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 48px; }
.footer__brand img { height: 46px; margin-bottom: 18px; filter: brightness(0) invert(1); opacity: 0.95; }
.footer__brand p { font-size: 0.95rem; color: #95A8A2; max-width: 280px; }
.footer h4 { color: var(--white); font-family: 'Raleway', sans-serif; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 20px; font-weight: 700; }
.footer ul li { margin-bottom: 12px; }
.footer ul a, .footer__contact a { color: #B9C7C2; font-size: 0.96rem; transition: color .2s var(--ease); }
.footer ul a:hover, .footer__contact a:hover { color: var(--yellow); }
.footer__contact li { display: flex; gap: 11px; align-items: flex-start; margin-bottom: 14px; font-size: 0.96rem; }
.footer__contact svg { width: 18px; height: 18px; color: var(--sage); flex: none; margin-top: 3px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 26px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: 0.86rem; color: #7E918B; }
.footer__bottom a:hover { color: var(--yellow); }

/* ---------- Floating action buttons ---------- */
.fab { position: fixed; right: 22px; bottom: 22px; z-index: var(--z-fab); display: flex; flex-direction: column; gap: 12px; }
.fab a { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-md); color: var(--white); transition: transform .25s var(--ease); }
.fab a:hover { transform: scale(1.08); }
.fab a svg { width: 28px; height: 28px; }
.fab__wa { background: #25D366; }
.fab__tel { background: var(--teal); }

/* ---------- Decorative flower motif ---------- */
.flower-bg { position: absolute; z-index: 0; opacity: 0.06; pointer-events: none; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav, .header__phone { display: none; }
  .nav-toggle { display: flex; }
  .header__actions { gap: 8px; }
  .header__actions .btn { padding: 11px 18px; font-size: 0.85rem; }
  .brand img, .header.scrolled .brand img { height: 36px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split--reverse .split__media { order: 0; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 36px 20px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  /* CTA je dostupne v hamburger menu - v headeri ho skryjeme aby logo nebolo stlacene */
  .header__actions .btn { display: none; }
  .brand img, .header.scrolled .brand img { height: 34px; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .section { padding: 68px 0; }
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 44px 28px; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
  .form-card { padding: 26px; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__cta { width: 100%; }
  .hero__cta .btn { flex: 1; }
  .container { padding: 0 18px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
