/* ══════════════════════════════════════════════════════════
   Odpady Hrabák — hlavní stylesheet
   ══════════════════════════════════════════════════════════ */

/* ── Proměnné ── */
:root {
  /* Barvy z loga Odpady Hrabák */
  --black:      #040d12;
  --dark:       #071520;
  --dark2:      #0d2233;
  --dark3:      #132d40;
  --green:      #00b7bf;      /* cyan z loga */
  --green2:     #0084ad;      /* střední modrá z loga */
  --green-dim:  rgba(0, 183, 191, .12);
  --green-glow: rgba(0, 183, 191, .28);
  --accent:     #6bac00;      /* zelená z loga */
  --accent-dim: rgba(107, 172, 0, .15);
  --white:      #eef4f7;
  --muted:      #7a9aad;
  --border:     rgba(0, 183, 191, .12);
  --radius:     12px;
  --radius-lg:  20px;
  --shadow:     0 8px 40px rgba(0, 0, 0, .6);
  --nav-h:      68px;
  --max-w:      1200px;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  {
  font-family: 'Barlow', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img   { max-width: 100%; height: auto; display: block; }
a     { color: inherit; }
button { font-family: inherit; }

/* ── Utility ── */
.container { max-width: var(--max-w); margin: 0 auto; width: 100%; }
.section-label {
  font-size: .75rem; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; color: var(--green); margin-bottom: 12px;
  display: block;
}
h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 800;
  text-transform: uppercase; line-height: 1.05; letter-spacing: .01em;
  margin-bottom: 40px;
}
h2 .accent { color: var(--green); }

/* ── Tlačítka ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Barlow', sans-serif; font-weight: 700; font-size: .95rem;
  letter-spacing: .04em; text-decoration: none; cursor: pointer; border: none;
  border-radius: 10px; padding: 14px 28px; transition: .2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green); color: var(--black);
  box-shadow: 0 0 0 0 var(--green-glow);
}
.btn-primary:hover {
  background: #55e89a; transform: translateY(-2px);
  box-shadow: 0 0 0 8px var(--green-dim);
}
.btn-ghost {
  border: 1.5px solid var(--border); color: var(--white); background: transparent;
}
.btn-ghost:hover { border-color: var(--green); background: var(--green-dim); }
.btn-outline {
  border: 1.5px solid var(--green); color: var(--green); background: transparent;
  width: 100%; justify-content: center;
}
.btn-outline:hover { background: var(--green); color: var(--black); }
.btn-lg { padding: 18px 40px; font-size: 1.05rem; }

/* ── Animace ── */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .4; transform: scale(.7); }
}
@keyframes bounce {
  0%, 60%, 100% { transform: translateY(0); }
  30%            { transform: translateY(-6px); }
}
@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }

/* ══════════════════════════════════════════════════════════
   NAV
   ══════════════════════════════════════════════════════════ */
nav#mainNav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h);
  background: rgba(10, 10, 10, .88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background .3s;
}
nav#mainNav.scrolled { background: rgba(10, 10, 10, .98); }
.nav-inner {
  max-width: var(--max-w); margin: 0 auto;
  height: 100%; padding: 0 clamp(16px, 4vw, 40px);
  display: flex; align-items: center; gap: 32px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-img { height: 36px; width: auto; object-fit: contain; }
.nav-logo-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 1.4rem; letter-spacing: .04em; color: var(--white);
}
.nav-logo-text em { font-style: normal; color: var(--green); }
.nav-links {
  display: flex; align-items: center; gap: 28px; list-style: none; margin-left: auto;
}
.nav-links a {
  color: var(--muted); text-decoration: none; font-size: .88rem;
  font-weight: 500; letter-spacing: .04em;
  padding-bottom: 2px; border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); border-color: var(--green); }
.nav-cta {
  display: flex; align-items: center; gap: 7px;
  background: var(--green); color: #fff;
  padding: 9px 20px; border-radius: 8px; font-weight: 700;
  font-size: .88rem; text-decoration: none; letter-spacing: .03em;
  transition: background .2s, transform .15s; white-space: nowrap;
  margin-left: 8px;
}
.nav-cta:hover { background: #55e89a; transform: translateY(-1px); }
.burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.burger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px; transition: .3s;
}

/* ══════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: calc(var(--nav-h) + 60px) clamp(16px, 5vw, 60px) 60px;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 60% 70% at 72% 50%, rgba(61, 220, 132, .07) 0%, transparent 70%),
    linear-gradient(160deg, #040d12 0%, #071a28 100%);
}
.hero-grid {
  position: absolute; inset: 0; z-index: 0; opacity: .035;
  background-image:
    linear-gradient(var(--white) 1px, transparent 1px),
    linear-gradient(90deg, var(--white) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: var(--max-w); width: 100%; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}

/* Left */
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-dim); border: 1px solid var(--green-glow);
  padding: 6px 14px; border-radius: 100px; margin-bottom: 22px;
  font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--green);
}
.hero-tag::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--green);
  animation: pulse 1.8s infinite;
}
h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: clamp(3rem, 6.5vw, 5.5rem);
  line-height: .97; letter-spacing: -.01em; text-transform: uppercase;
}
h1 .accent { color: var(--green); }
.hero-sub {
  margin-top: 20px; font-size: 1.05rem; color: var(--muted);
  line-height: 1.75; max-width: 440px;
}
.hero-bullets { list-style: none; margin: 24px 0; display: flex; flex-direction: column; gap: 10px; }
.hero-bullets li {
  display: flex; align-items: center; gap: 12px;
  font-size: .93rem; font-weight: 500;
}
.hero-bullets li::before {
  content: '✓'; min-width: 22px; width: 22px; height: 22px;
  background: var(--green-dim); border: 1px solid var(--green);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--green); font-size: .72rem; font-weight: 800;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }

/* Right */
.hero-right { display: flex; flex-direction: column; gap: 18px; }
.hero-phone-card {
  background: var(--dark2); border: 1px solid var(--border);
  border-radius: 16px; padding: 26px 28px;
}
.hero-phone-card .label {
  font-size: .75rem; color: var(--muted); text-transform: uppercase;
  letter-spacing: .1em; font-weight: 600; margin-bottom: 6px;
}
.hero-phone-card .number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem; font-weight: 800; letter-spacing: .02em;
  color: var(--white); text-decoration: none; display: block; margin-bottom: 8px;
}
.hero-phone-card .number:hover { color: var(--green); }
.hero-phone-card .avail {
  color: var(--green); font-size: .82rem; font-weight: 600;
  display: flex; align-items: center; gap: 6px;
}
.hero-phone-card .avail::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--green); animation: pulse 1.8s infinite;
}
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.stat-card {
  background: var(--dark2); border: 1px solid var(--border);
  border-radius: 12px; padding: 18px 20px;
}
.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.9rem; font-weight: 800; color: var(--green);
}
.stat-label { font-size: .8rem; color: var(--muted); margin-top: 2px; line-height: 1.4; }

/* Hero image slider */
.hero-slider { border-radius: 16px; overflow: hidden; aspect-ratio: 16/10; position: relative; }
.hero-slider img { width: 100%; height: 100%; object-fit: cover; }

/* ══════════════════════════════════════════════════════════
   SECTIONS — společné
   ══════════════════════════════════════════════════════════ */
.section { padding: 80px clamp(16px, 5vw, 60px); }
.section-dark  { background: var(--dark); }
.section-black { background: var(--black); }

/* ══════════════════════════════════════════════════════════
   SLUŽBY
   ══════════════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.service-card {
  background: var(--dark2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px;
  transition: border-color .25s, transform .25s, box-shadow .25s;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--green); transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.service-card:hover { border-color: var(--green-glow); transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,.4); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 46px; height: 46px; border-radius: 11px;
  background: var(--green-dim); display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; font-size: 1.4rem;
}
.service-card h3 { font-weight: 700; font-size: .98rem; margin-bottom: 8px; }
.service-card p  { font-size: .87rem; color: var(--muted); line-height: 1.65; }

/* ══════════════════════════════════════════════════════════
   JAK TO FUNGUJE
   ══════════════════════════════════════════════════════════ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px; position: relative;
}
.steps-grid::before {
  content: ''; position: absolute; top: 31px; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--green-glow), transparent);
  pointer-events: none;
}
.step { text-align: center; padding: 20px 16px; }
.step-num {
  width: 62px; height: 62px; border-radius: 50%;
  background: var(--green-dim); border: 2px solid var(--green);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.6rem; font-weight: 800;
  color: var(--green); margin: 0 auto 16px; position: relative; z-index: 1;
}
.step h3 { font-weight: 700; font-size: .95rem; margin-bottom: 8px; }
.step p  { font-size: .85rem; color: var(--muted); line-height: 1.6; }

/* ══════════════════════════════════════════════════════════
   CENÍK
   ══════════════════════════════════════════════════════════ */
.pricing-note { color: var(--muted); font-size: .9rem; margin-top: -28px; margin-bottom: 36px; }
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.price-card {
  background: var(--dark2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 28px 28px;
  position: relative; transition: border-color .25s, transform .25s;
}
.price-card:hover { border-color: var(--green-glow); transform: translateY(-6px); }
.price-card.featured {
  border-color: var(--green);
  background: linear-gradient(160deg, #0a1e2b 0%, var(--dark2) 100%);
}
.price-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--green); color: var(--black);
  padding: 4px 16px; border-radius: 100px;
  font-size: .72rem; font-weight: 800; letter-spacing: .08em; white-space: nowrap;
}
.price-volume {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.7rem; font-weight: 800; margin-bottom: 16px;
}
.price-volume span { color: var(--green); }
.price-container-img {
  width: 100%; max-height: 130px; object-fit: contain;
  margin: 0 auto 20px; display: block; border-radius: 8px;
}
.price-incl {
  font-size: .8rem; color: var(--muted); margin-bottom: 18px;
  display: flex; align-items: center; gap: 6px;
}
.price-incl::before { content: '✓'; color: var(--green); font-weight: 700; }
.price-items { list-style: none; display: flex; flex-direction: column; gap: 0; margin-bottom: 24px; }
.price-item {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 12px 0; border-bottom: 1px solid var(--border);
}
.price-item:last-child { border-bottom: none; }
.pi-name  { font-size: .9rem; font-weight: 600; }
.pi-note  { font-size: .78rem; color: var(--muted); margin-top: 3px; }
.pi-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.25rem; font-weight: 800; color: var(--green);
  margin-left: 12px; white-space: nowrap;
}
.pi-price.na { color: var(--muted); font-size: 1rem; }

/* ══════════════════════════════════════════════════════════
   AI PORADCE
   ══════════════════════════════════════════════════════════ */
.ai-intro { color: var(--muted); font-size: .9rem; margin-top: -28px; margin-bottom: 36px; max-width: 560px; }
.ai-wrapper {
  background: var(--dark2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; max-width: 760px; margin: 0 auto;
  box-shadow: var(--shadow);
}
.ai-header {
  background: linear-gradient(135deg, #162418 0%, var(--dark3) 100%);
  border-bottom: 1px solid var(--border);
  padding: 18px 26px; display: flex; align-items: center; gap: 14px;
}
.ai-avatar {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--green); display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.ai-name   { font-weight: 700; font-size: .98rem; }
.ai-status { font-size: .8rem; color: var(--green); display: flex; align-items: center; gap: 5px; }
.ai-status::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--green); animation: pulse 1.8s infinite;
}
.ai-messages {
  padding: 22px 26px; min-height: 240px; max-height: 320px;
  overflow-y: auto; display: flex; flex-direction: column; gap: 16px;
  scrollbar-width: thin; scrollbar-color: var(--dark3) transparent;
}
.msg { max-width: 82%; }
.msg.bot  { align-self: flex-start; }
.msg.user { align-self: flex-end; }
.msg-sender { font-size: .73rem; color: var(--muted); margin-bottom: 4px; }
.msg.user .msg-sender { text-align: right; }
.msg-bubble {
  padding: 11px 15px; border-radius: 14px;
  font-size: .88rem; line-height: 1.65;
}
.msg.bot  .msg-bubble {
  background: var(--dark3); border: 1px solid var(--border); border-bottom-left-radius: 4px;
}
.msg.user .msg-bubble {
  background: var(--green); color: var(--black); font-weight: 500; border-bottom-right-radius: 4px;
}
.typing-dots { display: flex; gap: 4px; align-items: center; padding: 12px 16px; }
.typing-dots span {
  width: 7px; height: 7px; border-radius: 50%; background: var(--muted);
  animation: bounce .9s infinite;
}
.typing-dots span:nth-child(2) { animation-delay: .15s; }
.typing-dots span:nth-child(3) { animation-delay: .30s; }
.ai-quick-wrap {
  padding: 12px 26px; display: flex; flex-wrap: wrap; gap: 8px;
  border-top: 1px solid var(--border);
}
.quick-btn {
  background: var(--dark3); border: 1px solid var(--border); color: var(--white);
  padding: 8px 14px; border-radius: 20px; font-size: .82rem; cursor: pointer;
  transition: border-color .2s, background .2s; font-family: 'Barlow', sans-serif;
  white-space: nowrap;
}
.quick-btn:hover { border-color: var(--green); background: var(--green-dim); }
.ai-input-row {
  padding: 14px 26px 18px; display: flex; gap: 10px;
  border-top: 1px solid var(--border);
}
.ai-input {
  flex: 1; background: var(--dark3); border: 1px solid var(--border);
  border-radius: 10px; padding: 11px 15px; color: var(--white);
  font-size: .88rem; font-family: 'Barlow', sans-serif; outline: none;
  transition: border-color .2s;
}
.ai-input:focus     { border-color: var(--green); }
.ai-input::placeholder { color: var(--muted); }
.ai-send {
  background: var(--green); color: var(--black); border: none;
  border-radius: 10px; padding: 11px 20px; font-weight: 700;
  font-size: .88rem; cursor: pointer; font-family: 'Barlow', sans-serif;
  transition: background .2s; white-space: nowrap;
}
.ai-send:hover { background: #55e89a; }

/* ══════════════════════════════════════════════════════════
   CTA STRIP
   ══════════════════════════════════════════════════════════ */
.cta-strip {
  background: linear-gradient(135deg, #04181f 0%, var(--dark2) 100%);
  border-top: 1px solid rgba(61,220,132,.2);
  border-bottom: 1px solid rgba(61,220,132,.2);
  padding: 70px clamp(16px, 5vw, 60px);
  text-align: center;
}
.cta-strip h2 { margin-bottom: 10px; }
.cta-strip p  { color: var(--muted); margin-bottom: 32px; font-size: 1rem; }

/* ══════════════════════════════════════════════════════════
   HODNOCENÍ
   ══════════════════════════════════════════════════════════ */
.reviews-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px;
}
.review-card {
  background: var(--dark2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 26px;
}
.review-stars { color: #fbbf24; font-size: .95rem; letter-spacing: 2px; margin-bottom: 12px; }
.review-text  { font-size: .88rem; color: var(--muted); line-height: 1.7; font-style: italic; margin-bottom: 14px; }
.review-author { font-size: .85rem; font-weight: 600; }

/* ══════════════════════════════════════════════════════════
   KONTAKT
   ══════════════════════════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-block {
  background: var(--dark2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px 24px;
}
.contact-block .clabel {
  font-size: .73rem; color: var(--muted); text-transform: uppercase;
  letter-spacing: .1em; font-weight: 600; margin-bottom: 6px;
}
.contact-block .cval {
  font-size: 1.05rem; font-weight: 700; text-decoration: none; color: var(--white);
}
.contact-block .cval:hover { color: var(--green); }
.contact-block .cval.big {
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.55rem; font-weight: 800;
}
.contact-block.highlight {
  background: var(--green-dim); border-color: var(--green-glow);
}
.contact-block.highlight .clabel { color: var(--green); }
.contact-block .hours-list { list-style: none; display: flex; flex-direction: column; gap: 4px; margin-top: 2px; }
.contact-block .hours-list li { font-size: .9rem; color: var(--muted); }
.contact-block .hours-list li strong { color: var(--white); }

/* Formulář */
.contact-form {
  background: var(--dark2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 34px;
}
.contact-form h3 { font-weight: 700; font-size: 1.1rem; margin-bottom: 24px; }
.form-row   { display: flex; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; flex: 1; margin-bottom: 14px; }
.form-group label { font-size: .8rem; color: var(--muted); font-weight: 600; letter-spacing: .04em; }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark3); border: 1px solid var(--border);
  border-radius: 8px; padding: 11px 14px; color: var(--white);
  font-size: .9rem; font-family: 'Barlow', sans-serif; outline: none;
  transition: border-color .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--green); }
.form-group select option  { background: var(--dark3); }
.form-group textarea       { resize: vertical; min-height: 88px; }
.form-submit {
  width: 100%; padding: 14px; background: var(--green); color: var(--black);
  border: none; border-radius: 10px; font-weight: 700; font-size: .98rem;
  font-family: 'Barlow', sans-serif; cursor: pointer; letter-spacing: .04em;
  transition: background .2s; margin-top: 4px;
}
.form-submit:hover { background: #55e89a; }
.form-success {
  display: none; text-align: center; padding: 32px;
  color: var(--green); font-weight: 600; font-size: 1rem;
}
.form-success .success-icon { font-size: 2.5rem; margin-bottom: 12px; }
.form-error { color: #ff6b6b; font-size: .82rem; margin-top: 10px; display: none; }

/* ══════════════════════════════════════════════════════════
   PAGE HERO (inner pages)
   ══════════════════════════════════════════════════════════ */
.page-hero {
  padding: calc(var(--nav-h) + 60px) clamp(16px, 5vw, 60px) 50px;
  background: linear-gradient(160deg, #040d12 0%, #071a28 100%);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0; opacity: .04;
  background-image:
    linear-gradient(var(--white) 1px, transparent 1px),
    linear-gradient(90deg, var(--white) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: clamp(2.5rem, 5vw, 4rem); text-transform: uppercase; }
.page-hero p  { color: var(--muted); font-size: 1.05rem; margin-top: 12px; max-width: 520px; }

/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */
footer {
  background: var(--dark); border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 48px clamp(16px, 5vw, 60px) 36px;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
}
.footer-logo { height: 44px; width: auto; margin-bottom: 14px; }
.footer-brand-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem; font-weight: 800; margin-bottom: 14px;
}
.footer-brand-text span { color: var(--green); }
.footer-tagline { font-size: .88rem; color: var(--muted); line-height: 1.65; }
.footer-col h4 {
  font-size: .78rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--green); margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li { font-size: .88rem; color: var(--muted); }
.footer-col ul li strong { color: var(--white); }
.footer-col a  { color: var(--muted); text-decoration: none; transition: color .2s; }
.footer-col a:hover { color: var(--green); }
.footer-bottom {
  max-width: var(--max-w); margin: 0 auto;
  padding: 18px clamp(16px, 5vw, 60px);
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between;
  font-size: .8rem; color: var(--muted); opacity: .7;
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .pricing-grid    { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .footer-inner    { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 900px) {
  .hero-inner     { grid-template-columns: 1fr; gap: 40px; }
  .hero-right     { order: -1; }
  .steps-grid     { grid-template-columns: 1fr 1fr; }
  .steps-grid::before { display: none; }
  .contact-grid   { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .nav-links      { display: none; }
  .burger         { display: flex; }
  .nav-cta        { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; gap: 0;
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: var(--dark); border-bottom: 1px solid var(--border);
    padding: 12px 24px 20px; z-index: 199;
  }
  .nav-links.open li a {
    padding: 13px 0; border-bottom: 1px solid var(--border);
    display: block; color: var(--white);
  }
  .hero-actions   { flex-direction: column; }
  .stats-grid     { grid-template-columns: 1fr 1fr; }
  .form-row       { flex-direction: column; }
  .steps-grid     { grid-template-columns: 1fr; }
  .steps-grid     { gap: 12px; }
  .footer-inner   { grid-template-columns: 1fr 1fr; gap: 20px; }
  .footer-bottom  { flex-direction: column; gap: 4px; }
}
@media (max-width: 480px) {
  h2 { font-size: 1.7rem; }
  .contact-form { padding: 22px 18px; }
}

/* ══════════════════════════════════════════════════════════
   HERO SLIDER
   ══════════════════════════════════════════════════════════ */
.hero-slider-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--dark2);
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
}
.hero-slider { width: 100%; height: 100%; position: relative; }
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity .7s ease;
  display: flex; align-items: center; justify-content: center;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}

/* Arrows */
.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,.45); border: 1px solid rgba(255,255,255,.15);
  color: var(--white); width: 40px; height: 40px; border-radius: 50%;
  font-size: 1.4rem; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .2s; z-index: 2;
  backdrop-filter: blur(4px);
}
.slider-arrow:hover { background: rgba(61,220,132,.6); transform: translateY(-50%) scale(1.1); }
.slider-prev { left: 12px; }
.slider-next { right: 12px; }

/* Dots */
.slider-dots {
  position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 7px; z-index: 2;
}
.slider-dots button {
  width: 8px; height: 8px; border-radius: 50%; border: none;
  background: rgba(255,255,255,.4); cursor: pointer;
  transition: background .25s, transform .25s; padding: 0;
}
.slider-dots button.active {
  background: var(--green); transform: scale(1.3);
}

/* ══════════════════════════════════════════════════════════
   FOOTER MAPA
   ══════════════════════════════════════════════════════════ */
.footer-map-section {
  border-top: 1px solid var(--border);
}
.footer-map-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 20px clamp(16px,5vw,60px) 0;
}
.footer-map-label {
  font-size: .78rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--green);
  display: flex; align-items: center; gap: 7px;
  margin-bottom: 14px;
}
.footer-map-frame {
  height: 280px; overflow: hidden;
  border-radius: 12px; border: 1px solid var(--border);
  margin-bottom: 0;
}
.footer-map-frame iframe {
  width: 100%; height: 100%; border: none; display: block;
  filter: grayscale(25%);
}

@media (max-width: 600px) {
  .footer-map-frame { height: 200px; }
}

/* ══════════════════════════════════════════════════════════
   ZEMNÍ PRÁCE
   ══════════════════════════════════════════════════════════ */
.zemni-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.zemni-text > p { color: var(--muted); line-height: 1.75; margin-bottom: 28px; font-size: .97rem; }
.zemni-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.zemni-list li {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--dark3); border: 1px solid var(--border);
  border-radius: 10px; padding: 14px 16px;
  transition: border-color .2s;
}
.zemni-list li:hover { border-color: var(--green-glow); }
.zi { font-size: 1.4rem; min-width: 28px; margin-top: 2px; }
.zemni-list li div { display: flex; flex-direction: column; gap: 3px; }
.zemni-list li strong { font-size: .92rem; font-weight: 700; }
.zemni-list li span { font-size: .82rem; color: var(--muted); }
.zemni-img-wrap {
  border-radius: 16px; overflow: hidden;
  aspect-ratio: 4/3; box-shadow: 0 20px 60px rgba(0,0,0,.5);
  border: 1px solid var(--border);
}
.zemni-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

/* ══════════════════════════════════════════════════════════
   GALERIE FOTEK (pro sluzby.php)
   ══════════════════════════════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.gallery-item {
  border-radius: 12px; overflow: hidden;
  aspect-ratio: 4/3; border: 1px solid var(--border);
  transition: transform .25s, box-shadow .25s;
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.5); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; }

@media (max-width: 768px) {
  .zemni-grid { grid-template-columns: 1fr; gap: 32px; }
  .zemni-img-wrap { order: -1; }
}

/* ══════════════════════════════════════════════════════════
   ZEMNÍ PRÁCE
   ══════════════════════════════════════════════════════════ */
.zp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.zp-card {
  background: var(--dark3); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px;
  transition: border-color .25s, transform .25s;
  text-align: center;
}
.zp-card:hover { border-color: var(--green-glow); transform: translateY(-4px); }
.zp-icon { font-size: 2rem; margin-bottom: 14px; }
.zp-card h3 { font-weight: 700; font-size: .98rem; margin-bottom: 8px; color: var(--white); }
.zp-card p  { font-size: .87rem; color: var(--muted); line-height: 1.65; }

/* ══════════════════════════════════════════════════════════
   NAV LOGO — větší pro SVG
   ══════════════════════════════════════════════════════════ */
.nav-logo-img { height: 42px; width: auto; object-fit: contain; }

/* ══════════════════════════════════════════════════════════
   GALERIE
   ══════════════════════════════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.gallery-item {
  position: relative; border-radius: 10px; overflow: hidden;
  aspect-ratio: 4/3; cursor: pointer; background: var(--dark3);
  border: 1px solid var(--border);
  transition: transform .25s, box-shadow .25s;
}
.gallery-item:hover { transform: scale(1.02); box-shadow: 0 12px 36px rgba(0,0,0,.5); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(107,172,0,.0); display: flex;
  align-items: center; justify-content: center;
  font-size: 1.6rem; opacity: 0;
  transition: background .25s, opacity .25s;
}
.gallery-item:hover .gallery-overlay { background: rgba(107,172,0,.25); opacity: 1; }

@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
}

/* ══════════════════════════════════════════════════════════
   WHATSAPP TLAČÍTKO
   ══════════════════════════════════════════════════════════ */
.wa-btn {
  position: fixed; bottom: 28px; right: 28px; z-index: 500;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .5);
  text-decoration: none; transition: transform .2s, box-shadow .2s;
  animation: wa-pulse 2.5s infinite;
}
.wa-btn:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.7); }
.wa-btn svg { width: 32px; height: 32px; fill: #fff; }
.wa-tooltip {
  position: absolute; right: 68px; top: 50%; transform: translateY(-50%);
  background: var(--dark2); border: 1px solid var(--border);
  color: var(--white); font-size: .82rem; font-weight: 600;
  padding: 7px 12px; border-radius: 8px; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity .2s;
}
.wa-tooltip::after {
  content: ''; position: absolute; right: -6px; top: 50%;
  transform: translateY(-50%); border: 6px solid transparent;
  border-right: none; border-left-color: var(--dark2);
}
.wa-btn:hover .wa-tooltip { opacity: 1; }
@keyframes wa-pulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.5); }
  50%      { box-shadow: 0 4px 32px rgba(37,211,102,.85); }
}

/* ══════════════════════════════════════════════════════════
   COOKIES LIŠTA
   ══════════════════════════════════════════════════════════ */
#cookieBar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 600;
  background: var(--dark2); border-top: 1px solid var(--border);
  padding: 16px clamp(16px,5vw,60px);
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
  transform: translateY(100%); transition: transform .4s ease;
}
#cookieBar.visible { transform: translateY(0); }
.cookie-text { font-size: .85rem; color: var(--muted); flex: 1; min-width: 200px; }
.cookie-text a { color: var(--green); }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-accept {
  background: var(--green); color: #fff; border: none;
  padding: 9px 20px; border-radius: 8px; font-weight: 700;
  font-size: .85rem; cursor: pointer; font-family: 'Barlow', sans-serif;
  transition: background .2s;
}
.cookie-accept:hover { background: var(--green2); }
.cookie-decline {
  background: transparent; color: var(--muted); border: 1px solid var(--border);
  padding: 9px 16px; border-radius: 8px; font-size: .85rem;
  cursor: pointer; font-family: 'Barlow', sans-serif; transition: border-color .2s;
}
.cookie-decline:hover { border-color: var(--muted); }

/* ══════════════════════════════════════════════════════════
   KALKULAČKA
   ══════════════════════════════════════════════════════════ */
.calc-wrap {
  background: var(--dark2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px;
  max-width: 680px; margin: 0 auto;
}
.calc-step { margin-bottom: 28px; }
.calc-step label {
  display: block; font-size: .8rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--green); margin-bottom: 12px;
}
.calc-options { display: flex; flex-wrap: wrap; gap: 10px; }
.calc-opt {
  background: var(--dark3); border: 1.5px solid var(--border);
  border-radius: 10px; padding: 12px 18px; cursor: pointer;
  font-size: .9rem; font-weight: 600; transition: .2s;
  font-family: 'Barlow', sans-serif; color: var(--white);
}
.calc-opt:hover { border-color: var(--green); }
.calc-opt.selected { border-color: var(--green); background: var(--green-dim); color: var(--white); }
.calc-result {
  background: var(--dark3); border: 2px solid var(--green);
  border-radius: 12px; padding: 24px 28px;
  display: none; margin-top: 8px;
}
.calc-result.show { display: block; animation: fadeSlide .35s ease; }
.calc-result-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.4rem; font-weight: 800; color: var(--green);
  margin: 6px 0;
}
.calc-result-name { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.calc-result-note { font-size: .85rem; color: var(--muted); margin-bottom: 20px; line-height: 1.6; }

/* ══════════════════════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════════════════════ */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--dark2); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: border-color .2s;
}
.faq-item:has(.faq-q[aria-expanded="true"]) { border-color: var(--green-glow); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  padding: 20px 24px; color: var(--white); font-size: .95rem;
  font-weight: 600; font-family: 'Barlow', sans-serif;
  cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; gap: 16px; transition: color .2s;
}
.faq-q:hover { color: var(--green); }
.faq-icon {
  font-size: 1.4rem; font-weight: 300; color: var(--green);
  flex-shrink: 0; line-height: 1; transition: transform .3s;
}
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.faq-a.open { max-height: 400px; }
.faq-a p {
  padding: 0 24px 20px; color: var(--muted);
  font-size: .9rem; line-height: 1.75; margin: 0;
}

/* ══════════════════════════════════════════════════════════
   TIPY
   ══════════════════════════════════════════════════════════ */
.tipy-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}
.tipy-card {
  background: var(--dark2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 28px;
  transition: border-color .25s, transform .25s;
}
.tipy-card:hover { border-color: var(--green-glow); transform: translateY(-3px); }
.tipy-icon { font-size: 2rem; margin-bottom: 14px; }
.tipy-card h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.25rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .02em; margin-bottom: 10px; line-height: 1.2;
}
.tipy-perex { font-size: .88rem; color: var(--muted); margin-bottom: 16px; line-height: 1.65; }
.tipy-body {
  list-style: none; display: flex; flex-direction: column; gap: 8px;
  padding-top: 16px; border-top: 1px solid var(--border);
}
.tipy-body li {
  font-size: .85rem; color: var(--muted); line-height: 1.6;
  padding-left: 16px; position: relative;
}
.tipy-body li:not([class])::before {
  content: '›'; position: absolute; left: 0; color: var(--green); font-weight: 700;
}

@media (max-width: 700px) {
  .tipy-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════
   GOOGLE RECENZE
   ══════════════════════════════════════════════════════════ */
.reviews-summary {
  display: flex; align-items: center; gap: 20px;
  background: var(--dark2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px 28px;
  display: inline-flex;
}
.reviews-score {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3.5rem; font-weight: 800; color: var(--green); line-height: 1;
}
.reviews-stars-big { color: #fbbf24; font-size: 1.2rem; letter-spacing: 3px; margin-bottom: 4px; }
.reviews-count { font-size: .85rem; color: var(--muted); }

/* Skeleton loading */
.review-card.skeleton {
  min-height: 140px; background: var(--dark2);
  border: 1px solid var(--border); border-radius: var(--radius);
  animation: skeleton-pulse 1.4s ease-in-out infinite;
}
@keyframes skeleton-pulse {
  0%,100% { opacity: 1; }
  50%      { opacity: .4; }
}

/* Foto autora */
.review-author-wrap {
  display: flex; align-items: center; gap: 10px; margin-top: 14px;
}
.review-author-photo {
  width: 32px; height: 32px; border-radius: 50%; object-fit: cover;
  border: 1px solid var(--border);
}
.review-author-photo-placeholder {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--green-dim); border: 1px solid var(--green-glow);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; font-weight: 700; color: var(--green); flex-shrink: 0;
}
.review-author-info { display: flex; flex-direction: column; }
.review-author { font-size: .85rem; font-weight: 600; }
.review-time   { font-size: .75rem; color: var(--muted); }

.reviews-actions { display: flex; gap: 14px; flex-wrap: wrap; }
