* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --primary-blue: #1e4a7a;
            --light-blue: #3a7bc8;
            --orange: #ff6b35;
            --dark-text: #2c3e50;
            --light-bg: #f4f7fa;
            --white: #ffffff;
            --gray: #6c757d;
            --light-gray: #e9ecef;
        }
        
        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--dark-text);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        /* Header */
        .header {
            background: var(--white);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--primary-blue);
            text-decoration: none;
        }
        
        .logo-icon img {
            width: 40px;
            height: 40px;
            background: var(--orange);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.3rem;
        }
        
        .nav {
            display: flex;
            gap: 2rem;
            align-items: center;
        }
        
        .nav a {
            color: var(--dark-text);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .nav a:hover {
            color: var(--orange);
        }
        
        .header-cta {
            background: var(--orange);
            color: white;
            padding: 0.8rem 1.5rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 700;
            transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
        }
        
        .header-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
            color: white;
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--primary-blue);
        }
        
        /* Hero */
        .hero {
            background: linear-gradient(135deg, #1e4a7a 0%, #2d5a8f 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background-image: url('/img/Hero_bg.png');
            background-size: cover;
            background-position: center;
            opacity: 0.85;
            clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
        }
        
        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 5rem 2rem;
            position: relative;
            z-index: 1;
        }
        
        .hero-content {
            max-width: 600px;
        }
        
        .hero h1 {
            font-size: clamp(2rem, 5vw, 3.2rem);
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }
        
        .hero-subtitle {
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            line-height: 1.6;
            opacity: 0.95;
        }
        
        .hero-cta-group {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }
        
        .btn {
            padding: 1rem 2rem;
            border-radius: 8px;
            font-weight: 700;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }
        
        .btn-primary {
            background: var(--orange);
            color: white;
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
        }
        
        .btn-secondary {
            background: white;
            color: var(--primary-blue);
        }
        
        .btn-secondary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
        }
        
        /* Services Grid */
        .services-section {
            padding: 4rem 2rem;
            background: white;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .service-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            transition: transform 0.3s, box-shadow 0.3s;
            cursor: pointer;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.12);
        }
        
        .service-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .service-content {
            padding: 1.5rem;
        }
        
        .service-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 0.8rem;
        }
        
        .service-description {
            color: var(--gray);
            font-size: 0.95rem;
            line-height: 1.6;
        }
        
        /* Why Choose Us */
        .why-section {
            padding: 4rem 2rem;
            background: var(--light-bg);
        }
        
        .section-title {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            font-weight: 800;
            color: var(--primary-blue);
            text-align: center;
            margin-bottom: 3rem;
        }
        /* Zászló háttér a címhez */
.section-title.whychoose {
    position: relative;
    background-image: url('/img/zaszlo.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    padding: 40px 60px;
    margin: 0 auto 60px;
    color: white;
    text-align: center;
    max-width: 800px;
    /* Eltávolítjuk a régi alsó szegélyt, ha van */
    border-bottom: none;
}

/* Reszponzív beállítások */
@media (max-width: 768px) {
    .section-title.whychoose {
        padding: 30px 40px;
        font-size: 1.5rem;
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .section-title.whychoose {
        padding: 20px 30px;
        font-size: 1.2rem;
        max-width: 95%;
    }
}


        
        .why-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .why-item {
            display: flex;
            gap: 1rem;
            align-items: flex-start;
        }
        
        .why-icon img {
            
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
        }
        
        .why-content h3 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 0.5rem;
        }
        
        .why-content p {
            color: var(--gray);
            font-size: 0.95rem;
            line-height: 1.6;
        }
        
        /* Testimonials */
        .testimonials-section {
            padding: 4rem 2rem;
            background: white;
        }
        
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .testimonial-card {
            background: var(--light-bg);
            padding: 2rem;
            border-radius: 16px;
            position: relative;
        }
        
        .testimonial-content {
            font-style: italic;
            color: var(--dark-text);
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--light-blue);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.2rem;
        }
        
        .author-info h4 {
            font-weight: 600;
            color: var(--primary-blue);
        }
        
        .author-info p {
            font-size: 0.9rem;
            color: var(--gray);
        }
        
        /* CTA Section */
        .cta-section {
            padding: 5rem 2rem;
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
            color: white;
            text-align: center;
        }
        
        .cta-title {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 800;
            margin-bottom: 1rem;
        }
        
        .cta-subtitle {
            font-size: 1.2rem;
            margin-bottom: 3rem;
            opacity: 0.95;
        }
        
        .cta-form {
            max-width: 700px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
        }
        
        .cta-form input,
        .cta-form select,
        .cta-form textarea {
            padding: 1rem;
            border: none;
            border-radius: 8px;
            font-family: 'Montserrat', sans-serif;
            font-size: 1rem;
            background: #fff;
            color: #2c3e50;
        }

        .cta-form select,
        .cta-form textarea,
        .cta-form .gdpr-row,
        .cta-form button {
            grid-column: 1 / -1;
        }

        .cta-form select {
            appearance: none;
            -webkit-appearance: none;
            cursor: pointer;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 1rem center;
            padding-right: 2.5rem;
        }

        .cta-form input::placeholder,
        .cta-form textarea::placeholder {
            color: #6b7280;
        }

        .cta-form .gdpr-row {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
    cursor: pointer;
    width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-break: break-word;
}

.cta-form .gdpr-row input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px; /* ez a kulcs */
    flex-shrink: 0;
    margin-top: 1px;
    cursor: pointer;
    /* grid-column: unset; -- ezt töröld */
}
@media (max-width: 640px) {
    .cta-form {
        grid-template-columns: 1fr;
    }

    .cta-form .gdpr-row {
        grid-column: 1;
        display: flex;
        align-items: flex-start;
        gap: 0.6rem;
        width: 100%;
    }

    .cta-form .gdpr-row input[type="checkbox"] {
        width: 18px !important;
        height: 18px !important;
        min-width: 18px !important;
        padding: 0 !important;
        flex-shrink: 0;
    }
}

        .cta-form .gdpr-row a {
            color: #fff;
            text-decoration: underline;
        }

        .cta-form button {
            background: var(--orange);
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            cursor: pointer;
            transition: transform 0.3s;
            font-size: 1rem;
        }
        
        .cta-form button:hover {
            transform: scale(1.05);
        }
        
        .contact-info {
            margin-top: 3rem;
            font-size: 1.5rem;
            font-weight: 700;
        }
        
        .contact-info a {
            color: white;
            text-decoration: none;
            border-bottom: 2px solid var(--orange);
            transition: border-color 0.3s;
        }
        
        .contact-info a:hover {
            border-color: white;
        }
        
        /* Brands Section */
        .brands-section {
            padding: 3rem 2rem;
            background: var(--light-bg);
        }
        
        .brands-title {
            text-align: center;
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 2rem;
        }
        
        .brands-grid {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 3rem;
            flex-wrap: wrap;
        }
        
        .brand-item {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--gray);
            opacity: 0.7;
            transition: opacity 0.3s;
        }
        
        .brand-item:hover {
            opacity: 1;
        }
        
        /* Footer */
        .footer {
            background: var(--primary-blue);
            color: white;
            padding: 3rem 2rem 1rem;
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .footer-section h4 {
            font-size: 1.2rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }
        
        .footer-section a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
            transition: color 0.3s;
        }
        
        .footer-section a:hover {
            color: var(--orange);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            padding-top: 1.5rem;
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
        }
        
        /* Mobile Responsive */
        @media (max-width: 968px) {
            .nav {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background: white;
                flex-direction: column;
                padding: 2rem;
                transition: left 0.3s;
                box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            }
            
            .nav.active {
                left: 0;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero::after {
                opacity: 0.3;
                width: 100%;
                clip-path: none;
            }
            
            .hero-content {
                max-width: 100%;
            }
            
            .hero-cta-group {
                flex-direction: column;
            }
            
            .btn {
                width: 100%;
                text-align: center;
            }
        }
        
        @media (max-width: 640px) {
            .header-container {
                padding: 1rem;
            }
            
            .hero-container {
                padding: 3rem 1rem;
            }
            
            .services-section,
            .why-section,
            .testimonials-section,
            .cta-section {
                padding: 3rem 1rem;
            }
            
            .cta-form {
                grid-template-columns: 1fr;
            }
        }
        
        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s, transform 0.6s;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        /* Mobil-specifikus finomítás */

/* =====================================================
   TERMÉK ALOLDALAK – MOBIL OPTIMALIZÁLÁS
   ===================================================== */

/* 2-col form grid → 1-col mobilon */
@media (max-width: 640px) {
    .form-row-2col {
        grid-template-columns: 1fr !important;
    }

    /* Hero gombok – egymás alá mobilon */
    .product-hero-btns {
        flex-direction: column !important;
        align-items: stretch !important;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
    .product-hero-btns a {
        text-align: center;
        width: 100%;
        box-sizing: border-box;
    }

    /* Hero trust badge-ek – kisebb mobilon */
    .product-hero-badges {
        gap: 0.6rem !important;
    }
    .product-hero-badges li {
        font-size: 0.82rem !important;
        padding: 0.4rem 0.75rem !important;
    }

    /* Szekció padding csökkentés */
    section[style*="padding:3.5rem"] {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
    section[style*="padding:4rem"] {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }

    /* Section title font méret mobilon */
    .product-page h2.section-title {
        font-size: 1.5rem !important;
    }

    /* Folyamat lépések – 2 oszlopban tableten, 1-ben mobilon */
    .process-grid {
        grid-template-columns: 1fr 1fr !important;
    }

    /* Breadcrumb kisebb szöveg */
    nav[aria-label="Breadcrumb"] {
        font-size: 0.82rem !important;
    }

    /* Belső link gombok – kisebb rés */
    .internal-links-bar {
        gap: 0.5rem !important;
    }
    .internal-links-bar a {
        font-size: 0.88rem !important;
        padding: 0.35rem 0.75rem !important;
    }

    /* Blog index – kártyák */
    .blog-grid {
        grid-template-columns: 1fr !important;
    }

    /* Referenciák grid */
    .ref-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 480px) {
    /* Folyamat lépések – 1 oszlop kis telefonokon */
    .process-grid {
        grid-template-columns: 1fr !important;
    }

    /* Hero H1 kisebb */
    .product-hero h1 {
        font-size: 1.55rem !important;
    }

    /* Referencia kártyák */
    .ref-grid {
        gap: 1rem !important;
    }
}

/* Lebegő mobilos CTA sáv – összes szolgáltatás oldal */
[class*="float-cta"] {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 9999;
    background: #ff6b35;
    padding: 0.75rem 1rem;
    gap: 0.5rem;
    box-shadow: 0 -3px 12px rgba(0,0,0,0.2);
    box-sizing: border-box;
    width: 100%;
}

@media (max-width: 768px) {
    [class*="float-cta"].visible {
        display: flex !important;
        gap: 0.5rem;
        align-items: stretch;
    }
    [class*="float-cta"] a {
        flex: 1;
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-size: 0.85rem !important;
    }
    body { padding-bottom: 70px; }
}

/* Form inputok – teljes szélesség mobilon */
@media (max-width: 768px) {
    form input:not([type="checkbox"]):not([type="radio"]),
    form select,
    form textarea {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Form 2-col grid – mobilon 1 oszlop */
    .form-row-2col {
        grid-template-columns: 1fr !important;
    }
}


/* Gyors ajánlatkérő form (világos háttér) – placeholder szín */
#ajanlat input::placeholder,
#ajanlat textarea::placeholder {
    color: #6b7280;
    opacity: 1;
}

/* Alsó CTA form (sötét kék háttér) – placeholder szín */
#also-form input::placeholder,
#also-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.62);
    opacity: 1;
}

/* Alsó CTA form – GDPR label szöveg fehér */
#also-form label,
#also-form label span {
    color: rgba(255, 255, 255, 0.88);
}
#also-form label a {
    color: #ffd700;
}

/* Termék oldal service-card badge (position:relative inline) – ne vágja le az overflow:hidden */
.service-card[style*="position:relative"] {
    overflow: visible !important;
    margin-top: 14px;
}

/* ============================================================
   NEW DESIGN SYSTEM 2026 – KalmaKomfort Premium Redesign
   ============================================================ */

:root {
    --anthracite:       #2a2d34;
    --anthracite-mid:   #3d414b;
    --anthracite-light: #54596a;
    --sand:             #c4a47c;
    --sand-light:       #e8ddd0;
    --warm-white:       #faf8f5;
    --accent-warm:      #d4651a;
    --accent-warm-hover:#b8521a;
}

/* Reduced-motion: skip all transitions/animations */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ---- Hero V2 (Homepage) ---- */
.hero-v2 {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--anthracite);
    color: #fff;
}
.hero-v2-bg {
    position: absolute;
    inset: 0;
    background-image: url('/img/hero-video-placeholder.jpg');
    background-size: cover;
    background-position: center 35%;
    opacity: 0.42;
    z-index: 0;
}
.hero-v2-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem 7rem;
    width: 100%;
}
.hero-v2 h1 {
    font-size: clamp(2.1rem, 5.5vw, 3.9rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    max-width: 740px;
    letter-spacing: -0.02em;
}
.hero-v2 h1 em {
    color: var(--sand);
    font-style: normal;
}
.hero-v2-subline {
    font-size: clamp(1rem, 2.2vw, 1.22rem);
    color: var(--sand-light);
    margin-bottom: 2.5rem;
    max-width: 560px;
    line-height: 1.65;
}
.hero-v2-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}
.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background: var(--accent-warm);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.05rem;
    min-height: 52px;
    box-shadow: 0 4px 20px rgba(212,101,26,0.45);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-hero-primary:hover {
    background: var(--accent-warm-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(212,101,26,0.55);
    color: #fff;
}
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background: rgba(255,255,255,0.1);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    min-height: 52px;
    border: 1.5px solid rgba(255,255,255,0.38);
    transition: background 0.2s, transform 0.2s;
}
.btn-hero-secondary:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
    color: #fff;
}
.hero-v2-badges {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    list-style: none;
    padding: 0;
    margin: 0;
}
.hero-v2-badges li::before {
    content: '✓ ';
    color: var(--sand);
}
.trust-bar {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    z-index: 2;
    background: rgba(42,45,52,0.72);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 1rem 2rem;
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}
.trust-bar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.88);
    font-size: 0.9rem;
    font-weight: 600;
}
.trust-bar-item .trust-num {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--sand);
    line-height: 1;
}
@media (max-width: 768px) {
    .hero-v2-content { padding: 2rem 1rem 6rem; }
    .hero-v2-cta-group { flex-direction: column; align-items: stretch; }
    .btn-hero-primary, .btn-hero-secondary { justify-content: center; }
    .hero-v2-badges { gap: 0.75rem; font-size: 0.82rem; }
    .trust-bar { gap: 1.25rem; padding: 0.75rem 1rem; }
    .trust-bar-item { font-size: 0.82rem; }
    .trust-bar-item .trust-num { font-size: 1.1rem; }
}

/* ---- Urgency Banner ---- */
.urgency-banner {
    background: var(--anthracite-mid);
    color: var(--sand-light);
    padding: 0.8rem 1rem;
    text-align: center;
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}
.urgency-banner a {
    color: var(--sand);
    text-decoration: underline;
    margin-left: 0.5rem;
}
@media (max-width: 640px) {
    .urgency-banner { font-size: 0.82rem; padding: 0.7rem 0.75rem; }
}

/* ---- Section helper ---- */
.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #5a5e6a;
    max-width: 620px;
    margin: -1.5rem auto 0;
    line-height: 1.6;
}

/* ---- Emotional Benefit Section ---- */
.benefit-section {
    padding: 5rem 2rem;
    background: var(--warm-white);
}
.benefit-section .container { max-width: 1200px; margin: 0 auto; }
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}
.benefit-card {
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 24px rgba(42,45,52,0.09);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}
.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(42,45,52,0.15);
}
.benefit-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}
.benefit-card-body {
    padding: 1.75rem 1.5rem 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.benefit-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: var(--sand);
    margin-bottom: 0.5rem;
}
.benefit-card h3 {
    font-size: 1.22rem;
    font-weight: 800;
    color: var(--anthracite);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}
.benefit-card p {
    color: var(--anthracite-mid);
    font-size: 0.93rem;
    line-height: 1.7;
    flex: 1;
    margin-bottom: 1.25rem;
}
.benefit-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--accent-warm);
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
    margin-top: auto;
}
.benefit-card-link:hover { text-decoration: underline; }
@media (max-width: 900px) { .benefit-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) {
    .benefit-grid { grid-template-columns: 1fr; }
    .benefit-section { padding: 3rem 1rem; }
}

/* ---- Pull-Quote Section ---- */
.pullquote-section {
    background: var(--anthracite);
    color: #fff;
    padding: 5rem 2rem;
    text-align: center;
}
.pullquote-section .container { max-width: 820px; margin: 0 auto; }
.pullquote-stars {
    font-size: 1.5rem;
    color: #f5c518;
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
}
.pullquote-text {
    font-size: clamp(1.15rem, 2.8vw, 1.8rem);
    font-weight: 700;
    line-height: 1.55;
    color: var(--sand-light);
    margin-bottom: 1.5rem;
}
.pullquote-text::before {
    content: '\201E';
    color: var(--sand);
    font-size: 2.8rem;
    line-height: 0;
    vertical-align: -0.4rem;
    margin-right: 0.1rem;
}
.pullquote-text::after {
    content: '\201D';
    color: var(--sand);
    font-size: 2.8rem;
    line-height: 0;
    vertical-align: -0.4rem;
    margin-left: 0.1rem;
}
.pullquote-author {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    font-weight: 600;
    letter-spacing: 0.03em;
}
@media (max-width: 640px) { .pullquote-section { padding: 3.5rem 1rem; } }

/* ---- Featured References ---- */
.featured-refs-section {
    padding: 5rem 2rem;
    background: #fff;
}
.featured-refs-section .container { max-width: 1200px; margin: 0 auto; }
.featured-refs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}
.feat-ref-card {
    border-radius: 16px;
    overflow: hidden;
    background: var(--warm-white);
    box-shadow: 0 2px 16px rgba(42,45,52,0.08);
    display: flex;
    flex-direction: column;
}
.feat-ref-card-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
}
.feat-ref-card-body {
    padding: 1.25rem 1.25rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.feat-ref-badge {
    display: inline-block;
    padding: 0.2rem 0.75rem;
    border-radius: 20px;
    font-size: 0.76rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.6rem;
}
.feat-ref-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--anthracite);
    margin-bottom: 0.4rem;
    line-height: 1.4;
}
.feat-ref-card-meta {
    font-size: 0.8rem;
    color: #9ca3af;
    margin-bottom: 0.75rem;
}
.feat-ref-card-outcome {
    font-size: 0.91rem;
    color: var(--anthracite-mid);
    font-style: italic;
    line-height: 1.6;
    flex: 1;
    margin-bottom: 1.1rem;
}
.feat-ref-card-cta {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.1rem;
    background: var(--accent-warm);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    transition: background 0.2s;
    align-self: flex-start;
}
.feat-ref-card-cta:hover { background: var(--accent-warm-hover); color: #fff; }
@media (max-width: 900px) { .featured-refs-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) {
    .featured-refs-grid { grid-template-columns: 1fr; }
    .featured-refs-section { padding: 3rem 1rem; }
}

/* ---- Pricing Transparency Section ---- */
.pricing-section {
    padding: 5rem 2rem;
    background: var(--warm-white);
}
.pricing-section .container { max-width: 1100px; margin: 0 auto; }
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.75rem;
    margin-top: 3rem;
}
.pricing-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem 1.75rem;
    box-shadow: 0 2px 16px rgba(42,45,52,0.08);
    border-top: 4px solid var(--sand);
}
.pricing-card-service {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: var(--sand);
    margin-bottom: 0.5rem;
}
.pricing-card h3 {
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--anthracite);
    line-height: 1.2;
    margin-bottom: 0.35rem;
}
.pricing-card-range {
    font-size: 0.87rem;
    color: #6b7280;
    margin-bottom: 0.9rem;
}
.pricing-card-why {
    font-size: 0.87rem;
    color: var(--anthracite-mid);
    line-height: 1.65;
    border-top: 1px solid var(--sand-light);
    padding-top: 0.85rem;
}
.pricing-disclaimer {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.87rem;
    color: #6b7280;
}
@media (max-width: 640px) { .pricing-section { padding: 3rem 1rem; } }

/* ---- Ref card CTA (referenciak.php) ---- */
.ref-card-cta-btn {
    display: inline-flex;
    align-items: center;
    margin-top: 0.75rem;
    padding: 0.5rem 1rem;
    background: var(--accent-warm, #d4651a);
    color: #fff;
    text-decoration: none;
    border-radius: 7px;
    font-size: 0.83rem;
    font-weight: 700;
    transition: background 0.2s;
}
.ref-card-cta-btn:hover { background: var(--accent-warm-hover, #b8521a); color: #fff; }

/* ---- Blog end service CTA ---- */
.blog-service-cta {
    background: linear-gradient(135deg, var(--anthracite) 0%, var(--anthracite-mid) 100%);
    border-radius: 14px;
    padding: 1.75rem 2rem 1.75rem 2.25rem;
    margin: 2.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    border-left: 5px solid var(--sand);
}
.blog-service-cta p {
    font-size: 1rem;
    font-weight: 600;
    color: var(--sand-light);
    margin: 0;
    flex: 1;
    min-width: 180px;
    line-height: 1.5;
}
.blog-service-cta .blog-cta-link {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: var(--accent-warm);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.92rem;
    white-space: nowrap;
    transition: background 0.2s;
}
.blog-service-cta .blog-cta-link:hover { background: var(--accent-warm-hover); color: #fff; }
@media (max-width: 600px) {
    .blog-service-cta { flex-direction: column; align-items: flex-start; }
    .blog-service-cta .blog-cta-link { width: 100%; justify-content: center; }
}

@media (max-width: 640px) {
    .form-row-2col {
        grid-template-columns: 1fr !important;
    }

    #redony-ajanlat-form input[type="checkbox"],
    #napellenzo-ajanlat-form input[type="checkbox"],
    #reluxa-ajanlat-form input[type="checkbox"],
    #zsaluzia-form input[type="checkbox"],
    #zsaluzia-form-also input[type="checkbox"],
    #szuny-form input[type="checkbox"],
    #szuny-form-also input[type="checkbox"],
    #okos-form input[type="checkbox"],
    #okos-form-also input[type="checkbox"] {
        width: 16px !important;
        height: 16px !important;
        min-width: 16px !important;
        padding: 0 !important;
        flex-shrink: 0;
    }
}