:root {
    --primary-color: #00d4ff;
    /* Electric Blue */
    --secondary-color: #0056b3;
    /* Deep Blue */
    --accent-color: #00ff88;
    /* Cyber Green */
    --bg-dark: #0a0a1a;
    /* Very Dark Blue */
    --bg-card: #151525;
    /* Slightly Lighter Dark */
    --text-light: #ffffff;
    --text-gray: #a0a0b0;
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
    --gradient-hero: linear-gradient(135deg, #0a0a1a 0%, #1a1a3a 100%);
    --gradient-btn: linear-gradient(90deg, #0056b3 0%, #00d4ff 100%);
    --shadow-glow: 0 0 20px rgba(0, 212, 255, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glowPulse {
    0% {
        box-shadow: 0 0 10px rgba(0, 212, 255, 0.2);
    }

    50% {
        box-shadow: 0 0 25px rgba(0, 212, 255, 0.6);
    }

    100% {
        box-shadow: 0 0 10px rgba(0, 212, 255, 0.2);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

/* Components */
.btn-primary {
    display: inline-block;
    background: var(--gradient-btn);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 86, 179, 0.4);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.6);
}

.section-padding {
    padding: 80px 0;
}

/* Hero Section */
.hero {
    background: var(--gradient-hero);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    /* Space for fixed header if needed */
}

/* Add a subtle grid/cyber background effect overlay if possible */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    z-index: 10;
}

.hero-badge {
    display: inline-block;
    background: rgba(0, 255, 136, 0.1);
    color: var(--accent-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, #b4d9ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.hero p.subheadline {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 40px;
}

/* General Utilities */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .btn-primary {
        width: 100%;
        padding: 16px;
    }
}

/* Sections Common */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    background: linear-gradient(to right, #fff, #b4d9ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.bg-card {
    background-color: var(--bg-card);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 20px;
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 60px;
    height: 60px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.feature-card p {
    color: var(--text-gray);
}

/* Problem & Solution */
.problem-solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.text-left {
    text-align: left;
}

.text-red {
    color: #ff4757;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 5px;
}

.pain-points {
    list-style: none;
    margin-top: 30px;
}

.pain-points li {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.pain-points strong {
    color: var(--text-light);
    display: block;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.pain-points p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.solution-box {
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.1), rgba(0, 212, 255, 0.1));
    border: 1px solid rgba(0, 212, 255, 0.3);
    padding: 40px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.solution-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-btn);
}

.solution-box h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.text-accent {
    color: var(--accent-color);
}

.solution-box p {
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: #e0e0e0;
}

.solution-box strong {
    color: var(--primary-color);
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.animate-active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 900px) {
    .problem-solution-grid {
        grid-template-columns: 1fr;
    }
}

/* Steps Section */
.steps-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.step-card {
    flex: 1;
    min-width: 250px;
    background: rgba(255, 255, 255, 0.02);
    padding: 30px;
    border-radius: 15px;
    position: relative;
    border-top: 2px solid transparent;
    transition: all 0.3s;
}

.step-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-top-color: var(--accent-color);
    transform: translateY(-5px);
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: 10px;
    right: 20px;
    font-family: var(--font-heading);
}

.step-card h3 {
    margin-bottom: 15px;
    color: var(--accent-color);
}

.step-card p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Split Layout (Benefits) */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.floating-image {
    max-width: 100%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.benefit-list {
    list-style: none;
    margin: 30px 0;
}

.benefit-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.check-icon {
    color: var(--accent-color);
    width: 20px;
    height: 20px;
}

.mt-4 {
    margin-top: 1.5rem;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: #1a1a2e;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.stars {
    color: #ffd700;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.testimonial-card p {
    font-style: italic;
    color: #d0d0e0;
    margin-bottom: 20px;
}

.author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-btn);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
}

.author strong {
    display: block;
    color: white;
}

.author span {
    font-size: 0.85rem;
    color: var(--text-gray);
}

@media (max-width: 900px) {
    .split-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .benefit-list li {
        justify-content: center;
        text-align: left;
    }

    .steps-container {
        flex-direction: column;
    }
}

/* Offer Section */
.offer-box {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--accent-color);
    border-radius: 20px;
    padding: 50px;
    max-width: 600px;
    margin: 40px auto 0;
    box-shadow: 0 0 50px rgba(0, 255, 136, 0.1);
}

.old-price {
    text-decoration: line-through;
    color: var(--text-gray);
    font-size: 1.2rem;
}

.price {
    font-size: 4rem;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
    margin: 10px 0;
    font-family: var(--font-heading);
}

.payment-info {
    font-size: 1.1rem;
    color: var(--text-light);
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(0, 212, 255, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 212, 255, 0);
    }
}

.scarcity {
    color: #ff4757;
    font-weight: 600;
    background: rgba(255, 71, 87, 0.1);
    display: inline-block;
    padding: 5px 15px;
    border-radius: 50px;
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 0;
}

.faq-question {
    background: none;
    border: none;
    color: var(--text-light);
    width: 100%;
    text-align: left;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 15px;
    color: var(--text-gray);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 15px;
    /* Add padding when open */
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Utilities */
.p-5 {
    padding: 3rem;
}

.br-20 {
    border-radius: 20px;
}

.bg-dark {
    background-color: var(--bg-dark);
}

.text-gray {
    color: var(--text-gray);
}

@media (max-width: 600px) {
    .price {
        font-size: 3rem;
    }

    .offer-box {
        padding: 30px;
    }
}