:root {
    --color-bg-light: #fdfdfd;
    --color-bg-dark: #0a0a0a;
    --color-primary: #10B981;
    /* Vibrant Teal */
    --color-primary-glow: rgba(16, 185, 129, 0.4);
    --color-accent: #C5A059;
    /* Matte Gold */
    --color-accent-glow: rgba(197, 160, 89, 0.3);
    --color-text-main: #1a1a1a;
    --color-text-muted: #4b5563;
    --color-white: #ffffff;
    --color-glass-bg: rgba(255, 255, 255, 0.7);
    --color-glass-border: rgba(255, 255, 255, 0.2);

    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Montserrat', sans-serif;

    --spacing-base: 1.5rem;
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 8px;

    --shadow-futuristic: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-glow: 0 0 20px var(--color-primary-glow);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-light);
    color: var(--color-text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 800;
}

.container {
    width: 90%;
    max-width: 480px;
    /* Perfect for mobile */
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.section {
    padding: 4rem 0;
    position: relative;
}

.glass {
    background: var(--color-glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--color-glass-border);
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.delay-5 {
    transition-delay: 0.5s;
}

.delay-6 {
    transition-delay: 0.6s;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 8rem 0 6rem;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Base Mesh Glows */
.glow-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(circle at 0% 0%, rgba(16, 185, 129, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 100% 0%, rgba(59, 130, 246, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 50% 100%, rgba(197, 160, 89, 0.05) 0%, transparent 60%);
}

/* Subtle Tech Matrix/Grid */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(16, 185, 129, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 185, 129, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(circle at 50% 50%, black, transparent 90%);
    z-index: 2;
    opacity: 0.6;
}

/* Dynamic Floating Orbs */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 2;
    opacity: 0.5;
    animation: orbit 25s infinite linear;
}

.orb-1 {
    width: 350px;
    height: 350px;
    background: rgba(16, 185, 129, 0.15);
    top: -100px;
    left: -100px;
    animation-duration: 30s;
}

.orb-2 {
    width: 250px;
    height: 250px;
    background: rgba(59, 130, 246, 0.1);
    bottom: -50px;
    right: -50px;
    animation-duration: 20s;
    animation-direction: reverse;
}

@keyframes orbit {
    from {
        transform: rotate(0deg) translateX(50px) rotate(0deg);
    }

    to {
        transform: rotate(360deg) translateX(50px) rotate(-360deg);
    }
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #0f172a;
    letter-spacing: -0.04em;
}

.hero h1 strong {
    background: linear-gradient(135deg, #059669 0%, #10B981 50%, #34D399 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subheadline {
    font-size: 1.25rem;
    color: #475569;
    max-width: 600px;
    margin: 0 auto 3.5rem;
    line-height: 1.5;
    font-weight: 500;
}

.video-container {
    width: 100%;
    aspect-ratio: 9/16;
    background: #e5e7eb;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-futuristic);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: 4px solid var(--color-white);
}

.video-overlay {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #9ca3af;
}

.play-button {
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 0 20px var(--color-primary-glow);
}

/* Offer Section */
.offer-flash {
    margin-top: -2rem;
    border-radius: var(--radius-lg);
    padding: 2.5rem 1.5rem;
    text-align: center;
}

.alert-banner {
    background: #FEF3C7;
    color: #92400E;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    display: inline-block;
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.price-box {
    margin: 2rem 0;
}

.old-price {
    text-decoration: line-through;
    color: #9ca3af;
    display: block;
}

.price-label {
    display: block;
    font-weight: 600;
    margin-top: 5px;
}

.new-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-primary);
    display: block;
}

.bonus-tag {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Buttons */
.btn {
    display: block;
    width: 100%;
    padding: 1.25rem;
    border-radius: 50px;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
}

.btn-primary {
    background: linear-gradient(90deg, var(--color-primary), #059669);
    color: white;
    box-shadow: 0 10px 30px var(--color-primary-glow);
}

/* Glossy Effect */
.btn-glossy::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(30deg);
    transition: none;
    animation: glossy 3s infinite;
}

@keyframes glossy {
    0% {
        left: -100%;
    }

    15% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }

    100% {
        transform: scale(1);
    }
}

/* Social Proof */
.rating-header {
    text-align: center;
    margin-bottom: 2rem;
}

.stars {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.satisfaction {
    font-weight: 600;
    color: var(--color-primary);
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.testimonial-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-futuristic);
    border-top: 4px solid var(--color-primary);
    text-align: center;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--color-primary-glow);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-card .quote {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-card .author {
    font-weight: 700;
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

/* Secrets Section */
.dark-section {
    background: var(--color-bg-dark);
    color: var(--color-white);
}

.secrets h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.secrets h2 strong {
    color: var(--color-primary);
}

.intro-text,
.secret-reveal {
    text-align: center;
    color: #d1d5db;
    margin-bottom: 1rem;
}

.secrets-list {
    margin-top: 2.5rem;
}

.secret-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.25rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.secret-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.secret-content h3 {
    font-size: 1.1rem;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

.secret-content p {
    font-size: 0.9rem;
    color: #9ca3af;
}

/* Bonus Section */
.bonuses h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.bonuses .highlight {
    color: var(--color-accent);
}

.bonus-intro {
    text-align: center;
    color: var(--color-text-muted);
    margin-bottom: 3rem;
}

.bonus-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.bonus-card {
    padding: 2rem 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid #e5e7eb;
}

.bonus-badge {
    background: var(--color-accent);
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1rem;
}

/* Transformation Section */
.transformation-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.transformation-card {
    width: 100%;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
}

.transformation-card.before {
    background: #fee2e2;
    color: #991b1b;
}

.transformation-card.after {
    background: #dcfce7;
    color: #166534;
    font-weight: 600;
}

.transform-header {
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.transformation-arrow {
    font-size: 1.5rem;
}

/* How It Works */
.how-it-works h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

.step-text h3 {
    font-size: 1.1rem;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.step-icon {
    font-size: 1.25rem;
}

/* Final Call Section */
.final-call {
    text-align: center;
}

.final-desc {
    color: #d1d5db;
    margin-bottom: 2rem;
}

.offer-recap {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 2rem;
    text-align: left;
}

.offer-recap p {
    margin-bottom: 0.5rem;
}

.price-box-final {
    margin-bottom: 2.5rem;
}

.price-main {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-primary);
}

.installments {
    color: #9ca3af;
}

.guarantee-box {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    background: rgba(16, 185, 129, 0.1);
    padding: 2rem 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-primary-glow);
}

.guarantee-icon {
    font-size: 3rem;
}

.guarantee-text h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.guarantee-text p {
    font-size: 0.85rem;
    color: #d1d5db;
}

/* More Testimonials */
.testimonials-small-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.t-small {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.testimonial-avatar-small {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--color-primary-glow);
}

.testimonial-avatar-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.t-small span {
    display: block;
    margin-top: 5px;
    font-weight: 700;
    color: var(--color-primary);
}

/* FAQ */
.faq h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

.accordion-item {
    margin-bottom: 1rem;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

.accordion-header {
    width: 100%;
    padding: 1.25rem;
    background: white;
    border: none;
    text-align: left;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.accordion-body {
    padding: 0 1.25rem 1.25rem;
    display: none;
    background: white;
    color: var(--color-text-muted);
}

.accordion-body.open {
    display: block;
}

/* Footer */
.footer {
    padding: 3rem 0;
    background: #f3f4f6;
    text-align: center;
    font-size: 0.85rem;
}

.footer-links {
    margin: 1rem 0;
}

.disclaimer {
    color: #9ca3af;
    margin-top: 1.5rem;
    font-size: 0.75rem;
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .container {
        max-width: 900px;
    }

    .hero h1 {
        font-size: 4.5rem;
        line-height: 1.1;
    }

    .subheadline {
        font-size: 1.4rem;
        max-width: 800px;
    }

    .testimonials-grid,
    .bonus-cards,
    .testimonials-small-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .secrets-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .transformation-grid {
        flex-direction: row;
        justify-content: space-between;
    }

    .transformation-card {
        width: 45%;
    }
}