/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Arial', 'Roboto', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0a0a0a;
    overflow-x: hidden;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95), rgba(10, 10, 10, 0.95));
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #00ffff;
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.nav-brand .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #00ffff;
    text-decoration: none;
    text-shadow: 0 0 10px #00ffff;
    letter-spacing: 2px;
}

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

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
}

.nav-menu a:hover {
    color: #00ffff;
    text-shadow: 0 0 5px #00ffff;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00ffff, #8a2be2);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #00ffff;
    transition: all 0.3s ease;
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #1a1a2e, #16213e, #0f0f23);
    background-size: 400% 400%;
    animation: cyberpunkGradient 10s ease infinite;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(138, 43, 226, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(57, 255, 20, 0.1) 0%, transparent 50%);
    animation: neonPulse 6s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 20px #00ffff, 0 0 40px #00ffff, 0 0 60px #00ffff;
    animation: textGlow 3s ease-in-out infinite alternate;
}

.hero-title .highlight {
    color: #00ffff;
    text-shadow: 0 0 30px #00ffff;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #cccccc;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-btn {
    display: inline-block;
    background: linear-gradient(45deg, #00ffff, #8a2be2);
    color: #000000;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: all 0.5s ease;
}

.hero-btn:hover::before {
    left: 100%;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.5);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #39ff14;
    text-shadow: 0 0 10px #39ff14;
}

.stat-label {
    font-size: 0.9rem;
    color: #cccccc;
}

/* Sections */
section {
    padding: 5rem 0;
    position: relative;
}

section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff;
    position: relative;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #00ffff, #8a2be2);
    transform: translateX(-50%);
}

/* About Section */
.about {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(0, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(138, 43, 226, 0.05) 0%, transparent 50%);
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #8a2be2;
    text-shadow: 0 0 5px #8a2be2;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #cccccc;
}

.about-features {
    list-style: none;
    margin-top: 2rem;
}

.about-features li {
    padding: 0.5rem 0;
    color: #39ff14;
    font-weight: 500;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 255, 255, 0.5);
}

/* Products Section */
.products {
    background: #0a0a0a;
}

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

.product-card {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: all 0.6s ease;
}

.product-card:hover::before {
    transform: translateX(100%);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.3);
    border-color: #00ffff;
}

.product-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: grayscale(100%) brightness(2);
}

.product-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #00ffff;
    text-shadow: 0 0 5px #00ffff;
}

.product-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* Prices Section */
.prices {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    position: relative;
}

.prices::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 30% 40%, rgba(138, 43, 226, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(57, 255, 20, 0.1) 0%, transparent 50%);
}

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

.price-card {
    background: rgba(26, 26, 46, 0.8);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(10px);
}

.price-card.featured {
    border-color: #00ffff;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
    transform: scale(1.05);
}

.price-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #00ffff, #8a2be2);
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #00ffff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.price {
    margin-bottom: 2rem;
    position: relative;
}

.price-old {
    display: block;
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: bold;
    color: #39ff14;
    text-shadow: 0 0 10px #39ff14;
}

.price-currency {
    font-size: 1.5rem;
    color: #39ff14;
}

.price-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.price-features li {
    padding: 0.5rem 0;
    color: #cccccc;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.price-features li:last-child {
    border-bottom: none;
}

.price-btn {
    width: 100%;
    background: linear-gradient(45deg, #8a2be2, #00ffff);
    color: #000;
    border: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.price-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(138, 43, 226, 0.4);
}

.price-guarantee {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(57, 255, 20, 0.1);
    border-radius: 15px;
    border: 1px solid #39ff14;
}

.price-guarantee h4 {
    color: #39ff14;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 5px #39ff14;
}

/* Gallery Section */
.gallery {
    background: #0a0a0a;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
    filter: grayscale(50%) brightness(0.8);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: grayscale(0%) brightness(1);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.3), rgba(138, 43, 226, 0.3));
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 1;
}

/* Feedback Section */
.feedback {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    position: relative;
}

.feedback::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(57, 255, 20, 0.05) 0%, transparent 50%);
}

.feedback-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.feedback-card {
    background: rgba(26, 26, 46, 0.6);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(0, 255, 255, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.feedback-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 255, 255, 0.2);
    border-color: #00ffff;
}

.feedback-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1rem;
    border: 2px solid #00ffff;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.feedback-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feedback-rating {
    color: #39ff14;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 5px #39ff14;
}

.feedback-content p {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.feedback-author strong {
    color: #00ffff;
    display: block;
    margin-bottom: 0.5rem;
}

.feedback-author span {
    color: #999;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq {
    background: #0a0a0a;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(0, 255, 255, 0.1);
}

.faq-question h3 {
    color: #00ffff;
    font-size: 1.1rem;
    margin: 0;
    flex: 1;
}

.faq-toggle {
    color: #00ffff;
    font-size: 1.5rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
    color: #cccccc;
    line-height: 1.7;
    margin: 0;
}

/* Contact Form */
.contact {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    position: relative;
    padding: 30px 0;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(138, 43, 226, 0.1) 0%, transparent 50%);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 10px;
    background: rgba(26, 26, 46, 0.8);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00ffff;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
    transform: scale(1.2);
    accent-color: #00ffff;
}

.checkbox-group label {
    color: #cccccc;
    line-height: 1.5;
    font-size: 0.9rem;
}

.checkbox-group a {
    color: #00ffff;
    text-decoration: none;
}

.checkbox-group a:hover {
    text-shadow: 0 0 5px #00ffff;
}

.contact-btn {
    width: 100%;
    background: linear-gradient(45deg, #00ffff, #8a2be2);
    color: #000;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.2rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 2px;
    margin-top: 1rem;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 255, 255, 0.4);
}

/* Disclaimer */
.disclaimer {
    background: #16213e;
    padding: 3rem 0;
}

.disclaimer h3 {
    color: #8a2be2;
    margin-bottom: 1rem;
    text-align: center;
    text-shadow: 0 0 5px #8a2be2;
}

.disclaimer p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    text-align: justify;
}

/* Footer */
.footer {
    background: #0a0a0a;
    border-top: 1px solid #00ffff;
    padding: 3rem 0 1rem 0;
}

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

.footer-section h4 {
    color: #00ffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 5px #00ffff;
}

.footer-section p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

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

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: #00ffff;
    text-shadow: 0 0 5px #00ffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 255, 255, 0.2);
    color: #999;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 1rem 0;
    z-index: 2000;
    transform: translateY(100%);
    transition: all 0.3s ease;
    border-top: 1px solid #00ffff;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 2rem;
}

.cookie-content p {
    color: #cccccc;
    margin: 0;
    flex: 1;
}

.cookie-content a {
    color: #00ffff;
    text-decoration: none;
}

.cookie-btn {
    background: linear-gradient(45deg, #00ffff, #8a2be2);
    color: #000;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-btn:hover {
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.3);
}

/* Success Popup */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 3000;
}

.popup.show {
    display: flex;
}

.popup-content {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    border: 2px solid #00ffff;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
    max-width: 400px;
    margin: 0 20px;
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    color: #00ffff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.popup-close:hover {
    text-shadow: 0 0 10px #00ffff;
}

.popup-content h3 {
    color: #00ffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 5px #00ffff;
}

.popup-content p {
    color: #cccccc;
    line-height: 1.6;
}

/* Legal Pages */
.legal-page {
    padding: 8rem 0 5rem 0;
    min-height: calc(100vh - 200px);
}

.legal-page h1 {
    color: #00ffff;
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px #00ffff;
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.update-date {
    text-align: center;
    color: #999;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-section {
    margin-bottom: 3rem;
    background: rgba(26, 26, 46, 0.3);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #00ffff;
}

.legal-section h2 {
    color: #8a2be2;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 5px #8a2be2;
    font-size: 1.8rem;
    text-align: left;
}

.legal-section h2::after {
    display: none;
}

.legal-section h3 {
    color: #00ffff;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
    font-size: 1.3rem;
}

.legal-section p {
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 1rem;
    text-align: justify;
}

.legal-section ul,
.legal-section ol {
    color: #cccccc;
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.legal-section a {
    color: #00ffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.legal-section a:hover {
    text-shadow: 0 0 5px #00ffff;
}

/* Animations */
@keyframes cyberpunkGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes neonPulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

@keyframes textGlow {
    0% { text-shadow: 0 0 20px #00ffff, 0 0 40px #00ffff; }
    100% { text-shadow: 0 0 30px #00ffff, 0 0 60px #00ffff, 0 0 80px #00ffff; }
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .prices-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .price-card.featured {
        transform: none;
    }
    
    .feedback-grid {
        grid-template-columns: 1fr;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(26, 26, 46, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    section h2 {
        font-size: 2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .popup-content {
        padding: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .legal-section {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav {
        padding: 1rem;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .hero-btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    .product-card {
        padding: 1.5rem;
    }
    
    .price-card {
        padding: 2rem 1.5rem;
    }
    
    .feedback-card {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 0 15px;
    }
    
    .legal-section {
        padding: 1rem;
    }
    
    .legal-section ul,
    .legal-section ol {
        padding-left: 1rem;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero-title {
        text-shadow: none;
    }
    
    section h2 {
        text-shadow: none;
    }
    
    .nav-menu a:hover {
        text-shadow: none;
        background-color: #00ffff;
        color: #000;
    }
}