/* ============================================
   100 CIFRAS SIMPLIFICADAS — SALES PAGE
   Premium Dark Theme inspired by EndoLeve
   ============================================ */

/* RESET & BASE */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --bg-primary: #0a0518;
    --bg-secondary: #110822;
    --bg-card: rgba(20, 10, 45, 0.7);
    --bg-card-border: rgba(255, 153, 0, 0.15);

    --orange-primary: #ff9900;
    --orange-light: #ffb84d;
    --orange-glow: rgba(255, 153, 0, 0.3);

    --teal-primary: #1abc9c;
    --teal-glow: rgba(26, 188, 156, 0.3);

    --pink-primary: #e91e63;
    --pink-glow: rgba(233, 30, 99, 0.3);

    --gold-primary: #f1c40f;
    --gold-glow: rgba(241, 196, 15, 0.3);

    --red-price: #e74c3c;
    --green-check: #2ecc71;
    --green-cta: #1abc9c;

    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.75);
    --text-muted: rgba(255, 255, 255, 0.5);

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --container-max: 900px;
    --section-padding: 80px 20px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   URGENCY BAR
   ============================================ */
.urgency-bar {
    background: linear-gradient(135deg, var(--pink-primary), #c2185b, var(--pink-primary));
    background-size: 200% 200%;
    animation: urgencyGradient 3s ease infinite;
    color: #fff;
    text-align: center;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

@keyframes urgencyGradient {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    background:
        radial-gradient(ellipse at 20% 50%, rgba(255, 153, 0, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(26, 188, 156, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(233, 30, 99, 0.05) 0%, transparent 50%),
        var(--bg-primary);
    padding: 70px 20px 40px;
    text-align: left;
}

.hero-container {
    max-width: 700px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.hero-highlight {
    color: var(--orange-primary);
    display: inline;
}

.hero-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}

.stars {
    color: var(--gold-primary);
    font-size: 18px;
    letter-spacing: 2px;
}

.rating-text {
    color: var(--text-muted);
    font-size: 14px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-checklist {
    list-style: none;
    margin-bottom: 36px;
}

.hero-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 16px;
    margin-bottom: 4px;
    font-size: 16px;
    color: var(--text-secondary);
    border-radius: 8px;
    transition: background 0.3s ease;
}

.hero-checklist li:hover {
    background: rgba(255, 153, 0, 0.05);
}

.check {
    flex-shrink: 0;
    font-size: 16px;
}

/* CTA Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 800;
    text-decoration: none;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    text-align: center;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.cta-primary {
    background: linear-gradient(135deg, var(--orange-primary), #e68a00);
    color: #fff;
    box-shadow:
        0 4px 15px var(--orange-glow),
        0 0 40px rgba(255, 153, 0, 0.15);
    animation: ctaPulse 2s ease-in-out infinite;
}

.cta-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow:
        0 8px 30px var(--orange-glow),
        0 0 60px rgba(255, 153, 0, 0.25);
}

@keyframes ctaPulse {

    0%,
    100% {
        box-shadow:
            0 4px 15px var(--orange-glow),
            0 0 40px rgba(255, 153, 0, 0.15);
    }

    50% {
        box-shadow:
            0 4px 25px rgba(255, 153, 0, 0.5),
            0 0 60px rgba(255, 153, 0, 0.3);
    }
}

.hero .cta-button {
    display: flex;
}

.hero-price-preview {
    text-align: center;
    margin-top: 16px;
    font-size: 14px;
    color: var(--text-muted);
}

.price-old-inline {
    text-decoration: line-through;
    color: var(--red-price);
}

/* Mini Testimonials Carousel */
.mini-testimonials {
    margin-top: 40px;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.mini-testimonials-track {
    display: flex;
    gap: 20px;
    animation: scrollTestimonials 30s linear infinite;
    width: max-content;
}

.mini-testimonial-card {
    flex-shrink: 0;
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: 12px;
    padding: 16px 24px;
    min-width: 300px;
    max-width: 350px;
}

.mini-testimonial-card p {
    font-size: 14px;
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.5;
}

@keyframes scrollTestimonials {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ============================================
   IDENTIFICATION SECTION
   ============================================ */
.identification {
    background:
        radial-gradient(ellipse at 50% 0%, rgba(233, 30, 99, 0.06) 0%, transparent 50%),
        var(--bg-secondary);
    padding: var(--section-padding);
}

.section-title {
    font-size: clamp(24px, 4vw, 38px);
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 17px;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-orange {
    color: var(--orange-primary);
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin-bottom: 40px;
}

.pain-card {
    background: var(--bg-card);
    border: 1px solid rgba(233, 30, 99, 0.12);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transition: all 0.3s ease;
    cursor: default;
}

.pain-card:hover {
    border-color: rgba(233, 30, 99, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.1);
}

.pain-emoji {
    font-size: 28px;
    flex-shrink: 0;
}

.pain-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.identification-cta {
    text-align: center;
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

/* Countdown */
.countdown-wrapper {
    text-align: center;
    margin-top: 20px;
}

.countdown-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--pink-primary);
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(233, 30, 99, 0.1);
    border: 1px solid rgba(233, 30, 99, 0.2);
    border-radius: 12px;
    padding: 12px 20px;
    min-width: 75px;
}

.countdown-number {
    font-size: 36px;
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1;
}

.countdown-text {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.countdown-separator {
    font-size: 36px;
    font-weight: 900;
    color: var(--pink-primary);
}

.countdown-warning {
    font-size: 13px;
    color: var(--text-muted);
    font-style: italic;
}

/* ============================================
   PRODUCT SECTION
   ============================================ */
.product {
    background:
        radial-gradient(ellipse at 30% 50%, rgba(255, 153, 0, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(26, 188, 156, 0.05) 0%, transparent 50%),
        var(--bg-primary);
    padding: var(--section-padding);
    text-align: center;
}

.product-showcase {
    margin: 40px auto;
    max-width: 500px;
}

.product-image-wrapper {
    position: relative;
}

.product-image {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s ease;
}

.product-image:hover {
    transform: scale(1.03) rotate(-1deg);
}

/* Video Player */
.product-video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(255, 153, 0, 0.1);
    border: 2px solid rgba(255, 153, 0, 0.15);
    transition: all 0.4s ease;
}

.product-video-wrapper:hover {
    border-color: rgba(255, 153, 0, 0.3);
    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(255, 153, 0, 0.15);
    transform: scale(1.02);
}

.product-video {
    width: 100%;
    display: block;
    border-radius: 18px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin: 50px 0 40px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: 16px;
    padding: 30px 24px;
    text-align: left;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--orange-primary);
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(255, 153, 0, 0.1);
}

.feature-icon {
    font-size: 32px;
    margin-bottom: 14px;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.feature-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   WHAT'S INCLUDED SECTION
   ============================================ */
.included {
    background:
        radial-gradient(ellipse at 50% 30%, rgba(26, 188, 156, 0.05) 0%, transparent 50%),
        var(--bg-secondary);
    padding: var(--section-padding);
}

.included-list {
    max-width: 600px;
    margin: 40px auto 0;
}

@media (max-width: 768px) {
    .included-list {
        max-width: 100%;
    }
}

.included-header {
    font-size: 20px;
    font-weight: 800;
    color: var(--orange-primary);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--bg-card-border);
}

.included-item {
    background: var(--bg-card);
    border: 1px solid rgba(26, 188, 156, 0.1);
    border-radius: 12px;
    padding: 18px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.included-item:hover {
    border-color: rgba(26, 188, 156, 0.3);
}

.included-item-info {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.included-icon {
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.included-item h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.included-item p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Bonus Items */
.bonus-item {
    background: var(--bg-card);
    border: 1px solid rgba(255, 153, 0, 0.15);
    border-radius: 12px;
    padding: 18px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: all 0.3s ease;
}

.bonus-item:hover {
    border-color: rgba(255, 153, 0, 0.35);
    transform: translateX(3px);
}

.bonus-info {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    flex: 1;
}

.bonus-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.bonus-item h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.bonus-item p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
}

.bonus-value {
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.15), rgba(46, 204, 113, 0.05));
    border: 1px solid rgba(46, 204, 113, 0.3);
    color: var(--green-check);
    font-size: 14px;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 8px;
    white-space: nowrap;
    flex-shrink: 0;
}

/* ============================================
   SONG LIST SECTION
   ============================================ */
.songlist {
    background:
        radial-gradient(ellipse at 50% 50%, rgba(255, 153, 0, 0.04) 0%, transparent 50%),
        var(--bg-primary);
    padding: var(--section-padding);
    text-align: center;
}

.song-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 8px;
    margin: 40px 0 24px;
    text-align: left;
}

.song-item {
    background: var(--bg-card);
    border: 1px solid rgba(255, 153, 0, 0.08);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.song-item:hover {
    border-color: var(--orange-primary);
    background: rgba(255, 153, 0, 0.05);
    transform: translateX(4px);
}

.song-number {
    font-weight: 800;
    color: var(--orange-primary);
    font-size: 13px;
    min-width: 22px;
}

.songlist-more {
    font-size: 18px;
    font-weight: 700;
    color: var(--orange-primary);
    margin-bottom: 30px;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
    background:
        radial-gradient(ellipse at 30% 30%, rgba(26, 188, 156, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 70%, rgba(255, 153, 0, 0.04) 0%, transparent 50%),
        var(--bg-secondary);
    padding: var(--section-padding);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 40px;
}

@media (max-width: 900px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: rgba(255, 153, 0, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--orange-primary);
}

.testimonial-header h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
}

.testimonial-stars {
    color: var(--gold-primary);
    font-size: 13px;
    letter-spacing: 1px;
}

.testimonial-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    font-style: italic;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    background:
        radial-gradient(ellipse at 20% 50%, rgba(255, 153, 0, 0.06) 0%, transparent 50%),
        var(--bg-primary);
    padding: var(--section-padding);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }
}

.about-image-wrapper {
    flex-shrink: 0;
}

.about-image {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--orange-primary);
    box-shadow: 0 0 40px var(--orange-glow);
}

.about-text p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.7;
}

.about-text blockquote {
    border-left: 4px solid var(--orange-primary);
    padding: 16px 24px;
    background: rgba(255, 153, 0, 0.06);
    border-radius: 0 12px 12px 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--orange-light);
    font-style: italic;
    margin: 20px 0;
}

/* ============================================
   GUARANTEE SECTION
   ============================================ */
.guarantee {
    background: var(--bg-secondary);
    padding: var(--section-padding);
}

.guarantee-card {
    display: flex;
    align-items: center;
    gap: 40px;
    background: var(--bg-card);
    border: 2px solid rgba(46, 204, 113, 0.2);
    border-radius: 20px;
    padding: 40px;
    margin-top: 30px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 600px) {
    .guarantee-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 24px;
    }
}

.guarantee-seal {
    flex-shrink: 0;
}

.guarantee-seal img {
    width: 140px;
    height: auto;
}

.guarantee-text p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 12px;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing {
    background:
        radial-gradient(ellipse at 50% 30%, rgba(241, 196, 15, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 70%, rgba(255, 153, 0, 0.04) 0%, transparent 50%),
        var(--bg-primary);
    padding: var(--section-padding);
    text-align: center;
}

.pricing-card {
    max-width: 550px;
    margin: 40px auto 0;
    background:
        linear-gradient(135deg, rgba(20, 10, 45, 0.95), rgba(30, 15, 60, 0.9));
    border: 2px solid;
    border-image: linear-gradient(135deg, var(--gold-primary), var(--orange-primary), var(--gold-primary)) 1;
    border-radius: 0;
    overflow: hidden;
    position: relative;
}

/* Simulating rounded corners with border-image */
.pricing-card {
    border: none;
    border-radius: 24px;
    outline: 2px solid var(--gold-primary);
    outline-offset: -2px;
    box-shadow:
        0 0 40px rgba(241, 196, 15, 0.1),
        0 20px 60px rgba(0, 0, 0, 0.4);
}

.pricing-top {
    padding: 40px 30px 30px;
}

.pricing-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.pricing-old {
    font-size: 24px;
    font-weight: 700;
    color: var(--red-price);
    text-decoration: line-through;
    margin-bottom: 20px;
}

.pricing-current {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    margin-bottom: 12px;
}

.pricing-currency {
    font-size: 28px;
    font-weight: 800;
    color: var(--gold-primary);
    margin-top: 18px;
}

.pricing-amount {
    font-size: 96px;
    font-weight: 900;
    color: var(--gold-primary);
    line-height: 1;
    text-shadow: 0 0 30px rgba(241, 196, 15, 0.3);
}

.pricing-cents {
    font-size: 32px;
    font-weight: 800;
    color: var(--gold-primary);
    margin-top: 18px;
}

.pricing-info {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 0;
}

.pricing-features {
    padding: 0 30px 20px;
    text-align: left;
}

.pricing-feature {
    padding: 10px 0;
    font-size: 15px;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.pricing-feature:last-child {
    border-bottom: none;
}

.pf-check {
    color: var(--green-check);
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.cta-pricing {
    background: linear-gradient(135deg, var(--orange-primary), #e68a00);
    color: #fff;
    box-shadow: 0 4px 20px var(--orange-glow);
    margin: 20px 30px 24px;
    width: calc(100% - 60px);
    max-width: none;
    animation: ctaPulse 2s ease-in-out infinite;
    font-size: 20px;
    padding: 20px 40px;
}

.cta-pricing:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow:
        0 8px 30px rgba(255, 153, 0, 0.5),
        0 0 60px rgba(255, 153, 0, 0.25);
}

.pricing-secure {
    font-size: 13px;
    color: var(--text-muted);
    padding-bottom: 30px;
}

/* Live Badge */
.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(46, 204, 113, 0.08);
    border: 1px solid rgba(46, 204, 113, 0.2);
    border-radius: 50px;
    padding: 10px 24px;
    margin-top: 24px;
    font-size: 14px;
    color: var(--green-check);
}

.live-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--green-check);
    animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.5);
    }

    50% {
        opacity: 0.6;
        box-shadow: 0 0 10px 5px rgba(46, 204, 113, 0.2);
    }
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq {
    background: var(--bg-secondary);
    padding: var(--section-padding);
}

.faq-list {
    max-width: 700px;
    margin: 40px auto 0;
}

.faq-item {
    margin-bottom: 12px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: var(--bg-card);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-family);
    cursor: pointer;
    text-align: left;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 153, 0, 0.05);
}

.faq-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
    color: var(--orange-primary);
    flex-shrink: 0;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

.faq-answer p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */
.final-cta {
    background:
        radial-gradient(ellipse at 50% 50%, rgba(255, 153, 0, 0.08) 0%, transparent 50%),
        var(--bg-primary);
    padding: var(--section-padding);
    text-align: center;
}

.final-text {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-final {
    background: linear-gradient(135deg, var(--orange-primary), #e68a00);
    color: #fff;
    box-shadow: 0 4px 20px var(--orange-glow);
    animation: ctaPulse 2s ease-in-out infinite;
    font-size: 20px;
    padding: 22px 48px;
    position: relative;
}

.cta-final:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow:
        0 8px 30px rgba(255, 153, 0, 0.5),
        0 0 80px rgba(255, 153, 0, 0.2);
}

.cta-live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
    display: inline-block;
    animation: livePulse 1.5s ease-in-out infinite;
    margin-left: 4px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--bg-secondary);
    text-align: center;
    padding: 40px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.footer-disclaimer {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    max-width: 500px;
    margin: 0 auto;
}

/* ============================================
   ANIMATIONS
   ============================================ */

/* Fade-in on scroll */
.feature-card,
.pain-card,
.testimonial-card,
.included-item,
.bonus-item,
.song-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.feature-card.visible,
.pain-card.visible,
.testimonial-card.visible,
.included-item.visible,
.bonus-item.visible,
.song-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 480px) {
    .urgency-bar {
        font-size: 12px;
        padding: 10px 16px;
    }

    .hero {
        padding: 50px 16px 30px;
    }

    .hero-title {
        font-size: 26px;
    }

    .hero-checklist li {
        font-size: 14px;
        padding: 8px 10px;
    }

    .cta-button {
        font-size: 15px;
        padding: 16px 24px;
    }

    .pain-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .song-grid {
        grid-template-columns: 1fr;
    }

    .pricing-amount {
        font-size: 72px;
    }

    .about-image {
        width: 180px;
        height: 180px;
    }

    .guarantee-card {
        padding: 24px 20px;
        gap: 24px;
    }

    .guarantee-seal img {
        width: 100px;
    }
}