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

:root {
    --primary: #221D07;
    --secondary: #837257;
    --accent: #ABA48F;
    --light: #F5F5F5;
    --dark: #0A0A0A;
}

body {
    font-family: 'Exo 2', sans-serif;
    background: var(--primary);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100%
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
}

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

/* Header */
header {
    background: rgba(34, 29, 7, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--secondary);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo img {
    height: 50px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-nav a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
}

.main-nav a:hover {
    color: var(--light);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s;
}

.main-nav a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--accent);
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: #1a1a1a;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(34, 29, 7, 0.9) 0%, rgba(131, 114, 87, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 7rem);
    margin-bottom: 1rem;
    color: var(--accent);
    letter-spacing: 0.1em;
}

.glitch {
    position: relative;
    animation: glitch 3s infinite;
}

@keyframes glitch {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    margin-bottom: 3rem;
    color: var(--light);
}

.hero-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.hero-feature .icon {
    width: 60px;
    height: 60px;
    stroke: var(--accent);
}

.hero-feature span {
    font-size: 1rem;
    color: var(--accent);
}

.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--accent);
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid var(--accent);
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cta-button:hover {
    background: transparent;
    color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(171, 164, 143, 0.3);
}

/* Stats Section */
.stats-section {
    padding: 5rem 0;
    background: var(--dark);
    border-top: 2px solid var(--secondary);
    border-bottom: 2px solid var(--secondary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--accent);
    font-family: 'Orbitron', sans-serif;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--secondary);
    margin-top: 0.5rem;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--accent);
    margin-bottom: 1rem;
}

.section-line {
    width: 100px;
    height: 3px;
    background: var(--secondary);
    margin: 0 auto;
}

.section-header p {
    color: var(--secondary);
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, #1a1508 100%);
}

.about-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--light);
    font-size: 1.1rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.about-feature-item .icon {
    width: 24px;
    height: 24px;
    stroke: var(--accent);
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    background: #555;
    border: 3px solid var(--secondary);
}

/* Products Section */
.products-section {
    padding: 6rem 0;
    background: var(--primary);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background: rgba(131, 114, 87, 0.1);
    border: 2px solid var(--secondary);
    transition: all 0.3s;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 15px 40px rgba(171, 164, 143, 0.2);
}

.product-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #666;
    transition: transform 0.3s;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-content {
    padding: 2rem;
}

.product-content h3 {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.product-content p {
    color: var(--light);
    margin-bottom: 1.5rem;
}

.product-features {
    list-style: none;
    margin-bottom: 2rem;
}

.product-features li {
    padding: 0.5rem 0;
    color: var(--secondary);
    position: relative;
    padding-left: 1.5rem;
}

.product-features li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent);
}

.product-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: transparent;
    color: var(--accent);
    text-decoration: none;
    border: 2px solid var(--accent);
    transition: all 0.3s;
    font-weight: 600;
}

.product-button:hover {
    background: var(--accent);
    color: var(--primary);
}

/* Systems Section */
.systems-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1508 0%, var(--primary) 100%);
}

.systems-grid {
    display: grid;
    gap: 3rem;
}

.system-item {
    background: rgba(131, 114, 87, 0.05);
    padding: 3rem;
    border-left: 4px solid var(--secondary);
    transition: all 0.3s;
}

.system-item:hover {
    border-left-color: var(--accent);
    background: rgba(131, 114, 87, 0.1);
}

.system-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
}

.system-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--accent);
}

.system-item h3 {
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.system-item p {
    color: var(--light);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.system-specs {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.system-specs span {
    padding: 0.5rem 1rem;
    background: rgba(171, 164, 143, 0.2);
    color: var(--accent);
    font-size: 0.9rem;
    border: 1px solid var(--secondary);
}

/* Advantages Section */
.advantages-section {
    padding: 6rem 0;
    background: var(--primary);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.advantage-card {
    background: rgba(131, 114, 87, 0.1);
    padding: 2.5rem;
    border: 2px solid var(--secondary);
    transition: all 0.3s;
    text-align: center;
}

.advantage-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

.advantage-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
}

.advantage-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--accent);
}

.advantage-card h3 {
    font-size: 1.3rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.advantage-card p {
    color: var(--light);
    line-height: 1.7;
}

/* Reviews Section */
.reviews-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1508 0%, var(--primary) 100%);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background: rgba(131, 114, 87, 0.1);
    padding: 2.5rem;
    border-left: 4px solid var(--secondary);
    transition: all 0.3s;
}

.review-card:hover {
    border-left-color: var(--accent);
    transform: translateX(10px);
}

.review-stars {
    color: var(--accent);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.review-text {
    color: var(--light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-weight: 700;
    font-size: 1.2rem;
}

.author-name {
    color: var(--accent);
    font-weight: 600;
}

.author-title {
    color: var(--secondary);
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: var(--dark);
    text-align: center;
    border-top: 2px solid var(--secondary);
    border-bottom: 2px solid var(--secondary);
}

.cta-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--accent);
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    color: var(--light);
    margin-bottom: 2rem;
}

/* Footer */
footer {
    background: var(--primary);
    padding: 4rem 0 2rem;
    border-top: 2px solid var(--secondary);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 50px;
    margin-bottom: 1rem;
}

.footer-col h4 {
    color: var(--accent);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-col p {
    color: var(--secondary);
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col a {
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-external {
    margin-top: 1.5rem;
}

.footer-external a {
    display: block;
    margin-top: 0.5rem;
    color: var(--accent);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem;
    background: rgba(131, 114, 87, 0.1);
    border: 2px solid var(--secondary);
    color: var(--light);
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent);
}

.newsletter-form button {
    padding: 0.8rem 1.5rem;
    background: var(--accent);
    color: var(--primary);
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.newsletter-form button:hover {
    background: var(--secondary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--secondary);
    color: var(--secondary);
}

/* Mobile Styles */
@media (max-width: 768px) {
  h2, h3{
    font-size: 1rem!important;
  }
  h1 {
    font-size: 1rem!important;
  }
  
    .main-nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: rgba(34, 29, 7, 0.98);
        padding: 2rem;
        transition: left 0.3s;
        border-bottom: 2px solid var(--secondary);
    }

    .main-nav.active {
        left: 0;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 1.5rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

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

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

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

    .about-content {
        flex-direction: column;
    }

    .hero-features {
        gap: 1.5rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

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