:root {
    --primary: #39FF14;
    --secondary: #00FF00;
    --text: #ffffff;
    --background: #000000;
    --accent: #39FF14;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: #000000;
}

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

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #000000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    z-index: 1000;
    border-bottom: 1px solid var(--primary);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    fill: var(--primary);
}

.logo img {
    max-height: 50px;
    width: auto;
    object-fit: contain;
}

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

nav a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: color 0.3s;
}

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

/* Hero Section */
#hero {
    padding: 10rem 1rem 6rem;
    background: linear-gradient(135deg, #000000, #111111);
    position: relative;
    overflow: hidden;
    color: var(--text);
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-!5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='rgba(255,255,255,0.05)' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.6;
}

#hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 2rem;
}

#hero p {
    font-size: 1.5rem;
    margin-bottom: 3rem;
}

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

.benefit-card {
    background: #111111;
    border: 1px solid var(--primary);
    color: var(--text);
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.2);
    padding: 2.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.benefit-card .icon {
    width: 64px;
    height: 64px;
}

.benefit-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: 0 0 25px rgba(57, 255, 20, 0.4);
}

.icon {
    stroke: var(--primary);
    stroke-width: 2;
    fill: none;
    margin-bottom: 1rem;
}

.benefit-card h3,
.benefit-card p {
    color: #ffffff;
}

/* Achievements Section */
.achievement-card {
    padding: 2rem;
    background: #111111;
    color: var(--text);
    border: 1px solid var(--primary);
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.2);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 8px;
}

.achievement-card h3,
.achievement-card p {
    color: #ffffff !important;
    font-weight: 500;
}

.achievement-card h3 {
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.achievement-card p {
    line-height: 1.6;
    margin-top: 1rem;
    font-size: 1.1rem;
}

.achievement-card:hover {
    box-shadow: 0 0 25px rgba(57, 255, 20, 0.4);
}

/* Testimonials Section */
.testimonials-grid,
.testimonial-card {
    display: none;
}

/* Enhanced CTA Button */
.cta-button {
    position: relative;
    overflow: hidden;
    background: var(--primary);
    border: none;
    padding: 1.2rem 2.5rem;
    font-size: 1.25rem;
    letter-spacing: 0.5px;
    font-weight: 700;
    text-transform: uppercase;
    color: #000000;
    border-radius: 50px;
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.4);
    animation: pulse 2s infinite;
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

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

.cta-button:hover::before {
    left: 100%;
}

/* Final CTA Section */
#final-cta {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    text-align: center;
    padding: 4rem 1rem;
}

#final-cta .cta-button {
    background: #ff0000;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
}

#final-cta .cta-button:hover {
    background: #dd0000;
}

/* Enhanced Section Styling */
section {
    position: relative;
    padding: 6rem 1rem;
    background: #000000;
    color: var(--text);
}

section:nth-child(even) {
    background: #111111;
}

/* Enhanced Typography */
h1, h2, h3 {
    font-weight: 800;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 2.75rem;
    margin-bottom: 3rem;
}

.highlight-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin: 2rem 0 1rem;
}

.pain-points {
    list-style: none;
    margin: 2rem 0;
    font-size: 1.2rem;
}

.pain-points li {
    margin: 1rem 0;
    padding: 1rem;
    background: rgba(57, 255, 20, 0.1);
    border: 1px solid var(--primary);
    border-radius: 8px;
}

.solution-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    margin: 2rem 0;
}

.hero-cta {
    text-align: center;
}

.urgency-text {
    color: #ff4444;
    font-weight: 600;
    margin-top: 1rem;
    animation: blink 2s infinite;
}

.evolution-story {
    background: rgba(57, 255, 20, 0.05);
    border: 1px solid var(--primary);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.1);
}

.evolution-story p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(57, 255, 20, 0.2);
    margin: 1rem 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* Footer */
footer {
    background: #111111;
    color: white;
    padding: 5rem 1rem;
    border-top: 1px solid var(--primary);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.footer-grid h3 {
    margin-bottom: 1rem;
}

.footer-grid a {
    display: block;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.2s;
}

.footer-grid a:hover {
    color: var(--primary);
}

/* Responsive navigation */
@media (max-width: 768px) {
    nav ul {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--background);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        z-index: 1000;
        border-bottom: 1px solid var(--primary);
    }

    nav ul.show {
        display: flex;
    }

    nav ul li {
        width: 100%;
        text-align: center;
        padding: 1rem 0;
    }

    .menu-toggle {
        display: block;
    }

    #hero {
        padding: 8rem 1rem 4rem;
    }

    #hero h1 {
        font-size: 2rem;
    }

    #hero p {
        font-size: 1.2rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        display: block;
    }

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

    .video-container {
        margin: 0.5rem 0;
    }

    .container {
        padding: 0 0.5rem;
    }

    section {
        padding: 4rem 0.5rem;
    }

    .achievement-card {
        padding: 1.5rem;
        margin: 0.5rem 0;
    }
}

@media (min-width: 769px) {
    .menu-toggle {
        display: none;
    }

    nav ul {
        display: flex !important;
    }
}

/* Social icons enhancement */
.social-icon {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-icon[href*="instagram"]:before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zm0-2.163c-3.259 0-3.667.014-4.947.072-4.358.2-6.78 2.618-6.98 6.98-.059 1.281-.073 1.689-.073 4.948 0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98 1.281.058 1.689.072 4.948.072 3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98-1.281-.059-1.69-.073-4.949-.073zm0 5.838c-3.403 0-6.162 2.759-6.162 6.162s2.759 6.163 6.162 6.163 6.162-2.759 6.162-6.163c0-3.403-2.759-6.162-6.162-6.162zm0 10.162c-2.209 0-4-1.79-4-4 0-2.209 1.791-4 4-4s4 1.791 4 4c0 2.21-1.791 4-4 4zm6.406-11.845c-.796 0-1.441.645-1.441 1.44s.645 1.44 1.441 1.44c.795 0 1.439-.645 1.439-1.44s-.644-1.44-1.439-1.44z'/%3E%3C/svg%3E");
}

/* Animation for sections */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

/* Swiper customization */
.swiper {
    padding: 2rem 0;
}

.swiper-slide {
    opacity: 0.5;
    transition: opacity 0.3s;
}

.swiper-slide-active {
    opacity: 1;
}

.menu-toggle svg {
    stroke: var(--primary);
}