body {
    font-family: 'Inter', sans-serif;
    /* transition removed to allow persistent navbar */
}

/* Page Transitions */
/* 1. Animation d'entrée (au chargement) */
@keyframes pageEnter {
    0% {
        opacity: 0;
        transform: translateY(10px) scale(0.99);
        /* filter: blur(10px); REMOVED FOR PERFORMANCE */
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        /* filter: blur(0); */
    }
}



/* EFFET PROGRESSIF (CASCADING) */
main>* {
    animation: pageEnter 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

main>*:nth-child(1) {
    animation-delay: 0.05s;
}

main>*:nth-child(2) {
    animation-delay: 0.1s;
}

main>*:nth-child(3) {
    animation-delay: 0.15s;
}

main>*:nth-child(4) {
    animation-delay: 0.2s;
}

main>*:nth-child(5) {
    animation-delay: 0.25s;
}

footer {
    animation: pageEnter 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) both;
    animation-delay: 0.15s;
    /* Le footer arrive un peu après */
}


/* 2. Transition de sortie (au clic) */
/* On cible main et footer quand le body a la classe exit */
body.page-transition-exit main,
body.page-transition-exit footer {
    opacity: 0 !important;
    transform: translateY(-10px) scale(0.99);
    /* filter: blur(5px); -- REMOVED FOR PERFORMANCE (Causes lag on mobile/weak GPUs) */
    transition: all 0.3s ease-in;
}

/* On s'assure que la navbar reste visible */
body.page-transition-exit nav,
body.page-transition-exit #navbar {
    opacity: 1 !important;
}

h1,
h2,
h3,
.font-display {
    font-family: 'Sora', sans-serif;
}

.font-serif-italic {
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

/* Glassmorphism Cards */
.glass-card {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.08);
}

.glass-card:hover {
    border-color: #2ed8a1;
    box-shadow: 0 25px 50px -12px rgba(46, 216, 161, 0.2);
    transform: translateY(-5px);
}









.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Animation Icône Thème */
.theme-icon-enter {
    animation: rotate-in 0.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes rotate-in {
    from {
        transform: rotate(-90deg) scale(0);
        opacity: 0;
    }

    to {
        transform: rotate(0) scale(1);
        opacity: 1;
    }
}

.bg-image-cover {
    background-size: cover;
    background-position: center;
}

/* === AJOUTS POUR SERVICES.HTML === */

/* Styles des Boutons Onglets (Tabs) */
/* Styles des Boutons Onglets (Tabs) */
.tab-btn {
    transition: all 0.3s ease;
    white-space: nowrap;
    backdrop-filter: blur(10px);
}

.tab-btn.active {
    background: rgba(46, 216, 161, 0.15) !important;
    color: #000;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(46, 216, 161, 0.2);
    border-color: #2ed8a1 !important;
}

.tab-btn:not(.active) {
    background: rgba(255, 255, 255, 0.2) !important;
    border: 1px solid rgba(0, 0, 0, 0.05);
    color: #555;
}

.tab-btn:not(.active):hover {
    border-color: #2ed8a1;
    color: black;
    background: rgba(255, 255, 255, 0.5) !important;
}

/* Animation Apparition Contenu */
.service-content {
    display: none;
    animation: fadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-content.active {
    display: flex;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animation Accordéon FAQ */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out, opacity 0.4s;
    opacity: 0;
}

.faq-item-active .faq-answer {
    max-height: 200px;
    opacity: 1;
    padding-bottom: 24px;
}

.faq-icon {
    transition: transform 0.3s;
}

.faq-item-active .faq-icon {
    transform: rotate(45deg);
    color: #2ed8a1;
}


/* === NAVIGATION GLASS BUTTONS === */

/* Override: Remove shadow from navbar glass only */
#navbar .static-glass {
    box-shadow: none !important;
}

/* === NAVIGATION GLASS BUTTONS === */
.nav-glass-btn {
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    font-weight: 600;
    background: rgba(255, 255, 255, 0.5);
    border-color: rgba(0, 0, 0, 0.05);
    color: #4b5563;
}

.nav-glass-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(46, 216, 161, 0.5);
    color: #111;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(46, 216, 161, 0.15);
}

/* Active State */
.nav-glass-btn.active {
    background: rgba(46, 216, 161, 0.1);
    border-color: #2ed8a1;
    color: #111;
    box-shadow: 0 0 15px rgba(46, 216, 161, 0.2);
}

/* === AJOUTS POUR LE BLOG === */

/* Barre de progression verte en haut */
.read-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: #2ed8a1;
    width: 0%;
    z-index: 9999;
    transition: width 0.1s linear;
}

/* Ajustement pour que le titre ne soit pas caché par le header lors du clic sur une ancre */
.max-w-3xl h2 {
    scroll-margin-top: 120px;
}

/* === DESIGN ARTICLE DE BLOG === */

/* Typographie du corps de l'article */
.article-content {
    font-family: 'Inter', sans-serif;
}

.article-content h2 {
    font-family: 'Sora', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #111;
    scroll-margin-top: 100px;
}

.article-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.article-content ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.article-content li {
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
}

/* Citation (Blockquote) */
.article-content blockquote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.4rem;
    line-height: 1.6;
    margin: 2.5rem 0;
    padding-left: 1.5rem;
    color: #333;
}

/* Liens dans l'article */
.article-content a {
    color: #2ed8a1;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.article-content a:hover {
    color: #25c290;
}


/* ========================================= */
/* === AJOUTS SPÉCIFIQUES PAGE TARIFS === */
/* ========================================= */

/* --- Cartes de Prix --- */
/* Note : La structure de base utilise .glass-card */

/* Badge "Populaire" */
.popular-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #2ED8A1;
    color: #000;
    padding: 6px 16px;
    border-radius: 99px;
    font-family: 'Cal Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(46, 216, 161, 0.4);
    z-index: 20;
}

/* Style de la carte populaire (Kenz) */
.pricing-card.popular {
    border-color: rgba(46, 216, 161, 0.5);
    box-shadow: 0 0 40px rgba(46, 216, 161, 0.1);
}

/* Listes des fonctionnalités */
.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

/* Icônes dans la liste (Check / Cross) */
.pricing-features i.check {
    color: #2ED8A1;
    /* Vert */
    font-size: 1.2rem;
}

.pricing-features i.cross {
    color: #ef4444;
    /* Rouge (Tailwind red-500) */
    font-size: 1.2rem;
    opacity: 0.6;
}

/* Éléments exclus (gris et barrés) */
.pricing-features li.excluded {
    opacity: 0.5;
    text-decoration: line-through;
}

/* ============================================== */
/* === AJOUTS SPÉCIFIQUES PAGE QUI SOMMES NOUS === */
/* ============================================== */

/* --- Liste à puces personnalisée (Check vert) --- */
.custom-check-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.custom-check-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-weight: 500;
}

.custom-check-list li::before {
    content: '✓';
    /* Ou utiliser une icône Phosphor via CSS si besoin */
    position: absolute;
    left: 0;
    top: 0;
    color: #2ED8A1;
    /* Laymoon Green */
    font-weight: bold;
    font-size: 1.1rem;
}

/* --- Bandeau Vision (Gradient subtil) --- */
.vision-banner {
    position: relative;
    overflow: hidden;
    padding: 4rem 2rem;
    border-radius: 2rem;
    text-align: center;
    background: linear-gradient(135deg, #f3f4f6 0%, #ffffff 100%);
}

/* --- Tagline Strip (Bande noire avec citation) --- */
.tagline-strip {
    background: #000;
    color: #fff;
    padding: 5rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tagline-strip p {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    line-height: 1.4;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* Effet de fond subtil sur la bande */
.tagline-strip::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(46, 216, 161, 0.1) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}


/* ========================================= */
/* === AJOUTS SPÉCIFIQUES PAGE CONTACT === */
/* ========================================= */

/* --- Champs de formulaire Glassmorphism --- */
/* --- Champs de formulaire Glassmorphism --- */
.glass-input {
    width: 100%;
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid;
    outline: none;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    background: rgba(255, 255, 255, 0.5);
    border-color: rgba(0, 0, 0, 0.1);
    color: #111;
}

.glass-input:focus {
    border-color: #2ED8A1;
    background: #fff;
    box-shadow: 0 0 0 1px rgba(46, 216, 161, 0.3);
}

/* --- Checkbox personnalisée --- */
.custom-checkbox {
    accent-color: #2ED8A1;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* ========================================= */
/* === ANIMATIONS SPÉCIFIQUES (PRO & HOME) === */
/* ========================================= */

/* Animation de flottement (ex: le téléphone) */
@keyframes float {

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

    50% {
        transform: translateY(-15px);
    }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

/* Pulsation lente (ex: les lueurs en arrière-plan) */
.animate-pulse-slow {
    animation: pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Rotation lente (si nécessaire pour les cercles décoratifs) */
.animate-spin-slow {
    animation: spin 12s linear infinite;
}

/* Utilitaires de délai d'animation */
.delay-1000 {
    animation-delay: 1s;
}

.delay-2000 {
    animation-delay: 2s;
}


/* ========================================= */
/* === AJOUTS SPÉCIFIQUES LAYPRO SOLUTIONS === */
/* ========================================= */

/* Effet néon pour le bouton actif */
.neon-glow {
    box-shadow: 0 0 15px rgba(52, 211, 153, 0.4);
    border-color: #34d399;
    /* Emerald-400 */
}

/* Boutons de navigation (Tabs) */
.pro-nav-btn {
    transition: all 0.3s ease;
}

.pro-nav-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* === ANIMATION SLIDER INFINI === */

/* Met en pause l'animation quand on passe la souris dessus */
.group:hover .animate-scroll {
    animation-play-state: paused;
}

/* Créer un fondu transparent à gauche et à droite pour un effet premium */
.mask-gradient {
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}


/* ========================================= */
/* === APPLE GLASS CARD (Pour la notif) === */
/* ========================================= */

.apple-glass {
    /* FOND : Dégradé blanc subtil (plus opaque en haut gauche pour la lumière) */
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.15),
            /* Haut : Presque opaque pour la lisibilité */
            rgba(255, 255, 255, 0.05)
            /* Bas : Plus transparent pour l'effet verre */
        );

    /* EFFET OPTIQUE : Flou d'arrière-plan + Saturation */
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);

    /* BORDURES : Blanches et nettes */
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-top: 1px solid rgba(255, 255, 255, 0.9);
    /* Reflet de lumière en haut */
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    /* Plus discret en bas */

    /* OMBRES : 
       1. Ombre portée NOIRE (pour détacher la carte du fond)
       2. Lueur interne BLANCHE (pour l'effet cristal) 
    */
    box-shadow:
        0 10px 40px -10px rgba(0, 0, 0, 0.2),
        /* Ombre douce pour la profondeur */
        inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    /* Éclat interne */

    /* COULEUR TEXTE : Forcée en sombre car le fond est blanc */
    color: #050505;

    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Survol : La carte devient plus "solide" et brillante */
/* Survol : Effet désactivé pour garder la transparence statique */
.apple-glass:hover {
    /* Garder le même background que par défaut ou laisser les classes Tailwind gérer */
    /* background: linear-gradient(...) - Désactivé */
    /* transform: translateY(-4px) scale(1.02); - Désactivé */
    /* box-shadow: ... - Désactivé */
    border-color: rgba(255, 255, 255, 0.6);
    /* Garder la bordure stable */
}

/* IMPORTANT : Force les textes à l'intérieur à être foncés pour la lisibilité (Light Mode uniquement) */
/* IMPORTANT : Force les textes à l'intérieur à être foncés pour la lisibilité (Light Mode uniquement) */
/* IMPORTANT : Force les textes à l'intérieur à être foncés pour la lisibilité (Light Mode uniquement) */
.apple-glass div,
.apple-glass i,
.apple-glass span {
    color: #050505 !important;
    text-shadow: none !important;
}

/* Exception pour le texte "Cashback" qui peut être gris foncé */
.apple-glass .text-xs {
    color: #555555 !important;
}

/* Exception pour l'icône verte qui doit rester verte */
.apple-glass .text-laymoon-green {
    color: #2ed8a1 !important;
}


/* ========================================= */
/* === SHINE EFFECT (Reflet) === */
/* ========================================= */

.shine-effect {
    position: relative;
    overflow: hidden;
}

.shine-effect::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(51, 145, 33, 0.1),
            transparent);
    transform: skewX(-20deg);
    transform: skewX(-20deg);
    /* Animation joue une seule fois (plus de boucle infinite) */
    animation: shine-pass 1.5s ease-in-out forwards;
    animation: shine-pass 1.5s ease-in-out forwards;
    pointer-events: none;
}

/* JS adds this class after animation to permanently remove the shine */
.shine-effect.shine-stopped::after {
    display: none !important;
    content: none !important;
    animation: none !important;
}

/* Prevent shine from replaying or persisting on hover (fallback) */
.shine-effect:hover::after {
    display: none;
    animation: none;
}

@keyframes shine-pass {
    0% {
        left: -150%;
    }

    100% {
        left: 150%;
    }
}

/* ========================================= */
/* === ANIMATIONS (Float & Spin) === */
/* ========================================= */

/* Flottement vertical (téléphone + carte) */
.animate-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

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

    50% {
        transform: translateY(-15px);
    }
}

/* Rotation (pour les cercles en background) */
/* Note : Tailwind le fait avec 'animate-spin', mais voici le CSS pur si besoin */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Utilitaire Perspective (pour l'effet 3D du téléphone) */
.perspective-1000 {
    perspective: 1000px;
}


.icon-green {
    filter: invert(76%) sepia(56%) saturate(476%) hue-rotate(104deg) brightness(89%) contrast(87%);
}

/* === BORDURE LUMINEUSE (SHINE) === */
.border-shine {
    /* Transition fluide pour l'allumage */
    transition: all 0.3s ease-in-out;
}

.border-shine:hover {
    /* 1. La bordure devient vert Laymoon */
    border-color: #2ed8a1 !important;

    /* 2. L'effet de "brillance" (Glow) */
    box-shadow:
        /* Ombre portée verte diffuse autour de la carte */
        0 0 70px rgba(46, 216, 161, 0.5),

        /* Petit reflet vert à l'intérieur collé au bord pour l'effet "verre illuminé" */
        inset 0 0 30px rgba(46, 216, 161, 0.2) !important;

    /* On s'assure que la carte remonte un peu (effet premium) */
    transform: translateY(-5px);
}




/* ============================================== */
/* === PAGE CGU & LÉGAL (Design Sombre) === */
/* ============================================== */

/* Styles déjà fournis dans la réponse précédente pour cgu.html */
/* Copiez-les ici si ce n'est pas déjà fait */
:root {
    --laymoon-green: #2ED8A1;
    --laymoon-bg: #000000;
    --laymoon-card-bg: rgba(20, 20, 20, 0.6);
}

.sharia-board {
    max-width: 900px;
    margin: 120px auto 120px;
    padding: 0 1rem;
    color: #fff;
    font-family: 'Inter', sans-serif;
}

.board-title {
    text-align: center;
    font-family: "Cal Sans", sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
}

.board-card {
    position: relative;
    padding: 3.5rem 2.5rem;
    border-radius: 24px;
    background: rgba(212, 212, 212, 0.10);
    backdrop-filter: blur(13.3px);
    -webkit-backdrop-filter: blur(13.3px);
    border: 1px solid transparent;
    overflow: hidden;
}

.board-card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255, 255, 255, .55), rgba(255, 255, 255, .19));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.board-card>* {
    position: relative;
    z-index: 1;
}

.board-sub {
    text-align: left;
    font-family: "Cal Sans", sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    margin: 2.5rem 0 1rem;
    color: #2ED8A1;
}

.board-sub:first-child {
    margin-top: 0;
}

.board-card h3 {
    font-family: "Cal Sans", sans-serif;
    font-size: 1.3rem;
    margin-top: 1.5rem;
    color: #fff;
}

.board-card p,
.board-card li {
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 1rem;
    color: #e0e0e0;
}

.board-card strong {
    color: #fff;
    font-weight: 700;
}

.board-card a {
    color: #2ED8A1;
    text-decoration: underline;
}

.board-card ul,
.board-card ol {
    padding-left: 20px;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .board-title {
        font-size: 2.25rem;
    }

    .board-sub {
        font-size: 1.4rem;
    }

    .board-card {
        padding: 2rem 1.5rem;
    }
}

.scroll-mt-32 {
    scroll-margin-top: 8rem;
    /* Pour que le titre ne soit pas caché par le header fixe */
}

/* ============================================== */
/* === PAGE CONFIDENTIALITÉ (Accordéons) === */
/* ============================================== */

/* Styles Accordéon (Details/Summary) */
.board-card details {
    margin: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    transition: all 0.3s ease;
}

.board-card details:first-child {
    border-top: none;
    margin-top: 0;
}

.board-card summary {
    cursor: pointer;
    text-align: left;
    font-family: "Cal Sans", sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: .5rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    transition: color 0.3s ease;
}

.board-card summary:hover {
    color: #2ED8A1;
}

/* Cache la flèche par défaut des navigateurs */
.board-card summary::-webkit-details-marker {
    display: none;
}

/* Croix personnalisée */
.board-card summary::after {
    content: "+";
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
    color: #2ED8A1;
}

/* Rotation de la croix quand ouvert */
.board-card details[open] summary::after {
    transform: rotate(45deg);
}

/* Animation d'ouverture douce (Optionnel) */
.board-card details[open] p,
.board-card details[open] ul {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .board-card summary {
        font-size: 1.2rem;
    }
}

/* Style du bouton actif dans les tabs */
.tab-btn.active {
    background-color: #2ED8A1;
    /* Laymoon Green */
    color: #000000;
    /* Texte noir */
    box-shadow: 0 4px 15px rgba(46, 216, 161, 0.4);
    /* Ombre verte */
    transform: scale(1.05);
}

/* Style des boutons inactifs (pour être sûr) */
.tab-btn:not(.active) {
    background-color: transparent;
}

/* Animation des blobs d'arrière-plan */
@keyframes blob {
    0% {
        transform: translate(0px, 0px) scale(1);
    }

    33% {
        transform: translate(30px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }

    100% {
        transform: translate(0px, 0px) scale(1);
    }
}

.animate-blob {
    animation: blob 10s infinite;
}

.animation-delay-2000 {
    animation-delay: 2s;
}

.animation-delay-4000 {
    animation-delay: 4s;
}

/* === ANIMATION TABS SERVICES === */
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
        filter: blur(4px);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

.service-content {
    display: none !important;
    /* Caché par défaut (Force override Tailwind) */
}

.service-content.active {
    display: flex !important;
    /* Affiche quand actif */
    animation: fadeSlideUp 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* === APPLE GLASS EFFECT (Green Tint + White Borders) === */
.apple-glass {
    /* Background with VERY subtle Laymoon Green (#2ED8A1) tint & high transparency */
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.05),
            rgba(46, 216, 161, 0.02));
    backdrop-filter: blur(40px) saturate(200%);
    -webkit-backdrop-filter: blur(40px) saturate(200%);

    /* Strong White Border with blur interaction */
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow:
        0 8px 32px 0 rgba(0, 0, 0, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    /* Inner light ring */

    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

/* Dark Mode Adaptation */
.dark .apple-glass {
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.05),
            rgba(46, 216, 161, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
}



/* === STATIC GLASS (For sections/backgrounds - NO INTERACTION) === */
.static-glass {
    /* Copy of apple-glass base styles */
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.05),
            rgba(46, 216, 161, 0.02));
    backdrop-filter: blur(40px) saturate(200%);
    -webkit-backdrop-filter: blur(40px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow:
        0 8px 32px 0 rgba(0, 0, 0, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.dark .static-glass {
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.05),
            rgba(46, 216, 161, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
}

/* === SHINE EFFECT === */
.shine-effect {
    position: relative;
    overflow: hidden;
}



/* Border Shine Helper */
.border-shine {
    position: relative;
    overflow: hidden;
    /* Ensure shine stays inside border radius */
}

/* === MOBILE SOLID GLASS OVERRIDE === */
@media (max-width: 1024px) {
    .mobile-solid-glass {
        /* Matching "Parler à MoonIA" button style for mobile */
        background: rgba(255, 255, 255, 0.5) !important;
        backdrop-filter: blur(24px) !important;
        -webkit-backdrop-filter: blur(24px) !important;
        border: 1px solid rgba(255, 255, 255, 0.4) !important;
        /* Combine shadow-lg and ring-1 ring-white/50 */
        box-shadow:
            0 10px 15px -3px rgba(0, 0, 0, 0.1),
            0 4px 6px -2px rgba(0, 0, 0, 0.05),
            inset 0 0 0 1px rgba(255, 255, 255, 0.5) !important;
    }
}