html, body {
    overflow-x: hidden;
    max-width: 100%;
}

*, *::before, *::after {
    box-sizing: border-box;
}

/* ===== HERO ===== */
#SrvHero {
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f5f5 60%, #fff8f3 100%);
    padding: 72px 5% 80px;
    text-align: center;
}

#SrvHeroInner {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

#SrvHeroEyebrow {
    font-family: var(--FontFamily);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--CouleurSecondaire);
}

#SrvHeroTitle {
    font-family: var(--FontFamily);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    color: var(--CouleurPrimaire);
    line-height: 1.15;
    margin: 0;
}

#SrvHeroDesc {
    font-family: var(--FontFamily);
    font-size: clamp(17px, 1.3vw, 20px);
    color: rgba(31, 53, 77, 0.7);
    line-height: 1.6;
    margin: 0;
}

/* ===== TRUST PILLS ===== */
.srv-trust-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
}

.srv-trust-pills > span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--FontFamily);
    font-size: 14px;
    font-weight: 500;
    color: var(--CouleurPrimaire);
    background: white;
    border: 1px solid rgba(31, 53, 77, 0.12);
    padding: 7px 16px;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(31, 53, 77, 0.06);
}

.srv-trust-pills > span .material-symbols-outlined {
    font-size: 16px;
    color: var(--CouleurSecondaire);
}

/* ===== CARTES ===== */
#SrvCartes {
    padding: 64px 5% 80px;
}

#SrvCartesInner {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.srv-carte {
    background: white;
    border-radius: 24px;
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 4px 32px rgba(31, 53, 77, 0.09);
    border: 1px solid rgba(31, 53, 77, 0.07);
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.srv-carte::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    border-radius: 24px 24px 0 0;
}

.srv-carte-prive::before {
    background: var(--CouleurAccent);
}

.srv-carte-groupe::before {
    background: var(--CouleurSecondaire);
}

.srv-carte:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(31, 53, 77, 0.13);
}

.srv-carte-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: var(--FontFamily);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--CouleurAccent);
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
}

.srv-carte-top {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.srv-carte-head {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.srv-carte-price {
    font-family: var(--FontFamily);
    font-size: 13px;
    font-weight: 500;
    color: rgba(31, 53, 77, 0.5);
}

.srv-carte-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.srv-carte-prive .srv-carte-icon {
    background: rgba(31, 53, 77, 0.07);
}

.srv-carte-groupe .srv-carte-icon {
    background: rgba(3, 152, 158, 0.1);
}

.srv-carte-icon .material-symbols-outlined {
    font-size: 30px;
    color: var(--CouleurSecondaire);
}

.srv-carte-label {
    font-family: var(--FontFamily);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--CouleurSecondaire);
}

.srv-carte h2 {
    font-family: var(--FontFamily);
    font-size: clamp(22px, 1.8vw, 28px);
    font-weight: 700;
    color: var(--CouleurPrimaire);
    margin: 0;
    line-height: 1.2;
}

.srv-carte p {
    font-family: var(--FontFamily);
    font-size: clamp(15px, 1.1vw, 17px);
    color: rgba(31, 53, 77, 0.7);
    line-height: 1.65;
    margin: 0;
    flex: 1;
}

.srv-points {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.srv-points li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--FontFamily);
    font-size: 15px;
    color: var(--CouleurPrimaire);
}

.srv-points .material-symbols-outlined {
    font-size: 18px;
    color: var(--CouleurSecondaire);
    flex-shrink: 0;
}

/* Full-width CTA inside cards */
.srv-carte .srv-btn {
    width: 100%;
    justify-content: center;
    margin-top: auto;
}

/* ===== BOUTONS ===== */
.srv-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 12px;
    font-family: var(--FontFamily);
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    width: fit-content;
    margin-top: 8px;
}

.srv-btn-primary {
    background: linear-gradient(135deg, var(--CouleurAccent), #e67a2a);
    color: white;
    box-shadow: 0 4px 16px rgba(255, 140, 66, 0.35);
}

.srv-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 66, 0.45);
}

.srv-btn-secondary {
    background: linear-gradient(135deg, var(--CouleurSecondaire), #028a8f);
    color: white;
    box-shadow: 0 4px 16px rgba(3, 152, 158, 0.3);
}

.srv-btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(3, 152, 158, 0.4);
}

.srv-btn-outline {
    border: 2px solid white;
    color: white;
    background: transparent;
}

.srv-btn-outline:hover {
    background: white;
    color: var(--CouleurPrimaire);
}

/* ===== VOUS HÉSITEZ ===== */
#SrvHesitez {
    background: var(--CouleurPrimaire);
    padding: 64px 5%;
}

#SrvHesitezInner {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

#SrvHesitezText {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

#SrvHesitezText > .material-symbols-outlined {
    font-size: 40px;
    color: var(--CouleurSecondaire);
}

#SrvHesitezText h2 {
    font-family: var(--FontFamily);
    font-size: clamp(22px, 2vw, 30px);
    font-weight: 700;
    color: white;
    margin: 0;
}

#SrvHesitezText p {
    font-family: var(--FontFamily);
    font-size: clamp(15px, 1.1vw, 17px);
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin: 0;
}

#SrvHesitezForm {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 750px) {
    #SrvCartesInner {
        grid-template-columns: 1fr;
    }

    .srv-carte {
        padding: 32px 24px;
    }

    #SrvHesitezInner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    #SrvHesitezText {
        text-align: center;
        align-items: center;
    }

    .srv-btn {
        width: 100%;
        justify-content: center;
    }
}
