/* ===================================
   MODERN DARK THEME - PROTOCOLE RADICAL V3
   Ultra-moderne, sombre, sophistiqué
   =================================== */

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

:root {
    /* Dark Theme Colors */
    --bg-primary: #0A0A0A;
    --bg-secondary: #121212;
    --bg-tertiary: #1A1A1A;
    --bg-card: #151515;
    
    /* Accent Colors */
    --accent: #CCFF00;
    --accent-dark: #a3cc00;
    --accent-glow: rgba(204, 255, 0, 0.2);
    
    /* Text Colors */
    --text-primary: #FFFFFF;
    --text-secondary: #A0A0A0;
    --text-muted: #666666;
    
    /* Border */
    --border-color: #252525;
    --border-accent: rgba(204, 255, 0, 0.3);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --section-padding: 120px 0;
    --container-max: 1400px;
    
    /* Effects */
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-medium: 0 10px 40px rgba(0, 0, 0, 0.4);
    --shadow-strong: 0 20px 60px rgba(0, 0, 0, 0.5);
    --glow-accent: 0 0 30px var(--accent-glow);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

/* Subtle grid background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(204, 255, 0, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(204, 255, 0, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.3;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

/* ===================================
   HEADER / NAVIGATION
   =================================== */
.header {
    position: relative;
    width: 100%;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
}



.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.logo h1 {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--text-primary);
    margin: 0;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--accent);
    background: rgba(204, 255, 0, 0.1);
    transform: translateY(-2px);
}

.nav-link i {
    font-size: 1.1rem;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: var(--bg-primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 800;
    padding: 10px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(204, 255, 0, 0.4);
}

.nav-cta i {
    font-size: 1.1rem;
}

/* Mobile Menu Toggle (hidden by default) */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ===================================
   TYPOGRAPHY
   =================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.04em;
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 4rem;
    font-weight: 400;
}

/* ===================================
   HERO SECTION - ULTRA MODERNE
   =================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 80px 0 100px;
    background: var(--bg-primary);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    z-index: 0;
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.targeting-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-card);
    color: var(--text-secondary);
    padding: 14px 28px;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 3rem;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.targeting-badge:hover {
    border-color: var(--border-accent);
    transform: translateY(-2px);
    box-shadow: var(--glow-accent);
}

.targeting-badge i {
    color: var(--accent);
    font-size: 1.1rem;
}

.hero-title {
    font-size: clamp(2rem, 5.5vw, 4.9rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.05em;
}

.hero-title .highlight {
    color: var(--accent);
    position: relative;
    display: inline-block;
}

.text-accent {
    color: var(--accent);
}

.hero-subtitle {
    font-size: clamp(1.15rem, 2.5vw, 1.5rem);
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.8;
    font-weight: 400;
}

.hero-subtitle strong {
    color: var(--text-primary);
    font-weight: 700;
}

.hero-video-text {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-secondary);
    margin-top: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 500;
}

.hero-video-text i {
    color: var(--accent);
    font-size: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

.arrow-down {
    display: inline-block;
    margin-top: 2rem;
    animation: float 3s ease-in-out infinite;
    cursor: pointer;
}

.arrow-down i {
    font-size: 2.5rem;
    color: var(--accent);
}

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

/* Remove old cta-box styles */

/* ===================================
   VIDEO SECTION
   =================================== */
.video-section {
    padding: var(--section-padding);
    background: var(--bg-secondary);
    position: relative;
}

.video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.video-container {
    max-width: 1100px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-strong), var(--glow-accent);
    border: 1px solid var(--border-accent);
    background: var(--bg-primary);
    transition: all 0.4s ease;
}

.video-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 60px var(--accent-glow);
}

/* Video CTA Button */
.video-cta {
    text-align: center;
    margin-top: 4rem;
}

.cta-button-primary {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--accent);
    color: var(--bg-primary);
    padding: 20px 45px;
    font-size: 1.05rem;
    font-weight: 800;
    text-decoration: none;
    border-radius: 100px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 50px rgba(204, 255, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.cta-button-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.cta-button-primary:hover::before {
    width: 400px;
    height: 400px;
}

.cta-button-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(204, 255, 0, 0.6);
}

.cta-button-primary:active {
    transform: translateY(-2px) scale(1.02);
}

.cta-button-primary i {
    font-size: 1.4rem;
    position: relative;
    z-index: 1;
}

.cta-button-primary span {
    position: relative;
    z-index: 1;
}

.video-cta-subtitle {
    margin-top: 1.5rem;
    color: var(--text-secondary);
    font-size: 1.05rem;
    font-weight: 400;
}

/* ===================================
   CREDENTIALS SECTION
   =================================== */
.credentials-section {
    padding: var(--section-padding);
    background: var(--bg-primary);
}

.credentials-intro {
    text-align: center;
    margin-bottom: 5rem;
}

.intro-line {
    width: 80px;
    height: 3px;
    background: var(--accent);
    margin: 1.5rem auto;
}

.credentials-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.credentials-image {
    position: relative;
}

.anthony-photo {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-medium);
    filter: grayscale(20%);
    transition: all 0.4s ease;
}

.anthony-photo:hover {
    filter: grayscale(0%);
    transform: scale(1.02);
    box-shadow: var(--shadow-strong), var(--glow-accent);
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-tertiary) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, var(--accent-glow) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.image-placeholder i {
    font-size: 5rem;
    color: var(--text-muted);
    position: relative;
    z-index: 1;
}

.badge-overlay {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background: var(--accent);
    color: var(--bg-primary);
    padding: 16px 24px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    box-shadow: 0 10px 40px rgba(204, 255, 0, 0.4);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-overlay i {
    font-size: 1.3rem;
}

.credentials-text .name {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 2.5rem;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.certification {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    border-left: 3px solid var(--accent);
    transition: all 0.3s ease;
}

.certification:hover {
    border-color: var(--accent);
    transform: translateX(8px);
    box-shadow: var(--shadow-medium);
}

.cert-badge {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: var(--accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cert-badge i {
    font-size: 2rem;
    color: var(--bg-primary);
}

.cert-details h4 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.cert-details p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.cert-date {
    display: inline-block;
    background: var(--bg-tertiary);
    color: var(--accent);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    border: 1px solid var(--border-accent);
}

.qualification {
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.qualification::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), transparent);
}

.qualification h4 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.qualification h4 i {
    color: var(--accent);
}

.qualification p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.highlight-text {
    color: var(--accent);
    font-weight: 700;
}

/* Continue in next message... */
