/* Start custom CSS for html, class: .elementor-element-4b216ac *//* ============================================================
   LHAM TECH — SERVICE PAGES
   CSS GLOBAL
   Pages :
   01. Marketing Digital & SMMA
   02. Cryptomonnaies & Exchange
   03. Transfert d'argent
   Compatible :
   WordPress + Elementor
============================================================ */
/* =============== 01. VARIABLES GLOBALES ================== */
:root {
    --lham-navy: #071426;
    --lham-navy-2: #0b1d35;
    --lham-navy-3: #102947;
    --lham-blue: #1677ff;
    --lham-blue-dark: #075dcc;
    --lham-blue-light: #eaf3ff;
    --lham-gold: #d9a441;
    --lham-gold-light: #f2cf83;
    --lham-gold-dark: #a97718;
    --lham-orange: #ff8a1f;
    --lham-white: #ffffff;
    --lham-offwhite: #f7f9fc;
    --lham-light: #eef2f7;
    --lham-gray-100: #f5f7fa;
    --lham-gray-200: #e5e9ef;
    --lham-gray-300: #d2d8e0;
    --lham-gray-500: #697586;
    --lham-gray-700: #344054;
    --lham-gray-900: #101828;
    --lham-success: #16a34a;
    --lham-whatsapp: #25d366;
    --lham-radius-sm: 10px;
    --lham-radius-md: 16px;
    --lham-radius-lg: 24px;
    --lham-radius-xl: 32px;
    --lham-shadow-sm: 0 5px 20px rgba(7, 20, 38, 0.06);
    --lham-shadow-md: 0 15px 45px rgba(7, 20, 38, 0.10);
    --lham-shadow-lg: 0 25px 70px rgba(7, 20, 38, 0.16);
    --lham-transition: all 0.35s cubic-bezier(.2,.65,.3,1);
    --lham-container: 1240px;
    --lham-section-space: clamp(70px, 8vw, 120px);
}
/* ================== 02. RESET LOCAL AUX PAGES SERVICES ================= */
.lham-section,
.lham-page-hero,
.lham-cta {
    box-sizing: border-box;
}
.lham-section *,
.lham-page-hero *,
.lham-cta * {
    box-sizing: border-box;
}
.lham-section img,
.lham-page-hero img {
    max-width: 100%;
    height: auto;
}
.lham-section a,
.lham-page-hero a,
.lham-cta a {
    text-decoration: none;
}
.lham-section h1,
.lham-section h2,
.lham-section h3,
.lham-section h4,
.lham-page-hero h1,
.lham-page-hero h2,
.lham-page-hero h3,
.lham-cta h2 {
    margin-top: 0;
}
/* ================= 03. CONTAINER ======================= */
.lham-container {
    width: min(
        calc(100% - 40px), var(--lham-container)
    );
    margin-inline: auto;
}
/* =============== 04. SECTIONS ======================= */
.lham-section {
    position: relative;
    width: 100%;
    padding-block: var(--lham-section-space);
    overflow: hidden;
}
.lham-section-white {
    background: var(--lham-white);
    color: var(--lham-gray-900);
}
.lham-section-light {
    background: linear-gradient(
        180deg, #f8fafc 0%, #f1f5f9 100%
    );
    color: var(--lham-gray-900);
}
.lham-section-dark {
    background: linear-gradient(
        135deg, var(--lham-navy) 0%, var(--lham-navy-2) 55%, #102a49 100%
    );
    color: var(--lham-white);
}
/* ============== 05. SECTION HEADER ================= */
.lham-section-header {
    width: min(
        100%, 850px
    );
    margin-inline: auto;
    margin-bottom: clamp(40px, 5vw, 70px);
    text-align: center;
}
.lham-section-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 15px;
    margin-bottom: 18px;
    border: 1px solid rgba(217,164,65,.30);
    border-radius: 999px;
    background: rgba(217,164,65,.08);
    color: var(--lham-gold-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.lham-section-dark .lham-section-badge {
    color: var(--lham-gold-light);
    border-color: rgba(242,207,131,.25);
    background: rgba(242,207,131,.08);
}
.lham-section-title {
    margin-bottom: 18px;
    color: var(--lham-navy);
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.025em;
}
.lham-section-dark .lham-section-title {
    color: var(--lham-white);
}
.lham-section-description {
    max-width: 760px;
    margin: 0 auto;
    color: var(--lham-gray-500);
    font-size: clamp(16px, 1.5vw, 18px);
    line-height: 1.75;
}
.lham-section-dark .lham-section-description {
    color: rgba(255,255,255,.72);
}
/* =============== 06. HERO ==================== */
.lham-page-hero {
    position: relative;
    min-height: min(760px, 85vh);
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--lham-navy);
}
.lham-page-hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.lham-page-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.lham-page-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        90deg, rgba(3,12,26,.96) 0%, rgba(5,18,37,.88) 38%, 
        rgba(5,18,37,.55) 67%, rgba(5,18,37,.35) 100%
    );
}
.lham-page-hero-inner {
    position: relative;
    z-index: 2;
    width: min(calc(100% - 40px), var(--lham-container));
    margin-inline: auto;
}
.lham-page-hero-content {
    max-width: 850px;
    padding-block: 100px;
}
.lham-eyebrow-light {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
    color: var(--lham-gold-light);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}
.lham-page-hero h1 {
    margin: 0 0 25px;
    color: var(--lham-white);
    font-size: clamp(42px, 6vw, 76px);
    line-height: .98;
    font-weight: 850;
    letter-spacing: -.045em;
}
.lham-page-hero-description {
    max-width: 760px;
    margin: 0 0 35px;
    color: rgba(255,255,255,.82);
    font-size: clamp(17px, 1.8vw, 21px);
    line-height: 1.7;
}
.lham-page-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}
/* ============== 07. BOUTONS ======================= */
.lham-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 14px 23px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    transition: var(--lham-transition);
}
.lham-btn:hover {
    transform: translateY(-3px);
}
.lham-btn-whatsapp {
    background: var(--lham-whatsapp);
    color: #fff;
    box-shadow: 0 10px 30px rgba(37,211,102,.25);
}
.lham-btn-whatsapp:hover {
    background: #1fbd59;
    color: #fff;
}
.lham-btn-gold {
    background: linear-gradient(
        135deg, var(--lham-gold-light), var(--lham-gold)
    );
    color: var(--lham-navy);
    box-shadow: 0 12px 30px rgba(217,164,65,.20);
}
.lham-btn-gold:hover {
    color: var(--lham-navy);
}
.lham-btn-outline-navy {
    border-color: var(--lham-navy);
    background: transparent;
    color: var(--lham-navy);
}
.lham-btn-outline-navy:hover {
    background: var(--lham-navy);
    color: var(--lham-white);
}
.lham-section-dark .lham-btn-outline-navy {
    border-color: rgba(255,255,255,.55);
    color: var(--lham-white);
}
.lham-section-dark .lham-btn-outline-navy:hover {
    background: var(--lham-white);
    color: var(--lham-navy);
}
/* =============== 08. LAYOUT SERVICE — IMAGE + SIDEBAR ================= */
.lham-service-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(280px, .75fr);
    gap: clamp(30px, 5vw, 70px);
    align-items: center;
}
.lham-service-main {
    min-width: 0;
}
.lham-service-image {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: var(--lham-radius-xl);
    box-shadow: var(--lham-shadow-lg);
}
.lham-service-side {
    position: relative;
}
.lham-side-card {
    padding: 30px;
    border: 1px solid var(--lham-gray-200);
    border-radius: var(--lham-radius-lg);
    background: rgba(255,255,255,.92);
    box-shadow: var(--lham-shadow-md);
}
.lham-side-card h3 {
    margin-bottom: 22px;
    color: var(--lham-navy);
    font-size: 22px;
    font-weight: 800;
}
.lham-side-card ul {
    display: grid;
    gap: 14px;
    padding: 0;
    margin: 0;
    list-style: none;
}
.lham-side-card li {
    position: relative;
    padding-left: 25px;
    color: var(--lham-gray-700);
    font-size: 15px;
    line-height: 1.5;
}
.lham-side-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--lham-gold-dark);
    font-weight: 900;
}
/* =============== 09. INTRODUCTION ================== */
.lham-service-introduction {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, .85fr);
    gap: clamp(35px, 6vw, 90px);
    margin-top: clamp(60px, 8vw, 100px);
    align-items: center;
}
.lham-service-text h3 {
    margin-bottom: 20px;
    color: var(--lham-navy);
    font-size: clamp(25px, 3vw, 36px);
    line-height: 1.15;
    font-weight: 800;
}
.lham-service-text p {
    margin-bottom: 25px;
    color: var(--lham-gray-500);
    font-size: 17px;
    line-height: 1.8;
}
.lham-check-list {
    display: grid;
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
}
.lham-check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--lham-gray-700);
    font-weight: 600;
}
.lham-check-list i {
    color: var(--lham-success);
}
/* ============== 10. SERVICE CARDS =========================== */
.lham-services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 24px;
}
.lham-card {
    position: relative;
    padding: 32px;
    border: 1px solid var(--lham-gray-200);
    border-radius: var(--lham-radius-lg);
    background: var(--lham-white);
    box-shadow: var(--lham-shadow-sm);
    transition: var(--lham-transition);
}
.lham-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    border-radius: var(--lham-radius-lg) var(--lham-radius-lg) 0 0;
    background: linear-gradient(
        90deg, var(--lham-blue), var(--lham-gold)
    );
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--lham-transition);
}
.lham-card:hover {
    transform: translateY(-8px);
    border-color: rgba(22,119,255,.18);
    box-shadow: var(--lham-shadow-md);
}
.lham-card:hover::before {
    transform: scaleX(1);
}
.lham-card > i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 22px;
    border-radius: 15px;
    background: var(--lham-blue-light);
    color: var(--lham-blue);
    font-size: 21px;
}
.lham-card h3 {
    margin-bottom: 12px;
    color: var(--lham-navy);
    font-size: 21px;
    line-height: 1.25;
    font-weight: 800;
}
.lham-card p {
    margin: 0;
    color: var(--lham-gray-500);
    font-size: 15px;
    line-height: 1.75;
}
/* ============== 11. TAGS / CRYPTO / PLATEFORMES ================= */
.lham-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}
.lham-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 10px 17px;
    border: 1px solid var(--lham-gray-200);
    border-radius: 999px;
    background: var(--lham-white);
    color: var(--lham-gray-700);
    font-size: 14px;
    font-weight: 700;
    box-shadow: var(--lham-shadow-sm);
    transition: var(--lham-transition);
}
.lham-tags span:hover {
    transform: translateY(-3px);
    border-color: var(--lham-gold);
    color: var(--lham-navy);
    box-shadow: var(--lham-shadow-md);
}
/* ============ 12. GRID FEATURES ===================== */
.lham-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 24px;
}
.lham-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 24px;
}
.lham-feature-card {
    padding: 34px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: var(--lham-radius-lg);
    background: rgba(255,255,255,.055);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    transition: var(--lham-transition);
}
.lham-section-white .lham-feature-card,
.lham-section-light .lham-feature-card {
    border-color: var(--lham-gray-200);
    background: var(--lham-white);
    color: var(--lham-gray-900);
}
.lham-feature-card:hover {
    transform: translateY(-7px);
    border-color: rgba(217,164,65,.4);
    box-shadow: var(--lham-shadow-md);
}
.lham-feature-card > i {
    display: inline-flex;
    margin-bottom: 20px;
    color: var(--lham-gold);
    font-size: 28px;
}
.lham-feature-card h3 {
    margin-bottom: 12px;
    color: var(--lham-white);
    font-size: 21px;
    font-weight: 800;
}
.lham-section-white .lham-feature-card h3,
.lham-section-light .lham-feature-card h3 {
    color: var(--lham-navy);
}
.lham-feature-card p {
    margin-bottom: 20px;
    color: rgba(255,255,255,.70);
    font-size: 15px;
    line-height: 1.75;
}
.lham-section-white .lham-feature-card p,
.lham-section-light .lham-feature-card p {
    color: var(--lham-gray-500);
}
/* ============ 13. BENEFITS ================== */
.lham-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 20px;
}
.lham-benefit {
    padding: 28px 22px;
    text-align: center;
    border: 1px solid var(--lham-gray-200);
    border-radius: var(--lham-radius-lg);
    background: var(--lham-white);
    transition: var(--lham-transition);
}
.lham-benefit:hover {
    transform: translateY(-6px);
    box-shadow: var(--lham-shadow-md);
}
.lham-benefit i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: rgba(217,164,65,.10);
    color: var(--lham-gold-dark);
    font-size: 22px;
}
.lham-benefit h3 {
    margin-bottom: 8px;
    color: var(--lham-navy);
    font-size: 19px;
    font-weight: 800;
}
.lham-benefit p {
    margin: 0;
    color: var(--lham-gray-500);
    font-size: 14px;
    line-height: 1.65;
}
/* ============ 14. PROCESS =================== */
.lham-process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 22px;
}
.lham-process-card {
    position: relative;
    padding: 34px 26px;
    border: 1px solid var(--lham-gray-200);
    border-radius: var(--lham-radius-lg);
    background: var(--lham-white);
    box-shadow: var(--lham-shadow-sm);
    transition: var(--lham-transition);
}
.lham-process-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--lham-shadow-md);
}
.lham-process-number {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--lham-navy);
    color: var(--lham-white);
    font-size: 12px;
    font-weight: 900;
}
.lham-process-card > i {
    display: inline-flex;
    margin-bottom: 22px;
    color: var(--lham-blue);
    font-size: 28px;
}
.lham-process-card h3 {
    margin-bottom: 12px;
    color: var(--lham-navy);
    font-size: 19px;
    font-weight: 800;
}
.lham-process-card p {
    margin: 0;
    color: var(--lham-gray-500);
    font-size: 14px;
    line-height: 1.7;
}
/* ============= 15. FAQ ================= */
.lham-faq-list {
    width: min(100%, 900px);
    margin-inline: auto;
}
.lham-faq-item {
    margin-bottom: 12px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: var(--lham-radius-md);
    background: rgba(255,255,255,.045);
    overflow: hidden;
}
.lham-faq-item summary {
    position: relative;
    padding: 22px 60px 22px 24px;
    color: var(--lham-white);
    font-size: 16px;
    font-weight: 750;
    cursor: pointer;
    list-style: none;
}
.lham-faq-item summary::-webkit-details-marker {
    display: none;
}
.lham-faq-item summary::after {
    content: "+";
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--lham-gold-light);
    font-size: 25px;
    font-weight: 400;
}
.lham-faq-item[open] summary::after {
    content: "−";
}
.lham-faq-content {
    padding: 0 24px 23px;
}
.lham-faq-content p {
    margin: 0;
    color: rgba(255,255,255,.68);
    font-size: 15px;
    line-height: 1.75;
}
/* =========== 16. CTA FINAL ==================== */
.lham-cta {
    position: relative;
    padding: clamp(75px, 9vw, 125px) 20px;
    text-align: center;
    overflow: hidden;
}
.lham-cta::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    top: -300px;
    left: -200px;
    border-radius: 50%;
    background: rgba(22,119,255,.08);
    filter: blur(10px);
}
.lham-cta::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    right: -180px;
    bottom: -250px;
    border-radius: 50%;
    background: rgba(217,164,65,.10);
    filter: blur(10px);
}
.lham-cta-inner {
    position: relative;
    z-index: 1;
    width: min(100%, 850px);
    margin-inline: auto;
}
.lham-cta h2 {
    margin: 0 0 20px;
    color: var(--lham-navy);
    font-size: clamp(32px, 4.5vw, 55px);
    line-height: 1.05;
    font-weight: 850;
    letter-spacing: -.035em;
}
.lham-cta p {
    margin: 0 auto 30px;
    color: var(--lham-gray-500);
    font-size: 17px;
    line-height: 1.75;
}
.lham-cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}
/* ============= 17. MARKETING DIGITAL & SMMA MODIFICATEURS =============== */
.lham-marketing-hero {
    background: linear-gradient(135deg, #08152a, #101f3d);
}
.lham-marketing-hero .lham-page-hero-overlay {
    background: linear-gradient(
        90deg, rgba(4,13,28,.96), rgba(7,24,51,.82), rgba(15,48,84,.48)
    );
}
/* Accent marketing : bleu électrique + violet subtil */
.lham-marketing-page .lham-card::before {
    background: linear-gradient(90deg, #1677ff, #7c3aed);
}
.lham-marketing-page .lham-card > i {
    background: #edf2ff;
    color: #315bea;
}
.lham-marketing-page .lham-feature-card > i {
    color: #6da8ff;
}
/* =========== 18. CRYPTOMONNAIES & EXCHANGE MODIFICATEURS ============ */
.lham-crypto-hero {
    background:
        radial-gradient(
            circle at 80% 30%, rgba(217,164,65,.18), transparent 35%
        ),
        linear-gradient(
            135deg, #050b16, #0b1a31
        );
}
.lham-crypto-page .lham-card > i {
    background: rgba(217,164,65,.11);
    color: var(--lham-gold-dark);
}
.lham-crypto-page .lham-card::before {
    background: linear-gradient(90deg, var(--lham-gold), var(--lham-orange));
}
.lham-crypto-page .lham-tags span:hover {
    border-color: var(--lham-gold);
}
.lham-crypto-page .lham-benefit i {
    background: rgba(217,164,65,.10);
    color: var(--lham-gold-dark);
}
/* =============== 19. TRANSFERT D'ARGENT MODIFICATEURS ================== */
.lham-money-hero {
    background: linear-gradient(135deg, #06182b, #0b2844);
}
.lham-money-page .lham-card::before {
    background: linear-gradient(90deg, #1677ff, #16a3a3);
}
.lham-money-page .lham-card > i {
    background: #eaf5ff;
    color: #0868d7;
}
.lham-money-page .lham-feature-card > i {
    color: #54b7ff;
}
.lham-money-page .lham-process-card > i {
    color: #1677ff;
}
/* ================ 20. ICONES ========================= */
.lham-section i,
.lham-page-hero i,
.lham-cta i {
    font-style: normal;
}
/* ================= 21. ACCESSIBILITÉ ===================== */
.lham-btn:focus-visible,
.lham-faq-item summary:focus-visible,
.lham-card:focus-within {
    outline: 3px solid rgba(22,119,255,.35);
    outline-offset: 4px;
}
/* ==================== 22. TABLETTE ============================ */
@media (max-width: 1024px) {
    .lham-page-hero {
        min-height: 680px;
    }
    .lham-page-hero-content {
        max-width: 760px;
    }
    .lham-page-hero h1 {
        font-size: clamp(40px, 6vw, 62px);
    }
    .lham-service-layout {
        grid-template-columns: 1fr;
    }
    .lham-service-side {
        max-width: 650px;
        margin-inline: auto;
        width: 100%;
    }
    .lham-service-introduction {
        grid-template-columns: 1fr;
    }
    .lham-services-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }
    .lham-grid-3 {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }
    .lham-benefits-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }
    .lham-process-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }
}
/* ==================== 23. MOBILE ==================== */
@media (max-width: 767px) {
    :root {
        --lham-section-space: 65px;
    }
    .lham-container {
        width: min(calc(100% - 30px), var(--lham-container));
    }
    .lham-page-hero {
        min-height: 650px;
        align-items: flex-end;
    }
    .lham-page-hero-overlay {
        background: linear-gradient(
            180deg, rgba(3,12,26,.45) 0%, 
            rgba(3,12,26,.92) 55%, rgba(3,12,26,.98) 100%
        );
    }
    .lham-page-hero-content {
        padding-block: 70px 60px;
    }
    .lham-page-hero h1 {
        font-size: clamp(38px, 11vw, 52px);
        line-height: 1.02;
    }
    .lham-page-hero-description {
        font-size: 16px;
        line-height: 1.65;
    }
    .lham-page-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .lham-btn {
        width: 100%;
    }
    .lham-section-title {
        font-size: clamp(28px, 9vw, 38px);
    }
    .lham-section-description {
        font-size: 15px;
        line-height: 1.7;
    }
    .lham-service-layout {
        gap: 25px;
    }
    .lham-service-image {
        aspect-ratio: 4 / 3;
        border-radius: 22px;
    }
    .lham-side-card {
        padding: 24px;
    }
    .lham-service-introduction {
        margin-top: 60px;
    }
    .lham-service-text h3 {
        font-size: 28px;
    }
    .lham-services-grid,
    .lham-grid-2,
    .lham-grid-3,
    .lham-benefits-grid,
    .lham-process-grid {
        grid-template-columns: 1fr;
    }
    .lham-card,
    .lham-feature-card,
    .lham-benefit,
    .lham-process-card {
        padding: 26px 22px;
    }
    .lham-tags {
        justify-content: flex-start;
    }
    .lham-tags span {
        font-size: 13px;
        min-height: 40px;
    }
    .lham-faq-item summary {
        padding: 19px 52px 19px 18px;
        font-size: 15px;
    }
    .lham-faq-item summary::after {
        right: 18px;
    }
    .lham-faq-content {
        padding: 0 18px 20px;
    }
    .lham-cta {
        padding-block: 75px;
    }
    .lham-cta h2 {
        font-size: clamp(30px, 9vw, 40px);
    }
}
/* ==================== 24. PETITS MOBILES ==================== */
@media (max-width: 480px) {
    .lham-container {
        width: calc(100% - 24px);
    }
    .lham-page-hero-content {
        padding-bottom: 45px;
    }
    .lham-page-hero h1 {
        font-size: 36px;
    }
    .lham-eyebrow-light {
        font-size: 10px;
        letter-spacing: .11em;
    }
    .lham-section {
        padding-block: 55px;
    }
    .lham-section-header {
        margin-bottom: 35px;
    }
    .lham-card,
    .lham-feature-card {
        padding: 23px 20px;
    }
    .lham-side-card {
        padding: 21px;
    }
}
/* ================= 25. RÉDUCTION DES ANIMATIONS ================== */
@media (prefers-reduced-motion: reduce) {
    .lham-section *,
    .lham-page-hero *,
    .lham-cta * {
        scroll-behavior: auto !important;
        transition: none !important;
        animation: none !important;
    }
}/* End custom CSS */