html { 
    scroll-behavior: smooth; 
}

:root {
    --primary: #2cc718d3;   /* ❗UNCHANGED */
    --dark: #1A1A1A;        /* ❗UNCHANGED */
    --gray: #f8f9fa;        /* ❗UNCHANGED */
    --shadow: 0 18px 45px rgba(0,0,0,0.12);
    --radius: 22px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

body {
    color: var(--dark);
    background: #fff;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 24px;
}

/* ================= HEADER ================= */

.main-header {
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 1000;
    border-bottom: 1px solid #eee;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.header-logo {
    height: 100px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: 0.4px;
}

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

/* ================= HERO ================= */

.hero-section {
    height: 90vh;
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
                url("./photo_2026-01-09_23-05-56.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-content {
    max-width: 800px;
}

.hero-content h1 {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 36px;
    opacity: 0.95;
}

/* ================= BUTTON ================= */

.btn-primary {
    background: var(--primary);
    color: #000;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: 0.6px;
    display: inline-block;
    transition: transform .25s ease, box-shadow .25s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0,0,0,.25);
}

/* ================= SECTIONS ================= */

.section-padding {
    padding: 90px 0;
}

.centered-title {
    text-align: center;
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 45px;
    letter-spacing: -0.5px;
}

.gray-bg {
    background: var(--gray);
    border-radius: 30px;
    padding: 55px;
}

/* ================= ABOUT ================= */

.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.split-grid img {
    width: 100%;
    border-radius: var(--radius);
    border: 8px solid var(--primary);
}

/* ================= PRODUCTS ================= */

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: #fff;
    padding: 28px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: transform .3s ease, box-shadow .3s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 70px rgba(0,0,0,.15);
}

.product-card img {
    width: 100%;
    border-radius: 18px;
    margin-bottom: 18px;
}

.product-card h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.product-card p {
    font-size: 15px;
    opacity: 0.8;
}

.badge {
    background: var(--primary);
    display: inline-block;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: 0.6px;
}

/* ================= CONTACT ================= */

.social-icons {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 30px;
}

.s-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    transition: transform .25s ease, box-shadow .25s ease;
}

.s-icon:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(0,0,0,.35);
}

.phone { background: #28a745; }
.telegram { background: #0088cc; }
.instagram { background: #e1306c; }
.facebook { background: #1877f2; }

/* ================= FOOTER ================= */

.footer {
    background: var(--dark);
    color: #fff;
    text-align: center;
    padding: 45px 20px;
    font-size: 14px;
    letter-spacing: 0.4px;
    opacity: 0.9;
}

/* ================= MODAL ================= */

.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.75);
}

.modal-content {
    background: #fff;
    max-width: 520px;
    margin: 8% auto;
    padding: 35px;
    border-radius: 22px;
    text-align: center;
}

.close-modal {
    position: absolute;
    right: 22px;
    top: 14px;
    font-size: 28px;
    cursor: pointer;
}

.modal-img {
    width: 100%;
    margin-bottom: 20px;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

    .nav-links {
        display: none;
    }

    .hero-content h1 {
        font-size: 44px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .section-padding {
        padding: 60px 0;
    }

    .split-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .gray-bg {
        padding: 35px;
    }

    .s-icon {
        width: 56px;
        height: 56px;
        font-size: 22px;
    }
}
