:root {
    --blue: #123C5A;
    --blue-dark: #08283F;
    --blue-soft: #EAF2F6;
    --cream: #FFF3D2;
    --cream-soft: #FFF8E8;
    --coral: #FF575C;
    --coral-dark: #E94349;
    --text: #123C5A;
    --muted: #617686;
    --white: #FFFFFF;
    --shadow: 0 24px 70px rgba(8, 40, 63, .16);
    --radius: 28px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background: var(--cream-soft);
}

a {
    color: inherit;
    text-decoration: none;
}

.skip-link {
    position: fixed;
    z-index: 999;
    top: 12px;
    left: 12px;
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--cream);
    color: var(--blue);
    transform: translateY(-160%);
}

.skip-link:focus {
    transform: translateY(0);
}

.topbar {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
    width: 100%;
    min-height: 88px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 16px clamp(18px, 4vw, 56px);
    background: rgba(18, 60, 90, .25);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, .18);
    color: white;
    transition: background .25s ease, min-height .25s ease, box-shadow .25s ease;
}

.topbar.scrolled {
    min-height: 74px;
    background: rgba(18, 60, 90, .92);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .16);
}

.nav-left,
.nav-right {
    display: flex;
    align-items: center;
    gap: 22px;
    font-weight: 800;
    font-size: 14px;
}

.nav-left {
    justify-content: flex-start;
}

.nav-right {
    justify-content: flex-end;
}

.nav-left a,
.nav-right a {
    opacity: .92;
}

.nav-left a:hover,
.nav-right a:hover,
.nav-left a.active,
.nav-right a.active {
    opacity: 1;
    color: var(--cream);
}

.nav-cta {
    padding: 12px 18px;
    border-radius: 999px;
    background: rgba(255, 243, 210, .18);
    border: 1px solid rgba(255, 243, 210, .40);
}

.brand {
    width: 74px;
    height: 74px;
    display: grid;
    place-items: center;
}

.brand img {
    width: 74px;
    height: 74px;
    display: block;
}

.mobile-menu-btn {
    display: none;
    justify-self: end;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    padding: 12px;
}

.mobile-menu-btn span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: white;
    border-radius: 999px;
}

.mobile-menu {
    display: none;
    position: fixed;
    z-index: 49;
    top: 88px;
    left: 16px;
    right: 16px;
    padding: 14px;
    border-radius: 22px;
    background: rgba(18, 60, 90, .96);
    color: white;
    box-shadow: var(--shadow);
}

.mobile-menu.open {
    display: grid;
    gap: 6px;
}

.mobile-menu a {
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255,255,255,.08);
    font-weight: 800;
}

.home-hero {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    display: grid;
    place-items: center;
    padding: 130px 22px 90px;
    isolation: isolate;
}

.slider {
    position: absolute;
    inset: 0;
    z-index: -3;
}

.slide {
    position: absolute;
    inset: 0;
    background-image: var(--bg);
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 1.1s ease, transform 4s ease;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(8,40,63,.90) 0%, rgba(8,40,63,.58) 48%, rgba(8,40,63,.20) 100%),
        linear-gradient(180deg, rgba(8,40,63,.40) 0%, rgba(8,40,63,.10) 48%, rgba(8,40,63,.72) 100%);
}

.home-hero-grid {
    width: min(1180px, 100%);
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    color: white;
}

.eyebrow,
.section-kicker {
    margin: 0 0 16px;
    font-size: 13px;
    line-height: 1.2;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 950;
}

.eyebrow {
    color: var(--cream);
}

.hero-content h1 {
    margin: 0;
    max-width: 820px;
    font-size: clamp(46px, 7vw, 90px);
    line-height: .94;
    letter-spacing: -.06em;
}

.hero-text {
    max-width: 650px;
    margin: 26px 0 0;
    font-size: clamp(18px, 2vw, 23px);
    line-height: 1.55;
    color: rgba(255,255,255,.88);
}

.hero-actions {
    margin-top: 34px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 950;
    border: 1px solid transparent;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn.primary {
    color: white;
    background: var(--coral);
    box-shadow: 0 18px 34px rgba(255, 87, 92, .32);
}

.btn.primary:hover {
    background: var(--coral-dark);
}

.btn.secondary {
    color: white;
    background: rgba(255,255,255,.14);
    border-color: rgba(255,255,255,.34);
    backdrop-filter: blur(12px);
}

.btn.full {
    width: 100%;
}

.hero-card {
    width: min(410px, 100%);
    justify-self: end;
    padding: 32px;
    border-radius: 34px;
    background: rgba(255, 248, 232, .94);
    box-shadow: var(--shadow);
    text-align: center;
    backdrop-filter: blur(18px);
}

.hero-card img {
    margin: 0 auto 10px;
    display: block;
}

.hero-card h2 {
    margin: 0 0 22px;
    font-size: 31px;
    line-height: 1.05;
    letter-spacing: -.04em;
}

.mini-form {
    display: grid;
    gap: 14px;
    text-align: left;
}

.mini-form label {
    font-weight: 900;
    color: var(--blue);
}

.mini-form select {
    width: 100%;
    min-height: 52px;
    margin-top: 8px;
    border: 1px solid rgba(18,60,90,.18);
    border-radius: 16px;
    padding: 0 14px;
    color: var(--text);
    background: white;
    font: inherit;
}

.free-badge {
    margin: 18px 0 0;
    color: var(--coral);
    font-weight: 950;
}

.slider-dots {
    position: absolute;
    z-index: 5;
    bottom: 34px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.slider-dots button {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,.48);
    cursor: pointer;
    transition: width .25s ease, background .25s ease;
}

.slider-dots button.active {
    width: 34px;
    background: var(--cream);
}

.section-inner {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}

.section-inner.narrow {
    width: min(860px, calc(100% - 40px));
    text-align: center;
}

.benefits-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: white;
    border-bottom: 1px solid rgba(18,60,90,.08);
}

.benefit-item {
    padding: 30px 24px;
    text-align: center;
    border-right: 1px solid rgba(18,60,90,.08);
}

.benefit-item span {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    margin: -58px auto 18px;
    border-radius: 999px;
    background: var(--coral);
    color: white;
    font-size: 28px;
    box-shadow: 0 16px 34px rgba(255,87,92,.25);
}

.benefit-item strong {
    display: block;
    font-size: 18px;
    margin-bottom: 8px;
}

.benefit-item p {
    margin: 0;
    color: var(--muted);
    line-height: 1.5;
}

.intro,
.content-section {
    padding: 88px 0;
    background: var(--cream-soft);
}

.content-section.cream {
    background: white;
}

.section-kicker {
    color: var(--coral);
}

.intro h2,
.timeline-section h2,
.difference h2,
.cta-section h2,
.profiles-section h2,
.testimonials-preview h2,
.seo-text-section h2,
.page-hero h1,
.content-section h2,
.pricing-card h2 {
    margin: 0;
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1;
    letter-spacing: -.045em;
}

.intro p:not(.section-kicker),
.difference p,
.cta-section p,
.seo-text-section p,
.content-section p,
.page-hero p,
.pricing-card p {
    font-size: 18px;
    line-height: 1.75;
    color: var(--muted);
}

.timeline-section {
    padding: 88px 0 100px;
    background: white;
}

.timeline {
    position: relative;
    margin-top: 54px;
    display: grid;
    gap: 26px;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 31px;
    top: 22px;
    bottom: 22px;
    width: 3px;
    border-radius: 999px;
    background: linear-gradient(var(--coral), var(--blue));
}

.timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 22px;
    align-items: start;
    padding: 26px;
    border-radius: var(--radius);
    background: var(--cream-soft);
    box-shadow: 0 12px 36px rgba(18, 60, 90, .08);
}

.timeline-number {
    position: relative;
    z-index: 2;
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--blue);
    color: var(--cream);
    font-weight: 1000;
    font-size: 23px;
    box-shadow: 0 14px 28px rgba(18, 60, 90, .22);
}

.timeline-item h3 {
    margin: 3px 0 8px;
    font-size: 24px;
    letter-spacing: -.025em;
}

.timeline-item p {
    margin: 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.65;
}

.profiles-section,
.testimonials-preview,
.seo-text-section,
.pricing-section {
    padding: 92px 0;
    background: var(--cream-soft);
}

.section-heading-row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 22px;
    margin-bottom: 34px;
}

.carousel-controls {
    display: flex;
    gap: 10px;
}

.carousel-controls button {
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 999px;
    background: var(--blue);
    color: var(--cream);
    font-size: 20px;
    cursor: pointer;
}

.profile-carousel {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(280px, 360px);
    gap: 22px;
    overflow-x: auto;
    padding: 6px 4px 20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
}

.profile-card {
    overflow: hidden;
    border-radius: 30px;
    background: white;
    box-shadow: var(--shadow);
    scroll-snap-align: start;
}

.profile-card img {
    width: 100%;
    height: 310px;
    object-fit: cover;
    display: block;
    background: var(--blue-soft);
}

.profile-body {
    padding: 22px;
}

.profile-demo {
    margin: 0 0 6px;
    color: var(--coral);
    font-weight: 950;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.profile-card h3 {
    margin: 0;
    font-size: 25px;
    letter-spacing: -.03em;
}

.profile-city {
    margin: 7px 0 12px;
    color: var(--blue);
    font-weight: 850;
}

.profile-body p {
    color: var(--muted);
    line-height: 1.55;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.tag-list span {
    padding: 8px 10px;
    border-radius: 999px;
    background: var(--cream-soft);
    color: var(--blue);
    font-size: 13px;
    font-weight: 850;
}

.small-note {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.difference {
    padding: 96px 0;
    background:
        radial-gradient(circle at 20% 10%, rgba(255, 87, 92, .14), transparent 30%),
        linear-gradient(135deg, var(--blue-dark), var(--blue));
    color: white;
}

.difference .section-kicker {
    color: var(--cream);
}

.difference-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 34px;
    align-items: center;
}

.difference p {
    color: rgba(255,255,255,.78);
}

.difference-card,
.info-card,
.pricing-card,
.testimonial-card,
.faq-row {
    padding: 34px;
    border-radius: var(--radius);
    background: white;
    box-shadow: var(--shadow);
}

.difference-card {
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(18px);
}

.difference-card h3 {
    margin: 0 0 14px;
    color: var(--cream);
    font-size: 30px;
    line-height: 1.05;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 34px;
}

.testimonial-grid.large {
    margin-top: 0;
}

.testimonial-card p {
    margin: 0 0 22px;
    color: var(--muted);
    line-height: 1.7;
    font-size: 18px;
}

.testimonial-card strong {
    display: block;
    font-size: 19px;
}

.testimonial-card span {
    color: var(--muted);
}

.seo-text-section {
    background: white;
}

.page-main {
    background: var(--cream-soft);
}

.page-hero {
    padding: 155px 0 86px;
    background:
        radial-gradient(circle at 15% 15%, rgba(255,87,92,.16), transparent 28%),
        linear-gradient(135deg, var(--blue-dark), var(--blue));
    color: white;
}

.page-hero .section-kicker {
    color: var(--cream);
}

.page-hero p {
    max-width: 780px;
    margin: 22px auto 0;
    color: rgba(255,255,255,.80);
}

.two-col {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 34px;
    align-items: start;
}

.info-card h3,
.info-card h2 {
    margin-top: 0;
}

.info-card.coral {
    background: var(--coral);
    color: white;
}

.info-card.coral p {
    color: rgba(255,255,255,.86);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 30px;
}

.feature-grid article {
    padding: 28px;
    border-radius: var(--radius);
    background: var(--cream-soft);
    box-shadow: 0 12px 34px rgba(18, 60, 90, .08);
}

.content-section.cream .feature-grid article {
    background: white;
}

.feature-grid h3 {
    margin: 0 0 10px;
    font-size: 24px;
    letter-spacing: -.025em;
}

.feature-grid p {
    margin: 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 26px;
    align-items: stretch;
}

.pricing-card.highlight {
    background: var(--blue);
    color: white;
}

.pricing-card.highlight .section-kicker,
.pricing-card.highlight p,
.pricing-card.highlight li {
    color: rgba(255,255,255,.82);
}

.price {
    font-size: 64px !important;
    line-height: 1 !important;
    margin: 20px 0 !important;
    color: var(--cream) !important;
    font-weight: 1000;
}

.pricing-card ul {
    padding-left: 22px;
    line-height: 1.9;
    font-weight: 750;
}

.faq-list {
    display: grid;
    gap: 18px;
}

.faq-row h2 {
    margin: 0 0 10px;
    font-size: 26px;
}

.faq-row p {
    margin: 0;
}

.legal-card a {
    color: var(--coral);
    font-weight: 850;
}

.cta-section {
    padding: 88px 0;
    background: var(--cream-soft);
}

.cta-box {
    padding: clamp(34px, 6vw, 70px);
    border-radius: 36px;
    background: white;
    text-align: center;
    box-shadow: var(--shadow);
}

.cta-box p {
    max-width: 720px;
    margin: 20px auto 30px;
}

.footer {
    padding: 48px 0 0;
    background: var(--blue-dark);
    color: white;
}

.footer-inner {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: .9fr 2fr;
    gap: 38px;
    align-items: start;
}

.footer-logo {
    width: 58px;
    height: 58px;
}

.footer-brand p {
    margin: 10px 0 8px;
    color: rgba(255,255,255,.78);
}

.footer-brand small {
    color: rgba(255,255,255,.54);
    line-height: 1.6;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.footer-columns h3 {
    margin: 0 0 14px;
    color: var(--cream);
    font-size: 16px;
}

.footer-columns a {
    display: block;
    margin: 0 0 10px;
    color: rgba(255,255,255,.76);
    font-weight: 700;
}

.footer-columns a:hover {
    color: var(--cream);
}

.footer-bottom {
    margin-top: 34px;
    padding: 18px;
    text-align: center;
    background: rgba(0,0,0,.16);
    color: rgba(255,255,255,.60);
}

@media (max-width: 900px) {
    .topbar {
        grid-template-columns: 1fr auto 1fr;
        min-height: 82px;
        padding: 12px 18px;
    }

    .nav-left,
    .nav-right {
        display: none;
    }

    .brand {
        grid-column: 2;
        width: 66px;
        height: 66px;
    }

    .brand img {
        width: 66px;
        height: 66px;
    }

    .mobile-menu-btn {
        display: block;
        grid-column: 3;
    }

    .home-hero {
        align-items: end;
        padding: 118px 20px 94px;
    }

    .home-hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-card {
        justify-self: stretch;
        width: 100%;
    }

    .hero-content h1 {
        font-size: clamp(44px, 14vw, 68px);
    }

    .hero-overlay {
        background:
            linear-gradient(180deg, rgba(8,40,63,.20) 0%, rgba(8,40,63,.42) 35%, rgba(8,40,63,.90) 100%);
    }

    .hero-actions {
        display: grid;
    }

    .btn {
        width: 100%;
    }

    .benefits-strip {
        grid-template-columns: 1fr;
    }

    .benefit-item span {
        margin-top: 0;
    }

    .difference-grid,
    .two-col,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 25px;
    }

    .timeline-item {
        grid-template-columns: 52px 1fr;
        gap: 16px;
        padding: 20px;
    }

    .timeline-number {
        width: 52px;
        height: 52px;
        font-size: 20px;
    }

    .section-heading-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .testimonial-grid,
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .footer-inner,
    .footer-columns {
        grid-template-columns: 1fr;
    }
}

/* Fond de secours si une image du slider ne charge pas */
.home-hero {
    background:
        radial-gradient(circle at 70% 20%, rgba(255, 87, 92, .20), transparent 32%),
        linear-gradient(135deg, #08283F, #123C5A);
}

.slide {
    background-color: #123C5A;
}

/* Correctif visibilité du lien accessibilité */
.skip-link {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-160%);
}

.skip-link:focus,
.skip-link:focus-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* Correctif hero desktop : le contenu ne passe plus sous le menu */
.home-hero {
    align-items: center;
    padding-top: 170px;
    padding-bottom: 90px;
}

.home-hero-grid {
    align-items: center;
}

.hero-content h1 {
    font-size: clamp(42px, 5.7vw, 82px);
}

/* Correctif pour les écrans pas très hauts */
@media (max-height: 850px) and (min-width: 901px) {
    .home-hero {
        align-items: start;
        padding-top: 155px;
    }

    .hero-content h1 {
        font-size: clamp(40px, 5.2vw, 72px);
    }

    .hero-text {
        margin-top: 18px;
        font-size: 20px;
    }

    .hero-actions {
        margin-top: 24px;
    }

    .hero-card {
        padding: 26px;
    }

    .hero-card h2 {
        font-size: 27px;
    }
}

/* Correctif mobile */
@media (max-width: 900px) {
    .home-hero {
        padding-top: 125px;
    }

    .skip-link {
        display: none;
    }
}

/* Correctif définitif hero desktop */
@media (min-width: 901px) {
    .home-hero {
        min-height: 760px;
        height: auto;
        place-items: stretch;
        display: block;
        padding: 150px 22px 70px;
    }

    .home-hero-grid {
        min-height: 520px;
        margin: 0 auto;
        align-items: center;
    }

    .hero-content {
        padding-top: 0;
    }

    .hero-content h1 {
        font-size: clamp(42px, 5vw, 72px);
        line-height: .98;
        max-width: 760px;
    }

    .hero-text {
        max-width: 660px;
        margin-top: 22px;
        font-size: 20px;
        line-height: 1.55;
    }

    .hero-actions {
        margin-top: 28px;
    }

    .hero-card {
        margin-top: 0;
        padding: 28px;
    }

    .hero-card h2 {
        font-size: 28px;
    }

    .slider-dots {
        bottom: 28px;
    }

    .benefits-strip {
        margin-top: 0;
    }
}

/* Correctif écrans desktop moins hauts */
@media (min-width: 901px) and (max-height: 820px) {
    .home-hero {
        min-height: 680px;
        padding-top: 130px;
        padding-bottom: 58px;
    }

    .home-hero-grid {
        min-height: 470px;
    }

    .hero-content h1 {
        font-size: clamp(38px, 4.5vw, 64px);
        line-height: .98;
    }

    .hero-text {
        font-size: 18px;
        margin-top: 16px;
    }

    .hero-actions {
        margin-top: 20px;
    }

    .hero-card {
        padding: 24px;
        transform: scale(.94);
        transform-origin: center right;
    }

    .hero-card h2 {
        font-size: 25px;
    }
}

/* Correctif barre avantages : icônes non coupées, section plus propre */
.benefits-strip {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #ffffff;
    border-top: 1px solid rgba(18, 60, 90, .08);
    border-bottom: 1px solid rgba(18, 60, 90, .08);
    overflow: visible;
}

.benefit-item {
    position: relative;
    padding: 36px 28px 34px;
    text-align: center;
    border-right: 1px solid rgba(18, 60, 90, .08);
}

.benefit-item:last-child {
    border-right: 0;
}

.benefit-item span {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    margin: 0 auto 18px;
    border-radius: 999px;
    background: var(--coral);
    color: white;
    font-size: 28px;
    box-shadow: 0 16px 34px rgba(255, 87, 92, .24);
}

.benefit-item strong {
    display: block;
    margin-bottom: 8px;
    color: var(--blue);
    font-size: 18px;
    font-weight: 950;
}

.benefit-item p {
    max-width: 270px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.55;
}

/* Mobile : avantages en colonne propre */
@media (max-width: 900px) {
    .benefits-strip {
        grid-template-columns: 1fr;
    }

    .benefit-item {
        border-right: 0;
        border-bottom: 1px solid rgba(18, 60, 90, .08);
    }

    .benefit-item:last-child {
        border-bottom: 0;
    }

    .benefit-item span {
        margin-top: 0;
    }
}

/* Icônes avantages uniformes SVG */
.benefit-item span {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    margin: 0 auto 18px;
    border-radius: 999px;
    background: var(--coral);
    color: #fffaf0;
    font-size: 0;
    box-shadow: 0 16px 34px rgba(255, 87, 92, .24);
}

.benefit-item span svg {
    width: 30px;
    height: 30px;
    stroke: #fffaf0;
    stroke-width: 2.15;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.benefit-item span svg path {
    stroke: #fffaf0;
    fill: none;
}

/* Timeline premium Couplis */
.timeline-section {
    position: relative;
    padding: 105px 0 115px;
    background:
        radial-gradient(circle at 12% 8%, rgba(255, 87, 92, .09), transparent 28%),
        radial-gradient(circle at 85% 15%, rgba(18, 60, 90, .08), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #fff8e8 100%);
    overflow: hidden;
}

.timeline-section .section-kicker {
    text-align: center;
}

.timeline-section h2 {
    max-width: 840px;
    margin: 0 auto;
    text-align: center;
    font-size: clamp(38px, 4.4vw, 66px);
}

.timeline {
    width: min(960px, 100%);
    margin: 70px auto 0;
    position: relative;
    display: grid;
    gap: 28px;
}

.timeline::before {
    content: "";
    position: absolute;
    top: 16px;
    bottom: 16px;
    left: 50%;
    width: 4px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: linear-gradient(
        180deg,
        rgba(255, 87, 92, .15),
        rgba(255, 87, 92, .95),
        rgba(18, 60, 90, .95),
        rgba(18, 60, 90, .15)
    );
    box-shadow: 0 0 0 8px rgba(255, 87, 92, .04);
}

.timeline-item {
    position: relative;
    width: calc(50% - 42px);
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 18px;
    align-items: center;
    padding: 24px 26px;
    border-radius: 28px;
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(18, 60, 90, .08);
    box-shadow: 0 22px 60px rgba(18, 60, 90, .10);
    backdrop-filter: blur(14px);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.timeline-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 80px rgba(18, 60, 90, .15);
    border-color: rgba(255, 87, 92, .22);
}

.timeline-item:nth-child(odd) {
    justify-self: start;
}

.timeline-item:nth-child(even) {
    justify-self: end;
}

.timeline-item::before {
    content: "";
    position: absolute;
    top: 50%;
    width: 42px;
    height: 3px;
    transform: translateY(-50%);
    border-radius: 999px;
    background: rgba(255, 87, 92, .55);
}

.timeline-item:nth-child(odd)::before {
    right: -42px;
}

.timeline-item:nth-child(even)::before {
    left: -42px;
}

.timeline-item::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 16px;
    height: 16px;
    transform: translateY(-50%);
    border-radius: 999px;
    background: var(--coral);
    border: 4px solid #fff8e8;
    box-shadow: 0 0 0 7px rgba(255, 87, 92, .12);
}

.timeline-item:nth-child(odd)::after {
    right: -52px;
}

.timeline-item:nth-child(even)::after {
    left: -52px;
}

.timeline-number {
    width: 68px;
    height: 68px;
    display: grid;
    place-items: center;
    border-radius: 22px;
    background:
        radial-gradient(circle at 30% 25%, rgba(255,255,255,.18), transparent 35%),
        linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: var(--cream);
    font-size: 25px;
    font-weight: 1000;
    box-shadow: 0 18px 34px rgba(18, 60, 90, .24);
}

.timeline-item h3 {
    margin: 0 0 7px;
    color: var(--blue);
    font-size: 23px;
    line-height: 1.12;
    letter-spacing: -.03em;
}

.timeline-item p {
    margin: 0;
    color: var(--muted);
    font-size: 15.5px;
    line-height: 1.58;
}

/* Petite mise en valeur par étape */
.timeline-item:nth-child(1) .timeline-number::after { content: "♡"; font-size: 14px; margin-left: 4px; }
.timeline-item:nth-child(2) .timeline-number::after { content: "✓"; font-size: 14px; margin-left: 4px; }
.timeline-item:nth-child(3) .timeline-number::after { content: "↔"; font-size: 14px; margin-left: 4px; }
.timeline-item:nth-child(4) .timeline-number::after { content: "◎"; font-size: 14px; margin-left: 4px; }
.timeline-item:nth-child(5) .timeline-number::after { content: "★"; font-size: 14px; margin-left: 4px; }

/* Mobile : retour à une frise verticale simple */
@media (max-width: 900px) {
    .timeline-section {
        padding: 80px 0 90px;
    }

    .timeline {
        margin-top: 44px;
        gap: 20px;
    }

    .timeline::before {
        left: 34px;
        transform: none;
    }

    .timeline-item,
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        width: 100%;
        justify-self: stretch;
        grid-template-columns: 64px 1fr;
        padding: 20px;
    }

    .timeline-item::before {
        display: none;
    }

    .timeline-item::after,
    .timeline-item:nth-child(odd)::after,
    .timeline-item:nth-child(even)::after {
        left: 26px;
        right: auto;
        width: 14px;
        height: 14px;
    }

    .timeline-number {
        width: 58px;
        height: 58px;
        border-radius: 19px;
        font-size: 22px;
    }
}

/* Amélioration carousel profils */
.profiles-section {
    position: relative;
    overflow: hidden;
}

.profile-carousel {
    position: relative;
    grid-auto-columns: minmax(285px, 330px);
    gap: 24px;
    padding: 8px 6px 28px;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.profile-carousel::-webkit-scrollbar {
    display: none;
}

.profile-card {
    border: 1px solid rgba(18, 60, 90, .08);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.profile-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 85px rgba(18, 60, 90, .18);
    border-color: rgba(255, 87, 92, .24);
}

.profile-card img {
    height: 300px;
    filter: saturate(1.02) contrast(1.02);
}

.profile-body {
    min-height: 300px;
    display: flex;
    flex-direction: column;
}

.profile-body .tag-list {
    margin-top: auto;
}

.profile-demo {
    color: var(--coral);
}

.profile-city {
    font-size: 15px;
    line-height: 1.4;
}

.tag-list span {
    background: #fff3d2;
    color: var(--blue);
    border: 1px solid rgba(18, 60, 90, .06);
}

.carousel-controls button {
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
    box-shadow: 0 12px 28px rgba(18, 60, 90, .18);
}

.carousel-controls button:hover {
    transform: translateY(-2px);
    background: var(--coral);
    box-shadow: 0 18px 36px rgba(255, 87, 92, .24);
}

/* Effet premium : petites ombres latérales sur desktop */
@media (min-width: 901px) {
    .profiles-section .section-inner {
        position: relative;
    }

    .profiles-section .section-inner::before,
    .profiles-section .section-inner::after {
        content: "";
        position: absolute;
        z-index: 3;
        top: 170px;
        bottom: 48px;
        width: 70px;
        pointer-events: none;
    }

    .profiles-section .section-inner::before {
        left: 0;
        background: linear-gradient(90deg, var(--cream-soft), rgba(255, 248, 232, 0));
    }

    .profiles-section .section-inner::after {
        right: 0;
        background: linear-gradient(270deg, var(--cream-soft), rgba(255, 248, 232, 0));
    }
}

/* Suppression des dégradés latéraux du carrousel profils */
.profiles-section .section-inner::before,
.profiles-section .section-inner::after {
    display: none !important;
    content: none !important;
}

/* Carrousel profils plus net, sans voile */
.profile-carousel {
    overflow-x: auto;
    scroll-behavior: smooth;
}

.profile-card img {
    filter: none !important;
}

/* Cartes profils un peu plus propres */
.profile-card {
    background: #ffffff;
}

.profile-card:hover {
    transform: translateY(-4px);
}

/* Correctif carrousel mobile : une carte entière visible */
@media (max-width: 900px) {
    .profiles-section {
        overflow: hidden;
    }

    .profiles-section .section-inner {
        width: min(100% - 28px, 430px);
    }

    .section-heading-row {
        gap: 18px;
    }

    .profiles-section h2 {
        font-size: clamp(30px, 9vw, 42px);
        line-height: 1.02;
    }

    .carousel-controls {
        width: 100%;
        justify-content: flex-start;
    }

    .carousel-controls button {
        width: 44px;
        height: 44px;
    }

    .profile-carousel {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: 100%;
        gap: 0;
        overflow-x: auto;
        padding: 6px 0 24px;
        scroll-snap-type: x mandatory;
        scroll-padding: 0;
    }

    .profile-card {
        width: 100%;
        scroll-snap-align: start;
        border-radius: 24px;
    }

    .profile-card img {
        width: 100%;
        height: 310px;
        object-fit: cover;
    }

    .profile-body {
        min-height: auto;
        padding: 20px;
    }

    .profile-body p {
        font-size: 15px;
        line-height: 1.55;
    }

    .profile-city {
        font-size: 14px;
    }

    .tag-list {
        gap: 7px;
    }

    .tag-list span {
        font-size: 12px;
        padding: 7px 9px;
    }
}


/* Couplis hero app downloads v1 */

.hero-download-card h2 {
    margin-bottom: 12px;
}

.hero-download-intro {
    max-width: 320px;
    margin: 0 auto 20px;
    color: rgba(8, 55, 78, .76);
    font-size: 15px;
    line-height: 1.5;
}

.hero-download-actions {
    display: grid;
    gap: 12px;
}

.store-download-link {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    min-height: 66px;
    border: 1px solid rgba(8, 55, 78, .22);
    border-radius: 16px;
    padding: 10px 16px;
    background: #fff;
    color: var(--blue);
    text-align: left;
    text-decoration: none;
    transition:
        transform .18s ease,
        border-color .18s ease,
        box-shadow .18s ease;
}

a.store-download-link:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 87, 92, .55);
    box-shadow: 0 10px 24px rgba(8, 55, 78, .12);
}

.store-download-link.is-disabled {
    background: rgba(255, 255, 255, .62);
    opacity: .72;
}

.store-download-icon {
    flex: 0 0 40px;
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--blue);
    color: #fff;
}

.store-download-apple {
    background: #111;
    color: #fff;
}

.store-download-apple svg {
    display: block;
    width: 26px;
    height: 26px;
}

.store-download-play {
    position: relative;
}

.store-download-play::before {
    content: "";
    width: 0;
    height: 0;
    margin-left: 3px;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-left: 15px solid currentColor;
}

.store-download-copy {
    min-width: 0;
    display: grid;
    gap: 2px;
}

.store-download-copy small {
    color: rgba(8, 55, 78, .68);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.15;
}

.store-download-copy strong {
    color: var(--blue);
    font-size: 18px;
    line-height: 1.1;
}

.hero-download-card .free-badge {
    margin-top: 18px;
}

@media (max-width: 480px) {
    .store-download-link {
        min-height: 62px;
    }

    .store-download-copy strong {
        font-size: 17px;
    }
}


/* Couplis Apple icon correction v3 */
.store-download-apple {
    background: transparent !important;
    color: #111 !important;
}

.store-download-apple svg {
    display: block !important;
    width: auto !important;
    height: 24px !important;
    max-width: 24px !important;
}


/* Couplis Apple PNG v1 */
.store-download-apple-png {
    display: block;
    flex: 0 0 auto;
    width: 25px;
    height: auto;
    max-width: 25px;
    object-fit: contain;
    margin: 0 8px 0 4px;
}

/* Couplis store buttons centered v5 */
.store-download-link {
    display: grid !important;
    grid-template-columns: 32px auto;
    justify-content: center !important;
    align-items: center !important;
    column-gap: 12px;
}

.store-download-copy {
    padding-left: 0 !important;
    text-align: left !important;
}

.store-download-apple-png {
    justify-self: center;
    margin: 0 !important;
}

.store-download-icon {
    justify-self: center;
    margin: 0 !important;
}



/* Couplis Google Play PNG v1 */
.store-download-play-png {
    display: block;
    justify-self: center;
    width: 27px;
    height: auto;
    max-width: 27px;
    margin: 0 !important;
    object-fit: contain;
}


/* Couplis Google Play icon fix v2 */
.store-download-play-png {
    display: block !important;
    justify-self: center !important;
    align-self: center !important;
    width: 28px !important;
    height: 28px !important;
    max-width: 28px !important;
    object-fit: contain !important;
    margin: 0 !important;
}
