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

:root {
    --primary: #00ff88;
    --primary-dark: #00cc6a;
    --primary-light: #33ffa3;
    --dark: #0a0e27;
    --darker: #05070f;
    --light: #ffffff;
    --gray: #8892b0;
    --card-bg: #151a30;
    --accent: #5865f2;
    --success: #00ff88;
    --text-primary: #ffffff;
    --text-secondary: #8892b0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--darker);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 255, 136, 0.1);
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    background: rgba(10, 14, 39, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(0, 255, 136, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
}

.nav-logo {
    height: 32px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.3));
}

.nav-logo:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.6));
}

.brand-text {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    padding: 4px 8px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.nav-links a:hover {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.nav-links a:hover::after {
    width: 100%;
}

.btn-nav-secondary {
    color: var(--text-primary) !important;
    padding: 8px 16px;
    border-radius: 6px;
    border: 1px solid rgba(136, 146, 176, 0.3);
}

.btn-nav-secondary:hover {
    border-color: var(--primary);
    color: var(--primary) !important;
}

.btn-nav-primary {
    background: linear-gradient(135deg, var(--primary), #00dd77);
    color: var(--darker) !important;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-nav-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 255, 136, 0.3);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    padding: 160px 0 120px;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Particle container for hero */
.hero-background .particle {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: -300px;
    left: -300px;
    animation-duration: 25s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: var(--accent);
    top: 50%;
    right: -250px;
    animation-duration: 20s;
    animation-delay: 2s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    bottom: -200px;
    left: 50%;
    animation-duration: 22s;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(50px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }
}

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

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

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

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--primary);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease-out, pulse 3s ease-in-out infinite;
    animation-delay: 0s, 1s;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3),
                0 0 40px rgba(0, 255, 136, 0.1);
    position: relative;
    overflow: hidden;
}

.hero-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 136, 0.3), transparent);
    animation: shimmer 3s infinite;
}

.badge-icon {
    font-size: 18px;
}

.hero-title {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -2px;
    animation: fadeInUp 1s ease-out 0.2s both;
    position: relative;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    animation: textGlow 3s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.5));
}

@keyframes textGlow {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.5))
                drop-shadow(0 0 30px rgba(0, 255, 136, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 30px rgba(0, 255, 136, 0.8))
                drop-shadow(0 0 50px rgba(0, 255, 136, 0.5))
                drop-shadow(0 0 70px rgba(0, 255, 136, 0.3));
    }
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 600px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.btn-primary-large {
    background: linear-gradient(135deg, var(--primary), #00dd77);
    color: var(--darker);
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 0.6s both;
    box-shadow: 0 4px 20px rgba(0, 255, 136, 0.3);
}

.btn-primary-large::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary-large:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary-large:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 255, 136, 0.6),
                0 0 60px rgba(0, 255, 136, 0.3);
    animation: buttonPulse 1s ease-in-out infinite;
}

@keyframes buttonPulse {
    0%, 100% {
        box-shadow: 0 12px 40px rgba(0, 255, 136, 0.6),
                    0 0 60px rgba(0, 255, 136, 0.3);
    }
    50% {
        box-shadow: 0 12px 50px rgba(0, 255, 136, 0.8),
                    0 0 80px rgba(0, 255, 136, 0.5);
    }
}

.btn-secondary-large {
    background: transparent;
    color: var(--text-primary);
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid rgba(136, 146, 176, 0.3);
    transition: border-color 0.3s, color 0.3s;
    display: inline-block;
}

.btn-secondary-large:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.hero-stats {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 36px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.6),
                 0 0 40px rgba(0, 255, 136, 0.3);
    animation: fadeInUp 1s ease-out both, numberGlow 3s ease-in-out infinite;
}

.stat-item:nth-child(1) .stat-number { animation-delay: 0.8s, 1s; }
.stat-item:nth-child(2) .stat-number { animation-delay: 0.9s, 1.2s; }
.stat-item:nth-child(3) .stat-number { animation-delay: 1s, 1.4s; }

@keyframes numberGlow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(0, 255, 136, 0.6),
                     0 0 40px rgba(0, 255, 136, 0.3);
    }
    50% {
        text-shadow: 0 0 30px rgba(0, 255, 136, 0.9),
                     0 0 60px rgba(0, 255, 136, 0.6),
                     0 0 80px rgba(0, 255, 136, 0.3);
    }
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-image {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    z-index: 0;
    opacity: 0.3;
    animation: dashboardFloat 6s ease-in-out infinite;
}

@keyframes dashboardFloat {
    0%, 100% {
        transform: translateY(-50%) translateX(0);
    }
    50% {
        transform: translateY(-50%) translateX(10px);
    }
}

.dashboard-preview {
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.preview-header {
    background: var(--dark);
    padding: 12px 16px;
    display: flex;
    gap: 8px;
    border-bottom: 1px solid rgba(0, 255, 136, 0.1);
}

.preview-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray);
}

.preview-dot:nth-child(1) {
    background: #ff5f56;
}

.preview-dot:nth-child(2) {
    background: #ffbd2e;
}

.preview-dot:nth-child(3) {
    background: #27c93f;
}

.preview-content {
    padding: 24px;
}

.preview-card {
    background: var(--dark);
    border-radius: 8px;
    padding: 20px;
}

.preview-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.preview-opportunity {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(136, 146, 176, 0.1);
}

.preview-opportunity:last-child {
    border-bottom: none;
}

.preview-team {
    font-size: 13px;
    color: var(--text-secondary);
}

.preview-roi {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 16px;
    letter-spacing: -1px;
    position: relative;
    animation: fadeInUp 1s ease-out both;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.6);
    animation: titleLineGlow 2s ease-in-out infinite;
}

@keyframes titleLineGlow {
    0%, 100% {
        width: 80px;
        box-shadow: 0 0 20px rgba(0, 255, 136, 0.6);
    }
    50% {
        width: 120px;
        box-shadow: 0 0 30px rgba(0, 255, 136, 0.9);
    }
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid rgba(136, 146, 176, 0.1);
    border-radius: 16px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out both;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.1), transparent);
    transition: left 0.6s;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(0, 255, 136, 0.3),
                0 0 0 1px rgba(0, 255, 136, 0.2),
                inset 0 0 30px rgba(0, 255, 136, 0.05);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 24px;
    display: block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.3));
}

.feature-card:hover .feature-icon {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.6));
    animation: iconFloat 2s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: scale(1.2) rotate(5deg) translateY(0); }
    50% { transform: scale(1.2) rotate(5deg) translateY(-5px); }
}

.feature-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
    padding: 120px 0;
    background: var(--dark);
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin-bottom: 80px;
}

.step {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.step-number {
    font-size: 72px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    opacity: 0.3;
    flex-shrink: 0;
    text-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
    animation: stepNumberGlow 3s ease-in-out infinite;
    position: relative;
}

.step-number::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    border: 2px solid rgba(0, 255, 136, 0.2);
    border-radius: 50%;
    animation: stepRingPulse 3s ease-in-out infinite;
}

.step:nth-child(1) .step-number { animation-delay: 0s; }
.step:nth-child(2) .step-number { animation-delay: 0.2s; }
.step:nth-child(3) .step-number { animation-delay: 0.4s; }

@keyframes stepNumberGlow {
    0%, 100% {
        opacity: 0.3;
        text-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
    }
    50% {
        opacity: 0.5;
        text-shadow: 0 0 50px rgba(0, 255, 136, 0.8);
    }
}

@keyframes stepRingPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.2;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.4;
    }
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

.step-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.example-box {
    background: var(--card-bg);
    border: 2px solid var(--primary);
    border-radius: 16px;
    padding: 40px;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.2),
                0 0 0 1px rgba(0, 255, 136, 0.3);
    animation: exampleBoxGlow 3s ease-in-out infinite;
}

@keyframes exampleBoxGlow {
    0%, 100% {
        box-shadow: 0 20px 60px rgba(0, 255, 136, 0.2),
                    0 0 0 1px rgba(0, 255, 136, 0.3);
    }
    50% {
        box-shadow: 0 20px 80px rgba(0, 255, 136, 0.4),
                    0 0 0 2px rgba(0, 255, 136, 0.5),
                    0 0 100px rgba(0, 255, 136, 0.2);
    }
}

.example-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 136, 0.1), transparent);
    animation: rotate-gradient 8s linear infinite;
}

@keyframes rotate-gradient {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.example-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 32px;
    text-align: center;
}

.example-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.example-bet {
    flex: 1;
    min-width: 200px;
    background: var(--dark);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.example-bet:hover {
    border-color: rgba(0, 255, 136, 0.3);
    box-shadow: 0 8px 30px rgba(0, 255, 136, 0.2);
    transform: translateY(-5px);
}

.example-book {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.example-odds {
    font-size: 32px;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 12px;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.6),
                 0 0 40px rgba(0, 255, 136, 0.3);
    animation: oddsGlow 2s ease-in-out infinite;
}

@keyframes oddsGlow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(0, 255, 136, 0.6),
                     0 0 40px rgba(0, 255, 136, 0.3);
    }
    50% {
        text-shadow: 0 0 30px rgba(0, 255, 136, 0.9),
                     0 0 60px rgba(0, 255, 136, 0.5);
    }
}

.example-stake {
    font-size: 16px;
    color: var(--text-secondary);
}

.example-vs {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-secondary);
}

.example-result {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    padding-top: 32px;
    border-top: 1px solid rgba(136, 146, 176, 0.1);
}

.result-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
}

.result-label {
    font-size: 14px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.result-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
}

.result-item.highlight .result-value {
    color: var(--primary);
    font-size: 28px;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.8),
                 0 0 40px rgba(0, 255, 136, 0.5),
                 0 0 60px rgba(0, 255, 136, 0.3);
    animation: highlightGlow 2s ease-in-out infinite;
}

@keyframes highlightGlow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(0, 255, 136, 0.8),
                     0 0 40px rgba(0, 255, 136, 0.5),
                     0 0 60px rgba(0, 255, 136, 0.3);
    }
    50% {
        text-shadow: 0 0 30px rgba(0, 255, 136, 1),
                     0 0 60px rgba(0, 255, 136, 0.7),
                     0 0 80px rgba(0, 255, 136, 0.5);
    }
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
    padding: 120px 0;
    background: var(--dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

.testimonial-card {
    background: var(--card-bg);
    border: 1px solid rgba(136, 146, 176, 0.1);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out both;
}

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(0, 255, 136, 0.2);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--darker);
    font-size: 18px;
    flex-shrink: 0;
}

.testimonial-author {
    flex: 1;
}

.author-name {
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.author-role {
    font-size: 14px;
    color: var(--text-secondary);
}

.testimonial-rating {
    color: #ffc800;
    font-size: 14px;
    margin-left: auto;
}

.testimonial-text {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 15px;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-stats {
    display: flex;
    gap: 8px;
    font-size: 13px;
    color: var(--primary);
    font-weight: 600;
    padding-top: 16px;
    border-top: 1px solid rgba(136, 146, 176, 0.1);
}

/* ============================================
   TRUST SIGNALS SECTION
   ============================================ */
.trust-signals {
    padding: 80px 0;
    background: rgba(0, 255, 136, 0.05);
    border-top: 1px solid rgba(0, 255, 136, 0.1);
    border-bottom: 1px solid rgba(0, 255, 136, 0.1);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

@media (max-width: 1024px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out both;
}

.trust-item:nth-child(1) { animation-delay: 0.1s; }
.trust-item:nth-child(2) { animation-delay: 0.2s; }
.trust-item:nth-child(3) { animation-delay: 0.3s; }
.trust-item:nth-child(4) { animation-delay: 0.4s; }

.trust-icon {
    font-size: 32px;
    filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.5));
    flex-shrink: 0;
    animation: float 3s ease-in-out infinite;
}

.trust-item:nth-child(2) .trust-icon { animation-delay: 0.5s; }
.trust-item:nth-child(3) .trust-icon { animation-delay: 1s; }
.trust-item:nth-child(4) .trust-icon { animation-delay: 1.5s; }

.trust-content {
    flex: 1;
}

.trust-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.trust-description {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: 120px 0;
    background: var(--dark);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 60px;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid rgba(136, 146, 176, 0.1);
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out both;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }
.faq-item:nth-child(6) { animation-delay: 0.6s; }

.faq-item:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 30px rgba(0, 255, 136, 0.15);
    transform: translateY(-4px);
}

.faq-question {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.faq-answer {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   GUARANTEE BOX
   ============================================ */
.guarantee-box {
    margin-top: 60px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(88, 101, 242, 0.1));
    border: 2px solid var(--primary);
    border-radius: 16px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 32px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.2);
    animation: fadeInUp 1s ease-out 0.5s both;
}

@media (max-width: 768px) {
    .guarantee-box {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }
    
    .guarantee-icon {
        font-size: 48px;
    }
}

.guarantee-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 136, 0.1), transparent);
    animation: rotate-gradient 8s linear infinite;
}

.guarantee-icon {
    font-size: 64px;
    filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.6));
    animation: float 3s ease-in-out infinite;
    flex-shrink: 0;
    z-index: 1;
}

.guarantee-content {
    flex: 1;
    z-index: 1;
}

.guarantee-title {
    font-size: 28px;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 12px;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.guarantee-text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing {
    padding: 120px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.pricing-card {
    background: var(--card-bg);
    border: 1px solid rgba(136, 146, 176, 0.1);
    border-radius: 16px;
    padding: 40px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out both;
}

.pricing-card:nth-child(1) { animation-delay: 0.2s; }
.pricing-card:nth-child(2) { animation-delay: 0.3s; }
.pricing-card:nth-child(3) { animation-delay: 0.4s; }

.pricing-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card:hover {
    transform: translateY(-12px) scale(1.03);
    border-color: var(--primary);
    box-shadow: 0 25px 60px rgba(0, 255, 136, 0.3),
                0 0 0 1px rgba(0, 255, 136, 0.2);
}

.pricing-card.featured {
    border-color: var(--primary);
    border-width: 2px;
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.2);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--darker);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 4px 20px rgba(0, 255, 136, 0.5);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(0, 255, 136, 0.5);
        transform: translateX(-50%) scale(1);
    }
    50% {
        box-shadow: 0 6px 30px rgba(0, 255, 136, 0.7);
        transform: translateX(-50%) scale(1.05);
    }
}

.plan-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.plan-price {
    margin-bottom: 16px;
}

.price-amount {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary);
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
    animation: priceGlow 3s ease-in-out infinite;
}

@keyframes priceGlow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
    }
    50% {
        text-shadow: 0 0 30px rgba(0, 255, 136, 0.8),
                     0 0 50px rgba(0, 255, 136, 0.4);
    }
}

.price-period {
    font-size: 18px;
    color: var(--text-secondary);
}

.plan-description {
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
}

.plan-features {
    list-style: none;
    margin-bottom: 40px;
}

.plan-features li {
    padding: 12px 0;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(136, 146, 176, 0.1);
}

.plan-features li:last-child {
    border-bottom: none;
}

.btn-pricing {
    width: 100%;
    display: block;
    text-align: center;
    padding: 16px;
    background: transparent;
    border: 2px solid rgba(136, 146, 176, 0.3);
    border-radius: 8px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    transition: border-color 0.3s, color 0.3s;
}

.btn-pricing:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-pricing-primary {
    width: 100%;
    display: block;
    text-align: center;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary), #00dd77);
    border: none;
    border-radius: 8px;
    color: var(--darker);
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-pricing-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 255, 136, 0.4);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(88, 101, 242, 0.1));
    border-top: 1px solid rgba(0, 255, 136, 0.2);
    border-bottom: 1px solid rgba(0, 255, 136, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: ctaPulse 4s ease-in-out infinite;
}

@keyframes ctaPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.8;
    }
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 16px;
    letter-spacing: -1px;
    animation: fadeInUp 1s ease-out both;
    text-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
}

.cta-title .gradient-text {
    animation: textGlow 3s ease-in-out infinite;
}

.cta-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.btn-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), #00dd77);
    color: var(--darker);
    padding: 20px 48px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 255, 136, 0.4);
    animation: fadeInUp 1s ease-out 0.8s both, ctaButtonPulse 2s ease-in-out infinite;
    animation-delay: 0.8s, 1.5s;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-cta:hover::before {
    width: 400px;
    height: 400px;
}

.btn-cta:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 50px rgba(0, 255, 136, 0.6),
                0 0 80px rgba(0, 255, 136, 0.4);
}

@keyframes ctaButtonPulse {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(0, 255, 136, 0.4);
    }
    50% {
        box-shadow: 0 8px 40px rgba(0, 255, 136, 0.6),
                    0 0 60px rgba(0, 255, 136, 0.3);
    }
}

.cta-note {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 80px 0 40px;
    background: var(--darker);
    border-top: 1px solid rgba(136, 146, 176, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 16px;
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 14px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-column a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--primary);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(136, 146, 176, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 8px;
}

.disclaimer {
    font-size: 12px !important;
    opacity: 0.7;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 968px) {
    .hero-title {
        font-size: 48px;
    }
    
    .features-grid,
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-image {
        display: none;
    }
}

@media (max-width: 640px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-stats {
        gap: 24px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .features-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .step {
        flex-direction: column;
    }
    
    .step-number {
        font-size: 48px;
    }
}

