/**
 * VARIANTA L (Betón + zelená) – odtahovkaba.sk
 * Základ tvojho pôvodného CSS, len s novou identitou + pár doladení:
 * - bez červených gradientov (CTA je čistá zelená)
 * - header nie je úplne čierny (grafit)
 */

:root {
  /* Pozadia */
  --color-bg: #ededed;        /* pozadie stránky */
  --color-bg-dark: #242424;   /* tmavé sekcie */
  --color-bg-light: #ffffff;  /* karty */

  /* Identita */
  --color-accent: #22c55e;    /* CTA/akcie */
  --color-primary: #3a3a3a;   /* header/footer podklad */
--color-link: #15C13D;          /* TMAVŠIA zelená pre textové odkazy */
  --color-link-hover: #16A534;    /* hover */

  /* Texty */
  --color-text: #111111;
  --color-text-light: #ffffff;

  /* Efekty */
  --shadow-soft: 0 10px 25px rgba(0, 0, 0, 0.22);
  --radius-lg: 10px;
  --radius-xl: 16px;
}

/* ====== ZÁKLAD ====== */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

a{
  color: var(--color-link);
  text-decoration: underline;
  text-underline-offset: 3px;
}

a:hover { text-decoration: underline; color: var(--color-link-hover); }

h2 { font-weight: 700; }

/* ====== LAYOUT ====== */
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ====== HEADER ====== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(26, 26, 26, 0.96);

  border-bottom: 2px solid rgba(255,255,255,0.10);

}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 0;
  gap: 16px;
}

.header__logo img {
  max-height: 50px;
  width: auto;
  display: block;
  margin-left: -5px;
}

.header__phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  min-width: 140px;
}

.header__phone a {
  text-decoration: none;
}

.header__phone-main {
  color: var(--color-accent);
  font-weight: 800;
  font-size: 1rem;
}

.header__phone-sub {
  color: rgba(255,255,255,0.75);
  font-size: 0.75rem;
}

/* Navigácia */
.nav { margin-left: auto; }

.nav > ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  padding: 0;
}

.nav a,
.nav__summary {
  display: inline-flex;
  align-items: center;
  color: #f5f5f5;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  line-height: 1;
}

.nav a:hover,
.nav__summary:hover {
  color: var(--color-accent);
}

.nav__item--has-dropdown {
  position: relative;
}

.nav__details {
  position: relative;
}

.nav > ul > li,
.nav__details {
  display: flex;
  align-items: center;
}

.nav__summary {
  gap: 7px;
  cursor: pointer;
  list-style: none;
}

.nav__label--short {
  display: none;
}

.nav__summary::-webkit-details-marker {
  display: none;
}

.nav__summary::after {
  content: "\f107";
  font-family: "FontAwesome";
  font-size: 0.85rem;
  line-height: 1;
  transition: transform 0.18s ease;
}

.nav__details[open] .nav__summary::after {
  transform: rotate(180deg);
}

@media (hover: hover) and (pointer: fine) {
  .nav__details:hover .nav__summary::after,
  .nav__details:focus-within .nav__summary::after {
    transform: rotate(180deg);
  }
}

.nav__dropdown {
  list-style: none;
  display: none;
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  min-width: 250px;
  margin: 0;
  padding: 8px;
  background: #151515;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  box-shadow: 0 16px 32px rgba(0,0,0,0.32);
  z-index: 80;
}

.nav__details[open] .nav__dropdown {
  display: grid;
  gap: 2px;
}

@media (hover: hover) and (pointer: fine) {
  .nav__details::after {
    content: "";
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 14px;
  }

  .nav__details[open]::after,
  .nav__details:hover::after,
  .nav__details:focus-within::after {
    display: block;
  }

  .nav__details:hover .nav__dropdown,
  .nav__details:focus-within .nav__dropdown {
    display: grid;
    gap: 2px;
  }
}

.nav__dropdown a {
  display: flex;
  align-items: center;
  gap: 9px;
  width: 100%;
  padding: 10px 12px;
  border-radius: 6px;
  color: #f5f5f5;
  font-size: 0.86rem;
  letter-spacing: 0;
  line-height: 1.3;
  text-transform: none;
  white-space: nowrap;
}

.nav__dropdown a:hover {
  background: rgba(34,197,94,0.12);
  color: var(--color-accent);
}

.flag {
  display: inline-block;
  width: 22px;
  height: 15px;
  flex: 0 0 22px;
  border-radius: 2px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.20), 0 1px 2px rgba(0,0,0,0.25);
}

.flag--hr { background-image: url("/img/flags/hr.svg"); }
.flag--de { background-image: url("/img/flags/de.svg"); }
.flag--at { background-image: url("/img/flags/at.svg"); }
.flag--cz { background-image: url("/img/flags/cz.svg"); }
.flag--it { background-image: url("/img/flags/it.svg"); }
.flag--nl { background-image: url("/img/flags/nl.svg"); }
.flag--fr { background-image: url("/img/flags/fr.svg"); }

.flag-group,
.flag-pair {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.flag-group .flag,
.flag-pair .flag {
  width: 18px;
  height: 12px;
  flex-basis: 18px;
}

.flag-group .flag + .flag,
.flag-pair .flag + .flag {
  margin-left: -7px;
}

/* Mobilné menu (ponechané ako v pôvodnom štýle) */
.nav-toggle { display: none; }
.nav-toggle-label { display: none; cursor: pointer; }

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  display: block;
  width: 22px;
  height: 2px;
  background: #ffffff;
  border-radius: 999px;
  position: relative;
  transition: 0.2s ease;
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-label span::before { top: -6px; }
.nav-toggle-label span::after { top: 6px; }

.nav-toggle:checked + .nav-toggle-label span { background: transparent; }
.nav-toggle:checked + .nav-toggle-label span::before { top: 0; transform: rotate(45deg); }
.nav-toggle:checked + .nav-toggle-label span::after { top: 0; transform: rotate(-45deg); }

/* ====== HERO ====== */
.hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  background: #000;
  color: var(--color-text-light);
  overflow: hidden;
}

/* Obrázok pozadia – nechaj si svoje img/hero-bg.jpg a img/bg-mobile.jpg */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/img/hero-bg.jpg");
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  transform: scale(1.02);
  z-index: 0;
}

.hero__overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.15);
  z-index: 1;
}

.hero__bg {
  position: relative;
  z-index: 2; 
}

/* toto je ten trik */
.hero__bg::before {
  content: "";
  position: absolute;
  inset: -20px -40px; /* ⬅️ ROZŠÍRENIE DO ŠÍRKY */
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(2px);
  border-radius: 16px;
  z-index: -1;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 80px 16px 60px;
}

.hero__text {
  padding: 36px 0px;
  border-radius: 12px;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(2rem, 4vw, 3.7rem);
  margin: 0 0 18px;
  line-height: 1.04;
  text-transform: uppercase;
  font-weight: 700;
}

.hero p {
  margin: 0 0 24px;
  font-size: 1rem;
  color: #f3f3f3;
}

/* HERO CTA: 2 boxy vedľa seba */
.hero__cta{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0 10px;
  max-width: 600px;
  justify-items: start;
}

/* základ phone-box (tvoje pôvodné, len upratané) */
.hero__phone-box{
  border-radius: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.14);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
  text-align: left;
text-decoration: none !important;
  cursor: pointer;
    max-width: 280px;   /* môžeš doladiť 260–300 */
  width: 100%;
  transition: background-color 0.2s ease, filter 0.2s ease;
}

.hero__phone-box:focus{
  outline: 2px solid rgba(255,255,255,0.35);
  outline-offset: 2px;
}

.hero__phone-box--call:focus{
  outline: 2px solid rgba(0,0,0,0.35);
}

/* titulok v boxe */
.hero__phone-box > span{
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  line-height: 1;
}

/* primárny (call) box */
.hero__phone-box--call{
  background: var(--color-accent);
}

.hero__phone-box--call > span{
  color: rgba(0,0,0,0.65);
}

.hero__phone-box--call .hero__phone-link{
  color: #0b0f0c;
  font-weight: 700;
    font-size: 1.05rem;

  text-decoration: none !important;
}

/* sekundárny (msg) box */
.hero__phone-box--msg{
  background: rgba(36,36,36,0.80);
}

.hero__phone-box--msg > span{
  color: rgba(255,255,255,0.70);
}

.hero__phone-box--msg .hero__whatsapp{
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none !important;
}

/* ikony – nech sú konzistentné */
.hero__phone-link .fa-phone{
  color: inherit;
  font-size: 16px;
}

.hero__whatsapp .fa-whatsapp{
  color: inherit; /* nech je biela v MSG boxe */
  font-size: 18px;
}

/* hover */
.hero__phone-box:hover{
  transform: translateY(-1px);
filter: brightness(1.06);
}

/* mobil */
@media (max-width: 520px){
  .hero__cta{
    grid-template-columns: 1fr;
  }
}

.hero__info {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero__info span {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,0.42);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.86);
  font-size: 0.82rem;
  line-height: 1.2;
}

/* ====== TLAČIDLÁ ====== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-accent);
  color: #0b0f0c;
  box-shadow: var(--shadow-soft);
}

.btn--primary:hover {
  filter: brightness(1.05);
  text-decoration: none;
}

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

/* ====== SEKCIE, KARTY ====== */
.section { padding: 70px 0; }

.section--dark {
  background: var(--color-bg-dark);
  color: var(--color-text-light);
}

.section--light {
  background: var(--color-bg-light);
  color: var(--color-text);
}

.section h2 {
  margin: 0 0 16px;
  font-size: 1.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.section h2,
.footer__gallery-section h2 {
  position: relative;
  padding-bottom: 12px;
}

.section h2::after,
.footer__gallery-section h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100px;
  height: 3px;
  background: var(--color-accent);
  border-radius: 2px;
}

.section__intro {
  margin: 0 0 32px;
  font-size: 0.95rem;
  color: #444444;
}

.section__intro--light { color: rgba(255,255,255,0.78); }

.section__inner {
  display: grid;
  gap: 32px;
  align-items: flex-start;
}

.section__inner--two-cols {
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.card {
  border-radius: var(--radius-lg);
  padding: 18px 18px 20px;
  position: relative;
  overflow: hidden;
}

.card--dark {
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: var(--shadow-soft);
}

/* zelený pásik */
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--color-accent);
  opacity: 0.95;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-accent); 
}

.card p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.86);
}

.section--light .card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: var(--shadow-soft);
}

.section--light .card p { color: #374151; }

/* ====== ODŤAH ZO ZAHRANIČIA ====== */
.foreign-compact {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.10);
}

.foreign-compact__intro {
  margin-bottom: 32px;
}

.foreign-compact__intro h2 {
  margin: 0 0 16px;
}

.foreign-compact__intro p {
  max-width: 620px;
  margin: 0;
  color: rgba(255,255,255,0.76);
  font-size: 0.95rem;
  line-height: 1.55;
}

.foreign-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.foreign-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-height: 86px;
  padding: 10px 11px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 8px;
  background: #1a1a1a;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(0,0,0,0.18);
  transition: border-color 0.18s ease, background-color 0.18s ease, transform 0.18s ease;
}

.foreign-card--priority {
  background: rgba(34,197,94,0.10);
  border-color: rgba(34,197,94,0.36);
}

.foreign-card:hover {
  background: rgba(34,197,94,0.14);
  border-color: rgba(34,197,94,0.48);
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-1px);
}

.foreign-card span:last-child {
  min-width: 0;
}

.foreign-card strong {
  display: block;
  color: #ffffff;
  font-size: 0.92rem;
  line-height: 1.12;
}

.foreign-card small {
  display: block;
  margin-top: 4px;
  color: rgba(255,255,255,0.68);
  font-size: 0.73rem;
  line-height: 1.25;
}

.cards--why .card--icon::after {
  content: "✓";
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 1.2rem;
  color: var(--color-accent);
}

/* ====== CENNÍK ====== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.pricing-item {
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border-top: 4px solid var(--color-accent);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  padding-bottom: 0;
  text-align: center;
}

.pricing-item h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  color: #111111;
  font-weight: 700;
}

.pricing-desc {
  margin: 4px 0 12px;
  text-align: center;
  font-size: 0.85rem;
  color: #4b5563;
  line-height: 1.4;
}

/* CTA pás s cenou - gradient */
.price-bar {
  margin-top: 18px;
  margin-left: -18px;
  margin-right: -18px;
  width: calc(100% + 36px);
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  padding: 14px 10px;
  background: linear-gradient(
    135deg,
    var(--color-accent),
    #16a34a
  );
  color: #0b0f0c;
  font-weight: 700;
  letter-spacing: 0.03em;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  position: relative;
}

.price-bar__from { font-size: 0.75rem; opacity: 0.95; }
.price-bar__value { font-size: 1.35rem; line-height: 1; }
.price-bar__unit { font-size: 0.9rem; opacity: 0.95; }

/* ====== KONTAKT ====== */
.section__inner--contact { align-items: stretch; }

.contact-block--light p { color: #111111; }

.contact-note { margin-top: 10px; }
.contact-note--dark { color: #333333; }

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 6px 0;
}

.contact-row i {
  width: 22px;
  min-width: 22px;
  text-align: center;
  line-height: 1.4;
  opacity: 0.9;
}

.contact-row strong { white-space: nowrap; }

.contact-row .fa-instagram { color: #e1306c; }
.contact-row .fa-facebook-square { color: #1877f2; }

.contact-row a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ====== FOOTER ====== */
.footer {
  background: var(--color-primary);
  color: rgba(255,255,255,0.78);
  padding: 18px 0;
  font-size: 0.8rem;
  border-top: 1px solid rgba(255,255,255,0.10);
}

.footer__inner { text-align: center; }

.footer__inner--landing {
  display: grid;
  gap: 10px;
  justify-items: center;
}

.footer__social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.footer__social a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.88);
  font-weight: 700;
  text-decoration: none;
}

.footer__social a:hover {
  border-color: rgba(34,197,94,0.46);
  background: rgba(34,197,94,0.10);
  color: #ffffff;
  text-decoration: none;
}

.footer__social .fa-facebook-square { color: #1877f2; }
.footer__social .fa-instagram { color: #e1306c; }

/* ====== RESPONSIVE ====== */
@media (max-width: 900px) {
  .header__inner { justify-content: space-between; }
  .foreign-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 800px) {
  .hero::before {
    background-image: url("/img/bg-mobile.jpg");
    background-position: center top;
    background-size: 100% auto;
  }

  .hero__text {
    padding: 16px 0 18px;
    backdrop-filter: none;
    background: rgba(0, 0, 0, 0.15);
  }


  .hero__content { padding: 18px 16px 22px; }

  .hero h1 {
    font-size: clamp(1.5rem, 7.4vw, 2.05rem);
    margin-bottom: 8px;
  }

  .hero h3 {
    margin: 0 0 8px;
    font-size: 1rem;
  }

  .hero p {
    margin-bottom: 14px;
    font-size: 0.92rem;
    line-height: 1.45;
  }

  .hero__cta {
    margin-top: 10px;
  }


  .footer__gallery{
    grid-template-columns: 1fr;
  }
  .header {

    border-bottom: 1px solid var(--color-accent);
  }

.hero__bg::before {
  content: "";
  position: absolute;
  inset: -20px -40px; /* ⬅️ ROZŠÍRENIE DO ŠÍRKY */
  background: rgba(0, 0, 0, 0.0);
  backdrop-filter: blur(0px);
  border-radius: 16px;
  z-index: -1;
}
}



@media (max-width: 600px) {
  .header__inner { justify-content: center; }
  .header__logo { display: none; }

  .nav-toggle,
  .nav-toggle-label { display: none !important; }

  .nav {
    margin: 0 auto !important;
    width: 100%;
    display: flex;
    justify-content: center;
    position: static !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
  }

  .nav > ul {
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 12px;
    padding: 6px 0;
    margin: 0 auto;
  }

  .nav a,
  .nav__summary {
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    white-space: nowrap;
    padding: 6px 4px;
    text-align: center;
  }

  .nav__label--full {
    display: none;
  }

  .nav__label--short {
    display: inline;
  }

  .nav__dropdown {
    top: calc(100% + 9px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 230px;
  }

  .nav__dropdown a {
    justify-content: flex-start;
    text-align: left;
    padding: 9px 10px;
    font-size: 0.82rem;
    letter-spacing: 0;
  }

  .header__phone { display: none !important; }

  .section {
    padding: 30px 0;
  }

  .section h2 {
    margin-bottom: 10px;
    padding-bottom: 9px;
    font-size: 1.42rem;
  }

  .section__intro {
    margin-bottom: 18px;
  }

  .section__inner {
    gap: 20px;
  }

  .section__inner--two-cols { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }

  .card {
    padding: 14px 14px 16px;
  }

  .foreign-compact {
    margin-top: 14px;
    padding-top: 10px;
  }

  .foreign-compact__intro {
    display: block;
    margin-bottom: 18px;
  }

  .foreign-compact__intro h2 {
    margin-bottom: 10px;
  }

  .foreign-compact__intro p {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .foreign-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .foreign-card {
    min-height: 90px;
    padding: 8px;
    gap: 8px;
  }

  .foreign-card .flag {
    width: 20px;
    height: 13px;
    flex-basis: 20px;
  }

  .foreign-card strong {
    font-size: 0.84rem;
  }

  .foreign-card small { font-size: 0.68rem; }

  .pricing-grid { grid-template-columns: 1fr; }
}

@media (max-width: 360px) {
  .nav > ul { justify-content: flex-start; gap: 8px; padding: 6px 10px; }
  .nav a,
  .nav__summary {
    font-size: 0.68rem;
    letter-spacing: 0.05em;
    padding: 6px 2px;
  }

  .foreign-grid { grid-template-columns: 1fr; }
  .foreign-card { min-height: 0; }
}

/* ===== HERO – Ako to funguje (minimal) ===== */
.hero-steps-simple{
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 28px;
  margin: 26px 0 18px;
  text-align: center;
}

.hero-step{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-step__num{
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--color-accent); /* zelený kruh */
  color: #0b0f0c;                  /* čierne číslo */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px;
}


.hero-step__text strong{
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.hero-step__text span{
  font-size: 0.78rem;
  line-height: 1.35;
  color: rgba(255,255,255,0.78);
  max-width: 220px;
}

/* Tablet */
@media (max-width: 900px){
  .hero-steps-simple{
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 22px;
  }
}

/* Mobil */
@media (max-width: 520px){
  .hero-steps-simple{
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 18px;
  }

  .hero-step__num{
    font-size: 2.8rem;
  }
}

/* Univerzálny H2 štýl aj mimo .section */
.h2-styled{
  margin: 0 0 16px;
  font-size: 1.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  position: relative;
  padding-bottom: 12px;
}

.h2-styled::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100px;
  height: 3px;
  background: var(--color-accent);
  border-radius: 2px;
}


.hero .h2-styled{
  margin-top: 28px;
}

/* ===== Prečo si vybrať nás – zoznam (bez boxov) ===== */
.why-list{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 26px;
  margin-top: 18px;
}

.why-list p{
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.98rem;
  line-height: 1.45;
  color: rgba(255,255,255,0.88); /* keď je sekcia tmavá */
}

/* ikony do zeleného kruhu */
.why-list i.fa{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--color-accent);
  color: #0b0f0c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 34px;
  font-size: 16px;
  margin-top: 2px;
}

/* aby &nbsp; nerobil dvojité odsadenie (nechaj, ale opticky zjemníme) */
.why-list p{ padding-right: 6px; }

/* mobil */
@media (max-width: 800px){
  .why-list{
    grid-template-columns: 1fr;
    gap: 12px;
  }
}


/* =========================================================
   FAQ – V ROVNAKEJ SEKCIi
========================================================= */

/* odsadenie medzi Prečo my a FAQ nadpisom */
.section .why-list + h2{
  margin-top: 48px;
}

/* FAQ kontajner – užší pre lepšiu čitateľnosť */
.faq{
  max-width: 860px;
  margin-bottom: 12px;
}

/* jednotlivá otázka */
.faq__item{
  border-bottom: 1px solid rgba(255,255,255,0.14);
  padding: 10px 0;
}

/* otázka */
.faq__q{
  list-style: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  color: #ffffff;
}

/* odstránenie default šípky */
.faq__q::-webkit-details-marker{
  display: none;
}

/* plus / mínus */
.faq__q::after{
  content: "+";
  font-weight: 900;
  color: var(--color-accent);
  font-size: 1.2rem;
  line-height: 1;
  flex: 0 0 auto;
}

.faq__item[open] .faq__q::after{
  content: "–";
}

/* odpoveď */
.faq__a{
  padding: 0 0 12px 0;
  color: rgba(255,255,255,0.82);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* hover – len jemný */
.faq__q:hover{
  color: #ffffff;
}

/* ====== LANDING PAGES ====== */
.landing-page {
  background: #ffffff;
}

.landing-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
  background: #0b0b0b;
}

.landing-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/img/hero-bg.jpg");
  background-size: cover;
  background-position: right center;
  transform: scale(1.02);
  z-index: 0;
}

.landing-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.82), rgba(0,0,0,0.55) 52%, rgba(0,0,0,0.22));
  z-index: 1;
}

.landing-hero__content {
  position: relative;
  z-index: 2;
  max-width: 1150px;
  padding-top: 78px;
  padding-bottom: 64px;
}

.landing-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 14px;
  color: var(--color-accent);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.landing-hero h1 {
  max-width: 820px;
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.04;
  text-transform: uppercase;
}

.landing-hero__lead {
  max-width: 780px;
  margin: 0 0 24px;
  color: rgba(255,255,255,0.90);
  font-size: 1.07rem;
  line-height: 1.55;
}

.landing-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0 16px;
}

.landing-cta__button {
  min-width: 245px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: var(--shadow-soft);
}

.landing-cta__button i {
  font-size: 1.25rem;
}

.landing-cta__button span,
.landing-cta__button strong {
  display: block;
}

.landing-cta__button span {
  font-size: 0.72rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.landing-cta__button strong {
  margin-top: 4px;
  font-size: 0.98rem;
  line-height: 1.1;
}

.landing-cta__button--primary {
  background: var(--color-accent);
  color: #0b0f0c;
}

.landing-cta__button--secondary {
  background: rgba(255,255,255,0.10);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.18);
}

.landing-cta__button:hover {
  filter: brightness(1.05);
  text-decoration: none;
}

.landing-hero__cta {
  max-width: 600px;
  justify-items: start;
}

.landing-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.landing-hero__badges span {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,0.42);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.86);
  font-size: 0.82rem;
}

.landing-section {
  padding: 58px 0;
}

.landing-section--light {
  background: #ffffff;
  color: #111111;
}

.landing-section--dark {
  background: var(--color-bg-dark);
  color: #ffffff;
}

.landing-section h2 {
  margin: 0 0 18px;
  font-size: 1.7rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  position: relative;
  padding-bottom: 12px;
}

.landing-section h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100px;
  height: 3px;
  background: var(--color-accent);
  border-radius: 2px;
}

.landing-section p {
  font-size: 0.98rem;
  line-height: 1.65;
}

.landing-section__intro {
  max-width: 820px;
  margin: 0 0 22px;
  color: inherit;
  opacity: 0.84;
}

.landing-section__two-cols {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 30px;
  align-items: start;
}

.landing-info-box,
.landing-contact-panel {
  border-radius: 10px;
  padding: 18px;
  background: #1a1a1a;
  color: #ffffff;
  box-shadow: var(--shadow-soft);
}

.landing-info-box h3,
.landing-contact-panel h3 {
  margin: 0 0 12px;
  color: var(--color-accent);
  font-size: 1.08rem;
}

.landing-contact-panel {
  border: 1px solid rgba(255,255,255,0.12);
}

.landing-contact-panel p {
  margin-top: 0;
  color: rgba(255,255,255,0.82);
}

.landing-contact-panel > a:not(.btn) {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: #ffffff;
  font-weight: 700;
}

.landing-contact-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.landing-contact-panel__actions a:not(.btn) {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
}

.landing-contact-panel__actions a:not(.btn):hover {
  border-color: rgba(34,197,94,0.46);
  background: rgba(34,197,94,0.10);
  color: #ffffff;
  text-decoration: none;
}

.landing-checklist {
  margin: 0;
  padding: 0;
  list-style: none;
}

.landing-checklist li {
  position: relative;
  padding-left: 24px;
  margin: 8px 0;
  color: rgba(255,255,255,0.86);
  line-height: 1.45;
}

.landing-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-accent);
  font-weight: 900;
}

.landing-service-note {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.14);
}

.landing-service-note strong,
.landing-service-note span {
  display: block;
}

.landing-service-note strong {
  margin-bottom: 5px;
  color: var(--color-accent);
  font-size: 0.95rem;
}

.landing-service-note span {
  color: rgba(255,255,255,0.82);
  font-size: 0.9rem;
  line-height: 1.45;
}

.landing-service-note__features {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 10px;
}

.landing-service-note__features span {
  display: inline-flex;
  align-items: center;
  padding: 5px 9px;
  border-radius: 999px;
  background: #e8f7ee;
  color: #0f5132;
  box-shadow: inset 0 0 0 1px rgba(34,197,94,0.30);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.2;
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.route-card {
  min-height: 106px;
  padding: 14px;
  border-radius: 8px;
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 8px 18px rgba(0,0,0,0.18);
}

.route-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--color-accent);
  font-size: 0.96rem;
  line-height: 1.25;
}

.route-card span {
  color: rgba(255,255,255,0.78);
  font-size: 0.82rem;
  line-height: 1.35;
}

.country-route-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.country-route-block h3 {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 1.08rem;
  line-height: 1.25;
}

.country-route-block > p {
  margin: 0 0 14px;
  color: rgba(255,255,255,0.78);
  font-size: 0.9rem;
  line-height: 1.45;
}

.route-list {
  display: grid;
  gap: 10px;
}

.route-list div {
  min-height: 0;
  padding: 12px 14px;
  border-radius: 8px;
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 8px 18px rgba(0,0,0,0.18);
}

.route-list strong {
  display: block;
  margin: 0;
  color: var(--color-accent);
  font-size: 0.95rem;
  line-height: 1.25;
}

.route-list span {
  color: rgba(255,255,255,0.78);
  font-size: 0.82rem;
  line-height: 1.35;
}

.landing-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.landing-steps article {
  padding: 16px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  border-top: 4px solid var(--color-accent);
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(0,0,0,0.10);
}

.landing-steps span {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #0b0f0c;
  font-weight: 900;
}

.landing-steps h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  line-height: 1.25;
}

.landing-steps p {
  margin: 0;
  color: #374151;
  font-size: 0.9rem;
  line-height: 1.45;
}

.scenario-list {
  display: grid;
  gap: 10px;
}

.scenario-list p {
  margin: 0;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(255,255,255,0.88);
}

.scenario-list i {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-accent);
  color: #0b0f0c;
}

.landing-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.landing-gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
  background: #000000;
  box-shadow: 0 8px 18px rgba(0,0,0,0.14);
}

.landing-gallery img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  background: #000000;
}

.landing-gallery figcaption {
  padding: 10px 12px;
  color: rgba(255,255,255,0.84);
  font-size: 0.82rem;
  line-height: 1.35;
}

.landing-faq {
  max-width: 920px;
}

.landing-bottom-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 22px;
  border-radius: 10px;
  background: #1a1a1a;
  color: #ffffff;
  box-shadow: var(--shadow-soft);
}

.landing-bottom-cta h2 {
  color: #ffffff;
}

.landing-bottom-cta p {
  margin: 0;
  color: rgba(255,255,255,0.82);
}

.landing-bottom-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.landing-bottom-cta__actions a:not(.btn) {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
}

.landing-crosslinks {
  margin-top: 24px;
}

.landing-crosslinks div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.landing-crosslinks a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  background: #f3f4f6;
  color: #111111;
  font-weight: 700;
  text-decoration: none;
}

.landing-crosslinks a:hover {
  color: #111111;
  background: #e8f7ee;
}

.landing-sticky-cta {
  display: none;
}

@media (max-width: 900px) {
  .landing-section__two-cols,
  .landing-bottom-cta {
    grid-template-columns: 1fr;
  }

  .route-grid,
  .landing-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .country-route-grid {
    grid-template-columns: 1fr;
  }

  .route-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .landing-bottom-cta__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 700px) {
  .landing-hero {
    min-height: 0;
  }

  .landing-hero::before {
    background-image: url("/img/bg-mobile.jpg");
    background-position: center top;
    background-size: cover;
  }

  .landing-hero__overlay {
    background: rgba(0,0,0,0.70);
  }

  .landing-hero__content {
    padding-top: 38px;
    padding-bottom: 32px;
  }

  .landing-hero h1 {
    font-size: 2rem;
  }

  .landing-hero__lead {
    font-size: 0.98rem;
  }

  .landing-cta {
    display: grid;
  }

  .landing-cta__button {
    width: 100%;
    min-width: 0;
  }

  .landing-section {
    padding: 30px 0;
  }

  .landing-section h2 {
    margin-bottom: 10px;
    padding-bottom: 9px;
    font-size: 1.42rem;
  }

  .landing-section__intro {
    margin-bottom: 14px;
  }

  .landing-section__two-cols {
    gap: 20px;
  }

  .landing-info-box,
  .landing-contact-panel,
  .landing-bottom-cta {
    padding: 14px;
  }

  .route-grid,
  .landing-steps,
  .route-list,
  .landing-gallery {
    grid-template-columns: 1fr;
  }

  .landing-sticky-cta {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 90;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .landing-sticky-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 46px;
    border-radius: 999px;
    background: var(--color-accent);
    color: #0b0f0c;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.30);
  }

  .landing-sticky-cta a:last-child {
    background: #1a1a1a;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.16);
  }

.landing-body {
    padding-bottom: 64px;
  }
}

/**
 * COOKIE CONSENT
 */
.cookie-consent[hidden] {
  display: none !important;
}

.cookie-consent {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 120;
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 10px 8px 12px;
  border-radius: 10px;
  background: rgba(12, 12, 12, 0.94);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 10px 28px rgba(0,0,0,0.32);
  color: #ffffff;
  font-size: 0.78rem;
}

.cookie-consent p {
  margin: 0;
  line-height: 1.35;
}

.cookie-consent__actions {
  display: flex;
  gap: 6px;
  flex: 0 0 auto;
}

.cookie-consent button {
  border-radius: 999px;
  padding: 7px 10px;
  font: inherit;
  font-weight: 500;
  cursor: pointer;
  line-height: 1;
}

.cookie-consent__reject {
  color: rgba(255,255,255,0.86);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.18);
}

.cookie-consent__accept {
  color: #0b0f0c;
  background: var(--color-accent);
  border: 1px solid var(--color-accent);
}

@media (max-width: 600px) {
  .cookie-consent {
    left: 8px;
    right: 8px;
    bottom: 8px;
    max-width: none;
    gap: 8px;
    padding: 8px;
    font-size: 0.72rem;
  }

  .landing-body .cookie-consent {
    bottom: 68px;
  }

  .cookie-consent button {
    padding: 7px 9px;
    white-space: nowrap;
  }
}

/**
 * 10. GALÉRIA A FOOTER (PÄTA)
 */
.footer__gallery-section {
  padding: 48px 0;
  background: transparent;
}

.footer__gallery-section h2 {
  margin: 0 0 16px;
  font-size: 1.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-light);
}

.footer__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.footer__gallery img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  display: block;
  background: #000;
}

@media (max-width: 800px) {
  .footer__gallery{
    grid-template-columns: 1fr; /* fotky pod sebou */
    gap: 12px;                  /* jemne menšia medzera */
  }
}
