/* ============================================
   HERO MODERN - PREMIUM UNIFIED DESIGN
   Inspired by luxury minimalism
   ============================================ */

.hero-modern {
    position: relative;
    padding-block: 0 var(--space-16);
    overflow: visible;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-modern-compact {
    min-height: 0;
    display: block;
    padding-block: 120px 0;
}

/* ============================================
   BACKGROUND - Subtle Gradient Mesh
   ============================================ */

.hero-bg-gradient {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 111, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 60%, rgba(25, 118, 210, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 111, 0, 0.05) 0%, transparent 50%);
}

/* Floating geometric shapes */
.hero-shapes {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    animation: none;
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: 10%;
    right: 5%;
    background: radial-gradient(circle, rgba(255, 111, 0, 0.1), transparent 70%);
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: 20%;
    left: 10%;
    background: radial-gradient(circle, rgba(25, 118, 210, 0.08), transparent 70%);
    animation-delay: 7s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    background: radial-gradient(circle, rgba(255, 180, 0, 0.06), transparent 70%);
    animation-delay: 14s;
}

@keyframes floatShape {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(30px, -30px) rotate(90deg);
    }
    50% {
        transform: translate(0, -60px) rotate(180deg);
    }
    75% {
        transform: translate(-30px, -30px) rotate(270deg);
    }
}

/* ============================================
   HERO HEADER - INTEGRATED NAVIGATION
   ============================================ */

.hero-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-block: var(--space-3);
    padding-inline: var(--space-8);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    animation: fadeInDown 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Cacher les trust pills du header sur desktop */
.hero-header .hero-trust-pills {
    display: none;
}

/* Header Sticky au scroll - fond avec blur */
.hero-header.header-sticky {
    background: rgba(10, 10, 30, 0.96);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

/* ============================================
   SCROLL EFFECTS - FLAME/SMOKE TRANSITION
   ============================================ */

/* Classes pour toggle avec JavaScript */
.company-logo.logo-scrolled .flame-group,
svg.logo-scrolled .flame-group {
    opacity: 0 !important;
    transition: opacity 0.8s ease;
}

.company-logo.logo-scrolled .smoke-group,
svg.logo-scrolled .smoke-group {
    opacity: 1 !important;
    transition: opacity 0.8s ease;
}

.company-logo.logo-scrolled .water-drops-group,
svg.logo-scrolled .water-drops-group {
    opacity: 0 !important;
    pointer-events: none;
    transition: opacity 0.8s ease;
}


@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-section {
    display: flex;
    align-items: flex-start;
    gap: var(--space-5);
    position: relative;
}

.company-logo {
    width: 110px;
    height: 110px;
    overflow: visible;
    transition: transform var(--transition-slow);
}

.company-logo:hover {
    transform: scale(1.02);
}

.company-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.company-name {
    font-size: 1.5rem;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.1;
    font-weight: 900;
    background: linear-gradient(
        135deg,
        #FFFFFF 0%,
        #FFD580 50%,
        #FFFFFF 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: none;
}

@keyframes textShimmer {
    to {
        background-position: 200% center;
    }
}

.company-tagline {
    font-size: 0.55rem;
    color: #FFD580;
    margin: 0;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.company-byline {
    font-size: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 2px 0 0;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-style: italic;
}

.company-subtitle {
    font-size: 0.75rem;
    color: #B0B0B0;
    margin: var(--space-1) 0 0 0;
    font-weight: 500;
    letter-spacing: 0.3px;
    line-height: 1.4;
}

/* ============================================
   MAIN NAVIGATION
   ============================================ */

/* Navigation styles moved to styles.css to avoid conflicts */

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: var(--space-2) var(--space-4);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: all 0.2s ease;
    white-space: nowrap;
}

.nav-link:hover {
    color: #FFD580;
    background: rgba(255, 255, 255, 0.08);
}

.nav-link svg {
    transition: transform 0.2s ease;
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    background: rgba(10, 10, 30, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-3);
    list-style: none;
    margin: var(--space-2) 0 0;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    z-index: 1001;
}

.nav-dropdown-zones {
    columns: 2;
    min-width: 400px;
}

.nav-dropdown:hover .nav-dropdown-menu {
    display: block;
}

.nav-dropdown:hover .nav-link svg {
    transform: rotate(180deg);
}

.nav-dropdown-link {
    display: block;
    padding: var(--space-2) var(--space-4);
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all 0.15s ease;
    break-inside: avoid;
}

.nav-dropdown-link:hover {
    color: #FFD580;
    background: rgba(255, 111, 0, 0.1);
}

/* Header actions (phone + hamburger) */
.header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding-top: var(--space-2);
}

/* Hamburger button - styles in styles.css to avoid conflicts */

.header-cta {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    align-items: flex-end;
}

.header-phone-display {
    font-size: 0.85rem;
    color: #FFD580;
    font-weight: 600;
    letter-spacing: 1px;
    opacity: 0.8;
}

.btn-call-now {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: linear-gradient(
        135deg,
        #FF6F00 0%,
        #FF8A00 50%,
        #FFB000 100%
    );
    color: white;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 4px 16px rgba(255, 111, 0, 0.35);
    border: none;
    transition: all var(--transition-base);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

.btn-call-now::before {
    content: '';
    position: absolute;
    inset: -100%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.btn-call-now:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 111, 0, 0.5);
}

.btn-call-now:hover::before {
    transform: translateX(100%);
}

/* ============================================
   HERO GRID - SPLIT LAYOUT
   ============================================ */

/* Hero centered - for 404 & legal pages */
.hero-centered {
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
    padding-top: 180px;
    position: relative;
    z-index: 10;
}

.hero-modern > .container {
    position: static;
}

/* Hero split layout */
.hero-split {
    display: flex;
    align-items: center;
    padding: 180px 0 140px;
    position: relative;
    z-index: 10;
    min-height: 100vh;
}

.hero-split .hero-content {
    text-align: left;
    max-width: 50%;
    position: relative;
    z-index: 3;
}

.hero-split .hero-title {
    text-align: left;
}

.hero-split .hero-description {
    text-align: left;
}

.hero-content-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    margin: 1.25rem 0 1.5rem;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.95rem;
}

.hero-content-meta span {
    padding: 0.45rem 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(7, 17, 15, 0.28);
}

.freshness-shell {
    margin: 1.25rem 0 1.5rem;
}

.freshness-shell .hero-content-meta {
    margin: 0;
}

.freshness-status {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.9rem;
}

.freshness-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.7rem 0.95rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(7, 17, 15, 0.4);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.88rem;
    line-height: 1.3;
}

.freshness-pill strong {
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.freshness-pill.is-fresh {
    border-color: rgba(129, 199, 132, 0.36);
    background: rgba(25, 77, 43, 0.42);
    color: #E8F5E9;
}

.freshness-pill.is-stable {
    border-color: rgba(255, 213, 128, 0.28);
    background: rgba(72, 53, 17, 0.4);
    color: #FFF3D6;
}

.freshness-pill.is-stale {
    border-color: rgba(255, 138, 101, 0.3);
    background: rgba(74, 30, 20, 0.44);
    color: #FFE2D7;
}

.hero-split .hero-cta-group {
    justify-content: flex-start;
}

.hero-split .hero-trust-pills {
    justify-content: flex-start;
}

/* Image intégrée au fond du hero */
.hero-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
    opacity: 0;
    transform: scale(1.1);
    animation: heroImageReveal 1.8s ease-out 0.3s forwards;
}

@keyframes heroImageReveal {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 70% center;
    display: block;
}

/* Version pages hub/service (plus court, image mieux visible) */
.hero-image-page {
    opacity: 1;
}

.hero-image-page img {
    object-position: center center;
    object-fit: cover;
}

.hero-modern:has(.hero-image-page) {
    min-height: 70vh;
}

.hero-modern:has(.hero-image-page) .hero-split {
    min-height: 70vh;
    padding: 140px 0 80px;
}

/* Dégradé moins intense pour les pages hub/service */
.hero-image-page::before {
    background: linear-gradient(to right, #0D1628 5%, rgba(13, 22, 40, 0.85) 35%, transparent 100%);
}

.hero-image-page::after {
    background: linear-gradient(to top, #0D1628 0%, rgba(13, 22, 40, 0.7) 20%, transparent 100%);
}

/* Dégradé gauche sur l'image */
.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, #0D1628 0%, transparent 100%);
    z-index: 2;
}

/* Dégradé bas */
.hero-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, #0D1628 0%, transparent 100%);
    z-index: 2;
}


/* Eyebrow badge */
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-2) var(--space-5);
    background: rgba(255, 111, 0, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 111, 0, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    color: #FFD580;
    margin-bottom: var(--space-8);
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s backwards;
}

.eyebrow-dot {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #FF6F00, #FFB000);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(255, 111, 0, 0.6);
}

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

.eyebrow-badge {
    padding: var(--space-1) var(--space-3);
    background: rgba(255, 111, 0, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero title - oversized bold (trend 2026) */
.hero-title {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: var(--space-8);
    color: #FFFFFF;
    letter-spacing: -0.03em;
    position: relative;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s backwards;
}

.title-gradient {
    display: block;
    background: linear-gradient(
        135deg,
        #FF6F00 0%,
        #FFD580 50%,
        #FF8A00 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s backwards,
               gradientFlow 8s linear infinite;
    position: relative;
}

.title-gradient::after {
    content: '';
    position: absolute;
    inset: -15px;
    background: radial-gradient(
        ellipse at center,
        rgba(255, 111, 0, 0.2),
        transparent 70%
    );
    z-index: -1;
    filter: blur(24px);
    animation: none;
    opacity: 0.45;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.8;
    }
}

@keyframes gradientFlow {
    to {
        background-position: 200% center;
    }
}

/* Hero description */
.hero-description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: var(--space-10);
    max-width: 600px;
    margin-inline: auto;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.5s backwards;
}

.hero-description strong {
    color: #FFD580;
    font-weight: 700;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   HERO CTA BUTTONS - PREMIUM
   ============================================ */

.hero-cta-group {
    display: flex;
    gap: var(--space-5);
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: var(--space-10);
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.6s backwards;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-5) var(--space-8);
    background: linear-gradient(
        135deg,
        #FF6F00 0%,
        #FF8A00 50%,
        #FFB000 100%
    );
    color: white;
    border-radius: var(--radius-xl);
    font-weight: 700;
    box-shadow: 0 8px 32px rgba(255, 111, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 220, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    cursor: pointer;
}

.btn-hero-primary::before {
    content: '';
    position: absolute;
    inset: -100%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.btn-hero-primary:hover::before {
    transform: translateX(100%);
}

.btn-hero-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 16px 48px rgba(255, 111, 0, 0.6),
                0 0 0 1px rgba(255, 255, 255, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.5);
    border-color: rgba(255, 220, 0, 0.8);
    color: #FFF;
}

.btn-hero-primary:hover svg {
    opacity: 0.95;
}

.btn-hero-primary:active {
    transform: translateY(-1px) scale(1);
    transition: all 0.1s ease;
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    flex-shrink: 0;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.btn-label {
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0.9;
}

.btn-sublabel {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-5) var(--space-6);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 1.05rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-hero-secondary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.12);
    color: white;
}

.btn-hero-secondary:hover::before {
    opacity: 1;
}

.btn-hero-secondary:active {
    transform: translateY(0);
    transition: transform 0.1s ease;
}

.btn-hero-secondary svg {
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.btn-hero-secondary:hover svg {
    transform: translateX(5px);
}

/* ============================================
   HERO TRUST PILLS
   ============================================ */

.hero-trust-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-4);
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.7s backwards;
}

.trust-pill {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* ============================================
   HERO STATS - GLASSMORPHISM CONTAINER (legacy)
   ============================================ */

.hero-stats {
    display: flex;
    align-items: center;
    gap: var(--space-6);
    padding: var(--space-6);
    background: rgba(13, 22, 40, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-2xl);
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.7s backwards;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.stat-item {
    flex: 1;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 900;
    font-family: var(--font-display);
    background: linear-gradient(135deg, #FFD580, #FF8A00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: var(--space-2);
}

.stat-label {
    font-size: 0.85rem;
    color: #B0B0B0;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(
        180deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
}

/* ============================================
   TRUST CARDS - BENTO GRID (RIGHT SIDE)
   ============================================ */

.hero-trust-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-5);
    position: relative;
}

.trust-card {
    position: relative;
    padding: var(--space-6);
    background: rgba(13, 22, 40, 0.84);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-2xl);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    animation: fadeInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}

.trust-card:nth-child(1) {
    animation-delay: 0.5s;
}

.trust-card:nth-child(2) {
    animation-delay: 0.6s;
}

.trust-card:nth-child(3) {
    animation-delay: 0.7s;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.trust-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 111, 0, 0.4);
    box-shadow: 0 10px 24px rgba(255, 111, 0, 0.16);
}

.card-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 50% 0%,
        rgba(255, 111, 0, 0.15),
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.trust-card:hover .card-glow {
    opacity: 1;
}

.card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-4);
    transition: all 0.4s ease;
}

.card-primary .card-icon {
    background: linear-gradient(135deg, rgba(255, 111, 0, 0.2), rgba(255, 111, 0, 0.1));
    color: #FF8A00;
}

.card-secondary .card-icon {
    background: linear-gradient(135deg, rgba(25, 118, 210, 0.2), rgba(25, 118, 210, 0.1));
    color: #64B5F6;
}

.card-accent .card-icon {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2), rgba(76, 175, 80, 0.1));
    color: #81C784;
}

.trust-card:hover .card-icon {
    transform: scale(1.04);
}

.card-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: var(--space-2);
    line-height: 1.3;
}

.card-content p {
    font-size: 0.95rem;
    color: #B0B0B0;
    margin: 0;
    line-height: 1.5;
}

/* ============================================
   RESPONSIVE - HERO MODERN
   ============================================ */

@media (max-width: 968px) {
    .hero-modern {
        min-height: auto;
        padding-block: 0 var(--space-10);
    }

    .hero-modern-compact {
        padding-block: 96px 0;
    }

    .hero-split {
        padding: 120px 0 80px;
        min-height: 100dvh;
    }

    /* Pages zones/services - hero plus compact avec CTAs plus bas */
    .hero-modern:has(.hero-image-page) .hero-split {
        padding: 140px 0 60px;
        min-height: auto;
    }

    .hero-split .hero-content {
        text-align: center;
        max-width: 100%;
    }

    .hero-split .hero-title {
        text-align: center;
    }

    .hero-split .hero-description {
        text-align: center;
    }

    .hero-content-meta {
        justify-content: center;
    }

    .freshness-status {
        justify-content: center;
    }

    .hero-split .hero-cta-group {
        justify-content: center;
    }

    .hero-split .hero-trust-pills {
        justify-content: center;
    }

    .hero-image {
        width: 100%;
        height: 50%;
        top: auto;
        bottom: 0;
        clip-path: polygon(0 15%, 100% 0, 100% 100%, 0% 100%);
    }

    .hero-image::before {
        width: 100%;
        height: 50%;
        top: 0;
        left: 0;
        background: linear-gradient(to bottom, #0D1628 0%, transparent 100%);
    }

    .hero-title {
        font-size: clamp(2.2rem, 9vw, 3.5rem);
    }

    .hero-trust-pills {
        gap: var(--space-3);
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }

    /* CTAs centrées et réduites */
    .hero-cta-group {
        justify-content: center;
        align-items: center;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: auto;
        max-width: 280px;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: var(--space-5);
    }

    .stat-divider {
        width: 100%;
        height: 1px;
    }

    .shape {
        display: none;
    }

    /* Mobile nav - Styles handled in styles.css to avoid conflicts */

    .nav-dropdown-menu {
        position: static;
        background: none;
        backdrop-filter: none;
        border: none;
        box-shadow: none;
        padding: 0 0 0 var(--space-4);
        margin: 0;
        display: none;
        min-width: auto;
        columns: 1;
    }

    .nav-dropdown-zones {
        columns: 1;
        min-width: auto;
    }

    .nav-dropdown.dropdown-open .nav-dropdown-menu {
        display: block;
    }

    .nav-dropdown-link {
        padding: var(--space-2) var(--space-4);
        font-size: 0.9rem;
    }

    .btn-call-now span,
    .btn-call-now {
        font-size: 0.9rem;
    }
}

@media (max-width: 640px) {
    /* Header mobile - HORIZONTAL : logo gauche, hamburger droite */
    .hero-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: var(--space-3);
        padding: var(--space-4);
        background: rgba(10, 10, 30, 0.98);
        backdrop-filter: blur(16px);
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
    }

    /* Logo + texte à gauche */
    .logo-section {
        flex: 1;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        gap: var(--space-3);
    }

    /* Logo en mobile */
    .company-logo {
        width: 60px;
        height: 60px;
        flex-shrink: 0;
    }

    /* Nom complet visible À CÔTÉ du logo - centré verticalement */
    .company-info {
        display: flex;
        flex-direction: column;
        justify-content: center;
        flex: 1;
        gap: 2px;
    }

    .company-name {
        font-size: 0.9rem;
        line-height: 1.1;
    }

    .company-tagline {
        font-size: 0.45rem;
        margin-top: 0;
        line-height: 1.2;
    }

    .company-byline {
        font-size: 0.5rem;
        margin-top: 2px;
    }

    /* Navigation cachée en mobile (s'ouvre avec hamburger) */
    .main-nav {
        display: none;
    }

    /* Trust pills dans le hero content - VISIBLES et OPAQUES sur mobile */
    .hero-content .hero-trust-pills {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--space-2);
        margin-top: var(--space-4);
    }

    .hero-content .trust-pill {
        font-size: 0.7rem;
        padding: var(--space-2) var(--space-3);
        background: rgba(255, 255, 255, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.35);
        backdrop-filter: blur(8px);
    }

    .hero-content .trust-pill svg {
        width: 14px;
        height: 14px;
    }

    /* Cacher seulement le bouton call, PAS le hamburger */
    .header-actions {
        display: flex;
        gap: var(--space-2);
    }

    .btn-call-now {
        display: none;
    }

    .hero-eyebrow {
        font-size: 0.8rem;
        padding: var(--space-2) var(--space-4);
    }

    .stat-value {
        font-size: 2rem;
    }

    /* CTAs PLUS PETITS en mobile */
    .btn-hero-primary,
    .btn-hero-secondary {
        padding: var(--space-3) var(--space-5);
        font-size: 0.9rem;
    }
}
