:root {
    --bg-color: #050510;
    --text-color: #e0e0e0;
    --primary-color: #00f3ff;
    --secondary-color: #bc13fe;
    --accent-color: #ff0055;
    --card-bg: rgba(255, 255, 255, 0.05);
    --card-border: rgba(255, 255, 255, 0.1);
    --glass-blur: blur(12px);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;
    --gradient-main: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Background Effects */
.background-globes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.globe {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.globe-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-color);
    top: -100px;
    left: -100px;
    animation: float 20s infinite alternate;
}

.globe-2 {
    width: 500px;
    height: 500px;
    background: var(--secondary-color);
    bottom: -150px;
    right: -150px;
    animation: float 25s infinite alternate-reverse;
}

.globe-3 {
    width: 300px;
    height: 300px;
    background: var(--accent-color);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.2;
    animation: pulse-glow 10s infinite;
}

@keyframes float {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.2;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.3;
    }
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 0;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    text-shadow: 0 0 20px rgba(0, 243, 255, 0.3);
}

h2 {
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.highlight {
    color: var(--primary-color);
    font-weight: 700;
}

.cta-button {
    display: inline-block;
    background: var(--gradient-main);
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(188, 19, 254, 0.5);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 0 40px rgba(0, 243, 255, 0.7);
    background: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.pulse {
    animation: pulse-btn 2s infinite;
}

@keyframes pulse-btn {
    0% {
        box-shadow: 0 0 0 0 rgba(188, 19, 254, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(188, 19, 254, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(188, 19, 254, 0);
    }
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 0;
}

.badge {
    display: inline-block;
    background: rgba(255, 0, 85, 0.2);
    color: #ff0055;
    border: 1px solid #ff0055;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.subheadline {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.hero-description {
    font-size: 1.2rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* Pain Points */
.pain-points {
    padding: 4rem 0;
    text-align: center;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pain-card {
    background: var(--card-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--card-border);
    padding: 2rem;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.pain-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.pain-card i {
    width: 48px;
    height: 48px;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.full-width {
    grid-column: 1 / -1;
}

.pain-summary {
    margin-top: 3rem;
    font-size: 1.5rem;
    font-weight: 700;
}

/* Truth Section */
.truth {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-attachment: fixed;
    padding: 6rem 0;
    text-align: center;
}

.truth-text {
    background: rgba(0, 0, 0, 0.7);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--secondary-color);
}

.quote {
    font-size: 2rem;
    font-style: italic;
    color: var(--primary-color);
    margin: 2rem 0;
}

/* Solution Section */
.solution {
    padding: 6rem 0;
    text-align: center;
}

.steps-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.step {
    background: var(--card-bg);
    border: 1px solid var(--primary-color);
    padding: 2rem;
    border-radius: 50%;
    width: 200px;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.2);
}

.step-number {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: #000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.step-arrow {
    font-size: 3rem;
    color: var(--secondary-color);
}

.ready-badge {
    margin-top: 3rem;
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-color);
    text-shadow: 0 0 10px rgba(255, 0, 85, 0.5);
}

/* Features */
.features {
    padding: 4rem 0;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.feature-item {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid var(--card-border);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.feature-item i {
    color: var(--primary-color);
}

.feature-item.highlight-box {
    background: rgba(0, 243, 255, 0.1);
    border-color: var(--primary-color);
}

/* Paths */
.paths {
    padding: 4rem 0;
}

.paths-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.path-card {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--card-border);
}

.path-card.special {
    background: linear-gradient(135deg, rgba(188, 19, 254, 0.1), rgba(0, 243, 255, 0.1));
    border: 1px solid var(--secondary-color);
}

.path-card ul {
    list-style: none;
    margin-top: 1.5rem;
}

.path-card li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.path-card li i {
    color: var(--primary-color);
}

.highlight-note {
    background: var(--primary-color);
    color: #000;
    padding: 0.5rem;
    border-radius: 5px;
    font-weight: 700;
    text-align: center;
    margin-top: 1rem;
}

/* Bonuses */
.bonuses {
    padding: 4rem 0;
    text-align: center;
}

.bonus-list {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.bonus-item {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    max-width: 700px;
    border-left: 5px solid var(--accent-color);
}

.bonus-icon {
    font-size: 2rem;
}

.value-strikethrough {
    margin-top: 2rem;
    font-size: 1.5rem;
    color: #888;
}

.strikethrough {
    text-decoration: line-through;
    color: #ff5555;
    font-weight: bold;
}

/* Offer Section */
.offer {
    padding: 6rem 0;
    text-align: center;
}

.offer-card {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(0, 243, 255, 0.2);
}

.offer-header {
    background: var(--gradient-main);
    padding: 2rem;
}

.offer-header h3 {
    margin: 0;
    font-size: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.offer-body {
    padding: 3rem;
}

.scarcity {
    color: #888;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.final-offer-text {
    margin-top: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.price-box {
    margin: 2rem 0;
    color: var(--primary-color);
    font-weight: 900;
    text-shadow: 0 0 20px var(--primary-color);
}

.currency {
    font-size: 2rem;
    vertical-align: top;
}

.value {
    font-size: 6rem;
    line-height: 1;
}

.guarantee-badge {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--secondary-color);
    font-weight: 700;
}

/* Guarantee */
.guarantee {
    padding: 4rem 0;
    text-align: center;
}

.guarantee-content {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid #fff;
    max-width: 800px;
    margin: 0 auto;
}

.icon-large {
    font-size: 4rem;
    color: #fff;
    margin-bottom: 1rem;
}

.icon-large i {
    width: 64px;
    height: 64px;
}

/* Final CTA */
.final-cta {
    padding: 6rem 0;
    text-align: center;
}

.scarcity-warning {
    background: #ffaa00;
    color: #000;
    padding: 1rem;
    font-weight: 900;
    display: inline-block;
    border-radius: 5px;
    margin-bottom: 3rem;
    animation: flash 1s infinite alternate;
}

@keyframes flash {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0.7;
    }
}

.checklist {
    list-style: none;
    font-size: 1.5rem;
    margin-bottom: 3rem;
    display: inline-block;
    text-align: left;
}

.checklist li {
    margin-bottom: 1rem;
    color: var(--text-color);
}

footer {
    padding: 2rem 0;
    text-align: center;
    color: #666;
    border-top: 1px solid var(--card-border);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .container {
        width: 95%;
        padding: 1rem 0;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .hero {
        padding: 5rem 0 2rem;
        min-height: auto;
    }

    .pain-grid,
    .features-grid,
    .paths-grid {
        gap: 1.5rem;
    }

    .step {
        width: 160px;
        height: 160px;
        padding: 1rem;
    }

    .step h3 {
        font-size: 1.1rem;
    }

    .step-arrow {
        transform: rotate(90deg);
        margin: 0.5rem 0;
        font-size: 2rem;
    }

    .price-box .value {
        font-size: 4rem;
    }

    .offer-card {
        border-radius: 20px;
    }

    .offer-body {
        padding: 2rem 1.5rem;
    }

    .bonus-item {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }

    .checklist {
        font-size: 1.2rem;
    }

    section {
        padding: 3rem 0;
    }

    /* Fix potential overflow */
    body {
        overflow-x: hidden;
    }
}