:root {
    --primary-neon: #39ff14;
    --primary-dark: #0a1f0d;
    --bg-dark: #020502;
    --gold: #ffd700;
    --gold-gradient: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
    --green-gradient: linear-gradient(180deg, #4eff26 0%, #208b00 100%);
    --ribbon-red: #c01c1c;
    --ribbon-gradient: linear-gradient(90deg, #8a0e0e 0%, #d92525 50%, #8a0e0e 100%);
    --text-white: #ffffff;
    --text-gray: #b0b0b0;
    --font-main: 'Poppins', sans-serif;
    --font-header: 'Montserrat', sans-serif;
    
    /* Poster Colors */
    --poster-green-start: #4eff26;
    --poster-green-end: #208b00;
    --poster-gold: #ffd700;
}

.text-gradient-green {
    background: linear-gradient(180deg, #84ff69 0%, #39ff14 50%, #1a7a00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(57, 255, 20, 0.3);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1;
}

.text-gold {
    color: var(--poster-gold);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.poster-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 140px; /* Account for fixed navbar */
    padding-bottom: 50px;
    background: radial-gradient(circle at center, rgba(10, 30, 10, 0.8) 0%, #020502 70%);
}

.poster-title {
    font-size: 4rem;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.poster-subtitle {
    font-size: 2.5rem;
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.poster-tagline {
    font-size: 1.2rem;
    color: var(--poster-gold);
    font-weight: 600;
    margin-bottom: 30px;
    letter-spacing: 1px;
    border-top: 1px solid rgba(255, 215, 0, 0.3);
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
    padding: 10px 20px;
    background: rgba(0,0,0,0.3);
}

.poster-price-box {
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.9) 0%, rgba(5, 5, 5, 0.95) 100%);
    border: 2px solid var(--poster-gold);
    border-radius: 20px;
    padding: 30px 50px;
    text-align: center;
    margin-bottom: 40px;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.poster-price-amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--poster-gold);
    font-family: var(--font-header);
    line-height: 1;
    margin-bottom: 5px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.poster-price-label {
    font-size: 1.2rem;
    color: #fff;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 10px;
}

.poster-price-upgrade {
    font-size: 0.9rem;
    color: #aaa;
    margin-top: 5px;
}

.poster-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 40px;
    text-align: left;
}

.poster-feature-item {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.poster-feature-item i {
    color: var(--primary-neon);
    font-size: 1.2rem;
    filter: drop-shadow(0 0 5px var(--primary-neon));
}

.poster-guarantee-box {
    background: linear-gradient(90deg, #8a0e0e 0%, #d92525 50%, #8a0e0e 100%);
    padding: 15px 30px;
    transform: skewX(-10deg);
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    border: 2px solid #ff4d4d;
}

.poster-guarantee-content {
    transform: skewX(10deg);
    text-align: center;
}

.poster-guarantee-title {
    font-size: 1rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 5px;
}

.poster-guarantee-amount {
    font-size: 1.8rem;
    color: var(--poster-gold);
    font-weight: 900;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.poster-cta-btn {
    background: linear-gradient(180deg, #39ff14 0%, #208b00 100%);
    color: #000;
    font-size: 1.5rem;
    font-weight: 900;
    padding: 15px 50px;
    border-radius: 10px;
    text-decoration: none;
    border: 2px solid #84ff69;
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    text-transform: uppercase;
    font-family: var(--font-header);
    display: inline-block;
}

.poster-cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(57, 255, 20, 0.6);
}

.poster-cta-sub {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 5px;
    text-transform: none;
}

@media (max-width: 768px) {
    .poster-title { font-size: 2.5rem; }
    .poster-subtitle { font-size: 1.8rem; }
    .poster-price-amount { font-size: 2.5rem; }
    .poster-guarantee-amount { font-size: 1.4rem; }
    
    /* Navbar Mobile */
    .navbar {
        padding: 15px;
        flex-direction: column;
        gap: 15px;
    }
    
    .logo {
        margin-bottom: 5px;
    }
    
    /* Hero Adjustments */
    .poster-hero {
        padding-top: 180px; /* More space for stacked navbar */
        padding-bottom: 30px;
    }
    
    .poster-price-box {
        padding: 20px;
        width: 100%;
    }
    
    .poster-cta-btn {
        font-size: 1.2rem;
        padding: 15px 30px;
        width: 100%;
        text-align: center;
    }
    
    /* Grid Mobile */
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .features-detailed-grid {
        grid-template-columns: 1fr;
    }
    
    .pain-grid {
        grid-template-columns: 1fr;
    }
    
    /* Guarantee Mobile */
    .guarantee-box {
        padding: 30px 20px;
    }
    
    .badge-guarantee-floating {
        position: relative;
        top: 0;
        right: 0;
        transform: none;
        display: inline-block;
        margin-bottom: 15px;
        width: 100%;
        text-align: center;
    }
    
    /* Demo Section Mobile */
    .demo-box {
        padding: 20px;
    }
    
    .demo-stats {
        flex-direction: column;
        gap: 15px;
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .poster-title { font-size: 2rem; }
    .poster-price-amount { font-size: 2rem; }
    .nav-btn { width: 100%; text-align: center; }
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-main);
    overflow-x: hidden;
    min-height: 100vh;
    line-height: 1.6;
}

#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.3;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(2, 5, 2, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(57, 255, 20, 0.2);
}

.logo {
    font-family: var(--font-header);
    font-weight: 800;
    font-size: 1.5rem;
    color: #fff;
}

.neon-text {
    color: var(--primary-neon);
    text-shadow: 0 0 10px var(--primary-neon);
}

.nav-btn {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 8px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.nav-btn:hover {
    background: var(--gold);
    color: #000;
    box-shadow: 0 0 15px var(--gold);
}

.pulse-small {
    animation: pulseSmall 2s infinite;
}

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

/* Main Layout */
.main-wrapper {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-container {
    width: 100%;
    max-width: 1000px;
    padding: 80px 20px;
    position: relative;
    z-index: 1;
}

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

/* Hero Section */
.hero-section {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 120px 20px 50px;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
}

.badge-top {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 25px;
    color: var(--text-gray);
    font-weight: 600;
    letter-spacing: 1px;
}

.main-title {
    font-family: var(--font-header);
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    color: #e0ffd4;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.3);
    margin-bottom: 20px;
}

.highlight-red {
    display: block;
    color: #ff4d4d;
    font-size: 3.5rem;
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

.sub-title {
    font-size: 1.2rem;
    color: #fff;
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 1.4;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    margin-bottom: 20px;
}

.hero-subtext {
    font-size: 0.8rem;
    color: #888;
    margin-top: 15px;
}

.large-pulse {
    font-size: 1.2rem;
    padding: 20px 40px;
}

/* Pain Points */
.pain-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 40px;
}

.pain-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(0, 0, 0, 0.2) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s;
}

.pain-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 77, 77, 0.5);
    background: rgba(255, 77, 77, 0.05);
}

.icon-pain {
    width: 70px;
    height: 70px;
    background: rgba(255, 77, 77, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.pain-card i {
    font-size: 2rem;
    color: #ff4d4d;
}

.pain-card h3 {
    font-family: var(--font-header);
    margin-bottom: 15px;
    color: #fff;
    font-size: 1.3rem;
}

.pain-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Warning Section */
.warning-bg {
    background: linear-gradient(180deg, rgba(50, 0, 0, 0.8) 0%, rgba(2, 5, 2, 0) 100%);
    text-align: center;
    border-top: 1px solid rgba(255, 0, 0, 0.3);
    padding-top: 100px;
}

.warning-icon {
    font-size: 4rem;
    color: #ff4d4d;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.warning-text {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.8;
}

/* How It Works */
.solution-header {
    text-align: center;
    margin-bottom: 60px;
}

.mini-tag {
    display: inline-block;
    background: var(--primary-neon);
    color: #000;
    font-weight: 800;
    padding: 2px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.section-title {
    font-family: var(--font-header);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-desc {
    color: var(--text-gray);
}

.how-it-works {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(57, 255, 20, 0.03);
    padding: 30px;
    border-radius: 20px;
    width: 100%;
    border: 1px solid rgba(57, 255, 20, 0.1);
    position: relative;
    overflow: hidden;
}

.step-number {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(57, 255, 20, 0.1);
    line-height: 0.8;
    min-width: 80px;
}

.step-content h3 {
    color: var(--primary-neon);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.connector {
    width: 2px;
    height: 40px;
    background: var(--primary-neon);
    opacity: 0.2;
}

/* Tech Specs Grid */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.tech-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tech-item i {
    font-size: 2rem;
    color: var(--primary-neon);
    margin-bottom: 10px;
}

.tech-item h4 {
    color: #fff;
    margin-bottom: 5px;
}

.tech-item p {
    font-size: 0.8rem;
    color: #aaa;
}

/* Demo Section */
.demo-box {
    background: linear-gradient(135deg, #111 0%, #222 100%);
    border: 1px solid #444;
    border-radius: 20px;
    padding: 30px;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

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

.demo-content h3 { color: #fff; margin-bottom: 10px; }
.demo-content p { color: #aaa; margin-bottom: 20px; font-size: 0.9rem; }

.small-cta {
    padding: 12px 30px;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    color: #fff;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 600;
}

.small-cta:hover {
    background: rgba(57, 255, 20, 0.1);
    border-color: var(--primary-neon);
    color: var(--primary-neon);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(57, 255, 20, 0.2);
}

.small-cta i {
    transition: transform 0.3s;
}

.small-cta:hover i {
    transform: scale(1.2);
}

.demo-stats {
    display: flex;
    gap: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-neon);
}

.stat-label {
    font-size: 0.7rem;
    color: #888;
    text-transform: uppercase;
}

/* Features Grid */
.features-detailed-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
}

.feature-box {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: left;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.check-icon {
    min-width: 40px;
    height: 40px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.check-icon i {
    color: var(--gold);
    font-size: 1.2rem;
}

.feature-box h3 {
    margin-bottom: 10px;
    color: #fff;
    font-size: 1.1rem;
}

.feature-box p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Trust Section */
.trust-section {
    text-align: center;
    padding-bottom: 0;
}

.guarantee-box {
    background: linear-gradient(135deg, #2c0505 0%, #1a0000 100%);
    border: 2px dashed #ff4d4d;
    padding: 50px 30px;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
}

.badge-guarantee-floating {
    position: absolute;
    top: 20px;
    right: -30px;
    background: #ff4d4d;
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-weight: 800;
    font-size: 0.8rem;
}

.guarantee-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    text-align: left;
}

.guarantee-content h3 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.guarantee-content p {
    color: #ddd;
    line-height: 1.6;
}

.icon-large {
    font-size: 5rem;
    color: var(--gold);
    flex-shrink: 0; /* Prevent icon from shrinking */
}

@media (max-width: 768px) {
    .guarantee-content {
        flex-direction: column;
        text-align: center;
    }
}

.small-note {
    font-size: 0.8rem;
    color: #888;
    margin-top: 15px;
    font-style: italic;
}

/* Pricing Section */
.pricing-section {
    text-align: center;
}

.price-intro {
    max-width: 600px;
    margin: 0 auto 40px;
    color: var(--text-gray);
}

/* Pricing Grid System */
.pricing-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

@media (min-width: 992px) {
    .pricing-grid {
        flex-direction: row;
        align-items: stretch;
        gap: 30px;
    }
}

.pricing-card {
    background: linear-gradient(160deg, #112913 0%, #000000 100%);
    border: 2px solid var(--primary-neon);
    border-radius: 25px;
    padding: 50px 30px;
    position: relative;
    width: 100%;
    max-width: 400px;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 50px rgba(57, 255, 20, 0.15);
}

.pricing-card:hover {
    transform: translateY(-10px);
}

/* Basic Package */
.pricing-card.basic {
    /* Uses default styles (Green Theme) */
}

/* Pro Package */
.pricing-card.pro {
    background: linear-gradient(160deg, #2e2402 0%, #000000 100%);
    border: 2px solid var(--gold);
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.15);
    z-index: 10;
}

@media (min-width: 992px) {
    .pricing-card.pro {
        transform: scale(1.05);
    }
    .pricing-card.pro:hover {
        transform: scale(1.08);
        box-shadow: 0 0 60px rgba(255, 215, 0, 0.3);
    }
}

.pricing-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 8px 30px;
    border-radius: 50px;
    font-weight: 800;
    white-space: nowrap;
    font-size: 0.9rem;
    z-index: 2;
}

.pricing-badge.basic {
    background: var(--primary-neon);
    color: #000;
    box-shadow: 0 0 15px var(--primary-neon);
}

.pricing-badge.pro {
    background: var(--gold);
    color: #000;
    box-shadow: 0 0 20px var(--gold);
}

.price-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--gold);
    margin-bottom: 10px;
}

.strikethrough {
    text-decoration: line-through;
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.current-price {
    display: flex;
    align-items: flex-start;
}

.currency { font-size: 1.5rem; margin-top: 15px; font-weight: 700; }
.amount { font-family: var(--font-header); font-size: 4.5rem; font-weight: 900; line-height: 1; }
.price-subtitle { color: #fff; margin-bottom: 20px; font-size: 1.1rem; font-weight: 600; }

.separator {
    width: 50px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 auto 30px;
}

.feature-list-check {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
    padding: 0 10px;
}

.feature-list-check li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: #e0e0e0;
    font-size: 0.95rem;
}

.feature-list-check li i {
    color: var(--primary-neon);
    margin-right: 15px;
    font-size: 1.1rem;
    min-width: 20px;
}

.highlight-li {
    color: var(--gold) !important;
    font-weight: 700;
}

.highlight-li i { color: var(--gold) !important; }

.cta-button {
    text-decoration: none;
    display: inline-block;
    border-radius: 50px;
    font-weight: 800;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

/* New Button Styles */
.btn-pricing-basic {
    background: linear-gradient(45deg, #00fff2, #0099ff);
    color: #000;
    padding: 15px 30px;
    box-shadow: 0 5px 20px rgba(0, 255, 242, 0.3);
}

.btn-pricing-basic:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 242, 0.5);
    background: linear-gradient(45deg, #00e6da, #0088e6);
}

.btn-pricing-pro {
    background: linear-gradient(45deg, #ffd700, #ffaa00);
    color: #000;
    padding: 18px 40px;
    box-shadow: 0 5px 25px rgba(255, 215, 0, 0.4);
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
}

.btn-pricing-pro::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

.btn-pricing-pro:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.6);
    background: linear-gradient(45deg, #e6c200, #e69900);
}

@keyframes shine {
    0% { left: -50%; }
    100% { left: 150%; }
}

.large-cta {
    background: linear-gradient(90deg, #ff4d4d, #ff8080);
    color: white;
    padding: 20px 50px;
    font-size: 1.2rem;
    box-shadow: 0 10px 30px rgba(255, 77, 77, 0.4);
}

.large-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 77, 77, 0.6);
}

.scarcity-bar {
    margin-top: 20px;
}

.scarcity-text {
    color: #ff4d4d;
    font-size: 0.85rem;
    margin-bottom: 8px;
    animation: pulse 2s infinite;
}

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

.progress-fill {
    width: 85%;
    height: 100%;
    background: #ff4d4d;
    border-radius: 10px;
    animation: shimmer 2s infinite linear;
    background: linear-gradient(90deg, #ff4d4d 0%, #ff8080 50%, #ff4d4d 100%);
    background-size: 200% 100%;
}

@keyframes shimmer {
    0% { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}

/* FAQ Section */
.faq-container {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.1);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    background: rgba(0, 0, 0, 0.3);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 20px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-cta {
    margin-top: 40px;
    font-size: 0.9rem;
    color: #aaa;
}

.text-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    padding: 12px 30px;
    border: 1px solid var(--gold);
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: rgba(255, 215, 0, 0.05);
}

.text-link:hover {
    background: var(--gold);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
    text-decoration: none;
}

.text-link i {
    transition: transform 0.3s;
}

.text-link:hover i {
    transform: translateX(5px);
}

/* Closing Section */
.closing-section {
    text-align: center;
    padding-bottom: 150px;
}

.closing-box {
    max-width: 800px;
    margin: 0 auto;
}

.closing-desc {
    font-size: 1.1rem;
    color: #ddd;
    margin-bottom: 40px;
}

.shake-effect {
    animation: shake 5s infinite;
}

@keyframes shake {
    0%, 90% { transform: translateX(0); }
    91% { transform: translateX(-5px); }
    93% { transform: translateX(5px); }
    95% { transform: translateX(-5px); }
    97% { transform: translateX(5px); }
    100% { transform: translateX(0); }
}

/* Floating WA */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 35px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: transform 0.3s;
    text-decoration: none;
}

.floating-wa:hover {
    transform: scale(1.1);
}

/* Footer */
footer {
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: #000;
}

.disclaimer-footer {
    font-size: 0.7rem;
    color: #444;
    margin-top: 10px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

/* Responsive */
@media (min-width: 768px) {
    .main-title { font-size: 4rem; }
    .highlight-red { font-size: 5rem; }
    .pain-grid { grid-template-columns: repeat(3, 1fr); }
    .features-detailed-grid { grid-template-columns: repeat(2, 1fr); }
    .how-it-works { flex-direction: row; align-items: flex-start; }
    .connector { width: 50px; height: 2px; margin-top: 50px; }
    .step { flex-direction: column; text-align: center; }
    .guarantee-content { flex-direction: row; text-align: left; }
    .demo-box { flex-direction: row; justify-content: space-around; }
    .tech-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Animations Reuse */
.animate-pop-in { animation: popIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards; opacity: 0; }
.animate-slide-up { animation: slideUp 0.8s ease-out forwards; opacity: 0; }
.animate-fade-down { animation: fadeDown 0.8s ease-out forwards; opacity: 0; }

@keyframes popIn {
    0% { transform: scale(0.5); opacity: 0; }
    80% { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes fadeDown {
    from { transform: translateY(-20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

.scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}
