/* ════════════════════════════════════════════════════════════════════════════
   O'FITNESS — ANTIGRAVITY DESIGN SYSTEM
   ════════════════════════════════════════════════════════════════════════════
   
   PHILOSOPHIE : 
   "Zéro gravité" — Les éléments flottent, respirent, et répondent.
   Les compositions sont dynamiques, pas statiques.
   
   ARCHITECTURE :
   1. Variables & Tokens
   2. Floating Animations (keyframes)
   3. Depth & Parallax system  
   4. Card floating effects (desktop only)
   5. Contact Section Redesign — Bubbles + Zen Form
   6. Micro-interactions
   7. Mobile safeguards
   
   PERFORMANCE :
   - Toutes les animations flottantes sont desktop-only (min-width: 769px)
   - will-change utilisé avec parcimonie (seulement sur hover/active)
   - GPU compositing via transform3d uniquement
   ════════════════════════════════════════════════════════════════════════════ */


/* ═══════════════════════════════════════════════════════════════════════════
   1. VARIABLES & TOKENS
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
    /* Shadows — Système de profondeur */
    --ag-shadow-float: 0 8px 32px rgba(0, 66, 128, 0.08), 
                        0 2px 8px rgba(0, 66, 128, 0.04);
    --ag-shadow-hover: 0 16px 48px rgba(0, 66, 128, 0.12), 
                        0 4px 16px rgba(0, 66, 128, 0.06);
    --ag-shadow-bubble: 0 12px 40px rgba(0, 102, 179, 0.15),
                         0 4px 12px rgba(0, 102, 179, 0.08);

    /* Glassmorphism */
    --ag-glass-bg: rgba(255, 255, 255, 0.65);
    --ag-glass-border: rgba(255, 255, 255, 0.3);
    --ag-glass-blur: 20px;

    /* Timing functions — naturels, organiques */
    --ag-ease-float: cubic-bezier(0.37, 0, 0.63, 1);
    --ag-ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ag-ease-smooth: cubic-bezier(0.25, 0.1, 0.25, 1);

    /* Duration */
    --ag-duration-float: 6s;
    --ag-duration-interact: 0.4s;
}


/* ═══════════════════════════════════════════════════════════════════════════
   2. FLOATING ANIMATIONS (keyframes)
   ═══════════════════════════════════════════════════════════════════════════ */

@keyframes ag-float-gentle {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25%      { transform: translateY(-6px) rotate(0.3deg); }
    50%      { transform: translateY(-3px) rotate(-0.2deg); }
    75%      { transform: translateY(-8px) rotate(0.1deg); }
}

@keyframes ag-float-slow {
    0%, 100% { transform: translateY(0px); }
    50%      { transform: translateY(-10px); }
}

@keyframes ag-float-orbit {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    25%      { transform: translateY(-5px) translateX(3px); }
    50%      { transform: translateY(-2px) translateX(-2px); }
    75%      { transform: translateY(-7px) translateX(1px); }
}

@keyframes ag-pulse-glow {
    0%, 100% { box-shadow: var(--ag-shadow-float); }
    50%      { box-shadow: var(--ag-shadow-hover); }
}

@keyframes ag-shimmer {
    0%   { background-position: -200% center; }
    100% { background-position: 200% center; }
}

/* Bubble-specific orbits */
@keyframes ag-bubble-1 {
    0%, 100% { transform: translateY(0) translateX(0) scale(1); }
    33%      { transform: translateY(-12px) translateX(5px) scale(1.02); }
    66%      { transform: translateY(-4px) translateX(-3px) scale(0.99); }
}

@keyframes ag-bubble-2 {
    0%, 100% { transform: translateY(0) translateX(0) scale(1); }
    33%      { transform: translateY(-8px) translateX(-6px) scale(1.01); }
    66%      { transform: translateY(-14px) translateX(4px) scale(0.98); }
}

@keyframes ag-bubble-3 {
    0%, 100% { transform: translateY(0) translateX(0) scale(1); }
    33%      { transform: translateY(-6px) translateX(4px) scale(0.99); }
    66%      { transform: translateY(-10px) translateX(-5px) scale(1.02); }
}

@keyframes ag-bubble-4 {
    0%, 100% { transform: translateY(0) translateX(0) scale(1); }
    33%      { transform: translateY(-10px) translateX(-3px) scale(1.01); }
    66%      { transform: translateY(-5px) translateX(6px) scale(0.98); }
}


/* ═══════════════════════════════════════════════════════════════════════════
   3. DEPTH & PARALLAX SYSTEM
   ═══════════════════════════════════════════════════════════════════════════ */

/* Sections alternées — fond doux avec profondeur */
.section-alt {
    position: relative;
}

/* Décorative depth dots — desktop only */
@media (min-width: 769px) {
    .solutions::before,
    .difference::before {
        content: '';
        position: absolute;
        top: 60px;
        right: -30px;
        width: 120px;
        height: 120px;
        background: radial-gradient(circle, rgba(0, 163, 255, 0.06) 1px, transparent 1px);
        background-size: 16px 16px;
        border-radius: 50%;
        pointer-events: none;
        z-index: 0;
    }

    .approche::after {
        content: '';
        position: absolute;
        bottom: 40px;
        left: -20px;
        width: 80px;
        height: 80px;
        border: 2px solid rgba(0, 163, 255, 0.08);
        border-radius: 50%;
        pointer-events: none;
        z-index: 0;
        animation: ag-float-slow 8s var(--ag-ease-float) infinite;
    }
}


/* ═══════════════════════════════════════════════════════════════════════════
   4. CARD FLOATING EFFECTS (desktop ≥ 769px)
   ═══════════════════════════════════════════════════════════════════════════ */

@media (min-width: 769px) {
    /* Solution cards — floating on scroll reveal */
    .solution-card.revealed {
        animation: ag-float-gentle var(--ag-duration-float) var(--ag-ease-float) infinite;
    }

    /* Stagger les animations entre cartes */
    .solution-card:nth-child(1).revealed { animation-delay: 0s; }
    .solution-card:nth-child(2).revealed { animation-delay: 0.8s; }
    .solution-card:nth-child(3).revealed { animation-delay: 1.6s; }
    .solution-card:nth-child(4).revealed { animation-delay: 2.4s; }

    /* Hover — élévation douce */
    .solution-card:hover {
        transform: translateY(-12px) !important;
        box-shadow: var(--ag-shadow-hover) !important;
        transition: transform var(--ag-duration-interact) var(--ag-ease-spring),
                    box-shadow var(--ag-duration-interact) var(--ag-ease-smooth) !important;
    }

    /* Stopping animation on hover for smooth interaction */
    .solution-card:hover {
        animation-play-state: paused !important;
    }

    /* Difference items — subtle float */
    .difference-item.revealed {
        animation: ag-float-orbit 7s var(--ag-ease-float) infinite;
    }

    .difference-item:nth-child(1).revealed { animation-delay: 0s; }
    .difference-item:nth-child(2).revealed { animation-delay: 1.2s; }
    .difference-item:nth-child(3).revealed { animation-delay: 2.4s; }
    .difference-item:nth-child(4).revealed { animation-delay: 3.6s; }
    .difference-item:nth-child(5).revealed { animation-delay: 4.8s; }

    .difference-item:hover {
        animation-play-state: paused !important;
        transform: translateY(-8px) scale(1.01) !important;
        box-shadow: var(--ag-shadow-hover) !important;
        transition: all var(--ag-duration-interact) var(--ag-ease-spring) !important;
    }

    /* Benefit items — subtle breathing */
    .benefit-item.revealed {
        animation: ag-pulse-glow 5s var(--ag-ease-float) infinite;
    }

    .benefit-item:nth-child(odd).revealed { animation-delay: 0s; }
    .benefit-item:nth-child(even).revealed { animation-delay: 2.5s; }

    .benefit-item:hover {
        animation-play-state: paused !important;
        transform: translateY(-6px) !important;
        box-shadow: var(--ag-shadow-hover) !important;
        transition: all var(--ag-duration-interact) var(--ag-ease-spring) !important;
    }

    /* Step items — depth on hover */
    .step-item:hover {
        transform: translateY(-10px) !important;
        box-shadow: var(--ag-shadow-hover) !important;
        transition: all var(--ag-duration-interact) var(--ag-ease-spring) !important;
    }

    /* Testimonial cards — float gently */
    .testimonial-card {
        transition: transform 0.5s var(--ag-ease-spring),
                    box-shadow 0.5s var(--ag-ease-smooth);
    }

    .testimonial-card:hover {
        transform: translateY(-8px) scale(1.02) !important;
        box-shadow: var(--ag-shadow-hover) !important;
    }
}


/* ═══════════════════════════════════════════════════════════════════════════
   5. CONTACT SECTION REDESIGN — FLOATING BUBBLES + ZEN FORM
   ═══════════════════════════════════════════════════════════════════════════ */

/* ────── 5.1 Section background override ────── */
.contact {
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(0, 102, 179, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(0, 163, 255, 0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

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

/* ────── 5.2 Contact grid redesign ────── */
.contact .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
    align-items: start;
}

/* ────── 5.3 Contact aside → Floating Bubbles ────── */
.contact .contact-aside {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
}

.contact .contact-aside h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.95);
}

.contact .contact-aside > p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 28px;
    line-height: 1.6;
}

/* Floating bubble base */
.contact .contact-feature {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px !important;
    margin-bottom: 16px;
    background: rgba(255, 255, 255, 0.07) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px !important;
    cursor: pointer;
    transition: all 0.4s var(--ag-ease-spring);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

/* Shimmer effect on bubbles */
.contact .contact-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.05), 
        transparent);
    transition: left 0.6s ease;
    pointer-events: none;
}

.contact .contact-feature:hover::before {
    left: 100%;
}

/* Floating bubbles — desktop animation */
@media (min-width: 769px) {
    .contact .contact-feature:nth-child(3) {
        animation: ag-bubble-1 7s var(--ag-ease-float) infinite;
    }
    .contact .contact-feature:nth-child(4) {
        animation: ag-bubble-2 8s var(--ag-ease-float) infinite;
    }
    .contact .contact-feature:nth-child(5) {
        animation: ag-bubble-3 9s var(--ag-ease-float) infinite;
    }
}

/* Bubble hover — elevation */
.contact .contact-feature:hover {
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: rgba(0, 163, 255, 0.3);
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--ag-shadow-bubble);
}

/* Bubble active — press feedback */
.contact .contact-feature:active {
    transform: translateY(-1px) scale(0.99);
    transition-duration: 0.1s;
}

/* Bubble icon */
.contact .contact-feature > div:first-child {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 163, 255, 0.15);
    border-radius: 14px;
    color: #00A3FF !important;
    margin-right: 0 !important;
    transition: all 0.3s var(--ag-ease-spring);
}

.contact .contact-feature:hover > div:first-child {
    background: rgba(0, 163, 255, 0.25);
    transform: scale(1.1);
    border-radius: 12px;
}

/* Bubble text */
.contact .contact-feature span {
    font-size: 15px !important;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85) !important;
    letter-spacing: 0.2px;
}

/* WhatsApp button — special bubble */
.contact .btn-whatsapp {
    margin-top: 12px !important;
    border-radius: 20px !important;
    padding: 18px 28px !important;
    font-weight: 600 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #25D366, #128C7E) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    transition: all 0.4s var(--ag-ease-spring) !important;
    position: relative;
    overflow: hidden;
}

@media (min-width: 769px) {
    .contact .btn-whatsapp {
        animation: ag-bubble-4 8s var(--ag-ease-float) infinite;
    }
}

.contact .btn-whatsapp:hover {
    transform: translateY(-4px) scale(1.03) !important;
    box-shadow: 0 12px 36px rgba(37, 211, 102, 0.35) !important;
    animation-play-state: paused !important;
}


/* ────── 5.4 Zen Form ────── */
.contact .contact-form {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 28px !important;
    padding: 36px 32px !important;
    position: relative;
    overflow: hidden;
}

/* Soft glow behind form */
.contact .contact-form::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 163, 255, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.contact .contact-form > * {
    position: relative;
    z-index: 1;
}

/* Form groups — zen spacing */
.contact .form-group {
    margin-bottom: 20px;
}

/* Labels — clean and clear */
.contact .form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

/* Focus state — label brightens */
.contact .form-group:focus-within label {
    color: #00A3FF;
}

/* Inputs — elevation on focus */
.contact .form-group input,
.contact .form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    color: #fff;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.4s var(--ag-ease-spring);
    outline: none;
    box-sizing: border-box;
}

.contact .form-group input::placeholder,
.contact .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

/* Focus — elevation effect */
.contact .form-group input:focus,
.contact .form-group textarea:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 163, 255, 0.4);
    box-shadow: 0 8px 24px rgba(0, 102, 179, 0.15),
                0 0 0 3px rgba(0, 163, 255, 0.1);
    transform: translateY(-2px);
}

/* Textarea specific */
.contact .form-group textarea {
    min-height: 120px;
    resize: vertical;
}

/* Submit button — zen CTA */
.contact .btn-full {
    width: 100%;
    padding: 18px 32px !important;
    border-radius: 18px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    letter-spacing: 0.3px;
    background: linear-gradient(135deg, #0066B3, #00A3FF) !important;
    border: none !important;
    color: #fff !important;
    cursor: pointer;
    transition: all 0.4s var(--ag-ease-spring) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

/* Submit hover — float up */
.contact .btn-full:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 32px rgba(0, 102, 179, 0.35) !important;
}

.contact .btn-full:active {
    transform: translateY(-1px) !important;
    transition-duration: 0.1s !important;
}

/* Form note */
.contact .form-note {
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.contact .form-note svg {
    width: 16px;
    height: 16px;
    color: #25D366;
    flex-shrink: 0;
}


/* ═══════════════════════════════════════════════════════════════════════════
   6. MICRO-INTERACTIONS
   ═══════════════════════════════════════════════════════════════════════════ */

/* Nav CTA — pulse glow on desktop */
@media (min-width: 769px) {
    .nav-cta .btn-primary {
        position: relative;
        overflow: hidden;
        transition: all 0.4s var(--ag-ease-spring);
    }

    .nav-cta .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(0, 102, 179, 0.3);
    }

    /* Hero badge — gentle float */
    .hero-badge {
        animation: ag-float-slow 5s var(--ag-ease-float) infinite !important;
    }

    /* Scroll indicator — breathing */
    .hero-scroll {
        animation: ag-float-slow 3s var(--ag-ease-float) infinite;
    }
}

/* Filter buttons — interactive feedback */
.filter-btn {
    transition: all 0.3s var(--ag-ease-spring) !important;
}

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

.filter-btn.active {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 102, 179, 0.2);
}


/* ═══════════════════════════════════════════════════════════════════════════
   7. MOBILE SAFEGUARDS — All floating OFF on mobile
   ═══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
    /* Kill all floating animations on mobile */
    .solution-card.revealed,
    .difference-item.revealed,
    .benefit-item.revealed,
    .contact .contact-feature,
    .contact .btn-whatsapp {
        animation: none !important;
    }

    /* Contact section — stack layout */
    .contact .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }

    /* Bubbles — static but still interactive */
    .contact .contact-feature {
        border-radius: 16px !important;
        padding: 16px 18px !important;
    }

    /* Bubble icon — smaller on mobile */
    .contact .contact-feature > div:first-child {
        width: 40px;
        height: 40px;
        min-width: 40px;
        border-radius: 12px;
    }

    /* Form — full width, less padding */
    .contact .contact-form {
        padding: 24px 20px !important;
        border-radius: 20px !important;
    }

    .contact .form-group input,
    .contact .form-group textarea {
        border-radius: 12px;
        padding: 14px 16px;
        font-size: 16px; /* Prevents iOS zoom */
    }

    /* Focus effect — simplified on mobile (no translateY) */
    .contact .form-group input:focus,
    .contact .form-group textarea:focus {
        transform: none;
        box-shadow: 0 0 0 3px rgba(0, 163, 255, 0.15);
    }

    /* Submit button */
    .contact .btn-full {
        border-radius: 14px !important;
        padding: 16px 24px !important;
    }

    /* WhatsApp — static */
    .contact .btn-whatsapp {
        border-radius: 16px !important;
    }

    /* Hero badge — no float */
    .hero-badge {
        animation: none !important;
    }
}

/* Touch device — active states instead of hover */
@media (hover: none) and (pointer: coarse) {
    .contact .contact-feature:active {
        background: rgba(255, 255, 255, 0.15) !important;
        transform: scale(0.98);
    }

    .solution-card:active,
    .difference-item:active,
    .step-item:active,
    .benefit-item:active {
        transform: scale(0.98) !important;
        transition-duration: 0.15s !important;
    }
}

/* Reduced motion — kill everything */
@media (prefers-reduced-motion: reduce) {
    .solution-card.revealed,
    .difference-item.revealed,
    .benefit-item.revealed,
    .contact .contact-feature,
    .contact .btn-whatsapp,
    .hero-badge,
    .hero-scroll,
    .approche::after {
        animation: none !important;
    }

    .contact .form-group input:focus,
    .contact .form-group textarea:focus {
        transform: none !important;
    }
}


/* ═══════════════════════════════════════════════════════════════════════════
   8. DIFFERENCE SECTION — CONSTAT → EFFET O'FITNESS
   ═══════════════════════════════════════════════════════════════════════════ */

/* Override section background — dark immersive */
.difference {
    background: #071A2E !important;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.difference .h2-title {
    color: #fff;
}

.difference .text-lead {
    color: rgba(255, 255, 255, 0.6);
}

/* 3-column grid */
.constat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
}

/* Card — split top/bottom */
.constat-card {
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.4s var(--ag-ease-spring, cubic-bezier(0.34, 1.56, 0.64, 1));
}

.constat-card:hover {
    border-color: rgba(255, 255, 255, 0.16);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

/* Top half — Le Constat */
.constat-top {
    padding: 28px 24px 24px;
    flex: 1;
}

/* Bottom half — L'Effet O'Fitness */
.constat-bottom {
    padding: 24px 24px 28px;
    background: rgba(255, 255, 255, 0.025);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    flex: 1;
}

/* Labels (LE CONSTAT / L'EFFET O'FITNESS) */
.constat-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 16px;
}

.constat-label svg {
    color: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

.constat-label--effet {
    color: var(--color-primary, #00A3FF);
}

.constat-label--effet svg {
    color: var(--color-primary, #00A3FF);
}

/* Constat title (citation) */
.constat-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.35;
    margin-bottom: 12px;
}

/* Constat description */
.constat-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
    margin: 0;
}

/* Effet — Big stat number */
.effet-stat {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}

/* Effet — stat label */
.effet-stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
}

/* Effet — description */
.effet-desc {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.65;
    margin: 0;
}

/* Desktop floating */
@media (min-width: 769px) {
    .constat-card.revealed {
        animation: ag-float-gentle 8s var(--ag-ease-float) infinite;
    }

    .constat-card:nth-child(1).revealed { animation-delay: 0s; }
    .constat-card:nth-child(2).revealed { animation-delay: 1.5s; }
    .constat-card:nth-child(3).revealed { animation-delay: 3s; }

    .constat-card:hover {
        animation-play-state: paused !important;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .constat-grid {
        gap: 16px;
    }
    
    .constat-title {
        font-size: 1.1rem;
    }
    
    .effet-stat {
        font-size: 2rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .constat-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .constat-card {
        border-radius: 16px;
    }

    .constat-card.revealed {
        animation: none !important;
    }

    .constat-top,
    .constat-bottom {
        padding: 22px 20px;
    }

    .effet-stat {
        font-size: 2rem;
    }
    
    .constat-title {
        font-size: 1.1rem;
    }
}

/* Touch feedback */
@media (hover: none) and (pointer: coarse) {
    .constat-card:active {
        transform: scale(0.98) !important;
        transition-duration: 0.15s !important;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .constat-card.revealed {
        animation: none !important;
    }
}
