:root {
    --primary-color: #28a745;
    /* Clean green from screenshot */
    --primary-hover: #218838;
    --text-dark: #222222;
    --text-gray: #666666;
    --bg-light: #f9f9f9;
    --bg-dark: #111111;
    --container-width: 1200px;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    overflow-x: hidden;
    width: 100%;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 16px;
    background-color: #fff;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1 {
    font-size: 4.5rem;
    font-weight: 700;
    color: white;
    line-height: 1.1;
    margin-bottom: 25px;
}

h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
}

p {
    margin-bottom: 20px;
    color: var(--text-gray);
}

/* Buttons */
.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 54px;
    padding: 0 35px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    min-width: 220px;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: white;
    margin-left: 20px;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* Header */
.header {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 30px 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    /* Ensure logo and text are aligned */
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: 1px;
}

.logo-image {
    height: 40px;
    width: auto;
}

.nav {
    display: flex;
    gap: 35px;
}

.nav a {
    color: white;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.nav a:hover {
    opacity: 1;
    color: var(--primary-color);
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

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

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

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

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

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    gap: 30px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px 0;
    transition: color 0.3s ease;
}

.mobile-menu a:hover {
    color: var(--primary-color);
}

.hero {
    position: relative;
    height: 95vh;
    min-height: 700px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding-top: 80px;
    overflow: hidden;
}

/* ФОН + затемнение + отражение */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url("./images/bg1.webp");

    background-size: cover;
    background-position: center;

    transform: scaleX(-1);
    z-index: 0;
}

/* Контент поверх фона */
.hero>* {
    position: relative;
    z-index: 1;
}

.hero-content {
    color: white;
    max-width: 650px;
}

.hero-sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
    margin-bottom: 60px;
    font-weight: 300;
}

.green-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--primary-color);
    color: white;
    padding: 15px 0;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Products */
.products-section {
    padding: 100px 0;
    background: #fff;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.products-header p {
    width: calc((100% - 60px) / 3);
    text-align: left;
    margin: 0;
    font-size: 0.9rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 8px;
    /* Slightly less rounded */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.card-image {
    height: 220px;
    background-size: cover;
    background-position: center;
}

.card-body {
    padding: 30px;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.sub-list {
    list-style: none;
}

.sub-list li {
    padding: 0;
    border-top: 1px solid #f0f0f0;
}

.sub-list li:last-child {
    border-bottom: 1px solid #f0f0f0;
}

.sub-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    width: 100%;
    text-decoration: none;
    font-size: 0.95rem;
    color: #444;
    font-weight: 500;
    transition: color 0.2s;
}

.sub-list li a:hover {
    color: var(--primary-color);
}

.sub-list li a::after {
    content: '→';
    color: var(--primary-color);
    font-size: 1.2rem;
    display: block;
}


/* Guarantee */
/* Guarantee */
.guarantee-section {
    padding: 100px 0;
    background: #fdfdfd;
}

.guarantee-grid-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 0 80px;
    align-items: stretch;
}

.guarantee-info-column {
    grid-column: 1;
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.guarantee-info-column .btn {
    min-width: 110px;
    padding: 0 20px;
}


.guarantee-steps-column {
    grid-column: 2;
    grid-row: 1 / 3;
}



.guarantee-header-text {
    text-align: left;
}

.guarantee-header-text h2 {
    margin-bottom: 25px;
    font-size: 2.5rem;
}

.guarantee-header-text p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}

.how-it-works-title {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.how-it-works-title span {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--bg-dark);
}

.how-it-works-title::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #ddd;
}

.steps-grid-2x2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.step-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    text-align: center;
}

.step-number {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #333;
    display: flex;
    justify-content: center;
}

.step-desc {
    font-size: 0.95rem;
    font-weight: 600;
    color: #444;
    line-height: 1.4;
}

@media (max-width: 992px) {
    .guarantee-grid-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .guarantee-info-column,
    .guarantee-steps-column {
        grid-column: 1;
        grid-row: auto;
    }

    .guarantee-header-text {
        text-align: left;
    }

    .guarantee-info-column {
        align-items: flex-start;
        gap: 30px;
    }

    .how-it-works-title {
        justify-content: flex-start;
    }

    .guarantee-btn-row {
        text-align: left;
        margin-top: 20px;
    }
}

@media (max-width: 600px) {
    .steps-grid-2x2 {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .step-card {
        padding: 20px 10px;
    }
}



/* About & Stats */
.about-section {
    background: #1a1a1a;
    color: white;
    padding: 120px 0;
}

.about-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 100px;
    gap: 80px;
}

.about-image {
    flex: 1.2;
}

.about-image img {
    width: 100%;
    border-radius: 6px;
    filter: saturate(0.8);
}

.about-content {
    flex: 1;
}

.about-content h2 {
    color: white;
    margin-bottom: 30px;
}

.about-content p {
    color: #999;
    line-height: 1.8;
    margin-bottom: 15px;
}

.stats-grid {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #333;
    padding-top: 50px;
}

.stat-box {
    margin-right: 50px;
}

.stat-num {
    font-size: 4rem;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 10px;
    display: block;
    color: white;
}

.stat-desc {
    color: #666;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* Partner Graph */
.partner-section {
    background: #111;
    color: white;
    padding: 80px 0;
    overflow: hidden;
    position: relative;
    scroll-margin-top: 20vh;
}

.graph-svg {
    width: 100%;
    height: 300px;
    margin-top: 50px;
}

.graph-path {
    stroke: var(--primary-color);
    stroke-width: 3;
    fill: none;
    stroke-linecap: round;
}

/* Partner Section Layout */
.partner-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.partner-text {
    flex: 1;
    position: relative;
    z-index: 2;
}

.partner-text h2 {
    color: white;
}

.partner-text p {
    color: #999;
}

.partner-list {
    list-style: none;
    margin-bottom: 25px;
}

.partner-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: #ccc;
}

.partner-list li::before {
    content: "•";
    color: var(--primary-color);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -4px;
    line-height: 1;
}

.partner-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.partner-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@media(max-width: 900px) {
    .partner-layout {
        flex-direction: column;
    }

    .partner-image {
        margin-top: 30px;
        justify-content: center;
    }
}


/* FAQ */
.faq-section {
    padding: 100px 0;
    background: #fafafa;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.accordion-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.acc-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.acc-head {
    width: 100%;
    padding: 25px 30px;
    text-align: left;
    background: none;
    border: none;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.acc-head i {
    font-size: 0.8rem;
    color: var(--primary-color);
    transition: transform 0.3s;
}

.acc-item.active .acc-head i {
    transform: rotate(180deg);
}

.acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
    padding: 0 30px;
}

.acc-body p {
    padding-bottom: 25px;
    color: #777;
    font-size: 0.95rem;
}

.acc-item.active .acc-body {
    max-height: 200px;
}


/* Contact Section */
.contact-section {
    padding: 30px 0 80px;
    background: #f9f9f9;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #222;
}

.contact-details p {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 20px;
    color: #555;
    font-size: 1rem;
}

.contact-details i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 24px;
}

.contact-details a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-details a:hover {
    color: var(--primary-color);
}

.contact-address-block {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.contact-address-block p {
    margin-bottom: 10px;
}

.working-hours {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-left: 39px;
    /* 24px icon + 15px gap */
    font-size: 0.9rem;
    color: #777;
}

.working-hours span:first-child {
    font-weight: 600;
    color: #444;
    margin-bottom: 2px;
}

.contact-map {
    height: 100%;
    min-height: 350px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #222;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}

.contact-form button {
    width: 100%;
    margin-bottom: 15px;
}

.form-notice {
    font-size: 0.75rem;
    color: #777;
    line-height: 1.4;
    margin: 0;
}

.form-notice a {
    color: var(--primary-color);
    text-decoration: none;
}

.form-notice a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    padding: 80px 0 0;
    background: #1a1a1a;
    border-top: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 60px;
    padding-bottom: 0;
    border-bottom: none;
}

/* Footer Brand */
.f-brand {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.f-logo-full {
    max-width: 200px;
    height: auto;
    object-fit: contain;
}

/* Footer Categories */
.f-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.f-category-col {
    display: flex;
    flex-direction: column;
}

.f-cat-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.f-cat-list li {
    padding: 0;
}

.f-cat-list li a {
    display: block;
    padding: 8px 0;
    color: #bbb;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s;
    position: relative;
}

.f-cat-list li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.f-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    letter-spacing: 0.5px;
}

.f-contact p {
    margin-bottom: 18px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    color: #bbb;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.f-contact p:hover {
    color: #fff;
}

.f-contact i {
    color: var(--primary-color);
    margin-top: 4px;
    font-size: 1rem;
    width: 20px;
    flex-shrink: 0;
}

.f-socials {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.f-socials a {
    color: #333;
    font-size: 1.2rem;
    transition: color 0.2s;
}

.f-socials a:hover {
    color: var(--primary-color);
}

.map-embed {
    width: 100%;
    height: 100%;
    min-height: 300px;
    background: #eee;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.map-embed:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.map-embed img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.f-form input,
.f-form textarea {
    width: 100%;
    padding: 12px 15px;
    background: #fff;
    border: 1px solid #e0e0e0;
    margin-bottom: 12px;
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.2s;
}

.f-form input:focus,
.f-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}

.f-btn {
    margin-top: 20px;
    display: inline-block;
    text-decoration: none;
    white-space: nowrap;
    text-align: center;
}

.f-btm {
    background: transparent;
    color: #999;
    padding: 30px 0;
    font-size: 0.85rem;
    border-top: 1px solid #333;
    margin-top: 60px;
}

.f-btm .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.f-btm span:first-child {
    color: #bbb;
}

.f-btm a {
    color: #bbb;
    text-decoration: none;
    margin: 0 12px;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.f-btm a:first-of-type {
    margin-left: 0;
}

.f-btm a:hover {
    color: var(--primary-color);
}

.f-btm span:last-child {
    display: flex;
    align-items: center;
}

.f-btm a+a {
    border-left: 1px solid #555;
    padding-left: 16px;
    margin-left: 4px;
}


/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.modal.visible {
    display: flex;
    animation: fadeIn 0.3s;
}

.modal-box {
    background: white;
    width: 500px;
    padding: 40px;
    border-radius: 8px;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #999;
}

.modal-large {
    width: 800px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Consent checkbox */
.consent {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.8rem;
    color: #777;
    margin: 10px 0 5px;
}

.consent input[type="checkbox"] {
    margin-top: 2px;
}

.consent a {
    color: var(--primary-color);
    text-decoration: none;
}

.consent a:hover {
    text-decoration: underline;
}

/* Legal text under buttons */
.form-legal-text {
    margin-top: 15px;
    font-size: 0.75rem;
    color: #999;
    text-align: center;
    line-height: 1.6;
    padding: 0 10px;
}

.form-legal-text a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
}

.form-legal-text a:hover {
    text-decoration: underline;
    color: var(--primary-hover);
}

/* Cookie banner */
.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9998;
    background: #000;
    color: #f5f5f5;
    padding: 15px 0;
    display: none;
}

.cookie-banner__inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-size: 0.85rem;
}

.cookie-banner__inner p {
    margin: 0;
    color: #ddd;
}

.cookie-banner__inner a {
    color: var(--primary-color);
    text-decoration: none;
}

.cookie-banner__inner a:hover {
    text-decoration: underline;
}

.cookie-banner__actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-banner__actions .btn {
    height: 40px;
    padding: 0 20px;
}

.cookie-banner__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #f5f5f5 !important;
    font-size: 0.8rem;
}

.cookie-banner__link:hover {
    background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 768px) {
    .cookie-banner__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-banner__actions {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
}

/* Re-use table styles */
.price-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.price-table th,
.price-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.price-table th {
    font-weight: 600;
    color: #333;
}

/* Responsive */

/* Tablet (768px - 900px) */
@media(max-width: 900px) and (min-width: 769px) {
    .container {
        padding: 0 40px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .guarantee-layout {
        gap: 40px;
    }

    .guarantee-visual {
        gap: 12px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1.5fr 1fr;
        gap: 40px;
    }

    .f-categories {
        gap: 25px;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Mobile and Small Tablet (max-width: 768px) */
@media(max-width: 768px) {
    body {
        overflow-x: hidden;
        max-width: 100vw;
        width: 100%;
    }

    img,
    svg,
    video,
    canvas,
    audio,
    iframe,
    embed,
    object {
        max-width: 100%;
        height: auto;
    }

    .container {
        padding: 0 20px;
        max-width: 100%;
    }

    /* Header */
    .header {
        width: 100%;
        max-width: 100vw;
        padding: 20px 0;
    }

    .header-container {
        max-width: 100%;
        padding: 0 20px;
    }

    .logo {
        font-size: 1.2rem;
    }

    .logo-image {
        height: 32px;
    }

    .nav {
        display: none !important;
    }

    .burger-menu {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    /* Hero Section */

    .hero-sub {
        font-size: 1rem;
    }

    .hero-content {
        margin: 0 !important;
        position: absolute;
        bottom: -180px;
        left: 0;
        right: 0;
    }

    .green-bar {
        font-size: 0.85rem;
        padding: 12px 0;
    }

    /* Modals */
    .modal-box {
        width: 95%;
        max-width: 95vw;
        padding: 20px;
        max-height: 90vh;
        overflow-y: auto;
    }

    .modal-large {
        width: 95%;
        max-width: 95vw;
    }

    /* Product items in modal - vertical layout */
    .product-item>div[style*="display: flex"] {
        flex-direction: column !important;
        gap: 20px !important;
    }

    .product-item>div>div[style*="flex: 0 0 250px"] {
        flex: 1 1 auto !important;
        width: 100% !important;
    }

    .product-item>div>div[style*="flex: 1"] {
        flex: 1 1 auto !important;
        width: 100% !important;
    }

    .product-item img {
        max-width: 100%;
        height: auto;
    }

    .product-item table {
        font-size: 0.85rem;
    }

    .product-item button {
        width: 100%;
        text-align: center;
    }

    .product-item>div>div>div[style*="text-align: right"] {
        text-align: center !important;
    }

    /* Products */
    .products-section {
        padding: 60px 0;
    }

    .products-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 40px;
    }

    .products-header p {
        max-width: 100%;
        width: 100%;
    }

    .products-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .products-grid>* {
        min-width: 0;
    }

    /* Guarantee Section */
    .guarantee-section {
        padding: 40px 0 60px 0;
    }

    .guarantee-layout {
        flex-direction: column;
        gap: 30px;
    }

    .guarantee-visual {
        display: none;
        /* Скрываем плашки на мобильных */
    }

    .guarantee-features {
        margin: 20px 0;
    }

    /* About Section */
    .about-section {
        padding: 60px 0;
    }

    .about-layout {
        flex-direction: column-reverse;
        gap: 30px;
    }

    .about-visual {
        width: 100%;
        height: 300px;
    }

    .about-text {
        width: 100%;
    }

    /* Partners */
    .partner-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px;
    }

    /* Contact */
    .contact-container {
        flex-direction: column;
        gap: 40px;
    }

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

    .about-layout {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 60px;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        padding-top: 40px;
    }

    .stat-num {
        font-size: 3rem;
    }

    /* Partnership */
    .partner-section {
        padding: 60px 0;
    }

    .partner-layout {
        flex-direction: column;
        gap: 30px;
    }

    /* FAQ */
    .faq-section {
        padding: 60px 0 30px 0;
    }

    .faq-header {
        margin-bottom: 30px;
    }

    .acc-head {
        padding: 20px;
        font-size: 0.95rem;
    }

    .acc-body {
        padding: 0 20px;
    }

    /* Contact Section */
    .contact-section {
        padding: 40px 0 60px 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-map {
        height: 250px;
    }

    /* Footer */
    .footer {
        padding: 60px 0 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
        padding-bottom: 40px;
    }

    .f-categories {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .f-btm {
        padding: 24px 0;
    }

    .f-btm .container {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .f-btm a+a {
        border-left: none;
        padding-left: 0;
        margin-left: 0;
    }

    /* Header */
    .header .nav {
        display: none;
    }

    /* Buttons */
    .btn {
        width: 100%;
        margin-left: 0 !important;
        margin-bottom: 15px;
    }

    .hero-buttons,
    .partner-buttons {
        display: flex;
        flex-direction: column;
        width: 100%;
    }
}

/* Small Mobile (max-width: 480px) */
@media(max-width: 480px) {
    .container {
        padding: 0 16px;
    }



    h2 {
        font-size: 1.75rem;
    }

    .hero-content {
        margin: -60px 0 0 0 !important;
    }

    .products-section,
    .about-section,
    .partner-section,
    .faq-section {
        padding: 40px 0;
    }

    .guarantee-section {
        padding: 30px 0 40px 0;
    }

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

    .stat-num {
        font-size: 2.5rem;
    }

    .footer {
        padding: 40px 0 0;
    }

    .footer-grid {
        gap: 30px;
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .f-categories {
        gap: 25px;
    }

    .f-btm {
        padding: 20px 0;
    }
}


/* === SPLASH SCREEN === */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #141414;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 1s ease, visibility 1s;
}

.splash-screen.fade-out {
    opacity: 0;
    visibility: hidden;
}

.splash-content {
    text-align: center;
}

.splash-logo {
    width: 140px;
    height: auto;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
    animation: splashLogoAnim 0.8s ease forwards;
}

.splash-text {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 8px;
    font-family: 'Inter', sans-serif;
}

.splash-text span {
    opacity: 0;
    display: inline-block;
    transform: translateY(10px);
    animation: splashLetterAnim 0.5s ease forwards;
}

@keyframes splashLogoAnim {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes splashLetterAnim {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Prevent scroll during splash */
body.no-scroll {
    overflow: hidden;
}

/* === FORCE HERO CONTENT LEFT (override) === */
.hero {
    align-items: flex-start !important;
}

/* если внутри hero есть container/inner — именно он обычно центрирует */
.hero .container,
.hero .hero-inner,
.hero .wrap {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    /* padding-left: 280px !important; REMOVED */
    /* подгони позже */
}

/* сам контент */
.hero-content {
    text-align: left !important;
    margin: -110px 0 0 0 !important;
    align-self: flex-start !important;

    /* на случай, если его центрят абсолютом */
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    transform: none !important;
}

/* === Product Page Styles === */
.header-static {
    position: relative !important;
    background: var(--bg-dark) !important;
    padding: 15px 0 !important;
}

.page-hero {
    background: #f4f4f4;
    padding: 30px 0;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.page-hero h1 {
    color: var(--text-dark);
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.link-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #666;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 45px;
    transition: color 0.3s;
}

.link-back:hover {
    color: var(--primary-color);
}

.subcategory-description {
    font-size: 1.15rem;
    color: #555;
    max-width: 800px;
    line-height: 1.6;
}


/* Product Detail Item */
.product-detail-item {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 60px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.product-info-header h3 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.product-main-row {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    align-items: stretch;
}

.product-img-side {
    flex: 0 0 400px;
}

.product-img-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.product-desc-side {
    flex: 1;
}

.product-desc-side p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

.product-specs-table {
    margin-bottom: 40px;
}

.product-action-footer {
    display: flex;
    justify-content: flex-start;
}

/* Price Table on Product Page */
.product-table-row {
    border-top: 1px solid #eee;
    padding-top: 30px;
}

.table-responsive {
    overflow-x: auto;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.price-table th {
    text-align: left;
    background: #f8f9fa;
    padding: 15px 20px;
    font-weight: 600;
    color: #444;
    border-bottom: 2px solid #eee;
}

.price-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
}

/* Global price table styling */
.price-table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

.price-table th {
    background-color: #f1f8f1;
    /* Light green tint */
    color: var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
}

.price-table tr:hover {
    background-color: #f1f1f1;
    transition: background 0.2s;
}

.price-table td strong {
    color: var(--primary-color);
}

/* Ensure the price column is always perfectly aligned to the right, but skip category headers (colspan) */
.price-table th:last-child,
.price-table td:last-child:not([colspan]) {
    text-align: right !important;
    padding-right: 20px !important;
}

/* Features Grid */
.features-bar-section {
    padding: 60px 0;
    background: #fff;
    border-top: 1px solid #eee;
}

.features-grid-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-card-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: #fdfdfd;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
}

.f-icon-box {
    font-size: 2rem;
    color: var(--primary-color);
    width: 60px;
    height: 60px;
    background: rgba(40, 167, 69, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.f-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-color);
}

/* See Also Section */
.see-also-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.see-also-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.see-also-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.see-also-card {
    background: #fff;
    padding: 20px 30px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.see-also-card:hover {
    background: var(--primary-color);
    color: #fff;
}

/* Mobile Responsive Product Page */
@media (max-width: 992px) {
    .product-top-row {
        flex-direction: column;
    }

    .product-img-box {
        flex: 0 0 auto;
        width: 100%;
    }

    .features-grid-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2.2rem;
    }

    .product-detail-item {
        padding: 20px;
    }

    .product-main-row {
        flex-direction: column;
        gap: 20px;
    }

    .product-img-side {
        flex: 0 0 auto;
        width: 100%;
    }

    .see-also-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .features-grid-cards {
        grid-template-columns: 1fr;
    }

    .feature-card-item {
        padding: 15px;
    }
}