:root {
    --bg-dark: #0b0b0f;
    --bg-card: #18181f;
    --bg-card-hover: #22222b;
    --primary: #3b82f6;
    /* Blue */
    --primary-gradient: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    --accent: #8b5cf6;
    /* Purple */
    --text-main: #ffffff;
    --text-muted: #a1a1aa;
    --border: #27272a;
    --glow: 0 0 20px rgba(59, 130, 246, 0.5);

    --container-width: 1200px;
    --border-radius: 16px;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

.section-padding {
    padding: 80px 0;
}

/* Typography */
h1,
h2,
h3 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

h2.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 15px;
}

.section-desc {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.highlight {
    color: var(--primary);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--border);
    color: var(--text-main);
}

.btn-outline:hover {
    border-color: var(--primary);
    background: rgba(59, 130, 246, 0.1);
}

.btn-secondary {
    background: var(--bg-card-hover);
    color: white;
}

.btn-secondary:hover {
    background: var(--border);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.1);
}

.btn-glow {
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    /* Initially hidden */
}

/* Header */
.header {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(11, 11, 15, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: var(--text-muted);
    font-weight: 500;
}

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

/* Hero */
.hero {
    padding-top: 160px;
    padding-bottom: 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.trial-info {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 80px;
    flex-wrap: wrap;
}

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

.stat-num {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-main);
}

.stat-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Benefits */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border);
    transition: 0.3s;
}

.benefit-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-5px);
    border-color: var(--primary);
}

.benefit-card .icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.benefit-card h3 {
    margin-bottom: 10px;
}

.benefit-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Instructions */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.step {
    background: var(--bg-card);
    padding: 30px;
    border-radius: var(--border-radius);
    position: relative;
    border: 1px solid var(--border);
}

.step-num {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: 10px;
    right: 20px;
}

.step h3 {
    margin-bottom: 10px;
    margin-top: 10px;
}

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

.center-btn {
    text-align: center;
}

/* Secondary CTA */
.secondary-cta {
    padding: 60px 0;
}

.cta-box {
    background: linear-gradient(135deg, #1e1e24 0%, #16161a 100%);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box h2 {
    margin-bottom: 20px;
}

.cta-box p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 30px;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: center;
}

.price-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border);
    text-align: center;
    position: relative;
    transition: 0.3s;
}

.price-card.popular {
    background: var(--bg-card-hover);
    border-color: var(--primary);
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gradient);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.badge-sm {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ef4444;
    padding: 3px 10px;
    border-radius: 5px;
    font-size: 0.75rem;
    font-weight: 700;
}

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

.price {
    font-size: 3rem;
    font-weight: 800;
    margin: 10px 0;
}

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

.price-total {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.price-features {
    margin-bottom: 30px;
    text-align: left;
}

.price-features li {
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.savings {
    font-size: 0.85rem;
    color: #10b981;
    /* Green */
    margin-top: 15px;
    font-weight: 600;
}

/* Platforms */
.platforms-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.platform-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: 0.3s;
}

.platform-item:hover {
    border-color: var(--text-muted);
    background: var(--bg-card-hover);
}

.platform-icon {
    font-size: 2.5rem;
}

/* SEO Text */
.seo-text {
    background: #0f0f13;
}

.text-content {
    max-width: 800px;
}

.text-content h2 {
    font-size: 2rem;
    margin-bottom: 25px;
}

.text-content h3 {
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-main);
}

.text-content p {
    color: var(--text-muted);
    margin-bottom: 15px;
    line-height: 1.7;
}

.text-content ul {
    list-style: disc;
    padding-left: 20px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.text-content ul li {
    margin-bottom: 10px;
}

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

/* Reviews */
.reviews-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: var(--border-radius);
}

.stars {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.review-text {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.review-author {
    font-weight: 600;
    color: var(--text-main);
}

/* Guarantees */
.guarantee-box {
    display: flex;
    align-items: center;
    gap: 30px;
    background: rgba(59, 130, 246, 0.05);
    /* very light blue tint */
    border: 1px solid rgba(59, 130, 246, 0.2);
    padding: 40px;
    border-radius: var(--border-radius);
    max-width: 800px;
    margin: 0 auto;
}

.shield-icon {
    font-size: 4rem;
}

/* Footer */
.footer {
    padding: 40px 0;
    border-top: 1px solid var(--border);
    margin-top: 50px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

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

/* Responsive */
@media (max-width: 968px) {
    h1 {
        font-size: 2.5rem;
    }

    .hero-stats {
        gap: 30px;
    }

    .nav {
        display: none;
    }

    /* Simplified nav for mobile */
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

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

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

    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    .guarantee-box {
        flex-direction: column;
        text-align: center;
    }

    .hero {
        padding-top: 120px;
    }
}