.cta-section {
    padding: 70px 20px;
    background: linear-gradient(180deg, #6e97c2 0%, #5d88b3 100%);
}

.hero-card {
    max-width: 850px;
    margin: 0 auto;
    background: linear-gradient(145deg, #183760, #234d86);
    border-radius: 28px;
    padding: 60px;
    color: white;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.28);
}

.eyebrow {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.8;
    margin-bottom: 15px;
    font-weight: 600;
}

.hero-card h1 {
    font-size: 48px;
    font-weight: 800;
    margin: 0 0 20px;
    font-family: "Segoe UI", Arial, sans-serif;
}

.hero-sub {
    font-size: 21px;
    line-height: 1.6;
    max-width: 650px;
    margin: 0 auto 35px;
    opacity: 0.95;
}

.hero-price {
    font-size: 76px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 10px;
    color: #ffffff;
}

.price-note {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.9;
}

.benefits {
    list-style: none;
    padding: 0;
    margin: 0 auto 40px;
    max-width: 520px;
    text-align: left;
}

.benefits li {
    font-size: 18px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.buy-btn {
    display: inline-block;
    background: #9fd0ff;
    color: #17365f;
    border: 2px solid #d4960f;
    padding: 20px 42px;
    border-radius: 16px;
    font-size: 20px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(159, 208, 255, 0.35);
    transition: all 0.2s ease;
}

.buy-btn:hover {
    transform: translateY(-2px);
    background: #d4960f;
    border: 2px solid #d4960f;
}

.demo-box {
    margin-top: 45px;
    background: rgba(255, 255, 255, 0.08);
    padding: 35px;
    border-radius: 20px;
}

.demo-box h3 {
    margin-top: 0;
    font-size: 28px;
    font-weight: 700;
}

.demo-box p {
    font-size: 17px;
    line-height: 1.6;
}

.demo-note {
    font-size: 14px !important;
    opacity: 0.8;
}

.demo-btn {
    display: inline-block;
    margin-top: 15px;
    background: transparent;
    border: 2px solid #d4960f;
    color: #9fd0ff;
    padding: 14px 30px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
}

.demo-btn:hover {
    background: #d4960f;
    color: #17365f;
}

@media (max-width: 900px) {
    .hero-card {
        padding: 35px 25px;
    }

    .hero-card h1 {
        font-size: 34px;
    }

    .hero-price {
        font-size: 54px;
    }

    .hero-sub {
        font-size: 18px;
    }

    .benefits li {
        font-size: 16px;
    }

    .buy-btn {
        width: 100%;
        box-sizing: border-box;
    }
}