:root {
    --bg-color: #050505;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.1);
    --primary-color: #00f2ea;
    --secondary-color: #ff0055;
    --text-color: #ffffff;
    --text-muted: #a0a0a0;
    --navbar-bg: rgba(5, 5, 5, 0.1);
    --glow-primary: rgba(0, 242, 234, 0.08);
    --glow-secondary: rgba(255, 0, 85, 0.08);
    --button-text: #000000;
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
}

body.light-mode {
    --bg-color: #ffffff;
    --card-bg: rgba(0, 0, 0, 0.03);
    --card-border: rgba(0, 0, 0, 0.1);
    --primary-color: #00b8b0;
    --secondary-color: #e6004d;
    --text-color: #1a1a1a;
    --text-muted: #666666;
    --navbar-bg: rgba(255, 255, 255, 0.1);
    --glow-primary: rgba(0, 184, 176, 0.12);
    --glow-secondary: rgba(230, 0, 77, 0.12);
    --button-text: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

::selection {
    background-color: var(--primary-color);
    color: var(--bg-color);
}

::-moz-selection {
    background-color: var(--primary-color);
    color: var(--bg-color);
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    overflow-x: hidden;
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.background-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 15% 50%, var(--glow-primary) 0%, transparent 25%),
        radial-gradient(circle at 85% 30%, var(--glow-secondary) 0%, transparent 25%);
    z-index: -1;
    pointer-events: none;
    transition: background 0.3s ease;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-color);
}

h1 {
    font-size: 3.2rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--text-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--navbar-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    letter-spacing: -0.5px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.theme-toggle {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.theme-toggle:hover {
    transform: scale(1.1);
    border-color: var(--primary-color);
}

.theme-icon {
    transition: transform 0.3s ease;
}

body.light-mode .theme-icon {
    transform: rotate(180deg);
}

.cta-button {
    display: inline-block;
    background: var(--text-color);
    color: var(--bg-color);
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button.small {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px var(--primary-color);
}

.main-cta {
    background: linear-gradient(135deg, var(--primary-color), #00a8a3);
    color: var(--button-text);
    border: none;
    margin-top: 20px;
}

.main-cta:hover {
    box-shadow: 0 0 30px var(--primary-color);
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 60px;
}

.hero-content {
    max-width: 800px;
}

.subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.grid-3 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.grid-3 .card {
    flex: 1 1 300px;
    max-width: 400px;
}

.card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 30px;
    border-radius: 20px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.card .icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.card h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.highlight-section {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, transparent 100%);
}

body.light-mode .highlight-section {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, transparent 100%);
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.offer-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 40px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.offer-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    color: var(--text-muted);
}

.feature-list li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.benefits-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--card-bg);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid transparent;
    transition: border-color 0.3s;
}

.benefit-item:hover {
    border-color: var(--card-border);
}

.benefit-item .check {
    font-size: 1.2rem;
}

.benefit-item h4 {
    margin-bottom: 5px;
    color: var(--text-color);
}

.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 30px;
    padding: 50px;
    transition: background 0.3s ease;
}

.timeline-box,
.pricing-box {
    text-align: center;
}

.highlight-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 10px 0;
    font-family: var(--font-heading);
}

.payment-terms {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-color);
}

.payment-list {
    list-style: none;
    text-align: left;
    display: inline-block;
}

.payment-list li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.payment-list li span {
    color: var(--primary-color);
    font-weight: 600;
}

/* Bonuses - Smaller with 2x2 Grid */
.bonuses-overlay {
    width: 100%;
    max-height: 0;
    overflow: hidden;
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 30px;
    margin-top: 0;
    border: 2px solid transparent;
    transition: max-height 0.5s ease, margin-top 0.5s ease, padding 0.5s ease, border-color 0.5s ease;
}

.bonuses-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-color);
    text-align: center;
}

.bonuses-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 30px;
    max-width: 700px;
    margin: 0 auto;
}

.bonuses-list li {
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 500;
}

@media (min-width: 1025px) {

    .pricing-container:hover+.bonuses-overlay,
    .bonuses-overlay:hover {
        max-height: 250px;
        padding: 30px 40px;
        margin-top: 20px;
        border-color: var(--primary-color);
    }
}

@media (max-width: 1024px) {
    .bonuses-overlay {
        display: none;
    }
}

.footer {
    text-align: center;
    padding: 100px 0 40px;
    border-top: 1px solid var(--card-border);
}

.copyright {
    margin-top: 50px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    animation-delay: 0.2s;
    transition-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
    transition-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
    transition-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
    transition-delay: 0.8s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    h1 {
        font-size: 2.8rem;
    }

    .section {
        padding: 60px 0;
    }

    .pricing-container {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.3rem;
    }

    h2 {
        font-size: 2rem;
    }

    .navbar {
        padding: 15px 20px;
    }

    .hero-stats {
        gap: 20px;
        flex-wrap: wrap;
    }

    .pricing-container {
        padding: 30px;
        gap: 30px;
    }

    .offer-card {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.9rem;
        line-height: 1.4;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }

    .navbar .cta-button {
        width: auto;
    }

    .section {
        padding: 50px 0;
    }

    .card,
    .offer-card {
        padding: 25px;
    }

    .nav-actions {
        gap: 10px;
    }

    .theme-toggle {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}