@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&display=swap');

:root {
    --primary: #E37D07; /* Rubin Orange */
    --primary-glow: rgba(227, 125, 7, 0.4);
    --accent: #3d1e00; 
    --bg-dark: #000000;
    --bg-card: #120d08;
    --text-main: #ffffff;
    --text-dim: #b0b0b0;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(61, 30, 0, 0.4) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(61, 30, 0, 0.3) 0%, transparent 40%);
    background-attachment: fixed;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

/* Header */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.8rem 5%;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.countdown {
    display: flex;
    gap: 8px;
    align-items: center;
    background: var(--accent);
    padding: 6px 14px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: timerPulse 2s infinite ease-in-out;
}

@keyframes timerPulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1); }
    50% { transform: scale(1.02); box-shadow: 0 0 15px 0 rgba(227, 125, 7, 0.5); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1); }
}

.timer-icon {
    color: #fff;
    font-size: 0.8rem;
}

.timer-text {
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    margin-right: 5px;
}

.header-btn {
    background: var(--primary);
    color: #000;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: var(--transition);
    white-space: nowrap;
    box-shadow: 0 0 15px var(--primary-glow);
    animation: pulse 2s infinite;
}

.header-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px var(--primary-glow);
}

/* Hero Section */
.hero {
    padding: 80px 5% 40px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.badge-top {
    background: var(--accent);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 24px;
    display: inline-block;
}

h1 {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 24px;
    color: #fff;
    text-transform: uppercase;
}

h1 span {
    color: var(--primary);
}

.hero-subtitle {
    color: var(--text-dim);
    font-size: 1.2rem;
    max-width: 700px;
    margin-bottom: 40px;
    font-weight: 600;
}

.hero-subtitle strong {
    color: #fff;
    background: var(--primary);
    padding: 2px 8px;
    border-radius: 4px;
    color: #000;
}

.benefit-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 16px;
    border-radius: 12px;
    margin: 5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-image-container {
    position: relative;
    margin-top: 40px;
    width: 100%;
    max-width: 800px;
}

.hero-image {
    width: 100%;
    border-radius: 24px;
    border: none;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.9);
}

.expert-badge {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    backdrop-filter: blur(20px);
    padding: 20px 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
    min-width: 280px;
}

.expert-name {
    display: block;
    font-weight: 800;
    font-size: 1rem;
}

.expert-status {
    color: var(--text-dim);
    font-size: 0.8rem;
    font-weight: 600;
}

.verified-icon {
    color: #3897f0; /* Classic Verified Blue */
    margin-right: 4px;
}

/* Features */
.features {
    padding: 60px 5%;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: url('assets/chart.png') no-repeat center;
    background-size: contain;
    opacity: 0.1;
    z-index: -1;
    pointer-events: none;
}

h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.accordion-item {
    background: var(--bg-card);
    border-radius: 24px;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: var(--transition);
}

.accordion-header {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.accordion-title {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
    font-size: 1.2rem;
}

.accordion-icon {
    width: 40px;
    height: 40px;
    background: var(--accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.accordion-arrow {
    transition: var(--transition);
}

.accordion-content {
    max-height: 0;
    padding: 0 24px;
    color: var(--text-dim);
    transition: max-height 0.3s ease-out;
    border-top: 0px solid rgba(255, 255, 255, 0);
}

.accordion-item.active {
    border-color: rgba(255, 255, 255, 0.3);
    background: var(--accent);
}

.accordion-item.active .accordion-content {
    max-height: 200px;
    padding: 0 24px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.accordion-item.active .accordion-arrow {
    transform: rotate(180deg);
}

/* Testimonials */
.testimonials {
    padding: 60px 5%;
    background: radial-gradient(circle at center, rgba(227, 125, 7, 0.05) 0%, transparent 70%);
}

.testim-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 40px auto;
}

.testim-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px;
    border-radius: 24px;
    transition: var(--transition);
}

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

.user-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.user-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar {
    width: 40px;
    height: 40px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.8rem;
}

.user-name {
    font-weight: 700;
}

.time {
    color: var(--text-dim);
    font-size: 0.8rem;
}

.profit-tag {
    color: var(--primary);
    font-weight: 800;
    background: rgba(227, 125, 7, 0.1);
    padding: 6px 12px;
    border-radius: 8px;
    display: inline-block;
    margin-top: 10px;
    border: 1px solid var(--primary-glow);
}

/* Final CTA */
.final-cta {
    padding: 100px 5%;
    text-align: center;
}

.main-pulse-btn {
    display: inline-block;
    background: var(--primary);
    color: #000;
    padding: 20px 50px;
    border-radius: 100px;
    font-weight: 900;
    font-size: 1.2rem;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 0 30px var(--primary-glow);
    animation: pulse 2s infinite;
    transition: var(--transition);
}

.main-pulse-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 50px var(--primary-glow);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(227, 125, 7, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(227, 125, 7, 0); }
    100% { box-shadow: 0 0 0 0 rgba(227, 125, 7, 0); }
}

/* Footer */
footer {
    padding: 40px 5%;
    text-align: center;
    color: var(--text-dim);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Mobile specific */
@media (max-width: 768px) {
    h1 { font-size: 1.8rem; }
    
    .hero {
        padding-top: 40px;
    }
    
    .hero-image-container {
        order: 3;
        margin-top: 30px;
    }
    
    .hero-benefits {
        order: 2;
    }
    
    h1 {
        order: 1;
    }

    .hero-subtitle {
        order: 1.5;
        margin-bottom: 20px;
    }

    /* Floating Footer Button */
    .mobile-float-cta {
        display: block !important;
        position: fixed;
        bottom: 20px;
        left: 5%;
        right: 5%;
        z-index: 2000;
        background: var(--primary);
        color: #000;
        text-align: center;
        padding: 20px;
        border-radius: 12px;
        font-weight: 900;
        text-decoration: none;
        text-transform: uppercase;
        box-shadow: 0 10px 40px rgba(227, 125, 7, 0.3);
        animation: floatBtnPulse 1.5s infinite;
    }
}

@keyframes floatBtnPulse {
    0% { transform: scale(1); box-shadow: 0 10px 40px rgba(0,0,0,0.8); }
    50% { transform: scale(1.03); box-shadow: 0 15px 50px rgba(255, 255, 255, 0.2); }
    100% { transform: scale(1); box-shadow: 0 10px 40px rgba(0,0,0,0.8); }
}

.mobile-float-cta {
    display: none;
}
