/* =====================================================
   PPWR Ready — ppwrguide.cz
   Stylesheet
   ===================================================== */

/* ---- Font ---- */
@font-face {
  font-family: 'Lexend';
  src: url('../assets/fonts/Lexend-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

/* Google Fonts pro ostatní váhy Lexend (300, 400, 500, 600) */
@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@200;300;400;500;600&display=swap');

/* =====================================================
   KLÍČOVÉ KONSTANTY — EDITOVATELNÉ
   (barvy, typografie, základní layout)
   ===================================================== */
:root {
  /* Barvy (z INCIEN brand manuálu) */
  --color-purple: #3a1d55;   /* primární barva nadpisů a textu */
  --color-teal:   #2EBCB4;   /* akcent — CTA tlačítka, linky, zvýraznění */
  --color-white:  #ffffff;
  --color-light:  #f7f5fa;   /* světlé pozadí alternujících sekcí */
  --color-text:   #3a2d4d;   /* barva těla textu */
  --color-muted:  #7a7090;   /* sekundární / popisný text */
  --color-border: #ece8f4;   /* jemná ohraničení */

  /* Layout */
  --container-max:  1140px;
  --section-py:     96px;    /* padding sekcí — desktop */
  --section-py-mob: 64px;    /* padding sekcí — mobil */
  --content-max:    720px;   /* max šířka textového obsahu */

  /* Typografie */
  --font: 'Lexend', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 18px;
}

body {
  font-family: var(--font);
  font-weight: 300;
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--color-teal);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover { color: #26a8a0; }

/* =====================================================
   LAYOUT
   ===================================================== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: var(--section-py) 0;
}

/* Střídání pozadí sekcí */
.section-light {
  background: var(--color-light);
}

/* =====================================================
   TYPOGRAFIE
   ===================================================== */
h1, h2, h3, h4 {
  font-family: var(--font);
  font-weight: 600;
  color: var(--color-purple);
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.625rem);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(1.875rem, 3.5vw, 2.625rem);
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}


h3 {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 400;
  margin-bottom: 0.75rem;
}

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* Tyrkysové zvýraznění v nadpisech */
.accent {
  color: var(--color-teal);
}


/* Label nad nadpisem */
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: 1rem;
}

/* Intro text pod nadpisem */
.section-intro {
  font-size: 1.0625rem;
  color: var(--color-muted);
  max-width: var(--content-max);
  margin-bottom: 3rem;
}

/* =====================================================
   TLAČÍTKA
   ===================================================== */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 6px;
  font-family: var(--font);
  font-weight: 400;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  text-decoration: none;
  border: 2px solid transparent;
  line-height: 1;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }

/* Primární — teal plné */
.btn-primary {
  background: var(--color-teal);
  color: var(--color-white);
  border-color: var(--color-teal);
}
.btn-primary:hover {
  background: #26a8a0;
  border-color: #26a8a0;
  color: var(--color-white);
}

/* Sekundární — outline teal */
.btn-secondary {
  background: transparent;
  color: var(--color-teal);
  border-color: var(--color-teal);
}
.btn-secondary:hover {
  background: var(--color-teal);
  color: var(--color-white);
}

/* Ghost — outline white (pro dark pozadí) */
.btn-ghost {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.6);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--color-white);
  color: var(--color-white);
}

/* =====================================================
   HEADER / NAVIGACE
   ===================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  /* background a transition jsou definovány v sekci Hero níže */
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

/* Logo / wordmark */
.site-logo {
  font-family: var(--font);
  font-weight: 300;
  font-size: 1.25rem;
  color: var(--color-purple);
  letter-spacing: -0.02em;
  flex-shrink: 0;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.site-logo:hover { text-decoration: none; color: var(--color-purple); }

/* INCIEN logo v headeru */
.logo-incien-img {
  height: 28px;
  width: auto;
}

/* Textový fallback pokud logo není k dispozici */
.logo-incien-text {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--color-muted);
}

.logo-separator {
  width: 1px;
  height: 20px;
  background: var(--color-border);
}

.logo-product {
  color: var(--color-purple);
}
.logo-product span {
  color: var(--color-teal);
}

/* Desktop navigace */
.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}

.site-nav a {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--color-text);
  padding: 8px 14px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.site-nav a:hover {
  color: var(--color-purple);
  background: var(--color-light);
  text-decoration: none;
}

/* Outline CTA v headeru */
.header-cta {
  flex-shrink: 0;
}
.header-cta .btn {
  padding: 10px 20px;
  font-size: 0.875rem;
}

/* Hamburger (mobil) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-purple);
  border-radius: 2px;
  transition: all 0.25s;
}

/* Mobilní menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-white);
  z-index: 999;
  flex-direction: column;
  padding: 32px 24px;
  gap: 8px;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  font-size: 1.125rem;
  font-weight: 300;
  color: var(--color-text);
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
}
.mobile-menu .btn {
  margin-top: 16px;
  text-align: center;
  font-size: 1rem;
}

/* =====================================================
   1. HERO — tmavé pozadí (#3a1d55), bílý text
   ===================================================== */
#hero {
  background: var(--color-purple);
  padding-top: calc(72px + 96px);
  padding-bottom: 112px;
}

.hero-inner {
  max-width: 800px;
}

.hero-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: 1.25rem;
}

#hero h1 {
  color: var(--color-white);
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.68);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.hero-secondary {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s;
}
.hero-secondary:hover {
  color: var(--color-teal);
  text-decoration: none;
}

/* Header průhledný nad dark hero, bílý po scrollu */
.site-header {
  background: transparent;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.site-header.scrolled {
  background: var(--color-white);
  border-color: var(--color-border);
  box-shadow: 0 2px 12px rgba(58,29,85,0.06);
}

/* Barvy nav odkazů a loga na dark pozadí (před scrollem) */
.site-header:not(.scrolled) .site-nav a {
  color: rgba(255, 255, 255, 0.75);
}
.site-header:not(.scrolled) .site-nav a:hover {
  color: var(--color-white);
  background: rgba(255,255,255,0.08);
}
.site-header:not(.scrolled) .logo-product {
  color: var(--color-white);
}
.site-header:not(.scrolled) .logo-product span {
  color: var(--color-teal);
}
.site-header:not(.scrolled) .logo-incien-img {
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.site-header:not(.scrolled) .logo-separator {
  background: rgba(255,255,255,0.2);
}
.site-header:not(.scrolled) .header-cta .btn-secondary {
  color: var(--color-white);
  border-color: rgba(255,255,255,0.45);
}
.site-header:not(.scrolled) .header-cta .btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--color-white);
}
.site-header:not(.scrolled) .hamburger span {
  background: var(--color-white);
}

/* =====================================================
   PARTNERS STRIP — scrollující loga v hero
   ===================================================== */
.partners-strip {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 28px 0 0;
  margin-top: 56px;
}

.partners-label {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 20px;
  text-align: center;
}

.marquee-wrap {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: marquee 22s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(var(--marquee-dist, -50%)); }
}

.partner-wordmark {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
  padding: 0 32px;
  transition: color 0.2s;
}

.partner-wordmark:hover {
  color: rgba(255, 255, 255, 0.9);
}

/* Pokud použijete <img> místo textu */
.partner-img {
  height: 28px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.5;
  padding: 0 32px;
  transition: opacity 0.2s;
}
.partner-img:hover {
  opacity: 0.85;
}

.partner-sep {
  color: rgba(255, 255, 255, 0.2);
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* =====================================================
   2. PROBLÉM
   ===================================================== */
#problem .problem-intro {
  font-size: 1.0625rem;
  color: var(--color-muted);
  max-width: var(--content-max);
  margin-bottom: 3rem;
}

/* Myšlenkové bubliny — sekce Problém */
.bubbles-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 3rem;
  margin-top: 0.5rem;
}

.bubble {
  background: var(--color-white);
  border: 1.5px solid var(--color-border);
  border-radius: 22px;
  padding: 18px 28px;
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  font-weight: 300;
  font-style: italic;
  color: var(--color-purple);
  line-height: 1.55;
  box-shadow: 0 3px 14px rgba(58,29,85,0.07);
  position: relative;
  width: 100%;
  max-width: 640px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.bubble:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(58,29,85,0.12);
}

.pain-question {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--color-purple);
  margin-bottom: 0.75rem;
  text-align: center;
}

.pain-answer {
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--color-teal);
  text-align: center;
}

/* =====================================================
   3. PROČ JE PPWR JINÉ
   ===================================================== */
#ppwr-rozdil .tiles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--color-border);
  border: 2px solid var(--color-border);
  border-radius: 10px;
  overflow: hidden;
  margin-top: 3rem;
}

.tile {
  background: var(--color-white);
  padding: 36px 28px;
}

.tile-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1.25rem;
  color: var(--color-teal);
}

.tile h3 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-purple);
  margin-bottom: 0.625rem;
}

.tile p {
  font-size: 0.9375rem;
  color: var(--color-muted);
  line-height: 1.55;
  margin: 0;
}

/* =====================================================
   4. TÝM
   ===================================================== */
#tym {
  background: var(--color-white);
}

.team-intro {
  font-size: 1.0625rem;
  color: var(--color-muted);
  max-width: var(--content-max);
  margin-bottom: 3.5rem;
}

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

.team-card {
  display: flex;
  flex-direction: column;
}

.team-photo-wrap {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

.team-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-name {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--color-purple);
  margin-bottom: 0.25rem;
}

.team-role {
  font-size: 0.875rem;
  color: var(--color-teal);
  font-weight: 400;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.team-bio {
  font-size: 0.9375rem;
  color: var(--color-text);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.25rem;
}

.team-logo {
  margin-top: auto;
}

.team-logo img {
  height: 28px;
  width: auto;
  object-fit: contain;
  filter: grayscale(40%);
  opacity: 0.7;
}

/* INCIEN textový tag (dokud nebude logo) */
.incien-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--color-purple);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 4px 10px;
}

.team-assurance {
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
  font-size: 1.0625rem;
  font-weight: 400;
  color: var(--color-purple);
}

/* =====================================================
   5. RECENZE + STATISTIKY
   ===================================================== */
#recenze {
  background: var(--color-light);
}

/* Placeholder pro recenze */
.reviews-placeholder {
  border: 2px dashed var(--color-border);
  border-radius: 8px;
  padding: 48px 32px;
  text-align: center;
  margin-bottom: 64px;
  color: var(--color-muted);
  font-size: 0.9375rem;
}
.reviews-placeholder strong {
  display: block;
  color: var(--color-purple);
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

/* Statistiky INCIEN */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 3rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 200;
  color: var(--color-teal);
  line-height: 1;
  margin-bottom: 0.5rem;
  display: block;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.45;
}

.incien-footer-note {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
  font-size: 0.9375rem;
  color: var(--color-muted);
  max-width: 640px;
}

.incien-logo-small {
  height: 24px;
  width: auto;
  flex-shrink: 0;
}

/* =====================================================
   6. JAK TO PROBÍHÁ
   ===================================================== */
#proces {
  background: var(--color-white);
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 680px;
  margin-top: 3rem;
}

.process-step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--color-border);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.process-step.visible {
  opacity: 1;
  transform: translateY(0);
}
.process-step:last-child {
  border-bottom: none;
}

.step-number {
  font-size: 1.875rem;
  font-weight: 200;
  color: var(--color-teal);
  line-height: 1;
  padding-top: 4px;
}

.step-content h3 {
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--color-purple);
  margin-bottom: 0.375rem;
}

.step-content p {
  font-size: 0.9375rem;
  color: var(--color-muted);
  margin: 0;
  line-height: 1.6;
}

/* =====================================================
   7. NABÍDKA — BALÍČKY
   ===================================================== */
#nabidka {
  background: var(--color-light);
}

.pricing-intro {
  font-size: 1.0625rem;
  color: var(--color-muted);
  max-width: var(--content-max);
  margin-bottom: 3rem;
}

/* Layout: 1 hlavní + 2 vedlejší v řadě */
.pricing-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr 1fr;
  gap: 24px;
  align-items: stretch;
}

/* Sdílené styly karet */
.pricing-card {
  background: var(--color-white);
  border-radius: 10px;
  padding: 36px 32px;
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
}

.pricing-card .btn,
.pricing-card-cta {
  margin-top: auto;
}

.pricing-card--thick {
  border-width: 1px;
  border-color: var(--color-border);
}

/* Hlavní karta — Implementace s průvodcem */
.pricing-card.main {
  border-color: var(--color-teal);
  border-width: 2px;
  padding: 44px 36px;
  position: relative;
}

.pricing-badge {
  display: inline-block;
  background: var(--color-teal);
  color: var(--color-white);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
  margin-bottom: 1.25rem;
}

.pricing-card h3 {
  font-size: 1.625rem;
  font-weight: 400;
  color: var(--color-purple);
  margin-bottom: 1.25rem;
}

.pricing-features {
  list-style: none;
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-features li {
  font-size: 0.9375rem;
  color: var(--color-muted);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-teal);
}

/* =====================================================
   CENY BALÍČKŮ — EDITOVATELNÉ
   (označeno komentářem pro snadné nalezení)
   ===================================================== */

.pricing-price {
  margin-bottom: 1.75rem;
}

.price-value {
  font-size: 1.875rem;
  font-weight: 400;
  color: var(--color-purple);
  display: block;
  line-height: 1.2;
}

.price-note {
  font-size: 0.8125rem;
  color: var(--color-muted);
  margin-top: 4px;
  display: block;
}

.pricing-desc {
  font-size: 0.9375rem;
  color: var(--color-muted);
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

/* Pod balíčky */
.pricing-footer {
  margin-top: 3rem;
  text-align: center;
  padding: 32px;
  border: 1px dashed var(--color-border);
  border-radius: 8px;
  font-size: 0.9375rem;
  color: var(--color-muted);
}
.pricing-footer strong {
  color: var(--color-purple);
  font-weight: 500;
}

/* =====================================================
   8. LEAD MAGNET
   ===================================================== */
#lead-magnet {
  background: var(--color-white);
}

.lead-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.lead-text h2 {
  margin-bottom: 1rem;
}

.lead-text p {
  color: var(--color-muted);
  font-size: 1.0625rem;
}

/* Formulář */
.lead-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-purple);
  letter-spacing: 0.02em;
}

.form-group input {
  font-family: var(--font);
  font-weight: 300;
  font-size: 0.9375rem;
  color: var(--color-text);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-group input:focus {
  border-color: var(--color-teal);
}
.form-group input::placeholder {
  color: #b0a8c8;
}

.form-note {
  font-size: 0.8125rem;
  color: var(--color-muted);
  margin-top: 4px;
}

/* =====================================================
   9. FAQ
   ===================================================== */
#faq {
  background: var(--color-light);
}

.faq-list {
  max-width: 760px;
  margin-top: 3rem;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}
.faq-item:first-child {
  border-top: 1px solid var(--color-border);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 0;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-purple);
  user-select: none;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font);
}

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--color-teal);
  transition: transform 0.25s;
  margin-top: 2px;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding-bottom: 24px;
  font-size: 0.9375rem;
  color: var(--color-text);
  line-height: 1.7;
  max-width: 640px;
}

.faq-item.open .faq-answer {
  display: block;
}

/* =====================================================
   10. ZÁVĚREČNÉ CTA
   ===================================================== */
#cta-final {
  background: var(--color-purple);
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}

.cta-final-img-wrap {
  position: absolute;
  top: 50%;
  left: 75%;
  transform: translate(-50%, -50%);
  width: 360px;
  height: 360px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(46, 188, 180, 0.35);
  box-shadow: 0 0 0 12px rgba(46, 188, 180, 0.08);
  pointer-events: none;
  user-select: none;
}

.cta-final-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
}

@media (max-width: 900px) {
  .cta-final-img-wrap { width: 240px; height: 240px; }
}
@media (max-width: 768px) {
  .cta-final-img-wrap { display: none; }
}

#cta-final h2 {
  color: var(--color-white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.25rem;
}

.cta-final-text {
  color: rgba(255,255,255,0.72);
  font-size: 1.0625rem;
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.cta-final-assurance {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  margin-top: 1.5rem;
}

.cta-final-alts {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 1.25rem;
  font-size: 0.875rem;
}

.cta-final-alts a {
  color: rgba(255,255,255,0.65);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cta-final-alts a:hover {
  color: var(--color-white);
}

/* =====================================================
   PATIČKA
   ===================================================== */
.site-footer {
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-logo {
  font-size: 1rem;
  font-weight: 300;
  color: var(--color-purple);
  text-decoration: none;
}
.footer-logo span { color: var(--color-teal); }

.footer-by {
  font-size: 0.8125rem;
  color: var(--color-muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--color-muted);
}
.footer-links a:hover { color: var(--color-purple); }

/* =====================================================
   COOKIE BANNER
   ===================================================== */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  box-shadow: 0 -4px 20px rgba(58,29,85,0.08);
  transform: translateY(100%);
  transition: transform 0.35s ease;
}
#cookie-banner.show {
  transform: translateY(0);
}

.cookie-text {
  font-size: 0.875rem;
  color: var(--color-muted);
  max-width: 640px;
  line-height: 1.55;
}
.cookie-text a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.btn-cookie {
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 0.875rem;
  font-family: var(--font);
  font-weight: 400;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.2s;
}
.btn-cookie-accept {
  background: var(--color-teal);
  color: white;
  border-color: var(--color-teal);
}
.btn-cookie-accept:hover { background: #26a8a0; }
.btn-cookie-reject {
  background: transparent;
  color: var(--color-muted);
  border-color: var(--color-border);
}
.btn-cookie-reject:hover { background: var(--color-light); }

/* =====================================================
   TOP BAR — odpočet
   ===================================================== */
.topbar-countdown {
  background: var(--color-purple);
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  font-size: 0.8125rem;
  padding: 8px 16px;
  letter-spacing: 0.02em;
}
.topbar-countdown strong {
  color: var(--color-teal);
  font-weight: 600;
}

/* =====================================================
   DEADLINE COUNTER — sekce Problém
   ===================================================== */
.deadline-counter {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 2.5rem auto 1rem;
}
.deadline-block {
  background: var(--color-purple);
  border-radius: 10px;
  padding: 16px 20px;
  min-width: 80px;
  text-align: center;
}
.deadline-num {
  display: block;
  font-size: 2rem;
  font-weight: 600;
  color: #FFD700;
  line-height: 1;
}
.deadline-label {
  display: block;
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 6px;
}
.deadline-caption {
  text-align: center;
  font-size: 0.875rem;
  color: var(--color-muted);
  margin-bottom: 2rem;
}
.deadline-caption strong {
  color: var(--color-purple);
}

@media (max-width: 480px) {
  .deadline-block { min-width: 60px; padding: 12px 10px; }
  .deadline-num { font-size: 1.5rem; }
}

/* =====================================================
   OBCHODNÍ PODMÍNKY — podstránka
   ===================================================== */
.terms-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: calc(72px + 64px) 24px 96px;
}

.terms-wrap h1 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 0.5rem;
}

.terms-subtitle {
  color: var(--color-muted);
  font-size: 0.9375rem;
  margin-bottom: 3rem;
}

.terms-section {
  margin-bottom: 2.5rem;
}

.terms-section h2 {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--color-purple);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-border);
}

.terms-section p,
.terms-section li {
  font-size: 0.9375rem;
  color: var(--color-text);
  line-height: 1.75;
}

.terms-section ul,
.terms-section ol {
  padding-left: 20px;
  margin-top: 0.5rem;
}

.terms-section li {
  margin-bottom: 0.375rem;
}

.terms-pdf-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--color-teal);
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-bottom: 2rem;
}

/* =====================================================
   POMOCNÉ TŘÍDY
   ===================================================== */
.placeholder-note {
  display: inline-block;
  background: #fff8e1;
  border: 1px solid #ffe082;
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 0.72rem;
  color: #7a6000;
  font-weight: 500;
  vertical-align: middle;
  margin-left: 6px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* =====================================================
   RESPONSIVITA — Tablet (≤900px)
   ===================================================== */
@media (max-width: 900px) {
  :root {
    --section-py: var(--section-py-mob);
  }

  .site-nav, .header-cta { display: none; }
  .hamburger { display: flex; }


  .pricing-layout {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .team-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  #ppwr-rozdil .tiles-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lead-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* =====================================================
   RESPONSIVITA — Mobil (≤600px)
   ===================================================== */
@media (max-width: 600px) {
  html { font-size: 16px; }

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

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    gap: 12px;
  }

  .cookie-actions {
    width: 100%;
    justify-content: flex-end;
  }

  #cta-final .cta-final-alts {
    flex-direction: column;
    gap: 8px;
  }

  .incien-footer-note {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =====================================================
   MODAL — Objednávka Handbook
   ===================================================== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(58, 29, 85, 0.6);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.modal-overlay.open {
  display: flex;
}
.modal-box {
  background: var(--color-white);
  border-radius: 14px;
  padding: 40px 36px;
  max-width: 480px;
  width: 100%;
  position: relative;
  box-shadow: 0 20px 60px rgba(58, 29, 85, 0.2);
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--color-muted);
  cursor: pointer;
  line-height: 1;
}
.modal-close:hover { color: var(--color-purple); }
.modal-box h3 {
  font-size: 1.375rem;
  color: var(--color-purple);
  margin-bottom: 0.5rem;
}
.modal-desc {
  color: var(--color-muted);
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
}
