:root {
    --bg-color: #050505;
    --bg-secondary: #0a0a0a;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.08);
    --text-primary: #ffffff;
    --text-secondary: #d4d4d8;
    --text-muted: #71717a;
    --accent-primary: #3b82f6;
    --accent-secondary: #8b5cf6;
    --accent-gradient: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    --accent-gradient-hover: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    --gold: #fbbf24;
    --danger: #ef4444;
    --success: #10b981;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --container-max: 900px;
    --spacing-md: 2rem;
    --spacing-lg: 5rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
    font-size: 18px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

h1 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
}

p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

strong {
    color: white;
    font-weight: 600;
}

.text-gradient {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.text-center {
    text-align: center;
}

.text-success {
    color: var(--success) !important;
}

.text-danger {
    color: var(--danger) !important;
}

/* Layout */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.text-container {
    max-width: 800px;
    margin: 0 auto;
}

.center-text {
    text-align: center;
}

section {
    padding: var(--spacing-lg) 0;
    position: relative;
}

.bg-darker {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
}

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 0;
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.1) 0%, rgba(5, 5, 5, 0) 60%);
}

.hero-content h3 {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1rem;
    color: var(--text-muted);
    margin: 1rem 0 2rem;
}

.hero-headline {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    line-height: 1.2;
    max-width: 1000px;
    margin: 0 auto;
}

.accent-text {
    color: var(--accent-primary);
    display: block;
    margin-top: 0.5rem;
}

/* Text Sections */
.lead-in {
    font-size: 1.5rem;
    color: var(--text-primary);
    font-weight: 600;
}

.sub-headline {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    margin-top: 1rem;
}

.quote {
    font-size: 1.5rem;
    font-style: italic;
    border-left: 4px solid var(--accent-primary);
    padding-left: 1.5rem;
    color: white;
    margin: 2rem 0;
}

/* Highlight Box */
.highlight-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    margin: 2.5rem 0;
    border: 1px solid var(--card-border);
}

.highlight-box.accent-border {
    border-color: var(--accent-primary);
    background: rgba(59, 130, 246, 0.05);
}

.highlight-box p:last-child {
    margin-bottom: 0;
}

/* Lists */
.feature-list {
    list-style: none;
    margin: 2rem 0;
}

.feature-list li {
    padding-left: 2.5rem;
    position: relative;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.feature-list.check-list li::before {
    content: '✅';
    position: absolute;
    left: 0;
}

.feature-list.cross-list li::before {
    content: '❌';
    position: absolute;
    left: 0;
}

.module-list {
    list-style: none;
    margin-top: 1rem;
}

.module-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.module-list li::before {
    content: '•';
    color: var(--accent-primary);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    line-height: 1rem;
}

/* Cards & Grid */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 2rem;
    transition: transform 0.2s ease;
    position: relative;
    overflow: hidden;
}

.card:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.card-header {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-secondary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

/* CTA */
.btn-cta {
    display: inline-block;
    background: var(--accent-gradient);
    color: white;
    padding: 1.5rem 3rem;
    border-radius: 5rem;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    margin: 2rem 0 1rem;
    box-shadow: 0 10px 40px -10px rgba(59, 130, 246, 0.5);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 50px -10px rgba(139, 92, 246, 0.6);
    background: var(--accent-gradient-hover);
}

.small-text {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.price-box {
    font-size: 5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin: 1rem 0;
    font-family: var(--font-heading);
}

.currency {
    font-size: 2.5rem;
    vertical-align: super;
    opacity: 0.7;
}

.big-emphasis {
    font-size: 1.5rem;
    color: white;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: var(--accent-primary);
}

/* Guarantee Box */
.guarantee-box {
    border: 2px dashed var(--gold);
    background: rgba(251, 191, 36, 0.05);
    padding: 3rem;
    border-radius: 16px;
    margin-top: 4rem;
    text-align: center;
}

.guarantee-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.guarantee-box h3 {
    color: var(--gold);
}

/* FAQ */
.faq-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 3rem;
}

.faq-item {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 12px;
}

.faq-item h4 {
    color: white;
    margin-bottom: 0.5rem;
}

.faq-item p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Footer Disclaimers */
.disclaimers {
    background: #000;
    padding: 4rem 0;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.disclaimers h4 {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 1rem;
}

.footer-links a:hover {
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    :root {
        --spacing-lg: 3rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    .hero-headline {
        font-size: 2rem;
    }

    .btn-cta {
        width: 100%;
        padding: 1.2rem;
        font-size: 1.1rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-links a {
        margin: 0 0.5rem;
    }
}