html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    background: #ffffff;
    color: #111;
}

/* NAV */
.nav {
    display: flex;
    justify-content: space-between;
    padding: 20px 40px;
}

.logo {
    font-weight: 600;
}

/* MENU */
.menu a {
    margin: 0 10px;
    text-decoration: none;
    color: #111;
}

/* HERO */
.hero {
    text-align: center;
    padding: 120px 20px;
}

.hero h1 {
    font-size: 42px;
}

/* MINI */
.mini {
    text-align: center;
    padding: 30px;
    color: #666;
}

/* ENCADREMENT BLEU */
section {
    margin: 40px auto;
    padding: 50px 20px;
    max-width: 1100px;
    border-radius: 20px;
    border: 2px solid #93c5fd;
    box-shadow: 0 0 25px rgba(59,130,246,0.1);
}

/* BUTTON */
button {
    margin-top: 15px;
    padding: 14px 28px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(135deg, #4f8cff, #2563eb);
    color: white;
    font-weight: 600;
    cursor: pointer;
}

/* OFFERS */
.offers {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.offer {
    width: 240px;
    text-align: center;
    padding: 15px;
    border-radius: 15px;
    position: relative;
}

.offer img {
    width: 100%;
    border-radius: 10px;
}

.offer span {
    display: block;
    font-size: 26px;
    font-weight: 700;
    margin: 10px 0;
    color: #2563eb;
}

/* BADGE */
.badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #2563eb;
    color: white;
    padding: 5px 10px;
    border-radius: 10px;
    font-size: 12px;
}

/* PRO */
.featured {
    transform: scale(1.05);
}

/* PROCESS */
.process {
    text-align: center;
}

.steps {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* HELP */
.help {
    text-align: center;
}

.faq {
    max-width: 700px;
    margin: auto;
    text-align: left;
}

.faq-item {
    margin-bottom: 20px;
}

/* CTA */
.cta {
    text-align: center;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 30px;
}