/* ==============================================
   HERO — Arena Futuriste (Home)
   ============================================== */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: var(--nav-height);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    background-size: 300% 300%;
    animation: gradientShift 20s ease infinite;
    will-change: background-position;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    33% { background-position: 100% 50%; }
    66% { background-position: 50% 100%; }
    100% { background-position: 0% 50%; }
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(var(--red-rgb),0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(var(--red-rgb),0.2) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center,
        rgba(5,5,8,0.4) 0%,
        rgba(5,5,8,0.8) 100%);
}

/* Geometric decorative elements */
.hero-geometry {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.geo-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(var(--red-rgb),0.12), transparent);
    height: 1px;
}

.geo-line-1 {
    top: 30%;
    left: -10%;
    width: 120%;
    transform: rotate(-5deg);
}

.geo-line-2 {
    bottom: 25%;
    left: -10%;
    width: 120%;
    transform: rotate(3deg);
}

.geo-corner {
    position: absolute;
    width: 80px;
    height: 80px;
    border: 2px solid rgba(var(--red-rgb),0.15);
}

.geo-corner-tl {
    top: 15%;
    left: 5%;
    border-right: none;
    border-bottom: none;
}

.geo-corner-br {
    bottom: 15%;
    right: 5%;
    border-left: none;
    border-top: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 950px;
    padding: 0 var(--space-md);
}

/* HUD label */
.hero-hud-label {
    font-family: var(--font-display);
    font-size: 10px;
    letter-spacing: 0.3em;
    color: var(--primary-yellow);
    text-shadow: var(--glow-yellow);
    margin-bottom: var(--space-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.hud-dot {
    width: 6px;
    height: 6px;
    background: var(--primary-yellow);
    border-radius: 50%;
    box-shadow: var(--glow-yellow);
    animation: pulse 2s ease-in-out infinite;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg,
        rgba(var(--yellow-rgb),0.15),
        rgba(var(--yellow-rgb),0.05));
    color: var(--primary-yellow);
    padding: 10px 24px;
    border-radius: 0;
    clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: var(--space-md);
    border: 1px solid rgba(var(--red-rgb),0.3);
    box-shadow: 0 0 20px rgba(var(--red-rgb),0.15);
    animation: float 3s ease-in-out infinite;
}

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

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(40px, 8vw, 76px);
    font-weight: 900;
    letter-spacing: 0.05em;
    line-height: 1.1;
    margin-bottom: var(--space-md);
    text-shadow: 0 0 40px rgba(0,0,0,0.5);
}

.hero h1 .highlight {
    background: var(--gradient-yellow);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    filter: drop-shadow(0 0 20px rgba(var(--yellow-rgb),0.4));
}

.hero-subtitle {
    font-size: clamp(17px, 2.5vw, 21px);
    color: #FFFFFF;
    margin-bottom: var(--space-xs);
    font-weight: 500;
    line-height: 1.8;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-subtitle-secondary {
    font-size: clamp(15px, 2vw, 18px);
    color: rgba(255,255,255,0.65);
    margin-bottom: var(--space-sm);
    font-weight: 400;
    line-height: 1.8;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* --- Hero Title + Photo Row --- */
.hero-title-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: var(--space-xs);
}

.hero-photo {
    flex-shrink: 0;
    width: 240px;
    height: 240px;
    overflow: hidden;
    border-radius: 12px;
    transform: rotate(-6deg);
    margin-right: -8px;
    transition: transform 0.4s var(--ease-smooth);
}

.hero-photo:hover {
    transform: rotate(0deg) scale(1.05);
}

.hero-photo-placeholder {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: var(--gradient-dark);
    border: 3px solid var(--primary-yellow);
    box-shadow: 0 0 30px rgba(var(--yellow-rgb),0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 900;
    color: var(--primary-yellow);
    transition: all 0.4s var(--ease-smooth);
    overflow: hidden;
}

.hero-photo-placeholder:hover {
    transform: scale(1.05);
    box-shadow: var(--glow-yellow);
    border-color: var(--primary-yellow);
}

.hero-photo-img {
    width: 240px;
    height: 240px;
    border-radius: 12px;
    object-fit: cover;
    object-position: center 20%;
    transform: scale(1.15);
    border: 3px solid var(--primary-yellow);
    box-shadow: 0 0 30px rgba(var(--yellow-rgb),0.25);
    transition: all 0.4s var(--ease-smooth);
}

/* --- Clients Logos Grid --- */
.hero-clients-logos {
    margin-top: var(--space-sm);
}

.hero-clients-label {
    display: block;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.5);
    margin-bottom: var(--space-md);
}

.client-logos-grid {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
}

.client-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 90px;
    transition: all 0.3s var(--ease-smooth);
}

.client-logo-item:hover {
    transform: translateY(-4px);
}

.client-logo-placeholder {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.4);
    transition: all 0.4s var(--ease-smooth);
}

.client-logo-item:hover .client-logo-placeholder {
    background: rgba(255,255,255,0.1);
    border-color: var(--primary-yellow);
    box-shadow: 0 0 20px rgba(var(--yellow-rgb),0.15);
    transform: scale(1.1);
    color: var(--primary-yellow);
}

.client-logo-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
    transition: all 0.4s var(--ease-smooth);
}

.client-logo-item:hover .client-logo-placeholder img {
    transform: scale(1.05);
}

.client-logo-placeholder[data-client="NFL"] img {
    padding: 6px;
}

.client-logo-name {
    font-family: var(--font-display);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    transition: color 0.3s;
    text-align: center;
    max-width: 90px;
    line-height: 1.3;
}

.client-logo-item:hover .client-logo-name {
    color: rgba(255,255,255,0.6);
}

.hero-cta {
    display: inline-flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: var(--space-xs);
}


/* --- Clients Hero --- */
.hero-clients {
    margin-top: var(--space-lg);
    opacity: 0.8;
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.client-logos {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    justify-content: center;
    margin-top: var(--space-sm);
}

.client-logo {
    background: rgba(var(--red-rgb),0.05);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 0;
    clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    border: 1px solid rgba(var(--red-rgb),0.2);
    transition: all 0.3s var(--ease-smooth);
    color: rgba(255,255,255,0.7);
}

.client-logo:hover {
    background: rgba(var(--red-rgb),0.15);
    border-color: var(--accent-red);
    color: var(--accent-red);
    box-shadow: var(--glow-accent);
    transform: translateY(-2px);
}

/* --- Scroll indicator --- */
.scroll-indicator {
    position: absolute;
    bottom: var(--space-md);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.scroll-chevron {
    display: block;
    width: 16px;
    height: 16px;
    border-right: 2px solid var(--accent-red);
    border-bottom: 2px solid var(--accent-red);
    transform: rotate(45deg);
    animation: bounce 2s ease infinite;
    filter: drop-shadow(0 0 6px rgba(var(--red-rgb),0.6));
}

.scroll-chevron:nth-child(2) {
    animation-delay: 0.2s;
    opacity: 0.5;
}

@keyframes bounce {
    0%, 100% { transform: rotate(45deg) translateY(0); opacity: 1; }
    50% { transform: rotate(45deg) translateY(8px); opacity: 0.4; }
}

/* ==============================================
   STATS — Dark HUD
   ============================================== */
.stats {
    background: var(--primary-black);
    color: var(--white);
    padding: var(--space-xl) var(--space-md);
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-red), var(--primary-yellow), var(--accent-red), transparent);
}

.stats-scanline {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(var(--red-rgb),0.015) 2px,
        rgba(var(--red-rgb),0.015) 4px
    );
    pointer-events: none;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.stat-item {
    text-align: center;
    padding: var(--space-md);
    border-radius: 4px;
    background: rgba(var(--red-rgb),0.03);
    border: 1px solid rgba(var(--red-rgb),0.1);
    position: relative;
    transition: all 0.4s var(--ease-bounce);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-red);
    transform: scaleX(0);
    transition: transform 0.5s var(--ease-smooth);
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-item:hover {
    background: rgba(var(--red-rgb),0.08);
    border-color: rgba(var(--red-rgb),0.3);
    box-shadow: var(--glow-accent);
    transform: translateY(-8px);
}

.stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin: 0 auto var(--space-xs);
    border-radius: 50%;
    background: rgba(26,26,26,0.8);
    transition: all 0.4s var(--ease-smooth);
}

.stat-icon svg {
    display: block;
}

.stat-icon--yellow {
    color: var(--primary-yellow);
    box-shadow: 0 0 20px rgba(var(--yellow-rgb),0.15);
}

.stat-icon--red {
    color: var(--primary-red);
    box-shadow: 0 0 20px rgba(var(--red-rgb),0.15);
}

.stat-item:hover .stat-icon {
    transform: rotate(8deg) scale(1.1);
}

.stat-item:hover .stat-icon--yellow {
    box-shadow: 0 0 30px rgba(var(--yellow-rgb),0.35);
}

.stat-item:hover .stat-icon--red {
    box-shadow: 0 0 30px rgba(var(--red-rgb),0.35);
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 900;
    color: var(--primary-yellow);
    text-shadow: var(--glow-yellow);
    letter-spacing: 0.05em;
    line-height: 1.1;
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(255,255,255,0.92);
}

.stat-bar {
    width: 40px;
    height: 2px;
    background: #6c6d75;
    margin: var(--space-xs) auto 0;
    border-radius: 1px;
}

/* ==============================================
   PLATEFORMES
   ============================================== */
.platforms {
    background: var(--dark-gray);
    padding: var(--space-lg) var(--space-md);
    border-top: 1px solid rgba(var(--red-rgb),0.08);
    border-bottom: 1px solid rgba(var(--red-rgb),0.08);
}

.platforms-label {
    text-align: center;
    font-family: var(--font-display);
    font-size: 12px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin-bottom: var(--space-md);
}

.platforms-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.platform-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: all 0.3s var(--ease-smooth);
    cursor: default;
}

.platform-item:hover {
    transform: translateY(-6px) scale(1.15);
}

.platform-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.platform-icon svg {
    width: 48px;
    height: 48px;
    fill: #6c6d75;
    transition: all 0.3s var(--ease-smooth);
}

.platform-item:hover .platform-icon svg {
    fill: var(--brand-color, #fff);
    filter: drop-shadow(0 0 12px var(--brand-color, rgba(255,255,255,0.3)));
}

/* Brand colors on hover */
.platform-item[data-brand-color="#000000"]:hover .platform-icon svg { fill: #fff; filter: drop-shadow(0 0 12px rgba(255,255,255,0.3)); }
.platform-item[data-brand-color="#E4405F"]:hover .platform-icon svg { fill: #E4405F; filter: drop-shadow(0 0 12px rgba(228,64,95,0.5)); }
.platform-item[data-brand-color="#FFFC00"]:hover .platform-icon svg { fill: #FFFC00; filter: drop-shadow(0 0 12px rgba(255,252,0,0.4)); }
.platform-item[data-brand-color="#FF0000"]:hover .platform-icon svg { fill: #FF0000; filter: drop-shadow(0 0 12px rgba(255,0,0,0.5)); }
.platform-item[data-brand-color="#0A66C2"]:hover .platform-icon svg { fill: #0A66C2; filter: drop-shadow(0 0 12px rgba(10,102,194,0.5)); }

/* Snapchat img — même comportement que les SVGs */
.platform-icon img {
    width: 48px;
    height: 48px;
    filter: brightness(0) invert(1) opacity(0.42);
    transition: all 0.3s var(--ease-smooth);
}

.platform-item[data-brand-color="#FFFC17"]:hover .platform-icon img {
    filter: brightness(0) invert(1) sepia(1) saturate(100) drop-shadow(0 0 12px rgba(255,252,23,0.55));
}

.platform-name {
    font-family: var(--font-display);
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    transition: color 0.3s;
}

.platform-item:hover .platform-name {
    color: rgba(255,255,255,0.9);
}


/* ==============================================
   SERVICES
   ============================================== */
.services {
    background: var(--primary-black);
    padding: var(--space-xl) var(--space-md);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 40px,
        rgba(var(--red-rgb),0.015) 40px,
        rgba(var(--red-rgb),0.015) 41px
    );
    pointer-events: none;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
}

.service-card {
    padding: 40px 32px;
    border-radius: 16px;
    background: #1A1A1A;
    border: 1px solid #2A2A2A;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.5s var(--ease-bounce), box-shadow 0.5s, border-color 0.4s;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.4);
}

.service-card[data-accent="#6c6d75"]:hover { border-color: #6c6d75; }
.service-card[data-accent="#ffbe0a"]:hover { border-color: var(--primary-yellow); }
.service-card[data-accent="#91171f"]:hover { border-color: var(--primary-red); }

/* --- Icon SVG --- */
.service-icon-svg {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    transition: transform 0.4s var(--ease-smooth);
}

.service-icon-svg svg {
    transition: transform 0.4s var(--ease-smooth);
}

.service-card:hover .service-icon-svg svg {
    transform: scale(1.1) rotate(6deg);
}

.service-title {
    font-family: var(--font-display);
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--white);
    margin-bottom: var(--space-sm);
    transition: color 0.3s;
}

.service-card:hover .service-title {
    color: var(--primary-yellow);
}

.service-desc {
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255,255,255,0.65);
    margin-bottom: var(--space-md);
}

.service-desc-highlight {
    color: var(--primary-yellow);
    font-weight: 700;
}

/* --- Badge (Live Match) --- */
.service-badge {
    display: inline-block;
    padding: 10px 16px;
    background: rgba(var(--red-rgb),0.15);
    border: 1px solid var(--primary-red);
    border-radius: 100px;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #fff;
    margin-bottom: var(--space-md);
}

/* --- CTA bouton outline --- */
.service-cta {
    display: inline-block;
    padding: 12px 32px;
    border: 2px solid #6c6d75;
    border-radius: 8px;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s var(--ease-smooth);
    text-align: center;
}

.service-cta:hover {
    transform: translateY(-2px);
}

.service-card[data-accent="#6c6d75"] .service-cta:hover {
    border-color: #6c6d75;
    background: rgba(var(--gray-rgb),0.1);
    box-shadow: 0 0 20px rgba(var(--gray-rgb),0.2);
}

.service-card[data-accent="#ffbe0a"] .service-cta:hover {
    border-color: var(--primary-yellow);
    background: rgba(var(--yellow-rgb),0.1);
    box-shadow: 0 0 20px rgba(var(--yellow-rgb),0.2);
}

.service-card[data-accent="#91171f"] .service-cta:hover {
    border-color: var(--primary-red);
    background: rgba(var(--red-rgb),0.1);
    box-shadow: 0 0 20px rgba(var(--red-rgb),0.2);
}

/* ==============================================
   PROCESSUS — Timeline
   ============================================== */
.process {
    background: var(--dark-gray);
    padding: var(--space-xl) var(--space-md);
    position: relative;
}

.process-container {
    max-width: 900px;
    margin: 0 auto;
}

.process-timeline {
    position: relative;
    padding-left: 80px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 35px;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent-red), var(--primary-yellow), var(--primary-red));
    opacity: 0.3;
}

.process-step {
    position: relative;
    margin-bottom: var(--space-md);
    padding: var(--space-md);
    background: rgba(var(--red-rgb),0.03);
    border: 1px solid rgba(var(--red-rgb),0.08);
    border-radius: 4px;
    transition: all 0.4s var(--ease-smooth);
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-step:hover {
    border-color: rgba(var(--red-rgb),0.25);
    background: rgba(var(--red-rgb),0.06);
    transform: translateX(8px);
    box-shadow: var(--glow-accent);
}

.step-number {
    position: absolute;
    left: -68px;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 900;
    color: var(--accent-red);
    text-shadow: var(--glow-accent);
    width: 50px;
    text-align: center;
}

.step-timeline {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--primary-yellow);
    background: rgba(var(--yellow-rgb),0.1);
    border: 1px solid rgba(var(--yellow-rgb),0.25);
    border-radius: 100px;
    padding: 4px 12px;
    margin-bottom: var(--space-xs);
}

.step-title {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--white);
    margin-bottom: var(--space-xs);
}

.step-desc {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255,255,255,0.82);
    margin-bottom: var(--space-sm);
}

.step-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 6px 14px;
    border-radius: 100px;
    transition: all 0.3s var(--ease-smooth);
}

.step-badge svg {
    flex-shrink: 0;
}

.step-badge--yellow {
    color: var(--primary-yellow);
    background: rgba(var(--yellow-rgb),0.1);
    border: 1px solid rgba(var(--yellow-rgb),0.3);
}

.step-badge--gray {
    color: #6c6d75;
    background: rgba(var(--gray-rgb),0.1);
    border: 1px solid rgba(var(--gray-rgb),0.3);
}

.step-badge--red {
    color: var(--primary-red);
    background: rgba(var(--red-rgb),0.15);
    border: 1px solid rgba(var(--red-rgb),0.3);
}

.process-step:hover .step-badge--yellow { background: rgba(var(--yellow-rgb),0.2); }
.process-step:hover .step-badge--gray { background: rgba(var(--gray-rgb),0.2); }
.process-step:hover .step-badge--red { background: rgba(var(--red-rgb),0.25); }

/* ==============================================
   PORTFOLIO — Home
   ============================================== */
.portfolio {
    background: var(--primary-black);
    color: var(--white);
}

.portfolio .section-header {
    padding-top: var(--space-xl);
}

.portfolio .section-title {
    background: var(--gradient-yellow);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.portfolio-case {
    display: grid;
    grid-template-columns: 2fr 3fr;
    min-height: 550px;
    position: relative;
    border-bottom: 1px solid rgba(var(--red-rgb),0.06);
}

.portfolio-case:nth-child(even) {
    grid-template-columns: 3fr 2fr;
}

.portfolio-case:nth-child(even) .case-image {
    order: 2;
}

.portfolio-case:nth-child(even) .case-content {
    order: 1;
}

.case-image {
    background: var(--dark-gray);
    overflow: hidden;
    position: relative;
    font-size: 0;
    line-height: 0;
}

.case-image > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.case-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(5,5,8,0.7) 0%, rgba(var(--red-rgb),0.12) 100%),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(var(--red-rgb),0.02) 2px,
            rgba(var(--red-rgb),0.02) 4px
        );
    opacity: 0.95;
}

.case-image-placeholder {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.placeholder-icon {
    font-size: 80px;
    opacity: 0.3;
    filter: drop-shadow(0 0 20px rgba(var(--red-rgb),0.3));
}

.placeholder-label {
    font-family: var(--font-display);
    font-size: 12px;
    letter-spacing: 0.3em;
    color: rgba(var(--red-rgb),0.35);
    text-shadow: 0 0 10px rgba(var(--red-rgb),0.2);
}

.case-content {
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--primary-black);
    position: relative;
}

.case-content::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 0;
    width: 3px;
    height: 60%;
    background: var(--gradient-red);
    border-radius: 3px;
    box-shadow: var(--glow-accent);
}

.portfolio-case:nth-child(even) .case-content::before {
    left: auto;
    right: 0;
}

.case-logo {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent-red);
    text-shadow: 0 0 15px rgba(var(--red-rgb),0.3);
    margin-bottom: var(--space-sm);
}

.case-title {
    font-family: var(--font-display);
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 800;
    letter-spacing: 0.03em;
    margin-bottom: var(--space-sm);
    line-height: 1.2;
}

.case-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    margin: var(--space-md) 0;
    background: rgba(var(--red-rgb),0.06);
    border: 1px solid rgba(var(--red-rgb),0.1);
    border-radius: 4px;
    overflow: hidden;
    padding: 0;
}

.metric {
    text-align: center;
    padding: var(--space-sm);
    background: var(--primary-black);
    position: relative;
}

.metric:first-child::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 8px;
    height: 8px;
    border-top: 1px solid var(--accent-red);
    border-left: 1px solid var(--accent-red);
}

.metric-number {
    font-family: var(--font-display);
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 900;
    letter-spacing: 0.05em;
    line-height: 1.1;
    margin-bottom: 4px;
    display: block;
}

.portfolio-case:nth-child(odd) .metric-number {
    color: var(--primary-yellow);
    text-shadow: 0 0 15px rgba(var(--yellow-rgb),0.3);
}

.portfolio-case:nth-child(even) .metric-number {
    color: var(--accent-red);
    text-shadow: var(--glow-accent);
}

.metric-label {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    opacity: 0.5;
    display: block;
}

.case-description {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255,255,255,0.85);
    margin-bottom: var(--space-md);
}

.case-header {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: var(--space-xs);
}

/* --- Colored tag rows (replace case-header on portfolio cards) --- */
.case-tags {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: var(--space-sm);
}

.case-tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.case-badge {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 12px 12px;
    border-radius: 4px;
    background: rgba(108,109,117,0.15);
    color: var(--badge-color, #6c6d75);
    border: 1px solid rgba(108,109,117,0.3);
    white-space: nowrap;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

@supports (background: color-mix(in srgb, red 1%, transparent)) {
    .case-badge {
        background: color-mix(in srgb, var(--badge-color, #6c6d75) 15%, transparent);
        border: 1px solid color-mix(in srgb, var(--badge-color, #6c6d75) 30%, transparent);
    }
}

.case-link {
    color: var(--primary-yellow);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.3s ease;
}

.case-link:hover {
    opacity: 0.7;
}

.case-cta {
    margin-top: var(--space-xs);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.btn-gallery {
    background: var(--gradient-red);
    color: var(--white);
    padding: 12px 32px;
    border-radius: 0;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 100%, 12px 100%);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.4s var(--ease-bounce);
    box-shadow: 0 6px 18px rgba(var(--red-rgb),0.35);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    border: none;
}

.btn-gallery:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: var(--glow-red);
}

.btn-gallery svg {
    flex-shrink: 0;
}


/* ==============================================
   A PROPOS
   ============================================== */
.about {
    background: var(--dark-gray);
    padding: var(--space-xl) var(--space-md);
}

.about-container {
    max-width: 1000px;
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: var(--space-lg);
    align-items: start;
}

/* Profile Card */
.profile-card {
    background: rgba(var(--red-rgb),0.03);
    border: 1px solid rgba(var(--red-rgb),0.15);
    border-radius: 4px;
    padding: var(--space-lg) var(--space-md);
    text-align: center;
    position: relative;
}

.profile-frame::before,
.profile-frame::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
}

.profile-frame::before {
    top: 8px;
    left: 8px;
    border-top: 2px solid var(--accent-red);
    border-left: 2px solid var(--accent-red);
}

.profile-frame::after {
    bottom: 8px;
    right: 8px;
    border-bottom: 2px solid var(--accent-red);
    border-right: 2px solid var(--accent-red);
}

.profile-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--space-sm);
    background: var(--gradient-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 900;
    color: var(--primary-black);
    box-shadow: 0 0 30px rgba(var(--yellow-rgb),0.3);
}

.profile-name {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.profile-role {
    font-size: 13px;
    color: var(--accent-red);
    font-family: var(--font-display);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: var(--space-md);
}

.profile-stats {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    padding-top: var(--space-sm);
    border-top: 1px solid rgba(var(--red-rgb),0.1);
}

.profile-stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 900;
    color: var(--primary-yellow);
}

.profile-stat-label {
    font-family: var(--font-display);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.5;
}

.about-text {
    font-size: 16px;
    line-height: 1.9;
    color: rgba(255,255,255,0.9);
}

.about-text p + p {
    margin-top: var(--space-sm);
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

.about-highlight {
    background: rgba(var(--red-rgb),0.03);
    border: 1px solid rgba(var(--red-rgb),0.1);
    border-radius: 4px;
    padding: var(--space-md);
    transition: all 0.3s var(--ease-smooth);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);
}

.about-highlight:hover {
    transform: translateY(-4px);
    border-color: rgba(var(--red-rgb),0.3);
    box-shadow: var(--glow-accent);
}

.about-highlight-icon {
    font-size: 24px;
    margin-bottom: var(--space-xs);
}

.about-highlight-title {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
    color: var(--primary-yellow);
}

.about-highlight-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.82);
    line-height: 1.65;
}

/* ==============================================
   FOOTER
   ============================================== */
.footer {
    background: #0A0A0A;
    color: var(--white);
    padding: 0;
    position: relative;
}

.footer-border {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-yellow), var(--primary-red), var(--primary-yellow), transparent);
}

/* --- CTA pre-footer (sous-pages) --- */
.footer-cta-section {
    padding: var(--space-xl) var(--space-md);
    text-align: center;
    background: var(--dark-gray);
    border-bottom: 1px solid rgba(var(--red-rgb), 0.08);
}

.footer-heading {
    font-family: var(--font-display);
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 900;
    letter-spacing: 0.08em;
    margin-bottom: var(--space-sm);
    background: var(--gradient-yellow);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-text {
    font-size: 16px;
    color: rgba(255,255,255,0.72);
    margin-bottom: var(--space-md);
    line-height: 1.7;
}

.footer-cta {
    display: inline-flex;
}

.footer-main {
    padding: var(--space-xl) var(--space-md) var(--space-lg);
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
    gap: var(--space-lg);
    text-align: left;
}

/* --- Brand column --- */
.footer-col--brand {
    max-width: 280px;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 0.1em;
    color: var(--white);
}

.footer-logo span {
    color: var(--primary-yellow);
}

.footer-brand-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    margin-top: var(--space-xs);
}

.footer-brand-tagline {
    font-size: 13px;
    color: rgba(255,255,255,0.35);
    line-height: 1.6;
    margin-top: var(--space-xs);
    font-style: italic;
}

/* --- Column titles --- */
.footer-col-title {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--white);
    margin-bottom: var(--space-sm);
}

/* --- Column links --- */
.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul a {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-block;
    line-height: 2;
}

.footer-col ul a:hover {
    color: var(--primary-yellow);
    transform: translateX(4px);
}

/* --- Contact links with icons --- */
.footer-contact-list {
    gap: 12px !important;
}

.footer-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    transition: color 0.2s ease;
    line-height: 1.5;
}

.footer-contact-link svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: rgba(255,255,255,0.5);
    fill: rgba(255,255,255,0.5);
    transition: all 0.2s ease;
}

.footer-contact-link:first-child svg {
    fill: none;
    stroke: #6c6d75;
}

.footer-contact-link:hover {
    color: var(--white);
}

.footer-contact-link:hover svg {
    color: var(--primary-yellow);
    fill: var(--primary-yellow);
}

.footer-contact-link:first-child:hover svg {
    fill: none;
    stroke: var(--primary-yellow);
}

/* --- Client logos in footer --- */
.footer-client-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-top: var(--space-sm);
}

.footer-client-logos img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    border-radius: 6px;
    filter: grayscale(1) brightness(0.6);
    opacity: 0.6;
    transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.footer-client-logos img:hover {
    filter: grayscale(0) brightness(1);
    opacity: 1;
    transform: scale(1.1);
}

/* --- Contact card (framed) --- */
.footer-contact-card {
    border: 1px solid rgba(var(--yellow-rgb), 0.2);
    border-radius: 6px;
    padding: var(--space-sm) var(--space-sm) var(--space-md);
    background: rgba(var(--yellow-rgb), 0.03);
    position: relative;
    overflow: hidden;
}

/* Tilted social logo decorations */
.footer-social-deco {
    display: flex;
    gap: 10px;
    margin-top: var(--space-sm);
    padding-top: var(--space-sm);
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-social-deco svg {
    width: 22px;
    height: 22px;
    fill: rgba(255,255,255,0.15);
    transition: fill 0.2s ease, transform 0.2s ease;
}

.footer-social-deco .deco-ig { transform: rotate(-8deg); }
.footer-social-deco .deco-li { transform: rotate(5deg); }
.footer-social-deco .deco-x  { transform: rotate(-5deg); }
.footer-social-deco .deco-yt { transform: rotate(7deg); }
.footer-social-deco .deco-tt { transform: rotate(-6deg); }

.footer-social-deco svg:hover {
    fill: var(--primary-yellow);
    transform: rotate(0deg) scale(1.15);
}

/* --- Footer CTA buttons --- */
.footer-cta-btns {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: var(--space-md);
}

.footer-newsletter-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 4px;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    min-height: 44px;
}

.footer-newsletter-btn:hover {
    border-color: rgba(var(--yellow-rgb), 0.4);
    color: var(--primary-yellow);
    background: rgba(var(--yellow-rgb), 0.05);
}

.footer-audit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    background: var(--primary-yellow);
    border: none;
    border-radius: 4px;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary-black);
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    min-height: 44px;
}

.footer-audit-btn:hover {
    background: #e6c200;
    transform: translateY(-1px);
}

/* --- Bottom bar --- */
.footer-bottom {
    padding: var(--space-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-copy {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-legal a {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
    transition: color 0.2s;
    min-height: 44px;
    min-width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
}

.footer-legal span {
    color: rgba(255,255,255,0.15);
    font-size: 10px;
}

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


/* ==============================================
   CONTACT INFO
   ============================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-lg);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    border-bottom: 1px solid rgba(var(--red-rgb),0.06);
}

.contact-info-icon {
    font-size: 24px;
    opacity: 0.5;
}

.contact-info-label {
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-yellow);
    margin-bottom: 2px;
}

.contact-info-value {
    font-size: 15px;
    color: rgba(255,255,255,0.8);
}

.contact-info-value a {
    transition: color 0.3s;
}

.contact-info-value a:hover {
    color: var(--primary-yellow);
}


/* ==============================================
   CTA SECTION — Pré-footer
   ============================================== */
.cta-section {
    padding: var(--space-xl) var(--space-md);
    text-align: center;
    background: var(--dark-gray);
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-red), var(--primary-yellow), var(--accent-red), transparent);
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 900;
    letter-spacing: 0.08em;
    margin-bottom: var(--space-sm);
    background: var(--gradient-yellow);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-text {
    font-size: 16px;
    color: rgba(255,255,255,0.75);
    margin-bottom: var(--space-md);
    line-height: 1.7;
}

/* =============================================================
   NEWSLETTER MODAL
   ============================================================= */

/* Body lock quand le modal est ouvert */
.nl-body-lock {
    overflow: hidden;
}

/* Conteneur positionné (overlay + card) */
.nl-modal {
    position: fixed;
    inset: 0;
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

/* L'attribut hidden est écrasé par display:flex — on le force */
.nl-modal[hidden] {
    display: none !important;
}

/* Overlay semi-transparent */
.nl-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 5, 8, 0.88);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.nl-is-open .nl-overlay {
    opacity: 1;
}

/* Carte principale */
.nl-card {
    position: relative;
    z-index: 1;
    background: #0D0D12;
    border: 1px solid rgba(255, 190, 10, 0.25);
    border-radius: 8px;
    padding: 40px 36px;
    width: 100%;
    max-width: 460px;
    transform: translateY(20px) scale(0.97);
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.nl-is-open .nl-card {
    transform: translateY(0) scale(1);
    opacity: 1;
}

/* Bouton fermer */
.nl-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.4);
    cursor: pointer;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: color 0.2s, background 0.2s;
}

.nl-close:hover {
    color: #fff;
    background: rgba(255,255,255,0.08);
}

/* Eyebrow tag */
.nl-card-eyebrow {
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary-yellow);
    margin-bottom: 10px;
}

/* Titre */
.nl-card-title {
    font-family: var(--font-display);
    font-size: clamp(18px, 3vw, 22px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #F0F0F5;
    margin: 0 0 10px 0;
    line-height: 1.2;
}

/* Sous-titre */
.nl-card-sub {
    font-family: var(--font-main);
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    margin: 0 0 28px 0;
    line-height: 1.6;
}

/* Formulaire */
.nl-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.nl-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.nl-label {
    font-family: var(--font-main);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
}

.nl-label span {
    color: var(--primary-yellow);
}

.nl-input {
    background: #1A1A1A;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    padding: 12px 14px;
    font-family: var(--font-main);
    font-size: 15px;
    color: #F0F0F5;
    outline: none;
    transition: border-color 0.2s;
    min-height: 44px;
}

.nl-input::placeholder {
    color: rgba(255,255,255,0.2);
}

.nl-input:focus {
    border-color: rgba(255, 190, 10, 0.6);
}

.nl-input:invalid:not(:placeholder-shown) {
    border-color: rgba(199, 32, 40, 0.6);
}

/* Consentement RGPD */
.nl-consent-row {
    margin-top: 4px;
}

.nl-consent-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.nl-checkbox {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--primary-yellow);
    cursor: pointer;
}

.nl-consent-text {
    font-family: var(--font-main);
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    line-height: 1.5;
}

/* Message d'erreur */
.nl-error {
    background: rgba(199, 32, 40, 0.12);
    border: 1px solid rgba(199, 32, 40, 0.4);
    border-radius: 4px;
    padding: 10px 14px;
    font-family: var(--font-main);
    font-size: 13px;
    color: #e87a80;
    line-height: 1.5;
}

/* Bouton soumettre */
.nl-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 24px;
    background: var(--primary-yellow);
    border: none;
    border-radius: 4px;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary-black);
    cursor: pointer;
    transition: background 0.2s, transform 0.15s, opacity 0.2s;
    min-height: 48px;
    margin-top: 4px;
}

.nl-submit:hover:not(:disabled) {
    background: #e6c200;
    transform: translateY(-1px);
}

.nl-submit:disabled,
.nl-submit.nl-loading {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.nl-submit-arrow {
    transition: transform 0.2s;
}

.nl-submit:hover:not(:disabled) .nl-submit-arrow {
    transform: translateX(3px);
}

/* ── Popup de confirmation ─────────────────────────────────── */
.nl-confirm-card {
    max-width: 380px;
    text-align: center;
    padding: 48px 36px 40px;
}

.nl-confirm-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(30, 180, 90, 0.12);
    border: 1px solid rgba(30, 180, 90, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #3ecf6a;
}

.nl-confirm-card .nl-card-title {
    margin-bottom: 12px;
}

.nl-confirm-card .nl-card-sub {
    margin-bottom: 28px;
}

/* Responsive */
@media (max-width: 520px) {
    .nl-card {
        padding: 28px 20px 24px;
    }
    .nl-confirm-card {
        padding: 36px 20px 28px;
    }
}

