/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:   #080808;
  --dark:    #0f0f0f;
  --dark2:   #181818;
  --dark3:   #282828;
  --accent:  #FFD600;
  --accent2: #D4A800;
  --accent-deep: #A88F00;
  --accent-rgb: 255, 214, 0;
  --white:   #ffffff;
  --gray:    #a0a0a0;
  --gray2:   #e0e0e0;
  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --radius: 10px;
  --transition: 0.3s ease;
  --shadow: 0 4px 32px rgba(0,0,0,0.6);
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--gray2);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.accent { color: var(--accent); }

.section-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-sub {
  color: var(--gray);
  max-width: 600px;
  margin-bottom: 48px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 6px;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  gap: 8px;
}

.btn--primary {
  background: var(--accent);
  color: var(--black);
  border-color: var(--accent);
  font-weight: 800;
}
.btn--primary:hover { background: var(--accent2); border-color: var(--accent2); transform: translateY(-2px); color: var(--black); }

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn--outline:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

.btn--full { width: 100%; }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== HEADER / NAV ===== */
/*
  nav__menu is moved to document.body via JS to escape the header's stacking
  context (header is position:fixed with z-index, which traps fixed children).
  So backdrop-filter can safely live on .header here.
*/
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}

@media (min-width: 769px) {
  .nav-bar .nav__menu {
    margin-left: auto;
    margin-right: 8px;
  }
}

.header.scrolled {
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.6);
}

/* On inner pages, header is always filled */
.header--solid {
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  position: relative;
  z-index: 2002;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav__logo-img { height: 42px; width: auto; object-fit: contain; }
.nav__logo-text {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
}
.nav__logo-text .logo-mr { color: var(--white); }
.nav__logo-text .logo-detail { color: var(--accent); font-style: italic; }

.nav__menu {
  display: flex;
  align-items: center;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__list li {
  margin: 0;
  padding: 0;
}

.nav__link {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gray);
  padding: 8px 14px;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
  position: relative;
}
.nav__link:hover { color: var(--white); }
.nav__link.active { color: var(--white); }
.nav__link.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.nav__link--cta {
  background: var(--accent);
  color: var(--black) !important;
  padding: 8px 20px;
  margin-left: 8px;
  font-weight: 800;
}
.nav__link--cta:hover { background: var(--accent2); color: var(--black) !important; }
.nav__link--cta.active::after { display: none; }

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--dark3);
  border-radius: 8px;
  cursor: pointer;
  flex-shrink: 0;
}
.nav__toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav__toggle.is-open .nav__toggle-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav__toggle.is-open .nav__toggle-bar:nth-child(2) {
  opacity: 0;
}
.nav__toggle.is-open .nav__toggle-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ===== HERO (Domov) ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  background: var(--black);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  /* Transform len v animácii .is-active — pri vypnutí triedy bez skoku späť na základný scale(1) */
  transform: scale(1);
  transition: opacity 2s ease-in-out;
  will-change: opacity, transform;
  z-index: 0;
}

.hero__bg-slide.is-active {
  z-index: 1;
  opacity: 0.36;
  /* Dĺžka ≈ interval slidov v main.js — zoom stihne „dojazd“ pred výmenou snímku */
  animation: heroZoom 6.6s both;
}

@keyframes heroZoom {
  0% {
    transform: scale(1.035);
    animation-timing-function: cubic-bezier(0.33, 0, 0.2, 1);
  }
  48% {
    transform: scale(1.012);
    animation-timing-function: cubic-bezier(0.22, 0.9, 0.35, 1);
  }
  72% {
    transform: scale(1.004);
    animation-timing-function: cubic-bezier(0.12, 0.72, 0.28, 1);
  }
  100% {
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__bg-slide { transition: none; }
  .hero__bg-slide.is-active { animation: none; transform: scale(1); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.88) 0%, rgba(10,10,10,0.45) 60%, rgba(10,10,10,0.7) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding-top: 70px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--accent);
  flex-shrink: 0;
}

.hero__title {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero__sub {
  color: var(--gray);
  font-size: 1.05rem;
  margin-bottom: 44px;
  max-width: 560px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__badge {
  position: absolute;
  bottom: 48px;
  right: 48px;
  z-index: 1;
  width: 110px;
  height: 110px;
  background: rgba(20,20,20,0.85);
  border: 1px solid var(--dark3);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  backdrop-filter: blur(8px);
  gap: 2px;
}
.hero__badge-num {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.hero__badge-text {
  font-family: var(--font-head);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  max-width: 70px;
  text-align: center;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.hero__scroll-arrow {
  display: block;
  width: 22px;
  height: 22px;
  border-right: 2px solid rgba(255, 214, 0, 0.95);
  border-bottom: 2px solid rgba(255, 214, 0, 0.95);
  transform: rotate(45deg);
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(8px); }
}

/* ===== PAGE BANNER (inner pages) ===== */
.page-banner {
  position: relative;
  height: 280px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--black);
  padding-top: 70px;
}
.page-banner__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}
.page-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,1) 0%, rgba(10,10,10,0.4) 100%);
}
.page-banner__content {
  position: relative;
  z-index: 1;
  padding-bottom: 40px;
  width: 100%;
}
.page-banner__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gray);
  margin-bottom: 12px;
}
.page-banner__breadcrumb a { color: var(--gray); transition: color var(--transition); }
.page-banner__breadcrumb a:hover { color: var(--accent); }
.page-banner__breadcrumb span { color: var(--accent); }
.page-banner__sep { color: var(--dark3); }

.page-banner__title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* ===== HOME — FEATURES STRIP ===== */
.features-strip {
  background: var(--dark2);
  border-top: 1px solid var(--dark3);
  border-bottom: 1px solid var(--dark3);
  padding: 22px 0;
}
.features-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 24px;
  flex-wrap: wrap;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray2);
}
.feature-item svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--accent); }
.feature-item span {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ===== ABOUT SECTION ===== */
.about {
  padding: 100px 0;
  background: var(--dark);
}

.about__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about__text p { color: var(--gray); margin-bottom: 16px; }
.about__text strong { color: var(--white); }
.about__text .btn { margin-top: 12px; }

.about__visual {
  position: relative;
}
.about__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--dark2);
}
.about__img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--dark2);
  border: 2px dashed var(--dark3);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 0.85rem;
}
.about__award {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: linear-gradient(160deg, var(--accent2) 0%, var(--accent-deep) 100%);
  color: var(--white);
  padding: 16px 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: var(--shadow);
}
.about__award-num {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
  display: block;
}
.about__award-label {
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about__stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 40px;
}
.stat {
  border-left: 3px solid var(--accent);
  padding-left: 20px;
}
.stat__number {
  display: block;
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 4px;
}
.stat__label { font-size: 0.88rem; color: var(--gray); }

/* Full about page */
.about--full .about__content { grid-template-columns: 1fr; }
.about--full .about__text { max-width: 780px; }

/* ===== SERVICES ===== */
.services {
  padding: 100px 0;
  background: var(--black);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.service-card {
  background: var(--dark2);
  border: 1px solid var(--dark3);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: default;
}
.service-card:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
  box-shadow: 0 8px 32px rgba(230,57,70,0.12);
}

.service-card__icon {
  width: 52px;
  height: 52px;
  background: rgba(230,57,70,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-card__icon svg {
  width: 26px;
  height: 26px;
  color: var(--accent);
}
.service-card__title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.service-card__desc { font-size: 0.88rem; color: var(--gray); line-height: 1.65; }

/* Home — services teaser (only 3 cards + CTA) */
.services--teaser .services__grid { grid-template-columns: repeat(2, 1fr); }
.services__cta {
  text-align: center;
  margin-top: 44px;
}

/* ===== PRICING ===== */
.pricing {
  padding: 100px 0;
  background: var(--dark);
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--dark2);
  border: 1px solid var(--dark3);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  transition: border-color var(--transition);
}
.pricing-card:hover { border-color: rgba(230,57,70,0.4); }
.pricing-card--featured {
  border-color: var(--accent);
  background: #1d1214;
}

.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-card__name {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 12px;
}
.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 28px;
}
.pricing-card__from { font-size: 0.8rem; color: var(--gray); margin-right: 2px; }
.pricing-card__amount {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--white);
  min-width: 40px;
}
.pricing-card__currency {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
}

.pricing-card__items {
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-card__items li {
  font-size: 0.88rem;
  color: var(--gray);
  padding-left: 22px;
  position: relative;
}
.pricing-card__items li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.pricing__note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--gray);
  margin-top: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== GALLERY ===== */
.gallery {
  padding: 100px 0;
  background: var(--black);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 48px;
}

.gallery__item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  background: var(--dark2);
  outline: none;
}
.gallery__item.is-hidden { display: none; }
.gallery__item:focus-visible { ring: 2px solid var(--accent); }

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery__item:hover img { transform: scale(1.07); }

.gallery__overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,214,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery__item:hover .gallery__overlay,
.gallery__item:focus-visible .gallery__overlay { opacity: 1; }
.gallery__overlay span { font-size: 2.2rem; color: var(--black); font-weight: 700; line-height: 1; }

.gallery__item--placeholder {
  cursor: default;
  border: 2px dashed var(--dark3);
}
.gallery__item--placeholder img { display: none; }
.gallery__item--placeholder::after {
  content: 'Fotka bude doplnená';
  font-size: 0.78rem;
  color: var(--gray);
  text-align: center;
  padding: 16px;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery__item--placeholder .gallery__overlay { display: none; }

/* Gallery — home teaser (fewer items) */
.gallery--teaser .gallery__grid { grid-template-columns: repeat(3, 1fr); }

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.96);
  align-items: center;
  justify-content: center;
}
.lightbox.active { display: flex; }

.lightbox__content {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 6px;
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover { background: var(--accent); border-color: var(--accent); }

.lightbox__close { top: 20px; right: 20px; width: 44px; height: 44px; font-size: 1.4rem; }
.lightbox__prev { left: 20px; top: 50%; transform: translateY(-50%); width: 50px; height: 50px; font-size: 1.8rem; }
.lightbox__next { right: 20px; top: 50%; transform: translateY(-50%); width: 50px; height: 50px; font-size: 1.8rem; }

/* ===== CONTACT ===== */
.contact {
  padding: 100px 0;
  background: var(--dark);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  margin-top: 48px;
  margin-bottom: 48px;
}

.contact__info { display: flex; flex-direction: column; gap: 32px; }

.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact__detail svg { width: 22px; height: 22px; color: var(--accent); flex-shrink: 0; margin-top: 3px; }
.contact__detail strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}
.contact__detail p,
.contact__detail a { color: var(--gray); font-size: 0.95rem; }
.contact__detail a:hover { color: var(--accent); }

.contact__social { display: flex; gap: 10px; }
.social-link {
  width: 44px; height: 44px;
  background: var(--dark2);
  border: 1px solid var(--dark3);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.social-link svg { width: 20px; height: 20px; color: var(--gray); }
.social-link:hover { background: var(--accent); border-color: var(--accent); }
.social-link:hover svg { color: var(--white); }

/* FORM */
.contact__form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray2);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--dark2);
  border: 1px solid var(--dark3);
  border-radius: 8px;
  padding: 13px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition);
  resize: vertical;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #555; }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { outline: none; border-color: var(--accent); }

.form-services { border: none; padding: 0; margin: 0; min-width: 0; }
.form-services__legend {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 12px;
  padding: 0;
}
.form-services__hint {
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: #666;
}
.form-services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 16px;
}
.form-check {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--light);
  line-height: 1.4;
  cursor: pointer;
  padding: 10px 12px;
  background: var(--dark2);
  border: 1px solid var(--dark3);
  border-radius: 8px;
  transition: border-color var(--transition), background var(--transition);
  position: relative;
}
.form-check:hover { border-color: rgba(255, 214, 0, 0.35); }
.form-check:hover .form-check__box { border-color: rgba(255, 214, 0, 0.5); }
.form-check:has(.form-check__input:checked) {
  border-color: var(--accent);
  background: rgba(255, 214, 0, 0.06);
}
.form-check__input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.form-check__box {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  border: 2px solid var(--dark3);
  border-radius: 6px;
  transition: background var(--transition), border-color var(--transition);
}
.form-check__icon {
  width: 14px;
  height: 14px;
  display: block;
}
.form-check__icon--service {
  color: #888;
  transition: opacity var(--transition), transform var(--transition);
}
.form-check__icon--check {
  display: none;
  color: var(--black);
}
.form-check__input:checked + .form-check__box {
  background: var(--accent);
  border-color: var(--accent);
}
.form-check__input:checked + .form-check__box .form-check__icon--service {
  display: none;
}
.form-check__input:checked + .form-check__box .form-check__icon--check {
  display: block;
}
.form-check__input:focus-visible + .form-check__box {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.form-check__text { flex: 1; min-width: 0; }
.form-check--full { grid-column: 1 / -1; }

.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form__success {
  color: #4caf50;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  padding: 16px;
  background: rgba(76,175,80,0.08);
  border: 1px solid rgba(76,175,80,0.2);
  border-radius: 8px;
  display: none;
}
.form__success.show { display: block; }

.field-error {
  color: #e05252;
  font-size: 0.78rem;
  margin-top: 2px;
}
.form-group input.error,
.form-group textarea.error {
  border-color: #e05252;
}
.form-server-error {
  color: #e05252;
  font-size: 0.85rem;
  text-align: center;
  padding: 10px 14px;
  background: rgba(224, 82, 82, 0.07);
  border: 1px solid rgba(224, 82, 82, 0.2);
  border-radius: 6px;
}

/* MAP */
.contact__map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--dark3);
}
.contact__map iframe { display: block; filter: grayscale(90%) invert(90%) hue-rotate(180deg); }

/* ===== HOME CTA BAND ===== */
.cta-band {
  padding: 80px 0;
  background: var(--dark2);
  border-top: 1px solid var(--dark3);
  border-bottom: 1px solid var(--dark3);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 600px; height: 2px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
}
.cta-band__title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
}
.cta-band__sub {
  color: var(--gray);
  margin-bottom: 36px;
  font-size: 1rem;
}
.cta-band .btn--outline {
  border-color: var(--accent);
  color: var(--accent);
}
.cta-band .btn--outline:hover { background: var(--accent); color: var(--black); }

/* ===== PRICING — LIST LAYOUT ===== */
.pricing-section { padding: 100px 0; background: var(--dark); }
.pricing-category { margin-bottom: 56px; }
.pricing-category__label {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray);
  text-align: center;
  margin-bottom: 28px;
  position: relative;
}
.pricing-category__label::before,
.pricing-category__label::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 80px;
  height: 1px;
  background: var(--dark3);
}
.pricing-category__label::before { right: calc(50% + 90px); }
.pricing-category__label::after { left: calc(50% + 90px); }

.pricing-row {
  background: var(--dark2);
  border: 1px solid var(--dark3);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 12px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px 24px;
  align-items: start;
  transition: border-color var(--transition), box-shadow var(--transition);
  position: relative;
}
.pricing-row:hover {
  border-color: rgba(255,214,0,0.3);
  box-shadow: 0 4px 24px rgba(255,214,0,0.06);
}
.pricing-row--featured {
  border-color: var(--accent);
  background: #141200;
}
.pricing-row__title-with-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.pricing-row__badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--black);
  font-family: var(--font-head);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  line-height: 1;
  border: 1px solid rgba(0,0,0,0.18);
  box-shadow: 0 1px 0 rgba(255,255,255,0.25) inset;
  /* Lesk v hornom background-vrstve — text nie je gradientom */
  background-image:
    linear-gradient(
      105deg,
      transparent 0%,
      rgba(255, 255, 255, 0) 38%,
      rgba(255, 255, 255, 0.55) 50%,
      rgba(255, 255, 255, 0) 62%,
      transparent 100%
    ),
    linear-gradient(165deg, #9a8200 0%, var(--accent) 45%, #e8d060 100%);
  background-size: 220% 100%, 100% 100%;
  background-position: -120% 0, 0 0;
  background-repeat: no-repeat;
  animation: pricingBadgeBgShine 2.8s linear infinite;
}
@keyframes pricingBadgeBgShine {
  0%   { background-position: -160% 0, 0 0; }
  100% { background-position: 160% 0, 0 0; }
}
.pricing-row__info {}
.pricing-row--featured .pricing-row__title {
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.pricing-row__title {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.pricing-row__subtitle {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
}
.pricing-row__desc {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
  margin: 8px 0 6px;
}
.pricing-row__duration {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.04em;
}
.pricing-row__price {
  text-align: right;
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  padding-top: 4px;
}
.pricing-row__price-old {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray);
  text-decoration: line-through;
}
.pricing-row__price-main {
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.pricing-row__price-prefix {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gray);
  margin-right: 2px;
}

/* Doplnkové služby - simple list */
.addon-list { display: flex; flex-direction: column; gap: 2px; }
.addon-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid var(--dark3);
  transition: background var(--transition);
}
.addon-row:last-child { border-bottom: none; }
.addon-row:hover { background: var(--dark2); border-radius: 6px; }
.addon-row__name {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.addon-row__sub {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray);
}
.addon-row__price {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--accent);
  white-space: nowrap;
}

/* ===== FOOTER ===== */
.footer {
  background: #070707;
  border-top: 1px solid var(--dark3);
  padding-top: 64px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer__brand {}
.footer__logo { height: 38px; margin-bottom: 14px; }
.footer__logo-text {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 14px;
  display: block;
}
.footer__brand p { font-size: 0.88rem; color: var(--gray); line-height: 1.6; max-width: 280px; }

.footer__col-title {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a { font-size: 0.88rem; color: var(--gray); transition: color var(--transition); }
.footer__links a:hover { color: var(--accent); padding-left: 4px; }

.footer__contact p,
.footer__contact a {
  font-size: 0.88rem;
  color: var(--gray);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 10px;
  transition: color var(--transition);
}
.footer__contact a:hover { color: var(--accent); }
.footer__contact svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; }

.footer__social { display: flex; gap: 10px; margin-top: 16px; }
.footer__social a {
  width: 38px; height: 38px;
  background: var(--dark2);
  border: 1px solid var(--dark3);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.footer__social a svg { width: 18px; height: 18px; color: var(--gray); }
.footer__social a:hover { background: var(--accent); border-color: var(--accent); }
.footer__social a:hover svg { color: var(--white); }

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0;
}

.footer__bottom .footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0 1.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom__copy { text-align: left; }

.footer-bottom__center {
  text-align: center;
  justify-self: center;
}

.footer-af-logo {
  height: 75px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  filter: brightness(0) invert(1);
  opacity: 0.88;
}

.footer-af-logo__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.footer-bottom__right {
  text-align: right;
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom__right a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color var(--transition);
}

.footer-bottom__right a:hover { color: var(--white); }

.ml-footer-cookie-link { font-weight: 600; }

/* Mapa — načítanie podľa súhlasu s cookies (Funkcie) */
.contact__map.ml-embed-wrap { position: relative; }

.contact__map.ml-embed-wrap.ml-embed-blocked {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  background: var(--dark2);
  border-radius: var(--radius);
}

.ml-embed-wrap.ml-embed-blocked iframe {
  visibility: hidden;
  position: absolute;
  width: 0;
  height: 0;
  pointer-events: none;
}

.map-embed-blocked-msg {
  margin: 0;
  padding: 2rem 1.25rem;
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--gray);
  max-width: 22rem;
}

/* Cookie lišta */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  padding: 1.2rem 1.1rem max(1.1rem, env(safe-area-inset-bottom, 0px));
  background: linear-gradient(180deg, rgba(12, 12, 12, 0.98) 0%, rgba(7, 7, 7, 0.99) 100%);
  color: rgba(255, 255, 255, 0.92);
  border-top: 1px solid rgba(230, 57, 70, 0.35);
  box-shadow: 0 -18px 60px rgba(0, 0, 0, 0.35);
}

.cookie-banner-inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.95rem;
}

.cookie-banner-title {
  font-family: var(--font-head);
  font-size: clamp(1.15rem, 3.5vw, 1.45rem);
  font-weight: 800;
  line-height: 1.25;
  margin: 0;
  max-width: 40rem;
  color: var(--white);
}

.cookie-banner-lead {
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  max-width: 46rem;
}

.cookie-banner-link {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner-link:hover { color: var(--white); }

.cookie-banner-categories {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem 1rem;
  width: 100%;
  max-width: 560px;
  margin-top: 0.15rem;
}

.cookie-cat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.86);
  user-select: none;
}

.cookie-cat input {
  width: 1.1rem;
  height: 1.1rem;
  accent-color: var(--accent);
  cursor: pointer;
}

.cookie-cat input:disabled { cursor: not-allowed; opacity: 0.9; }

.cookie-cat-label {
  text-align: center;
  line-height: 1.25;
  max-width: 9rem;
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  margin-top: 0.25rem;
}

.btn-cookie {
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 700;
  padding: 0.62rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.btn-cookie:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.btn-cookie-primary {
  background: var(--accent);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.18);
}

.btn-cookie-primary:hover { background: var(--accent2); color: var(--black); }

.btn-cookie-pill { min-width: 9rem; }

.btn-cookie-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-cookie-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.72);
}

.cookie-banner-details-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.05rem;
  padding: 0.35rem 0.55rem;
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}

.cookie-banner-details-toggle:hover { color: rgba(255, 255, 255, 0.92); }

.cookie-banner-details {
  width: 100%;
  max-width: 44rem;
  text-align: left;
  margin-top: 0.2rem;
  padding-top: 0.7rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.cookie-banner-details-text {
  font-size: 0.86rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.74);
  margin: 0 0 0.6rem;
}

.cookie-banner-details-text:last-child { margin-bottom: 0; }

@media (max-width: 560px) {
  .cookie-banner-categories { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.form__note {
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.5;
  margin: 0;
}

/* ===== SERVICE SPLIT LAYOUT (sluzby.html) ===== */
.service-split__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.service-split__grid--reverse { direction: rtl; }
.service-split__grid--reverse > * { direction: ltr; }

.service-split__text p { color: var(--gray); margin-bottom: 16px; line-height: 1.75; }
.service-split__text .section-title { margin-bottom: 16px; }

.service-split__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0;
}
.service-split__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--gray2);
}
.service-split__list li svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 3px;
}

.service-split__img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}
.service-split__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  border-radius: 16px;
  transition: transform 0.6s ease;
}
.service-split__img-wrap:hover .service-split__img { transform: scale(1.04); }

.service-split__badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(10,10,10,0.88);
  border: 1px solid rgba(255,214,0,0.3);
  border-radius: 8px;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(8px);
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--white);
}

/* ===== PRESTIGE CORRECTION SECTION ===== */
.service-prestige {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.service-prestige__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.service-prestige:hover .service-prestige__bg { transform: scale(1); }
.service-prestige__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5,5,5,0.82) 0%, rgba(5,5,5,0.55) 55%, rgba(5,5,5,0.78) 100%);
}
.service-prestige__content {
  position: relative;
  z-index: 1;
  padding: 80px 0;
  max-width: 640px;
}
.service-prestige__badge-tag {
  display: inline-block;
  background: var(--accent);
  color: var(--black);
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.service-prestige__title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.65);
}
.service-prestige__sub {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.service-prestige__desc {
  color: var(--gray2);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 32px;
  text-shadow: 0 1px 12px rgba(0,0,0,0.5);
}
.service-prestige__features {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.service-prestige__feat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.service-prestige__feat strong {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.service-prestige__feat span {
  font-size: 0.78rem;
  color: #c8c8c8;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ===== PROTECTION GRID (špeciálne služby) ===== */
.protection-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.protection-card {
  background: var(--dark2);
  border: 1px solid var(--dark3);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.protection-card:hover {
  border-color: var(--accent);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(255,214,0,0.1);
}
.protection-card__img-wrap {
  height: 180px;
  overflow: hidden;
}
.protection-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.protection-card:hover .protection-card__img-wrap img { transform: scale(1.08); }
.protection-card__body { padding: 20px; }
.protection-card__icon {
  width: 40px;
  height: 40px;
  background: rgba(255,214,0,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.protection-card__icon svg { width: 20px; height: 20px; color: var(--accent); }
.protection-card__title {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.protection-card__desc { font-size: 0.82rem; color: var(--gray); line-height: 1.6; }
.protection-card--featured {
  border-color: rgba(255, 214, 0, 0.45);
  box-shadow: 0 0 0 1px rgba(255, 214, 0, 0.12), 0 16px 48px rgba(255, 214, 0, 0.08);
}
.protection-card--featured:hover {
  border-color: var(--accent);
  box-shadow: 0 12px 40px rgba(255, 214, 0, 0.18);
}
.protection-card__badge {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 10px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--accent);
  border-radius: 4px;
}
.protection-card__cta {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  transition: color var(--transition);
}
.protection-card__cta:hover { color: var(--white); }

/* ===== SHIMMER / GLOSS EFFECTS ===== */

/* Shimmer sweep na section-label */
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.section-label {
  background: linear-gradient(90deg, var(--accent2) 20%, #fff 40%, var(--accent) 60%, var(--accent2) 80%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

/* Gloss sweep na kartách (pseudo-element sweep na hover) */
.service-card,
.protection-card,
.pricing-row,
.value-card,
.award-card {
  position: relative;
  overflow: hidden;
}
.service-card::before,
.protection-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 60%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.05), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s ease;
  pointer-events: none;
  z-index: 1;
}
.service-card:hover::before,
.protection-card:hover::before { left: 130%; }

/* Featured pricing row — zlatý glow */
.pricing-row--featured {
  box-shadow: 0 0 24px rgba(255,214,0,0.12), 0 0 80px rgba(255,214,0,0.04);
}

/* Animated border glow na featured */
@keyframes borderPulse {
  0%, 100% { box-shadow: 0 0 24px rgba(255,214,0,0.12), 0 0 80px rgba(255,214,0,0.04); }
  50%       { box-shadow: 0 0 36px rgba(255,214,0,0.22), 0 0 100px rgba(255,214,0,0.08); }
}
.pricing-row--featured { animation: borderPulse 3s ease-in-out infinite; }

/* Award card golden glow */
.award-card[style*="border-color:var(--accent)"] {
  box-shadow: 0 0 30px rgba(255,214,0,0.15);
}

/* Tlačidlo ripple efekt (JS pridáva .ripple element) */
.btn { position: relative; overflow: hidden; }
.btn .ripple-effect {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  transform: scale(0);
  animation: rippleAnim 0.55s linear;
  pointer-events: none;
}
@keyframes rippleAnim {
  to { transform: scale(4); opacity: 0; }
}

/* Gloss line efekt na page-banner (subtle shine) */
.page-banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,214,0,0.5), transparent);
  z-index: 2;
}

/* Hero title shimmer */
.hero__title .accent {
  background: linear-gradient(90deg, var(--accent2) 0%, #fff 40%, var(--accent) 60%, var(--accent2) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

/* CTA band top border glow animation */
@keyframes ctaGlow {
  0%, 100% { opacity: 0.6; }
  50%       { opacity: 1; }
}
.cta-band::before { animation: ctaGlow 2.5s ease-in-out infinite; }

/* Service card icon bg */
.service-card__icon {
  background: rgba(255,214,0,0.08);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .pricing__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .about__content { gap: 48px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .protection-grid { grid-template-columns: repeat(2, 1fr); }
  .service-split__grid { gap: 48px; }
}

/* Mobile nav injected elements — hidden on desktop */
.nav__mobile-hdr { display: none; }
.nav__mobile-close { display: none; }
.nav__mobile-footer { display: none; }

@media (max-width: 768px) {
  body.nav-open {
    overflow: hidden;
  }

  .header {
    z-index: 2001;
  }

  /* When nav is open: fade out the header bar (logo+hamburger hidden — overlay has its own) */
  .header--nav-open .nav-bar {
    opacity: 0;
    pointer-events: none;
  }

  .nav-bar {
    transition: opacity 0.2s ease;
  }

  .nav__toggle {
    display: flex;
    border: none;
    border-radius: 8px;
    width: 40px;
    height: 40px;
    padding: 8px;
    gap: 5px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
  }

  .nav__toggle-bar {
    width: 22px;
  }

  /* Full-screen slide-in overlay — z-index above header (2001) */
  .nav__menu {
    position: fixed;
    inset: 0;
    z-index: 2100;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 0;
    background: #0c0c0c;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(100%);
    transition: opacity 0.28s ease, visibility 0.28s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav__menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }

  /* ── Mobile nav internal header (logo + X button) ── */
  .nav__mobile-hdr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    padding: 0 20px;
    border-bottom: 1px solid rgba(255, 214, 0, 0.14);
    flex-shrink: 0;
  }

  .nav__mobile-hdr .nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .nav__mobile-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    cursor: pointer;
    color: var(--white);
    flex-shrink: 0;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  }
  .nav__mobile-close:hover {
    background: rgba(255, 214, 0, 0.1);
    border-color: rgba(255, 214, 0, 0.5);
    color: var(--accent);
  }

  /* ── Nav links list ── */
  .nav__list {
    flex: 1;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: none;
    gap: 0;
    padding: 8px 20px 32px;
    overflow-y: auto;
  }

  .nav__list li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav__list li:last-child {
    border-bottom: none;
    margin-top: auto;
    padding-top: 24px;
  }

  .nav__link {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 16px 8px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-align: left;
    color: rgba(255, 255, 255, 0.6);
    background: none;
    border: none;
    border-radius: 0;
    transition: color 0.2s ease, padding-left 0.2s ease;
  }

  .nav__link:hover {
    color: var(--white);
    padding-left: 14px;
    background: none;
  }

  .nav__link.active {
    color: var(--accent);
    background: none;
  }

  .nav__link.active::after {
    display: none;
  }

  .nav__link--cta {
    display: block;
    margin-left: 0;
    margin-top: 0;
    padding: 15px 24px;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: center;
    color: var(--black) !important;
    background: var(--accent);
    border: none;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(var(--accent-rgb), 0.3);
    transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  }

  .nav__link--cta:hover {
    background: var(--accent2);
    color: var(--black) !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(var(--accent-rgb), 0.4);
    padding-left: 24px;
  }

  .nav__link--cta.active {
    color: var(--black) !important;
  }

  .nav__link--cta.active::after {
    display: none;
  }

  /* ── Mobile nav footer (phone + social) ── */
  .nav__mobile-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    gap: 16px;
    flex-shrink: 0;
  }

  .nav__mobile-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-head);
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.03em;
    transition: color 0.2s ease;
  }
  .nav__mobile-phone:hover { color: var(--accent); }

  .nav__mobile-social {
    display: flex;
    gap: 14px;
  }
  .nav__mobile-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.5);
    transition: background 0.2s ease, color 0.2s ease;
  }
  .nav__mobile-social a:hover {
    background: rgba(255,214,0,0.12);
    color: var(--accent);
  }

  .about__content { grid-template-columns: 1fr; }
  .about__stats { grid-template-columns: repeat(3, 1fr); }

  .services__grid { grid-template-columns: 1fr; }
  .services--teaser .services__grid { grid-template-columns: 1fr; }
  .pricing__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .gallery--teaser .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 32px;
  }

  .contact__grid { grid-template-columns: 1fr; gap: 40px; }
  .form__row { grid-template-columns: 1fr; }
  .form-services__grid { grid-template-columns: 1fr; }
  .service-split__grid { grid-template-columns: 1fr; gap: 32px; }
  .service-split__grid--reverse { direction: ltr; }
  .protection-grid { grid-template-columns: 1fr 1fr; }
  .service-prestige__features { gap: 20px; }

  .footer__inner { grid-template-columns: 1fr; gap: 36px; }
  .footer__bottom .footer-bottom {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-bottom__copy { text-align: center; }
  .footer-bottom__right {
    justify-content: center;
    text-align: center;
  }
  .footer-af-logo { height: 65px; }

  .hero__badge { display: none; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; max-width: 340px; }

  .features-strip__inner { flex-direction: column; gap: 12px; }
}

@media (max-width: 480px) {
  .gallery__grid { grid-template-columns: 1fr; }
  .gallery--teaser .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .about__stats { grid-template-columns: 1fr; }
  .pricing__grid { grid-template-columns: 1fr; }
  .lightbox__prev { left: 8px; }
  .lightbox__next { right: 8px; }
  .page-banner { height: 220px; }
  .protection-grid { grid-template-columns: 1fr; }
  .service-prestige__features { flex-direction: column; gap: 16px; }
}
