*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal:       #00b4c8;
  --teal-dark:  #0098ab;
  --teal-deep:  #006d7a;
  --teal-light: #e0f7fa;
  --teal-pale:  #f0fbfc;
  --navy:       #0d1f2d;
  --navy-mid:   #1a3347;
  --ink:        #1c1c1c;
  --ink-soft:   #5a6472;
  --ink-muted:  #9aa3ad;
  --border:     #e2e8ec;
  --surface:    #f8fafb;
  --white:      #ffffff;
  --warn:       #FF6B9D;
  --warn-light: #fff0f6;
  --radius:     12px;
  --radius-lg:  20px;
  --font-head:  'Plus Jakarta Sans', sans-serif;
  --font-body:  'Inter', sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ══ NAV ══ */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 48px;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.nav-logo-mark {
  width: 34px; height: 34px; border-radius: 8px;
  background: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 12px; font-weight: 800;
  color: white; letter-spacing: 0.02em;
}
.nav-logo-text {
  font-family: var(--font-head); font-size: 16px; font-weight: 700;
  color: var(--navy); letter-spacing: 0.02em;
}
.nav-logo-divider {
  width: 1px; height: 20px; background: var(--border); margin: 0 4px;
}
.nav-logo-sub {
  font-size: 12px; color: var(--ink-muted); font-weight: 400;
}
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  font-size: 13px; font-weight: 500; color: var(--ink-soft);
  text-decoration: none; transition: color .2s;
}
.nav-links a:hover { color: var(--teal); }
.nav-cta {
  background: #FF6B9D !important; color: white !important;
  padding: 9px 20px; border-radius: 8px;
  font-weight: 600 !important; font-size: 13px !important;
  transition: background .2s, transform .15s !important;
}
.nav-cta:hover { background: #e0558a !important; transform: translateY(-1px); }

/* ══ CONTAINER ══ */
.container { max-width: 1100px; margin: 0 auto; padding: 0 48px; }
section { padding: 100px 0; }
section + section { border-top: 1px solid var(--border); }

/* ══ HERO ══ */
.hero {
  background: var(--navy);
  position: relative; overflow: hidden;
  padding: 0;
}
.hero-bg-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 70% 50%, rgba(0,180,200,.12) 0%, transparent 60%),
    radial-gradient(circle at 20% 80%, rgba(0,180,200,.07) 0%, transparent 50%);
  pointer-events: none;
}
.hero-grid-overlay {
  position: absolute; inset: 0; opacity: .04;
  background-image:
    linear-gradient(rgba(0,180,200,1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,180,200,1) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-inner {
  max-width: 1100px; margin: 0 auto; padding: 80px 48px 56px;
  display: grid; grid-template-columns: 1fr 360px; gap: 64px;
  align-items: end;
}
.hero-left { padding-bottom: 80px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(0,180,200,.35);
  background: rgba(0,180,200,.1);
  color: var(--teal); border-radius: 100px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 6px 14px;
  margin-bottom: 32px;
}
.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--teal);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

h1 {
  font-family: var(--font-head);
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: white;
  margin-bottom: 24px;
}
h1 .accent { color: var(--teal); }
h1 .accent-line {
  position: relative; display: inline-block;
}
h1 .accent-line::after {
  content: '';
  position: absolute; left: 0; bottom: -4px;
  width: 100%; height: 3px;
  background: var(--teal);
  border-radius: 2px;
}

.hero-sub {
  font-size: 18px; line-height: 1.7;
  color: rgba(255,255,255,.65);
  max-width: 540px; margin-bottom: 44px;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.btn-primary {
  background: #FF6B9D; color: white;
  padding: 14px 26px; border-radius: 10px;
  font-size: 15px; font-weight: 600; text-decoration: none;
  transition: background .2s, transform .15s, box-shadow .2s;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 20px rgba(255,107,157,.4);
}
.btn-primary:hover {
  background: #e0558a; transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,107,157,.5);
}
.btn-ghost {
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.85);
  padding: 14px 26px; border-radius: 10px; border: 1px solid rgba(255,255,255,.15);
  font-size: 15px; font-weight: 500; text-decoration: none;
  transition: background .2s, border-color .2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-ghost:hover { background: rgba(255,255,255,.13); border-color: rgba(255,255,255,.3); }

/* HERO CARD */
.hero-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px 28px 36px;
  box-shadow: 0 -4px 40px rgba(0,0,0,.3);
  align-self: end;
}
.hcard-tag {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 20px;
  display: flex; align-items: center; gap: 8px;
}
.hcard-tag::before {
  content: ''; width: 20px; height: 2px; background: var(--teal); border-radius: 1px;
}
.hcard-price {
  display: flex; align-items: baseline; gap: 6px; margin-bottom: 8px;
}
.hcard-amount {
  font-family: var(--font-head); font-size: 48px; font-weight: 800;
  color: var(--navy); line-height: 1;
}
.hcard-currency { font-size: 22px; font-weight: 600; color: var(--navy); }
.hcard-vat { font-size: 13px; color: var(--ink-muted); margin-bottom: 24px; }

.hcard-divider { height: 1px; background: var(--border); margin: 20px 0; }

.hcard-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.hcard-list li {
  font-size: 13.5px; color: var(--ink-soft);
  display: flex; gap: 10px; align-items: flex-start; line-height: 1.45;
}
.hcard-list li .ck {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--teal-light); color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; flex-shrink: 0; margin-top: 1px;
}

.hcard-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px;
}
.hcard-stat {
  background: var(--surface); border-radius: 8px; padding: 12px 14px;
}
.hcard-stat-val { font-family: var(--font-head); font-size: 14px; font-weight: 700; color: var(--warn); margin-bottom: 2px; }
.hcard-stat-lbl { font-size: 11px; color: var(--ink-muted); line-height: 1.35; }

.hcard-urgent {
  background: var(--warn-light); color: var(--warn);
  border-radius: 8px; padding: 10px 14px;
  font-size: 12px; font-weight: 600;
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 20px;
}

.btn-card {
  width: 100%; background: #FF6B9D; color: white;
  padding: 14px; border-radius: 10px; border: none; cursor: pointer;
  font-family: var(--font-body); font-size: 15px; font-weight: 600;
  text-align: center; text-decoration: none; display: block;
  transition: background .2s; box-shadow: 0 4px 16px rgba(255,107,157,.35);
}
.btn-card:hover { background: #e0558a; }

/* ══ SECTION HEADERS ══ */
.eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--teal);
  display: flex; align-items: center; gap: 10px; margin-bottom: 18px;
}
.eyebrow::before { content: ''; width: 24px; height: 2px; background: var(--teal); border-radius: 1px; }
h2 {
  font-family: var(--font-head); font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800; line-height: 1.1; letter-spacing: -0.02em;
  color: var(--navy); margin-bottom: 16px;
}
.section-lead {
  font-size: 17px; color: var(--ink-soft); line-height: 1.65;
  max-width: 620px; margin-bottom: 56px;
}

/* ══ WHY CARDS ══ */
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.why-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
  position: relative; overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.why-card:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,.08); }
.why-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--teal); border-radius: 3px 3px 0 0;
  transform: scaleX(0); transition: transform .3s;
}
.why-card:hover::before { transform: scaleX(1); }
.why-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--teal-light); display: flex; align-items: center;
  justify-content: center; font-size: 22px; margin-bottom: 20px;
}
.why-card h3 { font-family: var(--font-head); font-size: 17px; font-weight: 700; margin-bottom: 10px; color: var(--navy); }
.why-card p { font-size: 14px; color: var(--ink-soft); line-height: 1.65; }

/* ══ TIMELINE ══ */
.timeline { position: relative; padding-left: 0; }
.tl-items { display: flex; flex-direction: column; gap: 0; }
.tl-item {
  display: grid; grid-template-columns: 148px 40px 1fr;
  gap: 0 0; align-items: stretch;
}
.tl-date-col {
  padding: 32px 24px 32px 0; text-align: right;
  display: flex; flex-direction: column; justify-content: flex-start; padding-top: 36px;
}
.tl-date {
  font-family: var(--font-head); font-size: 13px; font-weight: 700;
  color: var(--navy); line-height: 1.3;
}
.tl-year { font-size: 11px; color: var(--ink-muted); font-weight: 400; }

.tl-spine {
  display: flex; flex-direction: column; align-items: center; position: relative;
}
.tl-dot {
  width: 14px; height: 14px; border-radius: 50%;
  background: white; border: 2px solid var(--border);
  flex-shrink: 0; margin-top: 34px; z-index: 1; position: relative;
  transition: border-color .2s, background .2s;
}
.tl-line {
  width: 2px; background: var(--border); flex: 1;
}
.tl-item:last-child .tl-line { display: none; }
.tl-item.hot .tl-dot { background: var(--teal); border-color: var(--teal); box-shadow: 0 0 0 4px rgba(0,180,200,.2); }
.tl-item.urgent .tl-dot { background: var(--warn); border-color: var(--warn); box-shadow: 0 0 0 4px rgba(224,90,43,.2); }
.tl-item.hot .tl-date, .tl-item.urgent .tl-date { color: var(--teal-deep); }
.tl-item.urgent .tl-date { color: var(--warn); }

.tl-content {
  padding: 24px 0 24px 28px; border-left: none;
}
.tl-tag {
  display: inline-flex; font-size: 10px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 20px; margin-bottom: 10px;
}
.tag-live { background: var(--teal-light); color: var(--teal-deep); }
.tag-critical { background: var(--warn-light); color: var(--warn); }
.tag-design { background: #fff3e0; color: #d07020; }
.tag-future { background: #f0f4f8; color: var(--ink-soft); }

.tl-content h3 { font-family: var(--font-head); font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.tl-content p { font-size: 14px; color: var(--ink-soft); line-height: 1.7; max-width: 640px; }

/* ══ AGENDA ══ */
.agenda-wrap {
  display: grid; grid-template-columns: repeat(2,1fr);
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border);
}
.agenda-item {
  padding: 24px 28px; background: white;
  border-right: 1px solid var(--border); border-bottom: 1px solid var(--border);
  display: flex; gap: 18px;
  transition: background .15s;
}
.agenda-item:hover { background: var(--teal-pale); }
.agenda-item:nth-child(even) { border-right: none; }
.agenda-item:nth-last-child(-n+2) { border-bottom: none; }
.agenda-num {
  font-family: var(--font-head); font-size: 28px; font-weight: 800;
  color: var(--teal-light); line-height: 1; flex-shrink: 0; width: 28px;
  transition: color .15s;
}
.agenda-item:hover .agenda-num { color: var(--teal); }
.agenda-text h4 { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.agenda-text p { font-size: 13px; color: var(--ink-soft); line-height: 1.55; }

/* ══ OUTCOMES ══ */
.outcomes-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.outcome-card {
  background: var(--teal-deep); color: white;
  border-radius: var(--radius-lg); padding: 32px;
  display: flex; gap: 20px; align-items: flex-start;
  transition: transform .2s;
}
.outcome-card:hover { transform: translateY(-2px); }
.outcome-n {
  font-family: var(--font-head); font-size: 40px; font-weight: 800;
  color: rgba(255,255,255,.15); line-height: 1; flex-shrink: 0;
}
.outcome-card h3 { font-family: var(--font-head); font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.outcome-card p { font-size: 14px; color: rgba(255,255,255,.65); line-height: 1.6; }

/* ══ FOR WHOM ══ */
.audience-section { background: var(--navy); }
.audience-section .eyebrow { color: var(--teal); }
.audience-section h2 { color: white; }
.audience-section .section-lead { color: rgba(255,255,255,.55); }
.audience-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 36px; }
.aud-item {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius); padding: 20px 22px;
  display: flex; align-items: center; gap: 14px;
  font-size: 14px; font-weight: 500; color: rgba(255,255,255,.85);
  transition: background .2s;
}
.aud-item:hover { background: rgba(0,180,200,.12); border-color: rgba(0,180,200,.3); }
.aud-item .ico { font-size: 22px; flex-shrink: 0; }
.audience-quote {
  border-left: 3px solid var(--teal); padding: 20px 28px;
  background: rgba(0,180,200,.08); border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 16px; color: rgba(255,255,255,.7); font-style: italic; line-height: 1.65;
}
.audience-quote strong { color: var(--teal); font-style: normal; }

/* ══ SPEAKERS ══ */
.speakers-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.speaker-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
  display: flex; gap: 22px; align-items: flex-start;
  transition: box-shadow .2s;
}
.speaker-card:hover { box-shadow: 0 4px 24px rgba(0,0,0,.08); }
.speaker-av {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--teal-light); flex-shrink: 0;
  overflow: hidden; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 22px; font-weight: 800; color: var(--teal);
  border: 3px solid var(--teal-light);
}
.speaker-av img { width: 100%; height: 100%; object-fit: cover; }
.speaker-name { font-family: var(--font-head); font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.speaker-role { font-size: 12px; color: var(--teal); font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 12px; }
.speaker-bio { font-size: 13px; color: var(--ink-soft); line-height: 1.7; }
.incien-strip {
  margin-top: 40px;
  background: var(--teal); border-radius: var(--radius-lg);
  padding: 32px 36px; display: flex; gap: 24px; align-items: center; color: white;
}
.incien-icon {
  width: 56px; height: 56px; border-radius: 12px;
  background: rgba(255,255,255,.15); display: flex; align-items: center;
  justify-content: center; font-family: var(--font-head); font-size: 13px;
  font-weight: 800; letter-spacing: .05em; flex-shrink: 0;
}
.incien-strip p { font-size: 14px; color: rgba(255,255,255,.85); line-height: 1.7; }
.incien-strip strong { color: white; }

/* ══ REGISTRATION ══ */
.reg-section { background: var(--surface); }
.reg-layout { display: grid; grid-template-columns: 1fr 440px; gap: 64px; align-items: start; }

.reg-left h2 { margin-bottom: 8px; }
.price-display {
  font-family: var(--font-head); font-size: 68px; font-weight: 800;
  color: var(--navy); line-height: 1; margin: 24px 0 4px;
  display: flex; align-items: baseline; gap: 8px;
}
.price-display sup { font-size: 28px; margin-right: 4px; }
.price-sub { font-size: 13px; color: var(--ink-muted); margin-bottom: 32px; }
.reg-checklist { list-style: none; display: flex; flex-direction: column; gap: 13px; margin-bottom: 36px; }
.reg-checklist li { display: flex; gap: 12px; font-size: 15px; color: var(--ink-soft); align-items: flex-start; }
.reg-checklist li .ck2 {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--teal); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; flex-shrink: 0; margin-top: 1px;
}
.ph-box {
  background: white; border: 1px dashed var(--border);
  border-radius: var(--radius); padding: 20px 22px;
  font-size: 13px; color: var(--ink-muted); line-height: 1.7;
}
.ph-box strong { color: var(--ink-soft); display: block; margin-bottom: 4px; }

.form-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px;
  box-shadow: 0 2px 4px rgba(0,0,0,.04), 0 12px 40px rgba(0,0,0,.07);
}
.form-card-title { font-family: var(--font-head); font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.form-card-sub { font-size: 13px; color: var(--ink-muted); margin-bottom: 28px; }
.frow { margin-bottom: 18px; }
.frow label {
  display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.07em;
  text-transform: uppercase; color: var(--ink-soft); margin-bottom: 8px;
}
.frow input, .frow select {
  width: 100%; padding: 12px 15px;
  border: 1.5px solid var(--border); border-radius: 9px;
  font-family: var(--font-body); font-size: 14px; color: var(--ink);
  background: white; outline: none; transition: border-color .15s, box-shadow .15s;
}
.frow input:focus, .frow select:focus {
  border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0,180,200,.12);
}
.frow-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.radio-row { display: flex; gap: 20px; padding-top: 2px; }
.rl { display: flex; align-items: center; gap: 8px; font-size: 14px; cursor: pointer; color: var(--ink-soft); }
.rl input[type=radio] { accent-color: var(--teal); width: 16px; height: 16px; }
.cond {
  display: none; margin-top: 14px; padding: 14px;
  background: var(--surface); border-radius: 8px;
}
.btn-submit {
  width: 100%; background: #FF6B9D; color: white;
  padding: 16px; border-radius: 10px; border: none; cursor: pointer;
  font-family: var(--font-head); font-size: 16px; font-weight: 700;
  transition: background .2s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(255,107,157,.3);
}
.btn-submit:hover { background: #e0558a; box-shadow: 0 6px 22px rgba(255,107,157,.4); }
.f-note { font-size: 11px; color: var(--ink-muted); text-align: center; margin-top: 12px; line-height: 1.6; }

/* IČO/DIČ conditional row */
.invoice-toggle-row {
  margin-bottom: 18px;
}
.invoice-toggle-label {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--ink-soft); cursor: pointer;
}
.invoice-toggle-label input[type=checkbox] {
  accent-color: var(--teal); width: 16px; height: 16px; flex-shrink: 0;
}
#icodicRow { display: none; }

/* ══ LEAD MAGNET ══ */
.lm-section {
  background: var(--teal); padding: 72px 0;
  border-top: none;
}
.lm-inner { display: grid; grid-template-columns: 1fr auto; gap: 64px; align-items: center; }
.lm-section .eyebrow { color: rgba(255,255,255,.6); }
.lm-section .eyebrow::before { background: rgba(255,255,255,.4); }
.lm-section h2 { color: white; margin-bottom: 10px; }
.lm-section p { color: rgba(255,255,255,.7); font-size: 16px; }
.lm-form { display: flex; gap: 10px; }
.lm-input {
  padding: 13px 18px; border-radius: 9px;
  border: 1.5px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.12); color: white;
  font-family: var(--font-body); font-size: 14px; outline: none;
  width: 270px; transition: border-color .15s;
}
.lm-input::placeholder { color: rgba(255,255,255,.45); }
.lm-input:focus { border-color: rgba(255,255,255,.6); }
.lm-btn {
  background: white; color: var(--teal-deep);
  padding: 13px 22px; border-radius: 9px; border: none;
  font-family: var(--font-head); font-size: 14px; font-weight: 700;
  cursor: pointer; white-space: nowrap; transition: opacity .2s;
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
}
.lm-btn:hover { opacity: .92; }
.lm-notice { font-size: 11px; color: rgba(255,255,255,.4); margin-top: 10px; }

/* ══ AUDIT ══ */
.audit-card {
  background: var(--navy); border-radius: var(--radius-lg);
  padding: 48px; display: grid; grid-template-columns: 1fr 300px; gap: 48px; align-items: center;
  position: relative; overflow: hidden;
}
.audit-card::before {
  content: ''; position: absolute; right: -60px; top: -60px;
  width: 240px; height: 240px; border-radius: 50%;
  background: rgba(0,180,200,.08); pointer-events: none;
}
.audit-card .eyebrow { color: var(--teal); }
.audit-card h3 { font-family: var(--font-head); font-size: 30px; font-weight: 800; color: white; margin-bottom: 12px; }
.audit-card p { font-size: 15px; color: rgba(255,255,255,.6); line-height: 1.65; margin-bottom: 28px; }
.audit-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.audit-list li { font-size: 14px; color: rgba(255,255,255,.65); display: flex; gap: 10px; align-items: flex-start; }
.audit-list li::before { content: '→'; color: var(--teal); flex-shrink: 0; }
.audit-cta-col { display: flex; flex-direction: column; gap: 12px; }
.btn-white {
  background: white; color: var(--navy);
  padding: 16px 24px; border-radius: 10px; text-align: center;
  font-family: var(--font-head); font-size: 15px; font-weight: 700;
  text-decoration: none; transition: opacity .2s;
  display: block;
}
.btn-white:hover { opacity: .9; }
.audit-note { font-size: 12px; color: rgba(255,255,255,.35); text-align: center; line-height: 1.6; }

/* ══ FAQ ══ */
.faq-item {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: box-shadow .2s;
}
.faq-item[open] { box-shadow: 0 2px 12px rgba(0,0,0,.06); }
.faq-item + .faq-item { margin-top: 6px; }
.faq-q {
  font-family: var(--font-head); font-size: 15px; font-weight: 700;
  color: var(--navy); padding: 20px 24px;
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  transition: background .15s;
}
.faq-q:hover { background: var(--teal-pale); }
.faq-q::after {
  content: '+'; font-size: 20px; font-weight: 400;
  color: var(--teal); flex-shrink: 0; transition: transform .2s;
}
.faq-item[open] .faq-q::after { transform: rotate(45deg); }
.faq-item[open] .faq-q { background: var(--teal-pale); color: var(--teal-deep); border-bottom: 1px solid var(--border); }
.faq-a {
  padding: 18px 24px; font-size: 14px; color: var(--ink-soft);
  line-height: 1.75;
}
.faq-a strong { color: var(--ink); }

/* ══ FOOTER ══ */
footer {
  background: var(--navy); padding: 40px 0; border-top: none;
}
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-logo-mark {
  width: 32px; height: 32px; border-radius: 7px;
  background: var(--teal); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 11px; font-weight: 800; color: white;
}
.footer-brand-name { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: white; }
.footer-note { font-size: 12px; color: rgba(255,255,255,.3); text-align: center; max-width: 400px; line-height: 1.6; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,.3); }

/* ══ ANIMATIONS ══ */
@keyframes fadeUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
.hero h1 { animation: fadeUp .65s .05s ease both; }
.hero-sub { animation: fadeUp .65s .15s ease both; }
.hero-actions { animation: fadeUp .65s .25s ease both; }
.hero-card { animation: fadeUp .7s .2s ease both; }

/* ══ RESPONSIVE ══ */
@media (max-width: 960px) {
  nav { padding: 0 24px; }
  .hero-inner, .reg-layout, .lm-inner, .audit-card { grid-template-columns: 1fr; }
  .container { padding: 0 24px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .outcomes-grid, .speakers-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr 1fr; }
  .hero-left { padding-bottom: 0; }
  .hero-inner { padding-bottom: 48px; }
  .tl-item { grid-template-columns: 90px 36px 1fr; }
}

@media (max-width: 640px) {
  /* Nav CTA – zkrátit text na mobilu */
  .nav-cta { padding: 7px 12px; font-size: 12px !important; }

  /* Agenda – čísla se neořezávají */
  .agenda-num { width: 32px; font-size: 24px; }

  /* Lead magnet inline – skládáme pod sebe */
  #lmFormInline { flex-direction: column; align-items: stretch; }
  #lmFormInline input[type="email"] { width: 100% !important; }
  #lmFormInline button { width: 100%; }

  /* Hlavní lead magnet formulář */
  .lm-form { flex-direction: column; }
  .lm-input { width: 100% !important; }
  .lm-btn { width: 100%; }

  /* INCIEN stats – 2×2 místo 4×1 */
  .incien-stats { grid-template-columns: 1fr 1fr !important; }
}
