/* ════════════════════════════════════════
   HOME — styles spécifiques à la page
   d'accueil (hero, info cards, explications,
   domains, schema, bracelet comment,
   partenaires, anticiper, interface/orbit,
   avis, contact). S'appuie sur global.css.
   ════════════════════════════════════════ */

/* ── HERO ───────────────────────────────── */
.hero {
    position: relative;
    height: 60vh;
    min-height: 680px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(48, 48, 68, .2) 0%,
            rgba(48, 48, 68, .04) 40%,
            rgba(48, 48, 68, .55) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .18);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 50px;
    padding: 9px 20px;
    color: white;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4cdf70;
    animation: blink 1.8s ease infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .2;
    }
}

.hero-logo-img {
    height: 130px;
    width: auto;
    filter: brightness(0) invert(1);
}

.hero-tagline {
    font-size: 19px;
    font-weight: 600;
    color: rgba(255, 255, 255, .9);
    text-transform: uppercase;
    letter-spacing: .1em;
}

.scroll-cue {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, .7);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.scroll-cue-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid rgba(255, 255, 255, .7);
    border-bottom: 2px solid rgba(255, 255, 255, .7);
    transform: rotate(45deg);
    animation: bounce 1.6s ease infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: rotate(45deg) translateY(0);
    }

    50% {
        transform: rotate(45deg) translateY(7px);
    }
}

/* ── INFO CARDS ─────────────────────────── */
.info-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 60px 80px 40px;
    max-width: 1440px;
    margin: 0 auto;
    max-height: 1000px;
}

.info-card {
    border-radius: 54px;
    overflow: hidden;
    min-height: 400px;
    max-height: 100%;
    position: relative;
}

/* left — dark */
.info-card-l {
    background: rgb(225, 225, 227);
}

.info-card-l .card-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 85%;
    object-fit: cover;
    transition: transform .7s;
}

.info-card-l:hover .card-bg {
    transform: scale(1.04);
}

.info-card-l .card-body {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 44px 48px;
}

/* right — white */
.info-card-r {
    background: white;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 44px;
}

.card-img {
    flex: 1;
    border-radius: 28px;
    overflow: hidden;
    min-height: 200px;
    max-height: 280px;
}

.card-img img {
    width: 100%;
    height: 132%;
    object-fit: cover;
    transition: transform .65s;
}

.info-card-r:hover .card-img img {
    transform: scale(1.04);
}

.card-h {
    font-size: 30px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.08;
    margin-bottom: 14px;
}

.card-h--light {
    color: white;
}

.card-h--dark {
    color: var(--navy);
}

.card-p {
    font-size: 17px;
    font-style: italic;
    line-height: 1.5;
}

.card-p--light {
    color: rgba(255, 255, 255, .88);
}

.card-p--dark {
    color: var(--navy);
}

/* ── EXPLICATIONS ───────────────────────── */
.explications {
    background: white;
}

.explications-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 52px;
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px;
}

.expli-h {
    font-size: 38px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.06;
    margin-bottom: 26px;
}

.expli-h em {
    color: var(--lavender);
    font-style: normal;
}

.expli-p {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.55;
}

/* ── DOMAINS ────────────────────────────── */
.domains {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 60px 80px 60px;
    max-width: 1440px;
    margin: 0 auto;
}

.domain-card {
    position: relative;
    overflow: hidden;
    min-height: 540px;
    cursor: pointer;
    border-radius: 36px;
}

.domain-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .75s cubic-bezier(.25, .46, .45, .94);
}

.domain-card:hover img {
    transform: scale(1.06);
}

.domain-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 36px;
    background: linear-gradient(to top,
            rgba(48, 48, 68, .82) 0%, rgba(48, 48, 68, .15) 45%, transparent 100%);
    pointer-events: none;
    transition: background .5s ease;
}

.domain-card:hover::after,
.domain-card.is-open::after {
    background: linear-gradient(to top,
            rgba(48, 48, 68, .88) 0%, rgba(48, 48, 68, .78) 55%, rgba(48, 48, 68, .4) 100%);
}

.domain-content {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 30px;
    z-index: 2;
    color: white;
}

.domain-label {
    display: block;
    font-size: 23px;
    font-weight: 900;
    color: white;
    text-transform: uppercase;
    line-height: 1.2;
    transition: transform .5s cubic-bezier(.25, .46, .45, .94);
}

.domain-desc {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin-top: 0;
    font-size: 15px;
    line-height: 1.5;
    transition: max-height .6s cubic-bezier(.25, .46, .45, .94),
                opacity .4s ease,
                margin-top .6s cubic-bezier(.25, .46, .45, .94);
}

.domain-desc p {
    margin: 0 0 14px;
}

.domain-desc p:last-child {
    margin-bottom: 0;
}

.domain-card:hover .domain-label,
.domain-card.is-open .domain-label {
    transform: translateY(-8px);
}

.domain-card:hover .domain-desc,
.domain-card.is-open .domain-desc {
    max-height: 400px;
    opacity: 1;
    margin-top: 18px;
}

/* ── SCHEMA ─────────────────────────────── */
.schema-section {
    padding: 80px 80px 60px;
    max-width: 1440px;
    margin: 0 auto;
}

.schema-big {
    font-size: 38px;
    font-weight: 900;
    text-transform: uppercase;
}

.tl-svg {
    display: block;
    width: 100%;
    margin: 40px 0 0;
}

#tl-path {
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
}

.schema-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
    margin-top: -4px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    flex: 1;
}

/* Each step icon = overflow-hidden container with absolutely positioned sprite */
.step-icon-wrap {
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.step-icon-wrap img {
    position: absolute;
    max-width: none;
}

.step-hr-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
    z-index: 10;
    pointer-events: none;
}

/* Sizes per step */
.step-icon-1 {
    width: 79px;
    height: 100px;
}

.step-icon-2 {
    width: 180px;
    height: 90px;
}

.step-icon-3 {
    width: 100px;
    height: 120px;
}

.step-icon-4 {
    width: 105px;
    height: 100px;
}

.step-icon-5 {
    width: 110px;
    height: 120px;
}

.step-icon-6 {
    width: 90px;
    height: 110px;
}

.step-text {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.55;
    text-align: center;
    color: var(--navy);
}

/* ── BRACELET + COMMENT ─────────────────── */
.bracelet-section {
    max-width: 1440px;
    margin: 0 auto;
    padding: 20px 80px 80px;
}

.section-h {
    font-size: 38px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 48px;
}

.comment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: center;
}

.comment-img {
    border-radius: 78px;
    overflow: hidden;
    height: 100%;
}

.comment-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s;
}

.comment-img:hover img {
    transform: scale(1.04);
}

.comment-body {
    padding: 24px;
}

.comment-h {
    font-size: 38px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.06;
    margin-bottom: 26px;
}

.comment-p {
    font-size: 21px;
    font-weight: 400;
    line-height: 1.62;
    margin-bottom: 38px;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--lavender);
    color: white;
    font-family: var(--font);
    font-size: 21px;
    font-weight: 500;
    border: none;
    border-radius: 35px;
    padding: 18px 50px;
    cursor: pointer;
    transition: transform .3s, box-shadow .3s, background .3s;
}

.btn-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(158, 158, 235, .5);
    background: #8a8adc;
}

/* ── PARTENAIRES ────────────────────────── */
.partenaires-section {
    max-width: 1440px;
    margin: 0 auto;
    padding: 10px 80px 80px;
}

.logos-card {
    background: white;
    border-radius: 54px;
    padding: 52px 80px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 32px 52px;
}

.logo-item {
    height: 64px;
    display: flex;
    align-items: center;
    filter: grayscale(.2);
    transition: filter .3s, transform .3s;
}

.logo-item:hover {
    filter: none;
    transform: scale(1.1);
}

.logo-item img {
    height: 100%;
    width: auto;
    max-width: 158px;
    object-fit: contain;
}

/* ── ANTICIPER ──────────────────────────── */
.anticiper-header {
    max-width: 1440px;
    margin: 0 auto;
    padding: 60px 80px 28px;
}

.anticiper-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 530px;
}

.anticiper-left {
    background: var(--lavender);
    padding: 64px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 22px;
}

.anticiper-logo {
    height: 76px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 8px;
    align-self: start;
}

.anticiper-sub {
    font-size: 21px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    line-height: 1.45;
}

.anticiper-p {
    font-size: 20px;
    font-weight: 400;
    color: rgba(255, 255, 255, .92);
    line-height: 1.65;
}

.anticiper-right {
    position: relative;
    overflow: hidden;
    min-height: 530px;
}

.anticiper-right img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ── INTERFACE NOLY ─────────────────────── */
.interface-section {
    padding: 80px 80px 60px;
    overflow: hidden;
}

.interface-big-h {
    font-size: 44px;
    font-weight: 900;
    line-height: 1.18;
    text-align: center;
    margin-bottom: 52px;
}

.interface-big-h .accent {
    color: var(--purple);
    font-weight: 900;
}

/* Orbit wrapper — fixed height, all children absolute */
.iface-orbit {
    position: relative;
    max-width: 1100px;
    height: 860px;
    margin: 0 auto;
}

/* Dashed SVG circle */
.orbit-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* ── iPhone frame ─── */
.iphone-mockup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.iphone-shell {
    width: 252px;
    background: #353050;
    border-radius: 46px;
    padding: 14px 11px 10px;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, .08),
        0 0 0 1px #4a4668,
        0 28px 70px rgba(28, 22, 55, .45),
        0 6px 20px rgba(158, 158, 235, .14);
}

.iphone-island {
    width: 84px;
    height: 26px;
    background: #1e1b32;
    border-radius: 20px;
    margin: 0 auto 10px;
}

/* Screen = overflow-hidden container, capped to one viewport's worth */
.iphone-screen {
    border-radius: 34px;
    overflow: hidden;
    background: #303044;
    line-height: 0;
    height: 490px;
    /* cap to approx. 1 phone screen height */
}

.iphone-screen-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: top center;
}

.iphone-home-bar {
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
}

.iphone-home-indicator {
    width: 64px;
    height: 3px;
    background: rgba(255, 255, 255, .35);
    border-radius: 2px;
}

/* ── Orbit cards ─── */
.orbit-card {
    position: absolute;
    z-index: 3;
    background: white;
    border-radius: 16px;
    padding: 20px 24px;
    box-shadow: 0 4px 28px rgba(48, 48, 68, .09);
    max-width: 290px;
}

/* Left — LA FICHE MÉDICALE : milieu gauche */
.orbit-card--tl {
    left: 0;
    top: 40%;
    transform: translateY(-55%);
}

/* Right — URGENCE VITALE : milieu droit */
.orbit-card--tr {
    right: 0;
    top: 60%;
    transform: translateY(-75%);
}

/* Bottom — INTERFACE NOLY : bas centré */
.orbit-card--bc {
    bottom: 10px;
    left: 30%;
    transform: translateX(-50%);
    max-width: 320px;
}

.orbit-card-h {
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 10px;
    line-height: 1.1;
}

.orbit-card-p {
    font-size: 15px;
    font-style: italic;
    line-height: 1.6;
    color: var(--navy);
}

.orbit-card-list {
    list-style: disc;
    padding-left: 18px;
    font-size: 15px;
    font-style: italic;
    line-height: 1.85;
}

/* ── AVIS CLIENTS ───────────────────────── */
.avis-section {
    background: var(--lavender);
    padding: 80px;
    overflow: hidden;
}

.avis-title {
    font-size: 38px;
    font-weight: 900;
    text-transform: uppercase;
    color: white;
    margin-bottom: 48px;
}

.avis-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr 1fr;
    gap: 22px;
    align-items: center;
}

.avis-card {
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(48, 48, 68, .18);
}

.avis-card img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.avis-card:not(.featured) img {
    height: 238px;
}

.avis-card.featured img {
    height: 282px;
}

/* ── CONTACT ────────────────────────────── */
.contact-section {
    background: white;
    padding: 80px;
}

.contact-inner {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 80px;
    align-items: start;
}

.contact-h {
    font-size: 38px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 32px;
}

.contact-deco {
    opacity: .82;
    margin-top: 24px;
}

/* ── Contact form ── */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding-top: 8px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.form-field label {
    font-family: var(--font);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--navy);
}

.form-field input,
.form-field select,
.form-field textarea {
    font-family: var(--font);
    font-size: 15px;
    font-weight: 400;
    color: var(--navy);
    background: transparent;
    border: none;
    border-bottom: 1.5px solid rgba(48, 48, 68, .18);
    border-radius: 0;
    padding: 10px 0;
    outline: none;
    transition: border-color .3s;
    -webkit-appearance: none;
    appearance: none;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(48, 48, 68, .35);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--lavender);
}

.form-field select {
    cursor: pointer;
}

.form-field textarea {
    resize: none;
    height: 80px;
}

.form-field--hidden {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-field input.is-invalid,
.form-field select.is-invalid,
.form-field textarea.is-invalid {
    border-color: #d62828;
}

.form-status {
    min-height: 1.4em;
    font-size: 13px;
    font-weight: 700;
    margin-top: 4px;
}

.form-status.is-success {
    color: #2f7a35;
}

.form-status.is-error {
    color: #b42318;
}

.btn-cta[disabled] {
    opacity: .72;
    cursor: not-allowed;
}

/* ════════════════════════════════════════
   RESPONSIVE — sections spécifiques home
   ════════════════════════════════════════ */
@media (max-width: 768px) {

    /* ── Hero ── */
    .hero {
        height: auto;
        min-height: 0;
        margin-top: 96px;
        padding: 0 16px;
        overflow: visible;
    }

    .hero-bg {
        position: relative;
        inset: auto;
        width: 100%;
        height: 220px;
        max-height: 400px;
        border-radius: 28px;
    }

    .hero-overlay {
        inset: 0 16px;
        border-radius: 28px;
    }

    .scroll-cue {
        display: none;
    }

    /* ── Info cards ── */
    .info-section {
        grid-template-columns: 1fr;
        padding: 32px 16px 24px;
        max-height: none;
        gap: 32px;
    }

    .info-card {
        min-height: 0;
        max-height: none;
        border-radius: 0;
        overflow: visible;
        background: transparent;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 20px;
        padding: 0;
    }

    /* Card 1: image left, text right */
    .info-card-l {
        background: transparent;
    }

    .info-card-l .card-bg {
        position: relative;
        inset: auto;
        flex: 0 0 45%;
        width: 45%;
        height: auto;
        aspect-ratio: 1;
        border-radius: 28px;
        background: rgb(225, 225, 227);
        object-fit: cover;
    }

    .info-card-l .card-body {
        flex: 1;
        padding: 0;
        height: auto;
        justify-content: center;
    }

    /* Card 2: text left, image right */
    .info-card-r {
        flex-direction: row-reverse;
    }

    .info-card-r .card-img {
        flex: 0 0 45%;
        width: 45%;
        aspect-ratio: 1;
        max-height: none;
        min-height: 0;
        border-radius: 28px;
    }

    .info-card-r .card-img img {
        height: 100%;
    }

    .card-h {
        font-size: 22px;
    }

    .card-p {
        font-size: 15px;
        line-height: normal;
    }

    /* ── Explications ── */
    .expli-h {
        font-size: 22px;
    }

    .expli-p {
        font-size: 14px;
        line-height: normal;
    }

    .explications-inner {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 52px 24px;
    }

    /* ── Domains ── */
    .domains {
        grid-template-columns: 1fr;
        padding: 32px 16px;
    }

    .domain-card {
        min-height: 420px;
    }

    /* ── Schema ── */
    .schema-section {
        padding: 10px 0 0px;
        overflow: hidden;
    }

    .schema-big {
        padding: 0 24px;
        margin-bottom: 30px;
    }

    .schema-big {
        font-size: 22px;
    }

    .tl-svg {
        display: none;
    }

    .schema-steps {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px 12px;
        padding: 0 16px 16px;
        overflow-x: unset;
    }

    .step {
        min-width: unset;
        flex-shrink: unset;
        align-self: start;
    }

    .step-icon-wrap {
        width: 100%;
        height: 80px;
        min-height: unset;
        background-size: contain !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
    }

    .step-icon-1, .step-icon-2, .step-icon-3,
    .step-icon-4, .step-icon-5, .step-icon-6 {
        width: 100%;
        height: 80px;
    }

    .step-text {
        font-size: 11px;
    }

    /* ── Bracelet ── */
    .section-h {
        font-size: 22px;
        padding: 0 24px;
        margin-bottom: 30px;
    }

    .bracelet-section {
        padding: 20px 0px 40px;
    }

    .comment-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        align-items: center;
        border-radius: 0px !important;
    }

    .comment-img {
        border-radius: 0 24px 24px 0px;
    }

    .comment-body {
        padding: 8px 4px;
    }

    .comment-h {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .comment-p {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .btn-cta {
        font-size: 13px;
        padding: 10px 22px;
        border-radius: 24px;
    }

    /* ── Partenaires ── */
    .partenaires-section {
        padding: 0;
    }

    .logos-card {
        gap: 24px 32px;
        margin: 10px 16px 10px;
        border-radius: 36px;
    }

    /* ── Anticiper ── */
    .anticiper-header {
        padding: 20px 0px 0px;
    }

    .anticiper-header .section-h {
        margin-bottom: 15px;
    }

    .anticiper-grid {
        grid-template-columns: 1fr;
        min-height: unset;
    }

    .anticiper-left {
        padding: 15px 24px;
    }

    .anticiper-right {
        min-height: 260px;
    }

    .anticiper-p {
        line-height: normal;
    }

    /* ── Interface / Orbit ── */
    .interface-section {
        padding: 52px 16px 40px;
    }

    .interface-big-h {
        font-size: clamp(1.6rem, 7vw, 3rem);
    }

    .iface-orbit {
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .orbit-svg {
        display: none;
    }

    .iphone-mockup {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        order: -1;
    }

    .orbit-card {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
        max-width: 100%;
        width: 100%;
    }

    .orbit-card-list {
        line-height: normal;
    }

    /* ── Avis ── */
    .avis-section {
        padding: 25px 16px;
        text-align: center;
    }

    .avis-title {
        font-size: 26px;
        margin-bottom: 32px;
    }

    .avis-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .avis-card:not(.featured) {
        display: none;
    }

    /* ── Contact ── */
    .contact-section {
        padding: 32px 16px;
    }

    .contact-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .contact-h {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .contact-deco {
        margin-top: 0;
        margin-bottom: -30px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .contact-inner .form-submit {
        text-align: center;
    }
}

@media (max-width: 480px) {

    .info-section {
        padding: 24px 12px;
    }

    .logos-card {
        gap: 20px;
        padding: 28px 16px;
    }

    .logo-item {
        height: 48px;
    }

    .contact-h {
        font-size: 22px;
    }

    .avis-card:not(.featured) {
        display: block;
    }
}
