:root {
    /* Palette */
    --primary: #8E44AD;
    --primary-dark: #6C3483;
    --primary-light: #F4ECF7;
    --accent: #1ABC9C;
    
    --bg-white: #FFFFFF;
    --bg-gray: #F9FAFB;
    
    --text-dark: #2C3E50;
    --text-muted: #546E7A;
    --border: #E0E0E0;
    
    --radius-lg: 32px;
    --radius-md: 16px;
    --radius-sm: 8px;
    
    --transition: all 0.3s ease-in-out;
    --shadow-soft: 0 10px 40px rgba(142, 68, 173, 0.1);
    --shadow-hover: 0 15px 50px rgba(142, 68, 173, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    font-weight: 400;
}

a {
    text-decoration: none;
    color: var(--primary-dark);
    transition: var(--transition);
}

a:hover {
    color: var(--primary);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Header */
.main-header {
    background-color: var(--bg-white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
}

.logo img {
    height: 80px;
    transition: var(--transition);
}

.logo img:hover {
    transform: scale(1.02);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 18px;
    align-items: center;
}

.main-nav a {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 16px;
    padding: 8px 16px;
    border-radius: var(--radius-md);
}

.main-nav a:hover {
    background-color: var(--primary-light);
    color: var(--primary-dark);
}

.main-nav a i {
    margin-right: 6px;
    font-size: 15px;
    opacity: 0.8;
}

.btn-primary {
    display: inline-block;
    background-color: var(--primary);
    color: white !important;
    padding: 14px 32px;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(142, 68, 173, 0.3);
    border: none;
    cursor: pointer;
}

.btn-primary:hover,
.main-nav a.btn-primary:hover {
    background-color: var(--primary-dark) !important;
    color: white !important;
    box-shadow: 0 6px 20px rgba(142, 68, 173, 0.4);
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-dark);
    padding: 14px 32px;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 16px;
    border: 2px solid var(--primary);
    cursor: pointer;
    transition: var(--transition);
}

.btn-outline:hover {
    background-color: var(--primary-dark);
    color: white;
    box-shadow: 0 6px 20px rgba(142, 68, 173, 0.4);
    transform: translateY(-2px);
    border-color: var(--primary-dark);
}

/* Hero */
.hero {
    padding: 80px 0;
    background-color: var(--primary-light);
    border-bottom-left-radius: 80px;
    border-bottom-right-radius: 80px;
    margin-bottom: 60px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 54px;
    color: var(--primary-dark);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-text p {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 90%;
}

.hero-image-container {
    position: relative;
}

.hero-image {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    object-fit: cover;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-bg {
    background-color: var(--bg-gray);
    border-radius: var(--radius-lg);
    margin: 0 20px;
    padding: 80px 0;
}

.z-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

.z-row:last-child {
    margin-bottom: 0;
}

.z-text h2, .section-title {
    font-size: 36px;
    color: var(--primary-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.z-text p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.z-image {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    object-fit: cover;
}

/* Grids */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-light);
}

.card h3 {
    color: var(--primary-dark);
    font-size: 22px;
    margin-bottom: 15px;
}

.card p {
    color: var(--text-muted);
}

/* Lists */
.friendly-list {
    list-style: none;
    margin-bottom: 30px;
}

.friendly-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    font-size: 18px;
    color: var(--text-muted);
}

.friendly-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 2px;
    background-color: var(--primary-light);
    color: var(--primary-dark);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

/* Footer */
.main-footer {
    background-color: var(--primary-light);
    padding: 80px 0 30px;
    margin-top: 80px;
    border-top-left-radius: 80px;
    border-top-right-radius: 80px;
    color: var(--text-dark);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 20px;
}

.footer-grid h4 {
    color: var(--primary-dark);
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--primary-dark);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 2px solid rgba(255,255,255,0.5);
    color: var(--text-muted);
    font-size: 14px;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.admin-icons-group {
    display: flex;
    gap: 8px;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-grid, .z-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-text p {
        margin: 0 auto 40px;
    }
    
    .hero-text h1 {
        font-size: 42px;
    }
    
    .z-text {
        text-align: center;
        order: 1;
    }
    
    .z-row > div:not(.z-text) {
        order: 2;
    }
}

@media (max-width: 768px) {
    .hero, .main-footer {
        border-radius: 0;
    }
    
    .section-bg {
        margin: 0;
        border-radius: 0;
    }
    
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        padding: 30px 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        text-align: center;
    }
    
    .main-nav.active {
        display: block;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 20px;
    }
    
    .main-nav a.btn-primary {
        margin-top: 10px;
        width: 100%;
    }
    
    .mobile-menu-btn {
        display: flex;
        background: none;
        border: none;
        flex-direction: column;
        gap: 6px;
    }
    
    .mobile-menu-btn span {
        width: 30px;
        height: 3px;
        background-color: var(--primary-dark);
        border-radius: 3px;
    }
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.gallery-item {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border: 1px solid var(--bg-gray);
    background-color: var(--bg-gray);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

/* GLightbox */
.glightbox-clean .gnext, 
.glightbox-clean .gprev, 
.glightbox-clean .gclose {
    background-color: transparent !important;
    box-shadow: none !important;
    border: none !important;
    transition: var(--transition) !important;
}

.glightbox-clean .gnext:hover, 
.glightbox-clean .gprev:hover, 
.glightbox-clean .gclose:hover {
    background-color: transparent !important;
    transform: scale(1.15) !important;
}

.glightbox-clean .gnext svg, 
.glightbox-clean .gprev svg, 
.glightbox-clean .gclose svg {
    fill: #FFFFFF !important;
    width: 36px !important;
    height: 36px !important;
    filter: drop-shadow(0px 2px 4px rgba(0,0,0,0.6));
    transition: fill 0.2s ease !important;
}

.glightbox-clean .gnext:hover svg, 
.glightbox-clean .gprev:hover svg {
    fill: var(--primary) !important;
}

.glightbox-clean .gclose:hover svg {
    fill: #FF3B30 !important;
}

/* Centered buttons */
@media (min-width: 992px) {
    .glightbox-clean .gprev {
        left: 5vw !important;
    }
    .glightbox-clean .gnext {
        right: 5vw !important;
    }
    .glightbox-clean .gclose {
        top: 4vh !important;
        right: 5vw !important;
    }
}

@media (max-width: 991px) {
    .glightbox-clean .gprev {
        left: 15px !important;
    }
    .glightbox-clean .gnext {
        right: 15px !important;
    }
    .glightbox-clean .gclose {
        top: 15px !important;
        right: 15px !important;
    }
    .glightbox-clean .gclose svg {
        width: 26px !important;
        height: 26px !important;
    }
}

/* Cookie Banner & Scroll */

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: -150px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--bg-white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 15px 30px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 90%;
    max-width: 600px;
    border: 1px solid rgba(142, 68, 173, 0.1);
}

.cookie-banner.show {
    bottom: 30px;
    opacity: 1;
    visibility: visible;
}

.cookie-banner p {
    margin: 0;
    font-size: 13px;
    color: var(--text-muted);
    flex-grow: 1;
    line-height: 1.5;
}

.cookie-btn {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(142, 68, 173, 0.3);
}

.cookie-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(142, 68, 173, 0.4);
}

/* Scroll To Top */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(142, 68, 173, 0.4);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(142, 68, 173, 0.4);
}

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        border-radius: var(--radius-lg);
        bottom: -200px;
        gap: 15px;
        padding: 20px;
    }
    .cookie-banner.show {
        bottom: 20px;
    }
    .scroll-top-btn {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* Testimonials */
.testimonials-section {
    padding: 80px 0;
    background-color: var(--bg-gray);
    border-radius: 60px;
    margin: 40px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.testimonial-stars {
    color: #FFB800;
    margin-bottom: 15px;
    font-size: 16px;
}

.testimonial-text {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 20px;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 15px;
}

.testimonial-avatar {
    width: 45px;
    height: 45px;
    background-color: var(--primary-light);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 18px;
}

.testimonial-name {
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 15px;
}

.testimonial-date {
    font-size: 12px;
    color: var(--text-muted);
}

.fb-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    color: #1877F2;
    font-size: 24px;
    opacity: 0.2;
}

.overall-rating {
    text-align: center;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto 60px;
}

.faq-item {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    margin-bottom: 15px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 18px;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: var(--primary-light);
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    padding: 0 25px 20px;
    max-height: 500px;
}

/* Contact */
.contact-form {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 16px;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(142, 68, 173, 0.2);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-alert {
    padding: 15px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
}
.form-alert.success {
    background-color: var(--primary-light);
    color: var(--primary-dark);
    border: 1px solid var(--primary);
}
.form-alert.error {
    background-color: #FFEBEE;
    color: #C62828;
    border: 1px solid #FFCDD2;
}


/* ==========================================================================
   Utility Classes (Extracted from inline styles)
   ========================================================================== */
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.narrow-container { max-width: 800px; margin-left: auto; margin-right: auto; }
.lead-text { font-size: 20px; color: var(--text-muted); line-height: 1.8; }
.mb-10 { margin-bottom: 10px; }
.mb-15 { margin-bottom: 15px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.mb-60 { margin-bottom: 60px; }
.mb-80 { margin-bottom: 80px; }
.mb-0 { margin-bottom: 0 !important; }
.mt-80 { margin-top: 80px; }
.btn-icon { margin-right: 8px; }
.btn-white-text { color: white !important; }
.btn-block { width: 100%; display: block; }

/* Header & Footer */
.header-logo { mix-blend-mode: multiply; }
.footer-logo { mix-blend-mode: multiply; height: 90px; }
.footer-desc { color: var(--text-muted); margin-bottom: 20px; }
.footer-fb-btn { padding: 10px 24px; }
.footer-fb-icon { margin-right: 6px; font-size: 18px; }
.footer-contact-list { line-height: 2; list-style: none; padding: 0; }
.footer-contact-icon { width: 20px; color: var(--primary-dark); }
.footer-bottom-container { text-align: center; color: var(--text-muted); font-size: 14px; }

/* Subpage Heroes */
.hero-subpage { padding: 60px 0; margin-bottom: 40px; border-radius: 0 0 60px 60px; }
.hero-subpage-tall { padding: 80px 0; margin-bottom: 60px; border-radius: 0 0 60px 60px; }
.hero-subpage-container { text-align: center; max-width: 800px; margin: 0 auto; }
.hero-subpage-title { font-size: 48px; color: var(--primary-dark); font-weight: 700; margin-bottom: 0; }
.hero-subpage-title.mb-20 { margin-bottom: 20px; }
.hero-subpage-desc { font-size: 18px; color: var(--text-muted); max-width: 800px; margin: 20px auto 0; }

/* Home / Index */
.why-card-icon { font-size: 36px; color: var(--primary); margin-bottom: 20px; display: block; }
.rating-stars { color: #FFB800; }
.admin-add-box { display: flex; flex-direction: column; align-items: center; justify-content: center; background: rgba(255,255,255,0.8); border: 2px dashed #8E44AD; cursor: pointer; min-height: 200px; }
.admin-add-content { text-align: center; color: #8E44AD; }
.admin-add-icon { font-size: 40px; margin-bottom: 10px; }
.empty-gallery-msg { grid-column: 1 / -1; text-align: center; }

/* Pierwsza Wizyta */
.section-intro { margin: 0 auto 60px; }
.step-card { background: var(--bg-white); box-shadow: var(--shadow-soft); padding: 40px; border-radius: var(--radius-lg); }
.step-card-title { color: var(--primary-dark); font-size: 24px; margin-bottom: 15px; }
.step-card-desc { font-size: 16px; color: var(--text-muted); margin-bottom: 20px; }
.step-card-alert { background: var(--primary-light); padding: 15px; border-radius: var(--radius-sm); color: var(--primary-dark); font-weight: 600; font-size: 14px; text-align: center; }
.step-image { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); object-fit: cover; height: 100%; }

/* Kontakt */
.contact-info-card { background: var(--primary-light); padding: 50px; border-radius: var(--radius-lg); text-align: center; display: flex; flex-direction: column; justify-content: center; height: 100%; }
.contact-info-title { font-size: 26px; color: var(--primary-dark); margin-bottom: 20px; }
.contact-info-list { list-style: none; padding: 0; font-size: 18px; line-height: 2; margin-bottom: 30px; }
.contact-icon { width: 25px; color: var(--primary-dark); }
.contact-info-alert { background: white; padding: 15px 20px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 600; color: var(--primary-dark); box-shadow: var(--shadow-soft); }
.contact-image { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); object-fit: cover; height: 100%; }
.location-card { background: var(--bg-gray); padding: 40px; border-radius: var(--radius-lg); }
.location-title { font-size: 28px; color: var(--primary-dark); margin-bottom: 10px; }
.location-addr { font-size: 18px; color: var(--text-dark); margin-bottom: 10px; }
.location-desc { font-size: 15px; color: var(--text-muted); margin-bottom: 25px; }
.map-container { height: 300px; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-soft); }
.map-iframe { border: 0; width: 100%; height: 100%; }
.form-title { font-size: 28px; color: var(--primary-dark); margin-bottom: 15px; }
.form-icon-container { margin-top: 30px; }
.form-icon { font-size: 40px; color: var(--primary); opacity: 0.5; }
.honeypot-field { position: absolute; left: -9999px; top: -9999px; }

@media (max-width: 768px) {
    .footer-bottom-flex {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        text-align: center;
        padding-bottom: 20px;
    }
    .admin-icons-group {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-top: 10px;
    }
    .admin-icons-group a {
        font-size: 20px;
    }
}

/* Background Glows and Abstract Tech */
.hero {
    position: relative;
    overflow: hidden;
}

.hero-grid {
    position: relative;
    z-index: 1;
}
.section-bg {
    position: relative;
    overflow: hidden;
    background-image: url('/assets/images/abstract_tech.webp');
    background-size: cover;
    background-position: center;
}
.section-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(249, 250, 251, 0.90);
    z-index: 0;
}
.section-bg > .container {
    position: relative;
    z-index: 1;
}

/* Brand Chips */
.brand-chip {
    background: var(--bg-white);
    color: var(--text-dark);
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-soft);
    font-weight: 600;
    font-size: 1.1rem;
    border: 1px solid var(--border);
    transition: var(--transition);
}
.brand-chip:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    color: var(--primary);
    border-color: var(--primary);
}

/* Nowe klasy dla statystyk, certyfikatów i bloków końcowych */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-top: -30px; position: relative; z-index: 10; }
.stat-card { background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 30px 20px; text-align: center; box-shadow: var(--shadow-soft); transition: transform 0.3s; }
.stat-card:hover { transform: translateY(-5px); }
.stat-number { font-size: 2.5rem; font-weight: 800; color: var(--primary-dark); line-height: 1; margin-bottom: 10px; }
.stat-label { color: var(--text-muted); font-size: 0.9rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

.cert-card { display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 40px; }
.cert-icon { font-size: 60px; color: var(--primary); margin-bottom: 20px; }

.price-addons-box { margin-top: 50px; text-align: left; max-width: 800px; margin-left: auto; margin-right: auto; background: var(--bg-white); padding: 30px; border-radius: var(--radius-md); box-shadow: var(--shadow-soft); }
.price-addons-title { color: var(--primary-dark); margin-bottom: 20px; }

.cta-title { color: var(--primary-dark); font-size: 2rem; margin-bottom: 20px; }
.cta-desc { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 40px; line-height: 1.6; }
.btn-cta { padding: 14px 35px; font-size: 1.1rem; }

.brands-grid { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 50px; margin-top: 50px; opacity: 0.75; transition: opacity 0.3s; }
.brands-grid:hover { opacity: 1; }
.brand-logo { height: 45px; filter: grayscale(100%); transition: filter 0.3s, transform 0.3s; }
.brand-logo-tall { height: 55px; }
.brand-logo:hover { filter: grayscale(0%); transform: scale(1.05); }
.brand-text { font-size: 30px; color: #666; display: flex; align-items: center; font-weight: 600; transition: color 0.3s, transform 0.3s; }
.brand-text:hover { color: var(--primary); transform: scale(1.05); }

