/* =========================================
   1. GLOBAL (VARIABLES & BASE)
   ========================================= */
:root {
    --bg: #050505;
    --surface: #0a0a0a;
    --text: #fff;
    --text-muted: #888;
    --accent: #E30613;
    --font-h: 'Jost', sans-serif;
    --font-b: 'Inter', sans-serif;
    --gap: 4px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-b);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 16px;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
img { display: block; width: 100%; height: auto; object-fit: cover; }
svg { width: 100%; height: auto; fill: currentColor; }

/* TYPOGRAPHIE */
h1, .big-title, .mega-text {
    font-family: var(--font-h);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    width: 100%;
    word-wrap: break-word;
    hyphens: auto;
}

h2, .section-title {
    font-family: var(--font-h);
    font-weight: 500;
    font-size: clamp(1.6rem, 5vw, 3rem);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    line-height: 1.2;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* BOUTONS GLOBAUX */
.btn-submit, .cta-btn, .cta-btn-premium {
    background: var(--accent); color: #fff; padding: 15px 30px;
    border: none; text-transform: uppercase; font-weight: 700; font-size: 0.8rem;
    cursor: pointer; display: inline-block; position: relative; overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1); z-index: 1;
}

.cta-btn-premium { border: 1px solid #fff; padding: 20px 45px; letter-spacing: 4px; }

.btn-submit::before, .cta-btn::before, .cta-btn-premium::before {
    content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: #fff; transition: all 0.4s; z-index: -1;
}

.btn-submit:hover::before, .cta-btn:hover::before, .cta-btn-premium:hover::before { left: 0; }
.btn-submit:hover, .cta-btn:hover, .cta-btn-premium:hover {
    color: #000 !important; transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(227, 6, 19, 0.3);
}

/* FIX MOBILE GLOBAL */
html, body { max-width: 100%; overflow-x: hidden !important; position: relative; }
@media (max-width: 768px) {
    .container { padding-left: 15px; padding-right: 15px; width: 100%; overflow-x: hidden; }
}

/* --- SUPPRESSION GLOBALE DES TIRETS (HYPHENS) --- */
* {
    hyphens: none !important;
    -webkit-hyphens: none !important;
    -ms-hyphens: none !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
}

/* Sécurité spécifique pour ton nom dans le Hero */
.mkl-title, .mega-text {
    white-space: nowrap !important;
}

