:root {
    --accent: #ff0044;
    --accent-hover: #e6003c;
    --bg-dark: #0a1628;
    --bg-darker: #060e1a;
    --bg-card: #0f1f38;
    --text-light: #ffffff;
    --text-muted: #97a9bc;
    --border-color: rgba(255, 255, 255, 0.14);
    --shadow: 0 4px 24px rgba(0,0,0,0.3);
    --shadow-lg: 0 8px 48px rgba(0,0,0,0.4);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: all .3s cubic-bezier(.4,0,.2,1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    overflow-x: hidden;
}

/* ===== CONTAINER ===== */
.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 16px;
}

@media (min-width: 576px) {
    .container { max-width: 540px; }
}
@media (min-width: 768px) {
    .container { max-width: 720px; }
}
@media (min-width: 992px) {
    .container { max-width: 960px; }
}
@media (min-width: 1200px) {
    .container { max-width: 1140px; }
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.95);
}

.header.scrolled {
    background: rgba(10, 22, 40, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 10px 0;
    box-shadow: var(--shadow);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-light);
}

.logo img {
    height: 52px;
    transition: var(--transition);
}

.header.scrolled .logo img {
    height: 44px;
    filter: brightness(0) invert(1);
}

.header.scrolled .nav-links a {
    color: rgba(255,255,255,0.75);
}

.header.scrolled .nav-links a:hover,
.header.scrolled .nav-links a.active {
    color: #fff;
    background: rgba(255,255,255,0.08);
}

.header.scrolled .header-phone {
    color: #fff;
    border-color: rgba(255,255,255,0.15);
}

.header.scrolled .header-phone:hover {
    border-color: var(--accent);
    background: rgba(255,0,68,0.1);
    color: #fff;
}

.header.scrolled .nav-toggle span {
    background: #fff;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
    padding: 12px 20px;
    border-radius: 50px;
    transition: var(--transition);
    text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent);
    background: rgba(255,0,68,0.08);
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    padding: 8px 18px;
    border: 1px solid #ddd;
    border-radius: 50px;
    transition: var(--transition);
}

.header-phone:hover {
    border-color: var(--accent);
    background: rgba(255,0,68,0.08);
    color: var(--accent);
}

.header-phone svg {
    width: 18px;
    height: 18px;
    color: var(--accent);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #333;
    margin: 5px 0;
    transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-bottom: 60px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    margin-top: 70px;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,22,40,0.92) 0%, rgba(10,22,40,0.7) 50%, rgba(10,22,40,0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 650px;
    padding-top: 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,0,68,0.15);
    border: 1px solid rgba(255,0,68,0.3);
    color: var(--accent);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: clamp(28px, 5vw, 60px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero h1 span {
    color: var(--accent);
}

.hero p {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary-custom:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255,0,68,0.4);
    color: #fff;
}

.btn-outline-custom {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.2);
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-outline-custom:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.08);
    color: #fff;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

.hero-scroll::after {
    content: '';
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--text-muted), transparent);
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== COUNTERS ===== */
.counters {
    position: relative;
    padding: 80px 0;
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.counters-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.counter-item {
    text-align: center;
    padding: 32px 16px;
    position: relative;
}

.counter-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: var(--border-color);
}

.counter-number {
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
}

.counter-number span {
    color: var(--accent);
}

.counter-label {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== SECTIONS ===== */
.section {
    padding: 100px 0;
}

.section-dark {
    background: var(--bg-dark);
}

.section-darker {
    background: var(--bg-darker);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header .section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

.section-header p {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== PRODUCT CARDS ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.product-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,0,68,0.3);
    box-shadow: var(--shadow-lg);
}

.product-card-carousel {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.product-card-carousel .carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease;
}

.product-card-carousel .carousel-slide {
    min-width: 100%;
    height: 100%;
    cursor: zoom-in;
}

.product-card-carousel .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.product-card:hover .carousel-slide img {
    transform: scale(1.03);
    transition: transform 0.5s ease;
}

.product-card-carousel::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, var(--bg-card), transparent);
    pointer-events: none;
    z-index: 1;
}

.carousel-btn {
    position: absolute;
    bottom: 12px;
    z-index: 2;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.carousel-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.carousel-btn-prev {
    left: 12px;
}

.carousel-btn-next {
    right: 12px;
}

.carousel-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    gap: 6px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.carousel-dot.active {
    background: var(--accent);
    width: 20px;
    border-radius: 4px;
}

.product-card-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 3;
    background: var(--accent);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-card-body {
    padding: 28px 32px 32px;
}

.product-card-body h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.product-card-body p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.product-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.product-card-link:hover {
    gap: 12px;
    color: #fff;
}

/* ===== ABOUT / FULL-WIDTH SECTION ===== */
.full-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.full-section-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.full-section-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.full-section-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,22,40,0.95) 0%, rgba(10,22,40,0.8) 100%);
}

.full-section-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.full-section-content .text-block h2 {
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 800;
    margin-bottom: 20px;
}

.full-section-content .text-block h2 span {
    color: var(--accent);
}

.full-section-content .text-block p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.full-section-content .text-block .btn-primary-custom {
    margin-top: 16px;
}

.full-section-content .image-block {
    position: relative;
}

.full-section-content .image-block img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    width: 100%;
}

/* ===== COOPERATION ===== */
.cooperation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.cooperation-content .text-block h2 {
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 800;
    margin-bottom: 20px;
}

.cooperation-content .text-block h2 span {
    color: var(--accent);
}

.cooperation-content .text-block p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.cooperation-content .image-block img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    width: 100%;
}

/* ===== CONTACT FORM ===== */
.contact-section {
    padding: 100px 0;
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-info {
    will-change: transform;
}

.contact-info h2 {
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 800;
    margin-bottom: 16px;
}

.contact-info h2 span {
    color: var(--accent);
}

.contact-info > p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-detail-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255,0,68,0.1);
    border: 1px solid rgba(255,0,68,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-icon svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
}

.contact-detail-text {
    font-size: 14px;
    color: var(--text-muted);
}

.contact-detail-text strong {
    display: block;
    color: #fff;
    font-weight: 600;
    margin-bottom: 2px;
}

.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 40px;
}

.contact-form h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input:not([type="checkbox"]),
.form-group textarea {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    color: #fff;
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
    outline: none;
}

.form-group input:not([type="checkbox"])::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.25);
}

.form-group input:not([type="checkbox"]):focus,
.form-group textarea:focus {
    border-color: var(--accent);
    background: rgba(255,0,68,0.04);
    box-shadow: 0 0 0 3px rgba(255,0,68,0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    width: 100%;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    padding: 16px;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
}

.form-submit:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 8px 30px rgba(255,0,68,0.3);
}

.form-checkbox-group {
    margin-bottom: 24px;
}

.form-checkbox-group .form-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 400;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 0;
    text-transform: none;
    letter-spacing: normal;
}

.form-checkbox-group .form-checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.form-checkbox-group .form-checkbox-custom {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    background: rgba(255,255,255,0.04);
    position: relative;
    transition: var(--transition);
    margin-top: 1px;
}

.form-checkbox-group .form-checkbox-label input[type="checkbox"]:checked + .form-checkbox-custom {
    background: var(--accent);
    border-color: var(--accent);
}

.form-checkbox-group .form-checkbox-label input[type="checkbox"]:checked + .form-checkbox-custom::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.form-checkbox-group .form-checkbox-label input[type="checkbox"]:focus + .form-checkbox-custom {
    box-shadow: 0 0 0 3px rgba(255,0,68,0.15);
}

.form-checkbox-link {
    color: var(--accent);
    text-decoration: none;
}

.form-checkbox-link:hover {
    text-decoration: underline;
}

.form-success {
    display: none;
    text-align: center;
    padding: 40px;
}

.form-success.show {
    display: block;
}

.form-success svg {
    width: 56px;
    height: 56px;
    color: #22c55e;
    margin-bottom: 16px;
}

.form-success h4 {
    font-size: 20px;
    margin-bottom: 8px;
}

.form-success p {
    color: var(--text-muted);
    font-size: 14px;
}

/* ===== FOOTER ===== */
.footer {
    padding: 60px 0 0;
    background: var(--bg-darker);
    border-top: 2px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 2px solid var(--border-color);
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-col p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

.footer-col a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    padding: 4px 0;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    font-size: 13px;
    color: var(--text-muted);
}

/* ===== LIGHTBOX ===== */
.lightbox-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: rgba(0,0,0,0.92);
    backdrop-filter: blur(12px);
    align-items: center;
    justify-content: center;
    padding: 40px;
    cursor: zoom-out;
}

.lightbox-overlay.active {
    display: flex;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    cursor: default;
    animation: lightboxFadeIn 0.3s ease;
}

@keyframes lightboxFadeIn {
    from { opacity: 0; transform: scale(0.92); }
    to { opacity: 1; transform: scale(1); }
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lightbox-close:hover {
    background: var(--accent);
    border-color: var(--accent);
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 4px 20px rgba(255,0,68,0.4);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

/* ===== FADE-IN ANIMATION ===== */
.fade-in {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ===== MODAL ===== */
.modal-overlay {
    display: flex;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    padding: 24px;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.modal-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    max-width: 700px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 40px;
    position: relative;
    transform: scale(0.9);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.modal-overlay.active .modal-box {
    transform: scale(1);
    opacity: 1;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255,255,255,0.08);
    border: none;
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--accent);
}

.modal-box h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    padding-right: 40px;
}

.modal-box p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 12px;
}

.modal-box img {
    width: 100%;
    border-radius: var(--radius-sm);
    margin: 16px 0;
}

/* ===== MOBILE NAV ===== */
.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1100;
    background: rgba(10,22,40,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
}

.mobile-nav a:hover {
    color: var(--accent);
}

.mobile-nav-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
}

.modal-box-heading {
    margin-top: 28px;
}

/* ===== UTILITY CLASSES ===== */
.link-muted {
    color: var(--text-muted);
    display: block;
    text-align: left;
    margin-top: 12px;
}

.honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    overflow: hidden;
}

.back-to-top {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
}

.product-card-body .link-group {
    margin-top: 16px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    .full-section-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .cooperation-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .header-phone {
        display: none;
    }
    .nav-toggle {
        display: block;
    }
    .logo img {
        height: 44px;
    }
    .hero-scroll {
        display: none;
    }
    .header.scrolled .logo img {
	height: 36px;
}
    .counters-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px 0;
    }
    .counter-item:not(:last-child)::after {
        display: none;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .hero-buttons a {
        text-align: center;
        justify-content: center;
    }
    .contact-form {
        padding: 28px;
    }
    .section {
        padding: 60px 0;
    }
    .full-section {
        padding: 60px 0;
    }
    .product-card-carousel {
        height: 220px;
    }
    .lightbox-overlay {
        padding: 16px;
    }
    .modal-overlay {
        padding: 12px;
    }
    .modal-box {
        padding: 24px;
    }
    .fade-in,
    .fade-in-left,
    .fade-in-right {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

@media (max-width: 480px) {
    .counter-number {
        font-size: 32px;
    }
    .product-card-carousel {
        height: 180px;
    }
    .hero {
        min-height: 90vh;
    }
    .hero {
	padding-bottom: 40px;
    }
    .hero-badge {
        margin-top: 20px;
    }
    .hero-scroll {
        display: none;
    }
    .modal-box {
        padding: 20px;
    }
    .fade-in,
    .fade-in-left,
    .fade-in-right {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ===== POLICY PAGE ===== */
.policy-page { padding: 120px 0 60px; }
.policy-page h1 { font-size: 2.2rem; margin-bottom: 32px; }
.policy-page h1 span { color: var(--accent); }
.policy-content { max-width: 800px; }
.policy-content h2 { font-size: 1.3rem; margin-top: 32px; margin-bottom: 12px; color: var(--text-light); }
.policy-content p { color: var(--text-muted); margin-bottom: 12px; line-height: 1.7; }
.policy-content ul { color: var(--text-muted); margin: 8px 0 16px 20px; }
.policy-content li { margin-bottom: 4px; }
.policy-back { display: inline-flex; align-items: center; gap: 8px; margin-top: 40px; color: var(--text-light); text-decoration: none; font-weight: 500; transition: var(--transition); }
.policy-back:hover { opacity: 0.8; }

@media (max-width: 768px) {
    .policy-page { padding: 100px 0 40px; }
    .policy-page h1 { font-size: 1.6rem; margin-bottom: 24px; }
    .policy-content h2 { font-size: 1.1rem; margin-top: 24px; }
}
@media (max-width: 480px) {
    .policy-page { padding: 90px 0 32px; }
    .policy-page h1 { font-size: 1.4rem; }
}
