:root {
    --bg-dark: #0a0a12;
    --bg-card: rgba(255, 255, 255, 0.05);
    --primary: #00f2ea;
    /* Cyan Neon */
    --secondary: #ff0055;
    /* Pink Neon */
    --accent: #7000ff;
    /* Purple */
    --text-main: #ffffff;
    --text-muted: #b3b3b3;
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-main: 'Outfit', sans-serif;
    --font-tech: 'Rajdhani', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-main);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Background Effects */
.background-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 10s infinite ease-in-out;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--accent);
    top: -100px;
    left: -100px;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: var(--primary);
    bottom: -50px;
    right: -50px;
    animation-delay: 5s;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(circle at center, black, transparent 80%);
}

.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.2));
    background-size: 100% 4px;
    z-index: 10;
    pointer-events: none;
    opacity: 0.3;
}

/* Typography & Utilities */
h1,
h2,
h3,
h4 {
    font-family: var(--font-tech);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.highlight {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(0, 242, 234, 0.5);
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    color: white;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    text-transform: uppercase;
    box-shadow: 0 0 20px rgba(0, 242, 234, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid transparent;
    margin-top: 20px;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 242, 234, 0.6);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--primary);
    box-shadow: none;
}

.cta-button.secondary:hover {
    background: rgba(0, 242, 234, 0.1);
    box-shadow: 0 0 20px rgba(0, 242, 234, 0.2);
}

/* Animations */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 242, 234, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(0, 242, 234, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 242, 234, 0);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

.pulse-fast {
    animation: pulse 1.5s infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(20px, -20px);
    }
}

/* Header / Hero */
.hero-section {
    padding: 60px 0;
    text-align: center;
    position: relative;
}

.alert-bar {
    background: rgba(255, 0, 85, 0.2);
    border: 1px solid var(--secondary);
    color: var(--secondary);
    padding: 10px;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 30px;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(255, 0, 85, 0.2);
}

.timer-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
}

.timer-box {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass-border);
    padding: 15px 25px;
    border-radius: 10px;
    min-width: 100px;
}

.timer-box span {
    display: block;
}

.timer-box #minutes,
.timer-box #seconds {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-tech);
    color: var(--primary);
}

.timer-box .label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.timer-separator {
    font-size: 2rem;
    font-weight: bold;
    margin-top: -20px;
}

.main-headline {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.sub-headline {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-offer {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 20px;
    max-width: 700px;
    margin: 0 auto 30px;
}

.price-tag {
    font-size: 1.5rem;
    margin-top: 10px;
}

.price {
    color: var(--secondary);
    font-weight: bold;
    font-size: 2rem;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-muted);
    margin-right: 15px;
}

/* Pain Points */
.pain-points {
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: visible;
}

.truth-box {
    background: rgba(0, 242, 234, 0.05);
    border-left: 4px solid var(--primary);
    padding: 30px;
    margin: 40px auto;
    max-width: 800px;
    text-align: left;
}

.truth-list {
    list-style: none;
    margin-top: 20px;
}

.truth-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.truth-list i {
    color: var(--secondary);
    margin-top: 5px;
}

.questions {
    margin-top: 50px;
}

.question {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--text-main);
}

/* Learning List */
.what-you-learn {
    padding: 80px 0;
    position: relative;
    overflow: visible;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--primary);
}

.learning-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.learning-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 15px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    border: 1px solid transparent;
    transition: 0.3s;
}

.learning-item:hover {
    border-color: var(--primary);
    background: rgba(0, 242, 234, 0.05);
}

.learning-item i {
    color: var(--primary);
    font-size: 1.5rem;
    margin-top: 3px;
}

.summary-box {
    margin-top: 60px;
    text-align: center;
    background: var(--bg-card);
    padding: 40px;
    border-radius: 20px;
}

/* Preview Section */
.preview-section {
    padding: 80px 0;
    text-align: center;
}

/* Mockup Images */
.mockup-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.mockup-img {
    max-width: 100%;
    width: 350px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
    transition: transform 0.5s ease;
}

.mockup-img:hover {
    transform: scale(1.05) translateY(-10px);
}

/* Guarantee */
.guarantee {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9));
    padding: 80px 0;
    text-align: center;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.guarantee-badge {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 20px;
}

/* Bio Section */
.bio-section {
    padding: 80px 0;
}

.bio-content {
    display: flex;
    align-items: center;
    gap: 50px;
    background: var(--bg-card);
    padding: 40px;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
}

.bio-image-container {
    position: relative;
    flex-shrink: 0;
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--primary), transparent 70%);
    opacity: 0.3;
    filter: blur(20px);
    z-index: 0;
}

.bio-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 1;
    border: 3px solid var(--primary);
    box-shadow: 0 0 20px rgba(0, 242, 234, 0.3);
}

.bio-text {
    flex: 1;
}

.contacts {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
}

.contact-item i {
    color: var(--primary);
}

/* Final CTA */
.final-cta {
    padding: 100px 0;
    text-align: center;
    background: radial-gradient(circle at center, rgba(0, 242, 234, 0.1), transparent 70%);
}

/* 3D Floating Icons */
.floating-3d-icon {
    position: absolute;
    z-index: 2;
    pointer-events: none;
    background: transparent !important;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
    animation: float-3d 8s ease-in-out infinite;
    width: 160px;
    height: auto;
    display: block;
    transform-style: preserve-3d;
    will-change: transform;
}

@keyframes float-3d {

    0%,
    100% {
        transform: translateY(0) rotate3d(1, 1, 0, 0deg) scale(1);
        filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
    }

    25% {
        transform: translateY(-15px) rotate3d(1, 1, 0, 5deg) scale(1.02);
        filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.4));
    }

    50% {
        transform: translateY(0) rotate3d(1, 1, 0, 0deg) scale(1);
        filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
    }

    75% {
        transform: translateY(15px) rotate3d(1, 1, 0, -5deg) scale(0.98);
        filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.6));
    }
}

/* Hero Icons */
.google-g {
    top: 12%;
    right: 2%;
    animation-delay: 0s;
    width: 180px;
}

.storefront {
    bottom: 15%;
    left: 2%;
    animation-delay: 2s;
    animation-direction: reverse;
    width: 170px;
}

.rocket {
    top: 15%;
    left: 5%;
    animation-delay: 1s;
    width: 140px;
}

/* Section Icons */
.map-pin {
    top: -40px;
    right: 8%;
    width: 140px;
    position: relative;
    flex-shrink: 0;
}

.target {
    bottom: 20%;
    right: 5%;
    animation-delay: 3s;
    width: 150px;
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
    .floating-3d-icon {
        width: 100px;
        opacity: 0.8;
        z-index: 0;
    }

    .google-g {
        top: 5%;
        right: -10px;
    }

    .storefront {
        bottom: 5%;
        left: -10px;
    }

    .rocket {
        top: 0;
        left: 0;
        width: 90px;
    }

    .map-pin {
        width: 80px;
    }

    .target {
        bottom: 10px;
        right: -10px;
        width: 100px;
    }
}

@media (max-width: 768px) {
    .main-headline {
        font-size: 2rem;
    }

    .timer-container {
        gap: 5px;
    }

    .timer-box {
        padding: 10px;
        min-width: 70px;
    }

    .timer-box #minutes,
    .timer-box #seconds {
        font-size: 1.8rem;
    }

    .bio-content {
        flex-direction: column;
        text-align: center;
    }

    .contacts {
        justify-content: center;
    }

    .mockup-container {
        gap: 30px;
    }

    .mockup-img {
        width: 80%;
    }
}

/* Scroll Animation Classes */
.hidden-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.in-view {
    opacity: 1;
    transform: translateY(0);
}