/*
Theme Name: Agentura pomoci
Theme URI: https://agenturapomoci.cz
Author: Agentura osobní asistence a sociálního poradenství, o.p.s
Description: Profesionální šablona pro agenturu osobní asistence a sociálního poradenství
Version: 2.0
License: GNU General Public License v2 or later
Text Domain: asistence
*/

/* ========================
   CSS PROMĚNNÉ
======================== */
:root {
    --orange:       #E8651A;
    --orange-dark:  #c04e10;
    --orange-light: #fdf0e8;
    --orange-mid:   rgba(232,101,26,0.12);
    --dark:         #1a1a1a;
    --dark2:        #111;
    --mid:          #4a4a4a;
    --light:        #faf8f6;
    --white:        #ffffff;
    --border:       #eeddd4;
    --font-head:    'Cormorant Garamond', Georgia, serif;
    --font-body:    'DM Sans', 'Segoe UI', sans-serif;
    --max-width:    1140px;
    --radius:       8px;
    --transition:   0.22s ease;
}

/* ========================
   RESET & BASE
======================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.7;
    color: var(--mid);
    background: var(--white);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--orange-dark); }
h1,h2,h3,h4,h5 { font-family: var(--font-head); color: var(--dark); line-height: 1.25; font-weight: 700; }
p { margin-bottom: 1.1em; }
p:last-child { margin-bottom: 0; }
ul,ol { padding-left: 1.5em; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section-padding { padding: 72px 0; }

/* ========================
   SKIP LINK
======================== */
.skip-link { position: absolute; top: -100px; left: 16px; background: var(--orange); color: #fff; padding: 8px 16px; border-radius: var(--radius); z-index: 999; }
.skip-link:focus { top: 8px; }

/* ========================
   HEADER
======================== */
.site-header {
    background: var(--dark);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 16px rgba(0,0,0,0.3);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    height: 68px;
}
.site-logo-empty { display: none; }
.site-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-mark {
    width: 40px; height: 40px;
    background: var(--orange);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.logo-mark img { width: 24px; height: 24px; object-fit: contain; }
.logo-text .logo-name { font-family: var(--font-head); font-size: 1.15rem; font-weight: 700; color: #fff; line-height: 1.1; }
.logo-text .logo-sub { font-size: 0.7rem; color: rgba(255,255,255,0.4); letter-spacing: 0.05em; text-transform: uppercase; }

/* ========================
   NAVIGACE
======================== */
.main-nav ul { list-style: none; padding: 0; margin: 0; display: flex; gap: 2px; }
.main-nav ul li a {
    display: block;
    padding: 6px 9px;
    font-size: 0.84rem;
    font-weight: 500;
    color: rgba(255,255,255,0.65);
    border-radius: 5px;
    transition: background var(--transition), color var(--transition);
    white-space: nowrap;
}
.main-nav ul li a:hover,
.main-nav ul li.current-menu-item a {
    color: var(--orange);
    background: rgba(232,101,26,0.1);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}
.menu-toggle span {
    display: block; width: 24px; height: 2px;
    background: rgba(255,255,255,0.7);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

/* ========================
   HERO S FOTKOU
======================== */
.hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--dark);
}
.hero-bg-img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
}
.hero-bg-fallback {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #2a1a0e 0%, #1a1008 100%);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.72) 100%);
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 48px 24px 56px;
    width: 100%;
    max-width: 680px;
    margin-left: max(24px, calc((100% - var(--max-width)) / 2 + 24px));
}
.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(232,101,26,0.18);
    border: 1px solid rgba(232,101,26,0.35);
    border-radius: 20px;
    padding: 4px 14px;
    margin-bottom: 18px;
}
.hero-pill .pill-dot { width: 6px; height: 6px; background: var(--orange); border-radius: 50%; }
.hero-pill span { font-size: 0.75rem; font-weight: 600; color: #ffb380; letter-spacing: 0.07em; text-transform: uppercase; }
.hero h1 {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    color: #fff;
    margin-bottom: 18px;
    line-height: 1.12;
    text-shadow: 0 2px 16px rgba(0,0,0,0.35);
}
.hero h1 em { color: #ffaa66; font-style: normal; }
.hero-motto {
    font-size: 1rem;
    color: rgba(255,255,255,0.68);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 28px;
    border-left: 2px solid rgba(232,101,26,0.55);
    padding-left: 14px;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
    display: inline-block;
    padding: 12px 26px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition);
}
.btn-orange { background: var(--orange); color: #fff; }
.btn-orange:hover { background: var(--orange-dark); color: #fff; }
.btn-ghost {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
}
.btn-ghost:hover { background: rgba(255,255,255,0.18); color: #fff; }

/* ========================
   STATS LIŠTA
======================== */
.stats-bar {
    background: var(--orange);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.stat-item {
    padding: 18px 24px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.2);
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--font-head); font-size: 1.7rem; font-weight: 700; color: #fff; line-height: 1; }
.stat-lbl { font-size: 0.75rem; color: rgba(255,255,255,0.82); text-transform: uppercase; letter-spacing: 0.06em; }

/* ========================
   SEKCE HEADER
======================== */
.section-header { text-align: center; margin-bottom: 48px; }
.sec-eyebrow { display: inline-block; font-size: 0.75rem; font-weight: 600; color: var(--orange); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 8px; }
.sec-eyebrow.light { color: var(--orange); }
.section-header h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--dark); }
.sec-divider { width: 44px; height: 3px; background: var(--orange); margin: 12px auto 0; border-radius: 2px; }

/* ========================
   SLUŽBY
======================== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
    transition: box-shadow var(--transition), transform var(--transition);
    text-align: center;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--orange);
}
.service-card:hover { box-shadow: 0 6px 24px rgba(232,101,26,0.12); transform: translateY(-3px); }
.service-icon {
    width: 44px; height: 44px;
    background: var(--orange-mid);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
    color: var(--orange);
}
.service-icon svg { width: 22px; height: 22px; }
.service-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.service-card p { font-size: 0.92rem; color: var(--mid); }

/* ========================
   O NÁS STRIP
======================== */
.about-strip { background: var(--dark); padding: 64px 0; }
.about-inner { display: flex; gap: 48px; align-items: center; }
.about-text { flex: 1; }
.about-text h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); color: #fff; margin: 10px 0 16px; }
.about-text p { font-size: 0.97rem; color: rgba(255,255,255,0.62); line-height: 1.8; }
.about-badge {
    flex-shrink: 0;
    width: 160px;
    background: rgba(232,101,26,0.1);
    border: 1px solid rgba(232,101,26,0.25);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}
.badge-big { display: block; font-family: var(--font-head); font-size: 2.8rem; font-weight: 700; color: var(--orange); line-height: 1; }
.badge-sm { display: block; font-size: 0.72rem; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 8px; }

/* ========================
   KONTAKT
======================== */
.contact-strip { background: var(--light); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.contact-inner h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); color: var(--dark); margin-bottom: 28px; }
.contact-items { display: flex; flex-direction: column; gap: 16px; }
.contact-item { display: flex; align-items: center; gap: 14px; }
.contact-icon {
    width: 40px; height: 40px;
    background: var(--orange-mid);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    color: var(--orange);
}
.contact-icon svg { width: 18px; height: 18px; }
.contact-key { font-size: 0.72rem; color: #888; text-transform: uppercase; letter-spacing: 0.05em; }
.contact-val { font-size: 1rem; font-weight: 500; color: var(--dark); }
.map-placeholder { height: 260px; border-radius: var(--radius); overflow: hidden; background: var(--orange-light); border: 1px solid var(--border); }
.map-placeholder iframe { width: 100%; height: 100%; border: 0; }

/* ========================
   STATICKÉ STRÁNKY
======================== */
.page-wrap { max-width: 860px; margin: 0 auto; padding: 56px 24px; }
.page-wrap h1 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 32px; padding-bottom: 20px; border-bottom: 2px solid var(--border); }
.page-content { font-size: 1.02rem; }
.page-content h2, .page-content h3 { margin: 2em 0 0.7em; }

/* ========================
   SINGLE POST
======================== */
.single-post-wrap { max-width: 760px; margin: 0 auto; padding: 56px 24px; }
.post-meta { font-size: 0.78rem; color: var(--orange); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 14px; }
.single-post-wrap h1 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 28px; }
.post-thumbnail { border-radius: var(--radius); overflow: hidden; margin-bottom: 36px; }
.post-content { font-size: 1.02rem; }
.post-content h2, .post-content h3 { margin: 2em 0 0.7em; }

/* ========================
   BLOG LISTING
======================== */
.posts-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px; }
.post-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: box-shadow var(--transition), transform var(--transition); display: flex; flex-direction: column; }
.post-card:hover { box-shadow: 0 6px 24px rgba(232,101,26,0.1); transform: translateY(-3px); }
.post-card-thumb { aspect-ratio: 16/9; background: var(--orange-light); overflow: hidden; }
.post-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.post-card:hover .post-card-thumb img { transform: scale(1.04); }
.post-card-body { padding: 20px 22px 22px; flex: 1; display: flex; flex-direction: column; }
.post-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.post-card h3 a { color: var(--dark); }
.post-card h3 a:hover { color: var(--orange); }
.post-card p { font-size: 0.9rem; flex: 1; margin-bottom: 14px; }
.read-more { font-size: 0.88rem; font-weight: 600; color: var(--orange); display: flex; align-items: center; gap: 5px; margin-top: auto; }
.read-more::after { content: '→'; transition: margin var(--transition); }
.read-more:hover::after { margin-left: 4px; }

/* ========================
   PATIČKA
======================== */
.site-footer { background: var(--dark2); color: rgba(255,255,255,0.7); }
.footer-top {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 56px 24px 40px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
}
.footer-logo-name { font-family: var(--font-head); font-size: 1.3rem; color: #fff; margin-bottom: 4px; }
.footer-logo-sub { font-size: 0.72rem; color: rgba(255,255,255,0.35); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 16px; }
.footer-about p { font-size: 0.88rem; line-height: 1.7; }
.footer-col h4 { font-family: var(--font-body); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: #fff; margin-bottom: 14px; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 7px; }
.footer-col ul li a { font-size: 0.88rem; color: rgba(255,255,255,0.6); }
.footer-col ul li a:hover { color: var(--orange); }
.footer-contact-item { display: flex; gap: 9px; font-size: 0.88rem; margin-bottom: 9px; color: rgba(255,255,255,0.6); align-items: flex-start; }
.footer-contact-item svg { flex-shrink: 0; margin-top: 3px; color: var(--orange); width: 15px; height: 15px; }
.footer-badge {
    display: inline-block;
    background: rgba(232,101,26,0.15);
    border: 1px solid rgba(232,101,26,0.3);
    border-radius: 5px;
    padding: 5px 12px;
    font-size: 0.75rem;
    color: var(--orange);
    font-weight: 600;
    margin-top: 12px;
}
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 18px 24px; text-align: center; font-size: 0.8rem; color: rgba(255,255,255,0.3); }

/* ========================
   RESPONZIVITA
======================== */
@media (max-width: 960px) {
    .services-grid { grid-template-columns: 1fr 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .footer-about { grid-column: 1 / -1; }
    .contact-inner { grid-template-columns: 1fr; }
    .map-placeholder { height: 220px; }
}

@media (max-width: 700px) {
    .menu-toggle { display: flex; }
    .main-nav {
        display: none;
        position: absolute;
        top: 68px; left: 0; right: 0;
        background: var(--dark);
        border-top: 1px solid rgba(255,255,255,0.1);
        padding: 10px 0 14px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    }
    .main-nav.open { display: block; }
    .main-nav ul { flex-direction: column; gap: 0; padding: 0 14px; }
    .main-nav ul li a { padding: 10px 12px; font-size: 0.95rem; color: rgba(255,255,255,0.75); }
    .hero { min-height: 420px; }
    .hero-content { margin-left: 0; padding: 32px 20px 40px; }
    .stats-bar { grid-template-columns: 1fr; }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); }
    .stat-item:last-child { border-bottom: none; }
    .services-grid { grid-template-columns: 1fr; }
    .about-inner { flex-direction: column; }
    .about-badge { width: 100%; }
    .footer-top { grid-template-columns: 1fr; gap: 28px; }
    .section-padding { padding: 48px 0; }
    .btn-ghost { margin-top: 0; }
}

@media (max-width: 420px) {
    .hero h1 { font-size: 1.75rem; }
    .hero-btns { flex-direction: column; }
    .btn { text-align: center; }
}

/* ========================
   LAYOUT S POSTRANNÍM PANELEM
======================== */
.content-sidebar-wrap {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 40px;
    padding-top: 48px;
    padding-bottom: 56px;
    align-items: start;
}

.main-content { min-width: 0; }

/* ========================
   POSTRANNÍ PANEL
======================== */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sidebar-widget {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 20px;
}

.sidebar-widget:last-child { margin-bottom: 0; }

.widget-title {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--dark);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--orange);
    display: inline-block;
}

/* Vyhledávání */
.search-form { display: flex; gap: 6px; width: 100%; }
.search-field {
    flex: 1;
    min-width: 0;
    padding: 8px 10px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.85rem;
    background: var(--white);
    color: var(--dark);
    outline: none;
    transition: border-color var(--transition);
    width: 100%;
}
.search-field:focus { border-color: var(--orange); }
.search-submit {
    padding: 8px 12px;
    background: var(--orange);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
}
.search-submit:hover { background: var(--orange-dark); }

/* Logo v sidebaru */
.sidebar-logo { text-align: center; display: flex; justify-content: center; }
.sidebar-logo a { display: block; text-align: center; width: 100%; }
.sidebar-logo-img { max-width: 100%; width: 100%; height: auto; margin: 0 auto; display: block; }

/* Adresa */
.sidebar-address address {
    font-style: normal;
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--mid);
}
.sidebar-address address strong { color: var(--dark); }

/* Facebook */
.fb-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--dark);
    font-size: 0.88rem;
    font-weight: 500;
    text-decoration: none;
    transition: color var(--transition);
    text-align: center;
}
.fb-link svg { width: 48px; height: 48px; }
.fb-link:hover { color: #1877F2; }
.fb-link span { line-height: 1.3; }

/* Widgety — obrázky na střed */
.sidebar-widget img {
    display: block;
    max-width: 120px;
    height: auto;
    margin: 0 auto;
    border-radius: 4px;
}
.sidebar-widget a img {
    max-width: 120px;
}

/* Widgety z administrace */
.sidebar-widget ul { list-style: none; padding: 0; }
.sidebar-widget ul li { padding: 5px 0; border-bottom: 1px solid var(--border); font-size: 0.9rem; }
.sidebar-widget ul li:last-child { border-bottom: none; }
.sidebar-widget ul li a { color: var(--mid); }
.sidebar-widget ul li a:hover { color: var(--orange); }
.sidebar-widget { text-align: center; }

/* ========================
   RESPONZIVITA SIDEBARU
======================== */
@media (max-width: 860px) {
    .content-sidebar-wrap {
        grid-template-columns: 1fr;
    }
    .sidebar {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 16px;
    }
    .sidebar-widget {
        flex: 1 1 220px;
        margin-bottom: 0;
    }
}

@media (max-width: 500px) {
    .sidebar { flex-direction: column; }
    .sidebar-widget { flex: 1 1 100%; }
    .content-sidebar-wrap { padding-top: 32px; padding-bottom: 40px; }
}

/* ========================
   WORDPRESS ADMIN LIŠTA
======================== */
.admin-bar .site-header {
    top: 32px;
}
@media screen and (max-width: 782px) {
    .admin-bar .site-header {
        top: 46px;
    }
}

/* ========================
   OBSAH ÚVODNÍ STRÁNKY
======================== */
.hero-page-content {
    padding: 48px 24px;
    text-align: center;
}
.hero-page-content img {
    display: block;
    margin: 0 auto 24px;
    max-width: 100%;
    height: auto;
}
.hero-page-content p {
    text-align: center;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}
.hero-page-content h1,
.hero-page-content h2,
.hero-page-content h3 {
    text-align: center;
}

/* ========================
   HEADER LOGO BADGE
======================== */
.header-logo-img {
    height: 44px;
    width: auto;
    display: block;
}

.header-logo-badge {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-logo-short {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: var(--orange);
    color: #fff;
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 7px;
    flex-shrink: 0;
    letter-spacing: 0.02em;
}

.header-logo-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.logo-name {
    font-family: var(--font-head);
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    white-space: nowrap;
}

.logo-sub {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
}

@media (max-width: 900px) {
    .logo-name { display: none; }
}

.hero-sign-text span {
    display: block;
    font-family: var(--font-head);
    font-size: clamp(0.85rem, 1.4vw, 1.15rem);
    font-weight: 700;
    color: #c8b89a;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    line-height: 1.4;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

@media (max-width: 700px) {
    .hero-sign-text { display: none; }
}

/* ========================
   NÁZEV ORGANIZACE POD MENU
======================== */
.org-name-bar {
    background: #111;
    border-bottom: 1px solid rgba(232,101,26,0.3);
    text-align: center;
    padding: 7px 24px;
}

.org-name-text {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #E8651A;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ========================
   JAK TO FUNGUJE
======================== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.step-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
    position: relative;
}

.step-num {
    width: 48px; height: 48px;
    background: var(--orange);
    color: #fff;
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
}

.step-card h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: var(--dark);
}

.step-card p {
    font-size: 0.9rem;
    color: var(--mid);
}

/* ========================
   ČÍSLA
======================== */
.stats-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stats-card {
    background: var(--orange-light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stats-card-num {
    font-family: var(--font-head);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--orange);
    line-height: 1;
}

.stats-card-lbl {
    font-size: 0.85rem;
    color: var(--mid);
    line-height: 1.5;
}

/* ========================
   CTA BANNER
======================== */
.cta-banner {
    background: var(--dark);
    border-radius: var(--radius);
    padding: 40px 32px;
    text-align: center;
    margin-bottom: 0;
}

.cta-text {
    font-family: var(--font-head);
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: #fff;
    line-height: 1.5;
    margin-bottom: 24px;
}

@media (max-width: 700px) {
    .steps-grid { grid-template-columns: 1fr; }
    .stats-cards { grid-template-columns: 1fr; }
    .cta-banner { padding: 28px 20px; }
}
