* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
    background-color: #F8FAFC;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #334155;
}

/* Removed animated background pseudo-element */

.container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    width: 90%;
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    padding: 60px 40px;
    text-align: center;
    border: 1px solid #E2E8F0;
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cover-image {
    width: calc(100% + 80px);
    margin: -60px -40px 40px -40px;
    height: 180px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
    display: block;
}

h1 {
    font-size: 2.5em;
    /* Slightly smaller */
    color: #0F172A;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: initial;
}

.subtitle {
    font-size: 1.2em;
    color: #475569;
    margin-bottom: 30px;
    line-height: 1.6;
}

.benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.benefit-card {
    background: #F1F5F9;
    padding: 25px;
    border-radius: 8px;
    box-shadow: none;
    border: 1px solid #E2E8F0;
    transition: transform 0.2s;
}

.benefit-card:hover {
    transform: translateY(-5px);
    background: #e2e8f0;
}

.benefit-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.benefit-title {
    font-size: 1.2em;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 10px;
}

.benefit-text {
    font-size: 0.95em;
    color: #64748b;
    line-height: 1.5;
}

.cta-button {
    display: inline-block;
    background: #2563EB;
    color: white;
    font-size: 1.3em;
    font-weight: 700;
    padding: 18px 50px;
    border-radius: 8px;
    text-decoration: none;
    margin-top: 30px;
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.2);
    transition: background-color 0.2s, transform 0.1s;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    display: none;
    /* remove shiny effect */
}

.cta-button:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(37, 99, 235, 0.3);
}

.cta-button:active {
    transform: scale(0.98);
}

.urgency {
    margin-top: 30px;
    padding: 20px;
    background: #FFF7ED;
    /* Orange/Amber Tint */
    border: 1px solid #FFEDD5;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 600;
    color: #9A3412;
    animation: none;
}

.social-proof {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.stat {
    background: #F8FAFC;
    padding: 15px 30px;
    border-radius: 8px;
    border: 1px solid #E2E8F0;
}

.stat-number {
    font-size: 2em;
    font-weight: 800;
    color: #2563EB;
}

.stat-label {
    font-size: 0.9em;
    color: #4a5568;
}

@media (max-width: 768px) {
    .container {
        padding: 40px 25px;
    }

    h1 {
        font-size: 2em;
    }

    .subtitle {
        font-size: 1.1em;
    }

    .cta-button {
        font-size: 1.2em;
        padding: 18px 40px;
    }

    .benefits {
        grid-template-columns: 1fr;
    }

    .cover-image {
        width: calc(100% + 50px);
        margin: -40px -25px 30px -25px;
    }
}