:root {
    --primary: #6C63FF;
    --primary-dark: #5a52d5;
    --secondary: #2A2D3E;
    --background: #1a1a2e;
    --background-alt: #16213e;
    --text: #ffffff;
    --text-muted: #a0a0a0;
    --accent: #FF6584;
    --success: #00b894;
    --gradient: linear-gradient(135deg, #6C63FF 0%, #FF6584 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Header & Nav */
.hero {
    background: radial-gradient(circle at top right, #2a2d3e 0%, #1a1a2e 100%);
    padding: 30px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: var(--primary);
    filter: blur(150px);
    opacity: 0.2;
    border-radius: 50%;
    z-index: 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 10;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.nav-links a {
    color: var(--text);
    font-weight: 500;
    font-size: 16px;
}

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

.btn-contact {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 10px 24px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

/* Hero Content */
.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.badge-pill {
    display: inline-block;
    background-color: rgba(108, 99, 255, 0.2);
    color: #9d96ff;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(108, 99, 255, 0.3);
}

.hero-content h1 {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 800;
}

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

.hero-content p {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.app-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.store-badge {
    display: flex;
    align-items: center;
    background-color: var(--text);
    color: var(--background);
    padding: 10px 24px;
    border-radius: 12px;
    gap: 12px;
}

.store-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.store-badge .icon {
    font-size: 28px;
}

.store-badge .text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.store-badge .small {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.store-badge .large {
    font-size: 18px;
    font-weight: 800;
    line-height: 1;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat .number {
    font-size: 32px;
    font-weight: 800;
    color: var(--text);
}

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

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

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

.section-header h2 {
    font-size: 42px;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-muted);
}

/* How It Works */
.how-it-works {
    background-color: var(--background);
}

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

.step-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 24px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.step-number {
    font-size: 60px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: 20px;
    right: 30px;
}

.step-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary);
}

.step-card p {
    color: var(--text-muted);
}

/* Features */
.features {
    background-color: var(--background-alt);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 20px;
    transition: transform 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.05);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 15px;
}

/* Pricing */
.pricing {
    background-color: var(--background);
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.pricing-card {
    background: var(--background-alt);
    padding: 40px;
    border-radius: 24px;
    width: 350px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.pricing-card.popular {
    border: 2px solid var(--primary);
    transform: scale(1.05);
    background: linear-gradient(180deg, #202436 0%, #16213e 100%);
}

.popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.price {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 30px;
}

.price span {
    font-size: 16px;
    color: var(--text-muted);
    font-weight: 400;
}

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

.features-list li {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
}

.btn-plan {
    display: block;
    text-align: center;
    padding: 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    font-weight: 600;
}

.btn-plan.btn-primary {
    background: var(--primary);
}

.btn-plan:hover {
    opacity: 0.9;
}

/* FAQ */
.faq {
    background-color: var(--background-alt);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.faq-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text);
}

.faq-item p {
    color: var(--text-muted);
}

/* Footer */
footer {
    background-color: var(--background);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-col p {
    color: var(--text-muted);
    margin-top: 20px;
}

.footer-col h4 {
    margin-bottom: 24px;
    font-size: 18px;
}

.footer-col a {
    display: block;
    color: var(--text-muted);
    margin-bottom: 12px;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 14px;
}

/* Privacy Page Specific */
.small-hero {
    padding-bottom: 40px;
    min-height: auto;
}

.small-hero .hero-content h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.privacy-policy {
    background: var(--background);
}

.policy-content {
    background: var(--background-alt);
    padding: 60px;
    border-radius: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.policy-content h3 {
    font-size: 24px;
    margin: 40px 0 20px;
    color: var(--primary);
}

.policy-content h4 {
    font-size: 18px;
    margin: 24px 0 12px;
    color: var(--text);
}

.policy-content p,
.policy-content li {
    color: var(--text-muted);
    margin-bottom: 16px;
}

.policy-content ul {
    margin-left: 20px;
    margin-bottom: 24px;
}

.policy-content a {
    color: var(--primary);
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 42px;
    }

    .nav-links {
        display: none;
    }

    .pricing-card.popular {
        transform: none;
    }

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