/* =========================================
   1. GLOBAL & RESET
   ========================================= */
:root {
    /* Colors */
    --color-bg: #050505;
    --color-bg-card: #121212;
    --color-bg-card-hover: #1E1E1E;

    --color-primary: #39FF14;
    /* Neon Green */
    --color-primary-glow: rgba(57, 255, 20, 0.5);

    --color-secondary: #00F3FF;
    /* Cyan */
    --color-secondary-glow: rgba(0, 243, 255, 0.5);

    --color-urgent: #FF2E2E;
    /* Red */
    --color-white: #FFFFFF;
    --color-text-dim: #B0B0B0;

    /* Spacing */
    --container-padding: 2rem;
    --section-gap: 5rem;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--color-bg);
    color: var(--color-white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-gradient {
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-center {
    text-align: center;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Section Common */
.section-padding {
    padding: 4rem 0;
}

@media(min-width: 768px) {
    .section-padding {
        padding: 6rem 0;
    }
}

.section-title {
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--color-primary);
    margin: 1rem auto 0;
    border-radius: 2px;
}

/* =========================================
   2. BUTTONS
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease;
}

@media (max-width: 480px) {
    .btn {
        padding: 1rem 1.5rem;
        /* Reduce side padding */
        font-size: 0.9rem;
        /* Slightly smaller font */
        width: 100%;
        /* Full width on mobile to give max space */
        white-space: normal;
        /* Allow wrapping */
        text-align: center;
        line-height: 1.3;
    }
}

.btn-primary {
    background-color: var(--color-primary);
    color: #000;
    box-shadow: 0 0 20px var(--color-primary-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px var(--color-primary-glow);
    background-color: #fff;
    color: #000;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: #000;
    box-shadow: 0 0 20px var(--color-primary-glow);
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(57, 255, 20, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(57, 255, 20, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(57, 255, 20, 0);
    }
}

.pulse-anim {
    animation: pulse 2s infinite;
}

/* =========================================
   3. HERO SECTION
   ========================================= */
.urgency-banner {
    background-color: var(--color-urgent);
    color: white;
    text-align: center;
    padding: 0.6rem;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero {
    position: relative;
    overflow: hidden;
    padding-top: 3rem;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media(min-width: 992px) {
    .hero .container {
        grid-template-columns: 1.2fr 1fr;
    }
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

@media(min-width: 768px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-dim);
    margin-bottom: 2rem;
    max-width: 500px;
}

.secure-badges {
    margin-top: 1.5rem;
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: var(--color-text-dim);
}

.secure-badges i {
    color: var(--color-primary);
    margin-right: 0.5rem;
}

/* 3D Mockup */
/* Hero Visual Container */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

/* Target the image specifically for zoom */
.hero-product-img {
    transition: transform 0.4s ease;
    /* Smooth zoom */
}

.hero-product-img:hover,
.hero-product-img:active {
    transform: scale(1.05);
    /* Slight zoom on hover or touch */
}


.multimedia-mockup {
    width: 100%;
    max-width: 500px;
    height: 300px;
    background: #000;
    border-radius: 20px;
    border: 4px solid #333;
    position: relative;
    transform: rotateY(-10deg) rotateX(5deg);
    box-shadow:
        -20px 20px 40px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(57, 255, 20, 0.2);
    /* Neon glow behind */
    transition: transform 0.5s ease;
    overflow: hidden;
}

.multimedia-mockup:hover {
    transform: rotateY(0) rotateX(0);
}

.screen-content {
    width: 100%;
    height: 100%;
    position: relative;
    background: #111;
}

.screen-bg,
video.screen-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.video-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.play-icon {
    font-size: 2rem;
    color: var(--color-white);
    filter: drop-shadow(0 0 10px var(--color-primary));
}

.volume-toggle {
    font-size: 1.5rem;
    color: var(--color-white);
    transition: all 0.3s ease;
    z-index: 5;
}

.volume-toggle:hover {
    color: var(--color-primary);
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px var(--color-primary-glow));
}

.track-info {
    flex: 1;
    color: white;
}

.track-name {
    font-weight: 700;
    font-family: var(--font-heading);
    display: block;
    margin-bottom: 5px;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
}

.progress-bar .fill {
    width: 40%;
    height: 100%;
    background: var(--color-primary);
    border-radius: 2px;
}

.price-tag {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--color-primary);
    color: #000;
    padding: 1rem;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    box-shadow: 0 0 20px var(--color-primary-glow);
    z-index: 10;
    transform: rotate(15deg);
}

.price-tag .amount {
    font-size: 2rem;
    line-height: 1;
}

.price-tag .currency {
    font-size: 0.8rem;
}

.price-tag .cents {
    font-size: 1rem;
}

/* =========================================
   4. GENRES SECTION (Swiper)
   ========================================= */
/* =========================================
   4. GENRES SECTION (Swiper)
   ========================================= */
.genres-swiper {
    padding: 2rem 0 4rem !important;
}

/* Linear easing for smooth marquee effect */
.genres-swiper .swiper-wrapper {
    transition-timing-function: linear;
}

.genre-card {
    background: var(--color-bg-card);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s;
    user-select: none;
    border: 1px solid #222;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.genre-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.genre-card:hover img {
    transform: scale(1.1);
}

.genre-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem 1rem 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.genre-title {
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.swiper-slide {
    width: 220px;
    /* Adjusted width */
    height: auto;
}

/* =========================================
   5. FEATURES (Accordion)
   ========================================= */
.accordion-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    background: var(--color-bg-card);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #222;
}

.accordion-header {
    width: 100%;
    padding: 1.5rem;
    background: transparent;
    border: none;
    color: var(--color-white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    transition: background 0.3s;
}

.accordion-header:hover {
    background: #1a1a1a;
}

.accordion-header span i {
    color: var(--color-primary);
    margin-right: 10px;
    width: 20px;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    /* Ease-out */
    padding: 0 1.5rem;
    color: var(--color-text-dim);
}

.accordion-item.active .accordion-content {
    max-height: 200px;
    /* Arbitrary large height */
    padding-bottom: 1.5rem;
}

.accordion-item.active .arrow {
    transform: rotate(180deg);
}

.arrow {
    transition: transform 0.3s;
}

/* =========================================
   6. SUPPORT & TESTIMONIALS
   ========================================= */
.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.support-card {
    background: var(--color-bg-card);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #222;
    transition: transform 0.3s;
}

.support-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
}

.support-icon {
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.testimonials-swiper {
    padding-bottom: 3rem !important;
}

.testimonials-swiper .swiper-wrapper {
    transition-timing-function: linear;
}

.testimonial-card {
    background: var(--color-bg-card);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #222;
}

.user-avatar {
    width: 60px;
    height: 60px;
    background-color: #333;
    background-position: center;
    background-size: cover;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 2px solid var(--color-primary);
    box-shadow: 0 0 10px rgba(57, 255, 20, 0.3);
}

.quote {
    font-style: italic;
    color: #ccc;
    margin-bottom: 1rem;
}

.author {
    font-weight: 700;
    color: var(--color-primary);
}

/* =========================================
   7. COMPATIBILITY (Marquee)
   ========================================= */
.logos-marquee {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.logos-marquee::before,
.logos-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.logos-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--color-bg), transparent);
}

.logos-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--color-bg), transparent);
}

.marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
}

.brand-logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    margin: 0 2rem;
    filter: grayscale(100%) brightness(200%);
    opacity: 0.6;
    transition: all 0.3s ease;
    display: inline-block;
    vertical-align: middle;
}

.brand-logo-img:hover {
    filter: grayscale(0%) brightness(100%);
    opacity: 1;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* =========================================
   8. PRICING
   ========================================= */
.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.pricing-card {
    background: var(--color-bg-card);
    padding: 3rem 2rem;
    border-radius: 20px;
    width: 100%;
    max-width: 380px;
    text-align: center;
    border: 1px solid #333;
    position: relative;
}

.pricing-card.featured {
    border: 2px solid var(--color-primary);
    box-shadow: 0 0 30px rgba(57, 255, 20, 0.1);
    transform: scale(1.05);
    z-index: 2;
}

@media(max-width: 768px) {
    .pricing-card.featured {
        transform: scale(1);
    }
}

.popular-tag {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--color-primary);
    color: #000;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    margin: 1.5rem 0;
    color: var(--color-white);
}

.price .currency {
    font-size: 1.5rem;
    vertical-align: top;
}

.price .period {
    font-size: 1.5rem;
    color: var(--color-text-dim);
}

.features-list {
    margin-bottom: 2rem;
    text-align: left;
    padding-left: 1rem;
}

.features-list li {
    margin-bottom: 1rem;
    color: #ddd;
    display: flex;
    align-items: center;
}

.features-list li i {
    color: var(--color-primary);
    margin-right: 10px;
    min-width: 20px;
}

.features-list li.disabled {
    color: #555;
}

.features-list li.disabled i {
    color: #555;
}

/* =========================================
   9. FOOTER & EXTRAS
   ========================================= */
footer {
    border-top: 1px solid #222;
    padding: 3rem 0;
    color: var(--color-text-dim);
    font-size: 0.9rem;
}

footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

@media(min-width: 768px) {
    footer .container {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    margin-top: 1rem;
}

.whatsapp-btn:hover {
    background: #20BA5A;
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    font-weight: 700;
    transition: transform 0.3s;
}

.instagram-link i {
    font-size: 1.2rem;
    margin-right: 8px;
    background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.instagram-link:hover {
    transform: translateY(-2px);
    color: #fff;
    /* Optional: make text white on hover */
}

/* =========================================
   2.5 AUDIO SAMPLES
   ========================================= */
.audio-card {
    background: var(--color-bg-card);
    border: 1px solid #333;
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.audio-card:hover {
    border-color: var(--color-primary);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.audio-card.playing {
    border-color: var(--color-primary);
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.1);
}

.play-btn {
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px var(--color-primary-glow);
}

.audio-info {
    flex: 1;
}

.audio-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
    color: var(--color-white);
}

.audio-info p {
    font-size: 0.9rem;
    color: var(--color-text-dim);
    margin-bottom: 0.5rem;
}

/* Waveform Timeline */
.audio-timeline {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 40px;
    width: 100%;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.audio-card:hover .audio-timeline,
.audio-card.playing .audio-timeline {
    opacity: 1;
}

.waveform-bar {
    flex: 1;
    background-color: #333;
    border-radius: 2px;
    transition: height 0.2s ease, background-color 0.1s ease;
    min-height: 3px;
}

.waveform-bar.active {
    background-color: var(--color-primary);
    box-shadow: 0 0 5px var(--color-primary-glow);
}