body {
    font-family: "Inter", sans-serif;
    background: #ffffff;
    color: #0f172a;
}

/* Hero */
.hero-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Feature cards */
.feature-card {
    background: white;
    border: 1px solid #e5e7eb;
    transition: .2s;
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

/* Icon row */
.icon-col {
    font-weight: 600;
    padding: 15px 0;
    border-radius: 12px;
    background: #f8fafc;
}

/* Pricing */
.pricing-container {
    display: flex;
    gap: 20px;
}
.pricing-card {
    flex: 1;
    background: white;
    padding: 25px;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    text-align: center;
}
.pricing-card.active {
    border: 2px solid #2563eb;
    background: #f0f7ff;
}

/* CTA */
.cta-section {
    background: #0a53ff;
    border-radius: 12px;
    margin: 40px 10%;
}

.announcement-bar {
    background: #0A53FF;           /* Bleu Umbreo */
    color: #ffffff;
    padding: 10px 0;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.3px;
    width: 100%;
    z-index: 9999;
}
.annonce-link {
    color: #ffffff;
    font-weight: 700;
    text-decoration: underline;
}

.interest-box {
    background: #F1F5FF;
    color: #0A2E6A;
    padding: 12px 0;
    font-size: 16px;
    font-weight: 600;
    border-bottom: 1px solid #DDE6FF;
}

#interest-number {
    color: #0A53FF;
    font-weight: 700;
}
