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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 100vw;
            z-index: 1000;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            will-change: transform;
            background: white;
        }

        header.hide {
            transform: translateY(-110%);
        }

        header.scrolled {
            background: white;
            color: #1e293b;    /* tmavý text */
            box-shadow: 0 4px 20px rgba(0,0,0,0.8);
            transition: all 0.3s ease;
        }

        header.scrolled nav a {
            color: black; /* změna barvy odkazů na tmavou */
        }

        header.scrolled nav a:hover::after {
            background: #2563eb; /* underline zůstává modrá */
        }

        header.scrolled .logo-text h1 {
            color: #fff;
        }

        header.scrolled .logo-text p {
            color: #fff;
        }


        @keyframes slideDown {
            from {
                transform: translateY(-100%);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            z-index: 1001;
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background: #000000;
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        /* Animace hamburger -> X */
        .menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(7px, 7px);
        }

        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        /* Scrolled header - tmavé pozadí pro hamburger */
        header.scrolled .menu-toggle span {
            background: #000000;
        }

        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo-icon {
            height: 100%;
            width: auto;
            max-height: 60px;
            display: flex;
            align-items: center;
        }

        .logo-icon img {
            height: 100%;
            width: 150px;
            object-fit: contain;
        }



        .logo-text h1 {
            font-size: 1.2rem;
            color: #fff;
            font-weight: 600;
        }

        .logo-text p {
            font-size: 0.85rem;
            color: #f9fafb;
        }

        nav ul {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        nav a {
            text-decoration: none;
            color: #000000;
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
            font-size: 1.2rem;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #2563eb;
            transition: width 0.3s;
        }

        nav a:hover {
            color: #2563eb;
        }

        nav a:hover::after {
            width: 100%;
        }

        .cta-btn {
            background: #ff6b00;
            color: white;
            padding: 12px 30px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s;
        }

        .cta-btn:hover {
            background: #e65c00;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: radial-gradient(circle,rgba(0, 47, 95, 1) 75%, rgba(31, 31, 46, 1) 100%);
        }


        .hero .container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .hero-content {
            animation: fadeInLeft 1s ease-out;
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .badge {
            display: inline-block;
            background: #e3f2fd;
            color: #2563eb;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            margin-bottom: 20px;
        }

        .hero h1 {
            font-size: 48px;
            line-height: 1.2;
            margin-bottom: 20px;
            color: #ffffff;
        }

        .hero p {
            font-size: 22px;
            color: #ffffff;
            margin-bottom: 30px;
        }

        .features-list {
            list-style: none;
            margin-bottom: 40px;
        }

        .features-list li {
            padding: 12px 0;
            padding-left: 35px;
            position: relative;
            font-size: 18px;
            color: #ffffff;
        }

        .features-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #10b981;
            font-weight: bold;
            width: 24px;
            height: 24px;
            background: #d1fae5;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
        }

        .btn-primary {
            background: #ff6b00;
            color: white;
            padding: 16px 40px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: bold;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 18px;
            transition: all 0.3s;
        }

        .btn-secondary {
            background: #ffffff;
            color: rgb(0, 0, 0);
            padding: 16px 40px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: bold;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 18px;
            transition: all 0.3s;
        }

        .btn-primary:hover {
            background: #e65c00;
            transform: translateY(-5px);
            box-shadow: 0 6px 20px rgba(255, 107, 0, 0.3);
        }

        .btn-secondary:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
        }

        .hero-image {
            position: relative;
            width: 100%;
            height: 100%;
           
        }

        .hero-image img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 20px;
            box-shadow: 0px 0px 50px -10px rgba(255, 255, 255, 0.5);
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }

        .hero-image img.active {
            opacity: 1;
            z-index: 1;
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .stats {
            position: absolute;
            bottom: 30px;
            left: 30px;
            right: 30px;
            background: white;
            border-radius: 12px;
            padding: 20px;
            display: flex;
            justify-content: space-around;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .stat {
            text-align: center;
        }

        .stat-number {
            font-size: 32px;
            font-weight: bold;
            color: #2563eb;
        }

        .stat-label {
            font-size: 14px;
            color: #666;
        }

        /* Services Section */
        .services {
            padding: 100px 20px;
            background: white;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            font-size: 42px;
            margin-bottom: 20px;
            color: #1a1a1a;
        }

        .section-subtitle {
            text-align: center;
            font-size: 18px;
            color: #666;
            margin-bottom: 60px;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: white;
            border: 1px solid #e5e7eb;
            border-radius: 12px;
            padding: 30px;
            transition: all 0.3s;
            cursor: pointer;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            border-color: #2563eb;
        }

        .service-icon {
            width: 60px;
            height: 60px;
            background: #0340f8;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            margin-bottom: 20px;
            color: white;
        }

        .service-card h3 {
            font-size: 24px;
            margin-bottom: 10px;
            color: #1a1a1a;
        }

        .service-card p {
            color: #666;
            line-height: 1.8;
        }

        .btn-service {
            display: inline-block;
            margin-top: 20px;
            padding: 8px 20px;
            background: #ff6b00;
            color: #fff;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-service:hover {
            background: #e65c00;
            transform: translateY(-5px);
            box-shadow: 0 6px 20px rgba(255, 107, 0, 0.3);
        }

        /* Why Choose Section */
        .why-choose {
            padding: 100px 20px;
            background: #002f5f;
            color: white;
        }

        .why-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .why-image img {
            width: 100%;
            border-radius: 12px;
        }

        .why-content h2 {
            font-size: 42px;
            margin-bottom: 30px;
        }

        .benefit-item {
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
            padding: 25px;
            background: rgba(255,255,255,0.1);
            border-radius: 12px;
            transition: all 0.3s;
        }

        .benefit-item:hover {
            background: rgba(255,255,255,0.15);
            transform: translateX(10px);
        }

        .benefit-icon {
            width: 50px;
            height: 50px;
            background: #ff6b00;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            flex-shrink: 0;
        }

        .benefit-text h3 {
            margin-bottom: 10px;
        }

        /* Process Section */
        .process {
            padding: 100px 20px;
            background: white;
        }

        .process-steps {
            display: flex;
            justify-content: space-between;
            margin-top: 60px;
            position: relative;
        }

        .process-steps::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 10%;
            right: 10%;
            height: 2px;
            background: #e5e7eb;
            z-index: 0;
        }

        .step {
            flex: 1;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .step-icon {
            width: 80px;
            height: 80px;
            background: #0340f8;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 32px;
            color: white;
            position: relative;
            transition: all 0.3s;
        }

        .step:hover .step-icon {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
        }

        .step-number {
            position: absolute;
            top: -10px;
            right: -10px;
            width: 30px;
            height: 30px;
            background: #ff6b00;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: bold;
        }

        .step h3 {
            margin-bottom: 10px;
            color: #1a1a1a;
        }

        .step p {
            color: #666;
        }

                /* About Section */

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            padding-bottom: 150px;
            align-items: center;
        }

        .about-image img {
            width: 100%;
            border-radius: 12px;
            max-height: 600px;
            object-fit: cover;
        }

        .about-image {
            display: flex;
            flex-direction: column;
            order: 2;
        }

        .about-content p{
            font-size: 18px;
            color: #000000; 
            font-weight: 400;
        }

        .about-content {
            order: 1;
        }

        .about-content h2 {
            font-size: 42px;
            margin-bottom: 15px;

        }

        /* Stats Section */
        .stats-section {
            padding: 80px 20px;
            background: #f8f9fa;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            text-align: center;
        }

        .stat-box {
            padding: 40px;
            background: white;
            border-radius: 12px;
            transition: all 0.3s;
        }

        .stat-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .stat-box h3 {
            font-size: 48px;
            color: #000000;
            margin-bottom: 10px;
        }

        /* Benefits Section */
        .benefits {
            padding: 100px 20px;
            background: white;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }

        .benefit-card {
            padding: 40px;
            background: #f8f9fa;
            border-radius: 12px;
            transition: all 0.3s;
        }

        .benefit-card:hover {
            background: white;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transform: translateY(-5px);
        }

        .benefit-card-icon {
            width: 60px;
            height: 60px;
            background: #0340f8;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            margin-bottom: 20px;
            color: white;
        }

        .benefit-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: #1a1a1a;
        }

        .benefit-card p {
            color: #666;
            line-height: 1.8;
        }

        /* Testimonials */
        .testimonials {
            padding: 100px 20px;
            background: #f8f9fa;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }

        .testimonial-card {
            background: white;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            transition: all 0.3s;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }

        .stars {
            color: #fbbf24;
            font-size: 20px;
            margin-bottom: 20px;
        }

        .testimonial-text {
            font-style: italic;
            color: #666;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .testimonial-author {
            font-weight: bold;
            color: #1a1a1a;
        }

        .testimonial-role {
            color: #999;
            font-size: 14px;
        }

        .testimonial-service {
            color: #2563eb;
            font-size: 14px;
            margin-top: 5px;
        }

        /* Contact Section */
        .contact {
            padding: 100px 20px;
            background: white;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            margin-top: 60px;
            justify-content: center;
        }

        .contact-form {
            background: white;
            padding: 40px;
            border-radius: 12px;
            border: 1px solid #e5e7eb;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #333;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 14px;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            font-size: 16px;
            transition: all 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #2563eb;
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .submit-btn {
            width: 100%;
            padding: 16px;
            background: #ff6b00;
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
        }

        .submit-btn:hover {
            background: #e65c00;
            transform: translateY(-5px);
            box-shadow: 0 6px 20px rgba(255, 107, 0, 0.3);
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .info-card {
            display: flex;
            gap: 20px;
            padding: 30px;
            background: #f8f9fa;
            border-radius: 12px;
            transition: all 0.3s;
        }

        .info-card:hover {
            background: #e3f2fd;
            transform: translateX(5px);
        }

        .info-icon {
            width: 50px;
            height: 50px;
            background: #0340f8;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: white;
            flex-shrink: 0;
        }

        .info-text h3 {
            margin-bottom: 5px;
            color: #1a1a1a;
        }

        .info-text p {
            color: #666;
        }

        .info-text a {
            color: #2563eb;
            text-decoration: none;
            font-weight: 500;
        }

        .benefits-box {
            background: #0340f8;
            color: white;
            padding: 40px;
            border-radius: 12px;
            margin-top: 30px;
        }

        .benefits-box h3 {
            margin-bottom: 20px;
            font-size: 22px;
        }

        .benefits-box ul {
            list-style: none;
        }

        .benefits-box li {
            padding: 10px 0;
            padding-left: 30px;
            position: relative;
        }

        .benefits-box li::before {
            content: "✓";
            position: absolute;
            left: 0;
            font-weight: bold;
        }

        /* Footer */
        footer {
            background:#002f5f;
            color: white;
            padding: 60px 20px 20px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            max-width: 1400px;
            margin: 0 auto 40px;
        }

        .footer-about h3 {
            margin-bottom: 20px;
        }

        .footer-about p {
            color: #d1d1d1;
            line-height: 1.8;
        }

        .footer-links h4 {
            margin-bottom: 20px;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links a {
            color: #d1d1d1;
            text-decoration: none;
            display: block;
            padding: 8px 0;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: #ff6b00;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #d1d1d157;
            color: #d1d1d1;
        }

        .footer-brand {
            display: flex;
            align-items: center;
            background-color: white;
            border-radius: 15px;
            padding: 0 10px;
            margin-bottom: 10px;
        }

        .footer-brand img {
            height: 70px;
            width: auto;
        }

        .footer-brand-text strong {
            font-size: 20px;
        }

        .footer-brand-text p {
            font-size: 12px;
            color: #d1d1d1;
            margin: 0;
        }


        /* Animations */
        .fade-in {
            animation: fadeIn 1s ease-out;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }


        /* Scroll animations */
        .scroll-reveal {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.6s ease-out;
        }

        .scroll-reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* ========================================
   RESPONSIVE DESIGN - MEDIA QUERIES
   ======================================== */

/* Tablety na výšku a menší desktop (max-width: 1200px) */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 30px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero p {
        font-size: 20px;
    }

    .section-title {
        font-size: 36px;
    }

    .why-content h2,
    .about-content h2 {
        font-size: 36px;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

/* Tablety (max-width: 992px) */
@media (max-width: 992px) {
    header {
        padding: 1rem 1.5rem;
    }

    /* Mobilní menu */
    .menu-toggle {
        display: flex;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: white;
        padding: 80px 30px 30px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
    }

    nav a {
        display: block;
        padding: 15px 0;
        color: #000;
        border-bottom: 1px solid #e5e7eb;
    }

    .cta-btn {
        margin-top: 20px;
        display: block;
        text-align: center;
    }

    /* Hero sekce */
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 120px 20px 60px;
    }

    .hero-image {
        order: -1;
        height: 400px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 14px 30px;
        font-size: 16px;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Why Choose */
    .why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-image {
        order: -1;
    }

    /* Process */
    .process-steps {
        flex-wrap: wrap;
        gap: 40px;
    }

    .process-steps::before {
        display: none;
    }

    .step {
        flex: 0 0 calc(50% - 20px);
        min-width: auto;
    }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-bottom: 80px;
    }

    .about-image {
        order: -1;
    }

    .about-content {
        order: 2;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Benefits */
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-about {
        grid-column: 1 / -1;
    }
}

/* Mobilní zařízení na šířku (max-width: 768px) */
@media (max-width: 768px) {
    header {
        padding: 1rem;
    }

    .logo-icon img {
        width: 120px;
    }

    nav {
        width: 280px;
    }

    /* Hero */
    .hero {
        min-height: 100vh;
        padding: 100px 0 60px;
    }

    .hero .container {
        padding: 0 20px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }

    .hero-image {
        height: 300px;
    }

    .stats {
        flex-direction: column;
        gap: 15px;
        left: 15px;
        right: 15px;
        bottom: 15px;
        padding: 15px;
    }

    .stat-number {
        font-size: 24px;
    }

    .stat-label {
        font-size: 12px;
    }

    /* Sections */
    .services,
    .why-choose,
    .process,
    .benefits,
    .testimonials,
    .contact {
        padding: 60px 20px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    /* Service cards */
    .service-card {
        padding: 25px;
    }

    .service-card h3 {
        font-size: 20px;
    }

    /* Why Choose */
    .why-content h2 {
        font-size: 28px;
    }

    .benefit-item {
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }

    .benefit-icon {
        margin: 0 auto 15px;
    }

    /* Process */
    .step {
        flex: 0 0 100%;
    }

    .step-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }

    /* About */
    .about-content h2 {
        font-size: 28px;
    }

    .about-content p {
        font-size: 16px;
    }

    .about-grid {
        padding-bottom: 60px;
    }

    /* Stats section */
    .stats-section {
        padding: 60px 20px;
    }

    .stat-box {
        padding: 30px;
    }

    .stat-box h3 {
        font-size: 36px;
    }

    /* Benefits cards */
    .benefit-card {
        padding: 30px;
    }

    .benefit-card h3 {
        font-size: 20px;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 30px;
    }

    /* Contact */
    .contact-form {
        padding: 30px;
    }

    .info-card {
        padding: 20px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        justify-items: center; /* vodorovně */
        text-align: center;    /* text na střed */
    }

    .footer-about {
        grid-column: auto;
        justify-items: center; /* vodorovně */
        text-align: center;    /* text na střed */
    }

    footer {
        padding: 40px 20px 20px;
    }
}

/* Mobilní zařízení (max-width: 576px) */
@media (max-width: 576px) {
    header {
        padding: 0.8rem;
    }

    .logo-icon img {
        width: 100px;
    }

    nav {
        width: 100%;
        right: -100%;
    }

    /* Hero */
    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 15px;
    }

    .features-list li {
        font-size: 16px;
        padding-left: 30px;
    }

    .features-list li::before {
        width: 20px;
        height: 20px;
        font-size: 12px;
    }

    .hero-image {
        height: 250px;
    }

    .badge {
        font-size: 12px;
        padding: 6px 12px;
    }

    /* Buttons */
    .btn-primary,
    .btn-secondary {
        font-size: 15px;
        padding: 12px 20px;
    }

    /* Sections */
    .services,
    .why-choose,
    .process,
    .benefits,
    .testimonials,
    .contact {
        padding: 50px 15px;
    }

    .section-title {
        font-size: 24px;
    }

    .section-subtitle {
        font-size: 15px;
    }

    /* Service cards */
    .service-card {
        padding: 20px;
    }

    .service-icon,
    .benefit-card-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .service-card h3 {
        font-size: 18px;
    }

    .service-card p {
        font-size: 15px;
    }

    /* Why Choose */
    .why-content h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .benefit-item {
        padding: 15px;
        margin-bottom: 15px;
    }

    .benefit-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .benefit-text h3 {
        font-size: 18px;
    }

    /* Process */
    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .step-number {
        width: 25px;
        height: 25px;
        font-size: 12px;
    }

    .step h3 {
        font-size: 18px;
    }

    .step p {
        font-size: 14px;
    }

    /* About */
    .about-content h2 {
        font-size: 24px;
    }

    .about-content p {
        font-size: 15px;
    }

    /* Stats */
    .stat-box {
        padding: 25px;
    }

    .stat-box h3 {
        font-size: 32px;
    }

    .stat-box p {
        font-size: 14px;
    }

    /* Benefits */
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefit-card {
        padding: 25px;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 25px;
    }

    .stars {
        font-size: 18px;
    }

    .testimonial-text {
        font-size: 15px;
    }

    /* Contact */
    .contact-form {
        padding: 25px;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px;
        font-size: 15px;
    }

    .submit-btn {
        padding: 14px;
        font-size: 15px;
    }

    .info-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .info-icon {
        margin: 0 auto 15px;
    }

    .benefits-box {
        padding: 25px;
    }

    .benefits-box h3 {
        font-size: 18px;
    }

    /* Footer */
    .footer-brand img {
        height: 60px;
    }

    .footer-brand-text strong {
        font-size: 18px;
    }

    .footer-links h4 {
        font-size: 18px;
    }

    footer {
        padding: 30px 15px 15px;
    }

    .footer-bottom {
        font-size: 14px;
    }
}

/* Extra malá zařízení (max-width: 400px) */
@media (max-width: 400px) {
    .hero h1 {
        font-size: 24px;
    }

    .hero p {
        font-size: 14px;
    }

    .section-title {
        font-size: 22px;
    }

    .btn-primary,
    .btn-secondary {
        font-size: 14px;
        padding: 10px 20px;
    }

    .hero-image {
        height: 200px;
    }

    .stats {
        padding: 10px;
    }

    .stat-number {
        font-size: 20px;
    }
}

/* Landscape orientace pro mobilní zařízení */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 80px 0 40px;
    }

    .hero-image {
        height: 250px;
    }

    .services,
    .why-choose,
    .process,
    .benefits,
    .testimonials,
    .contact {
        padding: 50px 20px;
    }
}

html {
    overflow-y: scroll;
}

.form-group.recaptcha-holder {
    max-width: 320px;      /* reálná šířka reCAPTCHA */
    width: 100%;
    min-height: 78px;
    padding-top: 10px;
    margin: 0 auto;  
}

/* samotná reCAPTCHA */
.g-recaptcha {
    width: 304px;          /* oficiální šířka */
    max-width: 100%;
}

/* MOBIL */
@media (max-width: 480px) {
    .form-group.recaptcha-holder {
        max-width: 260px;  /* aby se nevešla mimo formulář */
        min-height: 66px;
        margin: 0 auto;
        padding-top: 10px;
    }

    .g-recaptcha {
        transform: scale(0.85);
        transform-origin: 0 0;
    }
}


