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

        :root {
            --primary: #20232A;
            --gold: #bea871;
            --dark: #1e293b;
            --light: #f8fafc;
            --gray: #64748b;
        }

        body {
            font-family: 'DM Sans', sans-serif;
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .header {
            background: var(--primary);
            padding: 1rem 2rem;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
        }

        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 2rem;
        }

        .logo {
            height: 50px;
        }

        .header-contact {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        .contact-link {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: white;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .contact-link:hover {
            opacity: 0.8;
        }

        .contact-icon {
            font-size: 1.2rem;
        }

        .hero {
            background: var(--primary);
            color: white;
            padding: 4rem 2rem 6rem;
            text-align: center;
        }

        .hero-content {
            max-width: 900px;
            margin: 0 auto;
        }

        .hero h1 {
            font-family: 'Sora', sans-serif;
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            opacity: 0.95;
            max-width: 700px;
            margin: 0 auto 2rem;
            font-weight: 300;
        }

        .profile-image {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            object-fit: cover;
            border: 6px solid var(--gold);
            margin: 2rem auto;
            display: block;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
        }

        .partner-badge {
            margin-top: 2rem;
        }

        .partner-badge img {
            max-width: 300px;
            height: auto;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section {
            padding: 5rem 0;
        }

        .section:nth-child(even) {
            background: var(--light);
        }

        .section-title {
            font-family: 'Sora', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
            padding-bottom: 1rem;
            color: var(--dark);
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--primary);
            border-radius: 2px;
        }

        .intro-text {
            font-size: 1.1rem;
            max-width: 900px;
            margin: 0 auto 3rem;
            color: var(--gray);
            line-height: 1.8;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .service-card {
            background: white;
            padding: 2.5rem;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(0,0,0,0.15);
            border-color: var(--primary);
        }

        .service-icon {
            width: 60px;
            height: 60px;
            background: #626679;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
        }

        .service-card h3 {
            font-family: 'Sora', sans-serif;
            font-size: 1.4rem;
            margin-bottom: 1rem;
            color: var(--dark);
        }

        .service-card p {
            color: var(--gray);
            line-height: 1.7;
        }

        .testimonials {
            background: var(--primary);
            color: white;
            padding: 5rem 0;
        }

        .testimonials .section-title {
            color: white;
        }

        .testimonials .section-title::after {
            background: white;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .testimonial-card {
            background: rgba(255,255,255,0.1);
            padding: 2rem;
            border-radius: 16px;
            border: 1px solid rgba(255,255,255,0.2);
            transition: all 0.3s ease;
        }

        .testimonial-card:hover {
            background: rgba(255,255,255,0.15);
            transform: translateY(-5px);
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 1.5rem;
            line-height: 1.7;
            font-size: 0.95rem;
        }

        .testimonial-author {
            font-weight: 600;
            margin-bottom: 0.3rem;
        }

        .testimonial-company {
            font-size: 0.9rem;
            opacity: 0.8;
        }

        .cta-section {
            background: #fff;
            color: #000;
            padding: 5rem 0;
            text-align: center;
        }

        .cta-button {
            display: inline-block;
            background: var(--primary);
            color: #fff;
            padding: 1.2rem 3rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            margin-top: 2rem;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.3);
        }

        .footer {
            background: #1a1d2e;
            color: rgba(255,255,255,0.7);
            padding: 3rem 2rem 2rem;
            text-align: center;
        }

        .footer-links {
            margin-bottom: 1.5rem;
        }

        .footer-links a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            margin: 0 1rem;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: white;
        }

        .copyright {
            font-size: 0.9rem;
            opacity: 0.6;
        }

        /* Cookie Bar */
        .cookie-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: #2d3142;
            color: white;
            padding: 1.5rem 2rem;
            box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
            z-index: 1000;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }

        .cookie-bar.show {
            transform: translateY(0);
        }

        .cookie-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .cookie-text {
            flex: 1;
            min-width: 250px;
        }

        .cookie-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .cookie-btn {
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }

        .cookie-btn-accept {
            background: var(--primary);
            color: white;
        }

        .cookie-btn-accept:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
        }

        .cookie-btn-decline {
            background: transparent;
            color: white;
            border: 2px solid rgba(255,255,255,0.3);
        }

        .cookie-btn-decline:hover {
            border-color: white;
        }

        @media (max-width: 768px) {
            .hero {
                padding: 3rem 2rem 4rem;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .services-grid,
            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .header-contact {
                gap: 1rem;
            }

            .contact-link {
                font-size: 0.85rem;
            }

            .cookie-content {
                flex-direction: column;
                text-align: center;
            }

            .cookie-buttons {
                justify-content: center;
                width: 100%;
            }
        }

        @media (max-width: 600px) {
    /* Mobil: všechno vedle sebe, bez přetékání */
    .header {
        padding: 0.6rem 0.6rem; /* menší okraje = víc místa pro kontakty */
    }

    .logo {
        height: 26px; /* menší logo */
        flex: 0 0 auto;
    }

    .header-content {
        gap: 0.4rem; /* menší mezera mezi logem a kontakty */
    }

    .header-contact {
        gap: 0.5rem;       /* menší mezera mezi telefonem a mailem */
        min-width: 0;
        flex: 1;
        justify-content: flex-end;
        flex-wrap: nowrap;
    }

    .contact-link {
        font-size: 0.70rem; /* menší písmo */
        gap: 0.3rem;
        min-width: 0;
        white-space: nowrap;
    }

    /* e-mail ještě o chlup menší */
    .header-contact a[href^="mailto:"] {
        font-size: 0.66rem;
    }

    .contact-icon {
        font-size: 0.95rem;
        flex: 0 0 auto;
    }

    /* jistota proti přetékání – když by se nevešlo, zkrátí se (…) */
    .header-contact a[href^="mailto:"] span:last-child {
        display: inline-block;
        max-width: 160px;
        overflow: hidden;
        text-overflow: ellipsis;
        vertical-align: bottom;
        white-space: nowrap;
    }
}




.contact-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.25rem;
    border-radius: 16px;
    background: white;
    border: 2px solid var(--light);
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    text-decoration: none;
    color: var(--dark);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 26px rgba(0,0,0,0.12);
    border-color: var(--primary);
}

.contact-card:focus-visible {
    outline: 3px solid rgba(190, 168, 113, 0.6);
    outline-offset: 3px;
}

.contact-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #626679;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex: 0 0 52px;
}

.contact-card-title {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1.2;
}

.contact-card-subtitle {
    margin-top: 0.25rem;
    color: var(--gray);
    font-size: 0.98rem;
    line-height: 1.35;
}

@media (max-width: 768px) {
    .contact-card {
        padding: 1.1rem 1.1rem;
    }
}
