@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #f5f7fa;
    color: #1a1a1a;
}

:root {
    --primary: #00843D;
    --primary-dark: #006B30;
    --secondary: #002B5C;
    --accent: #00A3B2;
    --accent-dark: #00838F;
    --gray: #666;
    --gray-light: #e0e0e0;
    --shadow: 0 5px 20px rgba(0,0,0,0.05);
    --shadow-hover: 0 10px 30px rgba(0,0,0,0.1);
    --radius: 15px;
}

/* ===== HEADER ===== */
header {
    background: var(--secondary);
    padding: 25px 50px 10px;
    position: relative;
    z-index: 100;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.logo-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.logo-title {
    font-size: 72px;
    font-weight: 900;
    color: white;
    letter-spacing: 6px;
    text-align: center;
    line-height: 1;
}

.logo-sub {
    font-size: 18px;
    font-weight: 400;
    color: white;
    letter-spacing: 8px;
    text-transform: uppercase;
    text-align: center;
    margin-top: 2px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
    position: absolute;
    right: 50px;
    top: 35px;
}

.language-switcher {
    display: flex;
    gap: 5px;
}

.lang-btn {
    background: rgba(255,255,255,0.1);
    color: white;
    border: none;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    font-family: 'Montserrat', sans-serif;
}

.lang-btn:hover {
    background: rgba(255,255,255,0.2);
}

.lang-btn.active {
    background: var(--primary);
    color: white;
}

/* ===== NAVIGATION ===== */
.main-nav {
    display: flex;
    justify-content: center;
    gap: 50px;
    padding: 18px 0 8px;
}

.main-nav a {
    color: white;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: 0.3s;
    text-transform: uppercase;
}

.main-nav a:hover {
    color: var(--accent);
}

/* ===== MOBILE MENU ===== */
.menu-small {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--secondary);
    transform: translateX(-100%);
    padding: 80px 30px 30px;
    z-index: 999;
    transition: 0.3s;
}

.menu-small a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 15px 0;
    font-size: 22px;
    font-weight: 600;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    text-transform: uppercase;
}

.menu_small_icon {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.stick {
    width: 30px;
    height: 3px;
    background: white;
    border-radius: 3px;
}

/* ===== HERO ===== */
.hero {
    max-width: 1200px;
    margin: 60px auto;
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 0 20px;
}

.hero-content {
    flex: 1;
}

.hero h1 {
    font-size: 38px;
    font-weight: 900;
    line-height: 1.3;
    color: var(--secondary);
    text-transform: uppercase;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* ===== BUTTONS ===== */
.main-btn {
    background: var(--secondary);
    color: white;
    padding: 16px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-btn:hover {
    background: #004080;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 43, 92, 0.3);
}

.secondary-btn {
    background: var(--secondary);
    color: white;
    padding: 16px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    border: none;
    transition: 0.3s;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.secondary-btn:hover {
    background: #004080;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 43, 92, 0.3);
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

/* ===== PRODUCTS ===== */
.products-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.products-section h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 40px;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.product-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-card {
    background: white;
    padding: 30px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: 0.3s;
    border-bottom: 4px solid var(--accent);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.product-icon {
    font-size: 44px;
    margin-bottom: 15px;
}

.product-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
}

.product-card p {
    font-size: 15px;
    color: var(--gray);
}

.product-arrow {
    display: inline-block;
    margin-top: 12px;
    font-size: 22px;
    color: var(--primary);
    transition: 0.3s;
}

.product-card:hover .product-arrow {
    transform: translateX(5px);
}

/* ===== SERVICES ===== */
.services-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.services-section h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 40px;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.service-card {
    background: white;
    padding: 30px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    border-bottom: 4px solid var(--primary);
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 15px;
    color: var(--gray);
}

/* ===== CATALOG ===== */
.catalog-page {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.catalog-page h1 {
    font-size: 40px;
    color: var(--secondary);
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.catalog-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.cat-btn {
    padding: 12px 30px;
    border-radius: 25px;
    background: #f0f0f0;
    color: #333;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s;
    font-family: 'Montserrat', sans-serif;
}

.cat-btn:hover {
    background: #d4d4d4;
}

.cat-btn.active {
    background: var(--primary);
    color: white;
}

.catalog-subcategories {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.subcategory-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.subcat-btn {
    padding: 8px 20px;
    border-radius: 20px;
    background: #e8f5e9;
    color: var(--primary-dark);
    border: 2px solid var(--primary);
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
    font-family: 'Montserrat', sans-serif;
}

.subcat-btn:hover {
    background: var(--primary);
    color: white;
}

.subcat-btn.active {
    background: var(--primary);
    color: white;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.catalog-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: 0.3s;
    border-bottom: 4px solid var(--accent);
    position: relative;
}

.catalog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.catalog-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: contain;
    background: #f5f5f5;
    padding: 10px;
}

.catalog-card h3 {
    font-size: 18px;
    padding: 10px 20px 5px;
    color: var(--secondary);
    min-height: 50px;
}

.catalog-card .product-size {
    font-size: 14px;
    color: var(--gray);
    padding: 0 20px;
    margin-top: -5px;
}

.catalog-card .price {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    padding: 5px 20px;
}

.catalog-card .category-tag {
    display: inline-block;
    margin: 5px 20px 15px;
    padding: 4px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    background: var(--accent);
    color: white;
}

.no-products {
    text-align: center;
    font-size: 20px;
    color: #666;
    padding: 40px;
    grid-column: 1 / -1;
}

/* ===== ABOUT ===== */
.about-page {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.about-page h1 {
    font-size: 40px;
    color: var(--secondary);
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 50px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 28px;
    color: var(--secondary);
    margin-bottom: 20px;
}

.about-text p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.about-values {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.value-card {
    background: white;
    padding: 30px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    border-bottom: 4px solid var(--primary);
    transition: 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 15px;
}

.value-card h3 {
    font-size: 20px;
    color: var(--secondary);
    margin-bottom: 8px;
}

.value-card p {
    font-size: 14px;
    color: var(--gray);
}

/* ===== CONTACTS ===== */
.contacts-page {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

.contacts-page h1 {
    font-size: 40px;
    color: var(--secondary);
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.contact-card {
    background: white;
    padding: 25px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--accent);
}

.contact-card h3 {
    color: var(--secondary);
    margin-bottom: 10px;
    font-size: 18px;
}

.contact-card p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.6;
}

.contact-form {
    background: white;
    padding: 30px;
    border-radius: var(--radius);
    margin-top: 30px;
    box-shadow: var(--shadow);
}

.contact-form h2 {
    text-align: center;
    color: var(--secondary);
    margin-bottom: 20px;
    font-size: 28px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 2px solid var(--gray-light);
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.contact-form .main-btn {
    width: 100%;
    margin-top: 10px;
}

/* ===== FOOTER ===== */
footer {
    background: var(--secondary);
    color: white;
    padding: 40px 50px 30px;
    margin-top: 60px;
}

.footer-top {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-header h2 {
    font-size: 38px;
    font-weight: 700;
    color: white;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    transition: 0.3s;
}

.social-link:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.social-link img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.footer-line {
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.15);
    margin: 20px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left {
    text-align: left;
}

.footer-logo-title {
    font-size: 28px;
    font-weight: 900;
    color: white;
    letter-spacing: 2px;
}

.footer-logo-sub {
    font-size: 20px;
    font-weight: 900;
    color: var(--accent);
    letter-spacing: 4px;
    text-transform: uppercase;
}

.footer-copy {
    font-size: 20px;
    opacity: 0.5;
    margin-top: 6px;
}

.footer-center {
    text-align: center;
}

.footer-address {
    font-size: 20px;
    opacity: 0.7;
    line-height: 1.6;
    margin-bottom: 5px;
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-phone {
    color: white;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    transition: 0.3s;
}

.footer-phone:hover {
    color: var(--accent);
}

.footer-email {
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: 0.3s;
    margin-top: 2px;
}

.footer-email:hover {
    color: var(--accent);
}

.footer-right {
    text-align: right;
    width: 120px;
}

/* ===== CATALOG BADGE ===== */
.order-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #FF5722;
    color: white;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 10;
}

.subcategory-badge {
    grid-column: 1 / -1;
    background: #FFF3E0;
    color: #E65100;
    padding: 12px 20px;
    border-radius: var(--radius);
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    border: 2px solid #FF9800;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.badge-social {
    display: flex;
    gap: 10px;
    align-items: center;
}

.badge-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0,0,0,0.05);
    transition: 0.3s;
}

.badge-social-link:hover {
    background: rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

.badge-social-link img {
    width: 20px;
    height: 20px;
}

/* ===== SIZE BUTTON ===== */
.size-btn {
    display: block;
    width: 100%;
    padding: 8px 16px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
    font-family: 'Montserrat', sans-serif;
}

.size-btn:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

/* ===== MODAL ===== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-overlay.active {
    display: flex;
}

.modal-panel {
    background: white;
    border-radius: var(--radius);
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: modalSlide 0.3s ease;
}

@keyframes modalSlide {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: var(--secondary);
    color: white;
}

.modal-header h2 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.modal-close {
    background: transparent;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    padding: 0 5px;
    transition: 0.3s;
}

.modal-close:hover {
    color: var(--accent);
    transform: rotate(90deg);
}

.modal-body {
    padding: 20px 25px;
    max-height: 60vh;
    overflow-y: auto;
}

.size-table {
    width: 100%;
    border-collapse: collapse;
}

.size-table thead {
    background: var(--secondary);
    color: white;
}

.size-table th {
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
}

.size-table td {
    padding: 10px 16px;
    border-bottom: 1px solid #f0f0f0;
}

.size-table tbody tr:hover {
    background: #f5f7fa;
}

.size-table tbody tr:last-child td {
    border-bottom: none;
}

/* ===== PDF ===== */
.order-catalog-page {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
}

.order-catalog-page h1 {
    font-size: 36px;
    color: var(--secondary);
    text-align: center;
    margin-bottom: 5px;
}

.order-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 16px;
    margin-bottom: 25px;
}

.pdf-download {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.pdf-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--secondary);
    color: white;
    padding: 14px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: 0.3s;
    font-family: 'Montserrat', sans-serif;
}

.pdf-btn:hover {
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 43, 92, 0.3);
}

.pdf-viewer {
    background: #f5f5f5;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.pdf-viewer embed {
    display: block;
    border: none;
}

/* ===== FAQ ===== */
.faq-section {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

.faq-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--secondary);
}

.faq-item {
    background: white;
    padding: 20px 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 15px;
    border-left: 4px solid var(--accent);
}

.faq-item h3 {
    font-size: 18px;
    color: var(--secondary);
    margin-bottom: 8px;
}

.faq-item p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.6;
}

/* ======================================== */
/* ===== АДАПТИВ ===== */
/* ======================================== */

@media (max-width: 1024px) {
    .products-grid,
    .services-grid,
    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-values,
    .contacts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 20px 10px;
    }
    
    .header-top {
        flex-direction: column;
        gap: 10px;
        border-bottom: none;
        padding-bottom: 5px;
    }
    
    .logo-title {
        font-size: 42px;
    }
    
    .logo-sub {
        font-size: 13px;
        letter-spacing: 4px;
    }
    
    .header-right {
        position: static;
        width: 100%;
        justify-content: flex-end;
    }
    
    .main-nav {
        display: none;
    }
    
    .menu_small_icon {
        display: flex;
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 1000;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        margin: 30px auto;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .main-btn,
    .hero-buttons .secondary-btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .products-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .product-card {
        padding: 20px 15px;
    }
    
    .product-icon {
        font-size: 32px;
    }
    
    .product-card h3 {
        font-size: 18px;
    }
    
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .catalog-grid {
        grid-template-columns: 1fr;
    }
    
    .catalog-categories {
        gap: 10px;
    }
    
    .cat-btn {
        padding: 8px 18px;
        font-size: 14px;
    }
    
    .subcat-btn {
        padding: 6px 14px;
        font-size: 12px;
    }
    
    .about-content {
        flex-direction: column;
        text-align: center;
    }
    
    .about-values {
        grid-template-columns: 1fr 1fr;
    }
    
    .contacts-grid {
        grid-template-columns: 1fr;
    }
    
    .about-page h1,
    .contacts-page h1,
    .catalog-page h1 {
        font-size: 30px;
    }
    
    .faq-section h2 {
        font-size: 28px;
    }
    
    .faq-item {
        padding: 15px 18px;
    }
    
    .faq-item h3 {
        font-size: 16px;
    }
    
    .faq-item p {
        font-size: 14px;
    }
    
    footer {
        padding: 30px 20px 20px;
    }
    
    .footer-header {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .footer-header h2 {
        font-size: 26px;
        text-align: center;
    }
    
    .footer-social {
        gap: 10px;
    }
    
    .social-link {
        width: 60px;
        height: 60px;
    }
    
    .social-link img {
        width: 30px;
        height: 30px;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }
    
    .footer-left {
        text-align: center;
    }
    
    .footer-center {
        text-align: center;
    }
    
    .footer-right {
        display: none;
    }
    
    .footer-logo-title {
        font-size: 24px;
    }
    
    .footer-logo-sub {
        font-size: 16px;
    }
    
    .footer-copy {
        font-size: 16px;
    }
    
    .footer-address {
        font-size: 16px;
    }
    
    .footer-phone {
        font-size: 18px;
    }
    
    .footer-email {
        font-size: 16px;
    }
    
    .modal-panel {
        max-width: 100%;
        width: 95%;
        margin: 20px;
    }
    
    .modal-header h2 {
        font-size: 17px;
    }
    
    .size-table th,
    .size-table td {
        padding: 8px 12px;
        font-size: 14px;
    }
    
    .size-btn {
        font-size: 13px;
        padding: 6px 12px;
    }
    
    .subcategory-badge {
        font-size: 15px;
        padding: 10px 16px;
        gap: 12px;
    }
    
    .pdf-btn {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .pdf-viewer embed {
        height: 500px !important;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 22px;
    }
    
    .main-btn,
    .secondary-btn {
        padding: 14px 25px;
        font-size: 15px;
    }
    
    .products-grid,
    .services-grid,
    .about-values {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .logo-title {
        font-size: 32px;
    }
    
    .logo-sub {
        font-size: 10px;
        letter-spacing: 2px;
    }
    
    .footer-header h2 {
        font-size: 20px;
    }
    
    .footer-logo-title {
        font-size: 20px;
    }
    
    .footer-logo-sub {
        font-size: 14px;
    }
    
    .footer-copy {
        font-size: 14px;
    }
    
    .footer-address {
        font-size: 13px;
    }
    
    .footer-phone {
        font-size: 16px;
    }
    
    .footer-email {
        font-size: 14px;
    }
    
    .social-link {
        width: 50px;
        height: 50px;
    }
    
    .social-link img {
        width: 24px;
        height: 24px;
    }
    
    .cat-btn {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .subcat-btn {
        font-size: 11px;
        padding: 5px 10px;
    }
    
    .size-btn {
        font-size: 13px;
        padding: 8px 12px;
    }
    
    .catalog-card img {
        max-height: 160px;
    }
    
    .pdf-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .pdf-viewer embed {
        height: 350px !important;
    }
    
    .modal-header {
        padding: 15px 18px;
    }
    
    .modal-header h2 {
        font-size: 15px;
    }
    
    .modal-body {
        padding: 15px 18px;
    }
    
    .size-table th,
    .size-table td {
        padding: 6px 10px;
        font-size: 13px;
    }
}

/* ===== HERO FEATURES (ПОД H1) ===== */
.hero-features {
    font-size: 20px;
    font-weight: 500;
    color: var(--secondary);
    margin: 15px 0 25px;
    line-height: 1.6;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .hero-features {
        font-size: 16px;
        margin: 10px 0 20px;
    }
}

@media (max-width: 480px) {
    .hero-features {
        font-size: 14px;
    }
}


/* ======================================== */
/* ===== SEO ТЕКСТ ===== */
/* ======================================== */
.seo-text-section {
    max-width: 1100px;
    margin: 40px auto;
    padding: 40px 50px;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.seo-text-section h2 {
    font-size: 32px;
    color: var(--secondary);
    margin-bottom: 20px;
    text-align: center;
}

.seo-text-section p {
    font-size: 18px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: justify;
}

.seo-text-section p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .seo-text-section {
        padding: 25px 20px;
        margin: 30px 15px;
    }
    .seo-text-section h2 {
        font-size: 24px;
    }
    .seo-text-section p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .seo-text-section {
        padding: 18px 15px;
    }
    .seo-text-section h2 {
        font-size: 20px;
    }
    .seo-text-section p {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .seo-text-section {
        padding: 20px;
        margin: 30px 15px;
    }
    .seo-text-section h2 {
        font-size: 22px;
    }
    .seo-text-section p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .seo-text-section {
        padding: 15px;
    }
    .seo-text-section h2 {
        font-size: 18px;
    }
}