/**
 * ══════════════════════════════════════════════════
 * Brand by Fatimah — Premium Agency Stylesheet
 * ══════════════════════════════════════════════════
 */

/* ─── CSS Variables ─── */
:root {
    --bg: #FFFFFF;
    --bg-alt: #FBFBFA;
    --bg-dark: #0F0F0F;
    --text: #1A1A1A;
    --text-secondary: #6B6B6B;
    --text-light: #999999;

    /* Palette Principale : Rouge-Orangé Haute Visibilité */
    --accent: #FF4D26;
    --accent-dark: #E03610;
    --accent-light: rgba(255, 77, 38, 0.12);
    --accent-glow: rgba(255, 77, 38, 0.28);

    /* Accent Dynamique : Vert Limonade Électrique */
    --accent-lime: #B8E926;
    --accent-lime-dark: #8FB814;
    --accent-lime-light: rgba(184, 233, 38, 0.16);
    --accent-lime-glow: rgba(184, 233, 38, 0.35);

    /* Doré : Préservé exclusivement pour la Newsletter / Le Cercle Privé */
    --gold: #C8A97E;
    --gold-dark: #A88A5E;
    --gold-light: #E8D5B5;
    --gold-glow: rgba(200, 169, 126, 0.25);

    --white: #FFFFFF;
    --border: rgba(0, 0, 0, 0.08);
    --border-light: rgba(255, 255, 255, 0.1);

    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;

    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

    --radius: 16px;
    --radius-sm: 8px;
    --radius-full: 100px;

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 30px 80px rgba(0, 0, 0, 0.18);
}

/* ─── Reset ─── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: 80px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    cursor: pointer;
}

/* ─── Accessibility Skip Link ─── */
.skip-link {
    position: absolute;
    top: -100px;
    left: 20px;
    background: var(--accent);
    color: var(--bg-dark);
    padding: 12px 24px;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: var(--radius-sm);
    z-index: 999999;
    box-shadow: var(--shadow-lg);
    transition: top 0.2s ease;
    text-decoration: none;
}

.skip-link:focus {
    top: 20px;
}

/* ─── Container ─── */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ─── Typography ─── */
h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.section-title {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    margin-bottom: 20px;
}

.section-title em {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--accent);
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 560px;
}

.section-header {
    margin-bottom: 60px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 18px;
    color: var(--accent);
    background: rgba(255, 77, 38, 0.08);
    border: 1px solid rgba(255, 77, 38, 0.22);
    transition: all 0.3s ease;
}

/* ─── Alternance des sections (Vert Citron & Rouge-Orangé) ─── */
.theme-lime .section-tag,
.section-tag.tag-lime {
    color: #354e02;
    background: rgba(184, 233, 38, 0.22);
    border: 1px solid rgba(184, 233, 38, 0.55);
    box-shadow: 0 2px 10px rgba(184, 233, 38, 0.2);
}

.theme-lime .section-title em,
.section-title em.em-lime {
    color: #557e03;
    text-shadow: 0 0 20px rgba(184, 233, 38, 0.25);
}

.theme-orange .section-tag,
.section-tag.tag-orange {
    color: var(--accent);
    background: rgba(255, 77, 38, 0.08);
    border: 1px solid rgba(255, 77, 38, 0.25);
    box-shadow: 0 2px 10px rgba(255, 77, 38, 0.12);
}

.theme-orange .section-title em,
.section-title em.em-orange {
    color: var(--accent);
    text-shadow: 0 0 20px rgba(255, 77, 38, 0.25);
}

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    white-space: nowrap;
    max-width: 100%;
    box-sizing: border-box;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
}

/* ─── Rouge-Orangé Button ─── */
.btn-primary,
.btn-orange {
    background: var(--accent);
    color: var(--white);
    border: 1px solid var(--accent);
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(255, 77, 38, 0.28);
}

.btn-primary:hover,
.btn-orange:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 77, 38, 0.45);
}

/* ─── Vert Citron Button ─── */
.btn-lime {
    background: var(--accent-lime);
    color: #0F0F0F;
    border: 1px solid var(--accent-lime);
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(184, 233, 38, 0.35);
}

.btn-lime:hover {
    background: #a3d417;
    border-color: #a3d417;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(184, 233, 38, 0.5);
}

/* ─── Ghost Button (pure white background & crisp border) ─── */
.btn-ghost {
    background: #FFFFFF;
    color: var(--text);
    border: 1.5px solid rgba(0, 0, 0, 0.18);
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.btn-ghost:hover {
    border-color: var(--text);
    background: var(--text);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.btn-white {
    background: var(--white);
    color: var(--bg-dark);
}

.btn-white:hover {
    background: var(--accent-lime);
    color: #0F0F0F;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(184, 233, 38, 0.35);
}

.btn-ghost-white {
    background: transparent;
    color: var(--white);
    border: 1.5px solid var(--border-light);
}

.btn-ghost-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

/* ─── Nav Button (Vert Citron) ─── */
.btn-nav {
    background: var(--accent-lime);
    color: #0F0F0F;
    border: 1px solid var(--accent-lime);
    padding: 10px 22px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 2px 10px rgba(184, 233, 38, 0.3);
}

.btn-nav:hover {
    background: #a3d417;
    border-color: #a3d417;
    color: #000000;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(184, 233, 38, 0.45);
}

.btn-nav-short {
    display: none;
}

/* ─── Luxury Cursor Follower (Desktop) ─── */
.cursor-ring,
.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99999;
    opacity: 0;
    will-change: transform;
    transition: opacity 0.3s ease;
}

.cursor-ring.visible,
.cursor-dot.visible {
    opacity: 1;
}

/* Outer floating ring / halo — enlarged and aesthetic */
.cursor-ring-inner {
    width: 42px;
    height: 42px;
    margin-left: -21px;
    margin-top: -21px;
    border-radius: 50%;
    border: 1.5px solid rgba(212, 168, 83, 0.45);
    background: radial-gradient(circle, rgba(212, 168, 83, 0.08) 0%, transparent 70%);
    box-shadow: 0 0 20px rgba(212, 168, 83, 0.18);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
        background 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

/* Inner precise gold dot */
.cursor-dot-inner {
    width: 6px;
    height: 6px;
    margin-left: -3px;
    margin-top: -3px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 10px rgba(212, 168, 83, 0.8);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Hovering buttons, links & interactive items */
.cursor-ring.hovering .cursor-ring-inner {
    transform: scale(1.6);
    border-color: var(--accent);
    background: radial-gradient(circle, rgba(212, 168, 83, 0.22) 0%, rgba(212, 168, 83, 0.05) 75%);
    box-shadow: 0 0 30px rgba(212, 168, 83, 0.45);
    backdrop-filter: blur(1px);
}

.cursor-dot.hovering .cursor-dot-inner {
    transform: scale(0.3);
    opacity: 0.3;
}

/* Hovering portfolio project cards */
.cursor-ring.hovering-project .cursor-ring-inner {
    transform: scale(2.1);
    border-color: var(--accent-light);
    background: radial-gradient(circle, rgba(212, 168, 83, 0.28) 0%, rgba(212, 168, 83, 0.08) 70%);
    box-shadow: 0 0 35px rgba(212, 168, 83, 0.55);
}

/* Disable on touch devices */
@media (pointer: coarse),
(hover: none) {

    .cursor-ring,
    .cursor-dot {
        display: none !important;
    }
}

/* ─── Reveal Animation ─── */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
    transition-delay: var(--delay, 0s);
}

.reveal-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero elements animate automatically on load with pure CSS so they NEVER get stuck invisible on mobile/iPhone */
.hero .reveal-up {
    opacity: 1;
    transform: translateY(0);
    animation: heroEntrance 0.7s var(--ease-out) both;
    animation-delay: var(--delay, 0s);
}

@keyframes heroEntrance {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ══════════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════════ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 20px 0;
    transition: all 0.4s var(--ease);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    text-decoration: none;
    line-height: 1;
}

.logo-brand {
    font-family: var(--font-sans);
    font-weight: 800;
    font-size: 1.18rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text);
    transition: color 0.3s;
}

.logo-by {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 500;
    font-size: 1.15rem;
    color: var(--accent);
    margin: 0 2px;
    display: inline-block;
    transition: transform 0.3s var(--ease), color 0.3s ease;
}

.logo-fatimah {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 1.35rem;
    letter-spacing: 0.01em;
    color: var(--text);
    transition: color 0.3s;
}

.logo:hover .logo-by {
    color: var(--accent-dark);
    transform: scale(1.1) translateY(-1px);
}

.logo:hover .logo-brand,
.logo:hover .logo-fatimah {
    color: #000000;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo .logo-brand,
.footer-logo .logo-fatimah {
    color: var(--white);
}

.footer-logo:hover .logo-by {
    color: #FF6B4A;
    transform: scale(1.1) translateY(-1px);
}

.footer-logo:hover .logo-brand,
.footer-logo:hover .logo-fatimah {
    color: var(--white);
    opacity: 0.9;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    transition: color 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s var(--ease);
}

.nav-link:nth-child(odd)::after {
    background: var(--accent-lime-dark);
}

.nav-link:nth-child(even)::after {
    background: var(--accent);
}

.nav-link:hover {
    color: var(--text);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 8px;
}

.menu-toggle .bar {
    width: 22px;
    height: 2px;
    background: var(--text);
    transition: all 0.3s var(--ease);
    border-radius: 2px;
}

.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background: var(--bg);
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease);
}

.mobile-nav.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.mobile-link {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text);
    transition: color 0.3s;
}

.mobile-link:hover {
    color: var(--accent);
}

.btn-mobile-cta {
    margin-top: 20px;
}


/* ══════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════ */

.hero {
    min-height: 85vh;
    min-height: 85dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 100px 24px 40px;
    background: #FFFFFF;
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
}

.hero-gradient-orb {
    display: none;
}

@keyframes float {

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

    33% {
        transform: translate(30px, -20px);
    }

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

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(200, 169, 126, 0.1);
    border: 1px solid rgba(200, 169, 126, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent-dark);
    margin-bottom: 32px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

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

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.hero-title {
    margin-bottom: 28px;
}

.title-line {
    display: block;
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.title-accent {
    font-family: var(--font-serif);
    font-weight: 500;
    font-style: italic;
    color: var(--accent);
}

.hero-subtitle {
    font-size: clamp(0.95rem, 1.35vw, 1.15rem);
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 820px;
    margin: 0 auto 40px;
    hyphens: none;
}

.highlight-glow {
    font-weight: 750;
    background: linear-gradient(120deg, #543708 0%, #7D5210 20%, #E68200 45%, #FFA31A 50%, #E68200 55%, #7D5210 80%, #543708 100%);
    background-size: 250% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    filter: drop-shadow(0 1px 1px rgba(84, 55, 8, 0.2)) drop-shadow(0 0 10px rgba(230, 130, 0, 0.4));
    animation: goldShimmer 3.5s ease-in-out infinite;
}

@keyframes goldShimmer {

    0%,
    100% {
        background-position: 0% 50%;
        filter: drop-shadow(0 1px 1px rgba(84, 55, 8, 0.2)) drop-shadow(0 0 6px rgba(200, 110, 0, 0.3));
    }

    50% {
        background-position: 100% 50%;
        filter: drop-shadow(0 1px 1px rgba(84, 55, 8, 0.2)) drop-shadow(0 0 14px rgba(240, 140, 0, 0.65));
    }
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.02em;
}

.stat-plus {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent);
}

.stat:nth-child(3) .stat-plus {
    color: var(--accent-lime-dark);
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: var(--border);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--accent);
    animation: scroll-down 2s ease-in-out infinite;
}

@keyframes scroll-down {
    0% {
        top: -50%;
    }

    100% {
        top: 100%;
    }
}


/* ══════════════════════════════════════════════════
   CLIENTS MARQUEE
   ══════════════════════════════════════════════════ */

.clients-bar {
    padding: 30px 0;
    background: var(--bg-alt);
    overflow: hidden;
}

.marquee-track {
    display: flex;
    overflow: hidden;
    user-select: none;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 0;
    animation: marquee 28s linear infinite;
    will-change: transform;
}

.marquee-item {
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--text);
    opacity: 0.5;
    white-space: nowrap;
    padding: 0 20px;
    transition: opacity 0.3s;
}

.marquee-item:hover {
    opacity: 1;
}

.marquee-dot {
    color: var(--accent);
    font-size: 0.7rem;
    opacity: 0.7;
}

.marquee-content .marquee-dot:nth-of-type(even) {
    color: var(--accent-lime-dark);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-25%);
    }
}


/* ══════════════════════════════════════════════════
   MÉTHODE BRAND MAXXING (2026)
   ══════════════════════════════════════════════════ */

.method-section {
    padding: 120px 0;
    position: relative;
}

.maxxing-manifesto {
    background: linear-gradient(135deg, rgba(255, 77, 38, 0.05) 0%, rgba(184, 233, 38, 0.08) 100%);
    border: 1px solid rgba(255, 77, 38, 0.2);
    border-radius: var(--radius);
    padding: 36px 40px;
    margin: 30px auto 48px;
    max-width: 880px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.theme-lime .maxxing-manifesto {
    background: linear-gradient(135deg, rgba(184, 233, 38, 0.09) 0%, rgba(255, 77, 38, 0.04) 100%);
    border: 1px solid rgba(184, 233, 38, 0.35);
}

.maxxing-quote {
    font-family: var(--font-serif);
    font-size: clamp(1.3rem, 2.5vw, 1.85rem);
    line-height: 1.4;
    color: var(--text);
    margin-bottom: 8px;
}

.maxxing-quote strong {
    color: var(--accent);
    font-style: italic;
}

.theme-lime .maxxing-quote strong {
    color: #486a02;
}

.maxxing-sub {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-lime-dark);
    margin-bottom: 22px;
}

.maxxing-tags {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.maxxing-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.02em;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s var(--ease);
}

.maxxing-tag:hover {
    border-color: var(--accent-lime);
    background: var(--accent-lime-light);
    color: #0F0F0F;
    transform: translateY(-2px);
}

.maxxing-grid, .aida-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.maxxing-card, .aida-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 38px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.maxxing-card:hover, .aida-card:hover {
    transform: translateY(-4px);
}

/* Card 1 & 3: Rouge-Orangé */
.maxxing-card:nth-child(odd):hover {
    border-color: var(--accent);
    box-shadow: 0 20px 50px rgba(255, 77, 38, 0.14);
}

.maxxing-card:nth-child(odd) .maxxing-pillar-badge {
    background: rgba(255, 77, 38, 0.08);
    border: 1px solid rgba(255, 77, 38, 0.25);
    color: var(--accent);
}

/* Card 2 & 4: Vert Citron */
.maxxing-card:nth-child(even):hover {
    border-color: var(--accent-lime);
    box-shadow: 0 20px 50px rgba(184, 233, 38, 0.18);
}

.maxxing-card:nth-child(even) .maxxing-pillar-badge {
    background: rgba(184, 233, 38, 0.2);
    border: 1px solid rgba(184, 233, 38, 0.45);
    color: #384f04;
}

.maxxing-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.maxxing-pillar-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: all 0.3s ease;
}

.maxxing-card-num {
    font-family: var(--font-sans);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-light);
    opacity: 0.35;
}

.maxxing-card h3 {
    font-size: 1.45rem;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
    color: var(--text);
}

.maxxing-card p {
    color: var(--text-secondary);
    font-size: 0.96rem;
    line-height: 1.65;
    margin-bottom: 24px;
}

.maxxing-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid var(--border);
}

.maxxing-step {
    font-size: 0.76rem;
    font-weight: 600;
    padding: 5px 12px;
    background: var(--bg-alt);
    border-radius: 6px;
    color: var(--text);
    transition: all 0.2s ease;
}

.maxxing-card:hover .maxxing-step {
    background: rgba(184, 233, 38, 0.2);
    color: #1A1A1A;
}

.maxxing-card:nth-child(odd):hover .maxxing-step {
    background: rgba(255, 77, 38, 0.12);
    color: var(--accent-dark);
}

.maxxing-card:nth-child(even):hover .maxxing-step {
    background: rgba(184, 233, 38, 0.25);
    color: #2b3e02;
}


/* ══════════════════════════════════════════════════
   SERVICES
   ══════════════════════════════════════════════════ */

.services-section {
    padding: 120px 0;
    background: var(--bg-alt);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

@media (min-width: 769px) {
    .services-grid .service-card:last-child:nth-child(odd) {
        grid-column: span 2;
    }
}

.services-section .section-desc {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    margin-top: 10px;
    display: inline-block;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    user-select: none;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-4px);
}

/* Service Cards 1 & 3: Rouge-Orangé */
.service-card:nth-child(odd)::before {
    background: var(--accent);
}

.service-card:nth-child(odd):hover {
    border-color: var(--accent);
    box-shadow: 0 16px 40px rgba(255, 77, 38, 0.12);
}

.service-card:nth-child(odd) .service-icon {
    background: rgba(255, 77, 38, 0.1);
    color: var(--accent);
}

.service-card:nth-child(odd):hover .service-icon {
    background: var(--accent);
    color: var(--white);
}

.service-card:nth-child(odd) .service-action {
    color: var(--accent);
}

/* Service Cards 2 & 4: Vert Citron */
.service-card:nth-child(even)::before {
    background: var(--accent-lime);
}

.service-card:nth-child(even):hover {
    border-color: var(--accent-lime);
    box-shadow: 0 16px 40px rgba(184, 233, 38, 0.16);
}

.service-card:nth-child(even) .service-icon {
    background: rgba(184, 233, 38, 0.2);
    color: #384f04;
}

.service-card:nth-child(even):hover .service-icon {
    background: var(--accent-lime);
    color: #0F0F0F;
}

.service-card:nth-child(even) .service-action {
    color: #436104;
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 22px;
}

.service-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.92rem;
    font-weight: 600;
    opacity: 0.85;
    transform: translateX(-4px);
    transition: all 0.35s var(--ease);
}

.service-cta-text {
    position: relative;
    letter-spacing: -0.01em;
}

.service-cta-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--accent);
    transition: width 0.35s var(--ease);
}

.service-card:nth-child(odd) .service-cta-text::after {
    background: var(--accent);
}

.service-card:nth-child(even) .service-cta-text::after {
    background: var(--accent-lime-dark);
}

.service-arrow {
    font-size: 1.2rem;
    display: inline-block;
    transition: transform 0.35s var(--ease);
}

.service-card:hover .service-action {
    opacity: 1;
    transform: translateX(0);
}

.service-card:nth-child(odd):hover .service-action {
    color: var(--accent-dark);
}

.service-card:nth-child(even):hover .service-action {
    color: #436104;
}

.service-card:hover .service-cta-text::after {
    width: 100%;
}

.service-card:hover .service-arrow {
    transform: translateX(6px);
}


/* ══════════════════════════════════════════════════
   PORTFOLIO (SYNCHRONISÉ BEHANCE)
   ══════════════════════════════════════════════════ */

.portfolio-section {
    padding: 120px 0;
}


.portfolio-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.filter-btn {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    padding: 10px 22px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s var(--ease);
}

.filter-btn:hover {
    color: var(--text);
    transform: translateY(-1px);
}

.filter-btn:nth-child(odd):hover {
    border-color: var(--accent);
}

.filter-btn:nth-child(even):hover {
    border-color: var(--accent-lime);
}

.filter-btn.active {
    background: var(--text);
    color: var(--white);
    border-color: var(--text);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    transition: opacity 0.3s ease;
}

.project-card {
    cursor: pointer;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(200, 169, 126, 0.5);
}

.project-card.hidden {
    display: none;
}

.project-image {
    position: relative;
    aspect-ratio: 16/11;
    overflow: hidden;
    background: #f0ede6;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card:hover .project-image img {
    transform: scale(1.06);
}

.project-category-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(15, 15, 15, 0.72);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    z-index: 2;
    letter-spacing: 0.02em;
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 15, 15, 0.82) 0%, rgba(15, 15, 15, 0.2) 60%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 2;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.25s ease;
}

.project-view-btn:hover {
    background: var(--white);
    color: var(--bg-dark);
}

.project-meta {
    padding: 20px 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: var(--white);
}

.project-meta h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
    margin: 0;
    transition: color 0.3s;
}

.project-card:nth-child(odd):hover .project-meta h3 {
    color: var(--accent-dark);
}

.project-card:nth-child(odd) .project-behance-direct {
    color: var(--accent-dark);
}

.project-card:nth-child(even):hover .project-meta h3 {
    color: #436104;
}

.project-card:nth-child(even) .project-behance-direct {
    color: #436104;
}

.project-card:nth-child(even) .project-view-btn:hover {
    background: var(--accent-lime);
    color: #0F0F0F;
    border-color: var(--accent-lime);
}

.project-tag {
    font-size: 0.82rem;
    color: var(--text-secondary);
}

.project-behance-direct {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.78rem;
    color: var(--accent-dark);
    font-weight: 600;
    margin-top: 6px;
}

.portfolio-cta-footer {
    text-align: center;
    margin-top: 60px;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0 16px;
    box-sizing: border-box;
}

.portfolio-cta-footer .btn {
    max-width: 100%;
    box-sizing: border-box;
}

.btn-modal-behance {
    margin-top: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 16px 24px;
    font-size: 1rem;
    font-weight: 600;
    white-space: normal;
    text-align: center;
    line-height: 1.35;
    background: var(--text);
    color: var(--white);
    border-radius: var(--radius-full);
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s var(--ease);
}

.btn-modal-behance span {
    display: inline-block;
    max-width: 100%;
}

.btn-modal-behance svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    transition: transform 0.3s var(--ease);
}

.btn-modal-behance:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(200, 169, 126, 0.4);
}

.btn-modal-behance:hover svg {
    transform: translate(2px, -2px);
}


/* ══════════════════════════════════════════════════
   FOUNDER
   ══════════════════════════════════════════════════ */

.founder-section {
    padding: 120px 0;
    background: var(--bg-alt);
}

.founder-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.founder-img-wrapper {
    position: relative;
    z-index: 2;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 3/4;
}

.founder-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s ease;
}

.founder-img-wrapper:hover img {
    transform: scale(1.05);
}

.founder-image-col {
    position: relative;
}

.founder-accent-box {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 70%;
    height: 70%;
    background: var(--accent-lime);
    border-radius: var(--radius);
    z-index: 1;
    opacity: 0.45;
    box-shadow: 0 10px 40px rgba(184, 233, 38, 0.3);
}

.founder-quote {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--accent-dark);
    margin-bottom: 24px;
    line-height: 1.5;
}

.founder-bio {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 16px;
    line-height: 1.7;
}

.founder-links {
    display: flex;
    gap: 20px;
    margin-top: 28px;
}

.founder-social {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text);
    padding: 10px 20px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-full);
    transition: all 0.3s;
}

.founder-social:first-child:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.founder-social:last-child:hover {
    border-color: var(--accent-lime-dark);
    color: #436104;
}

/* ══════════════════════════════════════════════════
   L'ÉQUIPE (TEAM)
   ══════════════════════════════════════════════════ */

.team-section {
    padding: 120px 0;
    background: var(--bg);
    position: relative;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.team-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}

.team-card:hover {
    transform: translateY(-6px);
}

/* Alternance des accents : pairs et impairs */
.team-card:nth-child(odd):hover {
    border-color: var(--accent);
    box-shadow: 0 16px 40px rgba(255, 77, 38, 0.12);
}

.team-card:nth-child(odd) .team-role {
    color: var(--accent);
}

.team-card:nth-child(even):hover {
    border-color: var(--accent-lime-dark);
    box-shadow: 0 16px 40px rgba(184, 233, 38, 0.16);
}

.team-card:nth-child(even) .team-role {
    color: #436104;
}

.team-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    background: #F4F4F2;
    overflow: hidden;
}

.team-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--ease);
}

.team-card:hover .team-img-wrapper img {
    transform: scale(1.04);
}

.team-info {
    padding: 22px 20px 26px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: var(--white);
}

.team-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.01em;
    margin: 0;
}

.team-role {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin: 0;
    transition: color 0.3s ease;
}



/* ══════════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════════ */

/* ══════════════════════════════════════════════════
   TESTIMONIALS (AVIS CLIENTS RÉELS)
   ══════════════════════════════════════════════════ */

.testimonials-section {
    padding: 120px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 34px;
    transition: all 0.4s var(--ease);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    transform: translateY(-4px);
}

/* Témoignages 1, 3, 5 : Rouge-Orangé */
.testimonial-card:nth-child(odd):hover {
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(255, 77, 38, 0.12);
}

.testimonial-card:nth-child(odd) .testimonial-stars {
    color: var(--accent);
}

.testimonial-card:nth-child(odd) .author-avatar {
    background: var(--accent);
    color: var(--white);
}

.testimonial-card:nth-child(odd) .testimonial-badge-tag {
    background: rgba(184, 233, 38, 0.18);
    border: 1px solid rgba(184, 233, 38, 0.4);
    color: #384f04;
}

/* Témoignages 2, 4 : Vert Citron */
.testimonial-card:nth-child(even):hover {
    border-color: var(--accent-lime);
    box-shadow: 0 20px 40px rgba(184, 233, 38, 0.18);
}

.testimonial-card:nth-child(even) .testimonial-stars {
    color: #7ba308;
}

.testimonial-card:nth-child(even) .author-avatar {
    background: var(--accent-lime);
    color: #0F0F0F;
    font-weight: 800;
}

.testimonial-card:nth-child(even) .testimonial-badge-tag {
    background: rgba(255, 77, 38, 0.08);
    border: 1px solid rgba(255, 77, 38, 0.25);
    color: var(--accent);
}

.testimonial-card:nth-child(odd) .author-project-detail {
    color: var(--accent);
}

.testimonial-card:nth-child(even) .author-project-detail {
    color: #557b03;
}

.testimonial-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.testimonial-badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
}

.testimonial-stars {
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 24px;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.author-info strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text);
}

.author-info span {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.author-info .author-project-detail {
    display: block;
    font-size: 0.75rem;
    color: var(--accent-lime-dark);
    font-weight: 700;
    margin-top: 2px;
}


/* ══════════════════════════════════════════════════
   FORMATIONS
   ══════════════════════════════════════════════════ */

.formations-section {
    padding: 120px 0;
    background: var(--bg-alt);
}

.formations-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.formations-list {
    list-style: none;
    margin: 32px 0;
}

.formations-list li {
    display: flex;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
}

.formations-list li:first-child {
    padding-top: 0;
}

.formation-bullet {
    font-size: 0.8rem;
    font-weight: 700;
    min-width: 28px;
    padding-top: 3px;
}

.formations-list li:nth-child(odd) .formation-bullet {
    color: var(--accent);
}

.formations-list li:nth-child(even) .formation-bullet {
    color: #5c8005;
}

.formations-list strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.formations-list p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.formations-image {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/5;
}

.formations-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* ══════════════════════════════════════════════════
   NEWSLETTER / LE CERCLE PRIVÉ AIDA
   ══════════════════════════════════════════════════ */

.newsletter-section {
    padding: 60px 0 100px;
    position: relative;
}

.newsletter-card {
    background: #0E0E0E;
    color: var(--white);
    border: 1px solid rgba(200, 169, 126, 0.25);
    border-radius: var(--radius);
    padding: 70px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.newsletter-glow {
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 350px;
    background: radial-gradient(circle, rgba(200, 169, 126, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.newsletter-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    background: rgba(200, 169, 126, 0.1);
    border: 1px solid rgba(200, 169, 126, 0.25);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gold-light);
    margin-bottom: 24px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.newsletter-title {
    font-size: clamp(1.8rem, 3.8vw, 2.7rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.newsletter-title em {
    font-family: var(--font-serif);
    font-weight: 500;
    font-style: italic;
    color: var(--gold);
}

.newsletter-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.65);
    max-width: 620px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

.newsletter-perks {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.perk-item {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 6px 14px;
    border-radius: var(--radius-full);
}

.newsletter-form {
    max-width: 560px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.newsletter-input-wrap {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 16px;
}

.newsletter-field {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.newsletter-icon {
    position: absolute;
    left: 18px;
    color: var(--gold);
    pointer-events: none;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.newsletter-input {
    width: 100%;
    padding: 16px 20px 16px 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-full);
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s var(--ease);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-input:focus {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(200, 169, 126, 0.18);
}

.newsletter-field:focus-within .newsletter-icon {
    opacity: 1;
}

.btn-newsletter {
    background: var(--gold) !important;
    color: #0F0F0F !important;
    border-color: var(--gold) !important;
    padding: 16px 28px;
    font-size: 0.95rem;
    white-space: nowrap;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 20px rgba(200, 169, 126, 0.3);
}

.btn-newsletter:hover {
    background: #DFC49D !important;
    box-shadow: 0 8px 30px rgba(200, 169, 126, 0.5);
    transform: translateY(-2px);
}

.newsletter-privacy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
}

.newsletter-privacy svg {
    color: var(--gold);
    flex-shrink: 0;
}

.newsletter-feedback {
    margin-top: 20px;
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    display: none;
    animation: fadeIn 0.4s ease;
}

.newsletter-feedback.success {
    display: block;
    background: rgba(46, 204, 113, 0.12);
    border: 1px solid rgba(46, 204, 113, 0.3);
    color: #2ECC71;
}

.newsletter-feedback.error {
    display: block;
    background: rgba(231, 76, 60, 0.12);
    border: 1px solid rgba(231, 76, 60, 0.3);
    color: #E74C3C;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}


/* ══════════════════════════════════════════════════
   CTA SECTION
   ══════════════════════════════════════════════════ */

.cta-section {
    padding: 120px 0;
    background: var(--bg-dark);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200, 169, 126, 0.15), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
    position: relative;
}

.cta-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 560px;
    margin: 0 auto 40px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}


/* ══════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════ */

.footer {
    background: var(--bg-dark);
    color: var(--white);
    padding: 80px 0 30px;
    border-top: 1px solid var(--border-light);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.5);
    margin: 16px 0 24px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s;
}

.footer-socials a:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.footer-col h4 {
    font-size: 0.95rem;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-light);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: var(--accent);
}


/* ══════════════════════════════════════════════════
   WHATSAPP
   ══════════════════════════════════════════════════ */

.whatsapp-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 90;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s var(--ease);
}

.whatsapp-btn:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.4);
}


/* ══════════════════════════════════════════════════
   PROJECT MODAL
   ══════════════════════════════════════════════════ */

.project-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease);
    padding: 20px;
}

.project-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.project-modal-content {
    background: var(--bg);
    width: 100%;
    max-width: 900px;
    max-height: 85vh;
    border-radius: var(--radius);
    position: relative;
    transform: translateY(30px) scale(0.96);
    transition: transform 0.4s var(--ease-spring);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.project-modal.active .project-modal-content {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    color: var(--text);
    transition: all 0.3s;
}

.modal-close:hover {
    background: var(--text);
    color: var(--white);
    transform: rotate(90deg);
}

.modal-body {
    padding: 48px;
    overflow-y: auto;
    flex: 1;
}

.modal-body h2 {
    font-size: 2rem;
    margin-bottom: 8px;
}

.modal-body .modal-subtitle {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.modal-body img {
    width: 100%;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
}

.modal-body p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.7;
}

.modal-body .modal-services {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.modal-body .modal-service-tag {
    padding: 6px 16px;
    background: rgba(200, 169, 126, 0.1);
    color: var(--accent-dark);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
}


/* ══════════════════════════════════════════════════
   RESPONSIVE (TABLET, MOBILE, DESKTOP)
   ══════════════════════════════════════════════════ */

/* ─── 1. Tablets & Small Laptops (<= 1080px & All Touch Tablets) ─── */
@media (max-width: 1080px), (hover: none) and (pointer: coarse) and (max-width: 1280px) {
    .container {
        padding: 0 24px;
    }

    /* Menu Hamburger activé pour TOUTES les tablettes — liens texte masqués */
    .nav-links {
        display: none !important;
    }

    /* Le bouton Réserver un appel reste TOUJOURS visible en haut */
    .btn-nav {
        display: inline-flex !important;
        padding: 9px 18px;
        font-size: 0.82rem;
        flex-shrink: 0;
    }

    .nav-right {
        gap: 12px;
    }

    .menu-toggle {
        display: flex !important;
    }

    .cursor-ring,
    .cursor-dot {
        display: none !important;
    }

    .navbar {
        height: 70px;
    }

    .nav-container {
        padding: 0 24px;
    }

    .mobile-nav {
        padding: 85px 24px 40px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .mobile-nav-inner {
        gap: 20px;
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
    }

    .mobile-link {
        font-size: clamp(1.35rem, 4vw, 1.85rem);
    }

    .btn-mobile-cta {
        width: 100%;
        max-width: 320px;
    }

    .hero {
        padding: 100px 24px 40px;
    }

    .title-line {
        font-size: clamp(2.4rem, 5.5vw, 3.8rem);
    }

    .aida-grid, .maxxing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .founder-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .founder-image-col {
        max-width: 440px;
        margin: 0 auto;
    }

    .founder-text-col {
        max-width: 720px;
        margin: 0 auto;
    }

    /* Équipe */
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .formations-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .formations-image {
        max-width: 580px;
        margin: 0 auto;
        aspect-ratio: 16/10;
    }

    .formations-text {
        max-width: 720px;
        margin: 0 auto;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

/* ─── 2. Smartphones & Small Tablets (<= 768px) ─── */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 16px;
    }

    .btn-nav {
        display: inline-flex !important;
        padding: 8px 14px;
        font-size: 0.78rem;
    }

    .nav-right {
        gap: 8px;
    }

    .mobile-nav {
        padding: 80px 20px 40px;
    }

    .mobile-nav-inner {
        max-width: 320px;
    }

    .btn-mobile-cta {
        max-width: 300px;
    }

    .method-section,
    .services-section,
    .portfolio-section,
    .founder-section,
    .team-section,
    .testimonials-section,
    .formations-section,
    .cta-section {
        padding: 70px 0;
    }

    .section-header {
        margin-bottom: 36px;
    }

    .section-title {
        font-size: clamp(1.85rem, 6vw, 2.5rem);
    }

    .section-desc {
        font-size: 0.95rem;
    }

    /* Hero */
    .hero {
        padding: 85px 20px 30px;
        min-height: auto;
    }

    .hero-badge {
        font-size: 0.76rem;
        padding: 6px 14px;
        white-space: normal;
        text-align: center;
        max-width: 100%;
        line-height: 1.35;
    }

    .title-line {
        font-size: clamp(1.95rem, 7.5vw, 2.8rem);
        line-height: 1.15;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 28px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 12px;
        margin-bottom: 36px;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 320px;
    }

    .hero-stats {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        max-width: 380px;
        margin: 0 auto;
        gap: 8px;
        padding-top: 24px;
    }

    .stat {
        flex: 1;
        text-align: center;
    }

    .stat-number {
        font-size: 1.35rem;
    }

    .stat-plus {
        font-size: 0.95rem;
    }

    .stat-label {
        font-size: 0.65rem;
        letter-spacing: 0.03em;
        line-height: 1.25;
        white-space: normal;
    }

    .stat-divider {
        height: 24px;
        flex-shrink: 0;
    }

    .hero-scroll-indicator {
        display: none;
    }

    /* Méthode */
    .maxxing-manifesto {
        padding: 28px 20px;
        margin: 20px auto 36px;
        border-radius: 12px;
    }

    .maxxing-quote {
        font-size: clamp(1.15rem, 4vw, 1.45rem);
        line-height: 1.4;
    }

    .maxxing-tags {
        gap: 8px;
    }

    .maxxing-tag {
        font-size: 0.76rem;
        padding: 5px 12px;
    }

    .aida-grid, .maxxing-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .aida-card, .maxxing-card {
        padding: 26px 20px;
        border-radius: 14px;
    }

    .maxxing-card h3 {
        font-size: 1.25rem;
    }

    .maxxing-card p {
        font-size: 0.92rem;
        margin-bottom: 18px;
    }

    .maxxing-steps {
        gap: 6px;
    }

    .maxxing-step {
        font-size: 0.72rem;
        padding: 4px 10px;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .service-card {
        padding: 26px 20px;
        border-radius: 14px;
    }

    .service-card h3 {
        font-size: 1.25rem;
    }

    .service-card p {
        font-size: 0.92rem;
    }

    /* Portfolio */
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .portfolio-filters {
        gap: 8px;
        margin-bottom: 28px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 0.82rem;
    }

    .portfolio-cta-footer {
        margin-top: 36px;
        padding: 0;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .portfolio-cta-footer .btn {
        width: 100%;
        max-width: 440px;
        padding: 14px 20px;
        font-size: 0.92rem;
        line-height: 1.35;
        white-space: normal;
        text-align: center;
        box-sizing: border-box;
        gap: 8px;
    }

    .portfolio-cta-footer .btn span {
        flex: 1 1 auto;
        text-align: center;
    }

    .portfolio-cta-footer .btn svg {
        flex-shrink: 0;
        width: 18px;
        height: 18px;
    }

    /* Fondatrice */
    .founder-layout {
        gap: 36px;
    }

    .founder-image-col {
        max-width: 380px;
        margin: 0 auto;
        width: 100%;
    }

    .founder-accent-box {
        bottom: -8px;
        left: -8px;
        width: 70%;
        height: 70%;
        border-radius: 12px;
    }

    .founder-quote {
        font-size: 1.15rem;
        margin-bottom: 18px;
    }

    .founder-bio {
        font-size: 0.95rem;
        line-height: 1.65;
    }

    .founder-links {
        gap: 12px;
        flex-wrap: wrap;
    }

    .founder-social {
        flex: 1 1 auto;
        max-width: 200px;
        justify-content: center;
        padding: 10px 16px;
        font-size: 0.88rem;
    }

    /* Équipe */
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .team-info {
        padding: 16px 14px 18px;
    }

    .team-name {
        font-size: 1.05rem;
    }

    .team-role {
        font-size: 0.78rem;
    }

    /* Témoignages */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .testimonial-card {
        padding: 24px 20px;
        border-radius: 14px;
    }

    .testimonial-top {
        flex-wrap: wrap;
        gap: 8px;
    }

    .testimonial-text {
        font-size: 0.92rem;
        line-height: 1.65;
        margin-bottom: 18px;
    }

    /* Formations */
    .formations-layout {
        gap: 36px;
    }

    .formations-image {
        max-width: 100%;
        aspect-ratio: 16/10;
        border-radius: 14px;
    }

    .formations-list li {
        padding: 18px 0;
        gap: 14px;
    }

    .formations-list strong {
        font-size: 1.05rem;
    }

    .formations-list p {
        font-size: 0.88rem;
    }

    .formations-text .btn {
        width: 100%;
        max-width: 340px;
    }

    /* Newsletter */
    .newsletter-section {
        padding: 30px 0 60px;
    }

    .newsletter-card {
        padding: 44px 20px;
        border-radius: 14px;
    }

    .newsletter-title {
        font-size: clamp(1.4rem, 5vw, 2rem);
    }

    .newsletter-desc {
        font-size: 0.92rem;
        margin-bottom: 24px;
    }

    .newsletter-input-wrap {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 100%;
    }

    .newsletter-field {
        width: 100%;
    }

    .newsletter-input {
        width: 100%;
        font-size: 0.92rem;
        padding: 14px 16px 14px 44px;
    }

    .btn-newsletter {
        width: 100%;
        padding: 14px 22px;
        justify-content: center;
        font-size: 0.92rem;
    }

    .newsletter-perks {
        flex-direction: column;
        gap: 8px;
        align-items: center;
        font-size: 0.82rem;
    }

    /* CTA Final */
    .cta-title {
        font-size: clamp(1.6rem, 5.5vw, 2.4rem);
    }

    .cta-desc {
        font-size: 0.92rem;
        margin-bottom: 30px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 12px;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 340px;
        white-space: normal;
        text-align: center;
        word-break: break-word;
    }

    /* Footer */
    .footer {
        padding: 60px 0 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-brand p {
        font-size: 0.9rem;
        margin: 12px 0 18px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 14px;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
        gap: 18px;
    }

    /* Modal */
    .project-modal {
        padding: 12px;
    }

    .project-modal-content {
        width: 100%;
        max-width: 100%;
        max-height: 90dvh;
        border-radius: 14px;
    }

    .modal-close {
        top: 10px;
        right: 10px;
        width: 36px;
        height: 36px;
    }

    .modal-body {
        padding: 24px 16px 20px;
    }

    .modal-body h2 {
        font-size: 1.35rem;
        padding-right: 32px;
    }

    .btn-modal-behance {
        width: 100% !important;
        padding: 13px 16px !important;
        font-size: 0.9rem !important;
        white-space: normal !important;
        text-align: center !important;
        justify-content: center !important;
    }

    .whatsapp-btn {
        bottom: calc(16px + env(safe-area-inset-bottom, 0px));
        right: 16px;
        width: 48px;
        height: 48px;
    }
}

/* ─── 3. Mobile Phones (<= 480px) ─── */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .nav-container {
        padding: 0 14px;
    }

    .btn-nav {
        padding: 7px 11px;
        font-size: 0.74rem;
    }

    .nav-right {
        gap: 6px;
    }

    .menu-toggle {
        padding: 4px;
    }

    .logo-brand {
        font-size: 1.05rem;
    }

    .logo-by {
        font-size: 1rem;
    }

    .logo-fatimah {
        font-size: 1.2rem;
    }

    .hero {
        padding: 78px 16px 24px;
    }

    .hero-stats {
        gap: 4px;
        max-width: 330px;
    }

    .stat-number {
        font-size: 1.25rem;
    }

    .stat-plus {
        font-size: 0.88rem;
    }

    .stat-label {
        font-size: 0.58rem;
    }

    .stat-divider {
        height: 20px;
    }

    .hero-cta .btn {
        max-width: 100%;
    }

    .portfolio-cta-footer .btn {
        padding: 13px 16px;
        font-size: 0.85rem;
    }

    .maxxing-card {
        padding: 22px 16px;
    }

    .service-card {
        padding: 22px 16px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        max-width: 340px;
        margin: 0 auto;
    }

    .team-card {
        border-radius: 14px;
    }

    .testimonial-card {
        padding: 22px 16px;
    }

    .author-avatar {
        width: 38px;
        height: 38px;
        font-size: 0.78rem;
    }

    .founder-social {
        max-width: 100%;
        width: 100%;
    }

    .founder-links {
        flex-direction: column;
        align-items: stretch;
    }

    .formations-text .btn,
    .cta-buttons .btn {
        max-width: 100%;
    }
}

/* ─── 4. Extra Small Screens (<= 360px) ─── */
@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }

    .logo-brand {
        font-size: 0.95rem;
    }

    .logo-by {
        font-size: 0.92rem;
    }

    .logo-fatimah {
        font-size: 1.1rem;
    }

    .hero-stats {
        gap: 2px;
    }

    .stat-label {
        font-size: 0.52rem;
    }

    .filter-btn {
        padding: 6px 12px;
        font-size: 0.76rem;
    }

    .btn {
        padding: 12px 16px;
        font-size: 0.85rem;
    }
}

/* ─── Ultra Small Screens (<= 380px) ─── */
@media (max-width: 380px) {
    .btn-nav-text {
        display: none;
    }

    .btn-nav-short {
        display: inline;
    }

    .btn-nav {
        padding: 6px 9px;
        font-size: 0.72rem;
    }
}