/* ============================================
   ASAP Služby — dizajn inšpirovaný originálom
   Tmavomodré nadpisy, ružový/coral accent, čisté pozadie
   ============================================ */

:root {
    --c-navy: #1A2D5C;
    --c-navy-dark: #0F1B3A;
    --c-navy-light: #2A4179;
    --c-navy-soft: #E8EFF7;
    --c-coral: #F4A1A1;
    --c-coral-soft: #FBE3E3;
    --c-coral-deep: #E07F7F;
    --c-cyan: #5BCFE5;
    --c-cyan-deep: #2BA8C0;
    --c-bg: #FFFFFF;
    --c-bg-soft: #FBF6F4;
    --c-bg-card: #FFFFFF;
    --c-text: #1A2D5C;
    --c-text-soft: #5B6885;
    --c-text-muted: #8B97AC;
    --c-border: #E5EAF2;
    --c-border-soft: #F1F4F9;
    --c-success: #10B981;
    --c-error: #EF4444;
    --c-yellow: #FBBF24;
    --c-whatsapp: #25D366;
    --shadow-sm: 0 1px 2px rgba(26, 45, 92, 0.06);
    --shadow: 0 6px 18px rgba(26, 45, 92, 0.08), 0 1px 3px rgba(26, 45, 92, 0.04);
    --shadow-lg: 0 16px 40px rgba(26, 45, 92, 0.10), 0 2px 8px rgba(26, 45, 92, 0.04);
    --radius: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;
    --container: 1200px;
    --container-narrow: 760px;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--c-text);
    background: var(--c-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

img, svg, video { max-width: 100%; height: auto; display: block; }

a { color: var(--c-navy); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--c-cyan-deep); }

button { cursor: pointer; font-family: inherit; }

::selection { background: var(--c-coral); color: var(--c-navy); }

/* ===== Container ===== */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 1.25rem; }
.container--narrow { max-width: var(--container-narrow); }

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    line-height: 1.1;
    color: var(--c-navy);
    letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem); margin-bottom: 1.25rem; font-weight: 900; }
h2 { font-size: clamp(2rem, 3.5vw + 1rem, 3rem); margin-bottom: 1.25rem; font-weight: 900; letter-spacing: -0.025em; }
h3 { font-size: clamp(1.25rem, 1.5vw + 0.8rem, 1.625rem); margin-bottom: 0.75rem; font-weight: 800; }
h4 { font-size: 1.125rem; margin-bottom: 0.5rem; font-weight: 700; }

p { margin-bottom: 1rem; color: var(--c-text-soft); font-size: 1.0625rem; line-height: 1.7; }
p:last-child { margin-bottom: 0; }

.lead { font-size: 1.25rem; line-height: 1.6; color: var(--c-text-soft); }

ul, ol { margin: 0 0 1rem 1.25rem; }
li { margin-bottom: 0.5rem; color: var(--c-text-soft); font-size: 1.0625rem; }

strong { color: var(--c-navy); font-weight: 700; }

/* ===== Buttons (capsule shape, like original) ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 0.95rem 1.875rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
    line-height: 1;
}
.btn--primary { background: var(--c-coral); color: var(--c-navy); }
.btn--primary:hover { background: var(--c-coral-deep); color: white; transform: translateY(-1px); box-shadow: var(--shadow); }

.btn--navy { background: var(--c-navy); color: white; }
.btn--navy:hover { background: var(--c-navy-dark); color: white; transform: translateY(-1px); box-shadow: var(--shadow); }

.btn--cyan { background: var(--c-navy-soft); color: var(--c-navy); }
.btn--cyan:hover { background: #D4E0EC; color: var(--c-navy); transform: translateY(-1px); }

.btn--whatsapp { background: white; color: var(--c-navy); border: 1px solid var(--c-border); }
.btn--whatsapp::before {
    content: '';
    width: 10px; height: 10px;
    background: var(--c-whatsapp);
    border-radius: 999px;
    display: inline-block;
    box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.2);
}
.btn--whatsapp:hover { background: var(--c-bg-soft); color: var(--c-navy); transform: translateY(-1px); box-shadow: var(--shadow); }

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

.btn--ghost { background: transparent; color: var(--c-navy); border: 1px solid var(--c-border); }
.btn--ghost:hover { background: var(--c-navy-soft); color: var(--c-navy); }

.btn--lg { padding: 1.125rem 2.25rem; font-size: 1.0625rem; }
.btn--full { width: 100%; }

/* ===== Header ===== */
.site-header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid transparent;
    z-index: 100;
    transition: box-shadow var(--transition), border-color var(--transition);
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); border-color: var(--c-border-soft); }
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.125rem 0;
    gap: 1.5rem;
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--c-cyan-deep);
    letter-spacing: -0.02em;
}
.logo:hover { color: var(--c-cyan-deep); opacity: 0.85; }
.logo-mark {
    width: 38px; height: 32px;
    color: var(--c-cyan-deep);
    flex-shrink: 0;
}
.nav-main { display: flex; align-items: center; gap: 2.25rem; }
.nav-main a {
    color: var(--c-navy);
    font-weight: 600;
    font-size: 1rem;
    transition: color var(--transition);
}
.nav-main a:hover, .nav-main a.is-active { color: var(--c-cyan-deep); }
.header-actions { display: flex; align-items: center; gap: 0.75rem; }
.menu-toggle { display: none; background: none; border: none; }
.mobile-nav { display: none; }

@media (max-width: 900px) {
    .nav-main, .header-actions .btn { display: none; }
    .menu-toggle {
        display: grid; place-items: center;
        width: 44px; height: 44px;
        background: var(--c-navy-soft);
        border: 1px solid var(--c-border-soft);
        border-radius: 12px;
        color: var(--c-navy);
    }
    .mobile-nav {
        display: none;
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem 1.25rem 1.5rem;
        background: white;
        border-top: 1px solid var(--c-border-soft);
    }
    .mobile-nav.is-open { display: flex; }
    .mobile-nav a {
        padding: 0.875rem 0;
        color: var(--c-navy);
        font-weight: 600;
        font-size: 1.0625rem;
        border-bottom: 1px solid var(--c-border-soft);
    }
    .mobile-nav .btn { margin-top: 0.5rem; }
}

/* ===== Hero ===== */
.hero {
    position: relative;
    padding: 4rem 0 5rem;
    background: linear-gradient(180deg, #F4F8FC 0%, #FBF6F4 100%);
    overflow: hidden;
}
.hero-inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 4rem; align-items: center; }
.hero h1 {
    font-size: clamp(2.5rem, 5.5vw + 1rem, 5rem);
    line-height: 1;
    margin-bottom: 1.5rem;
    color: var(--c-navy);
}
.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--c-navy);
    margin-bottom: 1.5rem;
    max-width: 540px;
    line-height: 1.4;
}
.hero-description {
    background: var(--c-navy-soft);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    color: var(--c-text-soft);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 540px;
}
.hero-whatsapp-card {
    background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-navy-dark) 100%);
    border-radius: 999px;
    padding: 1rem 1.5rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.75rem;
    max-width: 540px;
    transition: all var(--transition);
}
.hero-whatsapp-card:hover { transform: translateY(-1px); box-shadow: var(--shadow-lg); color: white; }
.hero-whatsapp-icon {
    width: 44px; height: 44px;
    background: rgba(37, 211, 102, 0.15);
    border: 2px solid var(--c-whatsapp);
    border-radius: 999px;
    display: grid;
    place-items: center;
    color: var(--c-whatsapp);
    flex-shrink: 0;
}
.hero-whatsapp-text strong { display: block; font-size: 1.0625rem; color: white; margin-bottom: 0.125rem; }
.hero-whatsapp-text span { font-size: 0.875rem; color: rgba(255,255,255,0.7); }
.hero-whatsapp-arrow { margin-left: auto; color: rgba(255,255,255,0.6); }

.hero-cta { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.hero-visual {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, #DAE5F2 0%, #E8EFF7 100%);
    overflow: hidden;
    box-shadow: var(--shadow);
    display: grid;
    place-items: center;
}
.hero-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 25% 25%, rgba(91, 207, 229, 0.18), transparent 55%),
        radial-gradient(circle at 75% 75%, rgba(244, 161, 161, 0.15), transparent 55%);
}
.hero-visual-icon {
    position: relative;
    color: var(--c-cyan-deep);
    width: 50%;
    max-width: 280px;
    opacity: 0.9;
}

@media (max-width: 900px) {
    .hero { padding: 2.5rem 0 3rem; }
    .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .hero-visual { aspect-ratio: 4 / 3; }
    .hero-cta .btn { flex: 1; min-width: 140px; }
}

/* ===== Section ===== */
.section { padding: var(--space-2xl) 0; }
.section--soft { background: var(--c-bg-soft); }
.section--navy {
    background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-navy-dark) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}
.section--navy::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(91, 207, 229, 0.15), transparent 50%),
        radial-gradient(circle at 85% 70%, rgba(244, 161, 161, 0.12), transparent 50%);
}
.section--navy > * { position: relative; }
.section--navy h2, .section--navy h3 { color: white; }
.section--navy p { color: rgba(255, 255, 255, 0.85); }
.section--navy .section-eyebrow { color: var(--c-coral); }

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-transform: uppercase;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--c-coral-deep);
    margin-bottom: 1rem;
}
.section-eyebrow::before {
    content: '';
    width: 36px; height: 3px;
    background: var(--c-coral);
    border-radius: 2px;
}
.section-eyebrow--center { justify-content: center; }
.section-eyebrow--center::before { content: none; }
.section-eyebrow--center::after, .section-header .section-eyebrow::before { content: ''; width: 36px; height: 3px; background: var(--c-coral); border-radius: 2px; }

.section-header { max-width: 760px; margin: 0 auto var(--space-lg); }
.section-header.text-center { text-align: center; }
.section-header.text-center .section-eyebrow { justify-content: center; }
.section-title { margin-bottom: 1.25rem; }
.section-subtitle { color: var(--c-text-soft); font-size: 1.125rem; line-height: 1.6; }
.section--navy .section-subtitle { color: rgba(255, 255, 255, 0.8); }

@media (max-width: 700px) {
    .section { padding: 3.5rem 0; }
}

/* ===== Steps (3-step cards with pink-tinted icons) ===== */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}
.step {
    background: white;
    border: 1px solid var(--c-border-soft);
    border-radius: var(--radius-lg);
    padding: 2.25rem 1.75rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}
.step:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.step-icon {
    width: 64px; height: 64px;
    background: var(--c-coral-soft);
    color: var(--c-navy);
    border-radius: 16px;
    display: grid;
    place-items: center;
    margin: 0 auto 1.25rem;
}
.step h3 { margin-bottom: 0.625rem; font-size: 1.125rem; text-transform: uppercase; letter-spacing: 0.04em; }
.step p { font-size: 0.9375rem; color: var(--c-text-soft); margin: 0; }

@media (max-width: 800px) { .steps { grid-template-columns: 1fr; } }

/* ===== Trust strip (Google rating) ===== */
.trust-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: white;
    border: 1px solid var(--c-border-soft);
    border-radius: 999px;
    padding: 0.875rem 1.5rem;
    margin: 2rem auto 0;
    width: max-content;
    max-width: 100%;
    box-shadow: var(--shadow-sm);
}
.trust-strip-google {
    width: 32px; height: 32px;
    background: var(--c-coral-soft);
    border-radius: 999px;
    display: grid;
    place-items: center;
    font-weight: 800;
    color: var(--c-coral-deep);
    flex-shrink: 0;
}
.trust-strip-rating { font-weight: 800; font-size: 1.25rem; color: var(--c-navy); }
.trust-strip-stars { color: var(--c-yellow); font-size: 1rem; letter-spacing: 0.05em; }
.trust-strip-text { color: var(--c-text-soft); font-size: 0.9375rem; }
.trust-strip-text a { color: var(--c-navy); font-weight: 700; text-decoration: underline; }

@media (max-width: 600px) {
    .trust-strip { flex-wrap: wrap; padding: 0.875rem 1.25rem; border-radius: var(--radius); }
}

/* ===== Numbered checklist (01, 02 with pink numbers - exactly like original) ===== */
.numbered-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.numbered-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: white;
    border: 1px solid var(--c-border-soft);
    border-radius: var(--radius);
    margin: 0;
    color: var(--c-navy);
    font-size: 1rem;
    line-height: 1.4;
    font-weight: 500;
    transition: all var(--transition);
}
.numbered-list li:hover { border-color: var(--c-coral-soft); box-shadow: var(--shadow-sm); }
.numbered-list li::before {
    counter-increment: numbered-item;
    content: counter(numbered-item, decimal-leading-zero);
    flex-shrink: 0;
    color: var(--c-coral-deep);
    font-weight: 800;
    font-size: 1.125rem;
    min-width: 28px;
}
.numbered-list { counter-reset: numbered-item; }

/* ===== Pricing cards (white card, light blue icon, navy "Měsíční cena" button) ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}
.pricing-card {
    background: white;
    border: 1px solid var(--c-border-soft);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}
.pricing-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.pricing-card-icon {
    width: 56px; height: 56px;
    background: var(--c-navy-soft);
    border-radius: 14px;
    color: var(--c-navy);
    display: grid;
    place-items: center;
    margin: 0 auto 1.5rem;
}
.pricing-card-row { padding: 0.75rem 0; border-top: 1px solid var(--c-border-soft); }
.pricing-card-row:first-of-type { border-top: none; }
.pricing-card-label { font-size: 0.8125rem; color: var(--c-text-muted); margin-bottom: 0.125rem; }
.pricing-card-value { font-size: 1.25rem; font-weight: 800; color: var(--c-navy); }
.pricing-card-cta {
    background: var(--c-navy);
    color: white;
    border-radius: var(--radius);
    padding: 1rem 1rem;
    margin-top: 1.25rem;
    text-align: center;
}
.pricing-card-cta-label { font-size: 0.8125rem; opacity: 0.7; margin-bottom: 0.125rem; }
.pricing-card-cta-value { font-size: 1.375rem; font-weight: 800; }

/* ===== Features ===== */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}
.feature {
    background: white;
    border: 1px solid var(--c-border-soft);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    transition: all var(--transition);
}
.feature:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: var(--c-coral-soft); }
.feature-icon {
    width: 56px; height: 56px;
    background: var(--c-coral-soft);
    color: var(--c-navy);
    border-radius: 14px;
    display: grid;
    place-items: center;
    margin-bottom: 1.25rem;
}
.feature h3 { margin-bottom: 0.5rem; font-size: 1.1875rem; }
.feature p { font-size: 0.9375rem; margin: 0; color: var(--c-text-soft); }

/* ===== Reviews ===== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.review {
    background: white;
    border: 1px solid var(--c-border-soft);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
}
.review-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.review-avatar {
    width: 44px; height: 44px;
    background: var(--c-navy);
    color: white;
    border-radius: 999px;
    display: grid;
    place-items: center;
    font-weight: 700;
}
.review-name { font-weight: 700; font-size: 1rem; color: var(--c-navy); }
.review-meta { font-size: 0.8125rem; color: var(--c-text-muted); }
.review-google {
    margin-left: auto;
    width: 24px; height: 24px;
    background: white;
    border: 1px solid var(--c-border);
    border-radius: 999px;
    display: grid;
    place-items: center;
    color: var(--c-coral-deep);
    font-weight: 800;
    font-size: 0.875rem;
}
.review-stars { display: flex; gap: 2px; color: var(--c-yellow); margin-bottom: 0.75rem; }
.review-text { font-size: 0.9375rem; line-height: 1.6; color: var(--c-text-soft); }

/* ===== FAQ (accordion with pink number circles) ===== */
.faq { max-width: var(--container-narrow); margin: 0 auto; counter-reset: faq-item; }
.faq-item {
    background: white;
    border: 1px solid var(--c-border-soft);
    border-radius: var(--radius);
    margin-bottom: 0.75rem;
    overflow: hidden;
    transition: all var(--transition);
    counter-increment: faq-item;
}
.faq-item[open] { border-color: var(--c-coral-soft); box-shadow: var(--shadow-sm); }
.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 1.25rem 1.5rem 1.25rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 700;
    font-size: 1.0625rem;
    color: var(--c-navy);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before {
    content: counter(faq-item);
    width: 38px; height: 38px;
    background: var(--c-coral-soft);
    color: var(--c-coral-deep);
    border-radius: 10px;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 0.9375rem;
    flex-shrink: 0;
}
.faq-item summary::after {
    content: '';
    margin-left: auto;
    width: 32px; height: 32px;
    background-color: var(--c-bg-soft);
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231A2D5C' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px;
    border-radius: 999px;
    transition: transform var(--transition);
    flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(180deg); background-color: var(--c-coral-soft); }
.faq-content {
    padding: 0 1.5rem 1.5rem 4.875rem;
    color: var(--c-text-soft);
    font-size: 1rem;
    line-height: 1.7;
}
.faq-content p { margin-bottom: 0.75rem; color: var(--c-text-soft); }

/* ===== CTA Banner (dark navy gradient with rounded corners) ===== */
.cta-banner {
    background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-navy-dark) 100%);
    color: white;
    border-radius: var(--radius-xl);
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(91, 207, 229, 0.15), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(244, 161, 161, 0.12), transparent 50%);
}
.cta-banner > * { position: relative; }
.cta-banner h2 { color: var(--c-cyan); margin-bottom: 1rem; font-size: clamp(1.875rem, 4vw + 1rem, 3.25rem); }
.cta-banner p { color: rgba(255, 255, 255, 0.85); font-size: 1.125rem; margin-bottom: 2rem; max-width: 720px; margin-left: auto; margin-right: auto; }
.cta-banner .btn-row { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }
.cta-banner .btn--whatsapp { background: white; color: var(--c-navy); border: none; }
.cta-banner .btn--whatsapp:hover { background: var(--c-bg-soft); }
.cta-banner .btn--navy {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}
.cta-banner .btn--navy:hover { background: rgba(255, 255, 255, 0.16); color: white; }

@media (max-width: 700px) { .cta-banner { padding: 3rem 1.5rem; } }

/* ===== Contact / Form ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 3rem;
    align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.contact-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: white;
    border: 1px solid var(--c-border-soft);
    border-radius: var(--radius);
    color: var(--c-navy);
    transition: all var(--transition);
}
.contact-card:hover { border-color: var(--c-coral-soft); box-shadow: var(--shadow-sm); color: var(--c-navy); }
.contact-card-icon {
    width: 48px; height: 48px;
    background: var(--c-coral-soft);
    color: var(--c-navy);
    border-radius: 12px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}
.contact-card-icon--green { background: rgba(37, 211, 102, 0.15); color: var(--c-whatsapp); }
.contact-card-label { font-size: 0.8125rem; color: var(--c-text-muted); margin-bottom: 0.125rem; }
.contact-card-value { font-weight: 700; font-size: 1.0625rem; color: var(--c-navy); }

.form {
    background: white;
    border: 1px solid var(--c-border-soft);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--c-navy);
    margin-bottom: 0.375rem;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1.5px solid var(--c-border);
    border-radius: 12px;
    font: inherit;
    color: var(--c-navy);
    background: white;
    transition: border-color var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--c-coral);
    box-shadow: 0 0 0 3px var(--c-coral-soft);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-group small { color: var(--c-text-muted); font-size: 0.8125rem; }
.form-success {
    background: #ECFDF5;
    border: 1px solid #A7F3D0;
    color: #065F46;
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius);
    margin-bottom: 1rem;
    font-size: 0.9375rem;
}
.form-error {
    background: #FEF2F2;
    border: 1px solid #FECACA;
    color: #991B1B;
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    margin-bottom: 1rem;
    font-size: 0.9375rem;
}

@media (max-width: 800px) {
    .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
    .form-row { grid-template-columns: 1fr; }
    .form { padding: 1.5rem; }
}

/* ===== Articles ===== */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.75rem;
}
.article-card {
    background: white;
    border: 1px solid var(--c-border-soft);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    color: var(--c-navy);
}
.article-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--c-coral-soft); color: var(--c-navy); }
.article-card-image {
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, var(--c-navy-soft) 0%, var(--c-coral-soft) 100%);
    position: relative;
    overflow: hidden;
}
.article-card-icon {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: var(--c-navy);
    opacity: 0.4;
}
.article-card-body { padding: 1.5rem; flex-grow: 1; display: flex; flex-direction: column; }
.article-card-meta {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.8125rem;
    color: var(--c-text-muted);
    margin-bottom: 0.75rem;
}
.article-card-meta .dot { color: var(--c-border); }
.article-card-tag {
    display: inline-block;
    background: var(--c-coral-soft);
    color: var(--c-coral-deep);
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.article-card h3 { font-size: 1.25rem; margin-bottom: 0.625rem; line-height: 1.3; color: var(--c-navy); }
.article-card p { font-size: 0.9375rem; margin-bottom: 1rem; flex-grow: 1; color: var(--c-text-soft); }
.article-card-link {
    color: var(--c-coral-deep);
    font-weight: 700;
    font-size: 0.9375rem;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    margin-top: auto;
}
.article-card-link::after {
    content: '→';
    transition: transform var(--transition);
}
.article-card:hover .article-card-link::after { transform: translateX(3px); }

/* ===== Article Detail ===== */
.article-hero {
    padding: 3rem 0 2.5rem;
    background: linear-gradient(180deg, var(--c-navy-soft) 0%, white 100%);
}
.article-hero-inner { max-width: 760px; margin: 0 auto; }
.article-hero h1 { font-size: clamp(2rem, 4vw + 1rem, 3.25rem); margin-bottom: 1rem; }
.article-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--c-text-muted);
    margin-bottom: 1.25rem;
}
.article-breadcrumb a { color: var(--c-text-muted); }
.article-breadcrumb a:hover { color: var(--c-navy); }
.article-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--c-text-muted);
    margin-top: 1.5rem;
    flex-wrap: wrap;
}
.article-meta .author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: var(--c-navy);
}
.article-meta .author-avatar {
    width: 32px; height: 32px;
    background: var(--c-navy);
    color: white;
    border-radius: 999px;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 0.8125rem;
}

.article-featured-image {
    margin-top: -1.5rem;
    margin-bottom: 0.5rem;
}
.article-featured-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.article-body {
    max-width: var(--container-narrow);
    margin: 0 auto;
    padding: var(--space-xl) 1.25rem;
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--c-text);
}

/* About / "Jak to u nás funguje" section */
.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}
.about-image {
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, var(--c-navy-soft), var(--c-coral-soft));
    overflow: hidden;
    position: relative;
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-content h2 { margin-bottom: 1.25rem; }
.about-content .lead { margin-bottom: 1.5rem; }
.about-bullets { list-style: none; margin: 0; padding: 0; }
.about-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    padding: 0.625rem 0;
    color: var(--c-text);
    font-size: 1.0625rem;
    margin: 0;
    font-weight: 500;
}
.about-bullets li::before {
    content: '';
    flex-shrink: 0;
    width: 24px; height: 24px;
    background-color: var(--c-coral-soft);
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E07F7F' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 14px;
    border-radius: 50%;
    margin-top: 0.125rem;
}

@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .about-image { aspect-ratio: 4 / 3; }
}
.article-body h2 {
    font-size: 1.875rem;
    margin: 2.5rem 0 1rem;
}
.article-body h3 { font-size: 1.375rem; margin: 2rem 0 0.75rem; }
.article-body p { font-size: 1.125rem; line-height: 1.75; margin-bottom: 1.25rem; color: #2A3658; }
.article-body ul, .article-body ol { margin: 0 0 1.5rem 1.5rem; }
.article-body li { font-size: 1.125rem; line-height: 1.7; margin-bottom: 0.5rem; color: #2A3658; }
.article-body strong { color: var(--c-navy); }
.article-body blockquote {
    border-left: 4px solid var(--c-coral);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background: var(--c-coral-soft);
    border-radius: 0 var(--radius) var(--radius) 0;
    color: var(--c-navy);
}
.article-body code {
    background: var(--c-bg-soft);
    padding: 0.125rem 0.375rem;
    border-radius: 4px;
    font-size: 0.95em;
}
.article-body img { border-radius: var(--radius); margin: 1.5rem 0; }
.article-body hr { border: none; height: 1px; background: var(--c-border); margin: 2.5rem 0; }
.article-body table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
.article-body th, .article-body td { padding: 0.75rem 1rem; border-bottom: 1px solid var(--c-border-soft); text-align: left; }
.article-body th { font-weight: 700; background: var(--c-bg-soft); }

.article-share {
    max-width: var(--container-narrow);
    margin: 0 auto;
    padding: 0 1.25rem 2rem;
    display: flex;
    gap: 0.75rem;
    align-items: center;
}
.article-share-label { color: var(--c-text-muted); font-size: 0.875rem; font-weight: 600; }
.article-share a {
    width: 40px; height: 40px;
    background: var(--c-bg-soft);
    color: var(--c-navy);
    border-radius: 999px;
    display: grid;
    place-items: center;
    transition: all var(--transition);
}
.article-share a:hover { background: var(--c-coral); color: var(--c-navy); }

.related-section { background: var(--c-bg-soft); padding: var(--space-xl) 0; }

/* ===== Footer ===== */
.site-footer {
    background: var(--c-navy-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-brand .logo { color: var(--c-cyan); margin-bottom: 1rem; }
.footer-brand p { font-size: 0.9375rem; color: rgba(255, 255, 255, 0.6); max-width: 320px; }
.footer-col h4 {
    color: white;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 0.625rem; color: rgba(255, 255, 255, 0.7); font-size: 0.9375rem; }
.footer-col a { color: rgba(255, 255, 255, 0.7); font-size: 0.9375rem; transition: color var(--transition); }
.footer-col a:hover { color: white; }
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.4);
    flex-wrap: wrap;
    gap: 1rem;
}

@media (max-width: 800px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 500px) {
    .footer-grid { grid-template-columns: 1fr; }
}

/* ===== Floating WhatsApp ===== */
.whatsapp-fab {
    position: fixed;
    bottom: 1.25rem;
    right: 1.25rem;
    width: 60px;
    height: 60px;
    background: var(--c-whatsapp);
    color: white;
    border-radius: 999px;
    display: grid;
    place-items: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 50;
    transition: transform var(--transition);
}
.whatsapp-fab:hover { transform: scale(1.06); color: white; }
.whatsapp-fab::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: var(--c-whatsapp);
    z-index: -1;
    animation: pulse 2.4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@keyframes pulse {
    0% { transform: scale(1); opacity: 0.4; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* ===== Utilities ===== */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-sm); }
.mb-2 { margin-bottom: var(--space-md); }
.mb-3 { margin-bottom: var(--space-lg); }
.mb-4 { margin-bottom: var(--space-xl); }

/* ===== 404 ===== */
.page-404 { padding: 6rem 0; text-align: center; }
.page-404 h1 { font-size: clamp(4rem, 10vw, 7rem); color: var(--c-coral-deep); margin-bottom: 1rem; }
.page-404 p { font-size: 1.25rem; margin-bottom: 2rem; color: var(--c-text-soft); }

/* ===== Admin overrides ===== */
.admin-shell { min-height: 100vh; background: var(--c-bg-soft); }
.admin-header {
    background: white;
    border-bottom: 1px solid var(--c-border-soft);
    padding: 1rem 0;
}
.admin-header-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.admin-main { max-width: 1100px; margin: 2rem auto; padding: 0 1.25rem; }
.admin-card { background: white; border: 1px solid var(--c-border-soft); border-radius: var(--radius-lg); padding: 2rem; }
.admin-table { width: 100%; border-collapse: collapse; margin-bottom: 1rem; }
.admin-table th, .admin-table td { padding: 0.875rem 1rem; text-align: left; border-bottom: 1px solid var(--c-border-soft); }
.admin-table th { font-weight: 700; color: var(--c-text-muted); font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.06em; }
.admin-table tbody tr:hover { background: var(--c-bg-soft); }
.admin-section-title { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; }
.editor-textarea { width: 100%; min-height: 60vh; padding: 1.25rem; border: 1.5px solid var(--c-border); border-radius: 12px; font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 0.875rem; line-height: 1.6; color: var(--c-navy); }
.editor-textarea:focus { outline: none; border-color: var(--c-coral); box-shadow: 0 0 0 3px var(--c-coral-soft); }
