/* Landing Pages CSS */
:root {
    --primary: #4e73df;
    --secondary: #858796;
    --dark: #1a1c23;
    --darker: #13141a;
    --card-bg: #1e2028;
    --text: #e3e6f0;
    --text-muted: #a0a4b8;
    --border: rgba(255,255,255,0.1);
    --gradient: linear-gradient(135deg, #4e73df 0%, #224abe 100%);
}

* { box-sizing: border-box; }

body {
    font-family: 'Segoe UI', system-ui, sans-serif;
    background: var(--darker);
    color: var(--text);
    line-height: 1.6;
}

.text-muted-light { color: var(--text-muted) !important; }

/* Navbar */
.navbar-custom {
    background: rgba(26, 28, 35, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

.navbar-custom.static {
    position: static;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text) !important;
}

.navbar-brand i { color: var(--primary); }

.nav-link {
    color: var(--text-muted) !important;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active { color: var(--text) !important; }

/* Buttons */
.btn-primary-custom {
    background: var(--gradient);
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    color: white;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(78, 115, 223, 0.3);
    color: white;
}

.btn-white {
    background: white;
    color: var(--primary) !important;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-white:hover {
    transform: scale(1.05);
    background: white;
    color: var(--primary) !important;
    box-shadow: 0 10px 30px rgba(255,255,255,0.3);
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: radial-gradient(ellipse at top, rgba(78, 115, 223, 0.15) 0%, transparent 60%);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero h1 span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.hero-image { position: relative; }

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.hero-badge {
    position: absolute;
    background: var(--card-bg);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.hero-badge.top { top: -20px; right: -20px; }
.hero-badge.bottom { bottom: -20px; left: -20px; }

/* Sections */
.section { padding: 100px 0; }

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* Feature Cards */
.feature-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--border);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.feature-icon.blue { background: rgba(78, 115, 223, 0.2); color: #4e73df; }
.feature-icon.green { background: rgba(28, 200, 138, 0.2); color: #1cc88a; }
.feature-icon.yellow { background: rgba(246, 194, 62, 0.2); color: #f6c23e; }
.feature-icon.red { background: rgba(231, 74, 59, 0.2); color: #e74a3b; }
.feature-icon.purple { background: rgba(133, 135, 150, 0.2); color: #858796; }
.feature-icon.cyan { background: rgba(54, 185, 204, 0.2); color: #36b9cc; }
.feature-icon.orange { background: rgba(253, 126, 20, 0.2); color: #fd7e14; }

.feature-card h4 {
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Scam Section */
.scam-section {
    background: linear-gradient(180deg, var(--darker) 0%, var(--dark) 100%);
}

.scam-highlight {
    background: linear-gradient(135deg, rgba(231, 74, 59, 0.1) 0%, rgba(231, 74, 59, 0.05) 100%);
    border: 1px solid rgba(231, 74, 59, 0.2);
    border-radius: 20px;
    padding: 3rem;
}

.scam-highlight h3 {
    color: #e74a3b;
    font-weight: 700;
}

/* Stats */
.stats-section {
    background: var(--card-bg);
}

.stat-item h2 {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* CTA */
.cta-section {
    background: var(--gradient);
    border-radius: 30px;
    padding: 4rem;
    margin: 0 1rem;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

/* Page Header */
.page-header {
    padding: 100px 0 60px;
    text-align: center;
    background: radial-gradient(ellipse at top, rgba(78, 115, 223, 0.15) 0%, transparent 60%);
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

/* FAQ */
.faq-section { padding: 60px 0; }

.faq-category { margin-bottom: 3rem; }

.faq-category h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

.accordion-item {
    background: var(--card-bg);
    border: 1px solid var(--border);
    margin-bottom: 1rem;
    border-radius: 12px !important;
    overflow: hidden;
}

.accordion-button {
    background: var(--card-bg);
    color: var(--text);
    font-weight: 600;
    padding: 1.25rem;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: rgba(78, 115, 223, 0.1);
    color: var(--primary);
}

.accordion-button::after {
    filter: invert(1);
}

.accordion-body {
    background: var(--card-bg);
    color: var(--text-muted);
    padding: 1.25rem;
    border-top: 1px solid var(--border);
}

.accordion-body ul {
    margin-bottom: 0;
    padding-left: 1.25rem;
}

.accordion-body li { margin-bottom: 0.5rem; }

/* Contact Box */
.contact-box {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--border);
}

/* Footer */
.landing-footer {
    background: var(--darker);
    padding: 3rem 0;
    border-top: 1px solid var(--border);
}

.landing-footer a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.landing-footer a:hover { color: var(--text); }

.landing-footer.compact {
    padding: 2rem 0;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .section { padding: 60px 0; }
    .cta-section { padding: 2rem; border-radius: 20px; }
    .page-header h1 { font-size: 2rem; }
}
