/* ============================================================
   JurgaVital — styles.css
   Vizuálny tón: „Klinická dôvera"
   ============================================================ */

/* ---------- 1. Design tokens ---------- */
:root {
  /* Farby — zelená (vitalita) + sivá/slate (dôvera), zladené s logom JurgaVital */
  --color-primary: #2b7a24;      /* tmavá zelená — akcie, odkazy, aktívne stavy (kontrast 5,4:1) */
  --color-primary-dark: #22631c; /* hover / tmavšie plochy */
  --color-accent: #3bb432;       /* jasná zelená z loga — dekor, ikony, focus */
  --color-accent-light: #61ce70;
  --color-accent-ink: #2b7a24;   /* zelený text (zhodné s primary) */
  --color-ink: #1e293b;          /* slate — nadpisy, tmavé plochy */
  --color-body: #334155;
  --color-muted: #64748b;
  --color-slate: #3a4c63;        /* svetlejšia slate pre gradientový panel */
  --color-surface: #f2f6f3;      /* jemná neutrálno-zelenkastá plocha */
  --color-surface-2: #e6efe7;
  --color-white: #ffffff;
  --color-border: #d1d5db;

  /* Odvodené */
  --color-primary-soft: rgba(43, 122, 36, 0.10);
  --color-accent-soft: rgba(59, 180, 50, 0.12);

  /* Typografia */
  --font-heading: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-body: 'Source Sans 3', 'Source Sans Pro', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  /* Rozmery */
  --container: 1200px;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;

  /* Tiene */
  --shadow-sm: 0 1px 3px rgba(16, 24, 40, 0.08);
  --shadow-md: 0 8px 24px rgba(16, 24, 40, 0.10);
  --shadow-lg: 0 20px 48px rgba(16, 24, 40, 0.14);

  /* Ostatné */
  --header-h: 76px;
  --transition: 0.25s ease;
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--color-body);
  background: var(--color-white);
  line-height: 1.65;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
/* Odradenie od sťahovania obrázkov (ťahanie, výber, iOS long-press menu) */
img { -webkit-user-drag: none; user-select: none; -webkit-user-select: none; -webkit-touch-callout: none; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { color: var(--color-primary-dark); }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font: inherit; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ---------- 3. Typografia ---------- */
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--color-ink); line-height: 1.2; font-weight: 600; }
h1 { font-size: clamp(2.1rem, 1.4rem + 3.2vw, 3.5rem); font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.7rem, 1.2rem + 2.2vw, 2.6rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.2rem, 1.05rem + 0.6vw, 1.4rem); }
p { color: var(--color-body); }
strong { color: var(--color-ink); font-weight: 600; }

/* ---------- 4. Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2rem); }
.section { padding-block: clamp(3.25rem, 5vw, 6rem); position: relative; background: radial-gradient(780px 420px at 88% -6%, var(--color-accent-soft), transparent 58%); }
.section--surface { background: radial-gradient(760px 420px at 90% -8%, rgba(59, 180, 50, 0.15), transparent 58%), radial-gradient(680px 380px at 6% 108%, rgba(43, 122, 36, 0.10), transparent 60%), var(--color-surface); }
.section--ink { background: var(--color-ink); color: #cbd5e1; }

.section-head { max-width: 720px; margin-inline: auto; text-align: center; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-head .lead { margin-top: 0.85rem; color: var(--color-muted); font-size: 1.12rem; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent-ink);
  margin-bottom: 0.6rem;
}

.lead { font-size: 1.15rem; color: var(--color-body); }

/* ---------- 5. Tlačidlá ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-weight: 600; font-size: 1rem;
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn--primary { background: var(--color-primary); color: #fff; box-shadow: 0 6px 16px rgba(43, 122, 36, 0.28); }
.btn--primary:hover { background: var(--color-primary-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 22px rgba(43, 122, 36, 0.34); }
.btn--ghost { background: transparent; color: var(--color-primary); border: 2px solid var(--color-border); }
.btn--ghost:hover { border-color: var(--color-primary); color: var(--color-primary-dark); transform: translateY(-2px); }
.btn--white { background: #fff; color: var(--color-primary); box-shadow: 0 8px 20px rgba(16, 24, 40, 0.20); }
.btn--white:hover { background: #fff; color: var(--color-primary-dark); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(16, 24, 40, 0.26); }
.btn--lg { padding: 1rem 2rem; font-size: 1.08rem; }
.btn--block { width: 100%; }

/* ---------- 6. Prístupnosť ---------- */
.skip-link {
  position: absolute; left: 0.75rem; top: -3rem;
  background: var(--color-primary); color: #fff;
  padding: 0.6rem 1rem; border-radius: var(--radius-sm); z-index: 200;
  transition: top var(--transition);
}
.skip-link:focus { top: 0.75rem; color: #fff; }

:focus-visible { outline: 3px solid var(--color-accent); outline-offset: 2px; border-radius: 4px; }

/* ---------- 7. Reveal on scroll (len keď beží JS) ---------- */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; } }

/* Sekcie majú odsadenie pod sticky hlavičkou pri skoku na kotvu */
section[id] { scroll-margin-top: calc(var(--header-h) + 12px); }

/* ---------- 8. Hlavička a navigácia ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--transition), border-color var(--transition), background var(--transition);
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); border-bottom-color: var(--color-border); background: rgba(255, 255, 255, 0.96); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: var(--header-h); }
.brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand img { height: 52px; width: auto; }
.nav { display: flex; align-items: center; gap: 1.75rem; }
.nav-list { display: flex; align-items: center; gap: 1.5rem; }
.nav-list a {
  font-family: var(--font-heading); font-weight: 500; font-size: 0.98rem;
  color: var(--color-ink); padding: 0.35rem 0; position: relative;
}
.nav-list a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px; background: var(--color-primary); transition: right var(--transition); }
.nav-list a:hover, .nav-list a.is-active { color: var(--color-primary); }
.nav-list a:hover::after, .nav-list a.is-active::after { right: 0; }
.nav-cta { padding: 0.6rem 1.3rem; }

.nav-toggle { display: none; width: 44px; height: 44px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--color-ink); border-radius: 2px; transition: transform var(--transition), opacity var(--transition); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0.5rem;
    background: #fff; padding: 1.25rem clamp(1.1rem, 4vw, 2rem) 1.75rem;
    box-shadow: var(--shadow-md); border-bottom: 1px solid var(--color-border);
    transform: translateY(-145%); transition: transform 0.3s ease; visibility: hidden;
  }
  .nav.nav--open { transform: translateY(0); visibility: visible; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0.25rem; }
  .nav-list a { padding: 0.75rem 0.25rem; border-bottom: 1px solid var(--color-surface); }
  .nav-list a::after { display: none; }
  .nav-cta { margin-top: 0.75rem; text-align: center; }
  .nav-toggle { display: flex; }
}

/* ---------- 9. Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--color-surface) 0%, #ffffff 72%);
  padding-block: clamp(2.5rem, 5vw, 5rem) clamp(3.25rem, 6vw, 6.5rem);
}

/* Animované „aurora" pozadie */
.hero-aurora { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.hero-aurora::before, .hero-aurora::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(64px); will-change: transform;
}
.hero-aurora::before {
  width: 48vw; height: 48vw; max-width: 640px; max-height: 640px; top: -12%; right: 2%;
  background: radial-gradient(circle at 35% 35%, rgba(59, 180, 50, 0.55), rgba(59, 180, 50, 0) 68%);
  animation: auroraA 16s ease-in-out infinite alternate;
}
.hero-aurora::after {
  width: 42vw; height: 42vw; max-width: 560px; max-height: 560px; top: 28%; left: -8%;
  background: radial-gradient(circle at 50% 50%, rgba(43, 122, 36, 0.42), rgba(43, 122, 36, 0) 68%);
  animation: auroraB 22s ease-in-out infinite alternate;
}
@keyframes auroraA { from { transform: translate3d(0, 0, 0) scale(1); } to { transform: translate3d(-7%, 9%, 0) scale(1.12); } }
@keyframes auroraB { from { transform: translate3d(0, 0, 0) scale(1); } to { transform: translate3d(9%, -7%, 0) scale(1.16); } }

.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero h1 { margin-bottom: 0.25rem; }
.hero .hl { color: var(--color-primary); }
.hero-lead { margin: 1.25rem 0 2rem; max-width: 54ch; color: var(--color-body); text-align: justify; text-justify: inter-word; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* Postupné načítanie obsahu (stagger) */
.hero-content > * { opacity: 0; animation: heroUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
.hero-content > .eyebrow { animation-delay: 0.08s; }
.hero-content > h1 { animation-delay: 0.18s; }
.hero-content > .hero-lead { animation-delay: 0.32s; }
.hero-content > .hero-actions { animation-delay: 0.46s; }
@keyframes heroUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }

/* Hero vizuál — fotografia + plávajúce sklenené karty */
.hero-visual { position: relative; opacity: 0; animation: heroPop 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.25s forwards; }
@keyframes heroPop { from { opacity: 0; transform: translateY(28px) scale(0.97); } to { opacity: 1; transform: none; } }

.hero-photo {
  position: relative; aspect-ratio: 3 / 2; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); display: flex; align-items: center; justify-content: center;
  background: linear-gradient(150deg, var(--color-surface-2) 0%, #d7e7d8 55%, var(--color-surface) 100%);
}
.hero-photo-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-photo-ph { display: flex; flex-direction: column; align-items: center; gap: 0.4rem; text-align: center; padding: 1.5rem; color: var(--color-muted); font-size: 0.92rem; }
.hero-photo-ph svg { color: var(--color-primary); opacity: 0.55; margin-bottom: 0.3rem; }
.hero-photo-ph small { color: #94a3b8; font-size: 0.8rem; }

.hero-float {
  position: absolute; z-index: 3; display: flex; align-items: center; gap: 0.7rem;
  padding: 0.8rem 1.05rem; border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px) saturate(160%); -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.65); box-shadow: var(--shadow-md);
}
.hero-float strong { display: block; font-family: var(--font-heading); font-size: 0.9rem; color: var(--color-ink); line-height: 1.25; }
.hero-float span { font-size: 0.8rem; color: var(--color-muted); }
.hero-float-ico { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: var(--color-primary-soft); color: var(--color-primary); flex-shrink: 0; }
.hero-float--hours { left: -1.4rem; bottom: 2.25rem; animation: floatY 5s ease-in-out infinite; }
.hero-float--rating { right: -1.15rem; top: 1.75rem; animation: floatY 6s ease-in-out infinite 0.6s; }
.hero-stars { color: #f5b301; letter-spacing: 1.5px; font-size: 0.95rem; }
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: 2; max-width: 420px; width: 100%; margin-inline: auto; }
  .hero-content { order: 1; }
  .hero-float--hours { left: 0.4rem; }
  .hero-float--rating { right: 0.4rem; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-aurora::before, .hero-aurora::after,
  .hero-float--hours, .hero-float--rating { animation: none !important; }
  .hero-content > *, .hero-visual { opacity: 1 !important; animation: none !important; transform: none !important; }
}

/* ---------- 10. Služby ---------- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.service-card { display: flex; perspective: 1400px; transition: transform var(--transition); }
.service-card .card-inner { position: relative; flex: 1; transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1); transform-style: preserve-3d; }
.service-card.is-flipped .card-inner { transform: rotateY(180deg); }
.card-face {
  border: 1px solid var(--color-border); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-sm);
  backface-visibility: hidden; -webkit-backface-visibility: hidden;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.card-front { display: flex; flex-direction: column; height: 100%; padding: 2rem 1.75rem; }
.card-back { position: absolute; inset: 0; transform: rotateY(180deg); overflow: hidden; }
.card-back img { width: 100%; height: 100%; object-fit: cover; display: block; }
.service-card:hover { transform: translateY(-6px); }
.service-card:hover .card-face { box-shadow: 0 20px 42px rgba(43, 122, 36, 0.16); border-color: var(--color-accent-soft); }
.flip-btn {
  align-self: flex-start; margin-top: 1.15rem; padding: 0.5rem 1.15rem;
  border: 1px solid var(--color-primary); color: var(--color-primary); background: transparent;
  border-radius: 999px; font: inherit; font-weight: 600; font-size: 0.9rem; cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.flip-btn:hover { background: var(--color-primary); color: #fff; }
.flip-btn--back { position: absolute; top: 0.8rem; right: 0.8rem; margin: 0; background: rgba(255, 255, 255, 0.92); box-shadow: var(--shadow-sm); }
.service-ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 60px; height: 60px; border-radius: 16px; margin-bottom: 1.25rem;
  background: linear-gradient(145deg, var(--color-primary-soft), var(--color-accent-soft));
  color: var(--color-primary);
}
.service-ico svg { width: 30px; height: 30px; }
.service-card h3 { margin-bottom: 0.6rem; }
.card-front > p { color: var(--color-muted); margin-bottom: 1.15rem; }

/* Zarovnanie odsekov do bloku (na obidve strany), aby pravý okraj nebol rozstrapkaný */
.card-front > p,
.about-text p,
.step p,
.faq-a p { text-align: justify; text-justify: inter-word; }
.service-benefits { display: grid; gap: 0.5rem; margin-top: auto; }
.service-benefits li { position: relative; padding-left: 1.6rem; font-size: 0.96rem; color: var(--color-body); }
.service-benefits li::before { content: ""; position: absolute; left: 0.15rem; top: 0.55em; width: 8px; height: 8px; border-radius: 50%; background: var(--color-accent); }

/* ---------- 11. O nás ---------- */
.about-inner { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.about-inner.about-solo { grid-template-columns: 1fr; }
.about-solo .about-text { max-width: 820px; margin-inline: auto; }
.about-text p { margin-bottom: 1rem; }
.about-stats { display: flex; flex-wrap: wrap; gap: 1.5rem 2.75rem; margin-top: 1.75rem; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-family: var(--font-heading); font-weight: 700; font-size: 2rem; color: var(--color-primary); line-height: 1; }
.stat-label { font-size: 0.9rem; color: var(--color-muted); margin-top: 0.35rem; }

/* Zdieľaný placeholder pre médiá (foto/mapa) */
.media-placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.85rem;
  aspect-ratio: 4 / 3; border-radius: var(--radius-lg); padding: 2rem; text-align: center;
  background: linear-gradient(150deg, var(--color-surface-2) 0%, #d7e7d8 55%, var(--color-surface) 100%);
  border: 1px solid var(--color-border); box-shadow: var(--shadow-md); color: var(--color-muted); font-size: 0.95rem;
}
.media-placeholder svg { color: var(--color-primary); opacity: 0.6; }
.about-photo { width: 100%; max-width: 420px; margin-inline: auto; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); display: block; }

@media (max-width: 860px) {
  .about-inner { grid-template-columns: 1fr; }
  .about-visual { order: -1; }
}

/* ---------- 12. Priebeh (kroky) ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.step {
  background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-lg);
  padding: 2rem 1.5rem; box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.step:nth-child(2) { transition-delay: 0.08s; }
.step:nth-child(3) { transition-delay: 0.16s; }
.step:nth-child(4) { transition-delay: 0.24s; }
.step:hover { transform: translateY(-6px); box-shadow: 0 20px 42px rgba(43, 122, 36, 0.16); border-color: var(--color-accent-soft); transition-delay: 0s; }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 50%; margin-bottom: 1rem;
  background: linear-gradient(145deg, var(--color-accent) 0%, var(--color-primary) 100%); color: #fff;
  font-family: var(--font-heading); font-weight: 700; font-size: 1.35rem;
  box-shadow: 0 8px 18px rgba(43, 122, 36, 0.30);
}
.step h3 { margin-bottom: 0.5rem; }
.step p { color: var(--color-muted); font-size: 0.97rem; }

/* ---------- 13. Cenník ---------- */
.pricing { max-width: 820px; margin-inline: auto; background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); overflow: hidden; }
.table-wrap { overflow-x: auto; }
.price-table { width: 100%; border-collapse: collapse; }
.price-table th, .price-table td { padding: 1rem 1.5rem; text-align: left; }
.price-table thead th { background: var(--color-surface); font-family: var(--font-heading); color: var(--color-ink); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.05em; }
.price-table tbody tr { border-top: 1px solid var(--color-border); }
.price-table td:first-child { font-weight: 600; color: var(--color-ink); }
.price-table th:last-child, .price-table td:last-child { text-align: right; color: var(--color-primary); font-weight: 600; white-space: nowrap; }
.price-table td:nth-child(2) { color: var(--color-muted); white-space: nowrap; }

/* Cenník na mobile — namiesto vodorovného scrollu prehľadné kartičky */
@media (max-width: 600px) {
  .pricing { background: transparent; border: 0; box-shadow: none; overflow: visible; }
  .table-wrap { overflow: visible; }
  .price-table thead { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); }
  .price-table, .price-table tbody, .price-table tr, .price-table td { display: block; width: 100%; }
  .price-table tr { border: 1px solid var(--color-border); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); padding: 0.4rem 1.1rem 0.9rem; margin-bottom: 0.85rem; }
  .price-table td { padding: 0.4rem 0; border: 0; white-space: normal; text-align: left; }
  .price-table td.pt-service { font-family: var(--font-heading); font-weight: 700; font-size: 1.1rem; color: var(--color-ink); padding: 0.6rem 0 0.5rem; margin-bottom: 0.3rem; border-bottom: 1px solid var(--color-border); }
  .price-table td:not(.pt-service) { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
  .price-table td:not(.pt-service)::before { content: attr(data-label); font-family: var(--font-heading); font-weight: 600; font-size: 0.9rem; color: var(--color-ink); }
  .price-table td:last-child { color: var(--color-primary); font-weight: 700; }
}

/* ---------- 14. FAQ ---------- */
.faq { max-width: 800px; margin-inline: auto; display: grid; gap: 0.75rem; }
.faq-item { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: box-shadow var(--transition), border-color var(--transition); }
.faq-item:hover, .faq-item.is-open { border-color: var(--color-accent-soft); box-shadow: var(--shadow-md); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.15rem 1.4rem; text-align: left; font-family: var(--font-heading); font-weight: 600; font-size: 1.05rem; color: var(--color-ink); }
.faq-q:hover { color: var(--color-primary); }
.faq-q svg { flex-shrink: 0; color: var(--color-primary); transition: transform var(--transition); }
.faq-item.is-open .faq-q svg { transform: rotate(180deg); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.3s ease; }
.faq-a > div { overflow: hidden; }
.faq-a p { padding: 0 1.4rem 1.25rem; color: var(--color-body); }
.faq-item.is-open .faq-a { grid-template-rows: 1fr; }

/* ---------- 15. Objednanie (záverečná farebná CTA sekcia) ---------- */
.section--cta { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%); }
.section--cta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(620px 320px at 12% 128%, rgba(59, 180, 50, 0.38), transparent 60%); pointer-events: none; }
.cta-band { position: relative; z-index: 1; max-width: 680px; margin-inline: auto; text-align: center; }
.cta-band h2 { color: #fff; }
.eyebrow--light { color: #b7ebb1; }
.cta-band-lead { color: #e6f4e4; font-size: 1.15rem; margin: 0.85rem auto 2rem; max-width: 52ch; }
.cta-band .btn { min-width: 240px; }
.cta-band-note { margin-top: 1.25rem; font-size: 0.95rem; color: #c9e4c5; }

/* ---------- 16. Kontakt ---------- */
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }
.contact-list { display: grid; gap: 1.25rem; margin-bottom: 1.75rem; }
.contact-list li { display: flex; gap: 1rem; align-items: flex-start; }
.contact-ico { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 12px; background: var(--color-primary-soft); color: var(--color-primary); flex-shrink: 0; }
.contact-list strong { font-family: var(--font-heading); color: var(--color-ink); }
.contact-list a { color: var(--color-body); }
.contact-list a:hover { color: var(--color-primary); }
.socials { display: flex; gap: 0.75rem; }
.social { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; background: #fff; border: 1px solid var(--color-border); color: var(--color-primary); transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition); }
.social:hover { background: var(--color-primary); color: #fff; border-color: var(--color-primary); transform: translateY(-2px); }

.contact-side { display: grid; gap: 1.5rem; }
.contact-map { aspect-ratio: 16 / 10; }
.contact-map-embed { aspect-ratio: 16 / 10; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.contact-map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }
.contact-form { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: 1.75rem; box-shadow: var(--shadow-md); }
.contact-form h3 { margin-bottom: 1rem; }
.contact-form .field { margin-bottom: 1rem; }
.contact-form label { display: block; font-family: var(--font-heading); font-weight: 600; font-size: 0.9rem; color: var(--color-ink); margin-bottom: 0.4rem; }
.contact-form input, .contact-form textarea { width: 100%; padding: 0.75rem 0.9rem; border: 1.5px solid var(--color-border); border-radius: var(--radius-sm); background: #fff; color: var(--color-ink); }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 3px var(--color-primary-soft); }
.contact-form .field.has-error input, .contact-form .field.has-error textarea { border-color: #dc2626; }
.contact-form-status { margin-top: 1rem; font-weight: 600; }
.contact-form-status.is-ok { color: var(--color-accent); }
.contact-form-status.is-err { color: #dc2626; }

@media (max-width: 860px) { .contact-inner { grid-template-columns: 1fr; } }

/* ---------- 17. Footer ---------- */
.site-footer { background: var(--color-primary); color: rgba(255, 255, 255, 0.9); }
.footer-inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2rem; padding-block: clamp(2.5rem, 5vw, 4rem); }
.footer-brand p { color: rgba(255, 255, 255, 0.85); max-width: 36ch; font-size: 0.95rem; }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 1rem; }
.footer-col ul { display: grid; gap: 0.6rem; }
.footer-col a, .footer-col li { color: rgba(255, 255, 255, 0.85); font-size: 0.95rem; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.2); }
.footer-bottom-inner { display: flex; justify-content: space-between; gap: 0.5rem 1.5rem; flex-wrap: wrap; padding-block: 1.25rem; font-size: 0.85rem; color: rgba(255, 255, 255, 0.8); }
.footer-note { color: rgba(255, 255, 255, 0.8); }
.site-footer .social { color: var(--color-primary); }
.footer-bottom-inner p { color: rgba(255, 255, 255, 0.8); }

@media (max-width: 860px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-inner { grid-template-columns: 1fr; } }

/* ---------- 18. Mobilná sticky CTA lišta ---------- */
.mobile-cta {
  display: none;
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 90;
  padding: 0.95rem 1.5rem; border-radius: 999px; text-align: center;
  background: var(--color-primary); color: #fff;
  font-family: var(--font-heading); font-weight: 600; font-size: 1.05rem;
  box-shadow: 0 10px 26px rgba(43, 122, 36, 0.42);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.mobile-cta:hover { color: #fff; }
/* Skryť lištu, keď je používateľ pri záverečnej objednávkovej sekcii (netreba duplikát) */
.mobile-cta.is-hidden { transform: translateY(160%); opacity: 0; pointer-events: none; }

@media (max-width: 900px) {
  .mobile-cta { display: block; }
  body { padding-bottom: 5.25rem; }
  /* Skryť hero „Objednať sa" na mobile — objednanie je vždy dostupné cez spodnú lištu */
  .hero-actions .btn--primary { display: none; }
}
