:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --light-color: #ecf0f1;
    --dark-color: #2c3e50;
    --text-color: #333;
    --text-light: #7f8c8d;
    --white: #fff;
    --gray: #95a5a6;
    --light-gray: #bdc3c7;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container_z4 {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header_x9 {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 15px 0;
}

.logo-wrapper_p7 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-svg_f2 {
    width: 40px;
    height: 40px;
    color: var(--primary-color);
}

.logo-text_r5 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.header_x9 .container_z4 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-list_j6 {
    display: flex;
    gap: 30px;
}

.nav-link_s9 {
    font-weight: 600;
    color: var(--dark-color);
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.nav-link_s9:hover {
    color: var(--secondary-color);
}

.nav-link_s9.active_w2 {
    color: var(--secondary-color);
}

.nav-link_s9.active_w2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--secondary-color);
}

.burger-btn_q8 {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    position: relative;
}

.burger-line_a4 {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--dark-color);
    margin: 5px 0;
    transition: var(--transition);
    position: relative;
}

.burger-btn_q8.active_w2 .burger-line_a4:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger-btn_q8.active_w2 .burger-line_a4:nth-child(2) {
    opacity: 0;
}

.burger-btn_q8.active_w2 .burger-line_a4:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.hero_b7 {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/bg.webp') no-repeat center center/cover;
    height: 80vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    margin-top: 70px;
}

.hero-title_n4 {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: fadeIn 1s ease-in-out;
}

.hero-text_m1 {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeIn 1s ease-in-out 0.3s both;
}
@media (max-width: 320px) {
    .hero_b7 .container_z4 {
        padding: 20px 15px;
    }
    
    .hero_b7 .hero-title_n4 {
        font-size: 24px;
        line-height: 1.3;
        margin-bottom: 10px;
    }
    
    .hero_b7 .hero-text_m1 {
        font-size: 14px;
        margin-bottom: 20px;
    }
}
.features_d3 {
    padding: 80px 0;
    background-color: var(--light-color);
}

.section-title_f8 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.2rem;
    color: var(--primary-color);
}

.features-grid_l5 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card_t7 {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.feature-card_t7:hover {
    transform: translateY(-10px);
}

.feature-icon_y0 {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    color: var(--secondary-color);
}

.feature-title_k9 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.feature-text_p3 {
    color: var(--text-light);
}

.products_c2 {
    padding: 80px 0;
}

.products-grid_x1 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card_g4 {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.product-card_g4:hover {
    transform: translateY(-10px);
}

.product-img_q5 {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-title_j8 {
    font-size: 1.3rem;
    padding: 15px 20px 0;
    color: var(--primary-color);
}

.product-desc_n3 {
    padding: 0 20px 20px;
    color: var(--text-light);
}

.btn-primary_v6, .btn-secondary_w7 {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary_v6 {
    background-color: var(--secondary-color);
    color: var(--white);
    border: 2px solid var(--secondary-color);
}

.btn-primary_v6:hover {
    background-color: black;
    color: var(--secondary-color);
}

.btn-secondary_w7 {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    margin: 0 20px 20px;
}

.btn-secondary_w7:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

.full-width_x9 {
    display: block;
    width: 100%;
}

.cta_u4 {
    padding: 60px 0;
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.cta-title_r9 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.cta-text_l2 {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.footer_e6 {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-grid_o3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo_s4 {
    width: 40px;
    height: 40px;
    margin-bottom: -6px;
}

.footer-logo-text_d8 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-left: 10px;
}

.footer-about_z0 {
    margin: 15px 0;
    color: var(--light-gray);
}

.footer-title_h5 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title_h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-links_u7 {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-link_f3 {
    color: var(--light-gray);
    transition: var(--transition);
}

.footer-link_f3:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-bottom_k4 {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
}

.copyright_y2 {
    color: var(--light-gray);
    font-size: 0.9rem;
}

.shop-hero_e3 {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/bg1.webp') no-repeat center center/cover;
    height: 50vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    margin-top: 70px;
}

.shop-title_b2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.shop-subtitle_m8 {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.shop-products_f7 {
    padding: 80px 0;
}

.shop-filters_n5 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}
@media (max-width: 320px) {
    .shop-hero_e3 .container_z4 {
        padding: 15px 10px;
        text-align: center; 
    }
    
    .shop-hero_e3 .shop-title_b2 {
        font-size: 22px;
        line-height: 1.3;
        margin-bottom: 8px;
    }
    
    .shop-hero_e3 .shop-subtitle_m8 {
        font-size: 14px; 
        margin-bottom: 0;
    }
}
.filter-group_k1 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-label_p4 {
    font-weight: 600;
}

.filter-select_v9 {
    padding: 8px 15px;
    border-radius: 4px;
    border: 1px solid var(--light-gray);
    background-color: var(--white);
}

.extended_g6 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.product-price_c9 {
    padding: 0 20px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.shop-cta_l9 {
    padding: 60px 0;
    background-color: var(--light-color);
    text-align: center;
}

.about-hero_q1 {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/bg1.webp') no-repeat center center/cover;
    height: 50vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    margin-top: 70px;
}

.about-title_p6 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.about-subtitle_j2 {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.about-history_f4 {
    padding: 80px 0;
}

.history-grid_b3 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.history-text_k7 {
    margin-bottom: 20px;
}

.about-img_v5 {
    border-radius: 8px;
    box-shadow: var(--shadow);
    width: 100%;
    height: auto;
}

.about-mission_e8 {
    padding: 80px 0;
    background-color: var(--light-color);
}
@media (max-width: 320px) {
    .about-mission_e8 .container_z4 {
        padding: 20px 10px;
    }
    
    .about-mission_e8 .section-title_f8.centered_x3 {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .about-mission_e8 .values-grid_m4 {
        grid-template-columns: 1fr; 
        gap: 20px;
    }
    
    .about-mission_e8 .value-card_h6 {
        padding: 15px;
        text-align: center;
    }
    
    .about-mission_e8 .value-icon_r1 {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
    }
    
    .about-mission_e8 .value-title_q5 {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .about-mission_e8 .value-text_g9 {
        font-size: 14px;
        line-height: 1.4;
    }
}
.centered_x3 {
    text-align: center;
}

.values-grid_m4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-card_h6 {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
}

.value-icon_r1 {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    color: var(--secondary-color);
}

.value-title_q5 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.value-text_g9 {
    color: var(--text-light);
}

.team-showcase {
    padding: 80px 0;
    background-color: #f9fbfd;
    position: relative;
}

.team-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><rect width="100" height="100" fill="none" stroke="%232c3e50" stroke-width="0.5" opacity="0.05"/></svg>');
    background-size: 50px 50px;
    z-index: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.title-divider {
    width: 150px;
    margin: 20px auto;
    stroke-dasharray: 250;
    stroke-dashoffset: 250;
    animation: draw 1.5s ease-out forwards;
}

.section-description {
    font-size: 1.2rem;
    color: #7f8c8d;
    max-width: 700px;
    margin: 0 auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.team-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.member-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .member-image img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 62, 80, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-card:hover .image-overlay {
    opacity: 1;
}

.quote-icon {
    width: 60px;
    height: 60px;
    fill: white;
    opacity: 0.8;
}

.member-info {
    padding: 30px;
}

.member-name {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 5px;
    position: relative;
    padding-bottom: 10px;
}

.member-name::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: #e74c3c;
}

.member-title {
    color: #3498db;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.member-bio {
    color: #7f8c8d;
    line-height: 1.8;
}

.member-bio p {
    margin-bottom: 15px;
}

.member-expertise {
    margin: 20px 0 0 20px;
}

.member-expertise li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
    color: #5a6a7a;
}

.member-expertise li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 2px;
    background: #3498db;
}

@keyframes draw {
    to { stroke-dashoffset: 0; }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .member-image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .team-showcase {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .team-grid {
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .member-image {
        height: 250px;
    }
    
    .member-info {
        padding: 25px;
    }
    
    .member-name {
        font-size: 1.3rem;
    }
    
    .member-bio, .member-expertise li {
        font-size: 0.95rem;
    }
}

@media (max-width: 400px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 320px) {
    .team-showcase {
        padding: 50px 0;
    }
    
    .member-image {
        height: 200px;
    }
    
    .member-info {
        padding: 20px;
    }
    
    .member-expertise li {
        padding-left: 15px;
    }
    
    .member-expertise li::before {
        width: 6px;
    }
}

.contact-hero_o7 {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/bg1.webp') no-repeat center center/cover;
    height: 50vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    margin-top: 70px;
}

.contact-title_e1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.contact-subtitle_b5 {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.contact-content_q4 {
    padding: 80px 0;
}

.contact-grid_h8 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info_r3 {
    padding-right: 40px;
}

.info-item_d5 {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-icon_l6 {
    width: 40px;
    height: 40px;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.info-title_j1 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.info-text_n6 {
    color: var(--text-light);
}

.contact-form_c7 {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.form_k9 {
    display: grid;
    gap: 20px;
}

.form-group_t4 {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label_e5 {
    font-weight: 600;
}

.form-input_p8, .form-select_y6, .form-textarea_b1 {
    padding: 12px 15px;
    border: 1px solid var(--light-gray);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-input_p8:focus, .form-select_y6:focus, .form-textarea_b1:focus {
    border-color: var(--secondary-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

.form-textarea_b1 {
    resize: vertical;
    min-height: 120px;
}

.policy-hero_n1, .terms-hero_l8 {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/bg1.webp') no-repeat center center/cover;
    height: 40vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    margin-top: 70px;
}


@media screen and (max-width: 320px) {
    .terms-hero_l8 {
        padding: 25px 0;
    }
    
    .terms-hero_l8 .container_z4 {
        padding: 0 12px;
    }
    
    .terms-title_n9 {
        font-size: 22px !important;
        margin-bottom: 6px !important;
    }
    
    .terms-subtitle_p5 {
        font-size: 13px !important;
    }
}
.policy-title_m3, .terms-title_n9 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.policy-subtitle_j7, .terms-subtitle_p5 {
    font-size: 1.2rem;
}

.policy-content_g5, .terms-content_v3 {
    padding: 80px 0;
}

.policy-article_f9, .terms-article_d7 {
    margin-bottom: 40px;
}

.policy-heading_r2, .terms-heading_f6 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 10px;
}

.policy-heading_r2::after, .terms-heading_f6::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

.policy-text_k6, .terms-text_h4 {
    margin-bottom: 15px;
    line-height: 1.7;
}

.policy-list_e4, .terms-list_q2 {
    margin: 20px 0 20px 30px;
}

.policy-list_e4 li, .terms-list_q2 li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.policy-address_b8, .terms-address_m5 {
    font-style: normal;
    margin-top: 20px;
    line-height: 1.8;
    color: var(--text-light);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (max-width: 992px) {
    .history-grid_b3 {
        grid-template-columns: 1fr;
    }
    
    .history-image_n8 {
        order: -1;
    }
    
    .contact-grid_h8 {
        grid-template-columns: 1fr;
    }
    
    .contact-info_r3 {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
   .burger-btn_q8 {
        display: block;
    }
    
    .burger-btn_q8.active_w2 .burger-line_a4 {
        background-color: var(--white);
    }
    
    .nav-list_j6 {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--primary-color);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: var(--transition);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    
    .nav-list_j6.active_w2 {
        right: 0;
    }
    
    .nav-link_s9 {
        color: var(--white);
        font-size: 1.2rem;
    }
    
    .nav-link_s9.active_w2 {
        color: var(--accent-color);
    }
    
    
    .hero-title_n4 {
        font-size: 2.5rem;
    }
    
    .hero-text_m1 {
        font-size: 1.1rem;
    }
    
    .section-title_f8 {
        font-size: 2rem;
    }
    
    .shop-filters_n5 {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 576px) {
    .hero_b7 {
        height: 70vh;
    }
    
    .hero-title_n4 {
        font-size: 2rem;
    }
    
    .section-title_f8 {
        font-size: 1.8rem;
    }
    
    .features-grid_l5, .products-grid_x1 {
        grid-template-columns: 1fr;
    }
    
    .about-hero_q1, .contact-hero_o7, .shop-hero_e3 {
        height: 40vh;
    }
    
    .about-title_p6, .contact-title_e1, .shop-title_b2 {
        font-size: 2rem;
    }
    
    .policy-hero_n1, .terms-hero_l8 {
        height: 30vh;
    }
    
    .policy-title_m3, .terms-title_n9 {
        font-size: 2rem;
    }
}
.benefits-section_z7 {
    padding: 80px 0;
    background-color: var(--light-color);
    position: relative;
    overflow: hidden;
}

.benefits-section_z7::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><rect width="100" height="100" fill="none" stroke="%23bdc3c7" stroke-width="0.5" opacity="0.3"/></svg>');
    background-size: 50px 50px;
    opacity: 0.1;
    z-index: 0;
}

.benefits-header_x3 {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.with-decoration_k4 {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.title-divider_r9 {
    width: 150px;
    margin: 15px auto 20px;
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: draw 1.5s ease-in-out forwards;
}

.section-subtitle_p8 {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.benefits-grid_w5 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.benefit-card_f1 {
    background-color: var(--white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.benefit-card_f1:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.benefit-card_f1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background-color: var(--secondary-color);
    transition: height 0.3s ease;
    z-index: 2;
}

.benefit-card_f1:hover::before {
    height: 100%;
}

.benefit-icon_m2 {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon_m2 svg {
    width: 100%;
    height: 100%;
    transition: var(--transition);
}

.benefit-card_f1:hover .benefit-icon_m2 svg {
    transform: rotate(15deg);
    stroke: var(--accent-color);
}

.benefit-title_h6 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.benefit-title_h6::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.benefit-card_f1:hover .benefit-title_h6::after {
    width: 80px;
    background-color: var(--accent-color);
}

.benefit-text_b3 {
    color: var(--text-light);
}

.benefit-text_b3 ul {
    margin: 15px 0 15px 20px;
}

.benefit-text_b3 li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}

.benefit-text_b3 li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--secondary-color);
}

.tech-specs_c8 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background-color: var(--white);
    border-radius: 8px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.specs-image_d9 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.window-animation_y4 {
    width: 100%;
    max-width: 300px;
    height: auto;
}

.pane-path_j3 {
    stroke-dasharray: 240;
    stroke-dashoffset: 240;
    animation: draw 2s ease-in-out forwards 0.5s;
}

.specs-title_n2 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.specs-title_n2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

.specs-text_g1 ul {
    margin: 15px 0 15px 20px;
}

.specs-text_g1 li {
    margin-bottom: 8px;
}

@keyframes draw {
    to {
        stroke-dashoffset: 0;
    }
}

@media (max-width: 992px) {
    .tech-specs_c8 {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .specs-title_n2::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .benefits-grid_w5 {
        grid-template-columns: 1fr;
    }
    
    .benefit-text_b3 {
        text-align: center;
    }
    
    .benefit-text_b3 ul {
        text-align: left;
    }
    
    .benefit-title_h6::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 576px) {
    .benefits-section_z7 {
        padding: 60px 0;
    }
    
    .benefits-header_x3 {
        margin-bottom: 40px;
    }
    
    .benefit-card_f1 {
        padding: 20px;
    }
    
    .tech-specs_c8 {
        padding: 20px;
    }
}

@media (max-width: 400px) {
    .benefit-text_b3 ul {
        margin-left: 10px;
    }
    
    .benefit-text_b3 li {
        padding-left: 12px;
    }
}
.innovation-showcase_q5 {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-color) 0%, #f9f9f9 100%);
    position: relative;
    overflow: hidden;
}

.innovation-showcase_q5::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(52,152,219,0.1) 0%, rgba(52,152,219,0) 70%);
    z-index: 0;
}

.section-intro_r8 {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.title-line_k3 {
    display: block;
    line-height: 1.3;
}

.title-wave_u7 {
    width: 200px;
    margin: 20px auto;
    stroke-dasharray: 350;
    stroke-dashoffset: 350;
    animation: draw 1.8s ease-out forwards;
}

.section-description_b9 {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.innovation-grid_y2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.innovation-card_p4 {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.innovation-card_p4:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.card-visual_x6 {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.thermo-icon_j9, .acoustic-icon_h4 {
    width: 100%;
    height: 100%;
    max-width: 150px;
}

.thermo-line_w1 {
    stroke-dasharray: 40;
    stroke-dashoffset: 40;
    animation: thermoRise 2s ease-in-out forwards 0.5s;
}

.thermo-bulb_e3 {
    animation: bulbGlow 1.5s ease-in-out forwards 2s;
}

.sound-wave_m8 {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
}

.sound-wave_m8:nth-child(2) {
    animation: soundWave 2s ease-out forwards 0.3s;
}

.sound-wave_m8:nth-child(3) {
    animation: soundWave 2s ease-out forwards 0.6s;
}

.sound-wave_m8:nth-child(4) {
    animation: soundWave 2s ease-out forwards 0.9s;
}

.card-title_n6 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.card-title_n6::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.innovation-card_p4:hover .card-title_n6::after {
    width: 70px;
    background-color: var(--accent-color);
}

.card-text_v8 {
    color: var(--text-light);
    line-height: 1.7;
}

.card-text_v8 ul {
    margin: 15px 0 20px 20px;
}

.card-text_v8 li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.card-text_v8 li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 2px;
    background-color: var(--secondary-color);
}

.tech-specs_s3 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background-color: var(--white);
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.specs-visual_t9 {
    display: flex;
    align-items: center;
    justify-content: center;
}

.window-diagram_r1 {
    width: 100%;
    max-width: 250px;
    height: auto;
}

.pane-highlight_q8 {
    animation: draw 1.5s ease-in-out forwards 0.3s;
}

.frame-detail_w3 {
    animation: fadeIn 1s ease-in-out forwards 1.5s;
}

.specs-title_k7 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.specs-title_k7::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

.specs-table_b2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.spec-row_e5 {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 15px;
    padding-bottom: 10px;
    border-bottom: 1px dashed var(--light-gray);
}

.spec-name_f9 {
    font-weight: 600;
    color: var(--primary-color);
}

.spec-value_h8 {
    color: var(--text-light);
}

.specs-note_p1 {
    font-size: 0.9rem;
    color: var(--gray);
    font-style: italic;
}

@keyframes thermoRise {
    0% { stroke-dashoffset: 40; }
    50% { stroke: var(--accent-color); }
    100% { stroke-dashoffset: 0; stroke: var(--accent-color); }
}

@keyframes bulbGlow {
    0% { opacity: 0; }
    100% { opacity: 1; filter: drop-shadow(0 0 5px rgba(231, 76, 60, 0.7)); }
}

@keyframes soundWave {
    to { stroke-dashoffset: 0; }
}

@keyframes draw {
    to { stroke-dashoffset: 0; }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

@media (max-width: 992px) {
    .innovation-card_p4 {
        grid-template-columns: 1fr;
    }
    
    .tech-specs_s3 {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .specs-title_k7::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .spec-row_e5 {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 5px;
    }
}

@media (max-width: 768px) {
    .innovation-showcase_q5 {
        padding: 60px 0;
    }
    
    .section-intro_r8 {
        margin-bottom: 40px;
    }
    
    .title-wave_u7 {
        width: 180px;
    }
}

@media (max-width: 576px) {
    .innovation-card_p4, .tech-specs_s3 {
        padding: 25px;
    }
    
    .card-text_v8 li {
        padding-left: 15px;
    }
    
    .card-text_v8 li::before {
        width: 6px;
    }
}

@media (max-width: 400px) {
    .innovation-card_p4, .tech-specs_s3 {
        padding: 20px 15px;
    }
    
    .section-description_b9 {
        font-size: 1.1rem;
    }
    
    .card-title_n6, .specs-title_k7 {
        font-size: 1.3rem;
    }
}

@media (max-width: 320px) {
    .card-text_v8 ul {
        margin-left: 15px;
    }
    
    .spec-row_e5 {
        gap: 3px;
    }
}
.eco-advantage_s7 {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f8fbf8 0%, #e8f4ea 100%);
    position: relative;
    overflow: hidden;
}

.eco-header_v4 {
    text-align: center;
    margin-bottom: 60px;
}

.eco-title_k9 {
    margin-bottom: 15px;
}

.title-part_j2 {
    display: block;
    line-height: 1.3;
}

.eco-divider_r3 {
    width: 180px;
    margin: 20px auto;
    stroke-dasharray: 280;
    stroke-dashoffset: 280;
    animation: draw 1.5s ease-out forwards;
}

.eco-subtitle_p6 {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.eco-content_w8 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.eco-image_m5 {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 100%;
    min-height: 400px;
}

.eco-img_d2 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.eco-image_m5:hover .eco-img_d2 {
    transform: scale(1.03);
}

.image-overlay_q4 {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(46, 125, 50, 0.9);
    padding: 15px 20px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeUp 0.8s ease-out forwards 0.5s;
}

.leaf-icon_n3 {
    width: 24px;
    height: 24px;
    stroke-dasharray: 180;
    stroke-dashoffset: 180;
    animation: draw 1s ease-out forwards 1s;
}

.overlay-text_f5 {
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.eco-features_b6 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-content: center;
}

.feature-item_y1 {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 20px;
}

.feature-icon_t8 {
    width: 60px;
    height: 60px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.feature-icon_t8 svg {
    width: 32px;
    height: 32px;
}

.recycle-path_e6 {
    stroke-dasharray: 120;
    stroke-dashoffset: 120;
    animation: draw 1s ease-out forwards;
}

.recycle-arrow_w9 {
    stroke-dasharray: 30;
    stroke-dashoffset: 30;
    animation: draw 0.5s ease-out forwards 0.8s;
}

.energy-path_r4 {
    stroke-dasharray: 240;
    stroke-dashoffset: 240;
    animation: draw 1.2s ease-out forwards;
}

.energy-bolt_k5 {
    stroke-dasharray: 90;
    stroke-dashoffset: 90;
    animation: draw 0.6s ease-out forwards 0.8s;
}

.tree-trunk_m7 {
    stroke-dasharray: 60;
    stroke-dashoffset: 60;
    animation: draw 0.8s ease-out forwards;
}

.tree-leaves_n4 {
    stroke-dasharray: 160;
    stroke-dashoffset: 160;
    animation: draw 1s ease-out forwards 0.5s;
}

.feature-title_h8 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.feature-text_c7 p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0;
}

.eco-stats_g3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item_f2 {
    background-color: var(--white);
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.stat-value_q7 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
    line-height: 1;
}

.counter_x8 {
    display: inline-block;
}

.stat-label_j5 {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 600;
}

.stat-wave_v1 {
    width: 100%;
    height: 10px;
    margin-top: 15px;
    stroke-dasharray: 120;
    stroke-dashoffset: 120;
    animation: draw 1s ease-out forwards;
}

.stat-item_f2:nth-child(2) .stat-wave_v1 {
    animation-delay: 0.2s;
}

.stat-item_f2:nth-child(3) .stat-wave_v1 {
    animation-delay: 0.4s;
}

@keyframes draw {
    to { stroke-dashoffset: 0; }
}

@keyframes fadeUp {
    to { transform: translateY(0); opacity: 1; }
}

@media (max-width: 992px) {
    .eco-content_w8 {
        grid-template-columns: 1fr;
    }
    
    .eco-image_m5 {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .eco-advantage_s7 {
        padding: 60px 0;
    }
    
    .eco-header_v4 {
        margin-bottom: 40px;
    }
    
    .eco-stats_g3 {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .feature-item_y1 {
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: center;
    }
    
    .feature-icon_t8 {
        margin: 0 auto;
    }
    
    .eco-image_m5 {
        min-height: 250px;
    }
}

@media (max-width: 400px) {
    .eco-subtitle_p6 {
        font-size: 1.1rem;
    }
    
    .stat-value_q7 {
        font-size: 2rem;
    }
}

@media (max-width: 320px) {
    .eco-content_w8 {
        gap: 30px;
    }
    
    .feature-text_c7 p {
        font-size: 0.95rem;
    }
}
.technical-excellence_g8 {
    padding: 80px 0;
    background-color: #f9fbfd;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(52, 152, 219, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 80% 70%, rgba(52, 152, 219, 0.05) 0%, transparent 20%);
    position: relative;
    overflow: hidden;
}

.tech-header_r5 {
    text-align: center;
    margin-bottom: 60px;
}

.tech-title_m3 {
    margin-bottom: 15px;
}

.title-line_v6 {
    display: block;
    line-height: 1.3;
}

.tech-divider_k2 {
    width: 200px;
    margin: 20px auto;
    stroke-dasharray: 350;
    stroke-dashoffset: 350;
    animation: draw 1.8s ease-out forwards;
}

.tech-subtitle_p9 {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.tech-grid_b7 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.tech-card_n1 {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 30px;
    background-color: var(--white);
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tech-card_n1:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.card-icon_w2 {
    width: 100px;
    height: 100px;
    background-color: #f5f9ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.card-icon_w2 svg {
    width: 60px;
    height: 60px;
}

.gear-outer_e4 {
    stroke-dasharray: 320;
    stroke-dashoffset: 320;
    animation: draw 1.5s ease-out forwards;
}

.gear-inner_f3 {
    stroke-dasharray: 160;
    stroke-dashoffset: 160;
    animation: draw 1s ease-out forwards 0.5s;
}

.gear-center_h5 {
    stroke-dasharray: 63;
    stroke-dashoffset: 63;
    animation: draw 0.8s ease-out forwards 1s;
}

.thermo-outline_d8 {
    stroke-dasharray: 240;
    stroke-dashoffset: 240;
    animation: draw 1s ease-out forwards;
}

.thermo-column_e9 {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: draw 0.8s ease-out forwards 0.5s;
}

.thermo-fluid_f2 {
    stroke-dasharray: 40;
    stroke-dashoffset: 40;
    animation: fluidRise 1.5s ease-in-out forwards 1s;
}

.thermo-bulb_g6 {
    opacity: 0;
    animation: fadeIn 0.5s ease-out forwards 2s;
}

.card-title_j7 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.card-title_j7::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
    transition: all 0.3s ease;
}

.tech-card_n1:hover .card-title_j7::after {
    width: 70px;
    background-color: var(--accent-color);
}

.card-text_l4 {
    color: var(--text-light);
    line-height: 1.8;
}

.card-text_l4 p {
    margin-bottom: 15px;
}

.card-text_l4 ul {
    margin: 20px 0 25px 25px;
}

.card-text_l4 li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.card-text_l4 li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 2px;
    background-color: var(--secondary-color);
}

.tech-specs_c5 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background-color: var(--white);
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.specs-visual_r7 {
    display: flex;
    align-items: center;
    justify-content: center;
}

.window-cross-section_x3 {
    width: 100%;
    max-width: 300px;
    height: auto;
}

.section-cut_j8 {
    stroke-dasharray: 240;
    stroke-dashoffset: 240;
    animation: draw 1s ease-out forwards;
}

.frame-detail_k9 {
    stroke-dasharray: 480;
    stroke-dashoffset: 480;
    animation: draw 1.5s ease-out forwards 0.5s;
}

.glass-detail_m6 {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: draw 1s ease-out forwards 1s;
}

.thermal-arrows_n7 {
    stroke-dasharray: 80;
    stroke-dashoffset: 80;
    animation: draw 0.8s ease-out forwards 1.5s;
}

.specs-title_h9 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.specs-title_h9::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

.spec-subhead_v2 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin: 25px 0 10px;
}

.specs-text_q5 ul {
    margin: 15px 0 20px 25px;
}

.specs-text_q5 li {
    margin-bottom: 8px;
    color: var(--text-light);
}

.specs-text_q5 strong {
    color: var(--primary-color);
    font-weight: 600;
}
@keyframes draw {
    to { stroke-dashoffset: 0; }
}

@keyframes fluidRise {
    0% { stroke-dashoffset: 40; }
    50% { stroke: var(--accent-color); }
    100% { stroke-dashoffset: 0; stroke: var(--accent-color); }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

@media (max-width: 1200px) {
    .tech-card_n1 {
        padding: 30px;
    }
    
    .tech-specs_c5 {
        padding: 30px;
    }
}

@media (max-width: 992px) {
    .tech-card_n1 {
        grid-template-columns: 1fr;
    }
    
    .card-icon_w2 {
        margin: 0 auto 20px;
    }
    
    .tech-specs_c5 {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .specs-title_h9::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .technical-excellence_g8 {
        padding: 60px 0;
    }
    
    .tech-header_r5 {
        margin-bottom: 40px;
    }
    
    .tech-subtitle_p9 {
        font-size: 1.1rem;
    }
    
    .card-text_l4, .specs-text_q5 {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .tech-card_n1, .tech-specs_c5 {
        padding: 25px;
    }
    
    .card-text_l4 ul, .specs-text_q5 ul {
        margin-left: 20px;
    }
}

@media (max-width: 400px) {
    .tech-card_n1, .tech-specs_c5 {
        padding: 20px 15px;
    }
    
    .card-title_j7, .specs-title_h9 {
        font-size: 1.3rem;
    }
    
    .tech-divider_k2 {
        width: 150px;
    }
}

@media (max-width: 320px) {
    .card-text_l4 li, .specs-text_q5 li {
        padding-left: 15px;
        font-size: 0.9rem;
    }
    
    .card-text_l4 li::before {
        width: 6px;
    }
}
.client-stories_s4 {
    padding: 80px 0;
    background-color: #f9fcff;
    position: relative;
}

.stories-header_f9 {
    text-align: center;
    margin-bottom: 60px;
}

.stories-title_m1 {
    margin-bottom: 10px;
}

.title-row_p3 {
    display: block;
    line-height: 1.3;
}

.title-marker_w5 {
    width: 120px;
    margin: 20px auto;
    stroke-dasharray: 140;
    stroke-dashoffset: 140;
    animation: draw 1s ease-out forwards;
}

.stories-subtitle_k2 {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.testimonial-carousel_r6 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.testimonial-card_t9 {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card_t9:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}



.quote-mark_y1 {
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 5rem;
    color: rgba(52, 152, 219, 0.1);
    line-height: 1;
    font-family: Georgia, serif;
}

.testimonial-content_b5 {
    position: relative;
    z-index: 1;
}

.client-quote_n3 {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.client-info_v4 {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.client-name_f2 {
    font-weight: 600;
    color: var(--primary-color);
}

.client-location_h7 {
    font-size: 0.9rem;
    color: var(--gray);
}

.rating-stars_q8 {
    color: #ffc107;
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-top: 5px;
}

.house-icon_m9 {
    position: absolute;
    bottom: 20px;
    right: 20px;
    opacity: 0.1;
    transition: opacity 0.3s ease;
}

.testimonial-card_t9:hover .house-icon_m9 {
    opacity: 0.3;
}

.achievements-bar_g4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    background-color: var(--secondary-color);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
}

.achievement-item_k6 {
    color: var(--white);
}

.achievement-value_r3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.achievement-label_t8 {
    font-size: 0.9rem;
    opacity: 0.9;
}

@keyframes draw {
    to { stroke-dashoffset: 0; }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@media (max-width: 992px) {
    .testimonial-carousel_r6 {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto 60px;
    }
}

@media (max-width: 768px) {
    .client-stories_s4 {
        padding: 60px 0;
    }
    
    .stories-header_f9 {
        margin-bottom: 40px;
    }
    
    .achievements-bar_g4 {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .testimonial-card_t9 {
        padding: 25px;
    }
    
    .client-quote_n3 {
        font-size: 0.95rem;
    }
}

@media (max-width: 400px) {
    .stories-title_m1 {
        font-size: 1.8rem;
    }
    
    .stories-subtitle_k2 {
        font-size: 1.1rem;
    }
}

@media (max-width: 320px) {
    .testimonial-card_t9 {
        padding: 20px 15px;
    }
    
    .achievement-value_r3 {
        font-size: 1.8rem;
    }
}
.luxury-collection_v6 {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fb 0%, #eef2f8 100%);
    position: relative;
}

.collection-header_r8 {
    text-align: center;
    margin-bottom: 60px;
}

.collection-title_p9 {
    margin-bottom: 15px;
}

.title-segment_h4 {
    display: block;
    line-height: 1.3;
}

.title-decoration_k3 {
    width: 180px;
    margin: 20px auto;
    stroke-dasharray: 280;
    stroke-dashoffset: 280;
    animation: draw 1.5s ease-out forwards;
}

.collection-subtitle_m7 {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.collection-showcase_f4 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.showcase-visual_d9 {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.showcase-image_q5 {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.showcase-visual_d9:hover .showcase-image_q5 {
    transform: scale(1.03);
}

.image-overlay_t7 {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(46, 125, 50, 0.9);
    padding: 12px 20px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeUp 0.8s ease-out forwards 0.5s;
}

.premium-badge_e8 {
    width: 24px;
    height: 24px;
}

.badge-star_w3 {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: draw 1s ease-out forwards 1s;
}

.overlay-text_r2 {
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.showcase-content_b7 {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content-title_j6 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.content-title_j6::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: var(--secondary-color);
}

.content-text_n4 {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.content-text_n4 p {
    margin-bottom: 15px;
}

.content-text_n4 ul {
    margin: 20px 0;
}

.content-text_n4 li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 25px;
}

.content-text_n4 li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 15px;
    height: 2px;
    background-color: var(--secondary-color);
}

.cta-buttons_g5 {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-gradient_f7 {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1e6fb9 100%);
    color: var(--white);
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.btn-gradient_f7:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
    background: linear-gradient(135deg, #1e6fb9 0%, var(--secondary-color) 100%);
}

.btn-outline_w8 {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-outline_w8:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.luxury-features_h5 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item_k9 {
    background-color: var(--white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.feature-item_k9:hover {
    transform: translateY(-10px);
}

.feature-icon_r4 {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.icon-path_q7 {
    stroke-dasharray: 240;
    stroke-dashoffset: 240;
    animation: draw 1s ease-out forwards;
}

.icon-core_e3 {
    stroke-dasharray: 160;
    stroke-dashoffset: 160;
    animation: draw 0.8s ease-out forwards 0.5s;
}

.feature-title_t5 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.feature-text_v8 {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

@keyframes draw {
    to { stroke-dashoffset: 0; }
}

@keyframes fadeUp {
    to { transform: translateY(0); opacity: 1; }
}

@media (max-width: 992px) {
    .collection-showcase_f4 {
        grid-template-columns: 1fr;
    }
    
    .showcase-image_q5 {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .luxury-collection_v6 {
        padding: 60px 0;
    }
    
    .collection-header_r8 {
        margin-bottom: 40px;
    }
    
    .cta-buttons_g5 {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .content-text_n4 li {
        padding-left: 20px;
    }
    
    .content-text_n4 li::before {
        width: 12px;
    }
    
    .btn-gradient_f7, .btn-outline_w8 {
        padding: 10px 20px;
    }
}

@media (max-width: 400px) {
    .collection-title_p9 {
        font-size: 1.8rem;
    }
    
    .collection-subtitle_m7 {
        font-size: 1.1rem;
    }
    
    .content-title_j6 {
        font-size: 1.5rem;
    }
    
    .luxury-features_h5 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 320px) {
    .content-text_n4 {
        font-size: 0.95rem;
    }
    
    .content-text_n4 li {
        padding-left: 18px;
        font-size: 0.9rem;
    }
    
    .feature-item_k9 {
        padding: 25px;
    }
}
.product-encyclopedia {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e8f0f8 100%);
    position: relative;
    overflow: hidden;
}

.product-encyclopedia::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><rect width="100" height="100" fill="none" stroke="%233498db" stroke-width="0.5" opacity="0.1"/></svg>');
    background-size: 50px 50px;
    z-index: 0;
}

.encyclopedia-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.title-line {
    display: block;
    line-height: 1.3;
}

.title-wave {
    width: 200px;
    margin: 20px auto;
    stroke-dasharray: 350;
    stroke-dashoffset: 350;
    animation: draw 1.8s ease-out forwards;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #7f8c8d;
    max-width: 700px;
    margin: 0 auto;
}

.text-monument {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.text-column {
    position: relative;
    padding-bottom: 20px;
}

.text-column::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #3498db;
}

.column-title {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.column-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #e74c3c;
}

.text-column p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #7f8c8d;
}

.technical-manifesto {
    background: #2c3e50;
    padding: 50px;
    border-radius: 10px;
    color: white;
}

.manifesto-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.manifesto-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #e74c3c;
}

.manifesto-content {
    columns: 2;
    column-gap: 40px;
}

.manifesto-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    break-inside: avoid;
    color: #bdc3c7;
}

@keyframes draw {
    to { stroke-dashoffset: 0; }
}

@media (max-width: 992px) {
    .text-monument {
        padding: 30px;
    }
    
    .technical-manifesto {
        padding: 40px 30px;
    }
    
    .manifesto-content {
        columns: 1;
    }
}

@media (max-width: 768px) {
    .product-encyclopedia {
        padding: 60px 0;
    }
    
    .encyclopedia-header {
        margin-bottom: 40px;
    }
    
    .text-monument {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .text-column {
        padding-bottom: 15px;
        margin-bottom: 15px;
    }
    
    .text-column::after {
        width: 40px;
        height: 2px;
    }
}

@media (max-width: 576px) {
    .text-monument, .technical-manifesto {
        padding: 25px;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 400px) {
    .product-encyclopedia {
        padding: 50px 0;
    }
    
    .title-wave {
        width: 150px;
    }
    
    .text-monument, .technical-manifesto {
        padding: 20px 15px;
    }
    
    .column-title, .manifesto-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 320px) {
    .section-title {
        font-size: 1.5rem;
    }
    
    .text-column p, .manifesto-content p {
        font-size: 0.95rem;
    }
    
    .text-monument {
        gap: 25px;
    }
}
.timeline-premium_x9z {
    padding: 100px 0;
    background: linear-gradient(135deg, #f9fbfd 0%, #eef2f8 100%);
    position: relative;
    overflow: hidden;
}

.timeline-premium_x9z::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><rect width="100" height="100" fill="none" stroke="%232c3e50" stroke-width="0.3" opacity="0.05"/></svg>');
    background-size: 50px 50px;
    z-index: 0;
}

.section-header_r7v {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.section-title_p4q {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.3;
    font-weight: 700;
}

.title-line_f8m {
    display: block;
}

.title-divider_l6t {
    width: 250px;
    margin: 25px auto;
}

.divider-path_k9p {
    animation: draw 1.8s ease-out forwards;
}

.section-subtitle_w3s {
    font-size: 1.3rem;
    color: #7f8c8d;
    font-weight: 500;
    letter-spacing: 1px;
}

.timeline-core_h4y {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
}

.timeline-axis_g7f {
    position: absolute;
    left: 50%;
    top: 0;
    height: 100%;
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-axis_g7f line {
    animation: draw 2.5s ease-out forwards 0.5s;
}

.timeline-items_n5d {
    position: relative;
    z-index: 2;
    padding: 70px 0 30px;
}

.timeline-card_b2v {
    display: flex;
    margin-bottom: 100px;
    position: relative;
    align-items: center;
}

.timeline-card_b2v:nth-child(even) {
    flex-direction: row-reverse;
}

.year-marker_q8x {
    width: 120px;
    height: 120px;
    position: relative;
    z-index: 3;
    flex-shrink: 0;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.3));
}

.year-marker_q8x svg {
    width: 100%;
    height: 100%;
}

.year-marker_q8x circle,
.year-marker_q8x rect,
.year-marker_q8x polygon,
.year-marker_q8x path {
    animation: draw 1.5s ease-out forwards;
}

.connector-line_c3m {
    position: absolute;
    top: 120px;
    left: 50%;
    width: 2px;
    height: 60px;
    background: #3498db;
    transform: translateX(-50%);
    opacity: 0;
    animation: growDown 0.8s ease-out forwards 1.5s;
}

.content-box_j7h {
    width: calc(50% - 80px);
    padding: 0 30px;
    position: relative;
}

.content-title_r9t {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.content-title_r9t::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #e74c3c;
}

.timeline-card_b2v:nth-child(even) .content-title_r9t::after {
    left: auto;
    right: 0;
}

.content-text_y6k {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    position: relative;
}

.content-text_y6k::before {
    content: '';
    position: absolute;
    top: 30px;
    width: 30px;
    height: 3px;
    background: #3498db;
}

.timeline-card_b2v:nth-child(odd) .content-text_y6k::before {
    left: -30px;
}

.timeline-card_b2v:nth-child(even) .content-text_y6k::before {
    right: -30px;
}

.content-text_y6k p {
    color: #5a6a7a;
    line-height: 1.8;
    margin-bottom: 15px;
}

.content-text_y6k ul {
    margin: 20px 0;
    padding-left: 20px;
}

.content-text_y6k li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
    color: #5a6a7a;
    line-height: 1.6;
}

.content-text_y6k li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 15px;
    height: 2px;
    background: #3498db;
}

.content-divider_p4s {
    width: 100%;
    height: 20px;
    margin-top: 20px;
}

.content-divider_p4s path {
    animation: draw 1s ease-out forwards 0.5s;
}
@keyframes draw {
    to { stroke-dashoffset: 0; }
}

@keyframes growDown {
    0% { height: 0; opacity: 0; }
    100% { height: 60px; opacity: 1; }
}

@media (max-width: 1200px) {
    .content-box_j7h {
        width: calc(50% - 60px);
    }
}

@media (max-width: 992px) {
    .section-title_p4q {
        font-size: 2.5rem;
    }
    
    .timeline-card_b2v,
    .timeline-card_b2v:nth-child(even) {
        flex-direction: column;
        margin-bottom: 120px;
    }
    
    .year-marker_q8x {
        margin-bottom: 60px;
    }
    
    .content-box_j7h {
        width: 80%;
        padding: 0;
    }
    
    .timeline-axis_g7f {
        left: 60px;
    }
    
    .content-text_y6k::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .timeline-premium_x9z {
        padding: 80px 0;
    }
    
    .content-box_j7h {
        width: 90%;
    }
    
    .content-title_r9t {
        font-size: 1.6rem;
    }
}

@media (max-width: 576px) {
    .section-title_p4q {
        font-size: 2.2rem;
    }
    
    .section-subtitle_w3s {
        font-size: 1.1rem;
    }
    
    .year-marker_q8x {
        width: 100px;
        height: 100px;
    }
    
    .content-text_y6k {
        padding: 25px;
    }
    
    .content-text_y6k li {
        font-size: 0.95rem;
    }
}

@media (max-width: 400px) {
    .timeline-core_h4y {
        padding: 0 20px;
    }
    
    .content-box_j7h {
        width: 100%;
    }
    
    .content-text_y6k {
        padding: 20px;
    }
    
    .content-title_r9t {
        font-size: 1.4rem;
    }
}

@media (max-width: 320px) {
    .section-title_p4q {
        font-size: 2rem;
    }
    
    .year-marker_q8x {
        width: 80px;
        height: 80px;
    }
    
    .content-text_y6k li {
        padding-left: 20px;
    }
}
.z8x_w2p {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e8f0f8 100%);
    position: relative;
    overflow: hidden;
}

.v9q_l3r {
    text-align: center;
    margin-bottom: 60px;
}

.m4n_k5s {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.b6t_d7u, .c8v_e9f {
    display: block;
}

.f1g_h2i {
    width: 200px;
    margin: 20px auto;
}

.f1g_h2i path {
    animation: draw 1.8s ease-out forwards;
}

.j3o_p4q {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.r5s_t6y {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}

.u7z_m8n {
    position: relative;
}

.image-container_x9a {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.responsive-image_w1b {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.image-container_x9a:hover .responsive-image_w1b {
    transform: scale(1.03);
}

.overlay-svg_y2c {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.overlay-svg_y2c rect, .overlay-svg_y2c path {
    animation: draw 2s ease-out forwards;
}

.animated-path_z3d {
    animation-delay: 0.5s;
}

.content-block_a4s {
    color: var(--text-light);
    line-height: 1.8;
}

.content-block_a4s p {
    margin-bottom: 20px;
}

.non-clickable_g5h {
    display: inline-block;
    padding: 12px 30px;
    margin: 25px 0;
    border-radius: 4px;
    background: linear-gradient(135deg, #95a5a6 0%, #7f8c8d 100%);
    color: var(--white);
    font-weight: 600;
    text-align: center;
    pointer-events: none;
    cursor: default;
    opacity: 0.8;
    box-shadow: none;
}

.stats-grid_b6f {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item_c7g, .stat-item_d8h, .stat-item_e9i {
    background-color: var(--white);
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.stat-item_c7g svg, .stat-item_d8h svg, .stat-item_e9i svg {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
}

.stat-item_c7g text, .stat-item_d8h text, .stat-item_e9i text {
    font-weight: 700;
}

.stat-item_c7g p, .stat-item_d8h p, .stat-item_e9i p {
    color: var(--text-light);
    font-weight: 600;
    margin-top: 10px;
}

@media (max-width: 992px) {
    .r5s_t6y {
        grid-template-columns: 1fr;
    }
    
    .u7z_m8n {
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .z8x_w2p {
        padding: 60px 0;
    }
    
    .m4n_k5s {
        font-size: 2.2rem;
    }
    
    .stats-grid_b6f {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .m4n_k5s {
        font-size: 2rem;
    }
    
    .j3o_p4q {
        font-size: 1.1rem;
    }
    
    .content-block_a4s p {
        font-size: 0.95rem;
    }
    
    .non-clickable_g5h {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 400px) {
    .b6t_d7u, .c8v_e9f {
        display: inline;
    }
    
    .f1g_h2i {
        width: 150px;
    }
}

@media (max-width: 320px) {
    .z8x_w2p {
        padding: 50px 0;
    }
    
    .content-block_a4s p {
        font-size: 0.9rem;
    }
}
.k9p_l2w {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a2f42 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.k9p_l2w::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
}

.m3n_q4r {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.s5t_u6v {
    font-size: 2.5rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.w7x_y8z, .a1b_c2d {
    display: block;
}

.e3f_g4h {
    width: 200px;
    margin: 20px auto;
}

.e3f_g4h path {
    animation: draw 1.8s ease-out forwards;
}

.i5j_k6l {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.o7m_p8n {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.n9q_r0s {
    display: inline-block;
    padding: 15px 40px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.n9q_r0s:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
    background: #e63939;
}

.t1u_v2w {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.t1u_v2w svg {
    width: 20px;
    height: 20px;
}

.t1u_v2w:hover {
    background: rgba(255,255,255,0.2);
}

@media (max-width: 768px) {
    .k9p_l2w {
        padding: 80px 0;
    }
    
    .s5t_u6v {
        font-size: 2.2rem;
    }
    
    .o7m_p8n {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .s5t_u6v {
        font-size: 2rem;
    }
    
    .i5j_k6l {
        font-size: 1.1rem;
    }
    
    .n9q_r0s, .t1u_v2w {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

@media (max-width: 400px) {
    .w7x_y8z, .a1b_c2d {
        display: inline;
    }
    
    .e3f_g4h {
        width: 150px;
    }
}

@media (max-width: 320px) {
    .k9p_l2w {
        padding: 60px 0;
    }
    
    .s5t_u6v {
        font-size: 1.8rem;
    }
}
.z9x_w3p {
    padding: 80px 0;
    background-color: #f9fbfd;
    position: relative;
}

.z9x_w3p::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><rect width="100" height="100" fill="none" stroke="%232c3e50" stroke-width="0.3" opacity="0.05"/></svg>');
    background-size: 50px 50px;
    z-index: 0;
}

.r8h_k4q {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.m5n_l6s {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.b7t_e8u, .c9v_f0f {
    display: block;
}

.f2g_h3i {
    width: 200px;
    margin: 20px auto;
    stroke-dasharray: 350;
    stroke-dashoffset: 350;
    animation: draw 1.8s ease-out forwards;
}

.j4o_q5r {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.s6t_u7v {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.t8x_y9z {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.a2b_d3c {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.a2b_d3c::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

.e4f_g5h {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.i6j_k7l {
    background-color: #f5f9ff;
    padding: 25px;
    border-radius: 6px;
    margin-top: 30px;
}

.m8n_o9p {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.p0q_r1s {
    margin-left: 20px;
}

.t2u_v3w {
    color: #fff;
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.t2u_v3w::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 15px;
    height: 2px;
    background-color: var(--secondary-color);
}

.x4y_z5a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.b6c_d7e, .v6w_x7y {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.f8g_h9i, .y8z_a9b {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.j0k_l1m, .c1d_e2f {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.n2o_p3q, .g3h_f4i {
    margin-left: 20px;
    margin-bottom: 20px;
}

.r4s_t5u, .o5p_q6r {
    color: var(--text-light);
    margin-bottom: 8px;
    position: relative;
    padding-left: 25px;
}

.r4s_t5u::before, .o5p_q6r::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 12px;
    height: 2px;
    background-color: var(--secondary-color);
}
.privacy-agreement_4h3 {
    display: flex;
    align-items: center;
    margin: 25px 0;
}

.privacy-checkbox_7f6 {
    margin-right: 12px;
    width: 18px;
    height: 18px;
    accent-color: #FF6B35;
}

.privacy-text_8t3 {
    color: #555;
    font-size: 0.9rem;
}

.privacy-link_5n1 {
    color: #FF6B35;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.privacy-link_5n1:hover {
    color: #114B5F;
}

.gradient-btn_2w5 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #FF6B35 0%, #114B5F 100%);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255,107,53,0.3);
}

.gradient-btn_2w5:hover {
    background: linear-gradient(135deg, #114B5F 0%, #FF6B35 100%);
    box-shadow: 0 6px 20px rgba(255,107,53,0.4);
    transform: translateY(-2px);
}

.gradient-btn_2w5:active {
    transform: translateY(0);
}

.btn-icon_9p3 {
    transition: transform 0.3s ease;
}

.gradient-btn_2w5:hover .btn-icon_9p3 {
    transform: translateX(3px);
}

@media (max-width: 992px) {
    .s6t_u7v {
        grid-template-columns: 1fr;
    }
    
    .t8x_y9z {
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .z9x_w3p {
        padding: 60px 0;
    }
    
    .m5n_l6s {
        font-size: 2.2rem;
    }
    
    .j4o_q5r {
        font-size: 1.1rem;
    }
    
    .t8x_y9z, .b6c_d7e, .v6w_x7y {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .m5n_l6s {
        font-size: 2rem;
    }
    
    .a2b_d3c, .f8g_h9i, .y8z_a9b {
        font-size: 1.2rem;
    }
    
    .e4f_g5h, .j0k_l1m, .c1d_e2f {
        font-size: 0.95rem;
    }
    
    .d3e_g4h {
        padding: 15px 25px;
    }
}

@media (max-width: 400px) {
    .b7t_e8u, .c9v_f0f {
        display: inline;
    }
    
    .f2g_h3i {
        width: 150px;
    }
    
    .t2u_v3w, .r4s_t5u, .o5p_q6r {
        padding-left: 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 320px) {
    .z9x_w3p {
        padding: 50px 0;
    }
    
    .m5n_l6s {
        font-size: 1.8rem;
    }
    
    .t8x_y9z, .b6c_d7e, .v6w_x7y {
        padding: 20px 15px;
    }
    
    .d3e_g4h {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 15px;
    }
}
/* Thanks Page Styles */
.thanks-page {
    background-color: #f9fbfd;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.t7k_v8m {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px 0;
}

.x3y_z4a {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.w5q_r6s {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
}

.u7v_w8x {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
}

.circle-anim {
    animation: draw 1.5s ease-out forwards;
}

.check-anim {
    animation: draw 0.8s ease-out forwards 0.8s;
}

.d9e_f0g {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.h2i_j3k {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

.l4m_n5o {
    background-color: var(--white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin: 30px 0;
}

.p6q_r7s {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.t8u_v9w {
    text-align: left;
    max-width: 300px;
    margin: 0 auto;
}

.w0x_y1z {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.w0x_y1z::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 15px;
    height: 2px;
    background-color: var(--secondary-color);
}

.a2b_c3d {
    color: var(--secondary-color);
    font-weight: 600;
    transition: var(--transition);
}

.a2b_c3d:hover {
    color: var(--primary-color);
}

.e4f_g5h {
    margin-top: 40px;
}

.i6j_k7l {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--secondary-color);
    color: var(--white);
    border-radius: 4px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.i6j_k7l:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
}

.m8n_o9p {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    height: 100%;
    display: flex;
    align-items: center;
}

.q0r_p1s {
    text-align: center;
    width: 100%;
}

.s2t_u3v {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.v4w_x5y {
    color: var(--text-light);
    margin-bottom: 10px;
}

.y6z_a7b {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    color: var(--secondary-color);
    font-weight: 700;
    margin: 20px 0;
    transition: var(--transition);
}

.y6z_a7b:hover {
    color: var(--primary-color);
}

.b8c_d9e {
    width: 30px;
    height: 30px;
}

/* Animations */
@keyframes draw {
    to { stroke-dashoffset: 0; }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .x3y_z4a {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .m8n_o9p {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .t7k_v8m {
        padding: 40px 0;
    }
    
    .d9e_f0g {
        font-size: 2.2rem;
    }
    
    .w5q_r6s, .m8n_o9p {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .d9e_f0g {
        font-size: 2rem;
    }
    
    .h2i_j3k {
        font-size: 1.1rem;
    }
    
    .s2t_u3v {
        font-size: 1.3rem;
    }
    
    .y6z_a7b {
        font-size: 1.3rem;
    }
    
    .i6j_k7l {
        padding: 12px 30px;
    }
}

@media (max-width: 400px) {
    .w5q_r6s, .m8n_o9p {
        padding: 25px 20px;
    }
    
    .u7v_w8x {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 320px) {
    .d9e_f0g {
        font-size: 1.8rem;
    }
    
    .t8u_v9w {
        padding-left: 20px;
    }
    
    .w0x_y1z {
        padding-left: 20px;
        font-size: 0.95rem;
    }
    
    .w0x_y1z::before {
        width: 12px;
    }
}