/* ── webinare-zsd.css ── */

/* ── PREMENNÉ ── */
:root {
  --blue: #C6C9EB;
  --rose: #E9C7EB;
  --gold: #C9A96E;
  --gold-light: #E8D5B0;
  --white: #FFFFFF;
  --off-white: #FAF9FC;
  --text-dark: #2A2A35;
  --text-mid: #55556A;
  --purple: #5C4FA0;
  --purple-rose: #B86BA8;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', sans-serif;
  background: var(--off-white);
  color: var(--text-dark);
  font-weight: 400;
  overflow-x: hidden;
}

/* ================================================
   NAVIGÁCIA
   ================================================ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 4rem;
  background: #ffffff;
  border-bottom: 1.5px solid rgba(198,201,235,0.5);
  box-shadow: 0 2px 16px rgba(198,201,235,0.2);
}
.nav-logo {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--text-dark); text-decoration: none;
  z-index: 301; position: relative;
}
.nav-logo .dot { color: var(--purple-rose); }

#nav-toggle { display: none; }

.nav-hamburger {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; cursor: pointer;
  z-index: 301; position: relative;
  -webkit-tap-highlight-color: transparent;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text-dark); border-radius: 2px;
  transition: all 0.28s ease;
  transform-origin: center;
  pointer-events: none;
}
#nav-toggle:checked ~ .nav-hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#nav-toggle:checked ~ .nav-hamburger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
#nav-toggle:checked ~ .nav-hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-links { display: flex; gap: 0; list-style: none; align-items: center; }
.nav-links a {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.76rem; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--text-dark); text-decoration: none;
  padding: 0.35rem 0.55rem; border-radius: 3px;
  transition: background 0.18s;
}
.nav-links a:hover, .nav-links a.active { background: var(--blue); }

.nav-dropdown { position: relative; }
.nav-label { cursor: default; color: inherit; font-weight: 700; font-size: 0.72rem; letter-spacing: 0.1em; }
.nav-dropdown > a::after { content: ' ▾'; opacity: 0.45; font-size: 0.6rem; }
.nav-dropdown-menu {
  display: none; position: absolute;
  top: 100%; left: 50%; transform: translateX(-50%);
  padding-top: 0.6rem;
  min-width: 148px; z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block; padding: 0.55rem 1.2rem;
  font-size: 0.74rem; color: var(--text-dark); background: #fff;
  border-left: 1px solid rgba(198,201,235,0.55);
  border-right: 1px solid rgba(198,201,235,0.55);
}
.nav-dropdown-menu a:first-child { border-top: 1px solid rgba(198,201,235,0.55); border-radius: 4px 4px 0 0; }
.nav-dropdown-menu a:last-child { border-bottom: 1px solid rgba(198,201,235,0.55); border-radius: 0 0 4px 4px; }
.nav-dropdown-menu a:hover { background: var(--rose); }
.nav-hdcz a { color: var(--purple) !important; font-weight: 700 !important; }
.nav-active > .nav-label { background: var(--blue); border-radius: 3px; padding: 0.45rem 0.8rem; }
.nav-hdcz a:hover { background: rgba(92,79,160,0.1) !important; }

.nav-overlay {
  display: none; position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(42,42,53,0.4);
  z-index: 199;
}

/* ── MOBILNÉ MENU ── */
@media (max-width: 900px) {
  nav { padding: 0.85rem 1.4rem; }
  .nav-hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    width: min(300px, 88vw);
    height: 100dvh;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 5.5rem 1.5rem 2rem;
    gap: 0.1rem;
    box-shadow: none;
    transform: translateX(100%);
    transition: transform 0.32s cubic-bezier(0.4,0,0.2,1);
    z-index: 200;
    overflow-y: auto;
  }
  #nav-toggle:checked ~ .nav-links { transform: translateX(0); }
  #nav-toggle:checked ~ .nav-overlay { display: block; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; font-size: 0.95rem; padding: 0.85rem 1rem; border-radius: 5px; }
  .nav-label { cursor: default; color: inherit; font-weight: 700; font-size: 0.72rem; letter-spacing: 0.1em; }
  .nav-dropdown > a::after { content: ' ▾'; }
  .nav-dropdown-menu {
    position: static !important; transform: none !important;
    box-shadow: none !important; border: none !important;
    background: rgba(198,201,235,0.25);
    border-radius: 5px; padding: 0.3rem 0;
    margin: 0.2rem 0 0.3rem 0.8rem;
    display: block !important;
  }
  .nav-dropdown-menu a { padding: 0.6rem 1.2rem; font-size: 0.85rem; }
}

/* ================================================
   TLAČIDLÁ
   ================================================ */
.btn-primary {
  display: inline-block; background: var(--text-dark); color: #fff;
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase;
  padding: 0.9rem 2.2rem; text-decoration: none; border-radius: 3px;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--purple); transform: translateY(-2px); }

.btn-buy-large {
  display: inline-block;
  background: var(--text-dark); color: #fff;
  font-size: 0.88rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 1.1rem 2.8rem; text-decoration: none; border-radius: 4px;
  transition: background 0.2s, transform 0.15s;
}
.btn-buy-large:hover { background: var(--purple); transform: translateY(-2px); }

/* ================================================
   SECTION LABELS
   ================================================ */
.section-label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--purple); margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.8rem;
}
.section-label::before {
  content: ''; display: block; width: 30px; height: 1.5px;
  background: currentColor; opacity: 0.5; flex-shrink: 0;
}

/* ================================================
   PRODUCT HERO — 2-stĺpcový
   ================================================ */
.product-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  padding-top: 62px;
}
.product-hero-left {
  background: var(--gold-light);
  padding: 6rem 5rem 6rem 6rem;
  display: flex; flex-direction: column; justify-content: center;
  gap: 1.6rem;
}
.product-hero-tag {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(42,42,53,0.55);
  display: flex; align-items: center; gap: 0.8rem;
}
.product-hero-tag::before {
  content: ''; display: block; width: 30px; height: 1.5px;
  background: rgba(42,42,53,0.4);
}
.product-hero-left h1 {
  font-size: clamp(2rem, 3.2vw, 3.2rem); font-weight: 300;
  line-height: 1.18; color: var(--text-dark); letter-spacing: -0.01em;
}
.product-hero-left h1 strong { font-weight: 700; color: var(--text-dark); }
.product-hero-subtitle {
  font-size: 1.05rem; font-style: italic;
  color: var(--text-mid); font-weight: 300;
  line-height: 1.5;
}
.product-hero-intro {
  font-size: 0.96rem; line-height: 1.85;
  color: var(--text-dark); max-width: 460px;
}
.product-hero-intro p + p { margin-top: 0.7rem; }
.product-hero-cta {
  display: flex; flex-direction: column; gap: 0.6rem;
  margin-top: 0.5rem;
}
.product-price-hero {
  display: flex; align-items: baseline; gap: 0.8rem;
}
.price-old {
  font-size: 1rem; color: var(--text-mid);
  text-decoration: line-through; opacity: 0.6;
}
.price-new {
  font-size: 1.6rem; font-weight: 700; color: var(--text-dark);
}
.product-price-note {
  font-size: 0.8rem; color: rgba(42,42,53,0.5);
  letter-spacing: 0.03em;
}
.product-hero-right {
  background: #1a0a2e;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
  padding: 3rem;
}
.product-hero-right::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(184,107,168,0.25) 0%, rgba(92,79,160,0.15) 50%, transparent 75%);
}
.product-hero-right img {
  position: relative; z-index: 1;
  max-width: 100%; max-height: 80vh;
  width: auto; height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}

/* ================================================
   SEKCIA: POZNÁŠ TYP — biela 2-col
   ================================================ */
.section-forwho {
  background: var(--white);
  padding: 6rem 6rem 5rem;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 6rem;
  align-items: start;
}
.section-forwho-text .section-label { color: var(--purple); }
.section-forwho-text h2 {
  font-size: clamp(1.8rem, 2.6vw, 2.6rem); font-weight: 300;
  line-height: 1.22; color: var(--text-dark);
  margin-bottom: 1.4rem; letter-spacing: -0.01em;
}
.section-forwho-text h2 strong { font-weight: 700; }
.section-forwho-text p {
  font-size: 0.97rem; line-height: 1.85;
  color: var(--text-mid); margin-bottom: 0.9rem;
}
.section-forwho-text .italics {
  font-style: italic; font-size: 1rem; color: var(--text-dark);
  border-left: 3px solid var(--purple-rose);
  padding: 0.8rem 1.2rem;
  background: var(--off-white);
  border-radius: 0 4px 4px 0;
  margin-top: 0.5rem;
}
.forwho-list {
  list-style: none; margin: 0;
  display: flex; flex-direction: column; gap: 0.75rem;
}
.forwho-list li {
  font-size: 0.95rem; line-height: 1.7;
  color: var(--text-dark);
  padding: 1rem 1.2rem 1rem 1.5rem;
  background: var(--off-white);
  border-left: 3px solid var(--purple-rose);
  border-radius: 0 4px 4px 0;
}
.forwho-list li strong {
  display: block; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--purple); margin-bottom: 0.3rem;
}

/* ================================================
   SEKCIA: MODULY — ružová
   ================================================ */
.section-content {
  background: var(--rose);
  padding: 6rem;
}
.section-content .section-label { color: rgba(42,42,53,0.5); }
.section-content .section-label::before { background: rgba(42,42,53,0.35); }
.section-content h2 {
  font-size: clamp(1.8rem, 2.6vw, 2.8rem); font-weight: 300;
  color: var(--text-dark); margin-bottom: 0.8rem; letter-spacing: -0.01em;
  line-height: 1.2;
}
.section-content h2 strong { font-weight: 700; }
.section-content .content-meta {
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.08em;
  color: rgba(42,42,53,0.45); text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.section-content .content-perex {
  font-size: 1rem; line-height: 1.85;
  color: var(--text-mid); max-width: 680px; margin-bottom: 3rem;
}
.layers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.layer-card {
  background: rgba(255,255,255,0.6);
  border-radius: 8px;
  padding: 2rem 1.8rem;
}
.layer-icon {
  font-size: 1.1rem; font-weight: 700; letter-spacing: 0.1em;
  color: var(--purple); margin-bottom: 0.8rem; display: block;
}
.layer-card h3 {
  font-size: 0.88rem; font-weight: 700;
  color: var(--text-dark); margin-bottom: 0.7rem; line-height: 1.35;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.layer-card p {
  font-size: 0.88rem; line-height: 1.75;
  color: var(--text-mid);
}

/* Blok o definovanosti pod modulmi */
.section-definition {
  margin-top: 2.5rem;
  padding: 2.5rem;
  background: rgba(255,255,255,0.5);
  border-radius: 8px;
}
.section-definition h3 {
  font-size: 1rem; font-weight: 700; letter-spacing: 0.08em;
  color: var(--purple); text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-definition p {
  font-size: 0.95rem; line-height: 1.85; color: var(--text-mid);
  margin-bottom: 0.8rem;
}
.section-definition p:last-child { margin-bottom: 0; }

/* ================================================
   SEKCIA: JOURNEY — modrá
   ================================================ */
.section-journey {
  background: var(--blue);
  padding: 6rem;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 6rem;
  align-items: start;
}
.section-journey .section-label { color: rgba(255,255,255,0.65); }
.section-journey .section-label::before { background: rgba(255,255,255,0.5); }
.section-journey h2 {
  font-size: clamp(1.8rem, 2.6vw, 2.6rem); font-weight: 300;
  color: #ffffff; margin-bottom: 1.4rem; letter-spacing: -0.01em; line-height: 1.2;
}
.section-journey h2 strong { font-weight: 700; color: #ffffff; }
.section-journey .journey-intro {
  font-size: 1rem; line-height: 1.85;
  color: var(--text-dark); opacity: 0.85; margin-bottom: 1rem;
}
.journey-steps {
  display: flex; flex-direction: column; gap: 0.6rem;
}
.journey-step {
  padding: 1rem 1.2rem;
  background: rgba(255,255,255,0.55);
  border-radius: 6px;
  font-size: 0.93rem; line-height: 1.7;
  color: var(--text-dark);
}
.journey-step p { opacity: 0.88; }
.journey-step-label {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em;
  color: var(--purple); text-transform: uppercase;
  margin-bottom: 0.4rem; display: block;
}
.journey-closing {
  margin-top: 1.2rem;
  padding: 1.2rem 1.4rem;
  background: rgba(255,255,255,0.35);
  border-left: 3px solid rgba(255,255,255,0.6);
  font-size: 0.9rem; font-style: italic;
  color: var(--text-dark); line-height: 1.75;
  border-radius: 0 4px 4px 0;
}

/* ================================================
   SEKCIA: ČO ZÍSKAVAŠ — tmavá
   ================================================ */
.section-value {
  background: var(--text-dark);
  padding: 7rem 6rem;
}
.section-value .section-label {
  color: rgba(255,255,255,0.45);
  justify-content: center; margin-bottom: 0.8rem;
}
.section-value .section-label::before { background: rgba(255,255,255,0.3); }
.section-value > h2 {
  font-size: clamp(1.8rem, 2.6vw, 2.6rem); font-weight: 300;
  color: #ffffff; letter-spacing: -0.01em; line-height: 1.2;
  text-align: center; margin-bottom: 0.6rem;
}
.section-value > h2 strong { font-weight: 700; }
.section-value > .value-perex {
  text-align: center; font-size: 0.95rem; color: rgba(255,255,255,0.5);
  margin-bottom: 3rem;
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  max-width: 900px;
  margin: 0 auto 3rem;
}
.value-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 1.8rem;
}
.value-card-label {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 0.6rem; display: block;
}
.value-card h3 {
  font-size: 0.85rem; font-weight: 700; color: #ffffff;
  margin-bottom: 0.5rem; line-height: 1.3;
}
.value-card p {
  font-size: 0.83rem; line-height: 1.65; color: rgba(255,255,255,0.55);
}
.value-card-price {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em;
  color: var(--gold-light); margin-top: 0.8rem; display: block;
}

.price-summary {
  max-width: 500px; margin: 0 auto;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 2.5rem;
  background: rgba(255,255,255,0.05);
}
.price-summary .total-label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,255,255,0.4);
  margin-bottom: 0.5rem; display: block;
}
.price-summary .price-old {
  font-size: 1.1rem; color: rgba(255,255,255,0.35);
  text-decoration: line-through; display: block; margin-bottom: 0.3rem;
}
.price-summary .price-new-big {
  font-size: 3.2rem; font-weight: 700; color: #ffffff;
  line-height: 1; display: block; margin-bottom: 0.4rem;
}
.price-summary .savings {
  font-size: 0.82rem; color: var(--gold);
  letter-spacing: 0.05em; margin-bottom: 1.8rem; display: block;
}
.price-summary .btn-buy-large {
  display: block;
  background: var(--gold);
  color: var(--text-dark);
  text-align: center;
}
.price-summary .btn-buy-large:hover {
  background: var(--gold-light);
  color: var(--text-dark);
  transform: translateY(-2px);
}

/* ================================================
   SEKCIA: PRE KOHO NIE — zlatá
   ================================================ */
.section-notfor {
  background: var(--gold-light);
  padding: 5rem 6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}
.section-notfor .section-label { color: #8B6914; }
.section-notfor .section-label::before { background: #8B6914; }
.section-notfor h2 {
  font-size: clamp(1.7rem, 2.4vw, 2.4rem); font-weight: 300;
  color: var(--text-dark); margin-bottom: 1.4rem; letter-spacing: -0.01em; line-height: 1.2;
}
.section-notfor h2 strong { font-weight: 700; }
.notfor-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.5rem;
}
.notfor-list li {
  font-size: 0.95rem; line-height: 1.65; color: var(--text-mid);
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(139,105,20,0.2);
}
.notfor-list li::before { content: '✕  '; color: #B86BA8; font-weight: 700; }
.notfor-truth {
  font-size: 1rem; line-height: 1.8; color: var(--text-dark);
  padding: 1.2rem 1.4rem;
  background: rgba(255,255,255,0.5);
  border-left: 3px solid var(--gold);
  border-radius: 0 4px 4px 0;
  margin-top: 0.5rem;
}

/* Kontext — kde je ŽSD v štúdiu HD + FAQ */
.section-context {
  grid-column: 1 / -1;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(139,105,20,0.25);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: start;
}
.section-context .section-label { color: #8B6914; }
.section-context .section-label::before { background: #8B6914; }
.section-context-text p {
  font-size: 0.95rem; line-height: 1.85; color: var(--text-mid);
  margin-bottom: 0.85rem;
}
.section-context-text p:last-child { margin-bottom: 0; }
.faq-item {
  padding: 1.2rem 1.4rem;
  background: rgba(255,255,255,0.5);
  border-left: 3px solid var(--gold);
  border-radius: 0 4px 4px 0;
  margin-top: 0.5rem;
}
.faq-q {
  font-size: 0.88rem; font-weight: 700; color: var(--text-dark);
  line-height: 1.5; margin-bottom: 0.5rem;
}
.faq-a {
  font-size: 0.88rem; line-height: 1.75; color: var(--text-mid);
}

/* After ordering + HD nie je */
.section-after-info h2 {
  font-size: clamp(1.5rem, 2vw, 2rem); font-weight: 300;
  color: var(--text-dark); margin-bottom: 1.2rem; line-height: 1.3;
}
.section-after-info h2 strong { font-weight: 700; }
.section-after-info p {
  font-size: 0.95rem; line-height: 1.85; color: var(--text-mid);
  margin-bottom: 0.7rem;
}

/* ================================================
   SEKCIA: ZÁVER CTA — tmavá 2-stĺpcová
   ================================================ */
.section-cta {
  background: var(--text-dark);
  padding: 7rem 6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

/* ─ Ľavá strana: bio ─ */
.cta-bio { display: flex; flex-direction: column; gap: 1.2rem; }
.cta-bio .section-label { color: rgba(255,255,255,0.45); }
.cta-bio .section-label::before { background: rgba(255,255,255,0.3); }
.cta-bio-photo {
  width: 100%; max-width: 380px;
  border-radius: 8px;
  object-fit: cover;
  display: block;
}
.cta-bio-text {
  font-size: 0.95rem; line-height: 1.85;
  color: rgba(255,255,255,0.65);
}
.cta-bio-text p + p { margin-top: 0.8rem; }

/* ─ Pravá strana: cenník ─ */
.cta-right {
  display: flex; flex-direction: column; gap: 1.4rem;
}
.cta-right .section-label { color: rgba(255,255,255,0.45); }
.cta-right .section-label::before { background: rgba(255,255,255,0.3); }
.cta-right h2 {
  font-size: clamp(1.8rem, 2.4vw, 2.6rem); font-weight: 300;
  color: #ffffff; letter-spacing: -0.01em; line-height: 1.2;
}
.cta-right h2 strong { font-weight: 700; color: #ffffff; }
.cta-features {
  list-style: none;
  display: flex; flex-direction: column; gap: 0.45rem;
}
.cta-features li {
  font-size: 0.9rem; color: rgba(255,255,255,0.65);
  display: flex; align-items: center; gap: 0.5rem;
}
.cta-features li::before { content: '✦'; color: var(--gold); font-size: 0.6rem; flex-shrink: 0; }
.cta-price-block {
  display: flex; flex-direction: column; gap: 0.3rem;
  padding: 1.6rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
}
.cta-price-old {
  font-size: 0.9rem; color: rgba(255,255,255,0.3);
  text-decoration: line-through;
}
.cta-price {
  font-size: 2.8rem; font-weight: 700; color: #ffffff; line-height: 1;
}
.cta-price-savings {
  font-size: 0.8rem; color: var(--gold); letter-spacing: 0.05em;
}
.cta-btn-wrap .btn-buy-large {
  background: var(--gold); color: var(--text-dark);
  display: block; text-align: center;
}
.cta-btn-wrap .btn-buy-large:hover {
  background: var(--gold-light); color: var(--text-dark);
  transform: translateY(-2px);
}

/* ================================================
   KONTAKT
   ================================================ */
.section-contact {
  padding: 7rem 6rem; background: #C6C9EB;
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 6rem; align-items: start;
}
.contact-info .section-label { color: rgba(255,255,255,0.6); }
.contact-info h2 {
  font-size: clamp(1.8rem, 2.5vw, 2.5rem); font-weight: 700;
  line-height: 1.25; color: #ffffff; margin-bottom: 1.1rem; letter-spacing: -0.01em;
}
.contact-info p { font-size: 0.91rem; line-height: 1.85; color: var(--text-dark); opacity: 0.8; }
.contact-avatars { display: flex; align-items: center; gap: 2rem; margin-top: 2rem; }
.contact-avatar { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; display: block; border: 3px solid rgba(255,255,255,0.5); }
.contact-badge-link { display: block; }
.contact-badge { width: 120px; height: 120px; object-fit: contain; display: block; transition: transform 0.2s; }
.contact-badge:hover { transform: scale(1.05); }
.contact-form { display: flex; flex-direction: column; gap: 0.9rem; }
.contact-form input, .contact-form textarea {
  background: var(--off-white); border: 1.5px solid rgba(198,201,235,0.7);
  padding: 0.92rem 1.05rem; font-family: 'Open Sans', sans-serif;
  font-size: 0.88rem; color: var(--text-dark); outline: none;
  border-radius: 3px; transition: border-color 0.2s; resize: none;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: #9B8EC4; }
.contact-form textarea { min-height: 130px; }
.btn-send {
  background: var(--text-dark); color: #fff; font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.13em; text-transform: uppercase; padding: 0.88rem 2.2rem;
  border: none; border-radius: 3px; cursor: pointer; align-self: flex-start; transition: background 0.2s;
}
.btn-send:hover { background: var(--purple); }
.form-msg { font-size: 0.88rem; margin-top: 0.7rem; min-height: 1.2em; display: block; }
.form-msg.success { color: #2d6a4f; font-weight: 500; }
.form-msg.error { color: #c0392b; font-weight: 500; }

/* ================================================
   FOOTER
   ================================================ */
footer {
  background: var(--text-dark); color: rgba(255,255,255,0.45);
  padding: 2.4rem 6rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.74rem; letter-spacing: 0.05em;
}
footer a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
footer a:hover { color: var(--gold-light); }
.footer-links { display: flex; gap: 2rem; }

/* ================================================
   ANIMÁCIE
   ================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.product-hero-left > * { opacity: 0; animation: fadeUp 0.7s ease forwards; }
.product-hero-tag       { animation-delay: 0.1s; }
.product-hero-left h1   { animation-delay: 0.22s; }
.product-hero-subtitle  { animation-delay: 0.34s; }
.product-hero-intro     { animation-delay: 0.44s; }
.product-hero-cta       { animation-delay: 0.56s; }
.product-hero-right     { opacity: 0; animation: fadeUp 0.9s ease 0.3s forwards; }

/* ================================================
   RESPONZÍVNE
   ================================================ */
@media (max-width: 1100px) {
  .product-hero { grid-template-columns: 1fr; min-height: auto; }
  .product-hero-left { padding: 5.5rem 2rem 3rem; order: 1; }
  .product-hero-right { order: 2; min-height: 360px; padding: 2.5rem; }
  .product-hero-right img { max-height: 60vw; }

  .section-forwho { grid-template-columns: 1fr; gap: 3rem; padding: 4rem 2rem; }
  .section-content { padding: 4rem 2rem; }
  .layers-grid { grid-template-columns: 1fr; }
  .section-definition { padding: 1.8rem; }
  .section-journey { grid-template-columns: 1fr; gap: 3rem; padding: 4rem 2rem; }
  .section-value { padding: 5rem 2rem; }
  .value-grid { grid-template-columns: 1fr; }
  .section-notfor { grid-template-columns: 1fr; gap: 3rem; padding: 4rem 2rem; }
  .section-context { grid-template-columns: 1fr; gap: 2rem; }
  .section-cta { grid-template-columns: 1fr; gap: 3rem; padding: 5rem 2rem; }
  .section-contact { grid-template-columns: 1fr; gap: 2.5rem; padding: 4rem 2rem; }
  footer { flex-direction: column; gap: 1rem; text-align: center; padding: 1.8rem 2rem; }
}

@media (max-width: 768px) {
  .layers-grid { grid-template-columns: 1fr; }
  .cta-price { font-size: 2.4rem; }
  .price-summary .price-new-big { font-size: 2.6rem; }
}
