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

:root {
    --bg-dark: #0d0d0d;
    --bg-darker: #0a0a0f;
    --bg-card: rgba(26, 26, 46, 0.85);
    --neon-yellow: #FCEF00;
    --neon-cyan: #05D9E8;
    --neon-pink: #FF2A6D;
    --neon-blue: #005678;
    --text-primary: #e0e0e0;
    --text-muted: #8a8a9a;
    --border-glow: rgba(252, 239, 0, 0.4);
    --border-cyan: rgba(5, 217, 232, 0.5);
}

body {
    font-family: 'Rajdhani', 'Orbitron', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-dark);
    font-size: 16px;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.03) 2px,
        rgba(0, 0, 0, 0.03) 4px
    );
    pointer-events: none;
    z-index: 9999;
}

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

/* Header */
.header {
    background: linear-gradient(180deg, rgba(13,13,13,0.98) 0%, rgba(13,13,13,0.95) 100%);
    border-bottom: 1px solid var(--neon-yellow);
    box-shadow: 0 0 20px rgba(252, 239, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--neon-yellow);
    letter-spacing: 0.15em;
    text-shadow: 0 0 10px rgba(252, 239, 0, 0.5);
}

.logo a {
    color: inherit;
    text-decoration: none;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    transition: color 0.3s, text-shadow 0.3s;
}

.main-nav a:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 8px var(--border-cyan);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--bg-darker) 0%, rgba(0, 86, 120, 0.15) 50%, var(--bg-dark) 100%);
    padding: 4rem 0 3rem;
    text-align: center;
    border-bottom: 1px solid rgba(5, 217, 232, 0.2);
}

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

.hero-badge {
    display: inline-block;
    background: transparent;
    color: var(--neon-cyan);
    border: 1px solid var(--neon-cyan);
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.2em;
    box-shadow: 0 0 15px rgba(5, 217, 232, 0.3);
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--neon-yellow);
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 0 0 30px rgba(252, 239, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

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

.feature-tag {
    background: var(--bg-card);
    border: 1px solid var(--border-cyan);
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    color: var(--neon-cyan);
    letter-spacing: 0.05em;
}

/* Product Section */
.product-section {
    padding: 5rem 0;
    background-color: var(--bg-dark);
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.product-images {
    position: sticky;
    top: 100px;
}

.carousel-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border: 1px solid var(--neon-cyan);
    box-shadow: 0 0 25px rgba(5, 217, 232, 0.2);
}

.carousel-slide {
    display: none;
    width: 100%;
    height: 100%;
    padding: 2rem;
    background: var(--bg-darker);
}

.carousel-slide.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(5, 217, 232, 0.2);
    color: var(--neon-cyan);
    border: 1px solid var(--neon-cyan);
    padding: 15px 20px;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
}

.carousel-btn:hover {
    background: rgba(5, 217, 232, 0.4);
    box-shadow: 0 0 15px var(--border-cyan);
}

.carousel-prev { left: 10px; }
.carousel-next { right: 10px; }

.carousel-dots {
    text-align: center;
    padding: 20px 0;
}

.dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background: var(--text-muted);
    border: 1px solid var(--neon-cyan);
    display: inline-block;
    transition: all 0.3s;
}

.dot.active,
.dot:hover {
    background: var(--neon-cyan);
    box-shadow: 0 0 10px var(--border-cyan);
}

.product-info { padding-left: 1rem; }

.product-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--neon-yellow);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.product-price {
    margin-bottom: 2rem;
    display: flex;
    align-items: baseline;
    gap: 1rem;
    flex-wrap: wrap;
}

.current-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--neon-cyan);
}

.price-note {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.product-description {
    margin-bottom: 2rem;
    color: var(--text-primary);
    line-height: 1.8;
    font-size: 1.05rem;
}

.product-specs { margin-bottom: 2rem; }

.product-specs h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--neon-yellow);
}

.specs-list {
    list-style: none;
    padding: 0;
}

.specs-list li {
    padding: 0.6rem 0;
    color: var(--text-primary);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.specs-list li:last-child { border-bottom: none; }

.btn-primary {
    display: block;
    width: 100%;
    padding: 1.2rem 2rem;
    background: transparent;
    color: var(--neon-yellow);
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    border: 2px solid var(--neon-yellow);
    cursor: pointer;
    margin-bottom: 1.5rem;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: var(--neon-yellow);
    color: var(--bg-dark);
    box-shadow: 0 0 25px rgba(252, 239, 0, 0.5);
}

.product-guarantee {
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid rgba(5, 217, 232, 0.3);
}

.product-guarantee p {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-size: 0.95rem;
}

/* Benefits Section */
.benefits-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(0, 86, 120, 0.08) 100%);
    border-top: 1px solid rgba(5, 217, 232, 0.15);
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--neon-yellow);
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

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

.benefit-card {
    background: var(--bg-card);
    padding: 2rem;
    border: 1px solid rgba(5, 217, 232, 0.25);
    transition: all 0.3s;
}

.benefit-card:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(5, 217, 232, 0.2);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: transparent;
    color: var(--neon-cyan);
    border: 1px solid var(--neon-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--neon-yellow);
}

.benefit-card p {
    color: var(--text-primary);
    line-height: 1.7;
}

/* How It Works */
.how-it-works {
    padding: 5rem 0;
    background-color: var(--bg-dark);
}

.comparison-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

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

.comparison-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--neon-cyan);
}

.comparison-image {
    margin-bottom: 1.5rem;
    border: 1px solid rgba(5, 217, 232, 0.3);
}

.comparison-image img {
    width: 100%;
    max-width: 300px;
    height: auto;
}

.comparison-item p {
    color: var(--text-primary);
    line-height: 1.8;
    font-size: 1.05rem;
}

.comparison-item .btn-primary {
    margin-top: 1.25rem;
}

/* Why Choose */
.why-choose {
    padding: 5rem 0;
    background: var(--bg-darker);
}

.features-list {
    max-width: 900px;
    margin: 3rem auto 0;
}

.feature-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    align-items: start;
}

.feature-number {
    width: 50px;
    height: 50px;
    background: transparent;
    color: var(--neon-yellow);
    border: 2px solid var(--neon-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--neon-yellow);
}

.feature-content p {
    color: var(--text-primary);
    line-height: 1.7;
}

/* Guarantee Section */
.guarantee-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(0, 86, 120, 0.2) 0%, var(--bg-dark) 100%);
    border-top: 1px solid rgba(252, 239, 0, 0.2);
}

.guarantee-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.guarantee-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--neon-yellow);
}

.guarantee-content > p {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.guarantee-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    justify-content: center;
    background: var(--bg-card);
    padding: 1rem;
    border: 1px solid rgba(5, 217, 232, 0.3);
}

.guarantee-icon {
    color: var(--neon-cyan);
    font-weight: bold;
    font-size: 1.2rem;
}

.guarantee-item span:last-child {
    color: var(--text-primary);
    font-size: 0.95rem;
}

/* FAQ */
.faq-section {
    padding: 5rem 0;
    background-color: var(--bg-dark);
}

.faq-list {
    max-width: 900px;
    margin: 3rem auto 0;
}

.faq-item {
    background: var(--bg-card);
    padding: 2rem;
    border: 1px solid rgba(5, 217, 232, 0.2);
    margin-bottom: 1.5rem;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--neon-cyan);
}

.faq-item p {
    color: var(--text-primary);
    line-height: 1.8;
}

/* Contact */
.contact-section {
    padding: 5rem 0;
    background: var(--bg-darker);
    border-top: 1px solid rgba(5, 217, 232, 0.2);
}

.contact-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

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

.contact-item strong {
    display: block;
    font-size: 1rem;
    color: var(--neon-yellow);
    margin-bottom: 0.5rem;
}

.contact-item span,
.contact-item a {
    color: var(--text-primary);
    line-height: 1.8;
}

.contact-item a:hover {
    color: var(--neon-cyan);
}

/* Footer */
.footer {
    background: var(--bg-darker);
    color: var(--text-primary);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--neon-yellow);
    box-shadow: 0 -5px 30px rgba(252, 239, 0, 0.05);
}

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

.footer-section h3 {
    color: var(--neon-yellow);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-family: 'Orbitron', sans-serif;
}

.footer-section p {
    line-height: 1.8;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.footer-links li { margin-bottom: 0; }

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

.footer-links a:hover {
    color: var(--neon-cyan);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--text-muted);
    font-size: 0.9rem;
}

.health-notice {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid rgba(255, 42, 109, 0.2);
}

.health-notice h4 {
    color: var(--neon-pink);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.health-notice p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 0.9rem;
}

/* Legal Pages */
.legal-page {
    padding: 4rem 0;
    min-height: 60vh;
    background-color: var(--bg-dark);
}

.legal-page h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--neon-yellow);
}

.legal-page section { margin-bottom: 3rem; }

.legal-page h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--neon-cyan);
    font-family: 'Orbitron', sans-serif;
}

.legal-page h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    margin-top: 1.5rem;
    color: var(--text-primary);
}

.legal-page p {
    margin-bottom: 1rem;
    color: var(--text-primary);
    line-height: 1.8;
}

.legal-page ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-page ul li {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.legal-page a {
    color: var(--neon-cyan);
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

.withdrawal-form {
    background: var(--bg-card);
    padding: 2rem;
    border: 1px solid rgba(5, 217, 232, 0.2);
    margin: 2rem 0;
}

.withdrawal-form p { margin-bottom: 1rem; }

.footer-legal { margin-bottom: 2rem; }
.footer-legal .legal-info p,
.contact-info-footer p { margin-bottom: 0.5rem; color: var(--text-muted); }

/* Responsive */
@media (max-width: 968px) {
    .product-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .product-images { position: static; }
    .comparison-wrapper { grid-template-columns: 1fr; }
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    .main-nav { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 1.1rem; }
    .section-title { font-size: 1.8rem; }
    .product-title { font-size: 1.6rem; }
    .benefits-grid { grid-template-columns: 1fr; }
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    .contact-info {
        flex-direction: column;
        gap: 2rem;
    }
}
