/* ══════════════════════════════════════════
   REKLAMA OD ADAMA — style.css
══════════════════════════════════════════ */

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

:root {
  --blue:       #1a56db;
  --blue-dk:    #1240a8;
  --blue-lt:    #dbeafe;
  --orange:     #f97316;
  --orange-dk:  #ea6a04;
  --dark:       #0f172a;
  --dark2:      #1e293b;
  --dark3:      #334155;
  --mid:        #64748b;
  --light:      #f1f5f9;
  --lighter:    #f8fafc;
  --white:      #ffffff;
  --border:     #e2e8f0;
  --green:      #16a34a;
  --green-lt:   #dcfce7;
  --red:        #dc2626;
  --yellow:     #d97706;
  --r:          12px;
  --r-lg:       20px;
  --r-sm:       8px;
  --sh:         0 4px 16px rgba(0,0,0,.09);
  --sh-lg:      0 20px 60px rgba(0,0,0,.13);
  --sh-xl:      0 32px 80px rgba(0,0,0,.19);
  --t:          .2s ease;
  --font:       'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --uh:         44px;
  --nh:         68px;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); color: var(--dark); background: var(--white); line-height: 1.65; -webkit-font-smoothing: antialiased; }
a { color: var(--blue); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--blue-dk); }
img { max-width: 100%; display: block; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; font-family: var(--font); font-weight: 600;
  border-radius: var(--r-sm); border: 2px solid transparent;
  cursor: pointer; text-decoration: none; white-space: nowrap;
  line-height: 1.2; padding: 12px 24px; font-size: .95rem;
  transition: all var(--t);
}
.btn-large { padding: 16px 32px; font-size: 1.05rem; }
.btn-full  { width: 100%; padding: 14px 24px; font-size: 1rem; }

.btn-primary { background: var(--blue); color: var(--white); }
.btn-primary:hover { background: var(--blue-dk); color: var(--white); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(26,86,219,.3); }

.btn-accent { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn-accent:hover { background: var(--orange-dk); color: var(--white); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(249,115,22,.4); }

.btn-outline { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-outline:hover { background: var(--blue); color: var(--white); }

.btn-outline-sm { display: inline-flex; align-items: center; padding: 10px 20px; background: transparent; color: var(--blue); border: 2px solid var(--blue); border-radius: var(--r-sm); font-weight: 600; font-size: .88rem; transition: all var(--t); }
.btn-outline-sm:hover { background: var(--blue); color: var(--white); }

.btn-nav { background: var(--blue); color: var(--white) !important; padding: 9px 20px; font-size: .88rem; border-radius: var(--r-sm); font-weight: 600; }
.btn-nav:hover { background: var(--blue-dk); }

.btn-ghost-light { color: rgba(255,255,255,.9); border: 2px solid rgba(255,255,255,.3); background: transparent; }
.btn-ghost-light:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6); color: var(--white); }

.btn-hero { flex-direction: column; gap: 4px; padding: 18px 40px; font-size: 1.1rem; font-weight: 700; border-radius: var(--r); }
.btn-sub  { font-size: .73rem; font-weight: 400; opacity: .85; }

/* ── Sections ── */
.section-tag {
  display: inline-block; background: var(--blue-lt); color: var(--blue);
  font-size: .72rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 100px; margin-bottom: 14px;
}
.section-tag.light { background: rgba(255,255,255,.15); color: rgba(255,255,255,.9); }
.section-h2 { font-size: clamp(1.5rem, 3.5vw, 2.35rem); font-weight: 800; line-height: 1.2; color: var(--dark); margin-bottom: 14px; }
.section-desc { font-size: 1.02rem; color: var(--mid); max-width: 600px; margin-bottom: 44px; line-height: 1.65; }

/* ══════════════════════════════════════════
   URGENCY BAR
══════════════════════════════════════════ */
.urgency-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1100;
  background: var(--orange); color: var(--white);
  height: var(--uh); display: flex; align-items: center; justify-content: center;
  font-size: .84rem; font-weight: 500; padding: 0 48px 0 20px;
  transition: transform var(--t);
}
.urgency-bar.hidden { transform: translateY(-100%); }
.urgency-inner { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; justify-content: center; }
.urgency-dot { width: 8px; height: 8px; background: rgba(255,255,255,.9); border-radius: 50%; flex-shrink: 0; animation: blink 1.8s infinite; }
@keyframes blink { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:.4; transform:scale(.7); } }
.urgency-cta { background: rgba(255,255,255,.2); color: var(--white); padding: 4px 14px; border-radius: 100px; font-weight: 700; font-size: .8rem; border: 1px solid rgba(255,255,255,.4); transition: background var(--t); white-space: nowrap; }
.urgency-cta:hover { background: rgba(255,255,255,.35); color: var(--white); }
.urgency-close { position: absolute; right: 14px; background: none; border: none; color: rgba(255,255,255,.8); font-size: 1.4rem; cursor: pointer; padding: 4px 8px; line-height: 1; transition: color var(--t); }
.urgency-close:hover { color: var(--white); }

/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
.navbar {
  position: fixed; top: var(--uh); left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,.96); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border); transition: box-shadow var(--t), top var(--t);
}
.navbar.urgency-hidden { top: 0; }
.navbar.scrolled { box-shadow: var(--sh); }
.nav-inner { display: flex; align-items: center; height: var(--nh); gap: 24px; }
.logo { font-size: 1.2rem; font-weight: 800; color: var(--dark); letter-spacing: -.02em; }
.logo span { color: var(--orange); }
.nav-links { display: flex; gap: 22px; list-style: none; margin-left: auto; }
.nav-links a { color: var(--dark3); font-size: .86rem; font-weight: 500; transition: color var(--t); }
.nav-links a:hover, .nav-links a.active { color: var(--blue); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; margin-left: auto; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--dark); border-radius: 2px; transition: all var(--t); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  position: relative;
  padding-top: calc(var(--uh) + var(--nh) + 80px);
  padding-bottom: 100px;
  overflow: hidden; background: var(--dark);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(26,86,219,.6) 0%, transparent 70%),
    radial-gradient(ellipse 45% 45% at 80% 65%, rgba(249,115,22,.16) 0%, transparent 60%),
    linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
}
.hero-inner { position: relative; text-align: center; max-width: 800px; margin: 0 auto; }
.hero-tagline { display: inline-flex; align-items: center; gap: 10px; background: rgba(249,115,22,.14); border: 1px solid rgba(249,115,22,.34); color: #fed7aa; font-size: .84rem; font-weight: 600; padding: 7px 18px; border-radius: 100px; margin-bottom: 28px; letter-spacing: .01em; }
.hero-tagline-sep { width: 1px; height: 14px; background: rgba(249,115,22,.4); }
.hero-h1 { font-size: clamp(2rem, 5.5vw, 3.4rem); font-weight: 900; line-height: 1.1; color: var(--white); margin-bottom: 22px; letter-spacing: -.03em; }
.hero-h1 .highlight { background: linear-gradient(135deg, #60a5fa 30%, #f97316 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-sub { font-size: 1.1rem; line-height: 1.7; color: rgba(255,255,255,.72); max-width: 620px; margin: 0 auto 38px; }
.hero-cta-wrap { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; margin-bottom: 52px; }
.hero-tel { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,.75); font-size: .98rem; font-weight: 600; border-bottom: 1px solid rgba(255,255,255,.2); padding-bottom: 2px; transition: color var(--t), border-color var(--t); }
.hero-tel:hover { color: var(--white); border-color: rgba(255,255,255,.55); }
.hero-trust { display: flex; align-items: center; justify-content: center; gap: 36px; flex-wrap: wrap; }
.trust-item { text-align: center; }
.trust-num { display: inline; font-size: 1.85rem; font-weight: 900; color: var(--white); letter-spacing: -.04em; }
.trust-plus { font-size: 1.85rem; font-weight: 900; color: var(--white); }
.trust-lbl { display: block; font-size: .73rem; color: rgba(255,255,255,.48); text-transform: uppercase; letter-spacing: .06em; margin-top: 3px; }
.trust-sep { width: 1px; height: 38px; background: rgba(255,255,255,.1); }
.hero-disclaimer { font-size: .7rem; color: rgba(255,255,255,.3); margin-top: 20px; max-width: 480px; margin-left: auto; margin-right: auto; line-height: 1.5; }

/* ══════════════════════════════════════════
   PROOF BAR
══════════════════════════════════════════ */
.proof-bar { background: var(--light); border-bottom: 1px solid var(--border); padding: 18px 0; overflow: hidden; }
.proof-bar .container { display: flex; align-items: center; gap: 24px; flex-wrap: nowrap; overflow: hidden; }
.proof-bar-label { font-size: .73rem; font-weight: 700; color: var(--mid); text-transform: uppercase; letter-spacing: .08em; flex-shrink: 0; white-space: nowrap; }
/* ── Infinite marquee ── */
.proof-logos-wrap { overflow: hidden; flex: 1; min-width: 0; mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%); -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.proof-logos { display: flex; gap: 10px; align-items: center; width: max-content; animation: marquee 28s linear infinite; }
.proof-logos:hover { animation-play-state: paused; }
.proof-item { font-size: .78rem; font-weight: 700; color: var(--dark3); opacity: .55; padding: 4px 14px; border: 1px solid var(--border); border-radius: 6px; background: var(--white); white-space: nowrap; flex-shrink: 0; }

/* ══════════════════════════════════════════
   PROBLEM
══════════════════════════════════════════ */
.problem { padding: 92px 0; background: var(--white); }
.pain-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 44px; }
.pain-card { padding: 28px; border: 1px solid var(--border); border-radius: var(--r); background: var(--lighter); transition: all var(--t); }
.pain-card:hover { border-color: var(--orange); box-shadow: var(--sh); transform: translateY(-2px); }
.pain-n { font-size: 2.2rem; font-weight: 900; color: var(--border); letter-spacing: -.04em; margin-bottom: 12px; line-height: 1; transition: color var(--t); }
.pain-card:hover .pain-n { color: var(--orange); }
.pain-card h3 { font-size: .98rem; font-weight: 700; margin-bottom: 8px; color: var(--dark); }
.pain-card p { font-size: .88rem; color: var(--mid); line-height: 1.65; }

/* ══════════════════════════════════════════
   MID-CTA
══════════════════════════════════════════ */
.mid-cta { padding: 26px 0; background: var(--blue); }
.mid-cta.mid-cta-dark { background: var(--dark2); }
.mid-cta-in { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.mid-cta-text { display: flex; flex-direction: column; gap: 3px; }
.mid-cta-text strong { font-size: .98rem; color: var(--white); font-weight: 700; }
.mid-cta-text span { font-size: .85rem; color: rgba(255,255,255,.62); }
.mid-cta-btns { display: flex; gap: 10px; flex-wrap: wrap; }

/* ══════════════════════════════════════════
   SOLUTION
══════════════════════════════════════════ */
.solution { padding: 92px 0; background: var(--lighter); }
.solution-in { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.solution-text .section-h2 { margin-bottom: 18px; }
.solution-text p { color: var(--mid); margin-bottom: 16px; font-size: .98rem; line-height: 1.7; }
.benefits-list { list-style: none; margin: 22px 0 30px; display: flex; flex-direction: column; gap: 10px; }
.benefits-list li { display: flex; align-items: flex-start; gap: 11px; font-size: .93rem; color: var(--dark3); font-weight: 500; line-height: 1.45; }
.chk { display: inline-flex; align-items: center; justify-content: center; width: 21px; height: 21px; background: var(--green); color: white; border-radius: 50%; font-size: .68rem; flex-shrink: 0; margin-top: 1px; }
.solution-cards { display: flex; flex-direction: column; gap: 14px; }
.sol-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); padding: 18px 22px; box-shadow: var(--sh); transition: all var(--t); }
.sol-card:hover { transform: translateY(-2px); box-shadow: var(--sh-lg); border-color: var(--blue-lt); }
.sol-lbl { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--blue); margin-bottom: 6px; }
.sol-num { font-size: 1.7rem; font-weight: 900; color: var(--dark); letter-spacing: -.03em; margin-bottom: 3px; }
.sol-sub { font-size: .78rem; color: var(--mid); }
.sol-c2 { border-left: 3px solid var(--orange); }

/* ══════════════════════════════════════════
   STEPS
══════════════════════════════════════════ */
.steps-section { padding: 92px 0; background: var(--white); }
.steps-row { display: flex; align-items: flex-start; gap: 0; margin: 44px 0 36px; }
.step-box { flex: 1; padding: 28px 24px; background: var(--lighter); border: 1px solid var(--border); border-radius: var(--r); transition: all var(--t); }
.step-box:hover { border-color: var(--blue); box-shadow: var(--sh); }
.step-n { font-size: 2.4rem; font-weight: 900; color: var(--blue-lt); letter-spacing: -.04em; margin-bottom: 14px; line-height: 1; }
.step-box h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
.step-box p { font-size: .88rem; color: var(--mid); line-height: 1.65; margin-bottom: 14px; }
.step-badge { font-size: .76rem; font-weight: 600; color: var(--blue); background: var(--blue-lt); padding: 4px 12px; border-radius: 100px; display: inline-block; }
.step-arrow { width: 52px; flex-shrink: 0; height: 2px; background: linear-gradient(90deg, var(--border), var(--blue)); margin-top: 50px; position: relative; }
.step-arrow::after { content: ''; position: absolute; right: -1px; top: -4px; width: 0; height: 0; border-top: 5px solid transparent; border-bottom: 5px solid transparent; border-left: 8px solid var(--blue); }
.guarantee-row { display: flex; gap: 18px; align-items: flex-start; background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: var(--r); padding: 20px 26px; }
.guarantee-icon { color: var(--green); flex-shrink: 0; margin-top: 2px; }
.guarantee-row p { font-size: .93rem; color: #166534; line-height: 1.65; }

/* ══════════════════════════════════════════
   O MNE
══════════════════════════════════════════ */
.about { padding: 92px 0; background: var(--lighter); }
.about-in { display: grid; grid-template-columns: 280px 1fr; gap: 64px; align-items: start; }
.about-photo-col { display: flex; flex-direction: column; gap: 24px; }
.about-photo { width: 100%; aspect-ratio: 1; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-lg); }
.about-photo-img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.about-certs { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); padding: 18px 20px; }
.cert-title { font-size: .73rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--mid); margin-bottom: 12px; }
.cert-list { display: flex; flex-wrap: wrap; gap: 6px; }
.cert { font-size: .76rem; font-weight: 600; color: var(--blue); background: var(--blue-lt); padding: 3px 10px; border-radius: 100px; }
.about-motto { font-size: 1.05rem; font-weight: 700; color: var(--dark); font-style: italic; border-left: 3px solid var(--orange); padding-left: 16px; margin-bottom: 18px; line-height: 1.5; }
.about-text p { color: var(--mid); margin-bottom: 14px; font-size: .95rem; line-height: 1.7; }
.about-stats { display: flex; gap: 24px; flex-wrap: wrap; margin: 24px 0; }
.about-stat { display: flex; flex-direction: column; }
.astat-num { font-size: 1.5rem; font-weight: 900; color: var(--dark); letter-spacing: -.03em; }
.astat-lbl { font-size: .73rem; color: var(--mid); text-transform: uppercase; letter-spacing: .05em; }
.about-list { list-style: none; margin: 0 0 28px; display: flex; flex-direction: column; gap: 10px; }
.about-list li { display: flex; align-items: flex-start; gap: 11px; font-size: .9rem; color: var(--dark3); line-height: 1.45; }

/* ══════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════ */
.testimonials { padding: 92px 0; background: var(--white); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px; }
.testi-card { background: var(--lighter); border: 1px solid var(--border); border-radius: var(--r); padding: 24px; transition: all var(--t); display: flex; flex-direction: column; }
.testi-card:hover { box-shadow: var(--sh); transform: translateY(-2px); }
.testi-featured { border-color: var(--blue); background: var(--white); box-shadow: 0 0 0 3px rgba(26,86,219,.09); }
.testi-stars { color: #f59e0b; font-size: .98rem; letter-spacing: 2px; margin-bottom: 12px; }
.testi-text { font-size: .86rem; color: var(--dark3); line-height: 1.7; margin-bottom: 16px; flex: 1; }
.testi-text::before { content: '\201E'; font-size: 1.3rem; color: var(--border); line-height: 0; vertical-align: -0.35em; margin-right: 2px; }
.testi-author { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.testi-av { width: 38px; height: 38px; background: var(--blue); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: .82rem; flex-shrink: 0; }
.testi-name { font-weight: 700; font-size: .85rem; color: var(--dark); }
.testi-role { font-size: .76rem; color: var(--mid); }
.testi-badge { display: inline-block; background: var(--green-lt); color: #166534; font-size: .73rem; font-weight: 700; padding: 3px 11px; border-radius: 100px; margin-top: auto; }

/* ══════════════════════════════════════════
   PRICING
══════════════════════════════════════════ */
.pricing { padding: 92px 0; background: var(--lighter); }
.pricing-toggle { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 44px; }
.tog-lbl { font-size: .88rem; font-weight: 500; color: var(--mid); cursor: pointer; user-select: none; }
.tog-lbl.active { color: var(--dark); font-weight: 700; }
.tog-switch { width: 46px; height: 25px; background: var(--border); border-radius: 100px; padding: 3px; cursor: pointer; transition: background var(--t); }
.tog-switch.on { background: var(--blue); }
.tog-ball { width: 19px; height: 19px; background: white; border-radius: 50%; box-shadow: 0 1px 3px rgba(0,0,0,.12); transition: transform var(--t); }
.tog-switch.on .tog-ball { transform: translateX(21px); }
.tog-badge { background: var(--green-lt); color: #166534; font-size: .66rem; font-weight: 700; padding: 2px 8px; border-radius: 100px; margin-left: 3px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; margin-bottom: 28px; }
.p-card { background: var(--white); border: 2px solid var(--border); border-radius: var(--r-lg); overflow: hidden; transition: all var(--t); display: flex; flex-direction: column; }
.p-card:hover { box-shadow: var(--sh-lg); transform: translateY(-4px); }
.p-featured { border-color: var(--blue); transform: scale(1.03); box-shadow: 0 0 0 4px rgba(26,86,219,.09), var(--sh-lg); }
.p-featured:hover { transform: scale(1.03) translateY(-4px); }
.p-badge { background: var(--blue); color: white; font-size: .68rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; text-align: center; padding: 7px; }
.p-head { padding: 24px 24px 20px; border-bottom: 1px solid var(--border); }
.p-name { font-size: 1.15rem; font-weight: 800; color: var(--dark); margin-bottom: 3px; }
.p-desc { font-size: .82rem; color: var(--mid); margin-bottom: 16px; line-height: 1.4; }
.p-price { display: flex; align-items: flex-end; gap: 4px; margin-bottom: 6px; }
.p-amt { font-size: 2.3rem; font-weight: 900; color: var(--dark); letter-spacing: -.04em; line-height: 1; }
.p-cur { font-size: .86rem; color: var(--mid); font-weight: 500; margin-bottom: 4px; }
.p-note { font-size: .74rem; color: var(--mid); line-height: 1.4; }
.p-feats { list-style: none; padding: 20px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.p-feats li { display: flex; align-items: flex-start; gap: 9px; font-size: .86rem; color: var(--dark3); line-height: 1.4; }
.fc { color: var(--green); font-size: .95rem; flex-shrink: 0; margin-top: 1px; }
.fx { color: #cbd5e1; font-size: .85rem; flex-shrink: 0; margin-top: 1px; }
.feat-off { opacity: .38; }
.p-footer { padding: 4px 24px 22px; }
.p-footer .btn { width: 100%; }
.p-saving { font-size: .73rem; color: var(--green); text-align: center; padding-top: 8px; font-weight: 600; }

/* Individuální řešení */
.p-custom { background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%); border-radius: var(--r-lg); padding: 36px; margin-bottom: 24px; }
.p-custom-in { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.p-custom-tag { display: inline-block; background: rgba(249,115,22,.2); color: var(--orange); font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 4px 12px; border-radius: 100px; margin-bottom: 12px; border: 1px solid rgba(249,115,22,.3); }
.p-custom h3 { font-size: 1.3rem; font-weight: 800; color: var(--white); margin-bottom: 12px; line-height: 1.2; }
.p-custom p { font-size: .9rem; color: rgba(255,255,255,.62); line-height: 1.65; }
.p-custom-right { display: flex; flex-direction: column; gap: 20px; }
.p-custom-includes { display: flex; flex-direction: column; gap: 10px; }
.pci-item { display: flex; align-items: center; gap: 10px; font-size: .88rem; color: rgba(255,255,255,.82); }

/* Web addon */
.web-addon { background: var(--lighter); border: 2px dashed var(--border); border-radius: var(--r); padding: 24px 28px; margin-bottom: 0; }
.web-addon-in { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.web-addon h3 { font-size: 1.02rem; font-weight: 700; margin-bottom: 3px; }
.web-addon p { font-size: .86rem; color: var(--mid); }
.web-addon-right { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.web-addon-price { font-size: .86rem; color: var(--dark3); display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.web-addon-price span { font-weight: 700; color: var(--dark); }
.addon-or { font-size: .73rem !important; font-weight: 400 !important; color: var(--mid) !important; }
.pricing-note { font-size: .78rem; color: var(--mid); text-align: center; margin-top: 24px; line-height: 1.65; max-width: 660px; margin-left: auto; margin-right: auto; }

/* ══════════════════════════════════════════
   COMPARISON
══════════════════════════════════════════ */
.comparison { padding: 92px 0; background: var(--white); }
.cmp-wrap { overflow-x: auto; margin-top: 44px; border-radius: var(--r); box-shadow: var(--sh); }
.cmp-table { width: 100%; border-collapse: collapse; font-size: .86rem; min-width: 580px; }
.cmp-table th, .cmp-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--border); }
.cmp-table th { background: var(--dark); color: var(--white); font-weight: 700; font-size: .8rem; }
.cmp-table th.col-me { background: var(--blue); }
.cmp-table td.col-me { background: #eff6ff; font-weight: 600; }
.cmp-table tr:last-child td { border-bottom: none; }
.cmp-table tr:nth-child(even) td { background: var(--lighter); }
.cmp-table tr:nth-child(even) td.col-me { background: #dbeafe; }
.y { color: var(--green); font-size: 1rem; }
.n { color: var(--red); font-size: 1rem; }
.w { color: var(--yellow); font-size: .9rem; }

/* ══════════════════════════════════════════
   FORMULÁŘ
══════════════════════════════════════════ */
.form-section {
  padding: 92px 0;
  background: linear-gradient(135deg, #0c1225 0%, #192f80 50%, #0c1225 100%);
  position: relative; overflow: hidden;
}
.form-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 50% 80% at 20% 50%, rgba(249,115,22,.09) 0%, transparent 70%); pointer-events: none; }
.form-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; }
.form-left h2 { font-size: clamp(1.45rem, 2.8vw, 2.1rem); font-weight: 800; color: var(--white); line-height: 1.25; margin-bottom: 20px; }
.form-left p { color: rgba(255,255,255,.68); font-size: .93rem; margin-bottom: 12px; }
.audit-points { list-style: none; margin: 0 0 16px; display: flex; flex-direction: column; gap: 8px; }
.audit-points li { font-size: .86rem; color: rgba(255,255,255,.78); padding-left: 20px; position: relative; line-height: 1.5; }
.audit-points li::before { content: '\2192'; position: absolute; left: 0; color: var(--orange); font-weight: 700; font-size: .8rem; top: 1px; }
.audit-note { font-size: .78rem; color: rgba(255,255,255,.42); font-style: italic; }
.form-contact-alt { display: flex; align-items: center; gap: 10px; margin-top: 20px; flex-wrap: wrap; }
.form-contact-alt span { font-size: .85rem; color: rgba(255,255,255,.55); }
.form-tel { font-size: 1rem; font-weight: 700; color: var(--white); border-bottom: 1px solid rgba(255,255,255,.3); padding-bottom: 1px; transition: border-color var(--t); }
.form-tel:hover { border-color: rgba(255,255,255,.7); color: var(--white); }

/* Form card */
.form-card { background: var(--white); border-radius: var(--r-lg); padding: 34px; box-shadow: var(--sh-xl); }
.form-card-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 22px; flex-wrap: wrap; }
.form-card-head h3 { font-size: 1.15rem; font-weight: 800; color: var(--dark); }
.form-spots { background: #fef9c3; color: #854d0e; font-size: .72rem; font-weight: 700; padding: 3px 11px; border-radius: 100px; border: 1px solid #fde68a; white-space: nowrap; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.fg { margin-bottom: 12px; }
.fg label { display: block; font-size: .78rem; font-weight: 600; color: var(--dark3); margin-bottom: 4px; }
.fg input { width: 100%; padding: 10px 14px; border: 1.5px solid var(--border); border-radius: var(--r-sm); font-family: var(--font); font-size: .93rem; color: var(--dark); outline: none; transition: border-color var(--t), box-shadow var(--t); }
.fg input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(26,86,219,.1); }
.fg input::placeholder { color: #94a3b8; }
.fg input.err { border-color: var(--red); }
.ferr { display: block; font-size: .72rem; color: var(--red); margin-top: 3px; min-height: 15px; }

/* GDPR checkbox */
.gdpr-row { margin-top: 4px; }
.gdpr-label { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; font-size: .8rem; color: var(--mid); line-height: 1.5; }
.gdpr-label input[type="checkbox"] { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; accent-color: var(--blue); cursor: pointer; }
.gdpr-link { background: none; border: none; color: var(--blue); font-size: inherit; cursor: pointer; padding: 0; text-decoration: underline; font-family: var(--font); }
.gdpr-link:hover { color: var(--blue-dk); }

#submitBtn { margin-top: 8px; font-size: 1.02rem; font-weight: 700; padding: 15px 24px; }
#submitBtn:disabled { opacity: .65; cursor: not-allowed; transform: none; }
.form-fine { font-size: .71rem; color: var(--mid); text-align: center; margin-top: 9px; line-height: 1.5; }

/* Form success */
.form-ok { text-align: center; padding: 20px 4px; }
.form-ok-icon { width: 60px; height: 60px; background: var(--green-lt); color: var(--green); border-radius: 50%; font-size: 1.7rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-weight: 900; }
.form-ok h3 { font-size: 1.35rem; color: var(--dark); margin-bottom: 8px; }
.form-ok p { color: var(--mid); font-size: .93rem; line-height: 1.6; }

/* ══════════════════════════════════════════
   FAQ
══════════════════════════════════════════ */
.faq { padding: 92px 0; background: var(--white); }
.faq-list { margin-top: 44px; display: flex; flex-direction: column; gap: 9px; max-width: 760px; margin-left: auto; margin-right: auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; }
.faq-item.open { border-color: var(--blue); }
.faq-q { width: 100%; padding: 18px 22px; font-size: .9rem; font-weight: 600; color: var(--dark); cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 14px; background: var(--white); border: none; text-align: left; transition: background var(--t); font-family: var(--font); line-height: 1.4; }
.faq-q:hover { background: var(--lighter); }
.faq-item.open .faq-q { background: var(--lighter); color: var(--blue); }
.faq-arr { color: var(--mid); font-size: .7rem; transition: transform .25s ease; flex-shrink: 0; }
.faq-item.open .faq-arr { transform: rotate(180deg); color: var(--blue); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .32s ease, padding .32s ease; background: var(--lighter); }
.faq-a.open { max-height: 400px; padding: 4px 22px 18px; }
.faq-a p { font-size: .88rem; color: var(--mid); line-height: 1.7; }

/* ══════════════════════════════════════════
   OCHRANA OSOBNÍCH ÚDAJŮ
══════════════════════════════════════════ */
.privacy-section { padding: 72px 0; background: var(--lighter); border-top: 1px solid var(--border); }
.privacy-h { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
.privacy-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 36px; margin-bottom: 20px; }
.privacy-block { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); padding: 22px 24px; }
.privacy-block h3 { font-size: .95rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.privacy-block p { font-size: .85rem; color: var(--mid); line-height: 1.65; }
.privacy-note { font-size: .8rem; color: var(--mid); text-align: center; max-width: 580px; margin: 0 auto; line-height: 1.6; }

/* ══════════════════════════════════════════
   FINAL CTA
══════════════════════════════════════════ */
.final-cta { padding: 92px 0; background: linear-gradient(135deg, var(--blue-dk) 0%, var(--blue) 100%); }
.final-cta-in { text-align: center; max-width: 660px; margin: 0 auto; }
.final-cta h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 800; color: var(--white); line-height: 1.28; margin-bottom: 16px; }
.final-cta p { color: rgba(255,255,255,.76); font-size: .98rem; margin-bottom: 32px; line-height: 1.65; }
.final-btns { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }
.final-sub { font-size: .76rem; color: rgba(255,255,255,.42); letter-spacing: .05em; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer { background: var(--dark); padding-top: 60px; }
.footer-in { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 44px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.07); }
.footer-brand .logo { color: var(--white); margin-bottom: 10px; }
.footer-brand p { color: rgba(255,255,255,.38); font-size: .83rem; line-height: 1.65; margin-bottom: 6px; }
.footer-brand-name { color: rgba(255,255,255,.42) !important; font-size: .8rem !important; }
.footer-brand-name a { color: rgba(255,255,255,.5); transition: color var(--t); }
.footer-brand-name a:hover { color: var(--white); }
.footer h4 { color: rgba(255,255,255,.72); font-size: .74rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 14px; }
.footer-nav ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-nav a { color: rgba(255,255,255,.38); font-size: .83rem; transition: color var(--t); }
.footer-nav a:hover { color: var(--white); }
.footer-contact p { color: rgba(255,255,255,.38); font-size: .83rem; margin-bottom: 7px; line-height: 1.5; }
.footer-contact a { color: rgba(255,255,255,.52); transition: color var(--t); }
.footer-contact a:hover { color: var(--white); }
.footer-bottom { padding: 16px 0; text-align: center; }
.footer-bottom p { color: rgba(255,255,255,.26); font-size: .76rem; }
.footer-bottom a { color: rgba(255,255,255,.38); transition: color var(--t); }
.footer-bottom a:hover { color: rgba(255,255,255,.75); }

/* ══════════════════════════════════════════
   STICKY CTA
══════════════════════════════════════════ */
.sticky-cta { position: fixed; bottom: 24px; right: 22px; z-index: 900; display: flex; align-items: center; gap: 9px; opacity: 0; transform: translateY(18px); transition: opacity .35s ease, transform .35s ease; pointer-events: none; }
.sticky-cta.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.sticky-btn { display: inline-flex; align-items: center; background: var(--orange); color: var(--white); font-weight: 700; font-size: .88rem; padding: 12px 20px; border-radius: 100px; box-shadow: 0 8px 28px rgba(249,115,22,.48); transition: all var(--t); white-space: nowrap; }
.sticky-btn:hover { background: var(--orange-dk); color: var(--white); transform: translateY(-2px); box-shadow: 0 12px 34px rgba(249,115,22,.52); }
.sticky-tel { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; background: var(--dark); color: var(--white); border-radius: 50%; box-shadow: var(--sh-lg); transition: all var(--t); }
.sticky-tel:hover { background: var(--blue); color: var(--white); transform: translateY(-2px); }

/* ══════════════════════════════════════════
   GDPR MODAL
══════════════════════════════════════════ */
.gdpr-modal { position: fixed; inset: 0; z-index: 2000; background: rgba(15,23,42,.6); display: flex; align-items: center; justify-content: center; padding: 24px; backdrop-filter: blur(4px); }
.gdpr-modal-box { background: var(--white); border-radius: var(--r-lg); padding: 36px; max-width: 520px; width: 100%; position: relative; box-shadow: var(--sh-xl); }
.gdpr-modal-close { position: absolute; top: 16px; right: 16px; background: none; border: none; font-size: 1.4rem; cursor: pointer; color: var(--mid); padding: 4px 8px; line-height: 1; transition: color var(--t); }
.gdpr-modal-close:hover { color: var(--dark); }
.gdpr-modal-box h3 { font-size: 1.2rem; font-weight: 800; color: var(--dark); margin-bottom: 16px; }
.gdpr-modal-box p { font-size: .88rem; color: var(--mid); line-height: 1.7; margin-bottom: 12px; }
.gdpr-modal-box .btn { margin-top: 8px; }

/* ══════════════════════════════════════════
   FADE-IN
══════════════════════════════════════════ */
.fade-in { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto 28px; }
  .p-featured { transform: none; }
  .p-featured:hover { transform: translateY(-4px); }
  .solution-in { grid-template-columns: 1fr; gap: 40px; }
  .solution-cards { flex-direction: row; flex-wrap: wrap; }
  .sol-card { flex: 1; min-width: 160px; }
  .form-wrap { grid-template-columns: 1fr; gap: 44px; }
  .about-in { grid-template-columns: 220px 1fr; gap: 44px; }
  .footer-in { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .p-custom-in { grid-template-columns: 1fr; gap: 24px; }
  .privacy-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --uh: 52px; }
  .nav-links { display: none; }
  .btn-nav { display: none; }
  .hamburger { display: flex; }
  .navbar.menu-open .nav-links {
    display: flex; flex-direction: column; gap: 2px;
    position: absolute; top: var(--nh); left: 0; right: 0;
    background: white; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    padding: 14px 22px; box-shadow: var(--sh);
  }
  .navbar.menu-open .nav-links a { padding: 7px 0; display: block; }
  .hero { padding-top: calc(var(--uh) + var(--nh) + 56px); padding-bottom: 72px; }
  .hero-cta-wrap { flex-direction: column; align-items: center; }
  .hero-trust { gap: 18px; }
  .trust-sep { display: none; }
  .pain-grid { grid-template-columns: 1fr; }
  .steps-row { flex-direction: column; }
  .step-arrow { display: none; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-in { grid-template-columns: 1fr; gap: 28px; }
  .final-btns { flex-direction: column; align-items: center; }
  .proof-bar .container { flex-direction: column; align-items: flex-start; gap: 10px; overflow: hidden; }
  .proof-logos-wrap { width: 100%; }
  .web-addon-in { flex-direction: column; align-items: flex-start; }
  .mid-cta-in { flex-direction: column; gap: 14px; }
  .mid-cta-btns { flex-direction: column; }
  .about-in { grid-template-columns: 1fr; }
  .about-photo { max-width: 200px; margin: 0 auto; }
  .cmp-table th, .cmp-table td { padding: 11px 12px; font-size: .76rem; }
  .form-row-2 { grid-template-columns: 1fr; }
  .sticky-cta { bottom: 14px; right: 14px; }
  .urgency-inner { font-size: .76rem; }
  .form-card { padding: 22px; }
  .form-card-head { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-h1 { font-size: 1.8rem; }
  .section-h2 { font-size: 1.38rem; }
  .sticky-tel { display: none; }
  .about-stats { gap: 16px; }
}
