:root {
    --green-950: #09261d;
    --green-900: #0f3d2e;
    --green-800: #104231;
    --green-700: #165b3a;
    --green-600: #1b6a4b;
    --green-500: #22855e;
    --mint: #eaf6f0;
    --mint-2: #f3faf7;
    --cream: #fbfaf6;
    --paper: #ffffff;
    --ink: #101827;
    --text: #1f2937;
    --muted: #667085;
    --line: rgba(15, 61, 46, .12);
    --shadow: 0 24px 70px rgba(16, 66, 49, .12);
    --shadow-soft: 0 14px 42px rgba(17, 24, 39, .08);
    --radius: 28px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    background: radial-gradient(circle at 10% 3%, rgba(34, 133, 94, .12), transparent 28rem),
    radial-gradient(circle at 88% 12%, rgba(27, 106, 75, .10), transparent 24rem),
    linear-gradient(180deg, #fbfaf6 0%, #f7faf7 34%, #ffffff 100%);
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none
}

img {
    max-width: 100%;
    display: block
}

button, input {
    font-family: inherit
}

.container {
    width: min(calc(100% - 44px), var(--container));
    margin-inline: auto
}

.visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0
}

/* Shared */
.btn {
    min-height: 54px;
    padding: 0 22px;
    border-radius: 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 850;
    font-size: 15px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-2px)
}

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--green-900), var(--green-600));
    box-shadow: 0 18px 38px rgba(27, 106, 75, .28);
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: "";
    position: absolute;
    inset: -120% auto -120% -35%;
    width: 34%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .42), transparent);
    transform: rotate(18deg);
    animation: shine 5.8s ease-in-out infinite;
}

.btn-soft {
    background: #fff;
    color: var(--green-900);
    border-color: var(--line);
    box-shadow: 0 12px 32px rgba(17, 24, 39, .06)
}

.btn-ghost {
    background: rgba(255, 255, 255, .72);
    color: var(--green-900);
    border-color: rgba(15, 61, 46, .13)
}

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 34px;
    padding: 0 13px;
    border-radius: 999px;
    background: rgba(27, 106, 75, .09);
    color: var(--green-700);
    border: 1px solid rgba(27, 106, 75, .10);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.title-xl {
    font-size: clamp(42px, 6vw, 52px);
    line-height: .98;
    letter-spacing: -.075em;
    color: var(--green-950)
}

.section {
    position: relative;
    padding: 92px 0
}

.section.compact {
    padding: 76px 0
}

.section-head {
    max-width: 800px;
    margin: 0 auto 42px;
    text-align: center
}

.section-head h2 {
    font-size: clamp(34px, 4.7vw, 58px);
    line-height: 1.12;
    letter-spacing: -.06em;
    color: var(--ink);
    margin: 16px 0 16px
}

.section-head p {
    font-size: 17px;
    line-height: 1.75;
    color: var(--muted)
}

.mark {
    display: inline-block;
    position: relative;
    padding: 0.02em 0.18em 0.06em;
    margin: 0 0.03em;
    isolation: isolate;
    white-space: nowrap;
}

.mark > span {
    position: relative;
    z-index: 2;
    color: #ffffff;
}

.mark::before {
    content: "";
    position: absolute;
    z-index: 1;

    left: 0;
    right: 0;
    top: 0.08em;
    bottom: 0.02em;

    background: #164b36;

    border-radius: 0.18em;

    transform: rotate(-0.4deg);

    box-shadow: 0 10px 22px rgba(22, 75, 54, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.subtle-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    opacity: .65;
    animation: orbFloat 9s ease-in-out infinite alternate
}

.orb.one {
    width: 310px;
    height: 310px;
    background: rgba(34, 133, 94, .12);
    left: -120px;
    top: 40px
}

.orb.two {
    width: 230px;
    height: 230px;
    background: rgba(15, 61, 46, .08);
    right: -70px;
    bottom: 60px;
    animation-delay: .8s
}

.orb.three {
    width: 125px;
    height: 125px;
    background: rgba(34, 133, 94, .11);
    right: 18%;
    top: 10%;
    animation-delay: 1.4s
}

/* Header */
.site-header {
    position: sticky;
    top: 18px;
    z-index: 50;
    margin-top: 18px
}

.nav-shell {
    min-height: 74px;
    padding: 10px 12px 10px 18px;
    border-radius: 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    background: rgba(255, 255, 255, .82);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border: 1px solid rgba(15, 61, 46, .12);
    box-shadow: 0 18px 55px rgba(16, 66, 49, .10);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: max-content
}

.brand-logo {
    height: 38px;
    width: auto
}

.main-nav > ul {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none
}

.main-nav li {
    position: relative
}

.main-nav a, .main-nav button.nav-trigger {
    min-height: 42px;
    padding: 0 13px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #273449;
    font-size: 14px;
    font-weight: 800;
    border: 0;
    background: transparent;
    cursor: pointer;
    transition: .2s ease;
}

.main-nav a:hover, .nav-trigger:hover {
    background: rgba(27, 106, 75, .08);
    color: var(--green-800)
}

.nav-trigger i {
    font-size: 11px;
    color: var(--green-600)
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: max-content
}

.dashboard-link {
    font-size: 14px;
    font-weight: 850;
    color: var(--green-900);
    padding: 0 12px;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    border-radius: 14px
}

.dashboard-link:hover {
    background: rgba(27, 106, 75, .08)
}

.nav-cta {
    min-height: 46px;
    border-radius: 15px;
    padding-inline: 17px
}

.mega {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    width: 920px;
    transform: translateX(-50%) translateY(10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background: rgba(255, 255, 255, .98);
    border: 1px solid rgba(15, 61, 46, .10);
    border-radius: 30px;
    box-shadow: 0 30px 90px rgba(16, 66, 49, .16);
    padding: 16px;
    transition: .24s ease;
    overflow: hidden;
}

.mega::after {
    content: "";
    position: absolute;
    right: -90px;
    top: -110px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(34, 133, 94, .10);
    pointer-events: none
}

.main-nav li:hover .mega {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0)
}

.mega::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -16px;
    height: 16px
}

.mega-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns:1fr 265px;
    gap: 14px
}

.mega-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 10px
}

.mega-card {
    padding: 15px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(15, 61, 46, .08);
    transition: .2s ease;
    min-height: 112px;
    display: flex;
    gap: 12px;
    align-items: flex-start
}

.mega-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 38px rgba(16, 66, 49, .10);
    border-color: rgba(27, 106, 75, .22);
    background: linear-gradient(135deg, #fff, var(--mint-2))
}

.mega-card i {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 14px;
    background: var(--mint);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-700);
    margin: 0
}

.mega-card strong {
    display: block;
    color: var(--ink);
    font-size: 14px;
    margin-bottom: 5px;
    line-height: 1.15
}

.mega-card span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.45;
    font-weight: 650
}

.mega-panel {
    border-radius: 24px;
    background: linear-gradient(135deg, var(--green-900), var(--green-600));
    padding: 18px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
    box-shadow: 0 18px 45px rgba(16, 66, 49, .18)
}

.mega-panel small {
    display: inline-flex;
    width: max-content;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .13);
    font-weight: 900;
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 12px
}

.mega-panel strong {
    font-size: 22px;
    line-height: 1.05;
    letter-spacing: -.05em;
    display: block;
    margin-bottom: 8px
}

.mega-panel p {
    font-size: 13px;
    line-height: 1.55;
    color: rgba(255, 255, 255, .82);
    margin-bottom: 18px
}

.mega-panel .btn {
    background: #fff;
    color: var(--green-900);
    box-shadow: none;
    width: 100%;
    min-height: 46px
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border-radius: 15px;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--green-900);
    font-size: 18px
}

/* ================================
   PATCH HEADER / MEGA MENU OXL
   À mettre après le CSS existant
================================ */

/* Sécurise le parent du sous-menu */
.main-nav li {
    position: relative;
}

/* Évite que le sous-menu disparaisse quand on descend la souris */
.main-nav li:has(.mega)::after {
    content: "";
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 22px;
    z-index: 98;
}


/* Mega menu amélioré */
.main-nav .mega {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    width: min(920px, calc(100vw - 40px));
    transform: translateX(-50%) translateY(12px);
    padding: 16px;
    border-radius: 28px;

    background: radial-gradient(circle at 12% 0%, rgba(30, 106, 77, .08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8fcf9 100%);

    border: 1px solid rgba(15, 47, 35, .10);
    box-shadow: 0 34px 90px rgba(15, 47, 35, .16),
    0 8px 22px rgba(15, 47, 35, .08);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    z-index: 99;
    transition: opacity .22s ease,
    visibility .22s ease,
    transform .22s ease;
}

/* Zone invisible au-dessus du menu pour éviter la coupure */
.main-nav .mega::before {
    content: "";
    position: absolute;
    left: 0;
    top: -18px;
    width: 100%;
    height: 18px;
}

/* Affichage au survol du li, du bouton OU du menu */
.main-nav li:hover > .mega,
.main-nav li:focus-within > .mega,
.main-nav .mega:hover {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

/* Rotation chevron */
.main-nav li:hover .nav-trigger i,
.main-nav li:focus-within .nav-trigger i {
    transform: rotate(180deg);
}

/* Layout interne */
.mega-layout {
    display: grid;
    grid-template-columns: 1.55fr .75fr;
    gap: 16px;
    align-items: stretch;
}

/* Grille des fonctionnalités */
.mega-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

/* Cards du sous-menu */
.mega-card {
    min-height: 94px;
    padding: 14px;
    border-radius: 18px;

    display: flex;
    align-items: flex-start;
    gap: 12px;

    background: rgba(255, 255, 255, .78);
    border: 1px solid rgba(15, 47, 35, .08);

    color: #26342f;
    text-decoration: none;

    box-shadow: 0 8px 18px rgba(15, 47, 35, .04);
    transition: transform .2s ease,
    box-shadow .2s ease,
    background .2s ease,
    border-color .2s ease;
}

.mega-card:hover {
    transform: translateY(-3px);
    background: #ffffff;
    border-color: rgba(30, 106, 77, .18);
    box-shadow: 0 14px 30px rgba(15, 47, 35, .09);
}

/* Icônes */
.mega-card > i {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;
    background: #e4f4eb;
    color: #1e6a4d;

    font-size: 15px;
    transition: background .2s ease,
    color .2s ease,
    transform .2s ease;
}

.mega-card:hover > i {
    background: linear-gradient(135deg, #164b36, #1e6a4d);
    color: #ffffff;
    transform: rotate(-4deg) scale(1.04);
}

/* Textes */
.mega-card span {
    min-width: 0;
}

.mega-card strong {
    display: block;
    margin-bottom: 4px;

    color: #15231d;
    font-size: 14px;
    font-weight: 850;
    line-height: 1.15;
}

.mega-card span span {
    display: block;
    color: #6e7b75;
    font-size: 12px;
    line-height: 1.45;
}

/* Panel à droite */
.mega-panel {
    position: relative;
    overflow: hidden;

    padding: 22px;
    border-radius: 22px;

    background: radial-gradient(circle at 20% 12%, rgba(255, 255, 255, .22), transparent 28%),
    linear-gradient(145deg, #0f2f23 0%, #164b36 52%, #1e6a4d 100%);

    color: #ffffff;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 22px;
    min-height: 100%;
}

.mega-panel::after {
    content: "";
    position: absolute;
    right: -55px;
    bottom: -55px;
    width: 170px;
    height: 170px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .10);
}

.mega-panel small {
    display: inline-flex;
    width: max-content;

    padding: 7px 10px;
    margin-bottom: 14px;
    border-radius: 999px;

    background: rgba(255, 255, 255, .13);
    color: rgba(255, 255, 255, .82);

    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.mega-panel strong {
    display: block;
    max-width: 260px;

    color: #ffffff;
    font-size: 24px;
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -.04em;
}

.mega-panel p {
    max-width: 280px;
    margin-top: 12px;

    color: rgba(255, 255, 255, .78);
    font-size: 14px;
    line-height: 1.65;
}

/* Bouton du panel */
.mega-panel .btn {
    position: relative;
    z-index: 1;

    min-height: 48px;
    padding: 0 16px;
    border-radius: 15px;

    background: #ffffff;
    color: #164b36;

    font-weight: 900;
    text-decoration: none;

    box-shadow: 0 14px 28px rgba(0, 0, 0, .14);
}

.mega-panel .btn:hover {
    transform: translateY(-2px);
}

/* Amélioration responsive */
@media (max-width: 1050px) {
    .main-nav .mega {
        width: min(760px, calc(100vw - 28px));
    }

    .mega-layout {
        grid-template-columns: 1fr;
    }

    .mega-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mega-panel {
        min-height: auto;
    }
}

@media (max-width: 720px) {
    .main-nav .mega {
        position: static;
        transform: none;
        width: 100%;
        margin-top: 10px;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        box-shadow: none;
    }

    .mega-grid {
        grid-template-columns: 1fr;
    }

    .mega-card {
        min-height: auto;
    }
}

/* Hero */
.hero {
    position: relative;
    padding: 78px 0 44px;
    overflow: hidden
}

.hero-grid {
    display: grid;
    grid-template-columns:.92fr 1.08fr;
    gap: 48px;
    align-items: center
}

.hero-copy {
    position: relative;
    z-index: 2
}

.hero-copy h1 {
    margin: 18px 0 18px;
    max-width: 680px
}

.hero-lead {
    max-width: 560px;
    margin: 0 0 22px;

    color: #56635e;

    font-size: 17px;
    font-weight: 500;
    line-height: 1.62;
    letter-spacing: -0.01em;

}

.hero-lead strong {
    color: var(--green-900);
    font-weight: 900
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
    margin-bottom: 22px
}

.hero-actions .btn {
    flex: 0 0 auto
}

.hero-proof, .proof-dots, .proof-dot {
    display: none !important
}

.hero-metrics {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 12px;
    margin-top: -55px;
    max-width: 660px
}

.metric {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, .86);
    border: 1px solid rgba(15, 61, 46, .12);
    border-radius: 23px;
    padding: 17px 17px 16px;
    box-shadow: 0 16px 38px rgba(16, 66, 49, .08)
}

.metric::before {
    content: "";
    position: absolute;
    right: -28px;
    top: -32px;
    width: 86px;
    height: 86px;
    border-radius: 50%;
    background: rgba(34, 133, 94, .10)
}

.metric strong {
    position: relative;
    display: block;
    color: var(--green-900);
    font-size: 25px;
    letter-spacing: -.055em;
    line-height: 1
}

.metric span {
    position: relative;
    display: block;
    margin-top: 7px;
    font-size: 12px;
    color: #536171;
    font-weight: 800;
    line-height: 1.35
}

.hero-visual {
    position: relative;
    min-height: 570px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px
}

.hero-ring {
    position: absolute;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(34, 133, 94, .14), transparent 66%);
    animation: pulseRing 4.8s ease-in-out infinite
}

.phone-cluster {
    position: relative;
    width: min(100%, 580px);
    height: 540px
}

.phone-device {
    position: absolute;
    border-radius: 42px;
    background: #f8fbfa;
    padding: 11px;
    box-shadow: 0 28px 75px rgba(16, 66, 49, .22), inset 0 0 0 1px rgba(255, 255, 255, .8);
    border: 1px solid rgba(17, 24, 39, .08);
    animation: floaty 5.6s ease-in-out infinite
}

.phone-device::before {
    content: "";
    position: absolute;
    top: 19px;
    left: 50%;
    transform: translateX(-50%);
    width: 74px;
    height: 17px;
    background: rgba(16, 24, 39, .18);
    border-radius: 999px;
    z-index: 4
}

.phone-device.main {
    width: 245px;
    left: 50%;
    top: 8px;
    transform: translateX(-50%);
    z-index: 3
}

.phone-device.left {
    width: 190px;
    left: 18px;
    bottom: 38px;
    z-index: 2;
    animation-delay: .5s;
    transform: rotate(-7deg)
}

.phone-device.right {
    width: 185px;
    right: 12px;
    bottom: 58px;
    z-index: 1;
    animation-delay: 1s;
    transform: rotate(7deg)
}

.phone-screen {
    border-radius: 31px;
    overflow: hidden;
    background: #fff;
    aspect-ratio: 9/19;
    position: relative
}

.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.visual-card {
    position: absolute;
    z-index: 5;
    padding: 15px 16px;
    border-radius: 22px;
    background: rgba(255, 255, 255, .90);
    border: 1px solid rgba(15, 61, 46, .10);
    box-shadow: 0 20px 48px rgba(17, 24, 39, .12);
    backdrop-filter: blur(14px)
}

.visual-card strong {
    display: block;
    color: var(--green-900);
    font-size: 18px;
    letter-spacing: -.04em
}

.visual-card span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    margin-top: 3px
}

.visual-card i {
    color: var(--green-600);
    margin-right: 8px
}

.visual-card.one {
    left: 0;
    top: 54px
}

.visual-card.two {
    right: 6px;
    top: 138px
}

.visual-card.three {
    left: 45px;
    bottom: 8px
}

.scroll-cue {
    margin-top: 36px;
    display: flex;
    justify-content: center;
    color: var(--green-700);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
    gap: 10px;
    align-items: center;
    opacity: .8
}

.scroll-cue span {
    width: 42px;
    height: 1px;
    background: rgba(27, 106, 75, .3)
}

/* Marquee */
.marquee {
    position: relative;
    overflow: hidden;
    margin-top: 6px;
}

.marquee::before, .marquee::after {
    content: "";
    position: absolute;
    top: 0;
    width: 130px;
    height: 100%;
    z-index: 2;
    pointer-events: none
}

.marquee::before {
    left: 0;
    background: linear-gradient(90deg, #fbfaf6, transparent)
}

.marquee::after {
    right: 0;
    background: linear-gradient(270deg, #fbfaf6, transparent)
}

.marquee-track {
    display: flex;
    gap: 18px;
    width: max-content;
    animation: marquee 42s linear infinite
}

.marquee-item {
    height: 42px;
    padding: 0 16px;
    border-radius: 15px;
    background: #fff;
    border: 1px solid rgba(15, 61, 46, .09);
    display: flex;
    align-items: center;
    gap: 10px;
    color: #344054;
    font-weight: 850;
    font-size: 14px;
    box-shadow: 0 8px 22px rgba(17, 24, 39, .04)
}

.marquee-item i {
    color: var(--green-600)
}

/* Pain/intro compact */
.pain {
    padding-top: 70px;
    padding-bottom: 74px
}

.pain-grid {
    display: grid;
    grid-template-columns:1.05fr .95fr;
    gap: 24px;
    align-items: stretch
}

.pain-main {
    border-radius: 34px;
    background: #fff;
    border: 1px solid rgba(15, 61, 46, .10);
    box-shadow: var(--shadow-soft);
    padding: 36px;
    position: relative;
    overflow: hidden
}

.pain-main::after {
    content: "";
    position: absolute;
    right: -70px;
    top: -90px;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    background: rgba(27, 106, 75, .10)
}

.pain-main h2 {
    font-size: clamp(30px, 4.6vw, 38px);
    line-height: 1.08;
    letter-spacing: -.06em;
    color: var(--ink);
    margin: 15px 0
}

.pain-main p {
    font-size: 17px;
    line-height: 1.75;
    color: var(--muted);
    max-width: 650px
}

.pain-list {
    display: grid;
    gap: 13px
}

.pain-item {
    position: relative;
    border-radius: 28px;
    background: #fff;
    border: 1px solid rgba(15, 61, 46, .10);
    padding: 20px 20px 20px 22px;
    display: grid;
    grid-template-columns:auto 1fr;
    gap: 15px;
    align-items: center;
    box-shadow: 0 13px 32px rgba(16, 66, 49, .07);
    overflow: hidden;
    transition: .24s ease
}

.pain-item::after {
    content: "";
    position: absolute;
    right: -50px;
    bottom: -55px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: rgba(27, 106, 75, .07)
}

.pain-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 44px rgba(16, 66, 49, .11);
    border-color: rgba(27, 106, 75, .20)
}

.pain-item i {
    position: relative;
    z-index: 1;
    width: 46px;
    height: 46px;
    border-radius: 17px;
    background: linear-gradient(135deg, var(--green-900), var(--green-600));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    box-shadow: 0 12px 25px rgba(27, 106, 75, .20)
}

.pain-item strong {
    position: relative;
    z-index: 1;
    display: block;
    font-size: 17px;
    color: var(--ink);
    margin-bottom: 5px;
    letter-spacing: -.025em
}

.pain-item span {
    position: relative;
    z-index: 1;
    display: block;
    font-size: 16px;
    color: var(--muted);
    line-height: 1.58
}

/* Showcase mobile */
.showcase {
    background: linear-gradient(180deg, #fff 0%, #f4faf7 100%);
    overflow: hidden
}

.showcase-grid {
    display: grid;
    grid-template-columns:.88fr 1.12fr;
    gap: 56px;
    align-items: center
}

.showcase-copy h2 {
    font-size: clamp(34px, 4.8vw, 58px);
    line-height: 1.1;
    letter-spacing: -.06em;
    color: var(--ink);
    margin: 16px 0
}

.showcase-copy p {
    font-size: 17px;
    line-height: 1.78;
    color: var(--muted);
    margin-bottom: 22px
}

.showcase-points {
    display: grid;
    gap: 12px
}

.showcase-point {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .74);
    border: 1px solid rgba(15, 61, 46, .09)
}

.showcase-point i {
    color: var(--green-600);
    margin-top: 3px
}

.showcase-point strong {
    display: block;
    color: var(--ink);
    font-size: 15px
}

.showcase-point span {
    display: block;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
    margin-top: 3px
}

.mobile-stage {
    position: relative;
    min-height: 590px
}

.stage-orb {
    position: absolute;
    inset: 28px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(34, 133, 94, .16), transparent 64%)
}

.stage-phone {
    position: absolute;
    border-radius: 42px;
    background: #f7faf8;
    padding: 11px;
    border: 1px solid rgba(17, 24, 39, .08);
    box-shadow: 0 28px 76px rgba(16, 66, 49, .18)
}

.stage-phone::before {
    content: "";
    position: absolute;
    top: 19px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 16px;
    background: rgba(17, 24, 39, .18);
    border-radius: 999px;
    z-index: 4
}

.stage-phone.main {
    width: 252px;
    left: 50%;
    top: 24px;
    transform: translateX(-50%);
    z-index: 3;
    animation: floaty 5.5s ease-in-out infinite
}

.stage-phone.side-a {
    width: 185px;
    left: 12px;
    bottom: 52px;
    transform: rotate(-5deg);
    z-index: 2;
    animation: floaty 6s ease-in-out infinite .6s
}

.stage-phone.side-b {
    width: 180px;
    right: 20px;
    bottom: 38px;
    transform: rotate(6deg);
    z-index: 1;
    animation: floaty 6.2s ease-in-out infinite 1.2s
}

.stage-chip {
    position: absolute;
    z-index: 5;
    background: #fff;
    border: 1px solid rgba(15, 61, 46, .10);
    border-radius: 22px;
    padding: 14px 16px;
    box-shadow: 0 16px 38px rgba(17, 24, 39, .10);
    font-size: 13px;
    color: var(--muted);
    font-weight: 750
}

.stage-chip strong {
    display: block;
    color: var(--green-900);
    font-size: 18px;
    letter-spacing: -.04em
}

.stage-chip.one {
    left: 40px;
    top: 84px
}

.stage-chip.two {
    right: 16px;
    top: 170px
}

.stage-chip.three {
    left: 48%;
    bottom: 24px;
    transform: translateX(-50%)
}

/* Features */
.features {
    background: linear-gradient(180deg, #fff 0%, #f7fbf8 100%);
    overflow: hidden
}

.features::before {
    content: "";
    position: absolute;
    left: -150px;
    top: 70px;
    width: 440px;
    height: 440px;
    border-radius: 50%;
    background: rgba(27, 106, 75, .09)
}

.features::after {
    content: "";
    position: absolute;
    right: -120px;
    bottom: 40px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: rgba(34, 133, 94, .11)
}

.features-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns:repeat(12, 1fr);
    gap: 15px
}

.feature-card {
    grid-column: span 3;
    min-height: 236px;
    padding: 22px;
    border-radius: 30px;
    background: rgba(255, 255, 255, .88);
    border: 1px solid rgba(15, 61, 46, .10);
    box-shadow: 0 16px 42px rgba(17, 24, 39, .055);
    transition: .24s ease;
    overflow: hidden;
    position: relative
}

.feature-card::after {
    content: "";
    position: absolute;
    right: -46px;
    bottom: -54px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: rgba(27, 106, 75, .055)
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 55px rgba(16, 66, 49, .12);
    border-color: rgba(27, 106, 75, .22)
}

.feature-card.featured {
    grid-column: span 6;
    background: linear-gradient(135deg, var(--green-900), var(--green-600));
    color: #fff;
    box-shadow: 0 26px 68px rgba(16, 66, 49, .22)
}

.feature-card.wide {
    grid-column: span 6;
    min-height: 220px
}

.feature-card.featured::after {
    background: rgba(255, 255, 255, .09)
}

.feature-card.featured p, .feature-card.featured li {
    color: rgba(255, 255, 255, .84)
}

.feature-card.featured .feature-icon {
    background: rgba(255, 255, 255, .14);
    color: #fff
}

.feature-icon {
    position: relative;
    z-index: 1;
    width: 50px;
    height: 50px;
    border-radius: 19px;
    background: var(--mint);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-700);
    margin-bottom: 18px;
    font-size: 18px
}

.feature-card h3 {
    position: relative;
    z-index: 1;
    font-size: 19px;
    line-height: 1.18;
    letter-spacing: -.04em;
    color: inherit;
    margin-bottom: 10px
}

.feature-card p {
    position: relative;
    z-index: 1;
    font-size: 14px;
    line-height: 1.62;
    color: var(--muted);
    margin-bottom: 13px
}

.feature-card ul {
    position: relative;
    z-index: 1;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.feature-card li {
    font-size: 12px;
    line-height: 1.2;
    color: #526070;
    font-weight: 850;
    display: flex;
    gap: 6px;
    background: rgba(234, 246, 240, .72);
    border: 1px solid rgba(15, 61, 46, .07);
    border-radius: 999px;
    padding: 7px 9px
}

.feature-card li::before {
    content: "✓";
    color: var(--green-600);
    font-weight: 900
}

.feature-card.featured li {
    background: rgba(255, 255, 255, .10);
    border-color: rgba(255, 255, 255, .12)
}

.feature-card.featured li::before {
    color: #fff
}

.features-note {
    position: relative;
    z-index: 2;
    margin-top: 18px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid rgba(15, 61, 46, .10);
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: var(--muted);
    box-shadow: 0 14px 38px rgba(16, 66, 49, .06)
}

.features-note strong {
    color: var(--green-900)
}

/* APP */
.app {
    background: linear-gradient(180deg, #fff 0%, #f4faf7 100%);
    overflow: hidden
}

.app-grid {
    display: grid;
    grid-template-columns:.88fr 1.12fr;
    gap: 58px;
    align-items: center
}

.app-copy h2 {
    font-size: clamp(34px, 4.7vw, 50px);
    line-height: 1.15;
    letter-spacing: -.06em;
    color: var(--ink);
    margin: 16px 0
}

.app-copy p {
    font-size: 17px;
    line-height: 1.78;
    color: var(--muted);
    margin-bottom: 20px
}

.app-points {
    display: grid;
    grid-template-columns:1fr;
    gap: 10px
}

.app-point {
    min-height: 58px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(15, 61, 46, .10);
    padding: 13px 14px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    font-weight: 850;
    color: #344054;
    box-shadow: 0 10px 25px rgba(17, 24, 39, .045)
}

.app-point i {
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: 11px;
    background: var(--mint);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-700);
    font-size: 13px
}

.app-point span {
    line-height: 1.42
}

.app-visual {
    position: relative;
    min-height: 590px
}

.app-orbit {
    position: absolute;
    inset: 68px 20px;
    border-radius: 44px;
    background: radial-gradient(circle at 55% 45%, rgba(27, 106, 75, .17), transparent 62%);
    animation: pulseRing 5s ease-in-out infinite
}

.app-desktop {
    position: absolute;
    left: 0;
    right: 0;
    top: 42px;
    margin: auto;
    width: min(100%, 520px);
    border-radius: 28px;
    background: #fff;
    border: 1px solid rgba(15, 61, 46, .10);
    box-shadow: 0 32px 82px rgba(16, 66, 49, .18);
    padding: 12px
}

.app-desktop-top {
    height: 34px;
    border-radius: 18px 18px 10px 10px;
    background: linear-gradient(135deg, #f8fbfa, #edf7f2);
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 13px
}

.app-desktop-top span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(15, 61, 46, .25)
}

.app-desktop img {
    border-radius: 16px;
    aspect-ratio: 16/9;
    object-fit: cover;
    width: 100%
}

.app-main-phone {
    position: absolute;
    right: 26px;
    bottom: 28px;
    width: 205px;
    border-radius: 39px;
    background: #f7faf8;
    padding: 9px;
    border: 1px solid rgba(17, 24, 39, .08);
    box-shadow: 0 32px 80px rgba(16, 66, 49, .24);
    animation: floaty 5.8s ease-in-out infinite
}

.app-main-phone::before {
    content: "";
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 62px;
    height: 14px;
    border-radius: 999px;
    background: rgba(17, 24, 39, .18);
    z-index: 2
}

.app-main-phone img {
    border-radius: 29px;
    aspect-ratio: 9/19;
    object-fit: cover
}

.app-bubble {
    position: absolute;
    border-radius: 20px;
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(15, 61, 46, .10);
    box-shadow: 0 20px 44px rgba(17, 24, 39, .10);
    padding: 13px 15px;
    font-size: 14px;
    font-weight: 900;
    color: var(--green-900);
    z-index: 4
}

.app-bubble small {
    display: block;
    color: var(--muted);
    font-size: 12px;
    font-weight: 750;
    margin-top: 3px
}

.app-bubble.one {
    left: 22px;
    top: 82px
}

.app-bubble.two {
    right: 14px;
    top: 112px
}

.app-bubble.three {
    left: 28px;
    bottom: 130px
}

.app-bubble.four {
    right: 190px;
    bottom: 50px
}

/* Pricing */
.pricing {
    background: linear-gradient(180deg, #fff 0%, #f6fbf8 100%);
    overflow: hidden
}

.pricing-wrap {
    display: grid;
    grid-template-columns:1fr .95fr;
    gap: 22px;
    align-items: stretch
}

.price-card {
    position: relative;
    border-radius: 38px;
    background: #fff;
    border: 1px solid rgba(15, 61, 46, .11);
    box-shadow: var(--shadow);
    padding: 36px;
    overflow: hidden
}

.price-card::after {
    content: "";
    position: absolute;
    right: -80px;
    top: -80px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(34, 133, 94, .10)
}

.price-top {
    position: relative;
    z-index: 2
}

.price-top h2 {
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.02;
    letter-spacing: -.075em;
    color: var(--ink);
    margin: 17px 0 14px
}

.price-top p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--muted);
    max-width: 660px
}

.price-badges {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 23px 0 8px
}

.price-badge {
    height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: var(--mint);
    color: var(--green-800);
    display: flex;
    align-items: center;
    font-weight: 900;
    font-size: 12px
}

.price-copy {
    position: relative;
    z-index: 2;
    border-radius: 25px;
    background: linear-gradient(135deg, var(--mint-2), #fff);
    border: 1px solid rgba(15, 61, 46, .09);
    padding: 21px;
    margin: 22px 0
}

.price-copy strong {
    color: var(--green-900)
}

.price-copy p {
    font-size: 15px;
    line-height: 1.65;
    color: #536171
}

.price-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2
}

.price-feature-list {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns:repeat(2, 1fr);
    gap: 9px;
    margin-top: 20px
}

.price-feature-list span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 850;
    color: #344054;
    background: #fff;
    border: 1px solid rgba(15, 61, 46, .08);
    border-radius: 999px;
    padding: 9px 11px
}

.price-feature-list i {
    color: var(--green-600)
}

.value-wall {
    display: grid;
    gap: 12px
}

.value-card {
    border-radius: 28px;
    background: linear-gradient(135deg, #fff, var(--mint-2));
    border: 1px solid rgba(15, 61, 46, .10);
    box-shadow: 0 14px 36px rgba(16, 66, 49, .07);
    padding: 22px;
    position: relative;
    overflow: hidden
}

.value-card.dark {
    background: linear-gradient(135deg, var(--green-900), var(--green-600));
    color: #fff
}

.value-card.dark p, .value-card.dark span {
    color: rgba(255, 255, 255, .8)
}

.value-card i {
    width: 42px;
    height: 42px;
    border-radius: 15px;
    background: var(--mint);
    color: var(--green-700);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px
}

.value-card.dark i {
    background: rgba(255, 255, 255, .14);
    color: #fff
}

.value-card strong {
    display: block;
    font-size: 18px;
    letter-spacing: -.035em;
    margin-bottom: 6px
}

.value-card p {
    font-size: 14px;
    line-height: 1.58;
    color: var(--muted)
}

.value-mini-list {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 7px
}

.value-mini-list span {
    font-size: 12px;
    font-weight: 850;
    color: var(--green-800);
    background: #fff;
    border: 1px solid rgba(15, 61, 46, .08);
    border-radius: 999px;
    padding: 7px 10px
}

.calculator {
    margin-top: 22px;
    border-radius: 36px;
    background: #fff;
    border: 1px solid rgba(15, 61, 46, .11);
    box-shadow: 0 18px 55px rgba(16, 66, 49, .09);
    padding: 30px
}

.calculator-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px
}

.calculator-head h3 {
    font-size: 28px;
    letter-spacing: -.05em;
    color: var(--ink)
}

.calculator-head p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.55;
    max-width: 520px
}

.calc-grid {
    display: grid;
    grid-template-columns:repeat(2, 1fr);
    gap: 14px
}

.calc-field label {
    display: block;
    font-size: 12px;
    font-weight: 900;
    color: var(--green-800);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 7px
}

.calc-field input {
    width: 100%;
    height: 54px;
    border-radius: 17px;
    border: 1px solid rgba(15, 61, 46, .14);
    background: var(--mint-2);
    padding: 0 15px;
    font-size: 18px;
    font-weight: 900;
    color: var(--ink);
    outline: none
}

.calc-field input:focus {
    border-color: var(--green-600);
    box-shadow: 0 0 0 4px rgba(27, 106, 75, .11);
    background: #fff
}

.calc-results {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 14px;
    margin-top: 16px
}

.calc-result {
    border-radius: 22px;
    padding: 19px;
    background: var(--mint-2);
    border: 1px solid rgba(15, 61, 46, .08);
    text-align: center
}

.calc-result.featured {
    background: linear-gradient(135deg, var(--green-900), var(--green-600));
    color: #fff;
    box-shadow: 0 16px 38px rgba(16, 66, 49, .18)
}

.calc-result span {
    display: block;
    font-size: 12px;
    color: var(--muted);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 6px
}

.calc-result.featured span {
    color: rgba(255, 255, 255, .76)
}

.calc-result strong {
    font-size: 28px;
    letter-spacing: -.055em;
    color: var(--green-900)
}

.calc-result.featured strong {
    color: #fff;
    font-size: 34px
}

.calc-note {
    margin-top: 15px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--green-900), var(--green-600));
    color: #fff;
    padding: 18px 20px;
    display: flex;
    gap: 14px;
    align-items: center;
    line-height: 1.55;
    font-size: 14px
}

.calc-note i {
    width: 42px;
    height: 42px;
    border-radius: 15px;
    background: rgba(255, 255, 255, .14);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto
}

.calc-note strong {
    color: #fff
}

/* FAQ */
.faq {
    background: #fff
}

.faq-layout {
    display: grid;
    grid-template-columns:.38fr .62fr;
    gap: 28px;
    align-items: start
}

.faq-aside {
    position: sticky;
    top: 120px;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--mint-2), #fff);
    border: 1px solid rgba(15, 61, 46, .10);
    padding: 26px;
    box-shadow: 0 15px 40px rgba(16, 66, 49, .06)
}

.faq-aside h3 {
    font-size: 27px;
    line-height: 1.1;
    letter-spacing: -.05em;
    color: var(--ink);
    margin: 14px 0
}

.faq-aside p {
    font-size: 15px;
    line-height: 1.65;
    color: var(--muted);
    margin-bottom: 18px
}

.faq-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.faq-tab {
    height: 39px;
    padding: 0 13px;
    border-radius: 999px;
    border: 1px solid rgba(15, 61, 46, .12);
    background: #fff;
    color: var(--green-900);
    font-weight: 900;
    cursor: pointer
}

.faq-tab.is-active {
    background: var(--green-900);
    color: #fff
}

.faq-list {
    display: grid;
    gap: 10px
}

.faq-item {
    border-radius: 24px;
    background: #fff;
    border: 1px solid rgba(15, 61, 46, .11);
    box-shadow: 0 10px 30px rgba(17, 24, 39, .04);
    overflow: hidden
}

.faq-question {
    width: 100%;
    border: 0;
    background: transparent;
    min-height: 70px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    text-align: left;
    color: var(--ink);
    font-size: 16px;
    font-weight: 900;
    cursor: pointer
}

.faq-question i {
    color: var(--green-600);
    transition: .2s
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .28s ease
}

.faq-answer p {
    padding: 0 22px 20px;
    color: var(--muted);
    line-height: 1.7;
    font-size: 15px
}

.faq-item.is-open .faq-answer {
    max-height: 260px
}

.faq-item.is-open .faq-question i {
    transform: rotate(45deg)
}

.faq-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 22px
}

.faq-page-btn {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    border: 1px solid rgba(15, 61, 46, .12);
    background: #fff;
    color: var(--green-900);
    font-weight: 900;
    cursor: pointer
}

.faq-page-btn.is-active {
    background: var(--green-900);
    color: #fff
}

/* Final CTA */
.final-cta {
    padding: 82px 0;
    background: linear-gradient(180deg, #fff, #f6fbf8)
}

.final-box {
    position: relative;
    overflow: hidden;
    border-radius: 42px;
    background: linear-gradient(135deg, #ffffff 0%, #f2faf6 46%, #e7f5ee 100%);
    border: 1px solid rgba(15, 61, 46, .12);
    box-shadow: var(--shadow);
    padding: 56px;
    text-align: center
}

.final-box::before {
    content: "";
    position: absolute;
    left: -90px;
    top: -90px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(34, 133, 94, .12)
}

.final-box::after {
    content: "";
    position: absolute;
    right: -80px;
    bottom: -90px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(15, 61, 46, .08)
}

.final-inner {
    position: relative;
    z-index: 2;
    max-width: 820px;
    margin: auto
}

.final-box h2 {
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.08;
    letter-spacing: -.07em;
    color: var(--ink);
    margin: 16px 0
}

.final-box p {
    font-size: 18px;
    line-height: 1.75;
    color: var(--muted);
    margin-bottom: 24px
}

.final-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap
}

.final-micro {
    margin-top: 16px;
    font-size: 13px;
    color: #667085;
    font-weight: 750
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, var(--green-900), var(--green-600));
    border-top: 1px solid rgba(15, 61, 46, .10);
    padding: 68px 0 26px;
    color: #344054;
    position: relative;
    overflow: hidden
}

.site-footer::before {
    content: "";
    position: absolute;
    left: -130px;
    top: 60px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(27, 106, 75, .09)
}

.site-footer::after {
    content: "";
    position: absolute;
    right: -160px;
    bottom: 80px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(34, 133, 94, .08)
}

.footer-inner {
    position: relative;
    z-index: 1
}

.footer-top {
    display: grid;
    grid-template-columns:1.25fr .9fr .9fr .9fr;
    gap: 22px;
    align-items: start
}

.footer-brand-card {
    border-radius: 32px;
    border: 1px solid rgba(15, 61, 46, .10);
    box-shadow: 0 18px 50px rgba(16, 66, 49, .07);
    padding: 26px
}

.footer-logo {
    height: 90px;
    margin-bottom: 18px;
    filter: brightness(38);
}

.footer-brand-card p {
    font-size: 14px;
    line-height: 1.75;
    color: #fff;
    margin-bottom: 18px
}

.footer-contact {
    display: grid;
    gap: 8px
}

.footer-contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 850;
    color: var(--green-900);
    background: var(--mint-2);
    border: 1px solid rgba(15, 61, 46, .08);
    border-radius: 15px;
    padding: 11px 12px
}

.footer-col {
    border-radius: 28px;
    border: 1px solid rgba(15, 61, 46, .08);
    padding: 21px;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly
}

.footer-col h3 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .11em;
    color: #fff;
    margin-bottom: 14px
}

.footer-links {
    list-style: none;
    display: grid;
    gap: 9px
}

.footer-links a {
    font-size: 14px;
    color: #fff;
    font-weight: 650;
    transition: .2s;
    line-height: 1.25
}

.footer-links a:hover {
    color: var(--green-700);
    padding-left: 4px
}

.footer-seo {
    margin-top: 24px;
    border-radius: 32px;
    background: #fff;
    border: 1px solid rgba(15, 61, 46, .10);
    padding: 24px;
    box-shadow: 0 14px 38px rgba(16, 66, 49, .05)
}

.footer-seo h3 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .11em;
    color: var(--green-800);
    margin-bottom: 14px
}

.seo-groups {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 18px
}

.seo-group strong {
    display: block;
    color: var(--ink);
    font-size: 14px;
    margin-bottom: 10px
}

.seo-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.seo-cloud a {
    font-size: 12px;
    font-weight: 850;
    color: #344054;
    background: var(--mint-2);
    border: 1px solid rgba(15, 61, 46, .08);
    border-radius: 999px;
    padding: 8px 11px
}

.footer-bottom {
    position: relative;
    z-index: 1;
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid rgba(15, 61, 46, .10);
    display: flex;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    font-size: 13px;
    color: #fff
}

.footer-bottom a {
    font-weight: 800;
    color: #fff
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0)
}

.floaty {
    animation: floaty 5.2s ease-in-out infinite
}

@keyframes shine {
    0%, 45% {
        left: -35%
    }
    60%, 100% {
        left: 130%
    }
}

@keyframes floaty {
    0%, 100% {
        translate: 0 0
    }
    50% {
        translate: 0 -12px
    }
}

@keyframes marquee {
    to {
        transform: translateX(-50%)
    }
}

@keyframes orbFloat {
    to {
        transform: translate3d(25px, -20px, 0) scale(1.04)
    }
}

@keyframes pulseRing {
    0%, 100% {
        transform: scale(.96);
        opacity: .72
    }
    50% {
        transform: scale(1.04);
        opacity: 1
    }
}


/* Header absolute mais sans chevauchement du contenu */
#pgs-39,
#pgs-40,
#pgs-47,
#pgs-58 {
    --site-header-height: 94px;
}

#pgs-39 .site-header,
#pgs-40 .site-header,
#pgs-47 .site-header,
#pgs-58 .site-header {
    position: absolute;
    inset: 0 0 auto;
    z-index: 50;
    padding: 18px 0;
    color: #ffffff;
    margin-top: 0;
}

#pgs-39 .nav-shell,
#pgs-40 .nav-shell,
#pgs-47 .nav-shell,
#pgs-58 .nav-shell {
    background: #fff !important;
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

/* Le premier bloc de contenu descend sous le header */
#pgs-39 .site-main,
#pgs-40 .site-main,
#pgs-47 .site-main,
#pgs-39 main,
#pgs-40 main,
#pgs-47 main,
#pgs-58 main {
    position: relative;
}

/* Si la première section est un hero */
#pgs-39 main > section:first-child,
#pgs-40 main > section:first-child,
#pgs-47 main > section:first-child,
#pgs-39 .site-main > section:first-child,
#pgs-40 .site-main > section:first-child,
#pgs-47 .site-main > section:first-child,
#pgs-58 .site-main > section:first-child {
    padding-top: calc(var(--site-header-height) + 32px) !important;
}

/* Si le hero a déjà beaucoup de padding, on protège juste le contenu interne */
#pgs-39 .hero,
#pgs-40 .hero,
#pgs-47 .hero,
#pgs-39 .page-hero,
#pgs-40 .page-hero,
#pgs-47 .page-hero,
#pgs-39 .oxl-coach-detail-hero,
#pgs-40 .oxl-coach-detail-hero,
#pgs-47 .oxl-coach-detail-hero,
#pgs-58 .oxl-coach-detail-hero {
    padding-top: calc(var(--site-header-height) + 32px) !important;
}

/* Mobile */
@media (max-width: 820px) {
    #pgs-39,
    #pgs-40,
    #pgs-47,
    #pgs-58 {
        --site-header-height: 86px;
    }

    #pgs-39 .site-header,
    #pgs-40 .site-header,
    #pgs-58 .site-header,
    #pgs-47 .site-header {
        padding: 14px 0;
    }

    #pgs-39 .nav-shell,
    #pgs-40 .nav-shell,
    #pgs-58 .nav-shell,
    #pgs-47 .nav-shell {
        min-height: 56px;
        gap: 14px;
    }

    #pgs-39 main > section:first-child,
    #pgs-40 main > section:first-child,
    #pgs-47 main > section:first-child,
    #pgs-39 .site-main > section:first-child,
    #pgs-40 .site-main > section:first-child,
    #pgs-47 .site-main > section:first-child,
    #pgs-39 .hero,
    #pgs-40 .hero,
    #pgs-47 .hero,
    #pgs-39 .page-hero,
    #pgs-40 .page-hero,
    #pgs-47 .page-hero,
    #pgs-39 .oxl-coach-detail-hero,
    #pgs-40 .oxl-coach-detail-hero,
    #pgs-47 .oxl-coach-detail-hero {
        padding-top: calc(var(--site-header-height) + 24px) !important;
    }
}


.mega-features {
    width: min(1080px, calc(100vw - 40px));
}

.mega-features .mega-shell {
    padding: 24px 26px 22px;
    border-radius: 30px;
    background: #fbfbfa;
    border: 1px solid rgba(17, 24, 39, 0.06);
    box-shadow: 0 30px 80px rgba(17, 24, 39, 0.14),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.mega-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 30px;
    row-gap: 18px;
}

.mega-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    min-width: 0;
    padding: 2px 0;
    color: #151716;
    text-decoration: none;
    border-radius: 16px;
    transition: transform .16s ease, opacity .16s ease;
}

.mega-feature-item:hover {
    transform: translateY(-1px);
}

.mega-feature-icon {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: #ffffff;
    border: 1px solid rgba(17, 24, 39, 0.07);
    box-shadow: 0 9px 18px rgba(17, 24, 39, 0.07),
    0 1px 0 rgba(255, 255, 255, 0.95) inset;
    transition: background .16s ease, border-color .16s ease, transform .16s ease;
}

.mega-feature-icon i {
    color: #17201f;
    font-size: 17px;
    transition: color .16s ease, transform .16s ease;
}

.mega-feature-item:hover .mega-feature-icon {
    background: #f0fbfa;
    border-color: rgba(1, 112, 113, 0.18);
    transform: scale(1.03);
}

.mega-feature-item:hover .mega-feature-icon i {
    color: #017071;
}

.mega-feature-item > span:last-child {
    min-width: 0;
    padding-top: 2px;
}

.mega-feature-item strong {
    display: block;
    margin-bottom: 4px;
    color: #141514;
    font-size: 15.5px;
    line-height: 1.15;
    font-weight: 750;
    letter-spacing: -0.015em;
}

.mega-feature-item small {
    display: block;
    max-width: 240px;
    color: #565d5b;
    font-size: 13.5px;
    line-height: 1.32;
    font-weight: 400;
}

.mega-feature-item:hover strong {
    color: #017071;
}

.mega-features-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 24px;
    padding: 18px 22px;
    border-radius: 22px;
    color: #ffffff;
    text-decoration: none;
    background: linear-gradient(135deg, #017071 0%, #029695 55%, #02afae 100%);
    box-shadow: 0 18px 42px rgba(1, 112, 113, 0.24);
    transition: transform .16s ease, box-shadow .16s ease;
}

.mega-features-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 54px rgba(1, 112, 113, 0.31);
}

.mega-features-cta span {
    display: block;
    min-width: 0;
}

.mega-features-cta strong {
    display: block;
    margin-bottom: 4px;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.15;
    font-weight: 850;
    letter-spacing: -0.015em;
}

.mega-features-cta small {
    display: block;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13.5px;
    line-height: 1.3;
    font-weight: 450;
}

.mega-features-cta > i {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    font-size: 14px;
    transition: transform .16s ease, background .16s ease;
}

.mega-features-cta:hover > i {
    transform: translateX(4px);
    background: rgba(255, 255, 255, 0.20);
}

@media (max-width: 1050px) {
    .mega-features {
        width: min(760px, calc(100vw - 32px));
    }

    .mega-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 26px;
    }
}

@media (max-width: 680px) {
    .mega-features {
        width: calc(100vw - 24px);
    }

    .mega-features .mega-shell {
        padding: 18px;
        border-radius: 24px;
    }

    .mega-feature-grid {
        grid-template-columns: 1fr;
        row-gap: 15px;
    }

    .mega-feature-icon {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
    }

    .mega-feature-item strong {
        font-size: 15px;
    }

    .mega-feature-item small {
        max-width: none;
        font-size: 13px;
    }

    .mega-features-cta {
        margin-top: 20px;
        padding: 17px 18px;
        border-radius: 20px;
    }

    .mega-features-cta small {
        display: none;
    }
}

/* Patch mega menu fonctionnalités OXL */
.mega-features {
    width: min(1100px, calc(100vw - 40px));
}

.mega-features .mega-shell {
    padding: 26px 28px 24px;
    border-radius: 30px;
    background: radial-gradient(circle at 0% 0%, rgba(1, 112, 113, 0.055), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #fafbf9 100%);
    border: 1px solid rgba(17, 24, 39, 0.07);
    box-shadow: 0 28px 80px rgba(17, 24, 39, 0.13),
    0 1px 0 rgba(255, 255, 255, 0.95) inset;
}

.mega-features .mega-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 34px;
    row-gap: 20px;
}

.mega-features .mega-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    min-height: 54px;
    padding: 3px 4px;
    border-radius: 18px;
    color: #141715;
    text-decoration: none;
    transition: transform .18s ease,
    background .18s ease,
    box-shadow .18s ease;
}

.mega-features .mega-feature-item:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 12px 28px rgba(17, 24, 39, 0.055);
}

.mega-features .mega-feature-icon {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: #ffffff;
    border: 1px solid rgba(17, 24, 39, 0.075);
    box-shadow: 0 8px 18px rgba(17, 24, 39, 0.075),
    0 1px 0 rgba(255, 255, 255, 0.95) inset;
    transition: transform .18s ease,
    background .18s ease,
    border-color .18s ease,
    box-shadow .18s ease;
}

.mega-features .mega-feature-icon i {
    color: #17201f;
    font-size: 17px;
    transition: color .18s ease, transform .18s ease;
}

.mega-features .mega-feature-item:hover .mega-feature-icon {
    transform: scale(1.04);
    background: #f1fbfa;
    border-color: rgba(1, 112, 113, 0.20);
    box-shadow: 0 12px 24px rgba(1, 112, 113, 0.10),
    0 1px 0 rgba(255, 255, 255, 0.95) inset;
}

.mega-features .mega-feature-item:hover .mega-feature-icon i {
    color: #017071;
    transform: scale(1.03);
}

.mega-features .mega-feature-item > span:last-child {
    min-width: 0;
    padding-top: 2px;
}

.mega-features .mega-feature-item strong {
    display: block;
    margin-bottom: 4px;
    color: #121412;
    font-size: 15.5px;
    line-height: 1.15;
    font-weight: 760;
    letter-spacing: -0.015em;
}

.mega-features .mega-feature-item small {
    display: block;
    max-width: 245px;
    color: #59615f;
    font-size: 13.4px;
    line-height: 1.32;
    font-weight: 400;
}

.mega-features .mega-feature-item:hover strong {
    color: #017071;
}

/* CTA noir, premium, lisible */
.mega-features .mega-features-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 26px;
    padding: 18px 22px;
    border-radius: 22px;
    color: #111827 !important;
    text-decoration: none;
    background: linear-gradient(135deg, #ffffff 0%, #f3f6f5 100%);
    border: 1px solid rgba(17, 24, 39, 0.085);
    box-shadow: 0 14px 34px rgba(17, 24, 39, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.95) inset;
    transition: transform .18s ease,
    border-color .18s ease,
    box-shadow .18s ease,
    background .18s ease;
}

.mega-features .mega-features-cta:hover {
    transform: translateY(-2px);
    background: #ffffff;
    border-color: rgba(1, 112, 113, 0.22);
    box-shadow: 0 20px 44px rgba(17, 24, 39, 0.11),
    0 1px 0 rgba(255, 255, 255, 0.95) inset;
}

.mega-features .mega-features-cta span {
    display: block;
    min-width: 0;
    color: #111827 !important;
}

.mega-features .mega-features-cta strong {
    display: block;
    margin-bottom: 4px;
    color: #111827 !important;
    font-size: 16px;
    line-height: 1.15;
    font-weight: 850;
    letter-spacing: -0.015em;
}

.mega-features .mega-features-cta small {
    display: block;
    color: #5f6368 !important;
    font-size: 13.5px;
    line-height: 1.3;
    font-weight: 430;
}

.mega-features .mega-features-cta > i {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: #017071 !important;
    background: rgba(1, 112, 113, 0.08);
    font-size: 14px;
    transition: transform .18s ease, background .18s ease;
}

.mega-features .mega-features-cta:hover > i {
    transform: translateX(4px);
    background: rgba(1, 112, 113, 0.13);
}

/* Harmonisation si le HTML du CTA contient juste un span simple */
.mega-features .mega-features-cta span:not(:has(strong)) {
    font-size: 16px;
    font-weight: 850;
    letter-spacing: -0.015em;
}

/* Responsive */
@media (max-width: 1050px) {
    .mega-features {
        width: min(780px, calc(100vw - 32px));
    }

    .mega-features .mega-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 28px;
        row-gap: 18px;
    }
}

@media (max-width: 680px) {
    .mega-features {
        width: calc(100vw - 24px);
    }

    .mega-features .mega-shell {
        padding: 18px;
        border-radius: 24px;
    }

    .mega-features .mega-feature-grid {
        grid-template-columns: 1fr;
        row-gap: 15px;
    }

    .mega-features .mega-feature-item {
        min-height: 52px;
        padding: 2px 0;
    }

    .mega-features .mega-feature-icon {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
    }

    .mega-features .mega-feature-item strong {
        font-size: 15px;
    }

    .mega-features .mega-feature-item small {
        max-width: none;
        font-size: 13px;
    }

    .mega-features .mega-features-cta {
        margin-top: 20px;
        padding: 17px 18px;
        border-radius: 20px;
    }

    .mega-features .mega-features-cta small {
        display: none;
    }
}

/* =========================================================
BREADCRUMB — BASE
========================================================= */

.oxl-breadcrumb {
    position: relative;
    z-index: 5;
    padding: 92px 0 28px;
}

.oxl-breadcrumb ol {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.oxl-breadcrumb li {
    display: inline-flex;
    align-items: center;
    min-width: 0;
}

.oxl-breadcrumb a,
.oxl-breadcrumb span {
    display: inline-flex;
    align-items: center;
    color: rgba(17, 24, 39, .68);
    text-decoration: none;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 750;
}

.oxl-breadcrumb a {
    transition: color .18s ease, opacity .18s ease;
}

.oxl-breadcrumb a:hover {
    color: #104231;
}

.oxl-breadcrumb .current {
    color: #111827;
    font-weight: 850;
}

.oxl-breadcrumb .separator {
    color: rgba(17, 24, 39, .32);
    font-weight: 700;
}

/* =========================================================
BREADCRUMB — VERSION BLANCHE
Pages : #pgs-39, #pgs-40, #pgs-41, #pgs-42
========================================================= */

#pgs-39 .oxl-breadcrumb a,
#pgs-39 .oxl-breadcrumb span,
#pgs-40 .oxl-breadcrumb a,
#pgs-40 .oxl-breadcrumb span,
#pgs-41 .oxl-breadcrumb a,
#pgs-41 .oxl-breadcrumb span,
#pgs-42 .oxl-breadcrumb a,
#pgs-42 .oxl-breadcrumb span {
    color: rgba(255, 255, 255, .82);
}

#pgs-39 .oxl-breadcrumb a:hover,
#pgs-40 .oxl-breadcrumb a:hover,
#pgs-41 .oxl-breadcrumb a:hover,
#pgs-42 .oxl-breadcrumb a:hover {
    color: #ffffff;
}

#pgs-39 .oxl-breadcrumb .current,
#pgs-40 .oxl-breadcrumb .current,
#pgs-41 .oxl-breadcrumb .current,
#pgs-42 .oxl-breadcrumb .current {
    color: #ffffff;
}

#pgs-39 .oxl-breadcrumb .separator,
#pgs-40 .oxl-breadcrumb .separator,
#pgs-41 .oxl-breadcrumb .separator,
#pgs-42 .oxl-breadcrumb .separator {
    color: rgba(255, 255, 255, .45);
}

/* =========================================================
RESPONSIVE
========================================================= */

@media (max-width: 780px) {
    .oxl-breadcrumb {
        padding: 78px 0 22px;
    }

    .oxl-breadcrumb ol {
        gap: 6px;
    }

    .oxl-breadcrumb a,
    .oxl-breadcrumb span {
        font-size: 12px;
    }
}

/* =========================================================
   HERO TROUVER UN COACH
========================================================= */

.oxl-find-coach-hero {
    position: relative;
    min-height: 640px;
    padding: 0 0 150px;
    background: linear-gradient(135deg, rgba(15, 61, 46, 0.88), rgba(22, 75, 54, 0.82)),
    url("../medias/bg-hero.jpeg");
    background-size: cover;
    background-position: center;
    color: #ffffff;
}

.oxl-find-coach-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 12% 22%, rgba(255, 255, 255, 0.13), transparent 26%),
    radial-gradient(circle at 85% 18%, rgba(91, 171, 125, 0.20), transparent 28%);
    pointer-events: none;
}

.oxl-find-coach-hero::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -78px;
    width: 150%;
    height: 160px;
    transform: translateX(-50%);
    background: #f4f6f5;
    border-radius: 50% 50% 0 0;
}

.oxl-find-coach-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 840px;
    margin: 0 auto;
    text-align: center;
}

.oxl-find-coach-hero-copy {
    max-width: 820px;
    margin: 0 auto 36px;
    text-align: center;
}

.oxl-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    width: fit-content;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(27, 106, 75, 0.09);
    color: #164b36;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.oxl-kicker-light {
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.oxl-find-coach-hero h1 {
    margin: 18px auto 16px;
    max-width: 840px;
    color: #ffffff;
    font-size: clamp(42px, 6vw, 72px);
    line-height: 0.98;
    font-weight: 950;
    letter-spacing: -0.075em;
}

.oxl-find-coach-hero h1 strong {
    display: inline-block;
    padding: 0.02em 0.18em 0.07em;
    background: #ffffff;
    color: #164b36;
    border-radius: 0.18em;
    transform: rotate(-0.4deg);
    white-space: nowrap;
}

.oxl-find-coach-hero p {
    max-width: 660px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.84);
    font-size: 17px;
    line-height: 1.68;
    font-weight: 500;
}

/* =========================================================
   SEARCH BOX
========================================================= */

.oxl-find-coach-search-box {
    max-width: 840px;
    margin: 0 auto;
}

.oxl-find-coach-search {
    display: grid;
    gap: 14px;
}

.oxl-find-coach-search-main {
    position: relative;
    display: flex;
    align-items: center;
    gap: 13px;
    min-height: 64px;
    padding: 0 20px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 22px 58px rgba(0, 0, 0, 0.16);
}

.oxl-find-coach-search-main i {
    color: #164b36;
    font-size: 18px;
}

.oxl-find-coach-search-main input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: none;
    background: transparent;
    color: #101828;
    font-size: 16px;
    font-weight: 650;
    font-family: inherit;
}

.oxl-find-coach-search-main input::placeholder {
    color: #98a2b3;
    font-weight: 600;
}

.oxl-find-coach-search-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.oxl-find-coach-search-tags {
    display: flex;
    align-items: center;
    gap: 9px;
    flex-wrap: wrap;
}

.oxl-find-coach-search-tags a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.13);
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: background 0.2s ease, transform 0.2s ease;
}

.oxl-find-coach-search-tags a:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-2px);
}

.oxl-find-coach-search-actions > div:last-child {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.oxl-find-coach-search-actions .btn-primary,
.oxl-location-btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 16px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.oxl-find-coach-search-actions .btn-primary {
    background: #ffffff;
    color: #164b36;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
}

.oxl-find-coach-search-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
}

.oxl-location-btn {
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(10px);
}

.oxl-location-btn:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-2px);
}

/* =========================================================
   AUTOCOMPLETE
========================================================= */

#searchDropdown:empty {
    display: none;
}

#searchDropdown {
    position: absolute;
    top: calc(100% + 9px);
    left: 0;
    right: 0;
    z-index: 20;
    max-height: 280px;
    overflow-y: auto;
    padding: 8px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(16, 66, 49, 0.10);
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.16);
}

#searchDropdown::-webkit-scrollbar {
    width: 6px;
}

#searchDropdown::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(16, 66, 49, 0.22);
}

.oxl-autocomplete-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 11px 12px;
    border-radius: 14px;
    cursor: pointer;
    transition: background 0.16s ease;
}

.oxl-autocomplete-item:hover {
    background: #f3f8f5;
}

.oxl-autocomplete-left {
    display: grid;
    gap: 3px;
    min-width: 0;
}

.oxl-autocomplete-title {
    color: #101828;
    font-size: 14px;
    font-weight: 850;
}

.oxl-autocomplete-sub {
    color: #667085;
    font-size: 12px;
    font-weight: 500;
}

.oxl-autocomplete-type {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 24px;
    padding: 0 8px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 900;
    white-space: nowrap;
}

.oxl-type-city {
    background: rgba(47, 122, 90, 0.12);
    color: #2f7a5a;
}

.oxl-type-department {
    background: rgba(79, 70, 229, 0.12);
    color: #4f46e5;
}

.oxl-type-region {
    background: rgba(234, 88, 12, 0.12);
    color: #c2410c;
}

.oxl-type-coach {
    background: rgba(190, 24, 93, 0.12);
    color: #be185d;
}

/* =========================================================
   PAGE COACH GRID
========================================================= */

.oxl-find-coach-page {
    position: relative;
    padding: 0 0 74px;
    background: #f4f6f5;
}

.oxl-find-coach-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
    position: relative;
    z-index: 4;
}

.empty {
    grid-column: 1 / -1;
    margin: 0;
    padding: 42px 24px;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid rgba(16, 66, 49, 0.08);
    color: #667085;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 20px 50px rgba(16, 66, 49, 0.07);
}

/* Cartes dynamiques possibles */
.coach-card,
.oxl-coach-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    border-radius: 26px;
    background: #ffffff;
    border: 1px solid rgba(16, 66, 49, 0.08);
    box-shadow: 0 18px 46px rgba(16, 66, 49, 0.08);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.coach-card:hover,
.oxl-coach-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 26px 64px rgba(16, 66, 49, 0.13);
}

.coach-card-media,
.oxl-coach-card-cover {
    position: relative;
    height: 365px;
    overflow: hidden;
}

.coach-card-media img,
.oxl-coach-card-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.coach-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.34));
}

.status,
.oxl-coach-card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 11px;
    border-radius: 999px;
    background: #164b36;
    color: #ffffff;
    font-size: 11px;
    font-weight: 850;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .16);
}

.coach-card-body,
.oxl-coach-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 20px;
}

.coach-card-head h3,
.oxl-coach-card-body h3 {
    margin: 0 0 5px;
    color: #101828;
    font-size: 20px;
    font-weight: 950;
    line-height: 1.15;
    letter-spacing: -0.035em;
}

.location,
.oxl-coach-card-location {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #164b36;
    font-size: 13px;
    font-weight: 850;
}

.tagline,
.oxl-coach-card-text {
    margin: 0;
    color: #5f7068;
    font-size: 14px;
    line-height: 1.55;
    font-weight: 500;
}

.coach-card-infos {
    display: grid;
    gap: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(16, 66, 49, 0.08);
}

.info {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 11px;
    align-items: flex-start;
}

.info i {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #eef7f2;
    color: #164b36;
    font-size: 13px;
}

.info-content {
    display: grid;
    gap: 3px;
}

.info-label {
    color: #98a2b3;
    font-size: 10.5px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.info-value {
    color: #101828;
    font-size: 13.5px;
    font-weight: 650;
    line-height: 1.45;
}

.coach-card-footer {
    margin-top: auto;
    display: grid;
    gap: 12px;
}

.price {
    color: #667085;
    font-size: 13px;
}

.price strong {
    color: #164b36;
    font-size: 17px;
    font-weight: 950;
}

.cta,
.oxl-coach-card-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    width: 100%;
    padding: 0 16px;
    border-radius: 14px;
    background: #164b36;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 900;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.cta:hover,
.oxl-coach-card-link:hover {
    background: #0f3d2e;
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(16, 66, 49, 0.18);
}

.distance-inline {
    display: inline-flex;
    align-items: center;
    min-height: 23px;
    margin-left: 7px;
    padding: 0 8px;
    border-radius: 999px;
    background: rgba(47, 122, 90, 0.10);
    color: #2f7a5a;
    font-size: 12px;
    font-weight: 900;
}

/* =========================================================
   EXPLORER PAR RÉGION
========================================================= */

.oxl-find-coach-explore {
    position: relative;
    padding: 74px 0;
    background: #ffffff;
}

.oxl-section-head {
    max-width: 720px;
    margin: 0 auto 36px;
    text-align: center;
}

.oxl-section-head h2 {
    margin: 12px 0 0;
    color: #101828;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1;
    font-weight: 950;
    letter-spacing: -0.07em;
}

.oxl-section-head h2 strong {
    display: inline-block;
    padding: 0.02em 0.16em 0.07em;
    border-radius: 0.16em;
    background: #164b36;
    color: #ffffff;
    transform: rotate(-0.3deg);
}

.oxl-find-coach-explore-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.oxl-find-coach-explore-grid a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 14px 16px;
    border-radius: 18px;
    background: #f7fbf8;
    color: #101828;
    text-align: center;
    text-decoration: none;
    font-size: 14px;
    font-weight: 850;
    border: 1px solid rgba(16, 66, 49, 0.07);
    box-shadow: 0 12px 28px rgba(16, 66, 49, 0.045);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.oxl-find-coach-explore-grid a:hover {
    background: #164b36;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(16, 66, 49, 0.14);
}

.oxl-blog {
    position: relative;
    padding: 76px 0 86px;
    background: radial-gradient(circle at 8% 8%, rgba(27, 106, 75, 0.08), transparent 30%), linear-gradient(180deg, #ffffff 0%, #f5faf7 100%);
}

.oxl-blog-title {
    max-width: 820px;
    margin: 0 auto;
    color: #101828;
    text-align: center;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1;
    font-weight: 950;
    letter-spacing: -0.07em;
}

.oxl-blog-title strong {
    display: inline-block;
    color: #164b36;
    font-weight: 950;
}

.oxl-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 38px;
}

.oxl-blog-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    border-radius: 26px;
    background: #ffffff;
    border: 1px solid rgba(16, 66, 49, 0.08);
    box-shadow: 0 18px 46px rgba(16, 66, 49, 0.07);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.oxl-blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 26px 64px rgba(16, 66, 49, 0.12);
}

.oxl-blog-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.oxl-blog-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 22px;
}

.oxl-blog-content h3 {
    margin: 0 0 10px;
    color: #101828;
    font-size: 19px;
    line-height: 1.18;
    font-weight: 950;
    letter-spacing: -0.035em;
}

.oxl-blog-content p {
    margin: 0 0 18px;
    color: #667085;
    font-size: 14px;
    line-height: 1.62;
    font-weight: 500;
}

.oxl-blog-content a {
    width: fit-content;
    margin-top: auto;
    color: #164b36;
    text-decoration: none;
    font-size: 14px;
    font-weight: 900;
}

.oxl-blog-content a:hover {
    text-decoration: underline;
}

.oxl-blog-more {
    margin-top: 34px;
    text-align: center;
}

.oxl-blog-more .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 999px;
    background: #164b36;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 900;
    box-shadow: 0 14px 30px rgba(16, 66, 49, 0.16);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.oxl-blog-more .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(16, 66, 49, 0.20);
}


.site-footer {
    position: relative;
    overflow: hidden;
    padding: 78px 0 28px;
    background: #0f3d2e;
    color: #ffffff;
}

.site-footer::before {
    content: "";
    position: absolute;
    right: -170px;
    top: -170px;
    width: 390px;
    height: 390px;
    border-radius: 999px;
    border: 56px solid rgba(255, 255, 255, 0.035);
}

.footer-inner {
    position: relative;
    z-index: 1;
}

.footer-top {
    display: grid;
    grid-template-columns: minmax(280px, 1.2fr) repeat(3, minmax(0, 0.8fr));
    gap: 28px;
    align-items: start;
}

.footer-brand-card {
    padding: 24px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.11);
}

.footer-logo {
    display: block;
    width: auto;
    height: 44px;
    margin-bottom: 16px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-brand-card p {
    margin: 0;
    max-width: 420px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.68;
}

.footer-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.footer-contact a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.10);
    color: #ffffff;
    text-decoration: none;
    font-size: 12.5px;
    font-weight: 850;
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-contact a:hover {
    background: rgba(255, 255, 255, 0.16);
}

.footer-col h3 {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 950;
    letter-spacing: -0.025em;
}

.footer-links {
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.66);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 600;
    line-height: 1.35;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-seo {
    margin-top: 34px;
    padding: 24px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-seo h3 {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: 17px;
    font-weight: 950;
    letter-spacing: -0.035em;
}

.seo-groups {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.seo-group strong {
    display: block;
    margin-bottom: 9px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 950;
}

.seo-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.seo-cloud a {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 9px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.68);
    text-decoration: none;
    font-size: 11.5px;
    font-weight: 750;
}

.seo-cloud a:hover {
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    color: rgba(255, 255, 255, 0.62);
    font-size: 12.5px;
    font-weight: 600;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #ffffff;
}

.oxl-blog-head {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 2rem;
}

.oxl-blog-subtitle {
    margin: .7rem auto 0;
    color: #667085;
    font-size: 1rem;
    line-height: 1.7;
}

.oxl-blog-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .55rem;
    margin-bottom: .85rem;
    color: #667085;
    font-size: .78rem;
    font-weight: 750;
}

.oxl-blog-meta time,
.oxl-blog-meta span {
    display: inline-flex;
    align-items: center;
}

.oxl-blog-category {
    display: inline-flex;
    align-items: center;
    min-height: 1.65rem;
    padding: 0 .65rem;
    border-radius: 999px;
    background: rgba(27, 106, 75, .09);
    color: #165b3a;
    font-size: .7rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.oxl-blog-card-image-link {
    display: block;
    overflow: hidden;
}

.oxl-blog-card-image-link img {
    transition: transform .28s ease;
}

.oxl-blog-card:hover .oxl-blog-card-image-link img {
    transform: scale(1.035);
}

.oxl-blog-content h3 a {
    color: inherit;
    text-decoration: none;
}

.oxl-blog-content h3 a:hover {
    color: #165b3a;
}

.oxl-blog-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.oxl-blog-link i {
    font-size: 12px;
    transition: transform .18s ease;
}

.oxl-blog-link:hover i {
    transform: translateX(3px);
}

{
    position: relative
;
}

.oxl-section {
    padding: 4.5rem 0;
}

.oxl-pricing-hero-section {
    padding-top: 2.6rem !important;
    padding-bottom: 2.2rem !important;
}

.oxl-pricing-hero-head {
    max-width: 58rem !important;
}

.oxl-pricing-hero-head h1 {
    font-size: 3.4rem;
    line-height: 1.04;
    letter-spacing: -.04em;
    color: #111827;
    margin-bottom: 1rem;
}

.oxl-pricing-hero-head h1 strong {
    background: #104231;
    color: #fff;
    padding: 0 1rem;
    clip-path: polygon(3% 0, 100% 0, 97% 100%, 0 100%);
    white-space: nowrap;
}

.oxl-pricing-hero-head p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #6b7280;
}

.oxl-pricing-hero-points {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: .4rem;
}

.oxl-pricing-hero-point {
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    min-height: 3rem;
    padding: 0 1rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(17, 24, 39, .06);
    box-shadow: 0 .8rem 1.8rem rgba(17, 24, 39, .04);
    font-size: .92rem;
    font-weight: 600;
    color: #111827;
}

.oxl-pricing-hero-point i {
    width: 1.7rem;
    height: 1.7rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(27, 106, 75, .1);
    color: #165b3a;
    font-size: .72rem;
}

.oxl-pricing-main-section {
    padding-top: 1.4rem !important;
    padding-bottom: 2.2rem !important;
}

.oxl-pricing-mini-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2rem;
    padding: 0 .9rem;
    margin-bottom: 1rem;
    border-radius: 999px;
    background: rgba(27, 106, 75, .08);
    color: #165b3a;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.oxl-pricing-left,
.oxl-pricing-right {
    position: relative;
}

.oxl-pricing-right.detail-offer {
    flex-direction: column;
}

.detail-offer .oxl-pricing-features li {
    font-size: 0.8em;
}

.oxl-pricing-right-top {
    margin-bottom: 1.7rem;
}

.oxl-pricing-right-kicker {
    display: inline-block;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .75);
    margin-bottom: .7rem;
}

.oxl-pricing-right-top h2 {
    font-size: 2rem;
    line-height: 1.08;
    letter-spacing: -.03em;
    color: #fff;
}

.oxl-pricing-right-top h2 strong {
    background: #fff;
    color: #104231;
    padding: 0 .7rem;
    clip-path: polygon(3% 0, 100% 0, 97% 100%, 0 100%);
    white-space: nowrap;
}

.oxl-pricing-actions {
    display: flex;
    flex-direction: column;
    gap: .9rem;
    margin-top: 1rem;
}

.oxl-pricing-actions .btn-secondary {
    text-decoration: none;
    text-align: center;
}

.oxl-pricing-secondary-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.oxl-pricing-under-note {
    margin-top: 1rem;
    color: #6b7280;
    font-size: .9rem;
    line-height: 1.7;
}

.oxl-pricing-trust-row {
    margin-top: 1.3rem;
    display: grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.oxl-pricing-trust-card {
    background: #fff;
    border: 1px solid rgba(17, 24, 39, .06);
    box-shadow: 0 .8rem 1.8rem rgba(17, 24, 39, .04);
    border-radius: 1.15rem;
    padding: 1rem 1.1rem;
    display: flex;
    align-items: flex-start;
    gap: .85rem;
}

.oxl-pricing-trust-card i {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: .9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(27, 106, 75, .1);
    color: #165b3a;
    flex: 0 0 auto;
}

.oxl-pricing-trust-card strong {
    display: block;
    font-size: .97rem;
    color: #111827;
    margin-bottom: .2rem;
}

.oxl-pricing-trust-card span {
    display: block;
    font-size: .88rem;
    line-height: 1.6;
    color: #6b7280;
}

.oxl-pricing-why-section {
    padding-top: 2.7rem !important;
    padding-bottom: 2.5rem !important;
}

.oxl-pricing-calculator-section {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
}

.oxl-pricing-compare-section {
    padding-top: 2.4rem !important;
    padding-bottom: 2.4rem !important;
}

.oxl-pricing-compare-grid {
    display: grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
}

.oxl-pricing-compare-card {
    min-height: 15rem;
    padding: 1.45rem;
    border-radius: 1.3rem;
    background: #fff;
    border: 1px solid rgba(17, 24, 39, .06);
    box-shadow: 0 1rem 2rem rgba(17, 24, 39, .05);
    transition: transform .22s ease, box-shadow .22s ease;
}

.oxl-pricing-compare-card:hover {
    transform: translateY(-.25rem);
    box-shadow: 0 1.2rem 2.2rem rgba(17, 24, 39, .08);
}

.oxl-pricing-compare-icon {
    width: 2.9rem;
    height: 2.9rem;
    border-radius: .95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    background: rgba(27, 106, 75, .1);
    color: #165b3a;
}

.oxl-pricing-compare-card h3 {
    font-size: 1.12rem;
    color: #111827;
    margin-bottom: .55rem;
}

.oxl-pricing-compare-card p {
    font-size: .94rem;
    line-height: 1.7;
    color: #6b7280;
}

.oxl-pricing-process-section {
    padding-top: 2.4rem !important;
    padding-bottom: 2.8rem !important;
}

.oxl-pricing-process-grid {
    display: grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
}

.oxl-pricing-process-card {
    background: #fff;
    border: 1px solid rgba(17, 24, 39, .06);
    box-shadow: 0 1rem 2rem rgba(17, 24, 39, .05);
    border-radius: 1.35rem;
    padding: 1.6rem;
    transition: transform .22s ease, box-shadow .22s ease;
}

.oxl-pricing-process-card:hover {
    transform: translateY(-.25rem);
    box-shadow: 0 1.2rem 2.2rem rgba(17, 24, 39, .08);
}

.oxl-pricing-process-number {
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    background: rgba(27, 106, 75, .1);
    color: #165b3a;
    font-weight: 800;
    font-size: 1rem;
}

.oxl-pricing-process-card h3 {
    font-size: 1.15rem;
    color: #111827;
    margin-bottom: .55rem;
}

.oxl-pricing-process-card p {
    font-size: .94rem;
    line-height: 1.7;
    color: #6b7280;
}

.oxl-pricing-final-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.6rem;
}

.oxl-final-btn-secondary {
    background: rgba(255, 255, 255, .12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .18);
}

.oxl-final-btn-secondary:hover {
    transform: translateY(-2px);
}

@media (max-width: 1100px) {
    .oxl-pricing-trust-row,
    .oxl-pricing-compare-grid,
    .oxl-pricing-process-grid {
        grid-template-columns:repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 780px) {
    .oxl-section {
        padding: 3.2rem 0;
    }

    .oxl-pricing-hero-head h1 {
        font-size: 2.35rem;
    }

    .oxl-pricing-trust-row,
    .oxl-pricing-compare-grid,
    .oxl-pricing-process-grid {
        grid-template-columns:1fr;
    }

    .oxl-pricing-right-top h2 {
        font-size: 1.7rem;
    }
}

.oxl-section.oxl-pricing-process-section {
    background: linear-gradient(135deg, #0f3d2e, #1b6a4b);
    color: #fff;
}

.oxl-section.oxl-pricing-process-section .oxl-kicker {
    background: #fff;
}

.oxl-section.oxl-pricing-process-section h2 {
    color: #fff;
}

.oxl-section.oxl-pricing-process-section .oxl-section-head h2 strong {
    background: #fff !important;
    color: #104231 !important;
}

@media (max-width: 640px) {
    .oxl-pricing-hero-point {
        width: 100%;
        justify-content: flex-start;
    }

    .oxl-pricing-card {
        border-radius: 18px;
    }

    .oxl-pricing-left,
    .oxl-pricing-right {
        padding: 28px;
    }
}

/* =========================================================
PAGE TARIFS OXL — CSS CIBLÉ POUR CE HTML
========================================================= */

.oxl-pricing-page {
    position: relative;
    overflow: hidden;
    background: #f4f5f7;
}

/* SECTIONS */

.oxl-section {
    position: relative;
    padding: 4.5rem 0;
}

.oxl-section-head {
    max-width: 48rem;
    text-align: center;
    margin: 0 auto 3.5rem;
}

.oxl-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2rem;
    padding: 0 .9rem;
    margin-bottom: 1rem;
    border-radius: 999px;
    background: rgba(27, 106, 75, .08);
    color: #165b3a;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.oxl-section-head h1,
.oxl-section-head h2 {
    line-height: 1.05;
    letter-spacing: -.03em;
    color: #111827;
    margin-bottom: 1rem;
}

.oxl-section-head h1 {
    font-size: 3.4rem;
}

.oxl-section-head h2 {
    font-size: 3rem;
}

.oxl-section-head h1 strong,
.oxl-section-head h2 strong {
    background: #104231;
    color: #fff;
    padding: 0 1rem;
    clip-path: polygon(3% 0, 100% 0, 97% 100%, 0 100%);
}

.oxl-section-head p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #6b7280;
}

/* BREADCRUMB */

.oxl-breadcrumb {
    font-size: 13px;
    line-height: 1.6;
    padding: 28px 0 14px;
    color: #6b7280;
}

.oxl-breadcrumb ol {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.oxl-breadcrumb li {
    display: flex;
    align-items: center;
}

.oxl-breadcrumb a {
    color: #6b7280;
    text-decoration: none;
    font-weight: 500;
    transition: .2s;
}

.oxl-breadcrumb a:hover {
    color: #1b6a4b;
}

.oxl-breadcrumb .separator {
    color: #cbd5e1;
    font-weight: 400;
}

.oxl-breadcrumb .current {
    color: #104231;
    font-weight: 600;
}

/* HERO */

.oxl-pricing-hero-section {
    padding-top: 2.6rem !important;
    padding-bottom: 2.2rem !important;
}

.oxl-pricing-hero-head {
    max-width: 58rem !important;
}

.oxl-pricing-hero-points {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: .4rem;
}

.oxl-pricing-hero-point {
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    min-height: 3rem;
    padding: 0 1rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(17, 24, 39, .06);
    box-shadow: 0 .8rem 1.8rem rgba(17, 24, 39, .04);
    font-size: .92rem;
    font-weight: 600;
    color: #111827;
}

.oxl-pricing-hero-point i {
    width: 1.7rem;
    height: 1.7rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(27, 106, 75, .1);
    color: #165b3a;
    font-size: .72rem;
}

/* MAIN OFFER CARD */

.oxl-pricing-main-section {
    padding-top: 1.4rem !important;
    padding-bottom: 2.2rem !important;
}

.oxl-pricing-card {
    display: flex;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.08),
    0 10px 30px rgba(0, 0, 0, 0.05);
}

.oxl-pricing-left {
    flex: 1;
    padding: 60px;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.oxl-pricing-right {
    flex: 1.3;
    padding: 60px;
    background: linear-gradient(135deg, #0f3d2e, #1b6a4b);
    display: flex;
    align-items: center;
    color: #fff;
}

.oxl-pricing-right.detail-offer {
    flex-direction: column;
    align-items: flex-start;
}

.oxl-pricing-mini-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    min-height: 2rem;
    padding: 0 .9rem;
    margin-bottom: 1rem;
    border-radius: 999px;
    background: rgba(27, 106, 75, .08);
    color: #165b3a;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.oxl-price {
    font-size: 68px;
    line-height: 1;
    font-weight: 800;
    color: #0f3d2e;
    margin-bottom: 10px;
}

.oxl-price span {
    font-size: 20px;
    font-weight: 500;
    color: #6b7280;
}

.oxl-pricing-desc {
    margin-bottom: 30px;
    color: #6b7280;
    line-height: 1.7;
}

.oxl-pricing-guarantees {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 35px;
}

.oxl-guarantee {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: #111827;
}

.oxl-guarantee i {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #e8f3ef;
    color: #0f3d2e;
    font-size: 13px;
}

.oxl-pricing-actions {
    display: flex;
    flex-direction: column;
    gap: .9rem;
    margin-top: 1rem;
}

.oxl-pricing-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
    background: linear-gradient(135deg, #0f3d2e, #1b6a4b);
    color: #fff;
    padding: 18px 32px;
    border-radius: 12px;
    border: 0;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
    transition: .25s;
}

.oxl-pricing-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.oxl-pricing-secondary-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: .9rem 1.5rem;
    border-radius: .7rem;
    background: linear-gradient(135deg, rgba(15, 61, 46, .11), rgba(27, 106, 75, .1));
    color: #141618;
    text-decoration: none;
    font-weight: 600;
    transition: .25s;
}

.oxl-pricing-secondary-link:hover {
    transform: translateY(-2px);
}

.oxl-pricing-under-note {
    margin-top: 1rem;
    color: #6b7280;
    font-size: .9rem;
    line-height: 1.7;
}

.oxl-pricing-right-top {
    margin-bottom: 1.7rem;
}

.oxl-pricing-right-kicker {
    display: inline-block;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .75);
    margin-bottom: .7rem;
}

.oxl-pricing-right-top h2 {
    font-size: 2rem;
    line-height: 1.08;
    letter-spacing: -.03em;
    color: #fff;
}

.oxl-pricing-right-top h2 strong {
    background: #fff;
    color: #104231;
    padding: 0 .7rem;
    clip-path: polygon(3% 0, 100% 0, 97% 100%, 0 100%);
    white-space: nowrap;
}

.oxl-pricing-features {
    width: 100%;
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 16px;
    color: #fff;
}

.oxl-pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .8em;
    font-weight: 500;
}

.oxl-pricing-features i {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #fff;
    color: #0f3d2e;
    font-size: 12px;
}

/* TRUST ROW */

.oxl-pricing-trust-row {
    margin-top: 1.3rem;
    display: grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.oxl-pricing-trust-card {
    background: #fff;
    border: 1px solid rgba(17, 24, 39, .06);
    box-shadow: 0 .8rem 1.8rem rgba(17, 24, 39, .04);
    border-radius: 1.15rem;
    padding: 1rem 1.1rem;
    display: flex;
    align-items: flex-start;
    gap: .85rem;
}

.oxl-pricing-trust-card i {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: .9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(27, 106, 75, .1);
    color: #165b3a;
    flex: 0 0 auto;
}

.oxl-pricing-trust-card strong {
    display: block;
    font-size: .97rem;
    color: #111827;
    margin-bottom: .2rem;
}

.oxl-pricing-trust-card span {
    display: block;
    font-size: .88rem;
    line-height: 1.6;
    color: #6b7280;
}

/* WHY */

.oxl-pricing-why-section {
    padding-top: 2.7rem !important;
    padding-bottom: 2.5rem !important;
}

.oxl-why-grid {
    display: flex;
    gap: 1.5rem;
}

.oxl-why-card {
    flex: 1;
    min-height: 18rem;
    padding: 2rem;
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, .78);
    border: 1px solid rgba(17, 24, 39, .06);
    box-shadow: 0 1.25rem 3.5rem rgba(17, 24, 39, .05);
    transition: transform .25s ease, box-shadow .25s ease;
}

.oxl-why-card:hover {
    transform: translateY(-.3rem);
    box-shadow: 0 1.5rem 3.5rem rgba(17, 24, 39, .09);
}

.oxl-why-card-featured {
    background: linear-gradient(145deg, #104231, #1b6a4b);
    color: #fff;
}

.oxl-why-card-featured p,
.oxl-why-card-featured h3 {
    color: #fff !important;
}

.oxl-why-icon {
    width: 3.25rem;
    height: 3.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    background: rgba(27, 106, 75, .09);
    color: #165b3a;
    font-size: 1.15rem;
}

.oxl-why-card-featured .oxl-why-icon {
    background: rgba(255, 255, 255, .12);
    color: #fff;
}

.oxl-why-card h3 {
    font-size: 1.45rem;
    line-height: 1.15;
    color: #111827;
    margin-bottom: .9rem;
}

.oxl-why-card p {
    font-size: .98rem;
    line-height: 1.7;
    color: #6b7280;
}

/* CALCULATOR */

.oxl-pricing-calculator-section {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
}

.oxl-pricing-calculator {
    margin-top: 40px;
    padding: 40px;
    border-radius: 20px;
    background: linear-gradient(135deg, #f7faf9, #eef6f3);
    border: 1px solid #e4ece8;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06),
    0 5px 15px rgba(0, 0, 0, 0.04);
}

.oxl-calculator-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 24px;
    margin-bottom: 35px;
}

.oxl-calculator-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.oxl-calculator-field label {
    font-size: 13px;
    font-weight: 600;
    color: #0f3d2e;
    opacity: .75;
}

.oxl-calculator-field input {
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid #d6e3de;
    font-size: 18px;
    font-weight: 700;
    background: #fff;
    transition: all .2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.oxl-calculator-field input:focus {
    outline: none;
    border-color: #1b6a4b;
    box-shadow: 0 0 0 3px rgba(27, 106, 75, .15);
}

.oxl-calculator-results {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 20px;
}

.oxl-calculator-result {
    background: #fff;
    padding: 22px;
    border-radius: 14px;
    text-align: center;
    border: 1px solid #e6eeea;
    transition: .2s;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .05);
}

.oxl-calculator-result:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, .08);
}

.oxl-result-label {
    display: block;
    font-size: 12px;
    letter-spacing: .4px;
    color: #6b7280;
    margin-bottom: 6px;
}

.oxl-calculator-result strong {
    font-size: 26px;
    font-weight: 800;
    color: #0f3d2e;
}

.oxl-calculator-result:nth-child(2) {
    background: linear-gradient(135deg, #0f3d2e, #1b6a4b);
    color: #fff;
}

.oxl-calculator-result:nth-child(2) strong {
    color: #fff;
    font-size: 32px;
}

.oxl-calculator-result:nth-child(2) .oxl-result-label {
    color: rgba(255, 255, 255, .7);
}

.oxl-calculator-roi {
    margin-top: 28px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 26px;
    border-radius: 14px;
    background: linear-gradient(135deg, #0f3d2e, #1b6a4b);
    color: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .12),
    0 6px 15px rgba(0, 0, 0, .08);
    transition: .25s;
}

.oxl-calculator-roi:hover {
    transform: translateY(-2px);
    box-shadow: 0 28px 50px rgba(0, 0, 0, .18);
}

.oxl-roi-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border-radius: 12px;
    background: rgba(255, 255, 255, .15);
    font-size: 18px;
}

.oxl-roi-title {
    display: block;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 2px;
}

.oxl-roi-text {
    font-size: 14px;
    opacity: .9;
    margin: 0;
}

.oxl-roi-text strong {
    color: #fff;
    font-weight: 700;
}

/* COMPARE */

.oxl-pricing-compare-section {
    padding-top: 2.4rem !important;
    padding-bottom: 2.4rem !important;
}

.oxl-pricing-compare-grid {
    display: grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
}

.oxl-pricing-compare-card {
    min-height: 15rem;
    padding: 1.45rem;
    border-radius: 1.3rem;
    background: #fff;
    border: 1px solid rgba(17, 24, 39, .06);
    box-shadow: 0 1rem 2rem rgba(17, 24, 39, .05);
    transition: transform .22s ease, box-shadow .22s ease;
}

.oxl-pricing-compare-card:hover {
    transform: translateY(-.25rem);
    box-shadow: 0 1.2rem 2.2rem rgba(17, 24, 39, .08);
}

.oxl-pricing-compare-icon {
    width: 2.9rem;
    height: 2.9rem;
    border-radius: .95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    background: rgba(27, 106, 75, .1);
    color: #165b3a;
}

.oxl-pricing-compare-card h3 {
    font-size: 1.12rem;
    color: #111827;
    margin-bottom: .55rem;
}

.oxl-pricing-compare-card p {
    font-size: .94rem;
    line-height: 1.7;
    color: #6b7280;
}

/* PROCESS */

.oxl-pricing-process-section {
    padding-top: 2.4rem !important;
    padding-bottom: 2.8rem !important;
    background: linear-gradient(135deg, #0f3d2e, #1b6a4b);
    color: #fff;
}

.oxl-pricing-process-section .oxl-kicker {
    background: #fff;
}

.oxl-pricing-process-section h2 {
    color: #fff;
}

.oxl-pricing-process-section .oxl-section-head h2 strong {
    background: #fff !important;
    color: #104231 !important;
}

.oxl-pricing-process-grid {
    display: grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
}

.oxl-pricing-process-card {
    background: #fff;
    border: 1px solid rgba(17, 24, 39, .06);
    box-shadow: 0 1rem 2rem rgba(17, 24, 39, .05);
    border-radius: 1.35rem;
    padding: 1.6rem;
    transition: transform .22s ease, box-shadow .22s ease;
}

.oxl-pricing-process-card:hover {
    transform: translateY(-.25rem);
    box-shadow: 0 1.2rem 2.2rem rgba(17, 24, 39, .08);
}

.oxl-pricing-process-number {
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    background: rgba(27, 106, 75, .1);
    color: #165b3a;
    font-weight: 800;
    font-size: 1rem;
}

.oxl-pricing-process-card h3 {
    font-size: 1.15rem;
    color: #111827;
    margin-bottom: .55rem;
}

.oxl-pricing-process-card p {
    font-size: .94rem;
    line-height: 1.7;
    color: #6b7280;
}

/* FAQ */

.oxl-faq {
    padding: 0;
    padding-block: 3rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, .18);
}

.oxl-faq-grid {
    display: grid;
    grid-template-columns:1.25fr .75fr;
    gap: 50px;
    align-items: flex-start;
}

.oxl-faq-list {
    max-width: 52rem;
}

.oxl-faq-item {
    padding: 1.35rem 1.4rem;
    border-radius: 1.1rem;
    background: #fff;
    border: 1px solid rgba(17, 24, 39, .06);
    box-shadow: 0 .8rem 1.8rem rgba(17, 24, 39, .04);
    margin-bottom: 1rem;
}

.oxl-faq-item summary {
    list-style: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
    position: relative;
    padding-right: 2rem;
}

.oxl-faq-item summary::-webkit-details-marker {
    display: none;
}

.oxl-faq-item summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #165b3a;
    font-size: 1.25rem;
    font-weight: 700;
}

.oxl-faq-item[open] summary::after {
    content: "–";
}

.oxl-faq-item p {
    margin-top: .9rem;
    color: #6b7280;
    line-height: 1.7;
    font-size: .96rem;
}

.oxl-faq-contact {
    background: #fff;
    border: 1px solid #e6e8ee;
    border-radius: 14px;
    padding: 36px 34px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .04);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.oxl-faq-contact h3 {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -.01em;
    color: #111827;
}

.oxl-faq-contact p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 14px;
}

.oxl-faq-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.oxl-faq-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.oxl-faq-field label {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
}

.oxl-faq-form input,
.oxl-faq-form textarea {
    width: 100%;
    padding: 12px 14px;
    font-size: 14px;
    font-family: inherit;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    background: #fff;
    transition: border-color .2s, box-shadow .2s;
}

.oxl-faq-form input:focus,
.oxl-faq-form textarea:focus {
    outline: none;
    border-color: #1b6a4b;
    box-shadow: 0 0 0 3px rgba(27, 106, 75, .08);
}

.oxl-faq-form textarea {
    min-height: 130px;
    resize: vertical;
    line-height: 1.6;
}

.oxl-faq-submit {
    margin-top: 6px;
    padding: 13px 16px;
    border-radius: 8px;
    border: none;
    background: linear-gradient(135deg, #0f3d2e, #1b6a4b);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, opacity .2s;
}

.oxl-faq-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(27, 106, 75, .25);
}

.oxl-faq-direct {
    margin-top: 12px;
    padding: 18px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    background: #fafafa;
    text-align: center;
}

.oxl-faq-direct span {
    display: block;
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 6px;
}

.oxl-faq-direct a {
    font-weight: 600;
    font-size: 15px;
    color: #1b6a4b;
    text-decoration: none;
}

.oxl-faq-pagination {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}

.oxl-faq-page {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    border: 1px solid #e5e7eb;
    background: #fff;
    font-size: 14px;
    cursor: pointer;
    transition: background .2s, border-color .2s, color .2s;
}

.oxl-faq-page:hover {
    border-color: #1b6a4b;
    color: #1b6a4b;
}

.oxl-faq-page.active {
    background: #1b6a4b;
    color: #fff;
    border: none;
}

/* RESPONSIVE */

@media (max-width: 1100px) {
    .oxl-pricing-trust-row,
    .oxl-pricing-compare-grid,
    .oxl-pricing-process-grid {
        grid-template-columns:repeat(2, minmax(0, 1fr));
    }

    .oxl-why-grid {
        flex-direction: column;
    }

    .oxl-faq-grid {
        grid-template-columns:1fr;
    }
}

@media (max-width: 900px) {
    .oxl-pricing-card {
        flex-direction: column;
    }

    .oxl-pricing-features {
        grid-template-columns:1fr;
    }

    .oxl-calculator-grid,
    .oxl-calculator-results {
        grid-template-columns:1fr;
    }

    .oxl-calculator-roi {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 780px) {
    .oxl-section {
        padding: 3.2rem 0;
    }

    .oxl-section-head h1 {
        font-size: 2.35rem;
    }

    .oxl-section-head h2 {
        font-size: 2.25rem;
    }

    .oxl-pricing-trust-row,
    .oxl-pricing-compare-grid,
    .oxl-pricing-process-grid {
        grid-template-columns:1fr;
    }

    .oxl-pricing-right-top h2 {
        font-size: 1.7rem;
    }
}

@media (max-width: 640px) {
    .oxl-breadcrumb {
        font-size: 12px;
    }

    .oxl-pricing-hero-point {
        width: 100%;
        justify-content: flex-start;
    }

    .oxl-pricing-card {
        border-radius: 18px;
    }

    .oxl-pricing-left,
    .oxl-pricing-right {
        padding: 28px;
    }

    .oxl-price {
        font-size: 54px;
    }

    .oxl-pricing-calculator {
        padding: 24px;
    }

    .oxl-faq-contact {
        padding: 24px;
    }
}

.oxl-fp-page {
    background: #f6f8f5;
    color: #101828;
}

.oxl-fp-page .container {
    width: min(1240px, calc(100% - 40px));
    margin-inline: auto;
}

.oxl-fp-section {
    padding: 30px 0;
}

.oxl-fp-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(16, 66, 49, .08);
    color: #104231;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.oxl-fp-kicker.light {
    background: rgba(255, 255, 255, .08);
    color: #d4efe1;
}

.oxl-fp-section-head {
    margin: auto;
    text-align: center;
    max-width: 1015px;
    margin-bottom: 30px;
}

.oxl-fp-section-head.center {
    text-align: center;
    margin-inline: auto;
}

.oxl-fp-section-head h2 {
    margin: 18px 0 12px;
    font-size: clamp(2rem, 3.6vw, 3rem);
    line-height: 1.05;
    letter-spacing: -.045em;
    color: #0f172a;
    font-weight: 850;
}

.oxl-fp-section-head p {
    margin: auto;
    color: #667085;
    font-size: 1rem;
    line-height: 1.8;
}

.oxl-fp-hero {
    position: relative;
    overflow: hidden;
    padding: 78px 0 86px;
    background: radial-gradient(circle at 10% 14%, rgba(16, 66, 49, .08), transparent 26%),
    radial-gradient(circle at 90% 14%, rgba(16, 66, 49, .06), transparent 22%),
    linear-gradient(180deg, #f8fbf9 0%, #f6f8f5 100%);
}

.oxl-fp-hero-grid {
    display: grid;
    grid-template-columns:minmax(0, 1fr) minmax(420px, 520px);
    gap: 56px;
    align-items: center;
}

.oxl-fp-hero-copy h1 {
    margin: 18px 0 18px;
    font-size: clamp(2.35rem, 4.8vw, 3rem);
    line-height: .98;
    letter-spacing: -.065em;
    color: #0f172a;
    font-weight: 900;
    max-width: 720px;
}

.oxl-fp-hero-copy h1 span {
    color: #104231;
}

.oxl-fp-lead {
    max-width: 700px;
    margin: 0;
    color: #667085;
    font-size: 1.04rem;
    line-height: 1.85;
}

.oxl-fp-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.oxl-fp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    transition: .2s ease;
}

.oxl-fp-btn-primary {
    background: #104231;
    color: #fff;
    box-shadow: 0 16px 38px rgba(16, 66, 49, .18);
}

.oxl-fp-btn-primary:hover {
    transform: translateY(-2px);
    background: #0b3024;
    color: #fff;
}

.oxl-fp-btn-secondary {
    background: #fff;
    color: #104231;
    border: 1px solid rgba(16, 66, 49, .14);
    box-shadow: 0 12px 26px rgba(15, 23, 42, .05);
}

.oxl-fp-btn-secondary:hover {
    transform: translateY(-2px);
    color: #104231;
    border-color: rgba(16, 66, 49, .24);
}

.oxl-fp-hero-stats {
    display: grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 32px;
}

.oxl-fp-hero-stats article {
    padding: 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .84);
    border: 1px solid rgba(16, 66, 49, .08);
    box-shadow: 0 14px 34px rgba(15, 23, 42, .05);
}

.oxl-fp-hero-stats strong {
    display: block;
    margin-bottom: 5px;
    color: #104231;
    font-size: 14px;
    font-weight: 850;
}

.oxl-fp-hero-stats span {
    display: block;
    color: #667085;
    font-size: 12px;
    line-height: 1.45;
}

.oxl-fp-hero-visual {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.oxl-fp-hero-image {
    position: relative;
    width: min(100%, 540px);
    padding: 12px;
    border-radius: 34px;
    background: rgba(255, 255, 255, .84);
    border: 1px solid rgba(16, 66, 49, .08);
    box-shadow: 0 34px 85px rgba(16, 66, 49, .13),
    0 10px 28px rgba(15, 23, 42, .08);
    backdrop-filter: blur(14px);
    z-index: 2;
}

.oxl-fp-hero-image img {
    display: block;
    width: 100%;
    object-fit: cover;
    border-radius: 24px;
    background: #edf5f0;
}

.oxl-fp-play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 76px;
    height: 76px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #104231;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 24px 50px rgba(16, 66, 49, .26);
}

.oxl-fp-play i {
    margin-left: 4px;
    font-size: 22px;
}

.oxl-fp-float {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 230px;
    padding: 12px 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .9);
    border: 1px solid rgba(16, 66, 49, .08);
    box-shadow: 0 18px 42px rgba(15, 23, 42, .08);
    z-index: 3;
}

.oxl-fp-float i {
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 66, 49, .08);
    color: #104231;
    font-size: 15px;
}

.oxl-fp-float strong {
    display: block;
    color: #0f172a;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 850;
}

.oxl-fp-float span {
    display: block;
    margin-top: 3px;
    color: #667085;
    font-size: 11px;
    line-height: 1.35;
}

.oxl-fp-float-top-left {
    top: 26px;
    left: -10px;
}

.oxl-fp-float-top-right {
    top: 88px;
    right: -6px;
}

.oxl-fp-float-bottom-left {
    bottom: 94px;
    left: -18px;
}

.oxl-fp-float-bottom-right {
    bottom: 18px;
    right: 20px;
}

.oxl-fp-card {
    background: #fff;
    border: 1px solid rgba(16, 66, 49, .08);
    border-radius: 28px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, .05);
    padding: 34px;
}

.oxl-fp-card-large h2 {
    margin: 16px 0 12px;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    line-height: 1.08;
    letter-spacing: -.04em;
    font-weight: 850;
}

.oxl-fp-card-large p {
    margin: 0;
    color: #667085;
    line-height: 1.8;
}

.oxl-fp-mini-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.oxl-fp-mini-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    text-decoration: none;
    color: #104231;
    background: #f4f7f5;
    border: 1px solid rgba(16, 66, 49, .08);
    font-size: 13px;
    font-weight: 700;
}

.oxl-fp-before-after {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 18px;
}

.oxl-fp-before,
.oxl-fp-after {
    padding: 26px;
    border-radius: 26px;
}

.oxl-fp-before {
    background: #fff;
    border: 1px solid rgba(16, 66, 49, .08);
    box-shadow: 0 16px 34px rgba(15, 23, 42, .05);
}

.oxl-fp-after {
    color: #fff;
    box-shadow: 0 20px 40px rgba(16, 66, 49, .18);
}

.oxl-fp-before h3,
.oxl-fp-after h3 {
    margin: 0 0 16px;
    font-size: 1.2rem;
    font-weight: 850;
}

.oxl-fp-before ul,
.oxl-fp-after ul {
    margin: 0;
    padding-left: 18px;
    line-height: 1.8;
}

.oxl-fp-feature-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.oxl-fp-feature-strip a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(16, 66, 49, .08);
    text-decoration: none;
    color: #104231;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 8px 18px rgba(15, 23, 42, .04);
}

.oxl-fp-pillar-grid {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 16px;
}

.oxl-fp-pillar-card {
    background: #fff;
    border: 1px solid rgba(16, 66, 49, .08);
    border-radius: 26px;
    padding: 24px;
    box-shadow: 0 16px 36px rgba(15, 23, 42, .05);
}

.oxl-fp-pillar-card.is-dark {
    background: #104231;
    color: #fff;
    box-shadow: 0 22px 44px rgba(16, 66, 49, .18);
}

.oxl-fp-pillar-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 66, 49, .08);
    color: #104231;
    margin-bottom: 18px;
}

.oxl-fp-pillar-card.is-dark .oxl-fp-pillar-icon {
    background: rgba(255, 255, 255, .12);
    color: #fff;
}

.oxl-fp-pillar-card h3 {
    margin: 0 0 10px;
    font-size: 1.25rem;
    font-weight: 850;
}

.oxl-fp-pillar-card p {
    margin: 0 0 16px;
    color: #667085;
    line-height: 1.7;
    font-size: .96rem;
}

.oxl-fp-pillar-card.is-dark p {
    color: #d4e3da;
}

.oxl-fp-pillar-card a {
    color: #104231;
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
}

.oxl-fp-pillar-card.is-dark a {
    color: #fff;
}

.oxl-fp-showcase {
    display: grid;
    grid-template-columns:minmax(0, 1fr) 420px;
    gap: 44px;
    align-items: center;
}

.oxl-fp-showcase-copy h2 {
    margin: 18px 0 14px;
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    line-height: 1.06;
    letter-spacing: -.04em;
    font-weight: 850;
}

.oxl-fp-showcase-copy p {
    margin: 0;
    color: #667085;
    line-height: 1.8;
}

.oxl-fp-check-list {
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
}

.oxl-fp-check-list li + li {
    margin-top: 10px;
}

.oxl-fp-check-list a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0 16px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(16, 66, 49, .08);
    text-decoration: none;
    color: #104231;
    font-weight: 700;
    box-shadow: 0 10px 22px rgba(15, 23, 42, .04);
}

.oxl-fp-showcase-device {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.oxl-fp-phone-card {
    width: 280px;
    border-radius: 30px;
    background: #fff;
    border: 1px solid rgba(16, 66, 49, .08);
    box-shadow: 0 26px 54px rgba(15, 23, 42, .08);
    overflow: hidden;
}

.oxl-fp-phone-card-head {
    padding: 16px 20px;
    background: #f3f7f4;
    color: #104231;
    font-size: 13px;
    font-weight: 800;
}

.oxl-fp-phone-card-body {
    padding: 18px;
}

.oxl-fp-phone-block {
    padding: 14px;
    border-radius: 16px;
    background: #f8faf8;
    border: 1px solid rgba(16, 66, 49, .06);
}

.oxl-fp-phone-block + .oxl-fp-phone-block {
    margin-top: 10px;
}

.oxl-fp-phone-block strong {
    display: block;
    color: #0f172a;
    font-size: 13px;
    font-weight: 800;
}

.oxl-fp-phone-block span {
    display: block;
    margin-top: 4px;
    color: #667085;
    font-size: 12px;
}

.oxl-fp-floating-chip {
    position: absolute;
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(16, 66, 49, .08);
    box-shadow: 0 12px 26px rgba(15, 23, 42, .08);
    color: #104231;
    font-size: 12px;
    font-weight: 800;
}
.oxl-final-cta{
    padding-top:5rem;
    padding-bottom:7rem;
}

.oxl-final-cta-box{
    text-align:center;
    border-radius:2rem;
    padding:4rem 2rem;
    background:linear-gradient(145deg,#104231,#1b6a4b);
    color:#fff;
    box-shadow:0 1.8rem 4rem rgba(16,66,49,.2);
}

.oxl-final-cta-box h2{
    font-size:3rem;
    line-height:1.05;
    letter-spacing:-.03em;
    margin-bottom:1rem;
}
.oxl-kicker.oxl-kicker-light{
    color: #fff;
}
.oxl-final-cta-box p{
    max-width:36rem;
    margin:0 auto 1.8rem;
    color:rgba(255,255,255,.84);
    line-height:1.7;
    font-size:1.03rem;
}

.oxl-final-btn{
    min-height:3.4rem;
    padding:0 1.5rem;
    border-radius:1rem;
    background:#fff;
    color:#104231;
    text-decoration:none;
    font-weight:700;
    display:inline-flex;
    align-items:center;
    justify-content:center;
}
.chip-one {
    top: 80px;
    right: 0;
}

.chip-two {
    bottom: 82px;
    right: 10px;
}

.oxl-fp-dark {
    background: #0f3d2e;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.oxl-fp-dark::before {
    content: "";
    position: absolute;
    inset: auto auto -160px -120px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .04);
}

.oxl-fp-dark .oxl-fp-section-head h2,
.oxl-fp-dark .oxl-fp-section-head p {
    color: #fff;
}

.oxl-fp-dark .oxl-fp-section-head p {
    color: #d6e5dc;
}

.oxl-fp-acquisition-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 16px;
}

.oxl-fp-acquisition-grid article {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 22px;
    padding: 22px;
    backdrop-filter: blur(10px);
}

.oxl-fp-acquisition-grid h3 {
    margin: 0 0 10px;
    font-size: 1.05rem;
    font-weight: 850;
}

.oxl-fp-acquisition-grid h3 a {
    color: #fff;
    text-decoration: none;
}

.oxl-fp-acquisition-grid p {
    margin: 0;
    color: #d4e3da;
    line-height: 1.7;
    font-size: .95rem;
}

.oxl-fp-catalog {
    display: grid;
    gap: 16px;
}

.oxl-fp-catalog article {
    background: #fff;
    border: 1px solid rgba(16, 66, 49, .08);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 14px 30px rgba(15, 23, 42, .05);
}

.oxl-fp-catalog h3 {
    margin: 0 0 16px;
    color: #0f172a;
    font-size: 1.08rem;
    font-weight: 850;
}

.oxl-fp-link-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 10px;
}

.oxl-fp-link-grid a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 0 14px;
    border-radius: 14px;
    background: #f7faf8;
    border: 1px solid rgba(16, 66, 49, .07);
    text-decoration: none;
    color: #104231;
    font-size: 13px;
    font-weight: 700;
}

.oxl-fp-cta-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 30px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid rgba(16, 66, 49, .08);
    box-shadow: 0 18px 40px rgba(15, 23, 42, .05);
}

.oxl-fp-cta-band h2 {
    margin: 14px 0 8px;
    font-size: clamp(1.7rem, 2.8vw, 2.5rem);
    line-height: 1.08;
    letter-spacing: -.04em;
    font-weight: 850;
}

.oxl-fp-cta-band h2 span {
    color: #104231;
}

.oxl-fp-cta-band p {
    margin: 0;
    color: #667085;
    line-height: 1.75;
}

.oxl-fp-faq-grid {
    display: grid;
    grid-template-columns:320px minmax(0, 1fr);
    gap: 26px;
    align-items: start;
}

.oxl-fp-faq-intro h2 {
    margin: 16px 0 12px;
    font-size: clamp(1.7rem, 2.8vw, 2.3rem);
    line-height: 1.08;
    letter-spacing: -.04em;
    font-weight: 850;
}

.oxl-fp-faq-intro p {
    margin: 0;
    color: #667085;
    line-height: 1.8;
}

.oxl-fp-faq-list details {
    background: #fff;
    border: 1px solid rgba(16, 66, 49, .08);
    border-radius: 18px;
    padding: 18px 20px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .04);
}

.oxl-fp-faq-list details + details {
    margin-top: 10px;
}

.oxl-fp-faq-list summary {
    cursor: pointer;
    list-style: none;
    font-weight: 800;
    color: #0f172a;
}

.oxl-fp-faq-list summary::-webkit-details-marker {
    display: none;
}

.oxl-fp-faq-list p {
    margin: 12px 0 0;
    color: #667085;
    line-height: 1.75;
}

.oxl-fp-final {
    padding-top: 24px;
    padding-bottom: 110px;
}

.oxl-fp-final-card {
    max-width: 980px;
    margin: 0 auto;
    padding: 42px 34px;
    border-radius: 34px;
    text-align: center;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbf9 100%);
    border: 1px solid rgba(16, 66, 49, .08);
    box-shadow: 0 24px 60px rgba(15, 23, 42, .08);
}

.oxl-fp-final-card h2 {
    margin: 18px 0 14px;
    font-size: clamp(2rem, 3.2vw, 3rem);
    line-height: 1.05;
    letter-spacing: -.045em;
    font-weight: 850;
}

.oxl-fp-final-card p {
    max-width: 760px;
    margin: 0 auto;
    color: #667085;
    line-height: 1.85;
}

.oxl-fp-final-card .oxl-fp-hero-actions {
    justify-content: center;
}

@media (max-width: 1200px) {
    .oxl-fp-hero-grid,
    .oxl-fp-showcase {
        grid-template-columns:1fr;
    }

    .oxl-fp-hero-visual {
        min-height: auto;
        padding-top: 10px;
    }

    .oxl-fp-faq-grid {
        grid-template-columns:1fr;
    }
}

@media (max-width: 980px) {
    .oxl-fp-pillar-grid,
    .oxl-fp-acquisition-grid,
    .oxl-fp-link-grid,
    .oxl-fp-before-after {
        grid-template-columns:1fr 1fr;
    }

    .oxl-fp-hero-stats {
        grid-template-columns:1fr;
    }

    .oxl-fp-cta-band {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 760px) {


    .oxl-fp-page .container {
        width: min(100% - 24px, 1240px);
    }

    .oxl-fp-hero {
        padding: 54px 0 64px;
    }

    .oxl-fp-hero-copy h1 {
        font-size: clamp(2rem, 10vw, 3rem);
        line-height: 1.02;
    }

    .oxl-fp-hero-actions {
        flex-direction: column;
    }

    .oxl-fp-btn {
        width: 100%;
    }

    .oxl-fp-pillar-grid,
    .oxl-fp-acquisition-grid,
    .oxl-fp-link-grid,
    .oxl-fp-before-after {
        grid-template-columns:1fr;
    }

    .oxl-fp-float {
        position: static;
        max-width: none;
        margin-top: 10px;
    }

    .oxl-fp-hero-visual {
        display: block;
    }

    .oxl-fp-hero-image {
        width: 100%;
    }

    .oxl-fp-showcase-device {
        min-height: auto;
        padding-top: 10px;
    }

    .oxl-fp-card,
    .oxl-fp-catalog article,
    .oxl-fp-cta-band,
    .oxl-fp-final-card {
        padding: 24px;
    }
}

@media (max-width: 1080px) {
    .main-nav {
        display: none
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center
    }

    .hero-grid, .pain-grid, .showcase-grid, .app-grid, .pricing-wrap, .faq-layout {
        grid-template-columns:1fr
    }

    .hero {
        padding-top: 55px
    }

    .hero-visual {
        min-height: 520px
    }

    .features-grid {
        grid-template-columns:repeat(2, 1fr)
    }

    .feature-card, .feature-card.featured, .feature-card.wide {
        grid-column: auto
    }

    .faq-aside {
        position: relative;
        top: auto
    }

    .footer-top {
        grid-template-columns:1fr 1fr
    }

    .seo-groups {
        grid-template-columns:1fr 1fr
    }

    .app-desktop {
        position: relative;
        top: auto
    }

    .app-main-phone {
        right: 20px;
        bottom: 0
    }
}

@media (max-width: 720px) {
    .container {
        width: min(calc(100% - 28px), var(--container))
    }

    .site-header {
        top: 10px;
        margin-top: 10px
    }

    .nav-shell {
        min-height: 66px;
        border-radius: 22px
    }

    .brand-logo {
        height: 32px
    }

    .dashboard-link {
        display: none
    }

    .nav-cta {
        display: none
    }

    .section {
        padding: 70px 0
    }

    .hero {
        padding: 44px 0 28px
    }

    .title-xl {
        font-size: 44px;
        line-height: 1.03
    }

    .hero-lead, .section-head p, .showcase-copy p, .app-copy p {
        font-size: 16px
    }

    .hero-actions {
        flex-wrap: wrap
    }

    .hero-actions .btn, .price-actions .btn, .final-actions .btn {
        width: 100%
    }

    .hero-metrics, .calc-grid, .calc-results, .app-points {
        grid-template-columns:1fr
    }

    .hero-visual {
        min-height: 560px
    }

    .phone-cluster {
        height: 530px
    }

    .phone-device.main {
        width: 220px
    }

    .phone-device.left {
        width: 160px;
        left: 0
    }

    .phone-device.right {
        width: 155px;
        right: 0
    }

    .visual-card {
        font-size: 12px
    }

    .pain-main, .price-card, .calculator, .final-box {
        padding: 24px;
        border-radius: 28px
    }

    .features-grid {
        grid-template-columns:1fr
    }

    .feature-card, .feature-card.featured, .feature-card.wide {
        grid-column: auto
    }

    .features-note {
        align-items: flex-start;
        flex-direction: column
    }

    .mobile-stage {
        min-height: 550px
    }

    .stage-phone.main {
        width: 220px
    }

    .stage-phone.side-a {
        width: 158px;
        left: 0
    }

    .stage-phone.side-b {
        width: 150px;
        right: 0
    }

    .app-visual {
        min-height: 600px
    }

    .app-desktop {
        width: 100%;
        padding: 9px
    }

    .app-main-phone {
        width: 190px;
        right: 4px;
        bottom: 28px
    }

    .app-bubble {
        font-size: 12px;
        padding: 12px
    }

    .app-bubble.one {
        left: 0;
        top: 30px
    }

    .app-bubble.two {
        right: 0;
        top: 260px
    }

    .app-bubble.three {
        left: 0;
        bottom: 150px
    }

    .app-bubble.four {
        right: auto;
        left: 0;
        bottom: 64px
    }

    .price-feature-list {
        grid-template-columns:1fr
    }

    .calculator-head {
        align-items: flex-start;
        flex-direction: column
    }

    .calc-note {
        align-items: flex-start
    }

    .faq-question {
        font-size: 15px
    }

    .final-box h2, .section-head h2 {
        font-size: 37px
    }

    .footer-top, .seo-groups {
        grid-template-columns:1fr
    }

    .footer-bottom {
        flex-direction: column
    }

    .marquee-item {
        font-size: 13px;
        height: 38px
    }
}
/* =========================================================
   RESPONSIVE COMPLET — PAGE TROUVER UN COACH / LISTE COACHS
   À coller tout en bas du style.css
========================================================= */

/* Sécurité globale */
.oxl-find-coach-page,
.oxl-find-coach-page * {
    min-width: 0;
}

.oxl-find-coach-page {
    overflow-x: hidden;
}

/* Correction importante : le HTML utilise h2, pas h3 */
.coach-card-head h2 {
    margin: 0 0 7px;
    color: #101828;
    font-size: 20px;
    font-weight: 950;
    line-height: 1.15;
    letter-spacing: -0.035em;
}

/* Grille plus souple desktop */
.oxl-find-coach-grid {
    align-items: stretch;
}

/* Une seule carte : ne pas l'étirer sur toute la largeur */
.oxl-find-coach-grid.is-single {
    grid-template-columns: minmax(0, 420px);
    justify-content: center;
}

/* Texte dans les cards : évite les débordements */
.coach-card,
.coach-card-body,
.coach-card-head,
.coach-card-infos,
.info-content,
.location,
.info-value {
    min-width: 0;
}

.location span:first-of-type,
.info-value {
    overflow-wrap: anywhere;
}

/* Images plus propres selon écran */
.coach-card-media {
    background: #e8eee9;
}

.coach-card-media img {
    transform: translateZ(0);
}

/* Footer card stable */
.coach-card-footer {
    width: 100%;
}

/* =========================================================
   <= 1180px : 3 colonnes encore, mais plus compact
========================================================= */

@media (max-width: 1180px) {
    .oxl-find-coach-grid {
        gap: 22px;
    }

    .coach-card-media,
    .oxl-coach-card-cover {
        height: 330px;
    }

    .coach-card-body {
        padding: 18px;
    }
}

/* =========================================================
   <= 1024px : passage à 2 colonnes
========================================================= */

@media (max-width: 1024px) {
    .oxl-find-coach-page {
        padding-bottom: 58px;
    }

    .oxl-find-coach-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .oxl-find-coach-grid.is-single {
        grid-template-columns: minmax(0, 440px);
    }

    .coach-card-media,
    .oxl-coach-card-cover {
        height: 310px;
    }

    .coach-card-head h2 {
        font-size: 19px;
    }

    .info {
        grid-template-columns: 32px minmax(0, 1fr);
        gap: 10px;
    }

    .info i {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 1080px) {
    .site-header .nav-shell {
        position: relative;
    }

    .main-nav {
        display: none;
    }

    .main-nav.is-open {
        display: block;
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        z-index: 80;
        padding: 12px;
        border-radius: 22px;
        background: #ffffff;
        border: 1px solid rgba(15, 61, 46, .12);
        box-shadow: 0 22px 55px rgba(16, 66, 49, .14);
    }

    .main-nav.is-open > ul {
        display: grid;
        gap: 6px;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .main-nav.is-open > ul > li {
        width: 100%;
    }

    .main-nav.is-open a,
    .main-nav.is-open .nav-trigger {
        width: 100%;
        min-height: 46px;
        justify-content: space-between;
        padding: 0 14px;
        border-radius: 14px;
        color: #101828;
        font-size: 14px;
        font-weight: 850;
    }

    .main-nav.is-open a:hover,
    .main-nav.is-open .nav-trigger:hover {
        background: rgba(27, 106, 75, .08);
        color: #164b36;
    }

    .main-nav.is-open .mega {
        position: static;
        width: 100%;
        margin-top: 8px;
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        box-shadow: none;
        border-radius: 18px;
        padding: 0;
        background: transparent;
        display: none;
    }

    .main-nav.is-open li.is-mega-open .mega {
        display: block;
    }

    .main-nav.is-open .mega-shell {
        padding: 12px;
        border-radius: 18px;
    }

    .main-nav.is-open .mega-feature-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .main-nav.is-open .mega-feature-item {
        padding: 8px;
    }

    .main-nav.is-open .mega-features-cta {
        margin-top: 12px;
    }

    .menu-toggle.is-open i::before {
        content: "\f00d";
    }
}
/* =========================================================
   MEGA MENU MOBILE OXL — PATCH FINAL
   À coller tout en bas du style.css
========================================================= */

@media (max-width: 1080px) {

    .site-header {
        z-index: 999;
    }

    .site-header .nav-shell {
        position: relative;
        overflow: visible;
    }

    .main-nav.is-open {
        display: block;
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        z-index: 999;
        max-height: calc(100vh - 105px);
        overflow-y: auto;
        overscroll-behavior: contain;
        padding: 10px;
        border-radius: 22px;
        background: rgba(255, 255, 255, .98);
        border: 1px solid rgba(15, 61, 46, .12);
        box-shadow: 0 26px 70px rgba(16, 66, 49, .18);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }

    .main-nav.is-open::-webkit-scrollbar {
        width: 6px;
    }

    .main-nav.is-open::-webkit-scrollbar-thumb {
        border-radius: 999px;
        background: rgba(16, 66, 49, .22);
    }

    .main-nav.is-open > ul {
        display: grid;
        gap: 6px;
        width: 100%;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .main-nav.is-open > ul > li {
        width: 100%;
        border-radius: 16px;
    }

    .main-nav.is-open > ul > li > a,
    .main-nav.is-open > ul > li > .nav-trigger {
        width: 100%;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 0 14px;
        border-radius: 15px;
        color: #101828;
        background: transparent;
        font-size: 14px;
        font-weight: 900;
        line-height: 1.2;
    }

    .main-nav.is-open > ul > li > a:hover,
    .main-nav.is-open > ul > li > .nav-trigger:hover {
        color: #104231;
        background: rgba(16, 66, 49, .07);
    }

    .main-nav.is-open .nav-trigger i {
        transition: transform .2s ease;
    }

    .main-nav.is-open li.is-mega-open .nav-trigger i {
        transform: rotate(180deg);
    }

    .main-nav.is-open li:has(.mega)::after {
        display: none;
    }

    .main-nav.is-open .mega,
    .main-nav.is-open .mega-features {
        position: static !important;
        inset: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 6px 0 4px !important;
        padding: 0 !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        border: 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        background: transparent !important;
        overflow: visible !important;
        display: none;
    }

    .main-nav.is-open .mega::before,
    .main-nav.is-open .mega::after,
    .main-nav.is-open .mega-features::before,
    .main-nav.is-open .mega-features::after {
        display: none !important;
    }

    .main-nav.is-open li.is-mega-open > .mega,
    .main-nav.is-open li.is-mega-open > .mega-features {
        display: block !important;
    }

    .main-nav.is-open .mega-features .mega-shell {
        padding: 12px;
        border-radius: 18px;
        background: linear-gradient(180deg, #f8fbf9 0%, #ffffff 100%);
        border: 1px solid rgba(16, 66, 49, .09);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, .85);
    }

    .main-nav.is-open .mega-features .mega-feature-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 9px;
    }

    .main-nav.is-open .mega-features .mega-feature-item {
        min-height: 66px;
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px;
        border-radius: 15px;
        background: #ffffff;
        border: 1px solid rgba(16, 66, 49, .08);
        box-shadow: 0 8px 18px rgba(15, 23, 42, .045);
        color: #101828;
        text-decoration: none;
        transform: none;
    }

    .main-nav.is-open .mega-features .mega-feature-item:hover {
        transform: none;
        background: #f4faf7;
        border-color: rgba(16, 66, 49, .16);
        box-shadow: 0 10px 22px rgba(16, 66, 49, .07);
    }

    .main-nav.is-open .mega-features .mega-feature-icon {
        width: 38px;
        height: 38px;
        flex: 0 0 38px;
        border-radius: 13px;
        background: #eaf6f0;
        border: 1px solid rgba(16, 66, 49, .07);
        box-shadow: none;
    }

    .main-nav.is-open .mega-features .mega-feature-icon i {
        color: #104231;
        font-size: 14px;
    }

    .main-nav.is-open .mega-features .mega-feature-item > span:last-child {
        min-width: 0;
        padding-top: 0;
    }

    .main-nav.is-open .mega-features .mega-feature-item strong {
        display: block;
        margin: 0;
        color: #101828;
        font-size: 13px;
        font-weight: 900;
        line-height: 1.18;
        letter-spacing: -0.02em;
    }

    .main-nav.is-open .mega-features .mega-feature-item small {
        display: block;
        margin-top: 3px;
        max-width: none;
        color: #667085;
        font-size: 11.5px;
        font-weight: 600;
        line-height: 1.25;
    }

    .main-nav.is-open .mega-features .mega-features-cta {
        min-height: 58px;
        margin-top: 10px;
        padding: 12px 13px;
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        background: linear-gradient(135deg, #104231, #1b6a4b);
        border: 1px solid rgba(16, 66, 49, .14);
        color: #ffffff !important;
        box-shadow: 0 12px 28px rgba(16, 66, 49, .18);
    }

    .main-nav.is-open .mega-features .mega-features-cta strong {
        margin: 0;
        color: #ffffff !important;
        font-size: 13.5px;
        font-weight: 950;
        line-height: 1.2;
    }

    .main-nav.is-open .mega-features .mega-features-cta small {
        display: block;
        margin-top: 3px;
        color: rgba(255, 255, 255, .76) !important;
        font-size: 11.5px;
        line-height: 1.3;
    }

    .main-nav.is-open .mega-features .mega-features-cta > i {
        width: 34px;
        height: 34px;
        flex: 0 0 34px;
        border-radius: 12px;
        background: rgba(255, 255, 255, .14);
        color: #ffffff !important;
    }
}

/* Très mobile */
@media (max-width: 560px) {

    .main-nav.is-open {
        left: -2px;
        right: -2px;
        max-height: calc(100vh - 96px);
        padding: 9px;
        border-radius: 20px;
    }

    .main-nav.is-open .mega-features .mega-shell {
        padding: 10px;
        border-radius: 17px;
    }

    .main-nav.is-open .mega-features .mega-feature-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .main-nav.is-open .mega-features .mega-feature-item {
        min-height: 58px;
        padding: 9px 10px;
    }

    .main-nav.is-open .mega-features .mega-feature-icon {
        width: 36px;
        height: 36px;
        flex-basis: 36px;
    }

    .main-nav.is-open .mega-features .mega-feature-item strong {
        font-size: 13px;
    }

    .main-nav.is-open .mega-features .mega-feature-item small {
        font-size: 11px;
    }

    .main-nav.is-open .mega-features .mega-features-cta {
        min-height: 54px;
        padding: 12px;
        border-radius: 15px;
    }

    .main-nav.is-open .mega-features .mega-features-cta small {
        display: none;
    }
}
.oxl-antibot-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
    overflow: hidden !important;
}

.oxl-turnstile {
    margin: 18px 0 4px;
}
.alert {
    width: 100%;
    margin: 0 0 18px;
    padding: 16px 20px;
    border-radius: 16px;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.45;
    box-sizing: border-box;
    border: 0;
    box-shadow: 0 14px 34px rgba(16, 66, 49, .18);
}

.alert > div {
    margin: 0;
}

.alert-success {
    background: linear-gradient(135deg, #104231 0%, #1f7a55 100%);
}

.alert-danger {
    background: linear-gradient(135deg, #7f1d1d 0%, #dc2626 100%);
}

.alert-warning {
    background: linear-gradient(135deg, #9a6a00 0%, #d97706 100%);
}

.alert a {
    color: #fff;
    text-decoration: none;
    margin-left: 12px;
}

@media (max-width: 640px) {
    .alert {
        padding: 14px 16px;
        border-radius: 14px;
        font-size: 14px;
    }
}

@media (max-width: 380px) {
    .main-nav.is-open .mega-features .mega-feature-item {
        gap: 8px;
    }

    .main-nav.is-open .mega-features .mega-feature-icon {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
    }

    .main-nav.is-open .mega-features .mega-feature-item strong {
        font-size: 12.5px;
    }
}
@media (max-width: 860px) {
    .oxl-find-coach-hero {
        min-height: auto;
        padding-bottom: 110px;
    }

    .oxl-find-coach-hero h1 {
        font-size: clamp(34px, 8vw, 52px);
        line-height: 1.04;
        letter-spacing: -0.055em;
    }

    .oxl-find-coach-hero h1 strong {
        white-space: normal;
    }

    .oxl-find-coach-hero p {
        font-size: 16px;
        line-height: 1.65;
    }

    .oxl-find-coach-search-box {
        max-width: 100%;
    }

    .oxl-find-coach-search-main {
        min-height: 58px;
        padding: 0 16px;
        border-radius: 19px;
    }

    .oxl-find-coach-search-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .oxl-find-coach-search-tags {
        justify-content: center;
    }

    .oxl-find-coach-search-actions > div:last-child {
        width: 100%;
        justify-content: center;
    }

    .oxl-find-coach-search-actions .btn-primary,
    .oxl-location-btn {
        flex: 1 1 0;
        min-width: 180px;
    }

    #searchDropdown {
        max-height: 240px;
    }
}



@media (max-width: 720px) {
    .oxl-find-coach-page {
        padding-bottom: 46px;
    }

    .oxl-find-coach-page .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .oxl-section-head {
        margin-bottom: 24px;
    }

    .oxl-section-head h1,
    .oxl-section-head h2 {
        font-size: clamp(30px, 9vw, 40px);
        line-height: 1.06;
        letter-spacing: -0.05em;
    }

    .oxl-section-head p {
        font-size: 15px;
        line-height: 1.65;
    }

    .oxl-find-coach-grid,
    .oxl-find-coach-grid.is-single {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .coach-card,
    .oxl-coach-card {
        border-radius: 22px;
        box-shadow: 0 14px 34px rgba(16, 66, 49, 0.075);
    }

    .coach-card:hover,
    .oxl-coach-card:hover {
        transform: none;
    }

    .coach-card-media,
    .oxl-coach-card-cover {
        height: auto;
        aspect-ratio: 4 / 3;
        max-height: 360px;
    }

    .coach-card-media img,
    .oxl-coach-card-cover img {
        object-position: top center;
    }

    .coach-card-body,
    .oxl-coach-card-body {
        padding: 17px;
        gap: 13px;
    }

    .coach-card-head h2 {
        font-size: 19px;
        line-height: 1.18;
    }

    .location,
    .oxl-coach-card-location {
        align-items: flex-start;
        font-size: 12.5px;
        line-height: 1.4;
    }

    .distance-inline {
        margin-left: 0;
        margin-top: 5px;
    }

    .location {
        flex-wrap: wrap;
    }

    .coach-card-infos {
        gap: 10px;
        padding-top: 10px;
    }

    .info {
        grid-template-columns: 30px minmax(0, 1fr);
        gap: 10px;
    }

    .info i {
        width: 30px;
        height: 30px;
        border-radius: 11px;
        font-size: 12px;
    }

    .info-label {
        font-size: 10px;
    }

    .info-value {
        font-size: 13px;
        line-height: 1.42;
    }

    .cta,
    .oxl-coach-card-link {
        min-height: 48px;
        border-radius: 13px;
    }

    .empty {
        padding: 32px 18px;
        border-radius: 22px;
    }
}


@media (max-width: 560px) {
    .oxl-find-coach-hero {
        padding-bottom: 92px;
    }

    .oxl-find-coach-hero::after {
        bottom: -62px;
        height: 120px;
    }

    .oxl-find-coach-hero-copy {
        margin-bottom: 26px;
    }

    .oxl-find-coach-hero h1 {
        margin-top: 14px;
        font-size: clamp(31px, 10vw, 42px);
    }

    .oxl-find-coach-hero p {
        font-size: 15px;
    }

    .oxl-find-coach-search {
        gap: 12px;
    }

    .oxl-find-coach-search-main {
        min-height: 56px;
        padding: 0 14px;
        gap: 10px;
        border-radius: 17px;
    }

    .oxl-find-coach-search-main input {
        font-size: 15px;
    }

    .oxl-find-coach-search-tags {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 4px;
        scrollbar-width: none;
    }

    .oxl-find-coach-search-tags::-webkit-scrollbar {
        display: none;
    }

    .oxl-find-coach-search-tags a {
        flex: 0 0 auto;
        min-height: 32px;
        font-size: 12px;
    }

    .oxl-find-coach-search-actions > div:last-child {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .oxl-find-coach-search-actions .btn-primary,
    .oxl-location-btn {
        width: 100%;
        min-width: 0;
        min-height: 45px;
    }

    #searchDropdown {
        top: calc(100% + 7px);
        max-height: 230px;
        border-radius: 16px;
        padding: 6px;
    }

    .oxl-autocomplete-item {
        align-items: flex-start;
        padding: 10px;
        gap: 10px;
    }

    .oxl-autocomplete-title {
        font-size: 13.5px;
    }

    .oxl-autocomplete-sub {
        font-size: 11.5px;
    }

    .oxl-autocomplete-type {
        min-height: 22px;
        font-size: 9.5px;
    }

    .coach-card-media,
    .oxl-coach-card-cover {
        aspect-ratio: 1 / 1;
        max-height: none;
    }

    .coach-card-body {
        padding: 16px;
    }

    .coach-card-head h2 {
        font-size: 18px;
    }

    .price {
        font-size: 12.5px;
    }

    .price strong {
        font-size: 16px;
    }
}



@media (max-width: 420px) {
    .oxl-find-coach-page .container {
        width: min(calc(100% - 22px), var(--container));
    }

    .oxl-section-head h1,
    .oxl-section-head h2 {
        font-size: 29px;
    }

    .oxl-find-coach-hero h1 {
        font-size: 30px;
        letter-spacing: -0.045em;
    }

    .oxl-find-coach-hero p {
        font-size: 14.5px;
    }

    .coach-card,
    .oxl-coach-card {
        border-radius: 20px;
    }

    .coach-card-body,
    .oxl-coach-card-body {
        padding: 14px;
    }

    .coach-card-head h2 {
        font-size: 17px;
    }

    .location {
        font-size: 12px;
    }

    .info {
        grid-template-columns: 28px minmax(0, 1fr);
    }

    .info i {
        width: 28px;
        height: 28px;
    }

    .info-value {
        font-size: 12.5px;
    }

    .cta,
    .oxl-coach-card-link {
        min-height: 45px;
        font-size: 13.5px;
    }
}


@media (max-width: 1024px) {
    .oxl-find-coach-explore-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .oxl-blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .seo-groups {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .oxl-find-coach-explore {
        padding: 54px 0;
    }

    .oxl-find-coach-explore-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .oxl-find-coach-explore-grid a {
        min-height: 52px;
        padding: 12px;
        border-radius: 15px;
        font-size: 12.5px;
    }

    .oxl-blog {
        padding: 58px 0 66px;
    }

    .oxl-blog-title {
        font-size: clamp(30px, 9vw, 40px);
    }

    .oxl-blog-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .oxl-blog-card img {
        height: auto;
        aspect-ratio: 16 / 10;
    }

    .footer-top,
    .seo-groups {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        align-items: flex-start;
        text-align: left;
    }
}

@media (max-width: 420px) {
    .oxl-find-coach-explore-grid {
        grid-template-columns: 1fr;
    }
}

