<style>
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Inter:wght@300;400;500;600;700;800;900&display=swap');

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

:root {
    --gold: #FFD700;
    --gold-dark: #B8860B;
    --green: #00E676;
    --green-glow: #00ff8844;
    --red-accent: #FF1744;
    --dark: #0a0e17;
    --dark-card: #111827;
    --dark-surface: #1a1f2e;
    --blue-accent: #2196F3;
    --purple: #7C4DFF;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark);
    color: #e0e0e0;
    overflow-x: hidden;
    padding-bottom: 100px;
    -webkit-font-smoothing: antialiased;
}

/* ===== TICKER BAR ===== */
.ticker-bar {
    background: linear-gradient(90deg, #1a237e, #0d47a1, #01579b);
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
    position: relative;
}
.ticker-bar::before, .ticker-bar::after {
    content: '';
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
}
.ticker-bar::before { left: 0; background: linear-gradient(90deg, #1a237e, transparent); }
.ticker-bar::after { right: 0; background: linear-gradient(90deg, transparent, #01579b); }
.ticker-content {
    display: inline-block;
    animation: ticker 25s linear infinite;
}
.ticker-content span {
    display: inline-block;
    padding: 0 30px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
}
.ticker-content .up { color: var(--green); }
.ticker-content .symbol { color: var(--gold); font-weight: 700; }
@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg-img {
    position: absolute;
    inset: 0;
    background: url('../images/hero-bg.png') center/cover no-repeat;
    transform: scale(1.1);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(10,14,23,0.93) 0%, rgba(10,14,23,0.65) 50%, rgba(10,14,23,0.88) 100%),
        radial-gradient(ellipse at 20% 50%, rgba(33,150,243,0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(124,77,255,0.1) 0%, transparent 50%);
}
.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
}
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: float-particle 6s infinite;
}
@keyframes float-particle {
    0% { opacity: 0; transform: translateY(100vh) scale(0); }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { opacity: 0; transform: translateY(-10vh) scale(1); }
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: 0 auto;
    padding: 100px 40px 60px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}
.hero-text { text-align: left; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(255,215,0,0.2), rgba(255,215,0,0.05));
    border: 1px solid rgba(255,215,0,0.4);
    border-radius: 50px;
    padding: 8px 22px;
    font-size: 13px;
    color: var(--gold);
    margin-bottom: 28px;
    animation: pulse-badge 2s ease-in-out infinite;
    backdrop-filter: blur(10px);
}
.hero-badge i { font-size: 15px; }
@keyframes pulse-badge {
    0%, 100% { box-shadow: 0 0 15px rgba(255,215,0,0.2); }
    50% { box-shadow: 0 0 30px rgba(255,215,0,0.5); }
}

.hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(30px, 4.5vw, 58px);
    font-weight: 900;
    line-height: 1.12;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #fff 0%, var(--gold) 50%, #fff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine-text 3s linear infinite;
}
@keyframes shine-text {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.hero-sub {
    font-size: clamp(18px, 2.5vw, 28px);
    color: var(--green);
    font-weight: 700;
    margin-bottom: 18px;
    text-shadow: 0 0 30px var(--green-glow);
}
.hero-sub .highlight {
    color: var(--gold);
    font-size: 1.15em;
    text-shadow: 0 0 20px rgba(255,215,0,0.5);
}

.hero-desc {
    font-size: 16px;
    color: #9e9e9e;
    max-width: 520px;
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}
.hero-stat { text-align: left; }
.hero-stat-value {
    font-family: 'Orbitron', monospace;
    font-size: 30px;
    font-weight: 900;
    color: var(--green);
    text-shadow: 0 0 20px var(--green-glow);
}
.hero-stat-label {
    font-size: 12px;
    color: #888;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-main-img {
    width: 100%;
    max-width: 460px;
    border-radius: 20px;
    border: 2px solid rgba(255,215,0,0.25);
    box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 60px rgba(255,215,0,0.1);
    animation: hero-float 5s ease-in-out infinite;
}
@keyframes hero-float {
    0%, 100% { transform: translateY(0) rotate(1deg); }
    50% { transform: translateY(-15px) rotate(-1deg); }
}
.hero-float-card {
    position: absolute;
    background: rgba(17,24,39,0.92);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,215,0,0.3);
    border-radius: 14px;
    padding: 14px 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}
.hero-float-card.top-left {
    top: -10px;
    left: -30px;
    animation: float-tl 4s ease-in-out infinite;
}
.hero-float-card.bottom-right {
    bottom: 10px;
    right: -25px;
    animation: float-br 4.5s ease-in-out infinite;
}
@keyframes float-tl {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-8px, -12px); }
}
@keyframes float-br {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(10px, -10px); }
}
.float-label { font-size: 11px; color: #888; margin-bottom: 4px; }
.float-label i { margin-right: 4px; }
.float-value {
    font-family: 'Orbitron', monospace;
    font-size: 20px;
    font-weight: 900;
    color: var(--green);
}
.float-value.gold { color: var(--gold); }
.float-sub { font-size: 11px; color: var(--green); margin-top: 2px; }

/* ===== CTA BUTTON ===== */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    padding: 16px 44px;
    border-radius: 60px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.cta-btn::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.15), transparent);
    transform: rotate(45deg);
    animation: btn-shine 3s infinite;
}
@keyframes btn-shine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}
.cta-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 40px rgba(37,211,102,0.6);
}
.cta-btn img {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
}

/* ===== PROFIT MARQUEE ===== */
.profit-marquee {
    background: linear-gradient(90deg, rgba(0,230,118,0.1), rgba(255,215,0,0.1), rgba(0,230,118,0.1));
    border-top: 1px solid rgba(0,230,118,0.2);
    border-bottom: 1px solid rgba(0,230,118,0.2);
    padding: 14px 0;
    overflow: hidden;
    white-space: nowrap;
}
.profit-marquee-content {
    display: inline-block;
    animation: marquee 30s linear infinite;
}
.profit-marquee-content .item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 36px;
    font-size: 14px;
    font-weight: 600;
}
.profit-marquee-content .item .name { color: #bbb; }
.profit-marquee-content .item .amount { color: var(--green); font-family: 'Orbitron', monospace; }
.profit-marquee-content .item i { color: var(--gold); font-size: 14px; }
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== COMMON SECTION ===== */
section {
    padding: 80px 20px;
    position: relative;
}
.section-container {
    max-width: 1200px;
    margin: 0 auto;
}
.section-title {
    text-align: center;
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 900;
    margin-bottom: 14px;
}
.section-title .glow {
    color: var(--gold);
    text-shadow: 0 0 30px rgba(255,215,0,0.4);
}
.section-title i {
    color: var(--gold);
    margin-right: 8px;
}
.section-subtitle {
    text-align: center;
    color: #888;
    font-size: 15px;
    margin-bottom: 50px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== PROFIT CARDS ===== */
.profits-section {
    background: radial-gradient(ellipse at center, rgba(0,230,118,0.05) 0%, transparent 60%), var(--dark);
}
.profit-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.profit-card {
    background: linear-gradient(145deg, var(--dark-card), var(--dark-surface));
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(40px);
}
.profit-card.visible { opacity: 1; transform: translateY(0); }
.profit-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0,230,118,0.3);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px var(--green-glow);
}
.profit-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 2px solid rgba(0,230,118,0.2);
}
.profit-card-body { padding: 22px; }
.profit-card-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0,230,118,0.15);
    color: var(--green);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.profit-card-tag i { font-size: 11px; }
.profit-card-title { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.profit-card-amount {
    font-family: 'Orbitron', monospace;
    font-size: 28px;
    font-weight: 900;
    color: var(--green);
    text-shadow: 0 0 15px var(--green-glow);
}
.profit-card-detail { font-size: 13px; color: #888; margin-top: 8px; line-height: 1.6; }

/* ===== WHY US ===== */
.why-section {
    background: radial-gradient(ellipse at 30% 50%, rgba(124,77,255,0.08) 0%, transparent 50%), var(--dark);
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.why-card {
    background: var(--dark-card);
    border-radius: 20px;
    padding: 36px 26px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}
.why-card.visible { opacity: 1; transform: translateY(0); }
.why-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--green), var(--purple));
    opacity: 0;
    transition: opacity 0.3s;
}
.why-card:hover::before { opacity: 1; }
.why-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,215,0,0.2);
    box-shadow: 0 15px 50px rgba(0,0,0,0.4);
}
.why-icon {
    width: 66px; height: 66px;
    margin: 0 auto 20px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
}
.why-icon.blue { background: linear-gradient(135deg, #1a237e, #2196F3); }
.why-icon.green { background: linear-gradient(135deg, #1b5e20, #00E676); }
.why-icon.purple { background: linear-gradient(135deg, #4a148c, #7C4DFF); }
.why-icon.orange { background: linear-gradient(135deg, #bf360c, #FF9800); }
.why-icon.teal { background: linear-gradient(135deg, #004d40, #26A69A); }
.why-icon.gold-bg { background: linear-gradient(135deg, #B8860B, #FFD700); }
.why-card h3 { font-size: 18px; color: #fff; margin-bottom: 10px; }
.why-card p { font-size: 13px; color: #999; line-height: 1.7; }

/* ===== OPPORTUNITY CTA ===== */
.opportunity-section {
    background:
        radial-gradient(ellipse at 50% 30%, rgba(0,230,118,0.06) 0%, transparent 50%),
        var(--dark-surface);
}
.opportunity-steps {
    max-width: 800px;
    margin: 0 auto 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.opp-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--dark-card);
    border-radius: 18px;
    padding: 26px 28px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
}
.opp-step:hover {
    border-color: rgba(0,230,118,0.25);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    transform: translateX(6px);
}
.opp-num {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #000;
    font-family: 'Orbitron', monospace;
    font-size: 18px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
}
.opp-content h4 {
    font-size: 17px;
    color: #fff;
    margin-bottom: 6px;
}
.opp-content p {
    font-size: 14px;
    color: #aaa;
    line-height: 1.7;
}
.opp-content strong {
    color: var(--green);
    font-weight: 700;
}
.opportunity-footer {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
.opp-urgency {
    font-size: 15px;
    color: var(--red-accent);
    font-weight: 700;
    margin-bottom: 22px;
    animation: pulse-spots 2s ease-in-out infinite;
}
.opp-urgency i {
    color: var(--gold);
    margin-right: 6px;
}


@media (max-width: 768px) {
    .opp-step {
        padding: 20px 18px;
        gap: 14px;
    }
    .opp-num {
        width: 36px;
        height: 36px;
        font-size: 15px;
    }
    .opp-content h4 { font-size: 15px; }
    .opp-content p { font-size: 13px; }
}
@media (max-width: 420px) {
    .opp-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
        padding: 18px 16px;
    }
}

/* ===== SCREENSHOTS ===== */
.screenshots-section { background: var(--dark); }
.screenshots-track {
    display: flex;
    gap: 18px;
    overflow: hidden;
    padding: 20px 0;
}
.screenshot-item {
    flex: 0 0 280px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,215,0,0.15);
    transition: all 0.4s ease;
    animation: float-screenshot 4s ease-in-out infinite;
}
.screenshot-item:nth-child(even) { animation-delay: 2s; }
.screenshot-item:hover {
    transform: scale(1.05);
    border-color: var(--gold);
    box-shadow: 0 10px 40px rgba(255,215,0,0.2);
}
.screenshot-item img { width: 100%; height: 380px; object-fit: cover; display: block; }
@keyframes float-screenshot {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ===== LIVE DATA ===== */
.live-panel {
    background: linear-gradient(180deg, var(--dark), var(--dark-surface));
    padding: 80px 20px;
}
.live-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    max-width: 1000px;
    margin: 0 auto;
}
.live-card {
    background: var(--dark-card);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
}
.live-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--green), transparent);
    animation: scan-line 2s linear infinite;
}
@keyframes scan-line {
    0% { opacity: 0.3; } 50% { opacity: 1; } 100% { opacity: 0.3; }
}
.live-card .icon { font-size: 22px; color: var(--gold); margin-bottom: 10px; }
.live-card .label { font-size: 12px; color: #888; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; }
.live-card .value { font-family: 'Orbitron', monospace; font-size: 26px; font-weight: 900; color: var(--gold); }
.live-card .change { font-size: 13px; color: var(--green); margin-top: 6px; }

/* ===== FREE ACCESS ===== */
.plans-section {
    background: radial-gradient(ellipse at 50% 40%, rgba(255,215,0,0.06) 0%, transparent 50%), var(--dark);
}
.free-card {
    max-width: 780px;
    margin: 0 auto;
    background: linear-gradient(145deg, var(--dark-card), var(--dark-surface));
    border-radius: 28px;
    border: 2px solid rgba(255,215,0,0.25);
    overflow: hidden;
    box-shadow: 0 0 60px rgba(255,215,0,0.08);
}
.free-card-header {
    text-align: center;
    padding: 40px 30px 30px;
    background: linear-gradient(180deg, rgba(255,215,0,0.06), transparent);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.free-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #000;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: 20px;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.free-badge i { font-size: 14px; }
.free-price {
    font-family: 'Orbitron', monospace;
    font-size: 64px;
    font-weight: 900;
    color: var(--gold);
    text-shadow: 0 0 30px rgba(255,215,0,0.3);
    line-height: 1;
}
.free-price-note {
    font-size: 15px;
    color: #999;
    margin-top: 8px;
}
.free-card-body {
    padding: 32px 36px;
}
.free-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 30px;
}
.free-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #ccc;
}
.free-feature i {
    color: var(--green);
    font-size: 16px;
    flex-shrink: 0;
}
.free-card-footer {
    text-align: center;
    padding: 28px 30px 36px;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.free-spots {
    margin-top: 16px;
    font-size: 13px;
    color: var(--red-accent);
    animation: pulse-spots 2s ease-in-out infinite;
}
.free-spots i { margin-right: 4px; color: var(--gold); }
.free-spots strong { color: var(--gold); font-family: 'Orbitron', monospace; }
@keyframes pulse-spots {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    background: radial-gradient(ellipse at 50% 50%, rgba(33,150,243,0.06) 0%, transparent 50%), var(--dark);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    background: var(--dark-card);
    border-radius: 20px;
    padding: 32px 26px;
    border: 1px solid rgba(255,255,255,0.06);
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.5s ease;
}
.testimonial-card.visible { opacity: 1; transform: translateX(0); }
.testimonial-card:nth-child(even) { transform: translateX(30px); }
.testimonial-card:nth-child(even).visible { transform: translateX(0); }
.testimonial-stars { margin-bottom: 14px; color: var(--gold); font-size: 13px; letter-spacing: 3px; }
.testimonial-quote {
    font-size: 14px;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 22px;
    font-style: italic;
    padding-left: 18px;
    border-left: 3px solid rgba(255,215,0,0.3);
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
    width: 46px; height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    border: 2px solid var(--gold);
}
.testimonial-avatar.av-blue { background: linear-gradient(135deg, #1a237e, #0d47a1); }
.testimonial-avatar.av-red { background: linear-gradient(135deg, #b71c1c, #c62828); }
.testimonial-avatar.av-green { background: linear-gradient(135deg, #1b5e20, #2e7d32); }
.testimonial-name { font-weight: 700; color: #fff; font-size: 15px; }
.testimonial-profit { font-size: 12px; color: var(--green); font-family: 'Orbitron', monospace; }

/* ===== URGENCY ===== */
.urgency-banner {
    background: linear-gradient(90deg, #b71c1c, #d32f2f, #b71c1c);
    padding: 18px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.urgency-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: urgency-flash 2s linear infinite;
}
@keyframes urgency-flash {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}
.urgency-text {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}
.urgency-text i { color: var(--gold); }
.urgency-text .countdown { font-family: 'Orbitron', monospace; color: var(--gold); font-size: 22px; }

/* ===== FAQ ===== */
.faq-section { background: var(--dark); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
    background: var(--dark-card);
    border-radius: 14px;
    margin-bottom: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
    transition: all 0.3s;
}
.faq-item:hover { border-color: rgba(255,215,0,0.2); }
.faq-question {
    padding: 20px 24px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-question i { color: var(--gold); font-size: 16px; transition: transform 0.3s; }
.faq-item.active .faq-question i { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-inner { padding: 0 24px 20px; font-size: 13px; color: #999; line-height: 1.8; }
.faq-item.active .faq-answer { max-height: 300px; }

/* ===== FINAL CTA ===== */
.final-cta {
    background: radial-gradient(ellipse at center, rgba(255,215,0,0.1) 0%, transparent 50%), var(--dark-surface);
    padding: 90px 20px;
    text-align: center;
}
.final-cta h2 { font-size: clamp(26px, 5vw, 46px); font-weight: 900; margin-bottom: 18px; }
.final-cta h2 .gold { color: var(--gold); }
.final-cta p { color: #888; font-size: 17px; margin-bottom: 36px; }

/* ===== FOOTER ===== */
footer {
    background: #050810;
    padding: 36px 20px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}
footer p { color: #555; font-size: 11px; line-height: 2; }

/* ===== FIXED CTA ===== */
.fixed-cta {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    animation: bounce-btn 1.5s ease-in-out infinite;
}
.fixed-cta a {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    padding: 14px 36px;
    border-radius: 60px;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(37,211,102,0.5), 0 0 60px rgba(37,211,102,0.2);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}
.fixed-cta a::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #25D366, #fff, #25D366);
    border-radius: 60px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s;
}
.fixed-cta a:hover::before { opacity: 0.3; }
.fixed-cta a img { width: 22px; height: 22px; flex-shrink: 0; }
@keyframes bounce-btn {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    30% { transform: translateX(-50%) translateY(-15px); }
    50% { transform: translateX(-50%) translateY(-5px); }
    70% { transform: translateX(-50%) translateY(-10px); }
}
.fixed-cta-ring {
    position: absolute;
    inset: -8px;
    border: 2px solid rgba(37,211,102,0.4);
    border-radius: 60px;
    animation: ring-pulse 2s ease-out infinite;
}
@keyframes ring-pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.3); opacity: 0; }
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in { opacity: 0; transform: translateY(30px); transition: all 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .profit-cards { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .free-features-grid { gap: 14px 24px; }
    .live-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 70px 20px 40px;
        gap: 35px;
    }
    .hero-text { text-align: center; }
    .hero-stats { justify-content: center; }
    .hero-stat { text-align: center; }
    .hero-desc { margin-left: auto; margin-right: auto; }
    .hero-main-img { max-width: 320px; }
    .hero-float-card.top-left { left: 5%; top: 0; }
    .hero-float-card.bottom-right { right: 5%; bottom: 15px; }
}

@media (max-width: 768px) {
    body { padding-bottom: 90px; }
    section { padding: 10px 16px; }

    .hero-inner { padding: 60px 16px 30px; gap: 28px; }
    .hero h1 { font-size: 28px; }
    .hero-sub { font-size: 18px; }
    .hero-desc { font-size: 14px; margin-bottom: 22px; }
    .hero-stats { gap: 16px; margin-bottom: 28px; }
    .hero-stat-value { font-size: 22px; }
    .hero-stat-label { font-size: 11px; }
    .hero-badge { font-size: 11px; padding: 6px 16px; margin-bottom: 20px; }
    .hero-main-img { max-width: 260px; border-radius: 14px; }
    .hero-float-card { padding: 10px 14px; border-radius: 10px; }
    .float-value { font-size: 16px; }
    .float-label { font-size: 10px; }
    .float-sub { font-size: 10px; }
    .hero-float-card.top-left { left: 0; top: -5px; }
    .hero-float-card.bottom-right { right: 0; bottom: 10px; }

    .profit-cards { grid-template-columns: 1fr; }
    .profit-card-img { height: 180px; }
    .profit-card-amount { font-size: 24px; }
    .profit-card-body { padding: 18px; }

    .why-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .why-card { padding: 24px 18px; }
    .why-icon { width: 52px; height: 52px; font-size: 22px; margin-bottom: 14px; border-radius: 14px; }
    .why-card h3 { font-size: 15px; margin-bottom: 6px; }
    .why-card p { font-size: 12px; line-height: 1.6; }

    .screenshot-item { flex: 0 0 220px; }
    .screenshot-item img { height: 300px; }

    .live-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .live-card { padding: 20px 14px; }
    .live-card .value { font-size: 20px; }

    .free-card-body { padding: 24px 20px; }
    .free-features-grid { grid-template-columns: 1fr; gap: 12px; }
    .free-price { font-size: 48px; }
    .free-card-header { padding: 30px 20px 24px; }
    .free-card-footer { padding: 22px 20px 30px; }

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

    .section-title { font-size: 22px; }
    .section-subtitle { font-size: 13px; margin-bottom: 36px; }

    .cta-btn { font-size: 15px; padding: 14px 30px; gap: 8px; }
    .cta-btn img { width: 22px; height: 22px; }

    .fixed-cta { bottom: 16px; }
    .fixed-cta a { font-size: 14px; padding: 12px 26px; gap: 8px; }
    .fixed-cta a img { width: 20px; height: 20px; }

    .urgency-text { font-size: 13px; gap: 6px; }
    .urgency-text .countdown { font-size: 18px; }

    .faq-question { padding: 16px 20px; font-size: 14px; }
    .faq-answer-inner { padding: 0 20px 16px; font-size: 12px; }

    .final-cta { padding: 60px 16px; }
    .final-cta h2 { font-size: 24px; }
    .final-cta p { font-size: 14px; margin-bottom: 28px; }
}

@media (max-width: 420px) {
    .hero-inner { padding: 50px 12px 24px; }
    .hero h1 { font-size: 24px; }
    .hero-stats { gap: 12px; }
    .hero-stat-value { font-size: 20px; }
    .hero-main-img { max-width: 220px; }
    .hero-float-card { display: none; }
    .cta-btn { font-size: 14px; padding: 12px 24px; }
    .fixed-cta a { font-size: 13px; padding: 11px 22px; }
    .profit-marquee-content .item { padding: 0 20px; font-size: 12px; }
    .live-card .value { font-size: 18px; }
}
</style>