/* ============================
   RESET & BASE STYLES
   ============================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --primary-red: #ff3b3b;
    --primary-orange: #ff6b35;
    --dark-bg: #0a0a0f;
    --dark-card: #13131a;
    --dark-lighter: #1a1a24;
    --text-primary: #ffffff;
    --text-secondary: #b0b0c3;
    --gradient-1: linear-gradient(135deg, #ff3b3b 0%, #ff6b35 100%);
    --gradient-2: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-3: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);

    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;

    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================
   WebGL Fluid Cursor is handled by fluid-cursor.js
   ============================ */

/* ============================
   NAVIGATION (Homepage Style)
   ============================ */
.grid-container {
    width: min(1200px, 92vw);
    margin: 0 auto;
}

nav {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    background: rgba(5, 5, 9, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
}

.brand {
    font-weight: 700;
    letter-spacing: 0.2em;
    font-size: 24px;
    color: var(--text-primary);
    text-decoration: none;
    display: inline-block;
}

.brand span {
    color: var(--primary-red);
}

.nav-links {
    display: flex;
    gap: 22px;
    font-size: 0.95rem;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--text-primary);
}

/* Legacy navbar styles (kept for compatibility) */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    z-index: 1000;
}

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

.nav-brand {
    font-size: 24px;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-smooth);
    font-weight: 500;
}

.nav-menu a:hover {
    color: var(--text-primary);
}

.btn-nav {
    background: var(--gradient-1);
    color: white !important;
    padding: 10px 25px;
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 59, 59, 0.4);
}

/* ============================
   BUTTONS
   ============================ */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.btn-primary {
    background: var(--gradient-1);
    color: white;
    box-shadow: 0 10px 30px rgba(255, 59, 59, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 59, 59, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    background: var(--gradient-1);
    border-color: transparent;
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

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

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255, 59, 59, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -2px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-title .highlight {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 22px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-subtitle strong {
    color: var(--text-primary);
    font-weight: 700;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

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

/* ============================
   URGENCY BANNER
   ============================ */
.urgency-banner {
    background: var(--gradient-1);
    padding: 20px 0;
    text-align: center;
}

.urgency-text {
    font-size: 18px;
    font-weight: 600;
    color: white;
}

.highlight-red {
    color: #fff;
    font-weight: 800;
    text-decoration: underline;
}

/* ============================
   SECTION TITLES
   ============================ */
.section-title {
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 60px;
}

/* ============================
   HOW IT WORKS
   ============================ */
.how-it-works {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-lighter) 100%);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.step-card {
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.step-card:hover::before {
    transform: scaleX(1);
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 59, 59, 0.3);
    box-shadow: 0 20px 60px rgba(255, 59, 59, 0.2);
}

.step-number {
    font-size: 64px;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.3;
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

.step-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ============================
   PRICING
   ============================ */
.pricing {
    padding: var(--section-padding);
    background: var(--dark-bg);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.pricing-card {
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    transition: var(--transition-smooth);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 59, 59, 0.3);
    box-shadow: 0 20px 60px rgba(255, 59, 59, 0.2);
}

.pricing-card-featured {
    border: 2px solid var(--primary-red);
    background: linear-gradient(135deg, rgba(255, 59, 59, 0.05) 0%, var(--dark-card) 100%);
}

.badge-recommended {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--gradient-1);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
}

.pricing-header {
    margin-bottom: 30px;
}

.pricing-header h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.price {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 10px;
}

.currency {
    font-size: 24px;
    color: var(--text-secondary);
}

.amount {
    font-size: 56px;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.plan-tagline {
    color: var(--text-secondary);
    font-size: 16px;
    font-weight: 600;
}

.features-list {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.features-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: 900;
    font-size: 18px;
}

.pricing-card .btn {
    width: 100%;
    text-align: center;
}

/* ============================
   BRUTAL TRUTH SECTION
   ============================ */
.brutal-truth {
    padding: 80px 0;
    background: var(--dark-lighter);
    position: relative;
    overflow: hidden;
}

.brutal-truth::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 59, 59, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.truth-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.truth-content h2 {
    font-size: 42px;
    margin-bottom: 40px;
    font-weight: 900;
}

.truth-line {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.4;
}

.truth-line.highlight-red {
    color: var(--primary-red);
    font-size: 32px;
    margin-top: 30px;
}

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

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: rgba(255, 59, 59, 0.3);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--text-primary);
    padding: 25px 30px;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
}

.faq-question:hover {
    color: var(--primary-red);
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    transition: var(--transition-smooth);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--primary-red);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 25px 30px;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ============================
   SOCIAL PROOF
   ============================ */
.social-proof {
    padding: var(--section-padding);
    background: var(--dark-lighter);
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.platform-logo {
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    transition: var(--transition-smooth);
}

.platform-logo:hover {
    border-color: var(--primary-red);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 59, 59, 0.2);
}

/* ============================
   FINAL CTA
   ============================ */
.final-cta {
    padding: 100px 0;
    background: var(--dark-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 59, 59, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.final-cta h2 {
    font-size: 52px;
    font-weight: 900;
    margin-bottom: 40px;
    line-height: 1.2;
    position: relative;
    z-index: 2;
}

.final-cta .btn {
    position: relative;
    z-index: 2;
}

/* ============================
   FOOTER
   ============================ */
.footer {
    background: var(--dark-lighter);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-brand h3 {
    font-size: 28px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.footer-brand p {
    color: var(--text-secondary);
}

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

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

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

.footer-column a:hover {
    color: var(--text-primary);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
}

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

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================
   RESPONSIVE DESIGN
   ============================ */
@media (max-width: 768px) {
    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .section-title {
        font-size: 36px;
    }

    .steps-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .truth-line {
        font-size: 22px;
    }

    .truth-line.highlight-red {
        font-size: 24px;
    }

    .final-cta h2 {
        font-size: 36px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .nav-menu {
        gap: 15px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .btn-large {
        padding: 14px 30px;
        font-size: 16px;
    }
}

/* ============================
   FAQ PAGES
   ============================ */
.faq-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 120px 24px 80px;
}

.breadcrumb {
    margin-bottom: 40px;
    font-size: 14px;
    color: var(--text-secondary);
}

.breadcrumb a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.breadcrumb a:hover {
    color: var(--primary-red);
}

.breadcrumb span {
    margin: 0 8px;
}

.faq-header h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 40px;
    line-height: 1.2;
}

.faq-meta {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-content {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-primary);
}

.faq-content strong {
    color: var(--primary-red);
    font-weight: 600;
}

.faq-content p {
    margin-bottom: 24px;
}

.faq-content ol,
.faq-content ul {
    margin-bottom: 32px;
    padding-left: 24px;
}

.faq-content li {
    margin-bottom: 16px;
    color: var(--text-secondary);
}

.faq-content li strong {
    display: block;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.faq-cta {
    background: rgba(255, 59, 59, 0.1);
    border: 1px solid var(--primary-red);
    border-radius: 12px;
    padding: 24px;
    margin: 40px 0;
}

.faq-cta p {
    margin: 0;
    font-size: 16px;
}

.faq-cta a {
    color: var(--primary-red);
    text-decoration: underline;
    font-weight: 600;
}

.faq-cta a:hover {
    color: var(--primary-orange);
}

.faq-related {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-related h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.faq-related ul {
    list-style: none;
    padding: 0;
}

.faq-related li {
    margin-bottom: 16px;
}

.faq-related a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 16px;
    display: inline-block;
    transition: var(--transition-smooth);
}

.faq-related a:hover {
    color: var(--primary-red);
}

.faq-related a::before {
    content: "→ ";
    color: var(--primary-red);
    margin-right: 8px;
}

.faq-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    gap: 24px;
}

.faq-nav-link {
    flex: 1;
    padding: 24px;
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-decoration: none;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.faq-nav-link:hover {
    border-color: var(--primary-red);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 59, 59, 0.2);
}

.faq-nav-link.prev {
    text-align: left;
}

.faq-nav-link.next {
    text-align: right;
}

.faq-nav-label {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.faq-nav-title {
    font-size: 16px;
    color: var(--text-primary);
    font-weight: 500;
}

/* FAQ Index Page */
.faq-index {
    padding: 120px 0 80px;
}

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

.faq-card {
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 32px;
    text-decoration: none;
    transition: var(--transition-smooth);
    display: block;
}

.faq-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(255, 59, 59, 0.2);
}

.faq-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.4;
}

.faq-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.faq-card::after {
    content: "→";
    display: block;
    margin-top: 16px;
    color: var(--primary-red);
    font-size: 20px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .faq-page {
        padding: 80px 20px 60px;
    }

    .faq-header h1 {
        font-size: 32px;
    }

    .faq-navigation {
        flex-direction: column;
    }

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