﻿:root {
    --bg-black: #020202;
    --navy-blue: #0A192F;
    --navy-deep: #030815;
    --orange: #FF6B00;
    --pure-white: #FFFFFF;
    --text-muted: #8892B0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    font-family: 'Outfit', 'Space Grotesk', sans-serif;
    background-color: var(--navy-blue);
    color: var(--pure-white);
    overflow-x: hidden;
    scroll-behavior: smooth;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

/* --- Halo lumineux (Mouse Glow dynamique) --- */
#mouse-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 800px;
    height: 800px;
    /* Lueur subtile aux couleurs de la marque Flare */
    background: radial-gradient(circle, rgba(255, 107, 0, 0.12) 0%, rgba(2, 2, 2, 0) 65%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
    transition: opacity 0.3s;
}

/* --- Canvas Particules --- */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    /* Derrière absolument tout le contenu de la page */
    pointer-events: none;
    opacity: 1;
}

/* --- Navigation --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(2, 2, 2, 0.9) 0%, transparent 100%);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.logo {
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logo span {
    color: var(--orange);
    font-weight: 900;
}

nav ul {
    display: flex;
    gap: 3rem;
    list-style: none;
}

nav a {
    color: var(--pure-white);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.4s;
    position: relative;
}

nav a:hover {
    color: var(--orange);
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--orange);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

/* --- Majestic Reveal --- */
.majestic-reveal {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(30px);
    transition: opacity 1.5s cubic-bezier(0.25, 1, 0.5, 1), filter 1.5s cubic-bezier(0.25, 1, 0.5, 1), transform 1.5s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: opacity, filter, transform;
}

.majestic-reveal.is-visible {
    opacity: 1;
    filter: blur(0px);
    transform: translateY(0);
}

/* --- BREADCRUMBS --- */
.breadcrumb {
    padding: 1.5rem 4rem;
    margin-top: 5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    z-index: 100;
    position: relative;
    display: flex;
    gap: 0.8rem;
    align-items: center;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 107, 0, 0.05);
}

.breadcrumb a {
    color: var(--orange);
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
}

.breadcrumb a:hover {
    color: var(--pure-white);
    transform: translateX(-2px);
}

.breadcrumb span.separator {
    color: rgba(255, 255, 255, 0.15);
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 10;
}

.hero-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(3, 8, 21, 0.3) 0%, rgba(10, 25, 47, 0) 100%);
    z-index: -1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

#hero-title {
    font-size: 8.5rem;
    font-weight: 900;
    letter-spacing: -2px;
    /* Plus compact */
    color: var(--pure-white);
    line-height: 1;
    margin-bottom: 0.5rem;
    /* 3D Depth Support */
    will-change: transform, text-shadow;
    transform-origin: center center;
    transform-style: preserve-3d;
    user-select: none;

    /* Futuristic Brand Gradient (Orange & White) */
    background: linear-gradient(135deg, #FF6B00 0%, #FFFFFF 50%, #FF8C00 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 5s linear infinite;

    /* Brand Glow */
    text-shadow: 0 0 20px rgba(255, 107, 0, 0.3), 0 0 40px rgba(255, 255, 255, 0.1);
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

#hero-title::after {
    content: '.';
    color: var(--orange);
}

.subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 3rem;
}

/* Bouton CTA Immersif */
.btn-cta {
    display: inline-block;
    padding: 1.2rem 3.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--pure-white);
    background: rgba(255, 107, 0, 0.1);
    text-decoration: none;
    border: 1px solid var(--orange);
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.2);
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--orange);
    transition: left 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: -1;
}

.btn-cta:hover {
    color: var(--navy-blue);
    box-shadow: 0 0 30px rgba(255, 107, 0, 0.6);
}

.btn-cta:hover::before {
    left: 0;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 15px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--orange);
    border-radius: 2px;
    animation: scrollWheel 2s infinite ease-in-out;
}

@keyframes scrollWheel {
    0% {
        top: 8px;
        opacity: 1;
    }

    100% {
        top: 24px;
        opacity: 0;
    }
}

/* --- SECTIONS GLOBALES --- */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: var(--pure-white);
}

.section-title span {
    color: var(--orange);
}

.title-line {
    width: 60px;
    height: 3px;
    background: var(--orange);
    margin: 1.5rem auto 0;
    box-shadow: 0 0 10px var(--orange);
}

/* --- HUB DES ENTITÉS (Cartes avec Images Immersives) --- */
.hub-section {
    padding: 8rem 4rem;
    position: relative;
    z-index: 10;
    background: transparent;
    /* Laisse transparaître le canvas */
}

.hub-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.glass-card {
    height: 380px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
    /* Transition gérée par JS pour le tilt */
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.6s ease;
    cursor: pointer;
    background-size: cover;
    background-position: center;
    /* 3D Perspective for tilt effect */
    transform-style: preserve-3d;
    will-change: transform;
}

/* L'overlay superpose un dégradé sombre profond (Solid Dark) structuré comme Flare AI */
.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 40%, rgba(0, 0, 0, 0.3) 100%);
    transition: background 0.5s ease, opacity 0.5s ease;
    z-index: 1;
}

.card-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: border-color 0.5s ease;
    z-index: 2;
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 107, 0, 0.2);
}

.glass-card:hover .card-overlay {
    /* Au survol, on assombrit légèrement et on glisse un ton Navy foncé/Orange */
    background: linear-gradient(to top, rgba(10, 25, 47, 0.95) 0%, rgba(0, 0, 0, 0.8) 50%, rgba(255, 107, 0, 0.1) 100%);
}

.glass-card:hover .card-border {
    border-color: rgba(255, 107, 0, 0.5);
}

.card-content {
    position: relative;
    z-index: 3;
    transition: transform 0.5s ease;
}

.glass-card:hover .card-content {
    transform: translateY(-10px);
}

.icon-wrapper {
    font-size: 2rem;
    color: var(--orange);
    margin-bottom: 1rem;
    transition: color 0.5s ease, transform 0.5s ease;
}

.glass-card:hover .icon-wrapper {
    color: var(--pure-white);
    transform: scale(1.1) translateX(5px);
}

.glass-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 0.5rem;
    color: var(--pure-white);
}

.glass-card p {
    font-size: 1rem;
    font-weight: 400;
    color: #D1D8E0;
    opacity: 0.9;
}

/* --- PORTFOLIO --- */
.portfolio-section {
    padding: 6rem 0 10rem 0;
    position: relative;
    z-index: 10;
    background: transparent;
    /* Laisse transparaître le canvas */
}

.portfolio-row {
    margin-bottom: 5rem;
    padding-left: 4rem;
}

.row-title {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--pure-white);
    margin-bottom: 2rem;
}

.carousel-container {
    overflow-x: auto;
    scrollbar-width: none;
}

.carousel-container::-webkit-scrollbar {
    display: none;
}

.carousel-track {
    display: flex;
    gap: 1.5rem;
    padding-bottom: 2rem;
    padding-right: 4rem;
}

/* Placeholder Gradients pour les images de portfolio s'il n'y a pas d'image en DB */
.item-bg-1 {
    background: linear-gradient(135deg, #0A192F, #050a15);
}

.item-bg-2 {
    background: linear-gradient(135deg, #FF6B00, #4A2300);
}

.item-bg-3 {
    background: linear-gradient(135deg, #112240, #0A192F);
}

.item-bg-4 {
    background: linear-gradient(135deg, #020202, #FF6B00);
}

.item-bg-5 {
    background: linear-gradient(135deg, #0A192F, #304E75);
}

.item-bg-6 {
    background: linear-gradient(135deg, #FF6B00, #E65A00);
}

.item-bg-7 {
    background: linear-gradient(135deg, #050A15, #000000);
}

.item-bg-8 {
    background: linear-gradient(135deg, #1A1A1A, #0A192F);
}

.portfolio-item {
    flex: 0 0 340px;
    height: 190px;
    border-radius: 8px;
    position: relative;
    display: flex;
    align-items: flex-end;
    cursor: pointer;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.5s ease;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background-size: cover;
    background-position: center;
}

.portfolio-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6), 0 0 15px rgba(255, 107, 0, 0.15);
    border-color: rgba(255, 107, 0, 0.3);
}

.item-overlay {
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(2, 2, 2, 0.95), rgba(2, 2, 2, 0));
    color: var(--pure-white);
    font-weight: 500;
    letter-spacing: 1px;
    font-size: 1rem;
    text-transform: uppercase;
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0.8;
    transition: opacity 0.5s ease, padding-bottom 0.5s ease;
}

.portfolio-item:hover .item-overlay {
    opacity: 1;
    padding-bottom: 2rem;
}

.item-overlay i {
    color: var(--orange);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s ease;
}

.portfolio-item:hover .item-overlay i {
    opacity: 1;
    transform: translateX(0);
}


/* --- FOOTER --- */
footer {
    padding: 6rem 4rem 3rem 4rem;
    border-top: 1px solid rgba(255, 107, 0, 0.2);
    text-align: center;
    position: relative;
    z-index: 10;
    background: var(--navy-deep);
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 3rem;
}

.footer-logo span {
    color: var(--orange);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.footer-links a,
.footer-links span {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: color 0.4s;
}

.footer-links a:hover,
.footer-links i {
    color: var(--orange);
}

.footer-bottom {
    font-size: 0.8rem;
    color: #555;
    letter-spacing: 1px;
    font-weight: 300;
}

.stats-section {
    padding: 5rem 4rem;
    background: transparent;
    /* Pour laisser voir les particules */
    border-top: 1px solid rgba(255, 107, 0, 0.1);
    border-bottom: 1px solid rgba(255, 107, 0, 0.1);
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: -3px;
    color: var(--orange);
    display: block;
    line-height: 1;
    text-shadow: 0 0 30px rgba(255, 107, 0, 0.4);
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.flow-section {
    padding: 8rem 4rem;
    position: relative;
    z-index: 10;
    background: transparent;
    /* Laisse fondre les particules */
    overflow: hidden;
}

.flow-intro {
    color: var(--text-muted);
    font-size: 1rem;
    letter-spacing: 1px;
    margin-top: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    line-height: 1.8;
}

.flow-scenarios {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 3rem auto;
    flex-wrap: wrap;
    max-width: 900px;
}

.scenario-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: var(--text-muted);
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.35s ease;
    cursor: none;
    text-transform: uppercase;
}

.scenario-btn i {
    font-size: 1rem;
    color: inherit;
}

.scenario-btn:hover,
.scenario-btn.active {
    background: rgba(255, 107, 0, 0.1);
    border-color: var(--orange);
    color: var(--pure-white);
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.2);
}

.scenario-btn.active i {
    color: var(--orange);
}

/* Pipeline de projet */
.flow-pipeline {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    max-width: 1200px;
    margin: 2rem auto 4rem;
    flex-wrap: wrap;
    position: relative;
}

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 180px;
    opacity: 0;
    transform: translateY(30px);
    animation: stepReveal 0.5s forwards;
    position: relative;
}

.flow-step+.flow-step::before {
    content: '';
    position: absolute;
    left: -44px;
    top: 28px;
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, var(--orange), rgba(255, 107, 0, 0.2));
    display: block;
}

/* Flèche visuelle entre steps */
.flow-step+.flow-step .flow-arrow {
    position: absolute;
    left: -28px;
    top: 20px;
    font-size: 0.7rem;
    color: var(--orange);
    opacity: 0.7;
}

@keyframes stepReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid rgba(255, 107, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--orange);
    background: rgba(255, 107, 0, 0.08);
    margin-bottom: 1rem;
    transition: all 0.3s;
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.15);
}

.flow-step:hover .step-icon {
    background: rgba(255, 107, 0, 0.2);
    box-shadow: 0 0 30px rgba(255, 107, 0, 0.4);
    transform: scale(1.1);
}

.step-num {
    position: absolute;
    top: -8px;
    right: 52px;
    font-size: 0.65rem;
    font-weight: 700;
    background: var(--orange);
    color: #000;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- FLOATING SHARE BUTTON --- */
.share-btn-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 2000;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 15px;
}

.share-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--orange);
    border: none;
    color: var(--navy-deep);
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
}

.share-btn:hover {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 15px 40px rgba(255, 107, 0, 0.6);
}

.share-btn.active {
    transform: rotate(45deg);
    background: var(--pure-white);
    color: var(--orange);
}

.share-menu {
    display: flex;
    flex-direction: column-reverse;
    gap: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.share-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.share-option {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--pure-white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.share-option:hover {
    background: var(--orange);
    color: var(--navy-deep);
    transform: scale(1.1);
    border-color: var(--orange);
}

.step-entity {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 0.3rem;
}

.step-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--pure-white);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.step-desc {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.5;
    padding: 0 0.5rem;
}

.flow-cta-wrapper {
    text-align: center;
    margin-top: 1rem;
}

.flow-cta-btn {
    font-size: 1rem;
    padding: 1.2rem 4rem;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .flow-pipeline {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .flow-step+.flow-step::before {
        display: none;
    }
}

/* --- Responsive --- */

@media (max-width: 1024px) {
    #hero-title {
        font-size: 5rem;
    }

    .hub-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    header {
        padding: 1.5rem;
        flex-direction: column;
        gap: 1rem;
    }

    nav ul {
        gap: 1.5rem;
    }

    #hero-title {
        font-size: 3.5rem;
    }

    .subtitle {
        font-size: 0.9rem;
        letter-spacing: 0.2em;
    }

    .hub-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-row {
        padding-left: 1.5rem;
    }

    .carousel-track {
        padding-right: 1.5rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
}

/* Styles for Page Transitions & Flare AI Catalog */
#page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #000;
    z-index: 9999;
    transition: opacity 0.8s ease-in-out;
    pointer-events: none;
    opacity: 1;
}

#page-transition.fade-in {
    opacity: 0;
}

.ai-gradient {
    /* Gradient semi-transparent pour laisser les particules du canvas transparaître */
    background: radial-gradient(circle at center, rgba(16, 30, 60, 0.6) 0%, rgba(10, 25, 47, 0.75) 100%);
}

.massive-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
}

.catalog-section {
    padding: 6rem 4rem;
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
}

.catalog-intro {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 4rem;
    letter-spacing: 1px;
}

.service-block {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 4rem;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.service-header {
    background: rgba(10, 25, 47, 0.5);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.service-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--orange);
    opacity: 0.8;
}

.service-header h3 {
    font-size: 1.8rem;
    letter-spacing: 1px;
}

.service-body {
    padding: 2.5rem;
}

.service-desc h4 {
    color: var(--orange);
    margin-bottom: 1rem;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.service-desc p {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.package-card {
    background: rgba(2, 2, 2, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 2rem;
    position: relative;
    transition: transform 0.3s, border-color 0.3s;
}

.package-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 0, 0.3);
}

.package-card h5 {
    font-size: 1.2rem;
    color: var(--pure-white);
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.5rem;
}

.pkg-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    min-height: 80px;
}

.price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--pure-white);
    margin-top: auto;
}

.price span {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-muted);
}

.package-card.recommended {
    border-color: rgba(255, 107, 0, 0.3);
    background: rgba(255, 107, 0, 0.03);
}

.badge-pop {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--orange);
    color: #000;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
}

.package-card.premium h5 {
    color: #8892B0;
}

.maintenance-add {
    margin-top: 2rem;
    text-align: right;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
}

.muted-text {
    font-size: 0.85rem;
    color: #555;
}

.governance-info {
    margin-bottom: 3rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.governance-info p {
    margin-bottom: 0.5rem;
}

.governance-info strong {
    color: var(--pure-white);
    font-weight: 500;
}

.impact-text {
    color: var(--orange) !important;
    font-style: italic;
    margin-top: 1.5rem !important;
}

/* --- NAVIGATION --- */
nav a {
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s;
}

nav a:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

/* ============================================================
   PROJECT BUILDER PANE
============================================================ */
.project-builder-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    justify-content: flex-end;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
}

.project-builder-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.builder-pane {
    width: 600px;
    max-width: 100%;
    background: rgba(10, 25, 47, 0.95);
    height: 100%;
    border-left: 1px solid rgba(255, 107, 0, 0.3);
    box-shadow: -20px 0 50px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.project-builder-overlay.active .builder-pane {
    transform: translateX(0);
}

.builder-header {
    padding: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.builder-header h3 {
    font-size: 1.5rem;
    color: var(--pure-white);
}

#close-builder {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s;
}

#close-builder:hover {
    color: var(--orange);
}

.builder-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow-y: auto;
}

.builder-form-area {
    padding: 2rem;
    flex: 1;
}

.form-group {
    margin-bottom: 2rem;
}

.question-label {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--pure-white);
}

.styled-select {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    appearance: none;
    cursor: pointer;
}

.styled-select:focus {
    border-color: var(--orange);
}

.radio-group,
.checkbox-label {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.radio-label,
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.radio-label:hover,
.checkbox-label:hover {
    border-color: rgba(255, 107, 0, 0.4);
    background: rgba(255, 107, 0, 0.05);
}

.ai-sidebar {
    background: linear-gradient(to top, rgba(3, 8, 21, 1), rgba(10, 25, 47, 0.9));
    padding: 2rem;
    border-top: 1px solid rgba(255, 107, 0, 0.2);
}

.ai-header {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ai-display {
    background: rgba(0, 0, 0, 0.4);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 1.5rem;
}

.ai-status {
    font-size: 0.8rem;
    color: #10B981;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.ai-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--orange);
    transition: opacity 0.3s;
}

.ai-details {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.8;
}

/* ============================================================
   GOOGLE LOGIN MODAL
============================================================ */
.login-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(15px);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.login-modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.login-modal-box {
    background: var(--navy-blue);
    width: 400px;
    padding: 3rem 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    text-align: center;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.login-modal-overlay.active .login-modal-box {
    transform: scale(1);
}

.login-header h3 {
    font-size: 1.5rem;
    margin: 1.5rem 0 0.5rem;
}

.login-header p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.btn-google {
    width: 100%;
    padding: 1rem;
    background: white;
    color: #333;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
    font-family: inherit;
}

.btn-google:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.close-modal:hover {
    opacity: 1;
}

.login-terms {
    margin-top: 1.5rem;
    font-size: 0.75rem;
    color: #666;
}

/* ============================================================
   RANGE SLIDER CUSTOM
============================================================ */
.range-container {
    width: 100%;
    padding: 1rem 0;
}

.styled-range {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    outline: none;
    margin-bottom: 1.5rem;
    position: relative;
    cursor: pointer;
}

.styled-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--orange);
    cursor: pointer;
    box-shadow: 0 0 15px rgba(255, 107, 0, 0.6);
    transition: transform 0.2s;
}

.styled-range::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.styled-range::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--orange);
    cursor: pointer;
    box-shadow: 0 0 15px rgba(255, 107, 0, 0.6);
    border: none;
    transition: transform 0.2s;
}

.styled-range::-moz-range-thumb:hover {
    transform: scale(1.2);
}

.range-labels {
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
    font-size: 0.8rem;
    padding: 0 5px;
}

.range-labels span {
    text-align: center;
    flex: 1;
    line-height: 1.2;
}

.range-labels span:first-child {
    text-align: left;
}

.range-labels span:last-child {
    text-align: right;
}

/* ============================================================
   15. CINEMATIC VIDEO MODAL
============================================================ */
.video-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(25px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.video-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.9), 0 0 40px rgba(255, 107, 0, 0.15);
    transform: scale(0.95) translateY(20px);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.6s ease;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-modal-overlay.active .video-modal-content {
    transform: scale(1) translateY(0);
}

.video-modal-content iframe {
    width: 100%;
    height: 100%;
    border: none;
    position: absolute;
    top: 0;
    left: 0;
}

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--pure-white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000;
    /* Ensure it is above the modal content */
}

.video-modal-close:hover {
    background: var(--orange);
    color: var(--bg-black);
    transform: rotate(90deg);
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.5);
}

/* Ensure the wrapper has perspective for a 3D feel */
.modal-perspective-wrapper {
    perspective: 1200px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* GLASS PANEL UTILITY (For Text Readability over Particles) */
.glass-panel {
    background: rgba(10, 15, 30, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    position: relative;
    z-index: 5;
}

/* PROCESS SECTION */
.process-section {
    padding: 8rem 4rem;
    position: relative;
    z-index: 10;
    background: rgba(0, 0, 0, 0.2);
}

.section-subtitle {
    color: var(--text-muted);
    margin-top: 1rem;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 4rem auto 0;
}

.process-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-num {
    font-size: 3rem;
    font-weight: 900;
    color: var(--orange);
    line-height: 1;
    opacity: 0.4;
    font-family: 'Space Grotesk', sans-serif;
}

.step-info h3 {
    font-size: 1.25rem;
    color: var(--pure-white);
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.step-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .process-section {
        padding: 5rem 2rem;
    }

    .process-steps {
        gap: 2rem;
    }
}

/* --- TRUST SECTION (LOGOS) --- */
.trust-section {
    padding: 6rem 4rem;
    background: rgba(3, 8, 21, 0.4);
    position: relative;
    z-index: 10;
    text-align: center;
}

.logo-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5rem;
    flex-wrap: wrap;
    opacity: 0.6;
    margin-top: 3rem;
}

.logo-item {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--pure-white);
    filter: grayscale(1) brightness(0.8);
    transition: all 0.4s ease;
}

.logo-item:hover {
    filter: grayscale(0) brightness(1.2);
    opacity: 1;
    transform: scale(1.1);
}

/* --- WHY FLARE (Value Prop) --- */
.why-section {
    padding: 10rem 4rem;
    position: relative;
    z-index: 10;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.why-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 500px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 107, 0, 0.1);
}

.why-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-content h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.why-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.why-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
}

.why-card:hover {
    background: rgba(255, 107, 0, 0.05);
    border-color: var(--orange);
    transform: translateY(-5px);
}

.why-card i {
    font-size: 2rem;
    color: var(--orange);
    margin-bottom: 1.5rem;
}

.why-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.why-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* --- FAQ SECTION --- */
.faq-section {
    padding: 10rem 4rem;
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
}

.faq-grid {
    margin-top: 4rem;
}

.faq-item {
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
}

.faq-question {
    padding: 1.8rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s;
}

.faq-question:hover {
    background: rgba(255, 107, 0, 0.05);
}

.faq-question h4 {
    font-size: 1.1rem;
    font-weight: 500;
}

.faq-question i {
    color: var(--orange);
    transition: transform 0.4s ease;
}

.faq-answer {
    padding: 0 2.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0, 1, 0, 1);
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    padding-bottom: 2rem;
    max-height: 1000px;
    transition: all 0.5s cubic-bezier(1, 0, 1, 0);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Responsive fixes */
@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .why-image {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .logo-grid {
        gap: 3rem;
    }

    .why-cards {
        grid-template-columns: 1fr;
    }

    .hero #hero-title {
        font-size: 5rem;

        /* WORKS SECTION */
        .works-section {
            padding: 8rem 4rem;
            position: relative;
            z-index: 10;
        }

        .works-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1400px;
            margin: 4rem auto 0;
        }

        .work-card {
            height: 400px;
            background: rgba(0, 0, 0, 0.4);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            overflow: hidden;
            position: relative;
            transition: all 0.4s;
            background-size: cover;
            background-position: center;
        }

        .work-card:nth-child(1) {
            background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8)), url('../assets/images/hero-studio.png');
        }

        .work-card:nth-child(2) {
            background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8)), url('../assets/images/hero-ai.png');
        }

        .work-card:nth-child(3) {
            background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8)), url('../assets/images/hero-agency.png');
        }

        .work-overlay {
            position: absolute;
            inset: 0;
            padding: 2rem;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
        }

        .work-tag {
            color: var(--orange);
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .work-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--pure-white);
            margin-top: 0.5rem;
        }

        /* GEAR SECTION */
        .gear-section {
            padding: 8rem 4rem;
            position: relative;
            z-index: 10;
            background: rgba(255, 107, 0, 0.03);
        }

        .gear-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 3rem;
            max-width: 1200px;
            margin: 4rem auto 0;
        }

        .gear-item {
            text-align: center;
            padding: 3rem 2rem;
            background: rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 16px;
            transition: all 0.3s;
        }

        .gear-item:hover {
            border-color: rgba(255, 107, 0, 0.3);
            transform: translateY(-10px);
        }

        .gear-item i {
            font-size: 3rem;
            color: var(--orange);
            margin-bottom: 1.5rem;
        }

        .gear-item h4 {
            font-size: 1.2rem;
            color: var(--pure-white);
            margin-bottom: 1rem;
        }

        .gear-item p {
            color: #CBD5E1;
            font-size: 0.9rem;
            line-height: 1.6;
        }

        /* RESPONSIVE FOOTER FIX */
        footer {
            padding-top: 5rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }
    }
}

/* CONTACT SECTION FIX */
.contact-section {
    padding: 8rem 4rem;
    position: relative;
    z-index: 10;
}

/* ====================== TESTIMONIALS ====================== */
.testimonials-section {
    padding: 8rem 4rem;
    position: relative;
    z-index: 10;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 4rem auto 0;
}

.testimonial-card {
    background: rgba(10, 15, 35, 0.6);
    border: 1px solid rgba(255, 107, 0, 0.15);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 8rem;
    font-family: serif;
    color: rgba(255, 107, 0, 0.08);
    line-height: 1;
    pointer-events: none;
}

.testimonial-card:hover {
    border-color: rgba(255, 107, 0, 0.4);
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 107, 0, 0.08);
}

.testimonial-stars {
    color: #FF6B00;
    font-size: 1.1rem;
    letter-spacing: 3px;
    margin-bottom: 1.2rem;
}

.testimonial-text {
    color: #CBD5E1;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.25), rgba(255, 107, 0, 0.05));
    border: 1px solid rgba(255, 107, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--orange);
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    color: var(--pure-white);
    font-size: 0.9rem;
}

.testimonial-author span {
    color: var(--text-muted);
    font-size: 0.78rem;
}

/* ====================== CROSS-ENTITY CTA STRIP ====================== */
.cross-entity-strip {
    padding: 5rem 4rem;
    background: rgba(255, 107, 0, 0.04);
    border-top: 1px solid rgba(255, 107, 0, 0.1);
    text-align: center;
    position: relative;
    z-index: 10;
}

.cross-entity-strip h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--pure-white);
    margin-bottom: 0.5rem;
}

.cross-entity-strip p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.cross-entity-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.cross-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.8rem 1.5rem;
    background: transparent;
    border: 1px solid rgba(255, 107, 0, 0.35);
    border-radius: 50px;
    color: var(--pure-white);
    text-decoration: none;
    font-size: 0.85rem;
    font-family: var(--font-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cross-link-btn i {
    color: var(--orange);
    font-size: 0.85rem;
}

.cross-link-btn:hover {
    background: rgba(255, 107, 0, 0.12);
    border-color: var(--orange);
    color: var(--orange);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.15);
}

/* ====================== DEVIS EXPRESS ====================== */
.devis-strip {
    padding: 4rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.08) 0%, rgba(0, 0, 0, 0) 60%);
    border-top: 1px solid rgba(255, 107, 0, 0.12);
    position: relative;
    z-index: 10;
}

.devis-strip h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--pure-white);
    margin-bottom: 0.5rem;
}

.devis-strip p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.devis-strip .btn-cta {
    margin: 0 auto;
}

/* ====================== FOOTER ENHANCEMENTS ====================== */
.footer-social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.footer-social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social-links a:hover {
    background: var(--orange);
    color: var(--bg-black);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.3);
    border-color: var(--orange);
}

.devis-footer-section {
    max-width: 600px;
    margin: 0 auto 3rem;
    padding: 2.5rem;
    background: rgba(255, 107, 0, 0.03);
    border: 1px solid rgba(255, 107, 0, 0.15);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.devis-footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--pure-white);
}

.devis-footer-section p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

/* Response Fixes */
@media (max-width: 768px) {
    .footer-content {
        padding: 3rem 1.5rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .devis-footer-section {
        padding: 1.5rem;
    }
}