@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

:root {
    --bg-color: #050511;
    --card-bg: rgba(20, 20, 40, 0.7);
    --primary: #6366f1;
    --primary-glow: #6366f180;
    --accent: #a855f7;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --border: rgba(255, 255, 255, 0.1);
}

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

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

/* Background Effects */
.glow-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background:
        radial-gradient(circle at 15% 50%, rgba(99, 102, 241, 0.15) 0%, transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(168, 85, 247, 0.15) 0%, transparent 25%);
}

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

/* Typography */
h1,
h2,
h3 {
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3.5rem;
    background: linear-gradient(to right, #fff, #a5b4fc);
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 20px;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: px;
    text-align: center;
}

p {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* Components */
.btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 20px var(--primary-glow);
}

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

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

.card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
}

/* Sections */
header {
    text-align: center;
    padding: 100px 0;
}

.problem-section {
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid var(--border);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    display: block;
}

.pricing-card {
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.9) 100%);
    border: 1px solid rgba(99, 102, 241, 0.3);
    max-width: 600px;
    margin: 60px auto;
    padding: 50px;
    text-align: center;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(transparent, rgba(99, 102, 241, 0.1), transparent);
    animation: rotate 10s linear infinite;
    z-index: 0;
    pointer-events: none;
}

.pricing-card>* {
    position: relative;
    z-index: 1;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.price-display {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    margin: 20px 0;
}

.strike {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1.5rem;
    margin-right: 15px;
}

/* Order Bump */
.order-bump {
    background: rgba(255, 240, 100, 0.05);
    border: 2px dashed #facc15;
    padding: 20px;
    border-radius: 12px;
    text-align: left;
    margin: 30px 0;
    display: flex;
    align-items: start;
    gap: 15px;
}

.order-bump input[type="checkbox"] {
    width: 24px;
    height: 24px;
    margin-top: 5px;
    cursor: pointer;
    accent-color: #facc15;
}

.bump-title {
    color: #facc15;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
}

.bump-desc {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: #ddd;
}

.guarantee {
    margin-top: 20px;
    font-size: 0.9rem;
    opacity: 0.7;
}

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

    .pricing-card {
        padding: 30px;
    }
}