/* ============================================================
   Tontine And Me — Responsive Fixes CSS
   Ajouté à toutes les pages pour garantir un responsive
   parfait sur mobile, tablette et desktop.
   Utilise !important pour surcharger Tailwind quand nécessaire.
   ============================================================ */

/* ─── RESET & GÉNÉRAL ─── */
*, *::before, *::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/* ─── HTML ─── */
html {
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}

/* ─── BODY ─── */
body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* ─── IMAGES ─── */
img {
    max-width: 100% !important;
    height: auto !important;
}
img.w-10, img.w-12, img.w-8, img.w-9,
img[class*="w-"] {
    height: auto !important;
}
/* Fix images in avatar groups */
.flex.-space-x-2 img,
.flex.-space-x-3 img {
    max-width: none !important;
}

/* ─── TABLES : scrollables sur mobile ─── */
.overflow-x-auto,
table {
    -webkit-overflow-scrolling: touch;
    overflow-x: auto;
}
table {
    display: block;
    width: 100%;
    max-width: 100%;
}
table table {
    display: table;
}

/* ─── CONTAINER MAX WIDTH ─── */
.max-w-container-max {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
    width: 100%;
}
@media (min-width: 768px) {
    .max-w-container-max {
        padding-left: 32px;
        padding-right: 32px;
    }
}
@media (min-width: 1024px) {
    .max-w-container-max {
        padding-left: 48px;
        padding-right: 48px;
    }
}

/* ─── PADDINGS RESPONSIVES ─── */
/* Les sections utilisent px-margin-mobile (16px) sur mobile, md:px-lg (48px) sur desktop */
.px-margin-mobile {
    padding-left: 16px !important;
    padding-right: 16px !important;
}
@media (min-width: 768px) {
    .md\:px-lg {
        padding-left: 48px !important;
        padding-right: 48px !important;
    }
}

/* ─── FONT SIZES RESPONSIVES ─── */
/* Headline XL (48px) → reduit sur mobile */
@media (max-width: 639px) {
    .font-headline-xl,
    .text-headline-xl,
    .text-\[40px\],
    h1.text-headline-xl {
        font-size: clamp(28px, 8vw, 40px) !important;
        line-height: 1.15 !important;
    }
    .text-headline-lg,
    .font-headline-lg {
        font-size: clamp(24px, 6vw, 32px) !important;
        line-height: 1.25 !important;
    }
    .text-headline-md,
    .font-headline-md,
    h2.text-headline-md,
    h3.text-headline-md,
    h4.text-headline-md {
        font-size: clamp(17px, 4.5vw, 20px) !important;
    }
}

/* ─── HEADER / NAV RESPONSIVE ─── */
/* Header fixe */
header.docked,
header.sticky {
    height: 64px !important;
}
@media (max-width: 639px) {
    header.docked,
    header.sticky {
        height: 56px !important;
    }
    header .h-20 {
        height: 56px !important;
    }
    /* Cache les labels de langue sur très petit écran */
    #lang-toggle-fr,
    #lang-toggle-more {
        display: none !important;
    }
    #lang-toggle-btn {
        font-size: 20px !important;
    }
}

/* ─── MOBILE MENU (hamburger "Menu" → full-screen dropdown) ─── */
/* Note: #mobileMenu is now .menu-glass-panel — handled below in ─── MENU GLASSMORPHISM */

/* ─── SUPER ADMIN / USER PAGES : SIDEBAR RESPONSIVE ─── */
/* Pages avec sidebar fixe (lg:w-64, w-72) : les cacher sur mobile, menu hamburger */
@media (max-width: 767px) {
    aside.fixed.left-0,
    aside.fixed.w-64,
    aside.fixed.w-72 {
        display: none !important;
    }
    main.lg\:ml-64,
    main.ml-64,
    main.ml-72 {
        margin-left: 0 !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
    header.fixed.md\:left-64,
    header.fixed.left-64 {
        left: 0 !important;
    }
}
@media (max-width: 1023px) {
    aside.hidden.lg\:flex {
        display: none !important;
    }
}

/* ─── GRILLES (grid) : passage mono-colonne sur mobile ─── */
@media (max-width: 639px) {
    .grid-cols-2,
    .grid-cols-3,
    .grid-cols-4,
    .grid-cols-5,
    .grid-cols-6 {
        grid-template-columns: 1fr !important;
    }
    /* Exception : les icônes de partners en horizontal scroll */
    .grid.grid-cols-3.text-center.gap-md {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}
@media (min-width: 640px) and (max-width: 767px) {
    .sm\:grid-cols-2 {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .grid-cols-3,
    .grid-cols-4 {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
@media (min-width: 768px) and (max-width: 1023px) {
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, 1fr) !important;
    }
    .md\:grid-cols-4 {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}

/* ─── FLEXBOX : col sur mobile ─── */
@media (max-width: 639px) {
    .flex.items-center.gap-lg,
    .flex.items-center.gap-md,
    .flex.items-center.gap-sm,
    .flex.items-center.gap-xl {
        flex-wrap: wrap;
    }
    .flex.justify-between.items-center.gap-md {
        flex-wrap: wrap;
    }
    /* Infos header - ne pas wrap le header lui-même */
    header .flex.justify-between.items-center {
        flex-wrap: nowrap !important;
    }
    /* Pricing cards */
    .lg\:grid-cols-3.gap-xl.items-stretch > div {
        max-width: 100%;
    }
}

/* ─── BOUTONS : min 44px hauteur touch ─── */
button,
.btn,
a[class*="btn"],
a[class*="button"] {
    min-height: 44px;
}
button.text-sm,
button.px-3.py-1 {
    min-height: 44px;
}
/* Exception pour les petits boutons icônes */
button.p-2,
button.w-9.h-9,
button.w-8.h-8,
button.w-10.h-10 {
    min-height: auto;
}

/* ─── FORMULAIRES ─── */
@media (max-width: 639px) {
    input,
    select,
    textarea {
        font-size: 16px !important; /* Évite le zoom sur iOS */
    }
    /* Form card : full width sur mobile */
    form.space-y-md,
    .bg-white.rounded-xl.shadow-\[0_4px_20px_rgba\(0\,0\,0\,0\.08\)\] {
        width: 100%;
    }
}

/* ─── CHAT WIDGET ─── */
#premiumChat {
    right: 16px !important;
    width: 380px !important;
}
@media (max-width: 440px) {
    #premiumChat {
        width: calc(100vw - 32px) !important;
        max-width: 100vw !important;
        right: 16px !important;
        bottom: 80px !important;
        height: 70vh !important;
        border-radius: 1.5rem !important;
    }
    #chatToggle + #premiumChat {
        display: none !important;
    }
    #chatToggle:checked + #premiumChat {
        display: flex !important;
    }
    #premiumChat .bg-primary.p-6 {
        padding: 12px 16px !important;
    }
    #premiumChat textarea,
    #premiumChat input[type="text"] {
        font-size: 16px !important;
    }
    label[for="chatToggle"].w-16.h-16 {
        width: 56px !important;
        height: 56px !important;
        right: 16px !important;
        bottom: 16px !important;
    }
}

/* ─── CARTES (cards) : padding responsive ─── */
@media (max-width: 639px) {
    .p-lg,
    .p-xl {
        padding: 16px !important;
    }
    .p-md {
        padding: 12px !important;
    }
    .gap-xl {
        gap: 24px !important;
    }
    .space-y-md {
        margin-top: 16px !important;
    }
    /* Hero card glass */
    .glass-card.p-md {
        padding: 12px !important;
    }
}

/* ─── SUPER ADMIN : TABLEAUX ─── */
@media (max-width: 767px) {
    /* Tables → cartes sur mobile */
    table.w-full.text-left thead {
        display: none;
    }
    table.w-full.text-left tbody tr {
        display: block;
        padding: 12px;
        margin-bottom: 8px;
        background: white;
        border-radius: 12px;
        border: 1px solid #e2e8f0;
    }
    table.w-full.text-left tbody td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 8px 0 !important;
        border: none;
        text-align: right;
    }
    table.w-full.text-left tbody td:before {
        content: attr(data-label);
        font-weight: 600;
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: #64748b;
        text-align: left;
    }
    table.w-full.text-left tbody td:first-child {
        padding-top: 0 !important;
    }
    table.w-full.text-left tbody td:last-child {
        padding-bottom: 0 !important;
        border-bottom: none;
    }
    table.w-full.text-left tbody td .flex.items-center.gap-3,
    table.w-full.text-left tbody td .flex.items-center.gap-sm {
        width: 100%;
        justify-content: flex-end;
    }
    table.w-full.text-left tbody td .flex.items-center.gap-xs {
        justify-content: flex-end;
    }
    table.w-full.text-left tbody td.text-right {
        text-align: right !important;
    }
    table.w-full.text-left tbody tr:hover {
        background: white;
    }
    table.w-full.text-left tbody td .flex.items-center.justify-end {
        justify-content: flex-end !important;
    }
    /* Hide action buttons group-hover on mobile - always visible */
    table.w-full.text-left tbody td .opacity-0 {
        opacity: 1 !important;
        transform: translateX(0) !important;
    }
}

/* ─── SUPER ADMIN : SIDEBAR ─── */
@media (max-width: 767px) {
    aside.fixed.left-0.top-0.h-full {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 60;
    }
    aside.fixed.left-0.top-0.h-full.open {
        transform: translateX(0);
    }
}

/* ─── DASHBOARD PAGES : stats cards ─── */
@media (max-width: 639px) {
    .lg\:col-span-1,
    .lg\:col-span-2,
    .lg\:col-span-3,
    .lg\:col-span-4,
    .lg\:col-span-8,
    .xl\:col-span-4,
    .xl\:col-span-8 {
        grid-column: span 1 !important;
    }
    .grid-cols-1.md\:grid-cols-4.gap-md > div,
    .grid.grid-cols-1.md\:grid-cols-2.xl\:grid-cols-4.gap-6 > div {
        padding: 16px !important;
    }
}

/* ─── HERO SECTIONS : padding responsive ─── */
@media (max-width: 639px) {
    section.pt-xl.pb-xl {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }
    .py-xl {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }
    .py-lg {
        padding-top: 32px !important;
        padding-bottom: 32px !important;
    }
}

/* ─── BLOG POST GRID ─── */
@media (max-width: 639px) {
    .grid-cols-1.sm\:grid-cols-2.lg\:grid-cols-3 {
        grid-template-columns: 1fr !important;
    }
}

/* ─── PRICING CARDS ─── */
@media (max-width: 639px) {
    .grid-cols-1.md\:grid-cols-3.gap-xl.items-stretch > div {
        margin-bottom: 16px;
    }
}

/* ─── FLEX-WRAP UTILITIES ─── */
@media (max-width: 639px) {
    .flex-wrap {
        flex-wrap: wrap !important;
    }
    .flex.flex-wrap.gap-md {
        gap: 12px !important;
    }
    /* Hero buttons stack */
    .flex.flex-wrap.gap-md.pt-sm {
        flex-direction: column;
        align-items: stretch;
    }
    .flex.flex-wrap.gap-md.pt-sm button,
    .flex.flex-wrap.gap-md.pt-sm a {
        width: 100%;
        justify-content: center;
    }
}

/* ─── STATS GRID : 2 colonnes sur très petit → 2 col fixe ─── */
@media (max-width: 400px) {
    .grid-cols-2.lg\:grid-cols-4.gap-xl {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
    }
}

/* ─── SECTION STATS VERTE (index) : 3 col OK ─── */
.grid.grid-cols-3.gap-md.text-center.text-white > div {
    padding: 8px;
}

/* ─── TABLETTE : Ajustements ─── */
@media (min-width: 640px) and (max-width: 1023px) {
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, 1fr) !important;
    }
    .max-w-container-max {
        padding-left: 32px !important;
        padding-right: 32px !important;
    }
}

/* ─── MODALS ─── */
@media (max-width: 639px) {
    .fixed.inset-0.z-50 > div {
        padding: 16px !important;
    }
    .fixed.inset-0.z-50 > div > div {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        border-radius: 16px !important;
    }
}

/* ─── CONNEXION/INSCRIPTION CARDS ─── */
@media (max-width: 639px) {
    .max-w-\[440px\] {
        max-width: 100% !important;
        padding-left: 16px;
        padding-right: 16px;
    }
}

/* ─── SUPER ADMIN EMPTY STATES ─── */
@media (max-width: 639px) {
    .min-h-\[500px\] {
        min-height: auto !important;
        padding: 24px 16px !important;
    }
}

/* ─── EMPÊCHE LE DÉBORDEMENT HORIZONTAL (overflow-x) ─── */
/* Sur les sections avec flex space-x / animation scroll */
.flex.space-x-12.animate-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
@media (max-width: 639px) {
    .flex.space-x-12.animate-scroll {
        gap: 24px;
    }
    .flex.space-x-12.animate-scroll > div {
        gap: 24px;
    }
}

/* ─── CACHER LE MENU DROPDOWN DES PAGES SUPER ADMIN SUR MOBILE ─── */
@media (max-width: 767px) {
    #menuDropdown {
        position: fixed !important;
        top: 56px !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        border-radius: 0 !important;
        max-height: calc(100vh - 56px);
        overflow-y: auto;
    }
}

/* ─── FENÊTRE DE RECHERCHE (search) ─── */
@media (max-width: 767px) {
    .relative.w-full.max-w-md.hidden.lg\:block {
        display: none !important;
    }
}

/* ─── GRILLE BENTO (statistiques super admin) ─── */
@media (max-width: 639px) {
    .grid.grid-cols-1.md\:grid-cols-2.xl\:grid-cols-4.gap-6 {
        gap: 16px !important;
    }
}

/* ─── CERCLE MEMBRE (pages super admin) ─── */
@media (max-width: 767px) {
    .xl\:col-span-4,
    .xl\:col-span-8 {
        grid-column: 1 / -1 !important;
    }
    .grid.grid-cols-1.xl\:grid-cols-12.gap-8 {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
}

/* ─── SECTION "FILTRER / EXPORTER" ─── */
@media (max-width: 639px) {
    .px-md.py-md.flex.items-center.justify-between {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }
    .px-md.py-md.flex.items-center.justify-between .flex.gap-sm {
        justify-content: flex-end;
    }
    .px-6.py-4.border-b.flex.items-center.justify-between {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
}

/* ─── SECTION "VUE D'ENSEMBLE" super admin ─── */
@media (max-width: 639px) {
    .flex.items-center.justify-between.mb-6 {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

/* ─── EMPTY STATE DASHBOARD ─── */
@media (max-width: 639px) {
    .flex.flex-col.sm\:flex-row.items-center.gap-md {
        flex-direction: column;
        width: 100%;
    }
    .flex.flex-col.sm\:flex-row.items-center.gap-md button {
        width: 100%;
        justify-content: center;
    }
}

/* ─── UTILISATEUR PREMIUM : SIDENAV ─── */
@media (max-width: 767px) {
    aside.fixed.left-0.top-0.h-full.flex.flex-col {
        width: 100% !important;
        max-width: 280px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    aside.open {
        transform: translateX(0) !important;
    }
    header.ml-64 {
        margin-left: 0 !important;
    }
    main.ml-64 {
        margin-left: 0 !important;
        padding: 16px !important;
    }
}

/* ─── PAGE GÉNÉRATEUR DE LOGO etc ─── */
@media (max-width: 639px) {
    .lg\:grid-cols-2.gap-xl.items-center {
        grid-template-columns: 1fr !important;
    }
    .lg\:grid-cols-2.gap-xl {
        grid-template-columns: 1fr !important;
    }
}

/* ─── FOOTER RESPONSIVE ─── */
@media (max-width: 639px) {
    footer .grid.grid-cols-2.md\:grid-cols-4.lg\:grid-cols-6 {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 24px !important;
    }
    footer .flex.flex-col.md\:flex-row {
        flex-direction: column !important;
        text-align: center;
    }
    footer .flex.justify-between.items-center {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ─── BLOG FILTERS ─── */
@media (max-width: 639px) {
    .flex.flex-wrap.gap-sm.items-center {
        gap: 8px;
    }
    .flex.flex-wrap.gap-sm.items-center button,
    .flex.flex-wrap.gap-sm.items-center a {
        font-size: 12px !important;
        padding: 6px 12px !important;
    }
}

/* ─── CHAT WIDGET RESPONSIVE (général) ─── */
@media (max-width: 440px) {
    div[id*="Chat"],
    div[id*="chat"],
    div[class*="chat"] {
        max-width: 100vw !important;
    }
}

/* ─── SECTIONS HERO : plein écran mobile ─── */
@media (max-width: 639px) {
    section.relative.pt-xl.pb-xl.overflow-hidden {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    section.relative.pt-xl.pb-xl.overflow-hidden > div {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
}

/* ─── TITRES DE SECTION ─── */
@media (max-width: 639px) {
    .text-center.mb-xl h2 {
        font-size: clamp(22px, 6vw, 28px) !important;
    }
    /* Heading H1 hero */
    h1.font-headline-xl {
        font-size: clamp(26px, 7vw, 36px) !important;
    }
    /* Hero description */
    .text-body-lg.text-on-surface-variant.max-w-lg {
        font-size: 15px !important;
    }
}

/* ─── TABLETTE FINE (640-768) ─── */
@media (min-width: 640px) and (max-width: 768px) {
    .grid-cols-3.gap-md {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

/* ─── FORCER LE MAIN À PRENDRE TOUTE LA LARGEUR SUR MOBILE ─── */
@media (max-width: 639px) {
    main {
        overflow-x: hidden;
    }
}

/* ─── SUPER ADMIN PAGES : CACHER LE HEADER RECHERCHE SUR MOBILE ─── */
@media (max-width: 767px) {
    header.fixed .hidden.lg\:block {
        display: none !important;
    }
}

/* ─── FEATURES GRID (index.html) : 2 col sur tablette ─── */
@media (min-width: 640px) and (max-width: 1023px) {
    .sm\:grid-cols-2.lg\:grid-cols-4 {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* ─── SOLUTIONS PAGE : QUICK NAV ─── */
@media (max-width: 639px) {
    .flex.flex-wrap.justify-center.gap-md.pb-lg {
        gap: 8px !important;
    }
    .flex.flex-wrap.justify-center.gap-md.pb-lg a,
    .flex.flex-wrap.justify-center.gap-md.pb-lg button {
        font-size: 12px !important;
        padding: 8px 14px !important;
    }
}

/* ─── TÉMOIGNAGE (testimonial cards) ─── */
@media (max-width: 639px) {
    .p-lg.bg-white.rounded-xl.shadow-sm {
        padding: 16px !important;
    }
}

/* ─── CACHER LES BACKGROUND DECOR SUR MOBILE ─── */
@media (max-width: 639px) {
    div.absolute.-top-10,
    div.absolute.-bottom-20,
    div.absolute.-left-20,
    div.absolute.-right-10,
    div.absolute.top-0.right-0.p-lg.opacity-10 {
        display: none !important;
    }
}

/* ─── GUIDE PAGES ─── */
@media (max-width: 639px) {
    .lg\:grid-cols-\[300px_1fr\] {
        grid-template-columns: 1fr !important;
    }
    .lg\:col-span-1,
    .lg\:col-span-2 {
        grid-column: span 1 !important;
    }
}

/* ─── SUPER ADMIN : PAGE AUDIT / FLUX ─── */
@media (max-width: 639px) {
    div[class*="grid"][class*="gap-"][class*="items-start"] {
        grid-template-columns: 1fr !important;
    }
}

/* ─── MENU GLASSMORPHISM (style Pigments/DOOH) ─── */
/* Wrapper pour positionner le panneau sous le bouton */
.menu-btn-wrapper {
  position: relative !important;
  display: inline-flex !important;
}

/* Bouton Menu */
.menu-glass-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 30px;
  border: 1.5px solid rgba(0, 109, 55, 0.35);
  background: rgba(255, 255, 255, 0.15) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'Hanken Grotesk', 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #006d37 !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  outline: none;
  min-height: 44px;
}
.menu-glass-btn:hover {
  background: rgba(0, 109, 55, 0.1) !important;
  border-color: rgba(0, 109, 55, 0.55) !important;
}

/* Panneau du menu : positionné DIRECTEMENT sous le bouton avec position: fixed */
.menu-glass-panel {
  display: none !important;
  position: fixed !important;
  top: 56px !important;
  right: 16px !important;
  left: auto !important;
  z-index: 9999 !important;
  width: 250px;
  background: rgba(255, 255, 255, 0.85) !important;
  backdrop-filter: blur(30px) !important;
  -webkit-backdrop-filter: blur(30px) !important;
  border-radius: 24px !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15) !important;
  border: 1px solid rgba(0, 109, 55, 0.12) !important;
  padding: 10px 0;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
}
.menu-glass-panel.active {
  display: block !important;
}

/* Éléments du menu */
.menu-glass-section {
  padding: 4px 6px;
  text-align: center;
}
.menu-glass-section a {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 30px;
  border: 1.5px solid rgba(0, 109, 55, 0.06);
  background: transparent;
  font-family: 'Hanken Grotesk', 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #006d37 !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.menu-glass-section a:hover {
  background: rgba(0, 109, 55, 0.1) !important;
  border-color: rgba(0, 109, 55, 0.25) !important;
  color: #004d27 !important;
}

/* Dernier lien : CTA coloré */
.menu-glass-section-cta a {
  border: 1.5px solid rgba(0, 109, 55, 0.3) !important;
  background: linear-gradient(135deg, #006d37 0%, #2ecc71 100%) !important;
  color: #fff !important;
}
.menu-glass-section-cta a:hover {
  background: linear-gradient(135deg, #005d2e 0%, #27ae60 100%) !important;
  border-color: rgba(0, 109, 55, 0.5) !important;
  color: #fff !important;
  transform: scale(1.03) !important;
}

/* Bouton Démarrer Gratuitement dans le header — hover plus visible */
button[onclick*="tarifs.html"]:hover {
  transform: scale(1.05) !important;
  box-shadow: 0 4px 16px rgba(0, 109, 55, 0.3) !important;
}
