/* =====================================================
   TMG Sécurité Privée - Dark Mode Premium v4.0
   Navy Blue Dominant Theme
   ===================================================== */

/* =====================================================
   CSS Variables - Dark Theme
   ===================================================== */
:root {
    /* Dark Theme Colors */
    --bg-primary: #050810;
    --bg-secondary: #0a0f1a;
    --bg-tertiary: #0f1520;
    --bg-card: #111827;
    --bg-card-hover: #1a2332;

    /* Accent Colors */
    --gold: #c9a962;
    --gold-light: #dfc07a;
    --gold-dark: #a88a4a;
    --gold-glow: rgba(201, 169, 98, 0.15);

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.4);
    --text-dim: rgba(255, 255, 255, 0.2);

    /* Navy Shades */
    --navy: #0a0f1a;
    --navy-light: #141b2d;
    --navy-medium: #1a2332;
    --navy-deep: #050810;

    /* Borders */
    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-light: rgba(255, 255, 255, 0.1);
    --border-gold: rgba(201, 169, 98, 0.2);

    /* Typography */
    --font-display: 'Syne', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'Space Grotesk', monospace;

    /* Spacing */
    --section-padding: clamp(80px, 12vw, 160px);
    --container-max: 1440px;

    /* Transitions */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-in-out-quart: cubic-bezier(0.76, 0, 0.24, 1);
    --ease-elastic: cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;
}

/* =====================================================
   Reset & Base - Dark Mode
   ===================================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

html.lenis, html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-secondary);
    background: var(--bg-primary);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

ul, ol {
    list-style: none;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
    outline: none;
    border: none;
    background: none;
}

::selection {
    background: var(--gold);
    color: var(--navy);
}

/* =====================================================
   Utility
   ===================================================== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 60px);
}

.section {
    position: relative;
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
}

/* =====================================================
   Preloader - Premium Dark
   ===================================================== */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 100000;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

#preloader::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(201, 169, 98, 0.05) 0%, transparent 70%);
}

.preloader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.preloader-logo {
    width: 80px;
    opacity: 0;
    animation: preloaderFadeIn 0.6s ease forwards;
}

.preloader-logo img {
    width: 100%;
    filter: drop-shadow(0 0 30px rgba(201, 169, 98, 0.3));
}

.preloader-progress {
    width: 120px;
    height: 2px;
    background: var(--border-subtle);
    border-radius: 2px;
    overflow: hidden;
    opacity: 0;
    animation: preloaderFadeIn 0.6s ease 0.2s forwards;
}

.progress-bar {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
    animation: progressBar 1.8s var(--ease-out-expo) 0.4s forwards;
}

.preloader-text {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    opacity: 0;
    animation: preloaderFadeIn 0.6s ease 0.3s forwards;
}

.loading-dots span {
    animation: loadingDots 1.2s ease-in-out infinite;
}
.loading-dots span:nth-child(2) { animation-delay: 0.15s; }
.loading-dots span:nth-child(3) { animation-delay: 0.3s; }

#preloader.loaded {
    animation: preloaderExit 1s var(--ease-in-out-quart) forwards;
}

#preloader.loaded .preloader-inner {
    animation: preloaderContentExit 0.5s var(--ease-out-expo) forwards;
}

@keyframes preloaderFadeIn {
    to { opacity: 1; }
}

@keyframes progressBar {
    to { width: 100%; }
}

@keyframes loadingDots {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

@keyframes preloaderContentExit {
    to {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
}

@keyframes preloaderExit {
    0% { clip-path: inset(0 0 0 0); }
    100% {
        clip-path: inset(0 0 100% 0);
        visibility: hidden;
    }
}

/* =====================================================
   Cursor - Premium Dark
   ===================================================== */
.cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease, background 0.3s ease;
    box-shadow: 0 0 20px rgba(201, 169, 98, 0.5);
}

.cursor-outline {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(201, 169, 98, 0.3);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: all 0.15s ease-out;
}

.cursor-dot.hover {
    width: 12px;
    height: 12px;
    background: transparent;
    border: 2px solid var(--gold);
    box-shadow: 0 0 30px rgba(201, 169, 98, 0.6);
}

.cursor-outline.hover {
    width: 60px;
    height: 60px;
    border-color: rgba(201, 169, 98, 0.1);
}

@media (max-width: 1024px) {
    .cursor-dot, .cursor-outline { display: none !important; }
}

/* =====================================================
   NAVBAR PREMIUM v8.0 - Elegant & Modern
   ===================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 40px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header.scrolled {
    padding: 12px 40px;
}

.site-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 15, 28, 0.95) 0%, rgba(10, 15, 28, 0) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.site-header.scrolled::before {
    opacity: 1;
}

/* Header Container */
.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 12px 28px;
    background: rgba(10, 15, 28, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(201, 169, 98, 0.1);
    border-radius: 80px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header.scrolled .header-container {
    background: rgba(10, 15, 28, 0.9);
    border-color: rgba(201, 169, 98, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* Logo */
.site-header .logo {
    flex-shrink: 0;
    z-index: 10;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-shield {
    width: 40px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo-shield svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 8px rgba(201, 169, 98, 0.3));
}

.logo-text {
    font-family: 'Syne', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header .logo:hover .logo-shield {
    transform: scale(1.08);
}

.site-header .logo:hover .logo-shield svg {
    filter: drop-shadow(0 0 20px rgba(201, 169, 98, 0.6));
}

.site-header .logo:hover .logo-text {
    color: var(--gold);
}

/* Nav Logo (for secondary pages) */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo .logo-shield {
    width: 36px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-logo .logo-shield svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 8px rgba(201, 169, 98, 0.3));
}

.nav-logo .logo-text {
    font-family: 'Syne', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-logo:hover .logo-shield {
    transform: scale(1.08);
}

.nav-logo:hover .logo-shield svg {
    filter: drop-shadow(0 0 20px rgba(201, 169, 98, 0.6));
}

.nav-logo:hover .logo-text {
    color: var(--gold);
}

/* Main Navigation */
.main-nav {
    display: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    position: relative;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 2px;
    transform: translateX(-50%);
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(201, 169, 98, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50px;
}

.nav-link:hover {
    color: #fff;
}

.nav-link:hover::before {
    width: 30px;
}

.nav-link:hover::after {
    opacity: 1;
}

.nav-link.active {
    color: var(--gold);
}

.nav-link.active::before {
    width: 30px;
    box-shadow: 0 0 15px rgba(201, 169, 98, 0.5);
}

/* Header Right */
.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
}

/* Phone Button */
.phone-btn {
    display: none;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.phone-btn i {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    border-radius: 50%;
    font-size: 11px;
    color: var(--navy);
    transition: all 0.3s ease;
}

.phone-btn span {
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.5px;
}

.phone-btn:hover {
    background: rgba(201, 169, 98, 0.1);
    border-color: rgba(201, 169, 98, 0.2);
}

.phone-btn:hover i {
    transform: rotate(-15deg) scale(1.1);
    box-shadow: 0 0 20px rgba(201, 169, 98, 0.5);
}

/* CTA Button */
.cta-btn {
    display: none;
    align-items: center;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s ease;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(201, 169, 98, 0.4);
}

.cta-btn:hover::before {
    left: 100%;
}

/* Burger Menu */
.burger {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.burger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.burger-line:nth-child(2) {
    width: 16px;
    margin-left: 6px;
}

.burger:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.burger:hover .burger-line {
    background: var(--navy);
}

.burger:hover .burger-line:nth-child(2) {
    width: 22px;
    margin-left: 0;
}

/* Burger Active */
.burger.active {
    background: var(--gold);
    border-color: var(--gold);
}

.burger.active .burger-line {
    background: var(--navy);
}

.burger.active .burger-line:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
}

.burger.active .burger-line:nth-child(2) {
    transform: translateY(-5px) rotate(-45deg);
    width: 22px;
    margin-left: 0;
}

/* =====================================================
   MOBILE MENU
   ===================================================== */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: var(--bg-primary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 40px 60px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 20%, rgba(201, 169, 98, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 20% 80%, rgba(201, 169, 98, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

/* Mobile Navigation */
.mobile-nav {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-link {
    display: flex;
    align-items: center;
    padding: 20px 24px;
    font-family: var(--font-display);
    font-size: clamp(32px, 8vw, 52px);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 4px;
    height: 0;
    background: var(--gold);
    border-radius: 4px;
    transform: translateY(-50%);
    transition: height 0.3s ease;
}

.mobile-menu.active .mobile-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.active .mobile-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active .mobile-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-link:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.active .mobile-link:nth-child(5) { transition-delay: 0.3s; }

.mobile-link:hover {
    color: #fff;
    background: rgba(201, 169, 98, 0.05);
}

.mobile-link:hover::before {
    height: 50%;
}

/* Mobile Footer */
.mobile-footer {
    position: relative;
    z-index: 1;
    margin-top: auto;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 16px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s ease 0.4s;
}

.mobile-menu.active .mobile-footer {
    opacity: 1;
    transform: translateY(0);
}

.mobile-phone {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-mono);
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-phone i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 169, 98, 0.15);
    border-radius: 50%;
    color: var(--gold);
    font-size: 14px;
}

.mobile-phone:hover {
    color: var(--gold);
}

.mobile-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 32px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 60px;
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(201, 169, 98, 0.4);
}

/* =====================================================
   RESPONSIVE - NAVBAR
   ===================================================== */
@media (min-width: 1024px) {
    .header-container {
        position: relative;
    }

    .main-nav {
        display: block;
    }

    .phone-btn {
        display: flex;
    }

    .cta-btn {
        display: flex;
    }

    .burger {
        display: none;
    }

    .header-right {
        flex-shrink: 0;
    }
}

/* Intermediate desktop — hide phone to avoid overlap */
@media (min-width: 1024px) and (max-width: 1279px) {
    .nav-link {
        padding: 12px 14px;
        font-size: 13px;
    }

    .phone-btn {
        display: none;
    }

    .cta-btn {
        padding: 12px 22px;
        font-size: 13px;
    }
}

@media (max-width: 1023px) {
    .site-header {
        padding: 16px 24px;
    }

    .header-container {
        padding: 12px 20px;
        gap: 20px;
    }

    .logo-shield {
        width: 34px;
        height: 40px;
    }

    .logo-text {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .site-header {
        padding: 12px 16px;
    }

    .site-header.scrolled {
        padding: 8px 16px;
    }

    .header-container {
        padding: 10px 16px;
        border-radius: 60px;
        gap: 12px;
    }

    .logo-shield {
        width: 30px;
        height: 35px;
    }

    .logo-text {
        font-size: 14px;
    }

    .burger {
        width: 46px;
        height: 46px;
    }

    .burger-line {
        width: 20px;
    }

    .burger-line:nth-child(2) {
        width: 14px;
    }

    .mobile-menu {
        padding: 100px 24px 40px;
    }

    .mobile-link {
        padding: 16px 20px;
        font-size: 28px;
    }

    .mobile-footer {
        padding-top: 30px;
    }

    .mobile-cta {
        padding: 18px 28px;
        font-size: 16px;
    }
}

/* =====================================================
   Hero Section - Dark Premium
   ===================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--bg-primary);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 100% 80% at 70% 0%, rgba(201, 169, 98, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 60% 50% at 0% 100%, rgba(201, 169, 98, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 50% 50% at 50% 50%, rgba(10, 15, 26, 0.8) 0%, transparent 100%);
}

.hero-noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(201, 169, 98, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 169, 98, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    will-change: transform;
    animation: orbFloat 20s ease-in-out infinite;
}

.hero-orb-1 {
    width: 600px;
    height: 600px;
    background: var(--gold);
    opacity: 0.06;
    top: -150px;
    right: 5%;
    animation-delay: 0s;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: var(--gold);
    opacity: 0.04;
    bottom: 15%;
    left: -100px;
    animation-delay: -7s;
}

.hero-orb-3 {
    width: 300px;
    height: 300px;
    background: var(--gold-light);
    opacity: 0.03;
    top: 35%;
    right: 25%;
    animation-delay: -14s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(-30px, -20px) scale(1.02); }
}

.hero-image-bg {
    position: absolute;
    inset: 0;
}

.hero-image-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.08;
    filter: grayscale(30%);
}

.hero-image-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
        var(--bg-primary) 0%,
        rgba(5, 8, 16, 0.4) 50%,
        var(--bg-primary) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 160px clamp(20px, 5vw, 60px) 120px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: var(--gold-glow);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-full);
    margin-bottom: 32px;
    animation: tagGlow 3s ease-in-out infinite;
}

@keyframes tagGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(201, 169, 98, 0.1); }
    50% { box-shadow: 0 0 40px rgba(201, 169, 98, 0.2); }
}

.tag-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px var(--gold);
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 10px var(--gold); }
    50% { opacity: 0.6; transform: scale(1.3); box-shadow: 0 0 20px var(--gold); }
}

.tag-text {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 8vw, 88px);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.05;
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}

.title-line {
    display: block;
    overflow: hidden;
}

.title-word {
    display: inline-block;
}

.title-word.highlight {
    color: var(--gold);
    text-shadow: 0 0 60px rgba(201, 169, 98, 0.3);
}

.hero-description {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-secondary);
    max-width: 520px;
    line-height: 1.8;
    margin-bottom: 48px;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 80px;
}

/* Buttons - Premium Dark */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 36px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    border-radius: var(--radius-full);
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--ease-out-expo);
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
    box-shadow: 0 4px 24px rgba(201, 169, 98, 0.3);
}

.btn-primary .btn-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    transform: translateY(100%);
    transition: transform 0.5s var(--ease-out-expo);
}

.btn-primary:hover .btn-bg {
    transform: translateY(0);
}

.btn-primary .btn-text,
.btn-primary .btn-icon {
    position: relative;
    z-index: 1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(201, 169, 98, 0.4);
}

.btn-primary .btn-icon {
    transition: transform 0.4s var(--ease-out-expo);
}

.btn-primary:hover .btn-icon {
    transform: translateX(4px);
}

.btn-ghost {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

.btn-ghost:hover {
    background: var(--bg-card);
    border-color: var(--gold);
    color: var(--gold);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 48px;
}

.hero-stat {
    position: relative;
    padding-left: 20px;
}

.hero-stat::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    border-radius: 2px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.stat-suffix {
    font-size: 0.6em;
    color: var(--gold);
}

.stat-label {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 6px;
}

/* Hero Scroll */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.scroll-text {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: var(--border-light);
    position: relative;
    overflow: hidden;
}

.scroll-dot {
    width: 100%;
    height: 16px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollDot 1.8s ease-in-out infinite;
}

@keyframes scrollDot {
    0% { transform: translateY(-16px); }
    50% { transform: translateY(48px); }
    50.01% { transform: translateY(-16px); }
    100% { transform: translateY(-16px); }
}

/* Hero Marquee */
.hero-marquee {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 0;
    background: rgba(201, 169, 98, 0.03);
    border-top: 1px solid var(--border-subtle);
    overflow: hidden;
}

.marquee-track {
    display: flex;
    gap: 40px;
    animation: marquee 40s linear infinite;
    width: max-content;
}

.marquee-track span {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;
    color: var(--text-dim);
    letter-spacing: 3px;
    text-transform: uppercase;
    white-space: nowrap;
}

.marquee-dot {
    width: 4px !important;
    height: 4px !important;
    background: var(--gold) !important;
    border-radius: 50%;
    align-self: center;
    flex-shrink: 0;
    box-shadow: 0 0 10px var(--gold);
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* =====================================================
   Section Headers - Dark Theme
   ===================================================== */
.section-header {
    margin-bottom: 48px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.tag-line {
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

.section-tag span:last-child {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.section-title .gold {
    color: var(--gold);
    text-shadow: 0 0 40px rgba(201, 169, 98, 0.2);
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    margin-top: 16px;
    max-width: 600px;
}

.section-header.centered {
    text-align: center;
}

.section-header.centered .section-tag {
    justify-content: center;
}

.section-header.centered .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

/* =====================================================
   About Section - Dark Theme
   ===================================================== */
.about {
    background: var(--bg-secondary);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 50% at 0% 0%, rgba(201, 169, 98, 0.05) 0%, transparent 50%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-visual {
    position: relative;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease-out-expo);
}

.about-image:hover img {
    transform: scale(1.03);
}

.main-image {
    aspect-ratio: 4/5;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-subtle);
}

.main-image .image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--bg-primary) 0%, transparent 40%);
}

.secondary-image {
    position: absolute;
    bottom: -32px;
    right: -32px;
    width: 50%;
    aspect-ratio: 1;
    border: 4px solid var(--bg-secondary);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.about-badge {
    position: absolute;
    top: 24px;
    left: -24px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.badge-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: var(--radius-sm);
    color: var(--navy);
    font-size: 18px;
}

.badge-text {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 14px;
}

.about-experience {
    position: absolute;
    bottom: 80px;
    left: -40px;
    padding: 24px 32px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 16px 48px rgba(201, 169, 98, 0.3);
}

.exp-number {
    display: block;
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
}

.exp-text {
    display: block;
    font-size: 12px;
    color: var(--navy);
    opacity: 0.8;
    margin-top: 4px;
}

.about-pattern {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 160px;
    height: 160px;
    background-image: radial-gradient(var(--gold) 1.5px, transparent 1.5px);
    background-size: 16px 16px;
    opacity: 0.2;
    z-index: -1;
}

.about-content {
    position: relative;
    z-index: 1;
}

.about-text {
    margin-bottom: 32px;
}

.about-text .lead {
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-text p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.about-text strong {
    color: var(--gold);
}

/* Feature Cards - Dark Theme */
.about-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: all 0.5s var(--ease-out-expo);
}

.feature-card:hover {
    background: var(--bg-card-hover);
    transform: translateX(8px);
    border-color: var(--border-gold);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-glow);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    color: var(--gold);
    font-size: 20px;
    flex-shrink: 0;
    transition: all 0.4s var(--ease-out-expo);
}

.feature-card:hover .feature-icon {
    background: var(--gold);
    color: var(--navy);
    transform: scale(1.1) rotate(5deg);
}

.feature-content h4 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.feature-content p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* =====================================================
   Services Section - Dark Premium with Animations
   ===================================================== */
.services {
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.services-bg {
    position: absolute;
    inset: 0;
}

.services-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 40% at 0% 0%, rgba(201, 169, 98, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 40% 30% at 100% 100%, rgba(201, 169, 98, 0.06) 0%, transparent 50%);
}

.services .container {
    position: relative;
    z-index: 1;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

/* Service Card - Premium Dark with Animated Icons */
.service-card {
    position: relative;
    padding: 36px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    transition: all 0.6s var(--ease-out-expo);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-12px);
    border-color: var(--border-gold);
    box-shadow:
        0 32px 64px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(201, 169, 98, 0.1);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover::after {
    opacity: 1;
}

.service-card .card-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(201, 169, 98, 0.12) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.6s ease;
    border-radius: var(--radius-xl);
}

.service-card:hover .card-bg {
    opacity: 1;
}

/* Featured Card */
.service-card.featured {
    background: linear-gradient(135deg, var(--bg-card-hover), var(--bg-card));
    border-color: var(--border-gold);
}

.featured-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 600;
    color: var(--navy);
    box-shadow: 0 4px 16px rgba(201, 169, 98, 0.3);
}

.featured-badge i {
    font-size: 10px;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
    position: relative;
}

.card-number {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--gold);
    opacity: 0.5;
}

/* Animated Service Icon */
.card-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-glow);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    color: var(--gold);
    font-size: 26px;
    transition: all 0.5s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.card-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.card-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.2) 50%, transparent 60%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.card-icon i {
    position: relative;
    z-index: 1;
    transition: all 0.4s var(--ease-out-expo);
}

.service-card:hover .card-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 32px rgba(201, 169, 98, 0.3);
}

.service-card:hover .card-icon::before {
    opacity: 1;
}

.service-card:hover .card-icon::after {
    transform: translateX(100%);
}

.service-card:hover .card-icon i {
    color: var(--navy);
    transform: scale(1.1);
}

/* Icon Pulse Animation */
.service-card .card-icon {
    animation: iconPulse 3s ease-in-out infinite;
}

.service-card:nth-child(1) .card-icon { animation-delay: 0s; }
.service-card:nth-child(2) .card-icon { animation-delay: 0.5s; }
.service-card:nth-child(3) .card-icon { animation-delay: 1s; }
.service-card:nth-child(4) .card-icon { animation-delay: 1.5s; }

@keyframes iconPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(201, 169, 98, 0.2); }
    50% { box-shadow: 0 0 0 10px rgba(201, 169, 98, 0); }
}

.card-content {
    position: relative;
}

.card-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.card-description {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.card-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.card-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.service-card:hover .card-features li {
    color: var(--text-primary);
}

.check-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-glow);
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    color: var(--gold);
    font-size: 9px;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.service-card:hover .check-icon {
    background: var(--gold);
    color: var(--navy);
    transform: scale(1.1);
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gold);
    transition: all 0.4s var(--ease-out-expo);
}

.card-link::after {
    content: '';
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.4s var(--ease-out-expo);
}

.card-link:hover {
    gap: 12px;
}

.card-link:hover::after {
    width: 20px;
}

/* Services Extras - Dark Theme */
.services-extras {
    margin-top: 64px;
    padding-top: 48px;
    border-top: 1px solid var(--border-subtle);
}

.extras-title {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 32px;
}

.extras-grid {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.extra-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 36px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: all 0.5s var(--ease-out-expo);
}

.extra-item:hover {
    transform: translateY(-6px);
    border-color: var(--border-gold);
    background: var(--bg-card-hover);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3);
}

.extra-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-glow);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    color: var(--gold);
    font-size: 22px;
    margin-bottom: 16px;
    transition: all 0.4s var(--ease-out-expo);
}

.extra-item:hover .extra-icon {
    background: var(--gold);
    color: var(--navy);
    transform: rotate(-10deg) scale(1.1);
}

.extra-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 15px;
    margin-bottom: 4px;
}

.extra-desc {
    font-size: 13px;
    color: var(--text-muted);
}

/* =====================================================
   Expertise Section - Dark Theme
   ===================================================== */
.expertise {
    background: var(--bg-secondary);
}

.expertise::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 50% at 100% 100%, rgba(201, 169, 98, 0.05) 0%, transparent 50%);
}

.expertise-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

.expertise-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.expertise-item {
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    border-left: 3px solid transparent;
    transition: all 0.5s var(--ease-out-expo);
}

.expertise-item:hover {
    border-left-color: var(--gold);
    transform: translateX(8px);
    background: var(--bg-card-hover);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.item-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.item-number {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--gold);
    opacity: 0.6;
}

.item-title {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    color: var(--text-primary);
}

.item-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    padding-left: 36px;
}

/* Expertise Visual - Dark Theme */
.expertise-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =====================================================
   Expertise Animations - Interactive Visual
   ===================================================== */
.expertise-animations {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    max-width: 500px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.anim-scene {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s var(--ease-out-expo);
}

.anim-scene.active {
    opacity: 1;
    visibility: visible;
}

/* Animation par défaut - Shield */
.anim-default {
    background: radial-gradient(circle at 50% 50%, rgba(201, 169, 98, 0.08) 0%, transparent 70%);
}

.default-shield {
    position: relative;
    font-size: 100px;
    color: var(--gold);
    opacity: 0.3;
}

.default-shield i {
    animation: shieldFloat 3s ease-in-out infinite;
}

@keyframes shieldFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.shield-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: shieldPulse 2s ease-out infinite;
}

@keyframes shieldPulse {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.4; }
    100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

.anim-hint {
    margin-top: 24px;
    font-size: 14px;
    color: var(--text-muted);
    opacity: 0.6;
}

/* Animation 1 - Réactivité (Chronomètre) */
.anim-reactivity {
    background: radial-gradient(circle at 50% 40%, rgba(201, 169, 98, 0.1) 0%, transparent 60%);
}

.reactivity-clock {
    position: relative;
    width: 200px;
    height: 200px;
}

.clock-face {
    position: relative;
    width: 100%;
    height: 100%;
    border: 4px solid var(--gold);
    border-radius: 50%;
    background: var(--bg-primary);
    box-shadow: 0 0 40px rgba(201, 169, 98, 0.3), inset 0 0 30px rgba(201, 169, 98, 0.1);
}

.clock-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: var(--gold);
    border-radius: 50%;
    z-index: 10;
}

.clock-hand {
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform-origin: bottom center;
    background: var(--gold);
    border-radius: 4px;
}

.clock-hand.hour {
    width: 4px;
    height: 50px;
    transform: translateX(-50%) rotate(0deg);
    opacity: 0.6;
}

.clock-hand.minute {
    width: 3px;
    height: 65px;
    transform: translateX(-50%) rotate(0deg);
    opacity: 0.8;
}

.clock-hand.second {
    width: 2px;
    height: 75px;
    background: #ff6b6b;
    transform: translateX(-50%) rotate(0deg);
}

.anim-reactivity.active .clock-hand.second {
    animation: secondHand 2s linear infinite;
}

.anim-reactivity.active .clock-hand.minute {
    animation: minuteHand 8s linear infinite;
}

@keyframes secondHand {
    0% { transform: translateX(-50%) rotate(0deg); }
    100% { transform: translateX(-50%) rotate(360deg); }
}

@keyframes minuteHand {
    0% { transform: translateX(-50%) rotate(0deg); }
    100% { transform: translateX(-50%) rotate(360deg); }
}

.clock-marks span {
    position: absolute;
    width: 2px;
    height: 12px;
    background: var(--gold);
    top: 10px;
    left: 50%;
    transform-origin: center 90px;
    opacity: 0.5;
}

.clock-marks span:nth-child(1) { transform: translateX(-50%) rotate(0deg); }
.clock-marks span:nth-child(2) { transform: translateX(-50%) rotate(30deg); }
.clock-marks span:nth-child(3) { transform: translateX(-50%) rotate(60deg); }
.clock-marks span:nth-child(4) { transform: translateX(-50%) rotate(90deg); }
.clock-marks span:nth-child(5) { transform: translateX(-50%) rotate(120deg); }
.clock-marks span:nth-child(6) { transform: translateX(-50%) rotate(150deg); }
.clock-marks span:nth-child(7) { transform: translateX(-50%) rotate(180deg); }
.clock-marks span:nth-child(8) { transform: translateX(-50%) rotate(210deg); }
.clock-marks span:nth-child(9) { transform: translateX(-50%) rotate(240deg); }
.clock-marks span:nth-child(10) { transform: translateX(-50%) rotate(270deg); }
.clock-marks span:nth-child(11) { transform: translateX(-50%) rotate(300deg); }
.clock-marks span:nth-child(12) { transform: translateX(-50%) rotate(330deg); }

.speed-lines {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 220px;
}

.speed-lines span {
    position: absolute;
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold));
    border-radius: 3px;
    opacity: 0;
}

.anim-reactivity.active .speed-lines span {
    animation: speedLine 1s ease-out infinite;
}

.speed-lines span:nth-child(1) { top: 20%; right: 0; animation-delay: 0s; }
.speed-lines span:nth-child(2) { top: 50%; right: -10px; animation-delay: 0.3s; }
.speed-lines span:nth-child(3) { top: 80%; right: 5px; animation-delay: 0.6s; }

@keyframes speedLine {
    0% { opacity: 0; transform: translateX(20px); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: translateX(-30px); }
}

.anim-label {
    margin-top: 30px;
    text-align: center;
}

.label-time {
    display: block;
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.label-text {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 6px;
}

/* Animation 2 - Personnel qualifié (Badges) */
.anim-qualified {
    background: radial-gradient(circle at 50% 60%, rgba(201, 169, 98, 0.1) 0%, transparent 60%);
}

.badges-container {
    position: absolute;
    width: 320px;
    height: 320px;
}

.badge-item {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 14px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.5s var(--ease-out-expo);
}

.badge-item i {
    font-size: 24px;
    color: var(--gold);
}

.badge-item span {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
}

.badge-1 { top: 0; left: 50%; transform: translateX(-50%) scale(0.5); }
.badge-2 { top: 50%; right: 0; transform: translateY(-50%) scale(0.5); }
.badge-3 { bottom: 0; left: 50%; transform: translateX(-50%) scale(0.5); }
.badge-4 { top: 50%; left: 0; transform: translateY(-50%) scale(0.5); }

.anim-qualified.active .badge-item {
    opacity: 1;
}

.anim-qualified.active .badge-1 { transform: translateX(-50%) scale(1); transition-delay: 0.1s; }
.anim-qualified.active .badge-2 { transform: translateY(-50%) scale(1); transition-delay: 0.2s; }
.anim-qualified.active .badge-3 { transform: translateX(-50%) scale(1); transition-delay: 0.3s; }
.anim-qualified.active .badge-4 { transform: translateY(-50%) scale(1); transition-delay: 0.4s; }

.qualified-agent {
    position: relative;
    z-index: 5;
}

.agent-silhouette {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 52px;
    color: var(--navy);
    box-shadow: 0 0 50px rgba(201, 169, 98, 0.4);
}

.agent-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    opacity: 0;
}

.anim-qualified.active .agent-glow {
    animation: agentGlow 2s ease-out infinite;
}

@keyframes agentGlow {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    100% { transform: translate(-50%, -50%) scale(1.8); opacity: 0; }
}

/* Animation 3 - Solutions sur mesure (Puzzle) */
.anim-custom {
    background: radial-gradient(circle at 50% 50%, rgba(201, 169, 98, 0.08) 0%, transparent 60%);
}

.puzzle-container {
    position: relative;
    width: 240px;
    height: 240px;
}

.puzzle-piece {
    position: absolute;
    width: 110px;
    height: 110px;
    background: var(--bg-card);
    border: 2px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--gold);
    transition: all 0.6s var(--ease-out-expo);
}

.piece-1 {
    top: 0; left: 0;
    border-radius: var(--radius-md) 0 0 0;
    transform: translate(-30px, -30px) rotate(-10deg);
    opacity: 0;
}
.piece-2 {
    top: 0; right: 0;
    border-radius: 0 var(--radius-md) 0 0;
    transform: translate(30px, -30px) rotate(10deg);
    opacity: 0;
}
.piece-3 {
    bottom: 0; left: 0;
    border-radius: 0 0 0 var(--radius-md);
    transform: translate(-30px, 30px) rotate(10deg);
    opacity: 0;
}
.piece-4 {
    bottom: 0; right: 0;
    border-radius: 0 0 var(--radius-md) 0;
    transform: translate(30px, 30px) rotate(-10deg);
    opacity: 0;
}

.anim-custom.active .puzzle-piece {
    opacity: 1;
    transform: translate(0, 0) rotate(0deg);
    border-color: var(--border-gold);
}

.anim-custom.active .piece-1 { transition-delay: 0.1s; }
.anim-custom.active .piece-2 { transition-delay: 0.2s; }
.anim-custom.active .piece-3 { transition-delay: 0.3s; }
.anim-custom.active .piece-4 { transition-delay: 0.4s; }

.puzzle-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--navy);
    z-index: 10;
    transition: all 0.5s var(--ease-out-expo);
    transition-delay: 0.5s;
    box-shadow: 0 0 40px rgba(201, 169, 98, 0.5);
}

.anim-custom.active .puzzle-center {
    transform: translate(-50%, -50%) scale(1);
}

/* Animation 4 - Transparence (Dashboard) */
.anim-transparency {
    padding: 40px;
    background: radial-gradient(circle at 50% 30%, rgba(201, 169, 98, 0.08) 0%, transparent 60%);
}

.dashboard-container {
    width: 100%;
    max-width: 380px;
    background: var(--bg-primary);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.dash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-subtle);
}

.dash-title {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.dash-live {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #4ade80;
    font-weight: 600;
}

.dash-live i {
    font-size: 8px;
    animation: livePulse 1s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.dash-content {
    padding: 24px;
}

.dash-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 120px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-subtle);
    margin-bottom: 20px;
}

.chart-bar {
    width: 18%;
    background: linear-gradient(to top, var(--gold-dark), var(--gold));
    border-radius: 4px 4px 0 0;
    transform-origin: bottom;
    transform: scaleY(0);
    transition: transform 0.6s var(--ease-out-expo);
}

.anim-transparency.active .chart-bar {
    transform: scaleY(1);
}

.bar-1 { height: 60%; transition-delay: 0.1s; }
.bar-2 { height: 85%; transition-delay: 0.2s; }
.bar-3 { height: 45%; transition-delay: 0.3s; }
.bar-4 { height: 95%; transition-delay: 0.4s; }
.bar-5 { height: 70%; transition-delay: 0.5s; }

.dash-stats {
    display: flex;
    gap: 20px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.anim-transparency.active .stat-item {
    opacity: 1;
    transform: translateY(0);
}

.anim-transparency.active .stat-item:nth-child(1) { transition-delay: 0.6s; }
.anim-transparency.active .stat-item:nth-child(2) { transition-delay: 0.7s; }

.stat-item i {
    color: var(--gold);
    font-size: 16px;
}

.stat-item span {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* =====================================================
   Process Section - Notre Méthode
   ===================================================== */
.process {
    background: var(--bg-primary);
    overflow: hidden;
}

.process-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(201, 169, 98, 0.06) 0%, transparent 50%);
}

.process .container {
    position: relative;
    z-index: 1;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
    position: relative;
}

.timeline-line {
    position: absolute;
    top: 35px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--border-subtle);
    z-index: 1;
}

.timeline-progress {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold));
    border-radius: 2px;
    transition: width 1s ease;
}

.process-step {
    position: relative;
    z-index: 2;
    text-align: center;
}

.step-marker {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
    position: relative;
}

.marker-inner {
    width: 70px;
    height: 70px;
    background: var(--bg-card);
    border: 2px solid var(--border-subtle);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: all 0.5s var(--ease-out-expo);
}

.marker-number {
    font-family: var(--font-mono);
    font-size: 18px;
    font-weight: 600;
    color: var(--gold);
}

.process-step:hover .marker-inner {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-color: var(--gold);
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(201, 169, 98, 0.4);
}

.process-step:hover .marker-number {
    color: var(--navy);
}

.marker-pulse {
    position: absolute;
    inset: 0;
    border: 2px solid var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: markerPulse 2s ease-out infinite;
}

@keyframes markerPulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.6); opacity: 0; }
}

.step-content {
    padding: 0 10px;
}

.step-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 16px;
    background: var(--gold-glow);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--gold);
    transition: all 0.4s ease;
}

.process-step:hover .step-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
    transform: translateY(-5px);
}

.step-title {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.step-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.process-cta {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border-subtle);
}

.process-cta-text {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

/* =====================================================
   CTA Section - Dark Theme with Gold Accent
   ===================================================== */
.cta {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.cta-bg {
    position: absolute;
    inset: 0;
}

.cta-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(10, 15, 26, 0.1) 1px, transparent 1px);
    background-size: 24px 24px;
}

.cta-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(0, 0, 0, 0.1) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.cta-title .outline {
    color: transparent;
    -webkit-text-stroke: 2px var(--navy);
}

.cta-text {
    font-size: 17px;
    color: var(--navy);
    opacity: 0.8;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-white {
    background: var(--navy);
    color: var(--text-primary);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.btn-outline-white {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
}

.btn-outline-white:hover {
    background: var(--navy);
    color: var(--text-primary);
}

/* =====================================================
   Contact Section - Dark Theme
   ===================================================== */
.contact {
    background: var(--bg-secondary);
}

.contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 40% 40% at 0% 100%, rgba(201, 169, 98, 0.05) 0%, transparent 50%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.contact-intro {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 32px;
}

/* Contact Details - Dark Theme */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: all 0.5s var(--ease-out-expo);
}

.contact-item:hover {
    background: var(--bg-card-hover);
    transform: translateX(8px);
    border-color: var(--border-gold);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.contact-item .item-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-glow);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    color: var(--gold);
    font-size: 20px;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.contact-item:hover .item-icon {
    background: var(--gold);
    color: var(--navy);
}

.contact-item .item-label {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.contact-item .item-value {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.5;
}

.contact-item a.item-value:hover {
    color: var(--gold);
}

/* Contact Socials - Dark Theme */
.contact-socials {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-size: 18px;
    transition: all 0.4s var(--ease-out-expo);
}

.social-link:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(201, 169, 98, 0.3);
}

/* Contact Form - Dark Theme */
.contact-form-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    padding: 44px;
    border-radius: var(--radius-xl);
}

.form-header {
    margin-bottom: 32px;
}

.form-header h3 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-header p {
    color: var(--text-secondary);
    font-size: 14px;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Input Fields - Dark Theme */
.input-field,
.textarea-field,
.select-field {
    position: relative;
}

.input-field input,
.textarea-field textarea,
.select-field select {
    width: 100%;
    padding: 18px 22px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    font-size: 15px;
    color: var(--text-primary);
    transition: all 0.4s var(--ease-out-expo);
}

.input-field input:focus,
.textarea-field textarea:focus,
.select-field select:focus {
    border-color: var(--gold);
    background: var(--bg-tertiary);
    box-shadow: 0 0 0 4px var(--gold-glow);
}

.input-field label,
.textarea-field label,
.select-field label {
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 15px;
    color: var(--text-muted);
    pointer-events: none;
    transition: all 0.3s ease;
}

.textarea-field label {
    top: 18px;
    transform: none;
}

.select-field label {
    top: -10px;
    transform: none;
    font-size: 12px;
    color: var(--gold);
    background: var(--bg-card);
    padding: 0 8px;
}

.input-field input:focus ~ label,
.input-field input:not(:placeholder-shown) ~ label,
.textarea-field textarea:focus ~ label,
.textarea-field textarea:not(:placeholder-shown) ~ label {
    top: -10px;
    transform: none;
    font-size: 12px;
    color: var(--gold);
    background: var(--bg-card);
    padding: 0 8px;
}

.input-field input::placeholder,
.textarea-field textarea::placeholder {
    color: transparent;
}

.select-arrow {
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
    font-size: 12px;
}

.textarea-field textarea {
    min-height: 130px;
    resize: vertical;
}

/* Submit Button - Dark Theme */
.btn-submit {
    width: 100%;
    padding: 20px 36px;
    margin-top: 8px;
}

.btn-submit .btn-loading {
    display: none;
}

.btn-submit.loading .btn-text,
.btn-submit.loading .btn-icon {
    opacity: 0;
}

.btn-submit.loading .btn-loading {
    display: block;
    position: absolute;
}

.form-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    font-size: 13px;
    color: var(--text-muted);
}

.form-notice i {
    color: var(--gold);
    font-size: 12px;
}

/* =====================================================
   Footer - Dark Theme
   ===================================================== */
.footer {
    background: var(--bg-primary);
    color: var(--text-primary);
}

.footer-main {
    padding: 80px 0 48px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
}

/* Footer Brand */
.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    text-decoration: none;
}

.footer-logo .logo-shield {
    width: 44px;
    height: 52px;
}

.footer-logo .logo-shield svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 20px rgba(201, 169, 98, 0.2));
}

.footer-logo .logo-text {
    font-family: 'Syne', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.footer-logo:hover .logo-text {
    color: var(--gold);
}

.footer-logo:hover .logo-shield svg {
    filter: drop-shadow(0 0 25px rgba(201, 169, 98, 0.5));
}

.footer-tagline {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 16px;
    transition: all 0.4s var(--ease-out-expo);
}

.footer-socials a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(201, 169, 98, 0.3);
}

/* Footer Links */
.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 14px;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links a {
    font-size: 14px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--gold);
    transform: translateX(6px);
}

/* Footer Contact */
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--text-secondary);
}

.footer-contact li i {
    color: var(--gold);
    margin-top: 4px;
    font-size: 13px;
}

.footer-contact a {
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--gold);
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: var(--gold-glow);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    margin-top: 24px;
}

.footer-badge i {
    color: var(--gold);
    font-size: 16px;
}

.footer-badge span {
    font-weight: 600;
    color: var(--gold);
    font-size: 13px;
}

/* Footer Bottom */
.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid var(--border-subtle);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 13px;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--gold);
}

/* =====================================================
   Back to Top - Dark Theme
   ===================================================== */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 50%;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: all 0.5s var(--ease-out-expo);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gold);
    border-color: var(--gold);
    box-shadow: 0 8px 32px rgba(201, 169, 98, 0.3);
}

.back-to-top:hover .btn-icon {
    color: var(--navy);
}

.back-to-top .btn-icon {
    position: relative;
    z-index: 2;
    color: var(--gold);
    font-size: 16px;
    transition: color 0.3s ease;
}

.progress-ring {
    position: absolute;
    transform: rotate(-90deg);
}

.progress-ring-circle {
    stroke: var(--gold);
    stroke-linecap: round;
    transition: stroke-dashoffset 0.1s ease;
}

/* =====================================================
   Legal Pages - Dark Theme
   ===================================================== */
.legal-hero {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    text-align: center;
    position: relative;
}

.legal-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(201, 169, 98, 0.08) 0%, transparent 60%);
}

.legal-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--text-primary);
    margin-bottom: 15px;
    position: relative;
}

.legal-hero p {
    color: var(--text-secondary);
    position: relative;
}

.legal-content {
    padding: 80px 0;
    background: var(--bg-primary);
}

.legal-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 56px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
    max-width: 900px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 44px;
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h2 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gold);
    display: inline-block;
}

.legal-section h3 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin: 24px 0 12px;
}

.legal-section p,
.legal-section li {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-section ul {
    padding-left: 20px;
}

.legal-section ul li {
    position: relative;
    padding-left: 24px;
}

.legal-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
}

.legal-section a {
    color: var(--gold);
}

.legal-section a:hover {
    text-decoration: underline;
}

.highlight-box {
    background: var(--gold-glow);
    border-left: 4px solid var(--gold);
    padding: 24px 28px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin: 24px 0;
}

.highlight-box p {
    margin-bottom: 0;
    color: var(--text-primary);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 36px;
    color: var(--gold);
    font-weight: 600;
    transition: all 0.3s ease;
}

.back-link:hover {
    gap: 16px;
}

.back-link i {
    transition: transform 0.3s ease;
}

.back-link:hover i {
    transform: translateX(-5px);
}

.update-date {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.update-date i {
    color: var(--gold);
}

/* =====================================================
   Responsive - Dark Theme
   ===================================================== */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 1024px) {
    .about-grid,
    .expertise-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-visual {
        max-width: 480px;
        margin: 0 auto;
        order: -1;
    }

    .expertise-visual {
        max-width: 100%;
        margin: 0 auto;
    }

    .expertise-animations {
        max-width: 400px;
        aspect-ratio: 1 / 1;
    }

    .hero-stats {
        gap: 32px;
    }

    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .timeline-line {
        display: none;
    }

    .reactivity-clock {
        width: 160px;
        height: 160px;
    }

    .clock-marks span {
        transform-origin: center 72px;
    }

    .clock-hand.hour { height: 40px; }
    .clock-hand.minute { height: 52px; }
    .clock-hand.second { height: 60px; }

    .badges-container {
        width: 260px;
        height: 260px;
    }

    .badge-item {
        padding: 10px 14px;
    }

    .badge-item i {
        font-size: 20px;
    }

    .agent-silhouette {
        width: 90px;
        height: 90px;
        font-size: 40px;
    }

    .agent-glow {
        width: 90px;
        height: 90px;
    }

    .puzzle-container {
        width: 200px;
        height: 200px;
    }

    .puzzle-piece {
        width: 92px;
        height: 92px;
        font-size: 26px;
    }

    .puzzle-center {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }

    .dashboard-container {
        max-width: 320px;
    }

    .dash-chart {
        height: 90px;
    }

    .nav-phone {
        display: none !important;
    }

    .legal-card {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .nav-cta {
        display: none;
    }

    .hero-content {
        padding: 140px 20px 100px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }

    .hero-scroll {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .extras-grid {
        flex-direction: column;
        gap: 16px;
    }

    .testimonial-card {
        flex: 0 0 100%;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 28px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .secondary-image,
    .about-badge,
    .about-experience {
        display: none;
    }

    .process-timeline {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .step-marker {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

    .marker-inner {
        width: 60px;
        height: 60px;
    }

    .expertise-visual {
        width: 100%;
    }

    .expertise-animations {
        max-width: 340px;
        margin: 0 auto;
        aspect-ratio: 1 / 1;
    }

    .default-shield {
        font-size: 70px;
    }

    .reactivity-clock {
        width: 130px;
        height: 130px;
    }

    .clock-face {
        border-width: 3px;
    }

    .clock-marks span {
        height: 8px;
        transform-origin: center 57px;
    }

    .clock-hand.hour { height: 32px; }
    .clock-hand.minute { height: 42px; }
    .clock-hand.second { height: 50px; }

    .label-time {
        font-size: 26px;
    }

    .anim-label {
        margin-top: 20px;
    }

    .badges-container {
        width: 220px;
        height: 220px;
    }

    .badge-item {
        padding: 8px 12px;
    }

    .badge-item i {
        font-size: 18px;
    }

    .badge-item span {
        font-size: 10px;
    }

    .agent-silhouette {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }

    .agent-glow {
        width: 70px;
        height: 70px;
    }

    .puzzle-container {
        width: 170px;
        height: 170px;
    }

    .puzzle-piece {
        width: 78px;
        height: 78px;
        font-size: 22px;
    }

    .puzzle-center {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .anim-transparency {
        padding: 25px;
    }

    .dashboard-container {
        max-width: 280px;
    }

    .dash-header {
        padding: 12px 16px;
    }

    .dash-title {
        font-size: 13px;
    }

    .dash-content {
        padding: 16px;
    }

    .dash-chart {
        height: 80px;
    }

    .legal-card {
        padding: 28px;
    }

    .legal-hero {
        padding: 140px 0 60px;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 16px 28px;
        font-size: 14px;
    }
}
