:root {
    /* Color Palette */
    --bg-base: #050508;
    --bg-dim: #0a0a10;
    --text-primary: #f8fafc;
    --text-muted: #94a3b8;
    --accent-primary: #1fb627;
    --accent-secondary: #22c82f;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --neon-green-glow: 0 0 20px rgba(58, 16, 185, 0.4);

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;

    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-base);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

h1,
h2,
h3,
.font-space {
    font-family: 'Space Grotesk', sans-serif;
}

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

ul {
    list-style: none;
}

/* Background Effects */
.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse at center, black 10%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 10%, transparent 80%);
    z-index: -2;
}

.glow-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.4;
    animation: float 10s ease-in-out infinite alternate;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--accent-primary);
    top: -10%;
    left: -10%;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: var(--accent-secondary);
    bottom: -20%;
    right: -10%;
    animation-delay: -5s;
    opacity: 0.2;
}

/* Base Classes */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: var(--space-xl) 0;
    position: relative;
}

.bg-dim {
    background-color: var(--bg-dim);
}

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

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

.flex-col {
    display: flex;
    flex-direction: column;
}

.row-wrap {
    flex-wrap: wrap;
    gap: var(--space-sm);
}

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

.text-muted {
    color: var(--text-muted);
}

.text-green {
    color: var(--accent-primary);
}

.text-white {
    color: #ffffff;
}

.font-bold {
    font-weight: 700;
}

.text-xs {
    font-size: 0.8rem;
}

.text-sm {
    font-size: 0.9rem;
}

.text-lg {
    font-size: 1.125rem;
}

.text-xl {
    font-size: 1.25rem;
}

.text-2xl {
    font-size: 1.5rem;
}

.uppercase {
    text-transform: uppercase;
}

.tracking-wide {
    letter-spacing: 0.05em;
}

.mb-xs {
    margin-bottom: var(--space-xs);
}

.mb-sm {
    margin-bottom: var(--space-sm);
}

.mb-md {
    margin-bottom: var(--space-md);
}

.mb-lg {
    margin-bottom: var(--space-lg);
}

.mt-xs {
    margin-top: var(--space-xs);
}

.mt-sm {
    margin-top: var(--space-sm);
}

.mt-md {
    margin-top: var(--space-md);
}

.mt-lg {
    margin-top: var(--space-lg);
}

.my-md {
    margin: var(--space-md) 0;
}

.px-xl {
    padding-left: var(--space-xl);
    padding-right: var(--space-xl);
}

.py-lg {
    padding-top: var(--space-lg);
    padding-bottom: var(--space-lg);
}

.w-full {
    width: 100%;
}

/* Glassmorphism */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
}

.gradient-border-top {
    border-top: 1px solid rgba(16, 185, 129, 0.2);
}

.gradient-border-both {
    border-top: 1px solid rgba(16, 185, 129, 0.2);
    border-bottom: 1px solid rgba(16, 185, 129, 0.2);
}

/* Gradients */
.text-gradient {
    background: linear-gradient(135deg, var(--text-primary), var(--text-muted));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-green {
    background: linear-gradient(to right, var(--accent-secondary), var(--accent-primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 2.5rem;
    border-radius: var(--radius-sm);
    background: linear-gradient(to right, #059669, #10b981);
    color: white;
    font-weight: 800;
    font-size: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px -10px rgba(16, 185, 129, 0.5);
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px -10px rgba(16, 185, 129, 0.7);
    border-color: rgba(255, 255, 255, 0.4);
}

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

.btn-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
}

/* Hero Section */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 10vh;
}

.brand-tag {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-secondary);
    margin-bottom: var(--space-sm);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(2.7rem, 6vw, 5.5rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: var(--space-md);
    letter-spacing: -2px;
}

.hero-subtitle {
    display: block;
    font-size: clamp(1.2rem, 3vw, 2.5rem);
    margin-top: var(--space-xs);
    font-weight: 800;
}

.hero-desc {
    max-width: 600px;
    margin: 0 auto var(--space-md);
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    color: var(--text-muted);
}

.hero-note {
    margin: var(--space-md) 0 var(--space-lg);
    font-size: 0.9rem;
    opacity: 0.8;
}

.scroll-down {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    transition: color 0.3s;
}

.scroll-down:hover {
    color: var(--text-primary);
}

/* Video Placeholder */
.video-container {
    max-width: 800px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    padding: 0;
    border: 1px solid rgba(16, 185, 129, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 40px rgba(16, 185, 129, 0.1);
}

.video-placeholder {
    aspect-ratio: 16 / 9;
    background: linear-gradient(45deg, #111, #1a1a24);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--text-muted);
}

.play-pulse {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--accent-primary);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: pulse 2s infinite;
    cursor: pointer;
    transition: transform 0.3s;
}

.play-pulse:hover {
    transform: scale(1.1);
}

/* Sections General */
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--space-xs);
    font-weight: 800;
}

.section-desc {
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.img-wrapper {
    position: relative;
    padding-top: 100%;
    /* 1:1 Aspect Ratio */
    overflow: hidden;
    border-radius: var(--radius-md);
}

.img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

/* Audio Previews */
.audio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.audio-card {
    padding: var(--space-md);
    align-items: center;
    gap: var(--space-sm);
    transition: all 0.3s;
}

.audio-card .play-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: var(--accent-primary);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s, background 0.3s;
}

.audio-card:hover .play-btn {
    transform: scale(1.1);
    background: var(--accent-secondary);
}

/* Offer Section */
.offer-container {
    max-width: 600px;
    margin: 0 auto;
    padding: var(--space-lg) var(--space-md);
    position: relative;
    overflow: hidden;
}

.neon-border {
    border: 2px solid rgba(16, 185, 129, 0.3);
    box-shadow: inset 0 0 20px rgba(16, 185, 129, 0.05), 0 0 20px rgba(16, 185, 129, 0.1);
}

.badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent-secondary);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-sm);
}

.progress-container {
    margin: var(--space-md) 0;
}

.progress-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(to right, var(--accent-primary), var(--accent-secondary));
    border-radius: 4px;
    position: relative;
    box-shadow: 0 0 10px var(--accent-primary);
}

.price-box {
    margin: var(--space-md) 0;
}

.price-strikethrough {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.price-current {
    font-size: clamp(3rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1;
}

.product-img {
    width: 200px;
    height: auto;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5));
    transition: transform 0.5s ease;
}

.product-img:hover {
    transform: translateY(-10px) rotate(2deg);
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.benefit-card {
    padding: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 600;
}

.icon-box {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent-secondary);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.icon-box svg {
    width: 24px;
    height: 24px;
}

/* Guarantee */
.shield-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent-primary);
    border: 2px solid rgba(16, 185, 129, 0.3);
}

.shield-icon svg {
    width: 40px;
    height: 40px;
}

/* FAQ */
.faq-container {
    max-width: 800px;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.accordion-item {
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) var(--space-md);
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    text-align: left;
    outline: none;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    padding: 0 var(--space-md);
    color: var(--text-muted);
}

.accordion-item.active .accordion-content {
    max-height: 200px;
    padding-bottom: var(--space-md);
}

.accordion-item.active .chevron {
    transform: rotate(180deg);
}

.chevron {
    transition: transform 0.3s;
}

/* Footer */
.footer {
    background: #000;
}

.border-top-glass {
    border-top: 1px solid var(--glass-border);
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    align-items: center;
}

.contact-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    transition: color 0.3s;
}

.hover-text-white:hover {
    color: white;
}

/* Animations */
@keyframes float {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, -20px);
    }

    100% {
        transform: translate(0, 0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(16, 185, 129, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

.animate-bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(-25%);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }

    50% {
        transform: translateY(0);
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}

.hover-lift:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.hover-border:hover {
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    :root {
        --space-lg: 3rem;
        --space-xl: 4rem;
    }

    .btn-primary {
        width: 100%;
        padding: 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

    .offer-container {
        padding: var(--space-md) var(--space-sm);
    }
}