:root {
  --bg: #f6f9fc;
  --surface: #ffffff;
  --surface-2: #eef4fb;
  --border: #e3ecf5;
  --text: #0b1f3a;
  --text-2: #3d5475;
  --muted: #6b7d96;
  --accent: #1a73ff;
  --accent-2: #4a93ff;
  --accent-soft: #dbe9ff;
  --shadow-sm: 0 4px 14px rgba(26, 115, 255, .08);
  --shadow-md: 0 18px 50px -20px rgba(26, 115, 255, .25);
  --radius: 22px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg); color: var(--text);
  line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
h1, h2, h3 { letter-spacing: -0.025em; line-height: 1.08; font-weight: 800; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* ── NAV ─────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  backdrop-filter: saturate(180%) blur(14px);
  background: rgba(246, 249, 252, .80);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; max-width: 1240px; margin: 0 auto;
}
.nav-logo {
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  padding: 8px 18px 10px; border-radius: 14px;
  box-shadow: var(--shadow-sm); transition: .2s; flex-shrink: 0;
}
.nav-logo:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.nav-logo img { height: 26px; width: auto; display: block; filter: brightness(0) invert(1); }
.nav-links { display: flex; gap: 28px; }
.nav-links a { font-size: 14px; color: var(--text-2); font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--accent); }
.nav-cta {
  display: inline-flex; align-items: center;
  background: var(--accent); color: #fff; padding: 11px 22px;
  border-radius: 999px; font-size: 14px; font-weight: 600;
  transition: .2s; box-shadow: var(--shadow-sm); white-space: nowrap;
}
.nav-cta:hover { background: #0b5fe5; transform: translateY(-1px); }
@media (max-width: 768px) {
  .nav-cta { padding: 10px 16px; font-size: 13px; }
}
@media (max-width: 860px) { .nav-links { display: none; } }

/* ── HERO ────────────────────────────────── */
.hero { position: relative; padding: 140px 0 90px; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 0% 10%, rgba(26, 115, 255, .10), transparent 60%),
    radial-gradient(ellipse 60% 50% at 100% 90%, rgba(74, 147, 255, .08), transparent 60%);
}
.hero-grid {
  position: relative; display: grid;
  grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: center;
}
@media (max-width: 960px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } }

.badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px; border: 1px solid var(--accent-soft); border-radius: 999px;
  background: var(--surface); font-size: 13px; font-weight: 500; color: var(--accent);
  margin-bottom: 28px; box-shadow: var(--shadow-sm);
}
.badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 10px var(--accent);
}
h1 { font-size: clamp(42px, 6vw, 76px); margin-bottom: 24px; color: var(--text); }
h1 .accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lead { font-size: clamp(16.5px, 1.4vw, 19px); color: var(--text-2); max-width: 560px; margin-bottom: 36px; }
.actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-urgency { font-size: 13px; color: #378ADD; font-weight: 500; margin-top: 12px; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px; border-radius: 999px; font-weight: 600; font-size: 15px;
  transition: .2s; cursor: pointer; border: none;
}
.btn-primary { background: var(--accent); color: #fff; box-shadow: var(--shadow-md); }
.btn-primary:hover { background: #0b5fe5; transform: translateY(-2px); }
.btn-ghost { background: var(--surface); color: var(--text); border: 1px solid var(--border); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.trust { display: flex; flex-direction: column; gap: 10px; margin-top: 32px; }
.trust-item { display: flex; flex-direction: row; align-items: center; gap: 12px; }
.trust-item .num {
  font-size: 16px; font-weight: 800; color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  background: var(--accent-soft);
}
.trust-item .lbl { font-size: 13px; color: var(--text-2); font-weight: 600; letter-spacing: .04em; }

.hero-visual { position: relative; }
.hero-img-wrap {
  position: relative; border-radius: 28px; overflow: hidden;
  box-shadow: 0 30px 80px -30px rgba(11, 31, 58, .3);
  aspect-ratio: 5 / 6; background: var(--surface-2);
}
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.float-card {
  position: absolute; background: #fff; border-radius: 18px; padding: 14px 18px;
  box-shadow: 0 20px 50px -15px rgba(11, 31, 58, .25);
  display: flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 600;
  border: 1px solid var(--border);
}
.float-card .ico {
  width: 38px; height: 38px; border-radius: 12px; background: var(--accent-soft);
  display: flex; align-items: center; justify-content: center; color: var(--accent); font-size: 18px;
}
.fc-1 { top: 24px; left: -20px; animation: float 6s ease-in-out infinite; }
.fc-2 { bottom: 30px; right: -20px; animation: float 7s ease-in-out infinite reverse; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@media (max-width: 520px) { .fc-1 { left: 10px; } .fc-2 { right: 10px; } }

/* ── SECTIONS ────────────────────────────── */
section.block { padding: 110px 0; position: relative; }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.kicker {
  color: var(--accent); font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .18em; margin-bottom: 14px;
}
h2 { font-size: clamp(30px, 4.5vw, 50px); margin-bottom: 18px; color: var(--text); }
.section-head p { color: var(--text-2); font-size: 17.5px; }

/* ── SERVICES ────────────────────────────── */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 34px 30px; transition: .3s; position: relative;
  display: grid; grid-template-columns: auto 1fr; column-gap: 16px; align-items: start;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--accent-soft); }
.card .icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff; display: flex; align-items: center; justify-content: center;
  margin-bottom: 0; font-size: 26px; box-shadow: var(--shadow-sm);
  grid-row: 1 / 3; align-self: start;
}
.card h3 { font-size: 21px; margin-bottom: 10px; font-weight: 700; }
.card p { color: var(--text-2); font-size: 15px; }

/* ── PROCESS ─────────────────────────────── */
.process { background: var(--surface); }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; }
.step { position: relative; padding: 32px 28px; background: var(--surface-2); border-radius: 20px;
  display: grid; grid-template-columns: auto 1fr; column-gap: 14px; align-items: start; }
.step-num {
  display: inline-flex; width: 42px; height: 42px; border-radius: 12px;
  background: #fff; color: var(--accent); font-weight: 800; font-size: 18px;
  align-items: center; justify-content: center; margin-bottom: 0;
  border: 1px solid var(--accent-soft);
  grid-row: 1 / 3; align-self: start;
}
.step h3 { font-size: 19px; margin-bottom: 8px; font-weight: 700; }
.step p { color: var(--text-2); font-size: 14.5px; }

/* ── FEATURES ────────────────────────────── */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 28px; margin-top: 40px; }
.feat { display: flex; gap: 14px; align-items: flex-start; }
.feat .ico {
  flex: none; width: 44px; height: 44px; border-radius: 12px;
  background: var(--accent-soft); color: var(--accent);
  display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.feat h4 { font-size: 16px; margin-bottom: 4px; font-weight: 700; }
.feat p { font-size: 14px; color: var(--text-2); }

/* ── CAROUSEL ────────────────────────────── */
.carousel { position: relative; outline: none; }
.carousel-viewport {
  overflow: hidden; border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.carousel-track {
  display: flex;
  align-items: flex-start;
  transition: transform .45s cubic-bezier(.25, .1, .25, 1);
}
.carousel-slide { flex: 0 0 100%; min-width: 0; }
.carousel-img-wrap { position: relative; background: #fff; border-radius: var(--radius); overflow: hidden; }
.carousel-img-wrap img { width: 100%; height: auto; display: block; max-width: 100%; }
.carousel-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(11, 31, 58, .75) 0%, transparent 100%);
  color: #fff; font-size: 15px; font-weight: 600;
  padding: 32px 28px 20px; letter-spacing: -.01em;
}

.carousel-btn {
  position: absolute; top: 40%; transform: translateY(-50%);
  width: 46px; height: 46px; border-radius: 50%;
  background: #fff; border: 1px solid var(--border);
  box-shadow: 0 4px 18px rgba(11, 31, 58, .14);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--text); transition: .2s; z-index: 2;
}
.carousel-btn:hover { background: var(--accent); color: #fff; border-color: var(--accent); transform: translateY(-50%) scale(1.06); }
.carousel-prev { left: -20px; }
.carousel-next { right: -20px; }
@media (max-width: 600px) {
  .carousel-prev { left: 8px; }
  .carousel-next { right: 8px; }
  .carousel-btn { width: 36px; height: 36px; }
}

.carousel-footer {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; margin-top: 22px;
}
.carousel-dots { display: flex; gap: 8px; align-items: center; }
.carousel-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--border); border: none; cursor: pointer;
  transition: .25s; padding: 0;
}
.carousel-dot.active { background: var(--accent); width: 26px; border-radius: 5px; }
.carousel-counter { font-size: 13px; font-weight: 600; color: var(--muted); min-width: 36px; }

/* ── BEFORE / AFTER SLIDER ──────────────── */
.ba-section { background: var(--surface-2); }
.ba-wrap { max-width: 820px; margin: 0 auto; }

.ba-slider {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: ew-resize;
  box-shadow: 0 24px 64px rgba(11,31,58,.18);
  user-select: none;
  -webkit-user-select: none;
}

.ba-img { position: absolute; inset: 0; }
.ba-img img { width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; }

.ba-img-after { position: relative; }
.ba-img-after img { position: relative; width: 100%; height: auto; display: block; }

.ba-img-before {
  position: absolute; inset: 0;
  clip-path: inset(0 50% 0 0);
  transition: clip-path .05s linear;
}
.ba-img-before img { width: 100%; height: 100%; object-fit: cover; }

.ba-handle {
  position: absolute; top: 0; bottom: 0;
  left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
  width: 4px; z-index: 10; pointer-events: none;
}
.ba-handle-line { flex: 1; width: 3px; background: #fff; opacity: .9; }
.ba-handle-btn {
  width: 52px; height: 52px; border-radius: 50%;
  background: #fff; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
  color: var(--accent);
}

.ba-label {
  position: absolute; top: 20px;
  background: rgba(11,31,58,.55); backdrop-filter: blur(6px);
  color: #fff; font-size: 13px; font-weight: 700;
  padding: 6px 14px; border-radius: 999px; letter-spacing: .06em;
  pointer-events: none; z-index: 5;
}
.ba-label-l { left: 20px; }
.ba-label-r { right: 20px; }

.ba-hint {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  margin-top: 16px; font-size: 13px; color: var(--muted); font-weight: 500;
}

@media (max-width: 600px) {
  .ba-handle-btn { width: 42px; height: 42px; }
  .ba-label { font-size: 11px; padding: 4px 10px; top: 14px; }
  .ba-label-l { left: 12px; }
  .ba-label-r { right: 12px; }
}

/* ── REVIEW CAROUSEL ─────────────────────── */
.review-carousel .carousel-viewport {
  overflow: hidden;
  box-shadow: none;
  border-radius: 16px;
}
.review-carousel .carousel-slide {
  padding: 8px 10px 16px;
}

/* DESKTOP — šipky mimo viewportu */
@media (min-width: 700px) {
  .review-carousel {
    padding: 0 64px;
  }
  .review-carousel .carousel-prev { left: 6px; }
  .review-carousel .carousel-next { right: 6px; }
}

/* MOBIL */
@media (max-width: 699px) {
  .review-carousel .carousel-prev { left: 4px; }
  .review-carousel .carousel-next { right: 4px; }
}

/* ── REVIEWS ─────────────────────────────── */
/* Celkové hodnotenie */
.reviews-overall {
  justify-content: center; margin-top: 16px;
}
.reviews-overall-inner {
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; padding: 14px 22px;
  box-shadow: var(--shadow-sm);
}
.ro-score {
  font-size: 36px; font-weight: 800; color: var(--text);
  letter-spacing: -.03em; line-height: 1;
}
.ro-right { display: flex; flex-direction: column; gap: 4px; }
.ro-stars { font-size: 20px; color: #FBBC05; letter-spacing: 2px; }
.ro-count {
  display: flex; align-items: center; gap: 6px;
  font-size: 12.5px; color: var(--muted); font-weight: 500;
}
.ro-glogo { height: 14px; vertical-align: middle; }

/* Tlačidlo na recenziu */
.reviews-footer { display: flex; justify-content: center; margin-top: 40px; }
.reviews-write-btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14.5px; font-weight: 600;
}
.reviews-write-btn svg { flex-shrink: 0; }
.review-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 26px 28px; transition: .3s;
  display: flex; flex-direction: column; gap: 14px;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--accent-soft); }
.review-top { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 15px; font-weight: 700; letter-spacing: .02em;
}
.reviewer-info { flex: 1; min-width: 0; }
.reviewer-name { font-size: 15px; font-weight: 700; color: var(--text); line-height: 1.2; }
.reviewer-meta { font-size: 12.5px; color: var(--muted); margin-top: 2px; }
.review-g { width: 22px; height: 22px; flex-shrink: 0; }
.review-stars { font-size: 18px; color: #FBBC04; letter-spacing: 1px; line-height: 1; }
.review-text { font-size: 14.5px; color: var(--text-2); line-height: 1.65; flex: 1; }

/* ── CENNIK ──────────────────────────────── */
.price-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px;
}
.price-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; transition: .3s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--accent-soft); }
.price-card-head {
  display: flex; align-items: center; gap: 14px;
  padding: 24px 28px 20px; border-bottom: 1px solid var(--border);
  background: var(--surface-2);
}
.price-icon {
  width: 48px; height: 48px; border-radius: 14px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.price-card-head h3 { font-size: 19px; font-weight: 700; margin: 0; }
.price-list { list-style: none; padding: 8px 28px 24px; }
.price-list li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 11px 0; border-bottom: 1px solid var(--border); gap: 12px;
}
.price-list li:last-child { border-bottom: none; }
.price-item { font-size: 14.5px; color: var(--text-2); }
.price-val { font-size: 15px; font-weight: 700; color: var(--accent); white-space: nowrap; flex-shrink: 0; }
.price-note { margin-top: 28px; text-align: center; font-size: 13.5px; color: var(--muted); }

/* Ako stanovujeme cenu */
.price-how {
  margin-top: 48px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 40px;
}
.price-how-title {
  font-size: 20px; font-weight: 700; color: var(--text);
  margin-bottom: 24px;
}
.price-how-list {
  list-style: none; padding: 0;
  display: flex; flex-direction: column; gap: 18px;
}
.price-how-list li {
  display: flex; align-items: flex-start; gap: 16px;
  font-size: 15px; color: var(--text-2); line-height: 1.7;
}
.price-how-icon { font-size: 22px; flex-shrink: 0; margin-top: 1px; }
.price-how-list strong { color: var(--text); }
@media (max-width: 600px) {
  .price-how { padding: 24px 20px; }
}

/* ── FAQ GRID ────────────────────────────── */
.faq-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px;
}
.faq-block {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 28px 26px;
  border-left: 4px solid var(--accent-soft); transition: .3s;
  display: grid; grid-template-columns: auto 1fr; column-gap: 14px; row-gap: 6px; align-items: start;
}
.faq-block:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-left-color: var(--accent); }
.faq-num {
  font-size: 12px; font-weight: 800; color: var(--accent);
  letter-spacing: .12em; text-transform: uppercase;
  background: var(--accent-soft); display: inline-flex;
  align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 10px;
  grid-row: 1 / 3; align-self: start;
}
.faq-block h4 { font-size: 16px; font-weight: 700; color: var(--text); line-height: 1.3; }
.faq-block p { font-size: 14px; color: var(--text-2); line-height: 1.65; }

/* ── OBLAST ──────────────────────────────── */
.zone-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px;
}
.zone-card {
  border-radius: var(--radius); padding: 36px 32px;
  border: 2px solid transparent; transition: .3s; display: flex; flex-direction: column; gap: 14px;
}
.zone-free {
  background: #f0fdf4; border-color: #86efac;
}
.zone-free:hover { box-shadow: 0 12px 40px rgba(34,197,94,.15); }
.zone-paid {
  background: var(--surface-2); border-color: var(--accent-soft);
}
.zone-paid:hover { box-shadow: var(--shadow-md); }
.zone-icon { font-size: 28px; }
.zone-badge {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; padding: 5px 14px; border-radius: 999px;
  display: inline-flex; width: fit-content;
}
.free-badge { background: #dcfce7; color: #15803d; }
.paid-badge { background: var(--accent-soft); color: var(--accent); }
.zone-card h3 { font-size: 22px; font-weight: 800; color: var(--text); margin: 0; }
.zone-card p  { font-size: 15px; color: var(--text-2); line-height: 1.6; }
.zone-towns {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px;
}
.zone-towns span {
  font-size: 13px; font-weight: 500; color: var(--text-2);
  background: rgba(255,255,255,.7); border: 1px solid var(--border);
  border-radius: 999px; padding: 4px 12px;
}

/* ── CTA ─────────────────────────────────── */
.cta-wrap { padding: 0 0 110px; }
.cta {
  background: linear-gradient(135deg, var(--accent) 0%, #0b5fe5 100%);
  border-radius: 32px; padding: 80px 48px; text-align: center;
  position: relative; overflow: hidden; color: #fff;
}
.cta::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, .2), transparent 50%),
    radial-gradient(circle at 80% 100%, rgba(255, 255, 255, .12), transparent 50%);
}
.cta-inner { position: relative; z-index: 2; }
.cta .kicker { color: rgba(255, 255, 255, .9); }
.cta h2 { color: #fff; margin-bottom: 14px; }
.cta p { color: rgba(255, 255, 255, .88); font-size: 18px; margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta .btn-primary { background: #fff; color: var(--accent); }
.cta .btn-primary:hover { background: #f0f6ff; }
.cta .btn-ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .4); }
.cta .btn-ghost:hover { background: rgba(255, 255, 255, .1); color: #fff; border-color: #fff; }

/* ── FOOTER ──────────────────────────────── */
footer { padding: 50px 0 40px; border-top: 1px solid var(--border); color: var(--muted); font-size: 14px; background: var(--surface); }
.foot { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; align-items: center; }
.foot img { height: 30px; }
.foot-links { display: flex; gap: 24px; flex-wrap: wrap; }
.foot-links a { color: var(--muted); font-weight: 500; transition: color .2s; }
.foot-links a:hover { color: var(--accent); }
.foot-bottom { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.foot-social { display: flex; gap: 12px; }
.foot-social a { color: var(--muted); transition: color .2s; display: flex; align-items: center; }
.foot-social a:hover { color: var(--accent); }

/* ── CONTACT ─────────────────────────────── */
.cta-inner--contact { text-align: left; }
.cta-inner--contact h2 { text-align: left; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  margin-top: 40px;
  align-items: start;
}
@media (max-width: 820px) {
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .cta-inner--contact, .cta-inner--contact h2 { text-align: center; }
  .contact-phone-num { font-size: clamp(26px, 6vw, 36px); }
}

.contact-info { display: flex; flex-direction: column; gap: 24px; padding-top: 4px; }

.contact-info-label {
  font-size: 13px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .14em; color: rgba(255,255,255,.7);
}

.contact-phone-num {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800; color: #fff; letter-spacing: -.02em;
  line-height: 1; transition: opacity .2s;
  display: block;
}
.contact-phone-num:hover { opacity: .8; }

.contact-hours {
  display: flex; flex-direction: column; gap: 10px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 14px; padding: 18px 20px;
}
.hours-row { display: flex; justify-content: space-between; gap: 16px; }
.hours-day { font-size: 14px; color: rgba(255,255,255,.75); font-weight: 500; }
.hours-time { font-size: 14px; color: #fff; font-weight: 700; }

.contact-note {
  font-size: 13.5px; color: rgba(255,255,255,.65); line-height: 1.5;
}

/* Form card */
.contact-form-wrap {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 22px;
  padding: 32px 30px;
}

.contact-form { display: flex; flex-direction: column; gap: 16px; }

.form-row-2 {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
@media (max-width: 500px) { .form-row-2 { grid-template-columns: 1fr; } }

.form-group { display: flex; flex-direction: column; gap: 7px; }

.form-group label {
  font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,.85); letter-spacing: .01em;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 12px;
  color: #fff;
  padding: 12px 16px;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color .2s, background .2s;
  resize: vertical;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,.38); }
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(255,255,255,.55);
  background: rgba(255,255,255,.16);
}

/* Kontakt CTA tlačidlá nad formulárom */
.contact-cta-btns {
  display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 4px;
}
.contact-cta-tel {
  background: rgba(255,255,255,.12); color: #fff; font-weight: 600; font-size: 15px;
  width: 100%; text-align: center; justify-content: center;
  padding: 13px 20px; border-radius: 14px; border: 1.5px solid rgba(255,255,255,.35);
  display: flex; align-items: center;
  transition: background .2s, transform .2s;
  touch-action: manipulation;
}
.contact-cta-tel:hover { background: rgba(255,255,255,.2); transform: translateY(-2px); }
.contact-divider {
  text-align: center; font-size: 13px;
  color: rgba(255,255,255,.5); margin: 16px 0;
  letter-spacing: .04em;
}

.form-btn {
  background: #fff; color: var(--accent);
  font-weight: 700; font-size: 15px;
  width: 100%; justify-content: center;
  margin-top: 4px;
}
.form-btn:hover { background: #f0f6ff; transform: translateY(-2px); }
.form-btn:disabled { opacity: .6; cursor: not-allowed; transform: none; }

.form-msg {
  display: none; text-align: center;
  font-size: 14px; font-weight: 600;
  border-radius: 10px; padding: 12px 16px;
}
.form-success { background: rgba(16,185,129,.2); color: #d1fae5; }
.form-error   { background: rgba(239,68,68,.2);  color: #fee2e2; }

/* GDPR checkbox */
.gdpr-label {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 12px; color: rgba(255,255,255,.7); line-height: 1.55;
  cursor: pointer; margin-top: -4px;
}
.gdpr-label input[type="checkbox"] {
  width: 16px; height: 16px; min-width: 16px;
  accent-color: var(--accent); margin-top: 1px; cursor: pointer;
}
.gdpr-label a { color: rgba(255,255,255,.9); text-decoration: underline; }
.gdpr-label a:hover { color: #fff; }

/* ── ZONE NOTICE ─────────────────────────── */
.zone-notice {
  margin-top: 28px;
  display: flex; flex-direction: column; gap: 12px;
  background: #fffbeb; border: 1px solid #fde68a;
  border-radius: 16px; padding: 20px 24px;
}
.zone-notice-item {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 14px; color: var(--text-2); line-height: 1.6;
}
.zone-notice-icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.zone-notice-item strong { color: var(--text); }

/* ── COOKIE BAR ──────────────────────────── */
.cookie-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 99999; /* musí byť nad FB chat iframe aj nav */
  background: var(--surface);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 32px rgba(11,31,58,.1);
  padding: 16px 24px;
  transform: translateY(0);
  transition: transform .4s ease;
  pointer-events: auto;
}
.cookie-bar.is-hidden { transform: translateY(110%); pointer-events: none; }
.cookie-bar-inner {
  max-width: 1240px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.cookie-text {
  font-size: 14px; color: var(--text-2); line-height: 1.55; margin: 0; flex: 1; min-width: 200px;
}
.cookie-link { color: var(--accent); font-weight: 600; }
.cookie-link:hover { text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn-decline,
.cookie-btn-accept {
  padding: 10px 18px; font-size: 14px;
  touch-action: manipulation; /* odstraňuje 300ms delay na mobile */
  cursor: pointer;
  position: relative; z-index: 1; /* klikateľnosť nad vnútornými vrstvami */
}
@media (max-width: 520px) {
  .cookie-bar { padding: 14px 16px; }
  .cookie-bar-inner { gap: 12px; }
  .cookie-text { min-width: 0; font-size: 13px; }
  .cookie-actions { width: 100%; }
  .cookie-btn-decline,
  .cookie-btn-accept { flex: 1; text-align: center; padding: 12px 10px; font-size: 14px; }
}

/* ── PHONE FLOATING BUTTON ───────────────── */
.phone-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(26, 115, 255, 0.45);
  text-decoration: none;
  animation: phone-pulse 2s ease-in-out infinite;
  transition: transform .2s, box-shadow .2s;
}
.phone-fab:hover {
  animation: none;
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(26, 115, 255, 0.6);
}
.phone-fab svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
@keyframes phone-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 4px 20px rgba(26,115,255,.45); }
  50%       { transform: scale(1.08); box-shadow: 0 6px 26px rgba(26,115,255,.6); }
}
.phone-fab-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: #0b1f3a;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
  padding: 8px 14px;
  border-radius: 10px;
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s;
}
.phone-fab-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: #0b1f3a;
}
.phone-fab:hover .phone-fab-tooltip { opacity: 1; }
@media (max-width: 768px) {
  .phone-fab { width: 60px; height: 60px; bottom: 20px; right: 16px; }
  .phone-fab svg { width: 32px; height: 32px; }
  .phone-fab-tooltip { display: none; }
}

/* ── ANIMATIONS ──────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}
.anim > * { animation: fadeUp .8s ease forwards; }
.anim > *:nth-child(2) { animation-delay: .08s; }
.anim > *:nth-child(3) { animation-delay: .16s; }
.anim > *:nth-child(4) { animation-delay: .24s; }
.anim > *:nth-child(5) { animation-delay: .32s; }
