:root {
  --black: #0d0d0d;
  --black-2: #161616;
  --green: #5FCC00;
  --green-dark: #3E8E00;
  --blue: #3E8FD6;
  --blue-dark: #2868A8;
  --navy: #16233F;
  --gray-light: #F4F6F5;
  --gray-mid: #8a8f8c;
  --white: #ffffff;
  --radius: 14px;
  /* tmavé plochy s jemným modrým nádechem – firma pracuje i s vodou */
  --ink: #0b0e13;
  --ink-2: #14181f;
  --ink-line: #242a33;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  line-height: 1.15;
  color: var(--black);
}

.text-green { color: var(--green); }
.text-blue { color: var(--blue); }

.container {
  max-width: 1460px;
  margin: 0 auto;
  padding: 0 32px;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.eyebrow {
  display: inline-block;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--green-dark);
  font-size: 13px;
  margin-bottom: 10px;
}
/* na tmavém pozadí je tmavě zelená nečitelná – modrá tam navíc drží vodní linku */
.services .eyebrow,
.gallery .eyebrow { color: var(--blue); }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .5px;
  padding: 14px 26px;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-green {
  background: var(--green);
  color: var(--black);
  border-color: var(--black);
}
.btn-green:hover { background: var(--green-dark); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--green);
}
.btn-outline:hover { background: rgba(95,204,0,.15); }
.btn-black {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn-black:hover { background: #2a2a2a; }
.btn-lg { padding: 16px 32px; font-size: 15px; }
.btn.full { width: 100%; justify-content: center; }

/* TOP BAR */
.topbar {
  background: var(--ink);
  color: #cfd6dd;
  font-size: 13px;
  border-bottom: 1px solid rgba(62,143,214,.09);
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 24px;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar-left { display: flex; gap: 20px; flex-wrap: wrap; }
.topbar-right { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.topbar-right a { font-weight: 600; }
.topbar-right a:hover { color: var(--green); }
.topbar-btn {
  background: var(--green);
  color: var(--black) !important;
  padding: 6px 16px;
  border-radius: 6px;
  font-weight: 700;
}
.topbar-phone {
  color: var(--green);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 14px;
}
.topbar-phone:hover { color: var(--white); }
.hero-phone { font-size: 17px; }

/* HEADER */
.header {
  background: var(--ink);
  border-bottom: 1px solid var(--ink-line);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-img { height: 72px; width: auto; display: block; mix-blend-mode: screen; }
.footer .logo-img { height: 110px; }
.nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.nav a {
  color: #e8e8e8;
  font-weight: 600;
  font-size: 14.5px;
  transition: color .15s;
}
.nav a:hover { color: var(--green); }
.burger {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 26px;
  cursor: pointer;
}

/* HERO */
.hero {
  position: relative;
  background:
    linear-gradient(100deg, rgba(10,13,18,.94) 30%, rgba(10,20,32,.60) 74%, rgba(18,44,72,.30) 100%),
    url('../images/hero.webp') center/cover no-repeat;
  color: var(--white);
  padding: 100px 0 90px;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  right: -10%;
  bottom: -30%;
  width: 55%;
  height: 100%;
  background: radial-gradient(circle, rgba(62,143,214,.18), transparent 70%);
  pointer-events: none;
}
/* jemný modrý přísvit odspodu – dojem vody */
.hero::before {
  content: "";
  position: absolute;
  left: -5%;
  bottom: -55%;
  width: 60%;
  height: 90%;
  background: radial-gradient(circle, rgba(62,143,214,.09), transparent 68%);
  pointer-events: none;
  z-index: 0;
}

.hero-inner { position: relative; }
.hero-inner h1 { max-width: 800px; }
.hero h1 {
  font-size: 46px;
  color: var(--white);
  margin-bottom: 22px;
}
.hero p {
  font-size: 17px;
  color: #d6d6d6;
  margin-bottom: 34px;
  max-width: 560px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* TRUST BAR */
.trust { background: var(--ink); padding: 0 0 60px; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.trust-card {
  background: var(--ink-2);
  border: 1px solid var(--ink-line);
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.trust-head {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 27px;
  line-height: 1.08;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .5px;
}
.trust-head-sub { font-size: 19px; }
.trust-title {
  color: var(--blue);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .5px;
}
.trust-card p { color: #cfcfcf; font-size: 14px; flex-grow: 1; }
.btn-sm { padding: 10px 22px; font-size: 13px; border-color: transparent; }

/* MEDIA (photos) */
.media {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 320px;
}
.media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.media.dark { min-height: 460px; }

/* ABOUT */
.about { padding: 90px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-text h2 { font-size: 34px; margin-bottom: 20px; }
.about-text p { color: #4a4a4a; margin-bottom: 16px; font-size: 15.5px; }
.about-text .btn { margin-top: 12px; }

/* SERVICES */
.services {
  padding: 90px 0;
  background:
    radial-gradient(ellipse at 85% 8%, rgba(62,143,214,.09), transparent 55%),
    var(--ink);
}
.services .section-head h2 { color: var(--white); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 50px; }
.section-head h2 { font-size: 34px; margin-bottom: 12px; }
.section-head p { color: #555; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
/* ŠIROKÁ KARTA – REALIZACE ZAHRAD */
.service-feature {
  grid-column: 1 / -1;
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3.4 / 1;
  border: 1px solid var(--ink-line);
}
.service-feature img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.service-feature:hover img { transform: scale(1.04); }
.sf-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 9px;
  padding: 30px 40px;
  background: linear-gradient(100deg, rgba(8,11,15,.95) 50%, rgba(8,11,15,.74) 70%, rgba(8,11,15,.15) 100%);
}
.sf-eyebrow {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--blue);
}
.service-feature h3 {
  color: var(--white);
  font-size: 25px;
  font-weight: 800;
  text-transform: uppercase;
  font-style: italic;
  line-height: 1.14;
  max-width: 24ch;
  position: relative;
  padding-bottom: 12px;
}
.service-feature h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 56px;
  height: 4px;
  background: var(--green);
  border-radius: 2px;
}
.sf-overlay > p {
  color: #cdd4da;
  font-size: 14px;
  line-height: 1.55;
  max-width: 62ch;
  margin: 0;
}
.sf-body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px 26px;
  max-width: 62ch;
}
.sf-body li {
  position: relative;
  padding-left: 19px;
  font-size: 13px;
  line-height: 1.5;
  color: #e2e7ea;
}
.sf-body li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 800;
}
.sf-cta {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--green);
  margin-top: 4px;
}
.service-feature:hover .sf-cta { color: var(--white); }

.service-card {
  position: relative;
  display: block;
  aspect-ratio: 3 / 2;
  border-radius: 12px;
  overflow: hidden;
  background: var(--black-2);
}
.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.service-card:hover img { transform: scale(1.06); }
.service-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px 24px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,.82) 100%);
}
.service-overlay h3 {
  color: var(--white);
  font-size: 21px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding-bottom: 10px;
  position: relative;
}
.service-overlay h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 44px;
  height: 3px;
  background: var(--green);
}
/* služby, kde se pracuje s vodou, mají modré podtržení */
.service-card.voda .service-overlay h3::after { background: var(--blue); }
.service-overlay p {
  color: #d0d0d0;
  font-size: 13.5px;
  margin-top: 10px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height .3s ease, opacity .3s ease;
}
.service-card:hover .service-overlay p { max-height: 60px; opacity: 1; }

/* MID-PAGE CTA */
.mid-cta {
  background: linear-gradient(100deg, var(--navy) 40%, var(--blue-dark) 100%);
  padding: 56px 0;
}
.mid-cta-inner { text-align: center; }
.mid-cta h3 {
  font-size: 30px;
  color: var(--white);
  margin-bottom: 10px;
}
.mid-cta p { color: #c9d8ea; max-width: 560px; margin: 0 auto 26px; font-size: 15.5px; }
.mid-cta .btn-black { border-color: var(--green); }

/* PROCESS */
.process { background: var(--ink); padding: 90px 0; color: var(--white); position: relative; overflow: hidden; }
.process::before {
  content: "";
  position: absolute;
  left: -10%;
  top: -20%;
  width: 45%;
  height: 80%;
  background: radial-gradient(circle, rgba(62,143,214,.16), transparent 70%);
  pointer-events: none;
}
.process-inner { position: relative; z-index: 1; }
.process-head { text-align: center; max-width: 700px; margin: 0 auto 58px; }
.process-head h2 { color: var(--white); font-size: 34px; margin: 6px 0 16px; }
.process-intro { color: #b8b8b8; font-size: 15.5px; }

.step-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  position: relative;
  margin-bottom: 46px;
}
.step {
  position: relative;
  background: var(--ink-2);
  border: 1px solid var(--ink-line);
  border-radius: 14px;
  padding: 30px 26px 28px;
  text-align: center;
  transition: transform .18s, border-color .18s;
}
.step:hover { transform: translateY(-5px); border-color: var(--green); }
/* spojnice ke kroku vpravo – kotvená na kartu, takže vždy sedí na střed kolečka
   (1px rámeček + 30px odsazení + polovina z 56px kolečka = 59px) */
.step::after {
  content: "";
  position: absolute;
  top: 59px;
  left: 100%;
  width: 26px;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--blue));
  opacity: .45;
}
.step:last-child::after { display: none; }
.step-num {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--green);
  color: var(--black);
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 21px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 7px var(--ink);
}
.step:nth-child(even) .step-num { background: var(--blue); color: var(--white); }
.step h4 {
  font-size: 17px;
  color: var(--white);
  text-transform: uppercase;
  font-style: italic;
  margin-bottom: 10px;
}
.step-body p { color: #aeb4bb; font-size: 14px; line-height: 1.6; }

.process-cta { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* AREA */
.area { padding: 90px 0; }
.area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}
.area-item {
  background: var(--gray-light);
  border: 1px solid #e4e4e4;
  border-left: 4px solid var(--green);
  border-radius: 8px;
  padding: 16px 18px;
  font-weight: 600;
  font-size: 14.5px;
}
.area-item:nth-child(even) { border-left-color: var(--blue); }
.area-note { text-align: center; color: #555; }
.area-note a { color: var(--green-dark); font-weight: 700; }

/* obrysové tlačítko na světlém podkladu (Instagram, Facebook, Napsat zprávu) */
.btn-outline-dark {
  background: var(--white);
  color: var(--black);
  border: 2px solid #d3d9d5;
}
.btn-outline-dark:hover { border-color: var(--black); background: var(--black); color: var(--white); }

/* DOJEDEME I DÁL */
.area-dal {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 40px;
  align-items: center;
  background: var(--gray-light);
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius);
  padding: 34px 38px;
}
.area-dal h3 { font-size: 23px; margin-bottom: 12px; }
.area-dal p { color: #4a4f4c; font-size: 15px; margin-bottom: 10px; }
.area-dal p:last-child { margin-bottom: 0; }
.area-dal-vyzva { font-weight: 600; color: var(--black) !important; }
.area-dal-akce { display: flex; flex-direction: column; gap: 12px; }
.area-dal-akce .btn { justify-content: center; }

/* WHY US */
.why { position: relative; padding: 100px 0; color: var(--white); overflow: hidden; }
.why-bg { position: absolute; inset: 0; z-index: 0; }
.why-bg img { width: 100%; height: 100%; object-fit: cover; }
.why-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse at 78% 18%, rgba(62,143,214,.11), transparent 62%),
    linear-gradient(180deg, rgba(8,10,14,.94), rgba(9,14,22,.92));
}
.why-inner { position: relative; z-index: 2; text-align: center; }
.why h2 { color: var(--white); font-size: 34px; margin: 0 auto 18px; max-width: 560px; }
.why-intro { color: #cfcfcf; max-width: 620px; margin: 0 auto 44px; font-size: 15.5px; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  text-align: left;
}
.why-card {
  background: rgba(22,35,63,.85);
  border: 1px solid rgba(255,255,255,.08);
  border-left: 4px solid var(--green);
  border-radius: 12px;
  padding: 26px 24px;
}
.why-card:nth-child(2) { border-left-color: var(--blue); }
.why-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.why-num { font-family: 'Poppins', sans-serif; font-weight: 900; font-size: 26px; color: var(--green); }
.why-card:nth-child(2) .why-num { color: var(--blue); }
.why-icon {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(95,204,0,.15);
  border-radius: 8px;
  font-size: 17px;
}
.why-card h4 { color: var(--white); font-size: 17px; margin-bottom: 10px; }
.why-card p { color: #c3c9d6; font-size: 14px; }

/* REVIEWS */
.reviews {
  padding: 90px 0;
  background: linear-gradient(180deg, #f1f5f7 0%, var(--gray-light) 55%);
  text-align: center;
}
.review-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  margin: 10px 0 40px;
}
.review-stat { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.review-stat-num { font-family: 'Poppins', sans-serif; font-weight: 900; font-size: 38px; }
.review-stat-label { font-size: 13.5px; font-weight: 600; color: #555; line-height: 1.4; }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  text-align: left;
  margin-bottom: 44px;
}
.testimonial-card {
  background: var(--white);
  border-radius: 14px;
  padding: 26px 24px;
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
  display: flex;
  flex-direction: column;
}
.testimonial-stars { color: #F5B301; letter-spacing: 2px; margin-bottom: 12px; font-size: 15px; }
.testimonial-card p { color: #444; font-size: 14px; font-style: italic; flex-grow: 1; margin-bottom: 18px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--navy); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 14px;
  flex-shrink: 0;
}
.testimonial-author div { display: flex; flex-direction: column; }
.testimonial-author b { font-size: 13.5px; }
.testimonial-author span { font-size: 12px; color: #888; }
.review-cta { display: flex; justify-content: center; }
.google-g {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  color: #4285F4;
  background: var(--white);
  width: 20px; height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

/* ALL SERVICES CHECKLIST */
.all-services { padding: 90px 0; background: linear-gradient(180deg, var(--gray-light) 0%, #eff3f5 100%); }
.check-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1060px;
  margin: 0 auto;
}
.check-col {
  background: var(--white);
  border-radius: var(--radius);
  border-top: 4px solid var(--green);
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
  padding: 34px 36px;
}
.check-col.blue { border-top-color: var(--blue); }
.check-col h4 {
  font-size: 18px;
  margin-bottom: 16px;
}
.check-col h4:not(:first-child) { margin-top: 28px; }
.check-col.blue h4 { color: var(--blue-dark); }
.check-list { display: flex; flex-direction: column; gap: 11px; }
.check-list li {
  position: relative;
  padding-left: 30px;
  font-size: 15px;
  color: #3a3a3a;
}
.check-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(95,204,0,.15);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.check-col.blue .check-list li::before {
  background: rgba(62,143,214,.15);
  color: var(--blue-dark);
}
/* GALLERY */
.gallery {
  padding: 90px 0;
  background:
    radial-gradient(ellipse at 12% 6%, rgba(62,143,214,.08), transparent 55%),
    var(--ink);
}
.gallery .section-head h2 { color: var(--white); }
.gallery .section-head p { color: #b8b8b8; }
.ba-pairs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  margin-bottom: 40px;
}
.ba-pair { margin: 0; }
.ba-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  border-radius: var(--radius);
  overflow: hidden;
}
.ba-half { position: relative; aspect-ratio: 3 / 4; }
.ba-half img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ba-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 12px;
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--white);
  background: rgba(0,0,0,.7);
}
.ba-tag.po { background: var(--green); color: var(--black); }
.ba-pair figcaption {
  text-align: center;
  color: #cfcfcf;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  margin-top: 14px;
}
.gal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gal-item {
  display: block;
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
}
.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s ease;
}
.gal-item:hover img { transform: scale(1.07); }
.videos-title {
  color: var(--white);
  text-align: center;
  font-size: 26px;
  margin: 56px 0 26px;
}
.video-strip {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
}
.video-strip video {
  flex: 0 0 auto;
  height: 430px;
  aspect-ratio: 9 / 16;
  border-radius: 12px;
  background: #000;
  scroll-snap-align: start;
}
.video-strip::-webkit-scrollbar { height: 8px; }
.video-strip::-webkit-scrollbar-track { background: #1a1a1a; border-radius: 4px; }
.video-strip::-webkit-scrollbar-thumb { background: var(--green-dark); border-radius: 4px; }

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,.92);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox[hidden] { display: none !important; }
.lightbox img {
  max-width: 88vw;
  max-height: 90vh;
  border-radius: 8px;
}
.lightbox button {
  position: absolute;
  background: rgba(255,255,255,.1);
  border: none;
  color: var(--white);
  cursor: pointer;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
}
.lightbox button:hover { background: var(--green); color: var(--black); }
.lb-close { top: 20px; right: 24px; }
.lb-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 24px; top: 50%; transform: translateY(-50%); }

/* FAQ */
.faq { padding: 90px 0; }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid #e4e4e4;
  border-left: 3px solid var(--blue);
  border-radius: 10px;
  overflow: hidden;
  transition: border-left-color .15s;
}
.faq-item.open { border-left-color: var(--green); }
.faq-q {
  width: 100%;
  text-align: left;
  background: var(--gray-light);
  border: none;
  padding: 18px 22px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-q span { color: var(--green-dark); font-size: 20px; transition: transform .2s; }
.faq-item.open .faq-q span { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
  padding: 0 22px;
}
.faq-item.open .faq-a { max-height: 200px; padding: 16px 22px 20px; }
.faq-a p { color: #555; font-size: 14.5px; }

/* CTA / CONTACT */
.cta {
  background:
    radial-gradient(ellipse at 15% 0%, rgba(62,143,214,.11), transparent 58%),
    var(--ink);
  color: var(--white);
  padding: 90px 0;
}
.cta-inner { text-align: center; }
.cta h2 { color: var(--white); font-size: 34px; margin-bottom: 12px; }
.cta > p { color: #b8b8b8; margin-bottom: 44px; }
.contact-wrap {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 40px;
  text-align: left;
  background: var(--ink-2);
  border: 1px solid var(--ink-line);
  border-radius: var(--radius);
  padding: 40px;
}
.contact-info { display: flex; flex-direction: column; gap: 12px; justify-content: center; }
.ci-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  background: #0f0f0f;
  border: 1px solid #262626;
  border-radius: 10px;
  transition: border-color .15s, transform .15s;
}
a.ci-row:hover { border-color: var(--green); transform: translateX(4px); }
.ci-icon {
  width: 42px;
  height: 42px;
  border-radius: 9px;
  background: rgba(95,204,0,.14);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 18px;
  flex-shrink: 0;
}
.ci-text { display: flex; flex-direction: column; min-width: 0; }
.ci-text small {
  color: var(--blue);
  font-size: 11px;
  letter-spacing: 1px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}
.ci-text b {
  font-size: 14.5px;
  color: var(--white);
  font-weight: 600;
  overflow-wrap: anywhere;
}
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.contact-form input, .contact-form textarea {
  background: #0f1319;
  border: 1px solid var(--ink-line);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  /* 16px je minimum – pod ním iPhone při psaní sám zvětší stránku */
  font-size: 16px;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #777; }
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid var(--green); }

/* FOOTER */
.footer { background: #080a0e; color: #adb4bb; padding: 60px 0 0; border-top: 3px solid; border-image: linear-gradient(90deg, var(--green), var(--blue)) 1; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #1f1f1f;
}
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h4 { color: var(--white); font-size: 15px; margin-bottom: 6px; }
.footer-col p { font-size: 14px; }
.footer-col a, .footer-col span { font-size: 14px; }
.footer-col a:hover { color: var(--green); }
.footer-bottom { text-align: center; font-size: 13px; padding: 20px 0; color: #666; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-grid, .contact-wrap { grid-template-columns: 1fr; }
  .step-list { grid-template-columns: repeat(2, 1fr); }
  .step::after { display: none; }
  /* na užším displeji zabírá text skoro celou šířku – překryv proto musí být tmavý téměř všude */
  .service-feature { aspect-ratio: 2 / 1; }
  .sf-overlay { padding: 26px 28px; background: linear-gradient(100deg, rgba(8,11,15,.94) 72%, rgba(8,11,15,.84) 92%, rgba(8,11,15,.55) 100%); }
  .service-feature h3 { font-size: 23px; }
  .trust-grid, .services-grid, .area-grid, .why-grid, .testimonial-grid, .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .check-cols, .ba-pairs, .area-dal { grid-template-columns: 1fr; }
  .area-dal { gap: 22px; padding: 26px 24px; }
  .gal-grid { grid-template-columns: repeat(2, 1fr); }
  .video-strip video { height: 360px; }
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--black); flex-direction: column; padding: 20px 24px; gap: 16px; }
  .nav.open { display: flex; }
  .burger { display: block; }
  .hero h1 { font-size: 34px; }
}
@media (max-width: 560px) {
  .trust-grid, .services-grid, .area-grid, .why-grid, .testimonial-grid, .footer-grid { grid-template-columns: 1fr; }
  .topbar-inner { flex-direction: column; align-items: flex-start; padding-left: 16px; padding-right: 16px; }
  .topbar-left, .topbar-right { gap: 8px 14px; }
  .review-stats { gap: 32px; }
  .step-list { grid-template-columns: 1fr; }
  .process-cta .btn { width: 100%; }
  .service-feature { aspect-ratio: auto; }
  .sf-overlay {
    position: static;
    background: var(--ink-2);
    padding: 24px 22px;
  }
  .service-feature img { position: static; height: 210px; }
  .service-feature h3 { font-size: 22px; max-width: none; }
  .sf-body { grid-template-columns: 1fr; }
  .review-cta .btn { white-space: normal; width: 100%; font-size: 14px; line-height: 1.5; padding: 14px 18px; }
  .hero-buttons .btn { width: 100%; text-align: center; }
  .header-inner > .btn { display: none; }
}

/* MOBILE CALL BAR */
.mobile-cta { display: none; }
@media (max-width: 900px) {
  .mobile-cta {
    display: flex;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 800;
    box-shadow: 0 -6px 24px rgba(0,0,0,.3);
  }
  .mobile-cta a {
    flex: 1;
    text-align: center;
    padding: 15px 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 15px;
    letter-spacing: .5px;
    text-transform: uppercase;
  }
  .mobile-cta-call { background: var(--green); color: var(--black); }
  .mobile-cta-quote { background: var(--navy); color: var(--white); }
  body { padding-bottom: 52px; }
}

/* SCROLL REVEAL */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(26px); transition: opacity .65s ease, transform .65s ease; }
  .reveal.in { opacity: 1; transform: none; }
}

/* ---------- HLÁŠKA PO ODESLÁNÍ FORMULÁŘE ---------- */
.form-zprava {
  padding: 14px 18px;
  border-radius: 9px;
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.5;
  border-left: 4px solid;
}
.form-zprava[hidden] { display: none !important; }
.form-zprava.ok {
  background: rgba(95,204,0,.12);
  border-color: var(--green);
  color: #d9f5c0;
}
.form-zprava.chyba {
  background: rgba(214,69,69,.14);
  border-color: #d64545;
  color: #f6cfcf;
}
/* past na roboty – pro člověka neviditelná, ale ne display:none (to roboti poznají) */
.past {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none;
}

/* ---------- VYBAVENÍ ---------- */
.vybaveni { padding: 90px 0; background: var(--white); }
.vybaveni .section-head p { color: #555; }

.znacky { display: grid; grid-template-columns: 1fr 1.6fr; gap: 22px; margin-bottom: 22px; }
.znacka-radek { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }

.znacka {
  background: var(--gray-light);
  border: 1px solid var(--line);
  border-top: 4px solid var(--green);
  border-radius: var(--radius);
  padding: 28px 26px;
}
.znacka-jmeno {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 26px;
  letter-spacing: 1px;
  color: var(--black);
  line-height: 1;
}
.znacka-role {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--green-dark);
  margin: 8px 0 14px;
}
.znacka p { font-size: 14.5px; color: #4a4f4c; line-height: 1.6; }
.znacka p + p { margin-top: 10px; }

/* hlavní značka – tmavá, aby vyčnívala */
.znacka.hlavni {
  background: var(--ink);
  border-color: var(--ink-line);
  border-top-color: var(--zn);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.znacka.hlavni .znacka-jmeno { color: var(--white); font-size: 34px; }
.znacka.hlavni p { color: #c3cad0; }
.znacka.hlavni p b { color: var(--white); }
.znacka.hlavni .znacka-role { color: var(--green); }
.znacka.hlavni .znacka-plus {
  font-size: 13.5px;
  color: #98a3ac;
  border-top: 1px solid var(--ink-line);
  padding-top: 12px;
  margin-top: 14px;
}

/* doprava a odvoz */
.doprava {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: center;
  background: var(--gray-light);
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius);
  padding: 32px 36px;
}
.doprava h3 { font-size: 23px; margin-bottom: 12px; }
.doprava p { color: #4a4f4c; font-size: 15px; }
.doprava-seznam { display: grid; gap: 9px; }
.doprava-seznam li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  font-weight: 600;
}
.doprava-seznam li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue-dark);
  font-weight: 800;
}

@media (max-width: 900px) {
  .znacky, .znacka-radek, .doprava { grid-template-columns: 1fr; }
  .doprava { gap: 20px; padding: 26px 24px; }
}

/* ---------- BARVY ZNAČEK ---------- */
/* Barva se používá jen na horní linku, ikonu a popisek role.
   Název značky zůstává černý, aby byl vždy čitelný. */
.znacka { --zn: var(--green); border-top-color: var(--zn); }
.znacka .znacka-role { color: var(--zn-tmava, var(--zn)); }

.znacka-ikona {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 11px;
  background: var(--zn-svetla, rgba(95,204,0,.14));
  color: var(--zn-tmava, var(--zn));
  margin-bottom: 14px;
}
.znacka-ikona svg { width: 26px; height: 26px; }

/* STIHL – oranžová */
.zn-stihl  { --zn: #FF6600; --zn-tmava: #E05A00; --zn-svetla: rgba(255,102,0,.14); }
/* ETESIA – zelená */
.zn-etesia { --zn: #00953F; --zn-tmava: #007A34; --zn-svetla: rgba(0,149,63,.13); }
/* STIGA – červená */
.zn-stiga  { --zn: #D6001C; --zn-tmava: #B00017; --zn-svetla: rgba(214,0,28,.11); }
/* KÄRCHER – žlutá (na text je moc světlá, proto tmavší odstín pro písmo) */
.zn-karcher { --zn: #FFDD00; --zn-tmava: #6E5D00; --zn-svetla: rgba(255,221,0,.22); }
/* štěpkovače nejsou značka – firemní modrá */
.zn-stepkovac { --zn: var(--blue); --zn-tmava: var(--blue-dark); --zn-svetla: rgba(62,143,214,.13); }

/* tmavá karta STIHL – ikona i role musí zůstat čitelné na černé */
.znacka.hlavni .znacka-ikona {
  background: rgba(255,102,0,.18);
  color: #FF8534;
  width: 52px; height: 52px;
}
.znacka.hlavni .znacka-ikona svg { width: 30px; height: 30px; }
.znacka.hlavni .znacka-role { color: #FF8534; }
