:root {
  --bg: #eafbfa;
  --bg-soft: #f5fdff;
  --surface: #fff;
  --surface-2: #f8fbfc;
  --text: #0f172a;
  --muted: #607086;
  --line: #dcebee;
  --accent: #0891b2;
  --accent-light: #22c3d6;
  --primary: #2563eb;
  --primary-hover: #1d4ed8;
  --success: #10b981;
  --shadow: 0 20px 60px rgba(15, 23, 42, .09);
  --shadow-sm: 0 8px 28px rgba(15, 23, 42, .07);
  --radius: 20px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 86px; }
body {
  margin: 0;
  color: var(--text);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.dark {
  --bg: #0b1824;
  --bg-soft: #0e1d2b;
  --surface: #08121d;
  --surface-2: #10202e;
  --text: #edf7ff;
  --muted: #9bb0c4;
  --line: #1b3548;
  --shadow: 0 20px 60px rgba(0, 0, 0, .28);
  --shadow-sm: 0 8px 28px rgba(0, 0, 0, .2);
}
body, .site-header, .service-card, .price-card, .portfolio-card, .benefit-card, details, .site-footer {
  transition: background-color .25s ease, color .25s ease, border-color .25s ease;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
img { max-width: 100%; }
.container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }
.section { padding: clamp(42px, 5.2vw, 76px) 0; scroll-margin-top: 86px; }
.skip-link { position: fixed; left: 16px; top: -60px; z-index: 1000; padding: 12px 18px; background: var(--text); color: var(--surface); border-radius: 10px; }
.skip-link:focus { top: 16px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(220,235,238,.8);
}
.dark .site-header { background: rgba(8,18,29,.82); }
.nav-wrap { height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-size: 25px; font-weight: 800; letter-spacing: -.8px; }
.brand img { width: 39px; height: 39px; }
.brand span span { color: var(--accent); }
.desktop-nav { display: flex; align-items: center; gap: 32px; margin-left: auto; }
.desktop-nav a { color: var(--muted); font-size: 14px; font-weight: 700; }
.desktop-nav a:hover { color: var(--accent); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.language-switcher { display: flex; align-items: center; gap: 3px; padding: 3px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); }
.language-button { display: inline-flex; align-items: center; gap: 4px; height: 32px; padding: 0 7px; border: 0; border-radius: 9px; color: var(--muted); background: transparent; cursor: pointer; font-size: 10px; font-weight: 800; }
.language-button img, .language-demo-tab img { width: 18px; height: 18px; object-fit: contain; }
.language-button.active { color: var(--accent); background: rgba(8,145,178,.09); }
.theme-toggle {
  width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 12px;
  background: var(--surface); color: var(--text); cursor: pointer; font-size: 20px;
}
.mobile-header-cta { display: none; }
.menu-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); padding: 10px; cursor: pointer; }
.menu-toggle span { display: block; height: 2px; margin: 4px 0; background: var(--text); }
.mobile-nav { display: none; padding: 10px 20px 20px; background: var(--surface); border-bottom: 1px solid var(--line); }
.mobile-nav a { display: block; padding: 12px; font-weight: 700; }
.mobile-nav-cta { margin-top: 8px; border-radius: 12px; color: #fff; background: var(--primary); text-align: center; box-shadow: 0 10px 24px rgba(37,99,235,.22); }

.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 24px; border: 1px solid var(--primary); border-radius: 14px;
  background: var(--primary); color: #fff; font-size: 14px; font-weight: 800;
  box-shadow: 0 10px 24px rgba(37,99,235,.22); transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover { background: var(--primary-hover); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(37,99,235,.28); }
.button-small { min-height: 44px; padding: 0 18px; border-radius: 12px; }
.button-ghost { color: var(--text); background: var(--surface); border-color: var(--line); box-shadow: var(--shadow-sm); }
.button-ghost:hover { color: var(--primary); background: var(--surface); border-color: #b8d0ff; }
.button-dark { background: #0f172a; border-color: #0f172a; }
.button-white { color: #0f172a; background: #fff; border-color: #fff; box-shadow: none; }
.button-white:hover { color: #0f172a; background: #eafbfa; border-color: #eafbfa; }
.button-full { width: 100%; }
.text-link { color: var(--accent); font-weight: 800; }

.hero {
  position: relative; overflow: hidden; min-height: clamp(560px, 88vh, 860px); padding: clamp(124px, 14vh, 174px) 0 clamp(56px, 7vh, 95px);
  background: linear-gradient(135deg, var(--bg-soft) 0%, var(--bg) 57%, #e7f8ff 100%);
}
.dark .hero { background: linear-gradient(135deg, #0b1723, #0d2330 57%, #0a1d2d); }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(5px); pointer-events: none; }
.hero-glow-one { width: 460px; height: 460px; right: -180px; top: 40px; background: rgba(34,195,214,.13); }
.hero-glow-two { width: 300px; height: 300px; left: -120px; bottom: -100px; background: rgba(37,99,235,.08); }
.hero-grid { display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: 55px; }
.eyebrow, .section-label { display: inline-flex; align-items: center; gap: 9px; color: var(--accent); text-transform: uppercase; letter-spacing: .12em; font-size: 12px; font-weight: 800; }
.eyebrow { padding: 8px 12px; margin-bottom: 20px; border: 1px solid rgba(8,145,178,.14); border-radius: 999px; background: rgba(255,255,255,.62); }
.dark .eyebrow { background: rgba(255,255,255,.04); }
.eyebrow span { width: 7px; height: 7px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 5px rgba(16,185,129,.13); }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 640px; margin-bottom: 24px; font-size: clamp(42px, 5vw, 68px); line-height: 1.05; letter-spacing: -.065em; }
h1 em, h2 em { color: var(--accent); font-style: normal; }
.mobile-hero-proof-row { display: contents; }
.mobile-proof-card { display: none; }
.hero-lead-mobile { display: none; }
.hero-lead { max-width: 565px; margin-bottom: 14px; color: var(--muted); font-size: 18px; line-height: 1.7; }
.hero-seo-line { max-width: 565px; margin: 0 0 12px; color: var(--text); font-size: 14px; font-weight: 800; line-height: 1.45; }
.delivery { display: flex; align-items: center; gap: 9px; color: var(--text); font-size: 14px; font-weight: 800; }
.status-dot { display: inline-block; width: 9px; height: 9px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 5px rgba(16,185,129,.14); }
.hero-actions { display: flex; gap: 12px; margin: clamp(18px, 3vh, 28px) 0 clamp(22px, 4vh, 36px); }
.trust-row { display: flex; gap: 28px; }
.trust-row div { display: grid; grid-template-columns: 24px auto; column-gap: 8px; align-items: center; }
.trust-row span { grid-row: 1 / 3; display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; color: var(--accent); background: rgba(8,145,178,.09); font-size: 12px; font-weight: 800; }
.trust-row strong { font-size: 12px; }
.trust-row small { color: var(--muted); font-size: 10px; }

.hero-showcase { min-width: 0; }
.showcase-tabs { display: flex; justify-content: center; gap: 6px; margin-bottom: 14px; }
.showcase-tab { position: relative; overflow: hidden; padding: 8px 11px; border: 1px solid transparent; border-radius: 999px; background: transparent; color: var(--muted); cursor: pointer; font-size: 11px; font-weight: 800; }
.showcase-tab.active { color: var(--accent); border-color: rgba(8,145,178,.18); background: rgba(255,255,255,.78); }
.dark .showcase-tab.active { background: rgba(255,255,255,.06); }
.showcase-tab.active::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--accent); border-radius: 999px; animation: tab-progress 4.3s linear forwards; }
@keyframes tab-progress { to { width: 100%; } }
.hero-mockup-stage { position: relative; }
.hero-mockup-img { width: 100%; height: auto; display: block; border-radius: 16px; transition: opacity .35s ease; }
.hero-mockup-stage .floating-badge { position: absolute; left: 0; bottom: 0; }
.floating-badge { position: absolute; z-index: 4; left: -34px; bottom: -5px; display: grid; place-items: center; width: 100px; height: 100px; border: 7px solid rgba(234,251,250,.9); border-radius: 50%; background: var(--surface); box-shadow: var(--shadow); text-align: center; }
.floating-badge strong { align-self: end; color: var(--accent); font-size: 25px; line-height: 1; }
.floating-badge span { align-self: start; max-width: 65px; color: var(--muted); font-size: 9px; line-height: 1.3; }

.section-head { margin-bottom: clamp(24px, 3vw, 38px); }
.section-head.centered { max-width: 720px; margin-left: auto; margin-right: auto; text-align: center; }
.section-head.split { display: flex; align-items: end; justify-content: space-between; gap: 50px; }
.section-head.split p { max-width: 460px; }
.section-head h2, .why-copy h2, .about-copy h2, .faq-intro h2 { margin: 12px 0 16px; font-size: clamp(32px, 4vw, 48px); line-height: 1.12; letter-spacing: -.055em; }
.section-head p, .why-copy p, .about-copy p, .faq-intro p { color: var(--muted); line-height: 1.75; }

.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.service-card { position: relative; overflow: hidden; min-height: 175px; padding: 22px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow-sm); }
.service-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, var(--card-hue, rgba(8,145,178,.07)) 0%, transparent 58%); border-radius: var(--radius); pointer-events: none; z-index: 0; }
.service-card::after { content: ''; position: absolute; width: 170px; height: 170px; border-radius: 50%; top: -60px; right: -60px; background: radial-gradient(circle, var(--card-hue, rgba(8,145,178,.18)) 0%, transparent 65%); pointer-events: none; z-index: 0; }
.service-card > * { position: relative; z-index: 1; }
.service-card:hover { transform: translateY(-5px); border-color: var(--card-accent, rgba(8,145,178,.3)); }
.service-card:nth-child(1) { --card-accent: #0891b2; --card-hue: rgba(8,145,178,.11); }
.service-card:nth-child(2) { --card-accent: #2563eb; --card-hue: rgba(37,99,235,.11); }
.service-card:nth-child(3) { --card-accent: #7c3aed; --card-hue: rgba(124,58,237,.11); }
.service-card:nth-child(4) { --card-accent: #059669; --card-hue: rgba(5,150,105,.11); }
.service-card:nth-child(5) { --card-accent: #d97706; --card-hue: rgba(217,119,6,.11); }
.service-card:nth-child(6) { --card-accent: #db2777; --card-hue: rgba(219,39,119,.11); }
.service-card:nth-child(7) { --card-accent: #4f46e5; --card-hue: rgba(79,70,229,.11); }
.service-card:nth-child(8) { --card-accent: #ea580c; --card-hue: rgba(234,88,12,.11); }
.service-icon { display: grid; place-items: center; width: 46px; height: 46px; margin-bottom: 16px; border-radius: 13px; color: var(--card-accent, var(--accent)); background: var(--card-hue, rgba(8,145,178,.08)); font-size: 22px; font-weight: 800; }
.service-card h3 { margin-bottom: 9px; font-size: 16px; }
.service-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }

.language-section { overflow: hidden; background: linear-gradient(135deg, var(--bg-soft), var(--bg)); }
.dark .language-section { background: linear-gradient(135deg, #0e1d2b, #0b1824); }
.language-grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: clamp(32px, 5vw, 55px); }
.language-copy h2 { margin: 12px 0 18px; font-size: clamp(32px, 4vw, 48px); line-height: 1.12; letter-spacing: -.055em; }
.language-copy h2 em { color: var(--accent); font-style: normal; }
.language-copy p { color: var(--muted); line-height: 1.75; }
.language-points { display: grid; gap: 11px; margin-top: 25px; color: var(--text); font-size: 13px; font-weight: 700; }
.language-points span::first-letter { color: var(--success); }
.language-showcase { padding: 18px; border: 1px solid rgba(8,145,178,.14); border-radius: 26px; background: rgba(255,255,255,.55); box-shadow: var(--shadow); }
.dark .language-showcase { background: rgba(255,255,255,.035); }
.language-showcase-tabs { display: flex; gap: 7px; margin-bottom: 14px; }
.language-demo-tab { display: inline-flex; align-items: center; gap: 7px; padding: 7px 11px; border: 1px solid transparent; border-radius: 999px; color: var(--muted); background: transparent; cursor: pointer; font-size: 11px; font-weight: 800; }
.language-demo-tab.active { color: var(--accent); border-color: rgba(8,145,178,.18); background: var(--surface); box-shadow: var(--shadow-sm); }
.language-browser { overflow: hidden; border: 7px solid #15202b; border-radius: 17px; background: #fff; box-shadow: 0 25px 45px rgba(15,23,42,.2); }
.language-screenshot-wrap { overflow: hidden; }
.language-screenshot-wrap img { width: 100%; height: auto; display: block; transition: opacity .3s ease; }
.language-browser-bar { height: 24px; display: flex; align-items: center; gap: 4px; padding: 0 9px; color: #94a3b8; background: #f1f5f9; font-size: 7px; }
.language-browser-bar i { width: 5px; height: 5px; border-radius: 50%; background: #cbd5e1; }
.language-browser-bar span { margin-left: 7px; }
.language-demo-content { height: calc(100% - 24px); padding: 23px 30px; color: #fff; background: linear-gradient(90deg, rgba(30,15,8,.94), rgba(30,15,8,.25)), radial-gradient(circle at 77% 52%, #aa7548 0 16%, transparent 17%), linear-gradient(135deg, #402517, #a46d3c); }
.language-demo-content nav { display: flex; align-items: center; justify-content: space-between; font-size: 9px; }
.language-demo-content nav b { font-size: 12px; }
.language-demo-content > div { margin-top: clamp(40px, 7vh, 75px); }
.language-demo-content small { color: rgba(255,255,255,.68); font-size: 8px; text-transform: uppercase; letter-spacing: .14em; }
.language-demo-content h3 { margin: 11px 0; font-size: 34px; line-height: 1.04; letter-spacing: -.06em; }
.language-demo-content p { max-width: 260px; color: rgba(255,255,255,.74); font-size: 10px; line-height: 1.6; }
.language-demo-content > div > b { display: inline-block; margin-top: 8px; padding: 8px 12px; border-radius: 7px; color: #0f172a; background: #fff; font-size: 8px; }

.pricing-section { background: var(--bg-soft); padding-top: clamp(34px, 4.2vw, 56px); }
.pricing-section .section-head { margin-bottom: clamp(10px, 1.35vw, 18px); }
.pricing-section .section-head h2 { font-size: clamp(30px, 3.2vw, 40px); line-height: 1.08; margin-bottom: 12px; }
.pricing-section .section-head p { max-width: 620px; margin-left: auto; margin-right: auto; line-height: 1.35; }
.pricing-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; align-items: stretch; }
.price-card { position: relative; display: flex; flex-direction: column; justify-content: flex-start; gap: 0; min-height: clamp(280px, 32vh, 360px); padding: 18px 18px 16px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow-sm); }
.price-card.featured { border: 2px solid var(--primary); box-shadow: 0 22px 55px rgba(37,99,235,.15); transform: translateY(-12px); }
.price-card.premium { color: #fff; border-color: #0f172a; background: linear-gradient(145deg, #0f172a, #14273e); }
.premium .package-tag, .premium .deadline, .premium li { color: #b8c7d9; }
.recommended { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); white-space: nowrap; padding: 6px 12px; border-radius: 999px; color: #fff; background: var(--primary); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.package-tag { color: var(--accent); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.price-card h3 { margin: 7px 0 9px; font-size: 18px; line-height: 1.15; }
.price { margin-bottom: 7px; font-size: 29px; font-weight: 800; letter-spacing: -.05em; }
.price small { font-size: 12px; letter-spacing: 0; }
.deadline { color: var(--muted); font-size: 12px; font-weight: 700; }
.price-card ul { margin: 10px 0; padding: 10px 0 0; border-top: 1px solid var(--line); list-style: none; }
.premium ul { border-color: rgba(255,255,255,.12); }
.price-card li { position: relative; margin: 0 0 8px; padding-left: 18px; color: var(--muted); font-size: 12px; line-height: 1.4; }
.price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--success); font-weight: 800; }
.price-card > a { margin-top: auto; padding-top: 14px; }
.renovace-note { margin: 0 0 12px; }
.renovace-note summary { color: var(--muted); font-size: 11px; cursor: pointer; list-style: none; }
.renovace-note summary::-webkit-details-marker { display: none; }
.renovace-note summary::before { content: '+ '; color: var(--accent); font-weight: 800; }
details[open].renovace-note summary::before { content: '− '; }
.renovace-note p { margin: 6px 0 0; color: var(--muted); font-size: 11px; line-height: 1.5; }

.portfolio-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.portfolio-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow-sm); }
.portfolio-link { display: block; }
.portfolio-card:hover .portfolio-visual { transform: scale(1.012); }
.portfolio-visual { position: relative; height: clamp(220px, 22vw, 265px); padding: clamp(20px, 2.5vw, 30px); transition: transform .3s ease; overflow: hidden; }
.portfolio-screenshot { padding: 0; height: clamp(200px, 22vw, 280px); aspect-ratio: unset; }
.portfolio-screenshot img { width: 100%; height: 100%; object-fit: cover; object-position: top left; display: block; transition: transform .3s ease; }
.portfolio-card:hover .portfolio-screenshot img { transform: scale(1.03); }
.restaurant-visual { background: linear-gradient(135deg, #f4e7d8, #d5a66f); }
.auto-visual { background: linear-gradient(135deg, #e8eef4, #61778c); }
.plumber-visual { background: linear-gradient(135deg, #d9f4f8, #78cbd9); }
.carpenter-visual { background: linear-gradient(135deg, #efe5d8, #b68f66); }
.trenchworks-visual { background: linear-gradient(135deg, #151c24, #8b1e24); }
.hair-visual { background: linear-gradient(135deg, #f6e8ed, #d8aebc); }
.ddd-visual { background: linear-gradient(135deg, #e5f1df, #8fb47d); }
.mini-browser { position: relative; overflow: hidden; height: 205px; padding: 35px 30px; border: 6px solid #fff; border-radius: 12px; color: #fff; box-shadow: 0 18px 35px rgba(15,23,42,.18); }
.mini-browser::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(110deg, rgba(15,23,42,.92), rgba(15,23,42,.28)); }
.trenchworks-visual .mini-browser::before { background: radial-gradient(circle at 78% 26%, rgba(179,54,62,.44), transparent 24%), linear-gradient(110deg, rgba(5,6,8,.95), rgba(17,22,29,.48)); }
.mini-browser span { font-size: 8px; }
.mini-browser h3 { margin: 30px 0 16px; font-size: 23px; line-height: 1.05; letter-spacing: -.05em; }
.mini-phone { position: absolute; right: 26px; bottom: 18px; width: 82px; height: 150px; padding: 18px 9px; border: 5px solid #0f172a; border-radius: 16px; color: #fff; background: #1b3446; box-shadow: 0 13px 25px rgba(15,23,42,.25); }
.trenchworks-visual .mini-phone { background: #050608; border-color: #b3363e; }
.mini-phone span { font-size: 7px; }
.mini-phone h4 { margin-top: 45px; font-size: 12px; }
.portfolio-copy { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 20px 24px; }
.portfolio-copy span { font-size: 15px; font-weight: 800; }
.portfolio-copy span small { display: block; margin-top: 5px; color: var(--accent); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.portfolio-copy p { max-width: 270px; margin: 0; color: var(--muted); font-size: 12px; line-height: 1.5; text-align: right; }
.portfolio-software-duo { display: flex; gap: 16px; }
.portfolio-half-card { flex: 1; min-width: 0; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; text-decoration: none; color: inherit; transition: transform .2s, box-shadow .2s; }
.portfolio-half-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.portfolio-half-card .portfolio-visual { height: auto; min-height: 160px; flex: 1; }
.portfolio-half-card .portfolio-copy { display: block; padding: 12px 16px; }
.portfolio-half-card .portfolio-copy p { margin-top: 4px; text-align: left; font-size: 11px; max-width: none; }

.compare-section { background: var(--bg-soft); }
.compare-wrap { position: relative; overflow: hidden; width: min(980px, 100%); margin: 0 auto; border: 8px solid var(--surface); border-radius: 24px; box-shadow: var(--shadow); }
.compare-img-after { display: block; width: 100%; height: auto; }
.compare-img-before { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; object-position: top left; clip-path: inset(0 50% 0 0); }
.compare-handle { position: absolute; z-index: 4; top: 0; bottom: 0; left: 50%; width: 2px; background: #fff; transform: translateX(-50%); pointer-events: none; }
.compare-handle span { position: absolute; top: 50%; left: 50%; display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; color: var(--accent); background: #fff; box-shadow: 0 5px 15px rgba(15,23,42,.2); transform: translate(-50%,-50%); font-weight: 800; }
.compare-wrap input { position: absolute; z-index: 5; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; }
.compare-label { position: absolute; z-index: 6; top: 18px; padding: 7px 12px; border-radius: 999px; color: #fff; background: rgba(15,23,42,.55); font-size: 11px; font-weight: 800; pointer-events: none; }
.before { left: 18px; }.after { right: 18px; }

.process-section { overflow: hidden; }
.timeline { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; margin: clamp(28px, 4vw, 48px) 0 0; padding: 0; list-style: none; }
.timeline::before { content: ""; position: absolute; top: 24px; left: 9%; right: 9%; height: 2px; background: linear-gradient(90deg, var(--accent), var(--primary)); opacity: .25; }
.timeline li { position: relative; text-align: center; }
.timeline li > span { position: relative; z-index: 2; display: grid; place-items: center; width: 50px; height: 50px; margin: 0 auto 22px; border: 6px solid var(--surface); border-radius: 50%; color: #fff; background: linear-gradient(135deg, var(--accent), var(--primary)); box-shadow: 0 8px 20px rgba(8,145,178,.2); font-size: 14px; font-weight: 800; }
.timeline h3 { margin-bottom: 8px; font-size: 16px; }
.timeline p { color: var(--muted); font-size: 12px; }

.why-section { background: linear-gradient(135deg, var(--bg-soft), var(--bg)); }
.dark .why-section { background: linear-gradient(135deg, #0e1d2b, #0b1824); }
.why-grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: clamp(30px, 5vw, 55px); }
.benefit-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.benefit-card { position: relative; overflow: hidden; min-height: 130px; padding: 20px; border: 1px solid rgba(8,145,178,.12); border-radius: var(--radius); background: rgba(255,255,255,.62); transition: transform .2s ease, border-color .2s ease; }
.benefit-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, var(--card-hue, rgba(8,145,178,.07)) 0%, transparent 60%); border-radius: var(--radius); pointer-events: none; z-index: 0; }
.benefit-card::after { content: ''; position: absolute; width: 140px; height: 140px; border-radius: 50%; top: -50px; right: -50px; background: radial-gradient(circle, var(--card-hue, rgba(8,145,178,.18)) 0%, transparent 65%); pointer-events: none; z-index: 0; }
.benefit-card > * { position: relative; z-index: 1; }
.benefit-card:hover { transform: translateY(-4px); border-color: var(--card-accent, rgba(8,145,178,.3)); }
.benefit-card:nth-child(1) { --card-accent: #0891b2; --card-hue: rgba(8,145,178,.11); }
.benefit-card:nth-child(2) { --card-accent: #7c3aed; --card-hue: rgba(124,58,237,.11); }
.benefit-card:nth-child(3) { --card-accent: #059669; --card-hue: rgba(5,150,105,.11); }
.benefit-card:nth-child(4) { --card-accent: #d97706; --card-hue: rgba(217,119,6,.11); }
.benefit-card:nth-child(5) { --card-accent: #db2777; --card-hue: rgba(219,39,119,.11); }
.dark .benefit-card { background: rgba(255,255,255,.035); }
.benefit-card:last-child { grid-column: 1 / -1; }
.benefit-card span { color: var(--card-accent, var(--accent)); font-size: 11px; font-weight: 800; }
.benefit-card h3 { margin: 10px 0 6px; font-size: 15px; }
.benefit-card p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.5; }

.audit-card, .final-card { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: clamp(24px, 3.4vw, 46px); padding: clamp(28px, 3.5vw, 42px) clamp(26px, 4vw, 52px); border-radius: 28px; color: #fff; background: linear-gradient(135deg, #067e9c, #0891b2 48%, #2563eb); box-shadow: 0 24px 60px rgba(8,145,178,.24); }
/* Kontaktní banner – vlastní grafika */
.final-card {
  position: relative; overflow: hidden; align-items: start;
  background: linear-gradient(135deg, #070d1a 0%, #0e2240 45%, #1a3a7a 100%);
  box-shadow: 0 28px 70px rgba(8,50,120,.35);
}
.final-card::before {
  content: ''; position: absolute; width: 560px; height: 560px; border-radius: 50%;
  top: -200px; right: -80px;
  background: radial-gradient(circle, rgba(8,145,178,.38) 0%, transparent 65%);
  pointer-events: none;
}
.final-card::after {
  content: ''; position: absolute; width: 380px; height: 380px; border-radius: 50%;
  bottom: -140px; left: 8%;
  background: radial-gradient(circle, rgba(124,58,237,.28) 0%, transparent 65%);
  pointer-events: none;
}
.final-card > * { position: relative; z-index: 1; }
.final-card h2 em { color: #7dd3fc; }
.light-label { color: rgba(255,255,255,.7); }
.audit-card h2, .final-card h2 { margin: 12px 0 16px; font-size: clamp(30px, 4vw, 46px); line-height: 1.12; letter-spacing: -.055em; }
.audit-card p, .final-card p { margin-bottom: 0; color: rgba(255,255,255,.76); line-height: 1.7; }
.audit-form { display: grid; grid-template-columns: 1fr 1fr auto; gap: 10px; }
.audit-form input, .contact-form input, .contact-form textarea { min-width: 0; padding: 0 16px; border: 1px solid rgba(255,255,255,.3); border-radius: 14px; color: #fff; background: rgba(255,255,255,.12); outline: none; font-size: 16px; }
.audit-form input, .contact-form input { height: 52px; }
.audit-form input::placeholder, .contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255,255,255,.65); }
.audit-form input:focus, .contact-form input:focus, .contact-form textarea:focus { border-color: #fff; box-shadow: 0 0 0 4px rgba(255,255,255,.14); }
.contact-form { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.contact-form textarea { grid-column: 1 / -1; min-height: 96px; padding-top: 15px; resize: vertical; }
.contact-form button { grid-column: 1 / -1; }
.contact-form > a { grid-column: 1 / -1; color: rgba(255,255,255,.75); font-size: 12px; }
.contact-form strong { display: block; margin-top: 4px; color: #fff; font-size: 16px; }
.contact-direct-links { display: flex; flex-wrap: wrap; align-items: baseline; gap: 4px 14px; color: rgba(255,255,255,.75); font-size: 12px; }
.contact-form .contact-direct-links { grid-column: 1 / -1; }
.contact-direct-links a { color: rgba(255,255,255,.9); }
.contact-direct-links a:hover { color: #fff; }
.contact-direct-links strong { display: inline; margin-top: 0; color: #fff; font-size: 16px; }
.privacy-check { grid-column: 1 / -1; display: flex; align-items: flex-start; gap: 9px; color: rgba(255,255,255,.78); font-size: 11px; line-height: 1.5; }
.privacy-check input { flex: 0 0 auto; width: 16px; height: 16px; margin: 1px 0 0; accent-color: var(--primary); }
.privacy-check a { color: #fff; text-decoration: underline; text-underline-offset: 2px; }
.form-trap { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.about-section { background: var(--bg-soft); padding-bottom: clamp(76px, 7vw, 110px); }
.about-grid { display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: clamp(32px, 6vw, 65px); }
.portrait-card { position: relative; width: min(270px, 100%); margin: 0 auto; }
.portrait-frame { overflow: hidden; border-radius: 20px; box-shadow: var(--shadow); }
.portrait-photo { display: block; width: 100%; aspect-ratio: 3 / 4; object-fit: cover; object-position: center; }
.about-byline { color: var(--muted); font-size: 13px; font-style: italic; }
.about-lead { color: var(--text) !important; font-size: 20px; font-weight: 800; }
.signature { margin-top: 30px; color: var(--accent); font-size: 25px; font-weight: 800; font-style: italic; }
.about-contact-bar { display: flex; align-items: center; justify-content: space-between; gap: 18px; width: 100%; margin-top: 14px; }
.about-contact-links { display: flex; flex: 1 1 auto; flex-wrap: wrap; gap: 8px 16px; min-width: 0; }
.about-contact-links a { color: var(--accent); font-size: 14px; font-weight: 800; }
.about-cv-link { flex: 0 0 auto; margin-left: auto; white-space: nowrap; font-size: 10px; font-weight: 400; }

.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(36px, 5vw, 60px); align-items: start; }
.faq-intro { position: sticky; top: 120px; }
.accordion { display: grid; gap: 10px; }
details { border: 1px solid var(--line); border-radius: 16px; background: var(--surface); box-shadow: 0 4px 16px rgba(15,23,42,.03); }
summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 22px; cursor: pointer; list-style: none; font-size: 14px; font-weight: 800; }
summary::-webkit-details-marker { display: none; }
summary span { color: var(--accent); font-size: 22px; font-weight: 400; transition: transform .2s ease; }
details[open] summary span { transform: rotate(45deg); }
details p { margin: 0; padding: 0 22px 20px; color: var(--muted); font-size: 13px; line-height: 1.7; }

.final-cta { padding-top: clamp(42px, 5.2vw, 76px); scroll-margin-top: 86px; }
.final-card { grid-template-columns: 1.02fr .98fr; }
.contact-copy { max-width: 560px; }
.contact-mini-card { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: clamp(22px, 3vw, 34px); }
.contact-mini-card div { min-height: 116px; padding: 14px; border: 1px solid rgba(255,255,255,.16); border-radius: 18px; background: rgba(255,255,255,.07); box-shadow: inset 0 1px 0 rgba(255,255,255,.08); }
.contact-mini-card span { display: grid; place-items: center; width: 28px; height: 28px; margin-bottom: 12px; border-radius: 50%; color: #0f172a; background: #7dd3fc; font-size: 12px; font-weight: 900; }
.contact-mini-card strong { display: block; margin-bottom: 5px; color: #fff; font-size: 13px; line-height: 1.25; }
.contact-mini-card small { display: block; color: rgba(255,255,255,.66); font-size: 11px; line-height: 1.45; }
.final-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.final-actions > a:last-child { color: rgba(255,255,255,.75); font-size: 12px; }
.final-actions strong { display: block; margin-top: 4px; color: #fff; font-size: 16px; }
.thank-you-page { min-height: 100vh; display: grid; place-items: center; padding: 30px; background: linear-gradient(135deg, var(--bg-soft), var(--bg)); }
.thank-you-card { width: min(620px, 100%); padding: 55px; border: 1px solid var(--line); border-radius: 28px; background: var(--surface); box-shadow: var(--shadow); text-align: center; }
.thank-you-card img { margin-bottom: 20px; }
.thank-you-card h1 { margin: 15px auto; font-size: clamp(36px, 6vw, 56px); }
.thank-you-card p { margin: 0 auto 28px; color: var(--muted); line-height: 1.7; }
.legal-page { padding: 145px 0 90px; background: var(--bg-soft); }
.legal-content { max-width: 850px; padding: 48px; border: 1px solid var(--line); border-radius: 24px; background: var(--surface); box-shadow: var(--shadow-sm); }
.legal-content h1 { margin: 15px 0 28px; font-size: clamp(38px, 5vw, 58px); }
.legal-content h2 { margin: 38px 0 12px; font-size: 22px; letter-spacing: -.03em; }
.legal-content p, .legal-content li { color: var(--muted); line-height: 1.75; }
.legal-content a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.compact-hero { min-height: 690px; }
.compact-showcase { padding: 65px 45px; border: 1px solid rgba(8,145,178,.16); border-radius: 28px; color: #fff; background: linear-gradient(135deg, #067e9c, #0891b2 48%, #2563eb); box-shadow: var(--shadow); }
.compact-showcase span { font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; opacity: .7; }
.compact-showcase h2 { margin: 28px 0 18px; font-size: clamp(30px, 4vw, 46px); line-height: 1.1; letter-spacing: -.055em; }
.compact-showcase p { margin: 0; color: rgba(255,255,255,.75); line-height: 1.7; }
.simple-pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 920px; margin: 0 auto; }
.seo-hero { padding: 155px 0 85px; background: linear-gradient(135deg, var(--bg-soft), var(--bg)); }
.seo-hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 70px; }
.seo-hero h1 { margin: 15px 0 22px; font-size: clamp(42px, 5.5vw, 66px); }
.seo-hero p { max-width: 620px; color: var(--muted); font-size: 18px; line-height: 1.7; }
.seo-panel { padding: 32px; border: 1px solid var(--line); border-radius: 24px; background: var(--surface); box-shadow: var(--shadow); }
.seo-panel h2 { margin-bottom: 18px; font-size: 22px; }
.seo-panel ul { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.seo-panel li { position: relative; padding-left: 24px; color: var(--muted); font-size: 14px; line-height: 1.5; }
.seo-panel li::before { content: "✓"; position: absolute; left: 0; color: var(--success); font-weight: 800; }
.seo-content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.seo-content-card { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow-sm); }
.seo-content-card h3 { font-size: 18px; }
.seo-content-card p { margin-bottom: 0; color: var(--muted); line-height: 1.7; }
.breadcrumb { display: flex; gap: 8px; margin-bottom: 24px; color: var(--muted); font-size: 12px; }
.breadcrumb a { color: var(--accent); }
.site-footer { padding: clamp(32px, 4vw, 50px) 0 20px; background: var(--bg-soft); }
.footer-grid { display: grid; grid-template-columns: 1.35fr repeat(3, 1fr); gap: 32px; padding-bottom: 30px; }
.footer-grid p { margin-top: 15px; color: var(--muted); font-size: 13px; }
.footer-grid h3 { margin-bottom: 18px; font-size: 13px; }
.footer-grid div:not(:first-child) { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; color: var(--muted); font-size: 12px; }
.footer-grid a:hover { color: var(--accent); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 22px; border-top: 1px solid var(--line); color: var(--muted); font-size: 11px; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.js .reveal.visible { opacity: 1; transform: translateY(0); }
.service-card, .portfolio-visual { transition: transform .25s ease, border-color .25s ease; }
:focus-visible { outline: 3px solid rgba(37,99,235,.45); outline-offset: 3px; }

@media (max-width: 1120px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
  .price-card.featured { transform: none; }
  .hero-grid { gap: 25px; }
}
@media (max-width: 900px) {
  .desktop-nav, .nav-actions .button-small, .language-switcher { display: none; }
  .mobile-header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 12px;
    color: #fff;
    background: var(--primary);
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(37,99,235,.2);
  }
  .menu-toggle { display: block; }
  .mobile-nav.open { display: block; }
  .hero { padding-top: clamp(100px, 13vh, 135px); }
  .hero-grid, .why-grid, .about-grid, .faq-grid, .audit-card, .final-card { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-lead { margin-left: auto; margin-right: auto; }
  .delivery, .hero-actions, .trust-row { justify-content: center; }
  .hero-showcase { margin-top: 30px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .section-head.split { display: block; }
  .section-head.split p { max-width: 680px; margin-top: 18px; }
  .portfolio-grid { gap: 18px; }
  .why-grid, .about-grid, .faq-grid, .language-grid { gap: 50px; }
  .language-grid { grid-template-columns: 1fr; }
  .faq-intro { position: static; }
  .audit-card, .final-card { gap: 35px; padding: 45px; }
  .contact-copy { max-width: none; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .seo-hero-grid { grid-template-columns: 1fr; gap: 35px; }
}
@media (max-width: 700px) {
  html { scroll-padding-top: 88px; }
  .container { width: min(100% - 28px, var(--container)); }
  .section { padding: clamp(44px, 8vw, 75px) 0; }
  .section { scroll-margin-top: 88px; }
  .final-cta { padding-top: clamp(44px, 8vw, 75px); scroll-margin-top: 88px; }
  .nav-wrap { height: 68px; }
  .brand { font-size: 22px; }
  .brand img { width: 35px; height: 35px; }
  h1 { margin-bottom: 14px; font-size: 36px; }
  .hero { min-height: auto; padding: clamp(72px, 9vh, 92px) 0 clamp(36px, 6vh, 58px); }
  .mobile-proof-card {
    display: block;
    width: min(92%, 350px);
    height: clamp(130px, 34vw, 164px);
    margin: 0 auto 16px;
    overflow: hidden;
    border-radius: 24px;
    background: var(--surface);
    box-shadow: 0 16px 36px rgba(15,23,42,.13);
  }
  .mobile-proof-card img { width: 100%; height: 100%; object-fit: cover; object-position: top left; display: block; }
  .hero-lead-desktop { display: none; }
  .hero-lead-mobile { display: inline; }
  .hero-lead { max-width: 560px; margin-bottom: 11px; font-size: 15px; line-height: 1.55; }
  .hero-seo-line { max-width: 520px; margin: 0 auto 10px; font-size: 13px; }
  .delivery { font-size: 13px; line-height: 1.35; }
  .hero-actions { margin: 15px 0 16px; }
  .trust-row { gap: 13px; }
  .trust-row div { display: block; }
  .trust-row div:nth-child(3) { display: none; }
  .trust-row span { margin: 0 auto 7px; }
  .trust-row small { display: block; margin-top: 2px; }
  .hero-showcase { display: none; }
  .showcase-tabs { overflow-x: auto; justify-content: flex-start; gap: 4px; padding-bottom: 5px; }
  .showcase-tab { padding: 6px 9px; font-size: 10px; }
  .hero-mockup-stage { display: none; }
  .section-head { margin-bottom: 36px; }
  .section-head h2, .why-copy h2, .about-copy h2, .faq-intro h2 { font-size: 34px; }
  .service-grid, .pricing-grid, .portfolio-grid, .benefit-grid { grid-template-columns: 1fr; }
  .language-showcase { padding: 10px; border-radius: 20px; }
  .language-showcase-tabs { overflow-x: auto; padding-bottom: 4px; }
  .language-demo-tab { white-space: nowrap; }
  .language-browser { border-width: 5px; }
  .language-demo-content { padding: 18px; }
  .language-demo-content nav span { display: none; }
  .language-demo-content > div { margin-top: 55px; }
  .language-demo-content h3 { font-size: 26px; }
  .service-card { min-height: 170px; }
  .benefit-card:last-child { grid-column: auto; }
  .price-card { min-height: 320px; }
  .portfolio-visual { height: 245px; padding: 24px; }
  .portfolio-screenshot { height: clamp(180px, 28vw, 260px); padding: 0; aspect-ratio: unset; }
  .mini-browser { height: 185px; padding: 28px 22px; }
  .mini-browser h3 { font-size: 20px; }
  .portfolio-copy { display: block; }
  .portfolio-copy p { margin-top: 7px; text-align: left; }
  .portfolio-software-duo { flex-direction: column; }
  .portfolio-half-card .portfolio-visual { min-height: 200px; }
  .compare-wrap { border-width: 5px; }
  .timeline { grid-template-columns: 1fr; gap: 0; margin-top: 35px; }
  .timeline::before { top: 20px; bottom: 20px; left: 24px; right: auto; width: 2px; height: auto; }
  .timeline li { display: grid; grid-template-columns: 50px 1fr; gap: 18px; text-align: left; }
  .timeline li > span { margin: 0 0 28px; }
  .timeline p { margin-bottom: 28px; }
  .audit-card, .final-card { padding: 35px 24px; border-radius: 22px; }
  .contact-mini-card { grid-template-columns: 1fr; gap: 8px; margin-top: 20px; }
  .contact-mini-card div { min-height: 0; padding: 12px; }
  .contact-mini-card span { float: left; margin: 0 10px 0 0; }
  .audit-form, .contact-form { grid-template-columns: 1fr; }
  .contact-form textarea, .contact-form button, .contact-form > a { grid-column: auto; }
  .portrait-card { width: min(100%, 300px); height: auto; }
  .portrait-avatar { width: 220px; height: 280px; }
  .portrait-note { right: 10px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { display: block; }
  .footer-bottom span { display: block; margin-top: 8px; }
  .legal-content { padding: 28px 20px; }
  .simple-pricing, .seo-content-grid { grid-template-columns: 1fr; }
  .compact-showcase { padding: 38px 25px; }
  .seo-hero { padding: 125px 0 65px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Velké obrazovky – omez vertikální spacing aby stránka nepůsobila prázdně */
@media (min-height: 900px) and (min-width: 1200px) {
  .hero { min-height: clamp(560px, 80vh, 820px); padding: clamp(128px, 11vh, 158px) 0 clamp(56px, 6vh, 85px); }
  .section { padding: clamp(44px, 4.8vw, 76px) 0; }
  .final-cta { padding-top: clamp(44px, 4.8vw, 76px); }
}
@media (min-height: 1100px) and (min-width: 1400px) {
  .hero { min-height: clamp(600px, 72vh, 800px); }
  .section { padding: clamp(44px, 4vw, 70px) 0; }
  .final-cta { padding-top: clamp(44px, 4vw, 70px); }
}

/* Malé výšky displeje – zkomprimuj hero a sekce do výšky viewportu */
@media (min-width: 901px) and (max-height: 820px) {
  /* Hero */
  .hero { min-height: unset; padding: clamp(100px, 14vh, 128px) 0 clamp(26px, 4vh, 46px); }
  .hero-grid { gap: 30px; }
  h1 { font-size: clamp(34px, 4vw, 50px); line-height: 1.07; }
  .hero-lead { font-size: 15px; margin-bottom: 8px; }
  .hero-actions { margin: 10px 0 12px; }
  /* Sekce */
  .section { padding: clamp(30px, 4.2vh, 48px) 0; }
  .section-head { margin-bottom: clamp(20px, 3vh, 36px); }
  .section-head h2, .why-copy h2, .about-copy h2, .faq-intro h2 { font-size: clamp(28px, 3.5vw, 42px); margin: 10px 0 12px; }
  /* Servisní karty */
  .service-card { min-height: 150px; padding: 18px; }
  .service-icon { width: 40px; height: 40px; margin-bottom: 12px; font-size: 20px; }
  /* Timeline */
  .timeline li > span { width: 42px; height: 42px; margin-bottom: 16px; }
  /* Benefit karty */
  .benefit-card { padding: 20px; }
  /* Cenové karty */
  .price-card { min-height: unset; padding: 18px 16px 16px; }
  .price-card h3 { margin: 8px 0 10px; font-size: 20px; }
  .price { font-size: 25px; margin-bottom: 4px; }
  .price-card ul { margin: 10px 0; padding-top: 10px; }
  .price-card li { margin-bottom: 7px; }
  /* Audit a final banner */
  .audit-card, .final-card { padding: clamp(24px, 3.5vh, 42px) clamp(28px, 4vw, 52px); gap: clamp(24px, 3.5vw, 44px); }
  .audit-card h2, .final-card h2 { font-size: clamp(24px, 3vw, 36px); margin: 8px 0 10px; }
  .audit-card p, .final-card p { font-size: 14px; }
  .contact-mini-card { margin-top: 18px; }
  .contact-mini-card div { min-height: 98px; padding: 12px; }
  /* O mně – portrait */
  .portrait-card { width: min(250px, 100%); height: auto; }
  .portrait-avatar { width: 230px; height: 290px; }
  .about-lead { font-size: 17px; }
  .signature { margin-top: 18px; font-size: 21px; }
  .contact-direct-links { flex-direction: column; align-items: flex-start; gap: 4px; }
}

@media (max-width: 700px) {
  .about-grid { gap: 28px; }
  .about-section { padding-bottom: clamp(54px, 9vw, 76px); }
  .about-contact-bar { align-items: center; flex-direction: row; gap: 12px; }
  .about-contact-links { gap: 6px 12px; }
  .about-contact-links a { font-size: 13px; }
  .contact-direct-links { flex-direction: column; align-items: flex-start; gap: 4px; }
  .portrait-card { width: min(100%, 300px); height: auto; }
  .portrait-frame { aspect-ratio: 3 / 4; }
  .portrait-photo { width: 100%; height: 100%; object-fit: cover; object-position: center; }
}
@media (max-width: 380px) {
  .about-contact-bar { gap: 10px; }
  .about-contact-links { gap: 4px 10px; }
  .about-contact-links a { font-size: 12px; }
}

/* WhatsApp */
.wa-float { position: fixed; right: 20px; bottom: 24px; z-index: 900; display: flex; align-items: center; justify-content: center; width: 54px; height: 54px; border-radius: 50%; background: #25d366; color: #fff; box-shadow: 0 4px 16px rgba(37,211,102,.45); transition: transform .2s ease, box-shadow .2s ease; }
.wa-float svg { width: 34px; height: 34px; display: block; flex: 0 0 auto; color: #fff; }
.wa-float:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(37,211,102,.6); }
.wa-link { display: flex; align-items: center; gap: 6px; color: var(--muted); font-size: 12px; text-decoration: none; }
/* Responsive CTA helpers */
.hide-desktop { display: none; }
.show-desktop { display: inline-flex; }
@media (max-width: 900px) { .hide-desktop { display: inline-flex; } .show-desktop { display: none; } }
.wa-link strong { color: #25d366; }
.wa-link::before { content: ''; display: inline-block; width: 16px; height: 16px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2325d366'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347z'/%3E%3Cpath d='M12 0C5.373 0 0 5.373 0 12c0 2.127.558 4.126 1.533 5.86L.057 23.25a.75.75 0 0 0 .916.928l5.565-1.453A11.943 11.943 0 0 0 12 24c6.627 0 12-5.373 12-12S18.627 0 12 0zm0 21.75a9.693 9.693 0 0 1-4.964-1.363l-.355-.212-3.684.963.985-3.595-.232-.372A9.693 9.693 0 0 1 2.25 12C2.25 6.615 6.615 2.25 12 2.25S21.75 6.615 21.75 12 17.385 21.75 12 21.75z'/%3E%3C/svg%3E") center/contain no-repeat; }

.mobile-sticky-cta { display: none; }

@media (max-width: 700px) {
  body { padding-bottom: 76px; }
  .mobile-sticky-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 920;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(220,235,238,.9);
    border-radius: 18px;
    background: rgba(255,255,255,.92);
    box-shadow: 0 18px 42px rgba(15,23,42,.18);
    backdrop-filter: blur(14px);
  }
  .dark .mobile-sticky-cta {
    border-color: rgba(27,53,72,.9);
    background: rgba(8,18,29,.9);
  }
  .mobile-sticky-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 16px;
    border-radius: 13px;
    font-size: 14px;
    font-weight: 900;
  }
  .mobile-sticky-primary {
    color: #fff;
    background: var(--primary);
    box-shadow: 0 10px 24px rgba(37,99,235,.24);
  }
  .mobile-sticky-secondary {
    color: var(--text);
    background: var(--surface-2);
    border: 1px solid var(--line);
  }
  .wa-float { right: 18px; bottom: 92px; width: 48px; height: 48px; }
  .wa-float svg { width: 30px; height: 30px; }
  .cookie-banner.visible ~ .mobile-sticky-cta { display: none; }
}

/* Cookie Consent Banner */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999; background: var(--surface); border-top: 1px solid var(--line); box-shadow: 0 -4px 24px rgba(15,23,42,.1); padding: 14px 20px; transform: translateY(100%); transition: transform .3s ease; }
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner-inner { max-width: var(--container); margin: 0 auto; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.cookie-banner-inner p { margin: 0; font-size: 13px; color: var(--muted); flex: 1; min-width: 200px; }
.cookie-banner-inner p a { color: var(--accent); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }

@media (max-width: 900px) and (orientation: landscape) and (max-height: 520px) {
  .hero { padding: 72px 0 24px; }
  .hero-copy { text-align: left; }
  .eyebrow { margin-bottom: 12px; padding: 6px 10px; font-size: 10px; }
  h1 { max-width: 100%; margin-bottom: 14px; font-size: clamp(28px, 5.2vw, 38px); line-height: 1.02; }
  .mobile-hero-proof-row {
    display: grid;
    grid-template-columns: minmax(210px, 42%) 1fr;
    align-items: center;
    gap: 16px;
  }
  .mobile-proof-card {
    width: 100%;
    height: clamp(126px, 30vh, 160px);
    margin: 0;
    border-radius: 18px;
    box-shadow: 0 14px 30px rgba(15,23,42,.12);
  }
  .mobile-hero-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-lead { margin-bottom: 8px; font-size: 13px; line-height: 1.42; text-align: left; }
  .hero-seo-line { margin: 0 0 7px; font-size: 12px; line-height: 1.35; text-align: left; }
  .delivery { align-items: flex-start; margin-bottom: 0; font-size: 12px; line-height: 1.3; text-align: left; }
  .hero-actions { width: 100%; margin: 12px 0 0; gap: 8px; }
  .hero-actions .button { flex: 1 1 0; min-height: 44px; padding: 0 14px; font-size: 13px; }
  .hero-actions .button:first-child { font-size: 0; }
  .hero-actions .button:first-child::before { content: "Poptat"; font-size: 13px; }
  .trust-row { display: none; }
  .hero-showcase { display: none; }
  .showcase-tabs { opacity: .62; }
}
/* Pricing CTA */
.pricing-cta { margin-top: 40px; padding: 32px 36px; background: var(--surface); border: 1px solid var(--line); border-radius: 18px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.pricing-cta p { margin: 0; font-size: 18px; font-weight: 600; color: var(--text); }
.pricing-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 600px) { .pricing-cta { flex-direction: column; align-items: flex-start; } }

/* Testimonials */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.testimonial-card { background: var(--surface); border: 1px solid var(--line); border-radius: 18px; padding: 32px; margin: 0; display: flex; flex-direction: column; gap: 24px; }
.testimonial-card p { font-size: 17px; line-height: 1.65; color: var(--text); margin: 0; font-style: italic; flex: 1; }
.testimonial-card footer { display: flex; align-items: center; gap: 14px; min-width: 0; border-top: 1px solid var(--line); padding-top: 20px; }
.testimonial-logo { width: 48px !important; height: 48px !important; max-width: 48px !important; aspect-ratio: 1; border-radius: 10px; object-fit: cover; flex: 0 0 48px; }
.testimonial-card footer div { display: flex; min-width: 0; flex-direction: column; gap: 2px; }
.testimonial-card footer strong { font-size: 14px; color: var(--text); }
.testimonial-card footer span { min-width: 0; font-size: 12px; line-height: 1.35; color: var(--muted); overflow-wrap: anywhere; }
.testimonial-card footer a { color: var(--accent); text-decoration: none; }
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 700px) {
  .testimonials-grid { grid-template-columns: 1fr; gap: 14px; margin-top: 24px; }
  .testimonial-card { gap: 16px; padding: 20px; border-radius: 14px; }
  .testimonial-card p { font-size: 15px; line-height: 1.55; }
  .testimonial-card footer { gap: 10px; padding-top: 14px; }
  .testimonial-logo { width: 40px !important; height: 40px !important; max-width: 40px !important; flex-basis: 40px; border-radius: 8px; }
}

/* Landing page hero copy (web-pro-* stránky) */
.hero-copy-lp { max-width: 780px; padding: clamp(100px, 13vh, 164px) 0 clamp(40px, 6vh, 80px); }
@media (max-width: 900px) { .hero-copy-lp { max-width: 100%; padding: clamp(90px, 12vh, 120px) 0 clamp(32px, 5vh, 56px); } }
