@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
    --ink: #17231f;
    --green: #17382f;
    --green-2: #234b3f;
    --cream: #f6f3ec;
    --paper: #ffffff;
    --sand: #d7b77c;
    --sand-2: #ead8b7;
    --muted: #68716c;
    --line: rgba(23, 56, 47, 0.12);
    --shadow: 0 18px 60px rgba(20, 39, 32, 0.10);
    --radius: 24px;
    --max: 1180px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.65;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

.container {
    width: min(calc(100% - 40px), var(--max));
    margin-inline: auto;
}

.section {
    padding: 110px 0;
}

h1,
h2,
h3 {
    font-family: 'Manrope', sans-serif;
    line-height: 1.08;
    letter-spacing: -0.035em;
}

h2 {
    font-size: clamp(34px, 4.3vw, 58px);
}

p {
    line-height: 1.7;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


/* =========================
   ACCESSIBILITÉ
========================= */

.skip-link {
    position: fixed;
    top: -100px;
    left: 20px;
    z-index: 999;
    background: var(--green);
    color: white;
    padding: 12px 18px;
    border-radius: 8px;
}

.skip-link:focus {
    top: 20px;
}


/* =========================
   HEADER
========================= */

.header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 50;
    padding: 18px 0;
    transition: 0.3s ease;
}

.header.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(18px);
    box-shadow: 0 8px 30px rgba(15, 35, 28, 0.07);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 10px 16px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 18px;
    background: rgba(23, 56, 47, 0.10);
    backdrop-filter: blur(12px);
}

.header.scrolled .header-inner {
    background: transparent;
    border-color: transparent;
    padding-inline: 0;
}

.logo {
    flex: 0 0 auto;
}

.logo img {
    width: 130px;
    height: auto;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    flex: 1;
}

.nav a {
    padding: 9px 11px;
    border-radius: 999px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    transition: 0.25s;
    white-space: nowrap;
}

.header.scrolled .nav a {
    color: var(--ink);
}

.nav a:hover {
    background: rgba(255, 255, 255, 0.15);
}

.header.scrolled .nav a:hover {
    background: var(--cream);
}


/* =========================
   LANGUE
========================= */

.language-switcher {
    flex: 0 0 auto;
    position: relative;
}

.language-switcher select {
    appearance: none;
    -webkit-appearance: none;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-radius: 999px;
    min-width: 58px;
    padding: 8px 27px 8px 11px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    outline: none;
    cursor: pointer;
    background-image:
        linear-gradient(45deg, transparent 50%, currentColor 50%),
        linear-gradient(135deg, currentColor 50%, transparent 50%);
    background-position:
        calc(100% - 13px) 50%,
        calc(100% - 9px) 50%;
    background-size: 4px 4px, 4px 4px;
    background-repeat: no-repeat;
}

.header.scrolled .language-switcher select {
    color: var(--ink);
    border-color: var(--line);
    background-color: #fff;
}

.language-switcher option {
    color: var(--ink);
    background: #fff;
}


/* =========================
   BURGER
========================= */

.burger {
    display: none;
    border: 0;
    background: none;
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
}

.burger span {
    display: block;
    width: 23px;
    height: 2px;
    margin: 5px auto;
    background: #fff;
    transition: 0.25s;
}

.header.scrolled .burger span {
    background: var(--ink);
}


/* =========================
   HERO
========================= */

.hero {
    min-height: 92vh;
    position: relative;
    display: grid;
    place-items: center;
    background:
        linear-gradient(
            90deg,
            rgba(10, 30, 24, 0.80),
            rgba(10, 30, 24, 0.32)
        ),
        url('hero-provence.webp') center / cover no-repeat;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 75% 35%,
            transparent 0,
            rgba(8, 25, 20, 0.24) 55%,
            rgba(8, 25, 20, 0.55) 100%
        );
}

.hero-content {
    position: relative;
    padding: 150px 0 100px;
    max-width: 900px;
}

.hero-tag {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    padding: 8px 13px;
    font-size: 11px;
    letter-spacing: 0.18em;
    font-weight: 700;
    margin-bottom: 22px;
}

.hero h1 {
    font-size: clamp(48px, 7vw, 92px);
    max-width: 900px;
}

.hero h1 span {
    display: block;
    color: var(--sand-2);
}

.hero-text {
    max-width: 650px;
    margin: 28px 0 34px;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.86);
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
    border: 1px solid transparent;
    transition:
        transform 0.25s,
        background 0.25s,
        box-shadow 0.25s;
}

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

.btn-gold {
    background: var(--sand);
    color: var(--ink);
    box-shadow: 0 10px 28px rgba(215, 183, 124, 0.22);
}

.btn-gold:hover {
    background: #e3c992;
}

.btn-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.06);
}

.btn-outline:hover {
    background: #fff;
    color: var(--green);
}

.btn-dark {
    background: var(--green);
    color: #fff;
}

.btn-submit {
    width: 100%;
    border: 0;
}


/* =========================
   TRUST
========================= */

.trust-section {
    background: var(--green);
    color: #fff;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-item {
    display: flex;
    gap: 15px;
    padding: 28px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

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

.trust-icon {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--sand);
    flex: none;
    font-size: 11px;
    font-weight: 700;
}

.trust-item strong {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
}

.trust-item p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.66);
    margin-top: 4px;
}


/* =========================
   SECTION TITRES
========================= */

.section-heading {
    max-width: 760px;
    margin-bottom: 50px;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    letter-spacing: 0.16em;
    font-weight: 800;
    color: var(--green);
    text-transform: uppercase;
}

.section-eyebrow::before {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--sand);
}

.section-heading h2 {
    margin: 17px 0;
}

.section-heading p {
    color: var(--muted);
    font-size: 17px;
}


/* =========================
   INTRO
========================= */

.intro {
    padding: 120px 0;
}

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

.intro-content h2 {
    margin: 18px 0;
}

.intro-content h3 {
    color: var(--green);
    font-size: 23px;
    margin-bottom: 18px;
}

.intro-content p {
    color: var(--muted);
    margin-top: 14px;
}

.intro-image {
    position: relative;
}

.intro-image img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.check-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 28px;
    list-style: none;
}

.check-list li {
    font-size: 14px;
    font-weight: 600;
    display: flex;
    gap: 10px;
}

.check-list span {
    color: var(--sand);
    font-weight: 800;
}


/* =========================
   SERVICES
========================= */

.services {
    background: var(--cream);
}

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

.service-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 28px;
    min-height: 285px;
    transition: 0.3s;
    box-shadow: 0 8px 30px rgba(20, 39, 32, 0.03);
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: transparent;
}

.service-number {
    position: absolute;
    top: 20px;
    right: 22px;
    font-size: 11px;
    font-weight: 800;
    color: var(--sand);
    letter-spacing: 0.12em;
}

.service-icon {
    font-size: 28px;
    margin-bottom: 45px;
    color: var(--green);
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14px;
    color: var(--muted);
}


/* =========================
   FORMULES
========================= */

.offers {
    background: #fff;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    align-items: stretch;
}

.offer-card {
    position: relative;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 34px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(20, 39, 32, 0.04);
}

.offer-card.featured {
    background: var(--green);
    color: #fff;
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.offer-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--sand);
    color: var(--ink);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.offer-top {
    border-bottom: 1px solid var(--line);
    padding-bottom: 25px;
}

.offer-card.featured .offer-top {
    border-color: rgba(255, 255, 255, 0.14);
}

.offer-label {
    font-size: 10px;
    letter-spacing: 0.16em;
    font-weight: 800;
    color: var(--green);
}

.offer-card.featured .offer-label {
    color: var(--sand);
}

.offer-top h3 {
    font-size: 28px;
    margin: 8px 0 20px;
}

.offer-price {
    display: flex;
    align-items: baseline;
    gap: 7px;
    flex-wrap: wrap;
}

.offer-price span {
    font-size: 11px;
    color: var(--muted);
}

.offer-card.featured .offer-price span {
    color: rgba(255, 255, 255, 0.65);
}

.offer-price strong {
    font-family: 'Manrope', sans-serif;
    font-size: 42px;
    letter-spacing: -0.04em;
}

.offer-price small {
    font-size: 12px;
    color: var(--muted);
}

.offer-card.featured .offer-price small {
    color: rgba(255, 255, 255, 0.65);
}

.offer-description {
    margin: 24px 0;
    font-size: 14px;
    color: var(--muted);
    min-height: 70px;
}

.offer-card.featured .offer-description {
    color: rgba(255, 255, 255, 0.72);
}

.offer-list {
    list-style: none;
    display: grid;
    gap: 11px;
    margin-bottom: 28px;
}

.offer-list li {
    display: flex;
    gap: 9px;
    font-size: 13px;
}

.offer-list li span {
    color: var(--sand);
    font-weight: 800;
}

.offer-card .btn {
    width: 100%;
}


/* =========================
   TARIFS / NOTE SURFACE
========================= */

.surface-pricing {
    margin-top: 45px;
    padding: 28px 32px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fff;
    display: grid;
    gap: 13px;
    box-shadow: 0 8px 30px rgba(20, 39, 32, 0.03);
}

.surface-pricing p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.surface-pricing p:first-child {
    color: var(--ink);
}

.surface-pricing strong {
    font-weight: 700;
}


/* =========================
   SERVICES À LA CARTE
========================= */

.carte-section {
    background: var(--cream);
}

.carte-grid {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 950px;
    margin: 0 auto;
}

.carte-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 10px 30px;
    box-shadow: 0 8px 30px rgba(20, 39, 32, 0.03);
}

.carte-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 18px 5px;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
}

.carte-row:last-child {
    border-bottom: 0;
}

.carte-row span {
    color: var(--ink);
}

.carte-row strong {
    color: var(--green);
    white-space: nowrap;
}


/* =========================
   PARTENAIRES
========================= */

.partners-section {
    background: var(--cream);
    padding-top: 0;
}

.partners-section .section-heading {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.partners-section .section-eyebrow {
    color: #76558e;
}

.partners-section .section-eyebrow::before {
    background: #b08bc9;
}

.partners-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 26px !important;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
}

.partner-card {
    min-height: 150px;
    padding: 30px 20px;
    background: #fff;
    border: 1px solid rgba(23, 56, 47, 0.08);
    border-radius: 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 13px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(20, 39, 32, 0.03);
    transition: 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.partner-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--cream);
    color: var(--green);
    font-size: 21px;
}

.partner-card span {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 15px;
}


/* =========================
   ZONE
========================= */

.zone {
    background: var(--green);
    color: #fff;
}

.zone .section-eyebrow {
    color: var(--sand-2);
}

.zone .section-eyebrow::before {
    background: var(--sand);
}

.zone-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 70px;
    align-items: center;
}

.zone-content h2 {
    margin: 16px 0 22px;
}

.zone-content > p {
    color: rgba(255, 255, 255, 0.7);
}

.zone-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 9px 30px;
    margin-top: 28px;
}

.zone-list span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.82);
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.zone-card {
    background: #fff;
    color: var(--ink);
    padding: 10px;
    border-radius: 28px;
}

.zone-card-inner {
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 38px;
}

.zone-card-label {
    font-size: 11px;
    letter-spacing: 0.14em;
    color: var(--green);
    font-weight: 800;
}

.zone-card h3 {
    font-size: 31px;
    margin: 12px 0;
}

.zone-card p {
    color: var(--muted);
    font-size: 14px;
}

.zone-card .text-link {
    display: inline-block;
    margin-top: 22px;
    color: var(--green);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 4px;
}


/* =========================
   MÉTHODE
========================= */

.method {
    background: #fff;
}

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

.method-card {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fff;
}

.method-number {
    font-family: 'Manrope', sans-serif;
    font-size: 42px;
    color: var(--sand);
    font-weight: 800;
}

.method-card h3 {
    font-size: 18px;
    margin: 25px 0 8px;
}

.method-card p {
    font-size: 14px;
    color: var(--muted);
}


/* =========================
   CONTACT
========================= */

.contact {
    background: var(--cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 70px;
    align-items: start;
}

.contact-content h2 {
    margin: 16px 0;
}

.contact-content > p {
    color: var(--muted);
    margin-top: 18px;
}

.contact-details {
    display: grid;
    gap: 12px;
    margin-top: 30px;
}

.contact-detail {
    display: flex;
    gap: 14px;
    align-items: center;
}

.contact-detail-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--line);
    display: grid;
    place-items: center;
    color: var(--green);
    flex: 0 0 auto;
}

.contact-detail small {
    display: block;
    color: var(--muted);
    font-size: 11px;
}

.contact-detail strong {
    display: block;
    font-size: 14px;
}

.contact-form-wrap {
    background: #fff;
    padding: 34px;
    border-radius: 24px;
    box-shadow: var(--shadow);
}

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

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid var(--line);
    background: #fbfaf7;
    border-radius: 12px;
    padding: 13px 14px;
    outline: 0;
    transition: 0.2s;
    color: var(--ink);
}

.form-group textarea {
    min-height: 130px;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(23, 56, 47, 0.07);
}

.form-note {
    font-size: 11px;
    color: var(--muted);
    margin-top: 10px;
    text-align: center;
}


/* =========================
   FOOTER
========================= */

.footer {
    background: var(--cream);
    color: var(--ink);
    padding: 65px 0 22px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 50px;
}

.footer-brand img {
    width: 145px;
    height: auto;
    margin-bottom: 18px;
}

.footer-brand p {
    max-width: 350px;
    color: var(--muted);
    font-size: 13px;
}

.footer-column {
    display: grid;
    align-content: start;
    gap: 9px;
}

.footer-column h3 {
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-column a,
.footer-column span {
    font-size: 13px;
    color: var(--muted);
}

.footer-column a:hover {
    color: var(--green);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid var(--line);
    margin-top: 50px;
    padding-top: 20px;
    color: var(--muted);
    font-size: 11px;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a:hover {
    color: var(--green);
}


/* =========================
   ANIMATIONS
========================= */

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: 0.7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}


/* =========================
   TABLETTE
========================= */

@media (max-width: 1000px) {

    .nav {
        gap: 0;
    }

    .nav a {
        padding: 8px 7px;
        font-size: 11px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-item:nth-child(2) {
        border-right: 0;
    }

    .trust-item:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .offers-grid {
        grid-template-columns: 1fr;
        max-width: 700px;
        margin: 0 auto;
    }

    .offer-card.featured {
        transform: none;
    }

    .method-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .intro-grid,
    .zone-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .intro-image {
        max-width: 620px;
    }

    .zone-card {
        max-width: 620px;
    }

    .partners-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 760px) {

    .container {
        width: min(calc(100% - 28px), var(--max));
    }

    .section {
        padding: 80px 0;
    }

    .header {
        padding: 10px 0;
    }

    .header-inner {
        padding: 8px 12px;
    }

    .logo img {
        width: 112px;
    }

    .burger {
        display: block;
        order: 3;
    }

    .language-switcher {
        margin-left: auto;
    }

    .nav {
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;

        display: none;

        flex-direction: column;
        align-items: stretch;

        background: rgba(255, 255, 255, 0.97);

        border-radius: 18px;

        padding: 10px;

        box-shadow: var(--shadow);
    }

    .nav.open {
    display: flex;
}

    .nav a,
    .header.scrolled .nav a {
        color: var(--ink);
        padding: 13px 14px;
    }

    .hero {
        min-height: 86vh;
    }

    .hero-content {
        padding: 130px 0 90px;
    }

    .hero h1 {
        font-size: clamp(42px, 13vw, 65px);
    }

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

    .trust-grid,
    .services-grid,
    .method-grid {
        grid-template-columns: 1fr;
    }

    .trust-item {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

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

    .check-list,
    .zone-list,
    .form-row {
        grid-template-columns: 1fr;
    }

    .zone-card-inner {
        padding: 28px;
    }

    .contact-form-wrap {
        padding: 22px;
    }

    .surface-pricing {
        padding: 22px;
    }

    .carte-card {
        padding: 8px 18px;
    }

    .carte-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        padding: 15px 3px;
    }

    .partners-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .partner-card {
        min-height: 130px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .footer-legal {
        flex-direction: column;
        gap: 8px;
    }

    .offer-card {
        padding: 27px;
    }

    .offer-price strong {
        font-size: 36px;
    }
}


/* =========================
   PETITS ÉCRANS
========================= */

@media (max-width: 480px) {

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .section-heading h2 {
        font-size: 36px;
    }

    .intro-content h3 {
        font-size: 20px;
    }

    .contact-detail strong {
        font-size: 13px;
    }

    .language-switcher select {
        min-width: 52px;
        padding-left: 9px;
    }
}


/* =========================
   RÉDUCTION DES ANIMATIONS
========================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
/* =========================
   CORRECTIONS MOBILE
========================= */

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

img,
video {
    max-width: 100%;
    height: auto;
}

* {
    box-sizing: border-box;
}
/* ================================
   PRESTATIONS - MOBILE
================================ */

@media screen and (max-width: 760px) {

    .services-grid {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 18px !important;
        width: 100%;
        padding: 0 16px;
    }

    .service-card {
        width: 100% !important;
        min-width: 0 !important;
        min-height: 190px;
        padding: 20px 10px !important;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        text-align: center;
    }

    .service-card h3 {
        width: 100%;
        margin: 15px 0 0;

        font-size: 19px !important;
        line-height: 1.15 !important;

        white-space: normal !important;
        overflow-wrap: break-word;
        word-break: normal;
        text-align: center;
    }

    .service-icon {
        margin-bottom: 5px;
        flex-shrink: 0;
    }
}
/* ================================
   PARTENAIRES - MOBILE
================================ */

@media screen and (max-width: 760px) {

    .partners-grid {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 18px !important;
        width: 100%;
    }

    .partner-card {
        width: 100%;
        min-width: 0;
        min-height: 190px;
        padding: 20px 8px;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        text-align: center;
    }

    .partner-card span {
        display: block;
        width: 100%;

        font-size: 18px;
        line-height: 1.15;

        white-space: normal;
        overflow-wrap: break-word;
        word-break: normal;

        text-align: center;
    }
}
