    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Montserrat:wght@600;700;800&display=swap');

    /* ========== VARIABLES ========== */
    :root {
        /* Couleurs principales */
        --orange: #F47920;
        --orange-dark: #E05D0E;
        --orange-light: #FFA726;
        --orange-pale: #FFF3E8;
        --black: #1A1A1A;
        --gray-dark: #2D2D2D;
        --gray: #6B7280;
        --gray-light: #9CA3AF;
        --gray-pale: #F3F4F6;
        --white: #FFFFFF;

        /* Fonctionnelles */
        --text-primary: #1A1A1A;
        --text-secondary: #4B5563;
        --text-light: #9CA3AF;
        --bg-body: #FFFFFF;
        --bg-soft: #F9FAFB;
        --bg-dark: #111111;
        --border: #E5E7EB;

        /* Typographie */
        --font-heading: 'Montserrat', sans-serif;
        --font-body: 'Inter', sans-serif;

        /* Espacements */
        --section-padding: 5rem 0;
        --container-max: 1200px;
        --radius: 12px;
        --radius-sm: 8px;
        --radius-lg: 16px;
        --transition: all 0.3s ease;
        --shadow: 0 4px 20px rgba(0,0,0,0.08);
        --shadow-hover: 0 8px 30px rgba(0,0,0,0.12);
    }

    /* ========== RESET & BASE ========== */
    *, *::before, *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: var(--font-body);
        font-size: 1rem;
        line-height: 1.6;
        color: var(--text-primary);
        background-color: var(--bg-body);
        -webkit-font-smoothing: antialiased;
    }

    h1, h2, h3, h4, h5, h6 {
        font-family: var(--font-heading);
        font-weight: 700;
        line-height: 1.2;
    }

    a {
        color: var(--orange);
        text-decoration: none;
        transition: var(--transition);
    }

    a:hover {
        color: var(--orange-dark);
    }

    img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    /* ========== CONTAINER ========== */
    .container {
        max-width: var(--container-max);
        margin: 0 auto;
        padding: 0 1.5rem;
    }

    /* ========== SECTIONS ========== */
    .section-shell {
        padding: var(--section-padding);
    }

    .section-shell.pt-0 {
        padding-top: 0;
    }

    .bg-white {
        background-color: var(--white);
    }

    .section-soft {
        background-color: var(--bg-soft);
    }

    /* ========== KICKERS & TITLES ========== */
    .section-kicker {
        display: inline-block;
        font-family: var(--font-heading);
        font-size: 0.8rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: var(--orange);
        margin-bottom: 0.5rem;
    }

    .section-kicker-light {
        color: rgba(255,255,255,0.7);
    }

    .section-title-xl {
        font-size: clamp(1.8rem, 3.5vw, 2.5rem);
        font-weight: 800;
        margin-bottom: 1rem;
        color: var(--black);
    }

    .section-lead {
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .lead {
        font-size: 1.1rem;
        color: var(--text-secondary);
    }

    .text-teal {
        color: var(--orange);
    }

    .text-center {
        text-align: center;
    }

    .mb-5 {
        margin-bottom: 3rem;
    }

    .mt-3 {
        margin-top: 1rem;
    }

    .mt-4 {
        margin-top: 1.5rem;
    }

    /* ========== REVEAL ANIMATION ========== */
    .reveal-up {
        opacity: 0;
        transform: translateY(30px);
        animation: revealUp 0.7s ease forwards;
    }

    @keyframes revealUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .reveal-up:nth-child(1) { animation-delay: 0.1s; }
    .reveal-up:nth-child(2) { animation-delay: 0.2s; }
    .reveal-up:nth-child(3) { animation-delay: 0.3s; }
    .reveal-up:nth-child(4) { animation-delay: 0.35s; }
    .reveal-up:nth-child(5) { animation-delay: 0.4s; }
    .reveal-up:nth-child(6) { animation-delay: 0.45s; }
    .reveal-up:nth-child(7) { animation-delay: 0.5s; }
    .reveal-up:nth-child(8) { animation-delay: 0.55s; }

    /* ========== HEADER / HERO ========== */
    .hero-section {
        position: relative;
        min-height: 100vh;
        display: flex;
        align-items: center;
        background-color: var(--bg-dark);
        color: var(--white);
        overflow: hidden;
    }

    .hero-video-wrap {
        position: absolute;
        inset: 0;
        z-index: 0;
        overflow: hidden;
    }

    .hero-background-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .hero-image-slider {
        position: absolute;
        inset: 0;
    }

    .hero-image-slide {
        position: absolute;
        inset: 0;
        opacity: 0;
        transform: scale(1);
        transition: opacity 0.9s ease, transform 6s ease;
    }

    .hero-image-slide.is-active {
        opacity: 1;
        transform: scale(1.06);
    }

    .hero-background-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
        filter: saturate(1.05);
    }

    .hero-video-overlay {
        position: absolute;
        inset: 0;
        z-index: 1;
        background: linear-gradient(135deg, rgba(0,0,0,0.82) 0%, rgba(26,26,26,0.66) 55%, rgba(0,0,0,0.78) 100%);
    }

    .hero-section .container {
        position: relative;
        z-index: 2;
    }

    .hero-kicker {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: rgba(244, 121, 32, 0.15);
        border: 1px solid rgba(244, 121, 32, 0.3);
        color: var(--orange-light);
        padding: 0.5rem 1.2rem;
        border-radius: 50px;
        font-size: 0.85rem;
        font-weight: 500;
        margin-bottom: 1.5rem;
    }

    .hero-kicker i {
        font-size: 1rem;
    }

    .hero-title-main {
        font-size: clamp(2.2rem, 5vw, 3.8rem);
        font-weight: 800;
        line-height: 1.1;
        margin-bottom: 1.5rem;
        color: var(--white);
    }

    .hero-title-main span {
        color: var(--orange);
    }

    .hero-copy {
        font-size: 1.1rem;
        color: rgba(255,255,255,0.75);
        max-width: 550px;
        margin-bottom: 2rem;
    }

    .d-flex {
        display: flex;
    }

    .gap-3 {
        gap: 1rem;
    }

    .flex-wrap {
        flex-wrap: wrap;
    }

    /* ========== BOUTONS ========== */
    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.75rem 1.8rem;
        border-radius: 50px;
        font-family: var(--font-heading);
        font-weight: 600;
        font-size: 0.95rem;
        border: 2px solid transparent;
        cursor: pointer;
        transition: var(--transition);
        text-decoration: none;
    }

    .btn-lg {
        padding: 0.9rem 2.2rem;
        font-size: 1rem;
    }

    .btn-accent-solid {
        background: var(--orange);
        color: var(--white);
        border-color: var(--orange);
    }

    .btn-accent-solid:hover {
        background: var(--orange-dark);
        border-color: var(--orange-dark);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(244, 121, 32, 0.4);
    }

    .btn-outline-light {
        background: transparent;
        color: var(--white);
        border-color: rgba(255,255,255,0.5);
    }

    .btn-outline-light:hover {
        background: rgba(255,255,255,0.1);
        border-color: var(--white);
        color: var(--white);
        transform: translateY(-2px);
    }

    .btn-outline-accent {
        background: transparent;
        color: var(--orange);
        border-color: var(--orange);
    }

    .btn-outline-accent:hover {
        background: var(--orange);
        color: var(--white);
    }

    .btn-light {
        background: var(--white);
        color: var(--black);
        border-color: var(--white);
    }

    .btn-light:hover {
        background: #e8e8e8;
        border-color: #e8e8e8;
    }

    .rounded-pill {
        border-radius: 50px;
    }

    .px-4 {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .fw-bold {
        font-weight: 700;
    }

    /* ========== HERO SERVICE PILLS ========== */
    .hero-service-pills {
        display: flex;
        flex-wrap: wrap;
        gap: 0.6rem;
        margin-top: 1.5rem;
    }

    .hero-service-pill {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        background: rgba(255,255,255,0.08);
        color: rgba(255,255,255,0.85);
        padding: 0.4rem 1rem;
        border-radius: 50px;
        font-size: 0.8rem;
        border: 1px solid rgba(255,255,255,0.15);
    }

    .hero-service-pill i {
        color: var(--orange-light);
        font-size: 0.85rem;
    }

    /* ========== HERO STATS ========== */
    .hero-stat-grid {
        display: flex;
        gap: 2rem;
        margin-top: 2rem;
        flex-wrap: wrap;
    }

    .hero-stat {
        text-align: center;
    }

    .hero-stat strong {
        display: block;
        font-family: var(--font-heading);
        font-size: 2rem;
        font-weight: 800;
        color: var(--orange);
        line-height: 1;
    }

    .hero-stat span {
        font-size: 0.8rem;
        color: rgba(255,255,255,0.6);
        margin-top: 0.2rem;
    }

    /* ========== HERO SERVICE PANEL ========== */
    .hero-service-panel {
        background: rgba(255,255,255,0.05);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: var(--radius-lg);
        padding: 2rem;
        color: var(--white);
    }

    .hero-service-panel h3 {
        font-size: 1.2rem;
        font-weight: 600;
        margin: 1rem 0 1.5rem;
        color: rgba(255,255,255,0.9);
    }

    .hero-service-list {
        display: flex;
        flex-direction: column;
        gap: 1.2rem;
    }

    .hero-service-item {
        display: flex;
        gap: 1rem;
        align-items: flex-start;
    }

    .hero-service-item i {
        font-size: 1.3rem;
        color: var(--orange);
        margin-top: 0.15rem;
        flex-shrink: 0;
    }

    .hero-service-item strong {
        display: block;
        font-size: 0.95rem;
        color: var(--white);
        margin-bottom: 0.2rem;
    }

    .hero-service-item span {
        font-size: 0.8rem;
        color: rgba(255,255,255,0.55);
    }

    /* ========== GRID SYSTEM ========== */
    .row {
        display: flex;
        flex-wrap: wrap;
        margin: 0 -0.75rem;
    }

    .col-lg-7, .col-lg-5, .col-lg-4, .col-lg-6, .col-lg-8, .col-md-6, .col-md-4, .col-xl-3, .col-xl-4 {
        padding: 0 0.75rem;
        width: 100%;
    }

    @media (min-width: 768px) {
        .col-md-6 { width: 50%; }
        .col-md-4 { width: 33.333%; }
    }

    @media (min-width: 992px) {
        .col-lg-7 { width: 58.333%; }
        .col-lg-5 { width: 41.667%; }
        .col-lg-4 { width: 33.333%; }
        .col-lg-6 { width: 50%; }
        .col-lg-8 { width: 66.667%; }
    }

    @media (min-width: 1200px) {
        .col-xl-3 { width: 25%; }
        .col-xl-4 { width: 33.333%; }
    }

    .g-4 {
        margin: 0 -1rem;
    }

    .g-4 > [class*="col-"] {
        padding: 0 1rem;
        margin-bottom: 2rem;
    }

    .g-5 {
        margin: 0 -1.5rem;
    }

    .g-5 > [class*="col-"] {
        padding: 0 1.5rem;
    }

    .align-items-center {
        align-items: center;
    }

    .align-items-stretch {
        align-items: stretch;
    }

    /* ========== COMPANY CARDS ========== */
    .company-profile-card,
    .company-story-panel {
        background: var(--white);
        border-radius: var(--radius-lg);
        overflow: hidden;
        height: 100%;
        box-shadow: var(--shadow);
        transition: var(--transition);
    }

    .company-profile-card:hover,
    .company-story-panel:hover {
        box-shadow: var(--shadow-hover);
        transform: translateY(-3px);
    }

    .company-profile-image {
        width: 100%;
        height: 240px;
        object-fit: cover;
    }

    .company-profile-copy {
        padding: 1.8rem;
    }

    .company-profile-copy h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
        color: var(--black);
    }

    .company-profile-copy p {
        color: var(--text-secondary);
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }

    .company-story-panel {
        padding: 2rem;
    }

    .company-story-panel-accent {
        background: var(--black);
        color: var(--white);
    }

    .mission-list {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-top: 1rem;
    }

    .mission-item {
        display: flex;
        gap: 1rem;
        align-items: flex-start;
    }

    .mission-step {
        flex-shrink: 0;
        width: 32px;
        height: 32px;
        background: var(--orange);
        color: var(--white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 0.85rem;
    }

    .mission-item p {
        font-size: 0.9rem;
        color: var(--text-secondary);
        flex: 1;
    }

    .value-list {
        display: flex;
        flex-direction: column;
        gap: 1.2rem;
        margin-top: 1rem;
    }

    .value-item {
        display: flex;
        gap: 1rem;
        align-items: flex-start;
    }

    .value-item i {
        font-size: 1.4rem;
        color: var(--orange);
        flex-shrink: 0;
        margin-top: 0.1rem;
    }

    .value-item strong {
        display: block;
        font-size: 0.95rem;
        margin-bottom: 0.2rem;
    }

    .value-item p {
        font-size: 0.8rem;
        color: rgba(255,255,255,0.6);
    }

    .confidence-badges {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(255,255,255,0.15);
    }

    .confidence-badges span {
        background: rgba(244,121,32,0.2);
        color: var(--orange-light);
        padding: 0.3rem 0.8rem;
        border-radius: 50px;
        font-size: 0.75rem;
    }

    /* ========== SECTOR CARDS ========== */
    .sector-card {
        background: var(--white);
        border-radius: var(--radius);
        overflow: hidden;
        box-shadow: var(--shadow);
        transition: var(--transition);
        height: 100%;
    }

    .sector-card:hover {
        box-shadow: var(--shadow-hover);
        transform: translateY(-3px);
    }

    .sector-thumb {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .sector-card h3 {
        font-size: 1.1rem;
        padding: 1.2rem 1.2rem 0;
    }

    .sector-card p {
        font-size: 0.85rem;
        color: var(--text-secondary);
        padding: 0.5rem 1.2rem 1.2rem;
    }

    /* ========== FOCUS PANEL ========== */
    .focus-panel {
        background: var(--bg-soft);
        border-radius: var(--radius-lg);
        padding: 2.5rem;
    }

    .focus-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.2rem;
    }

    .focus-card {
        background: var(--white);
        border-radius: var(--radius);
        overflow: hidden;
        box-shadow: var(--shadow);
        transition: var(--transition);
    }

    .focus-card:hover {
        box-shadow: var(--shadow-hover);
        transform: translateY(-3px);
    }

    .focus-thumb {
        width: 100%;
        height: 140px;
        object-fit: cover;
    }

    .focus-card h3 {
        font-size: 0.95rem;
        padding: 0.8rem 1rem 0;
    }

    .focus-card p {
        font-size: 0.8rem;
        color: var(--text-secondary);
        padding: 0.3rem 1rem 1rem;
    }

    /* ========== FEATURE STACK ========== */
    .feature-stack {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .feature-row {
        display: flex;
        gap: 1.2rem;
        align-items: flex-start;
    }

    .feature-thumb {
        width: 70px;
        height: 70px;
        border-radius: var(--radius-sm);
        object-fit: cover;
        flex-shrink: 0;
    }

    .feature-row h3 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }

    .feature-row p {
        font-size: 0.85rem;
        color: var(--text-secondary);
    }

    /* ========== INSIGHT CARDS ========== */
    .insight-card {
        background: var(--white);
        border-radius: var(--radius);
        padding: 2rem;
        text-align: center;
        box-shadow: var(--shadow);
        transition: var(--transition);
    }

    .insight-card:hover {
        box-shadow: var(--shadow-hover);
        transform: translateY(-3px);
    }

    .stat-number {
        display: block;
        font-family: var(--font-heading);
        font-size: 3rem;
        font-weight: 800;
        color: var(--orange);
        line-height: 1;
        margin-bottom: 0.5rem;
    }

    .insight-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .insight-card p {
        font-size: 0.85rem;
        color: var(--text-secondary);
    }

    /* ========== METRICS PANEL ========== */
    .metrics-panel {
        background: var(--black);
        border-radius: var(--radius-lg);
        padding: 2.5rem;
        color: var(--white);
        height: 100%;
    }

    .metrics-heading h2 {
        color: var(--white);
        margin-bottom: 2rem;
    }

    .metrics-grid {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 1.5rem;
    }

    .metric-box {
        text-align: center;
        padding: 1rem;
        background: rgba(255,255,255,0.05);
        border-radius: var(--radius-sm);
    }

    .metric-box strong {
        display: block;
        font-family: var(--font-heading);
        font-size: 2rem;
        font-weight: 800;
        color: var(--orange);
    }

    .metric-box span {
        font-size: 0.8rem;
        color: rgba(255,255,255,0.6);
    }

    .snapshot-panel {
        background: var(--orange-pale);
        border-radius: var(--radius-lg);
        padding: 2rem;
        height: 100%;
        border: 1px solid rgba(244,121,32,0.2);
    }

    .snapshot-panel h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .snapshot-list {
        list-style: none;
        padding: 0;
    }

    .snapshot-list li {
        position: relative;
        padding-left: 1.5rem;
        margin-bottom: 0.8rem;
        font-size: 0.9rem;
        color: var(--text-secondary);
    }

    .snapshot-list li::before {
        content: '+';
        position: absolute;
        left: 0;
        color: var(--orange);
        font-weight: 700;
    }

    /* ========== PROCESS CARDS ========== */
    .process-card {
        background: var(--white);
        border-radius: var(--radius);
        padding: 2rem;
        text-align: center;
        box-shadow: var(--shadow);
        transition: var(--transition);
        height: 100%;
        position: relative;
        border-top: 4px solid var(--orange);
    }

    .process-card:hover {
        box-shadow: var(--shadow-hover);
        transform: translateY(-3px);
    }

    .process-step {
        display: inline-flex;
        width: 50px;
        height: 50px;
        background: var(--orange);
        color: var(--white);
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        font-family: var(--font-heading);
        font-weight: 800;
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .process-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .process-card p {
        font-size: 0.85rem;
        color: var(--text-secondary);
    }

    /* ========== LOGO RIBBON ========== */
    .logo-ribbon {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .logo-chip {
        background: var(--white);
        color: var(--text-secondary);
        padding: 0.7rem 1.5rem;
        border-radius: 50px;
        font-weight: 600;
        font-size: 0.9rem;
        border: 1px solid var(--border);
        letter-spacing: 0.02em;
        transition: var(--transition);
    }

    .logo-chip:hover {
        border-color: var(--orange);
        color: var(--orange);
    }

    /* ========== SERVICE HIGHLIGHT CARDS ========== */
    .service-highlight-card {
        background: var(--white);
        border-radius: var(--radius);
        padding: 2rem;
        text-align: center;
        box-shadow: var(--shadow);
        transition: var(--transition);
        height: 100%;
        border: 1px solid var(--border);
    }

    .service-highlight-card:hover {
        box-shadow: var(--shadow-hover);
        transform: translateY(-5px);
        border-color: var(--orange);
    }

    .service-highlight-icon {
        width: 70px;
        height: 70px;
        background: var(--orange-pale);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.2rem;
        font-size: 1.8rem;
        color: var(--orange);
    }

    .service-highlight-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .service-highlight-card p {
        font-size: 0.85rem;
        color: var(--text-secondary);
        margin-bottom: 1rem;
    }

    .service-highlight-meta {
        display: inline-block;
        background: var(--orange-pale);
        color: var(--orange);
        padding: 0.3rem 0.8rem;
        border-radius: 50px;
        font-size: 0.75rem;
        font-weight: 600;
    }

    .service-focus-lead {
        max-width: 650px;
    }

    /* ========== GALLERY CAROUSEL ========== */
    .site-gallery-carousel {
        position: relative;
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow);
    }

    .site-gallery-viewport {
        overflow: hidden;
    }

    .site-gallery-track {
        display: flex;
        transition: transform 0.5s ease;
    }

    .site-gallery-slide {
        min-width: 100%;
        position: relative;
    }

    .site-gallery-image {
        width: 100%;
        height: 500px;
        object-fit: cover;
        display: block;
    }

    .site-gallery-slide figcaption {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(transparent, rgba(0,0,0,0.7));
        color: var(--white);
        padding: 2rem 1.5rem 1rem;
        font-weight: 600;
    }

    .site-gallery-control {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0,0,0,0.5);
        color: var(--white);
        border: none;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        cursor: pointer;
        font-size: 1.2rem;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        z-index: 2;
    }

    .site-gallery-control:hover {
        background: var(--orange);
    }

    .site-gallery-control-prev {
        left: 1rem;
    }

    .site-gallery-control-next {
        right: 1rem;
    }

    .site-gallery-dots {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        padding: 1rem;
        background: var(--black);
    }

    .site-gallery-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: rgba(255,255,255,0.3);
        border: none;
        cursor: pointer;
        transition: var(--transition);
    }

    .site-gallery-dot.is-active {
        background: var(--orange);
        width: 30px;
        border-radius: 10px;
    }

    /* ========== CONTENT BRIDGE ========== */
    .content-bridge-card {
        background: var(--white);
        border-radius: var(--radius-lg);
        padding: 2rem;
        box-shadow: var(--shadow);
        height: 100%;
        border: 1px solid var(--border);
    }

    .accent-card {
        background: var(--orange);
        color: var(--white);
        border-color: var(--orange);
    }

    .accent-card .section-kicker {
        color: rgba(255,255,255,0.8);
    }

    .accent-card h3,
    .accent-card p {
        color: var(--white);
    }

    .content-bridge-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .content-bridge-card p {
        font-size: 0.9rem;
        color: var(--text-secondary);
        margin-bottom: 1.2rem;
    }

    .accent-card p {
        color: rgba(255,255,255,0.85);
    }

    .bridge-links {
        display: flex;
        flex-wrap: wrap;
        gap: 0.6rem;
    }

    .bridge-links a {
        background: var(--orange-pale);
        color: var(--orange);
        padding: 0.5rem 1rem;
        border-radius: 50px;
        font-size: 0.85rem;
        font-weight: 500;
        transition: var(--transition);
    }

    .bridge-links a:hover {
        background: var(--orange);
        color: var(--white);
    }

    .mb-2 {
        margin-bottom: 0.5rem;
    }

    .mb-0 {
        margin-bottom: 0;
    }

    .mb-3 {
        margin-bottom: 1rem;
    }

    .mb-4 {
        margin-bottom: 1.5rem;
    }

    .mt-2 {
        margin-top: 0.5rem;
    }

    .text-white-50 {
        color: rgba(255,255,255,0.5);
    }

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

    .mx-auto {
        margin-left: auto;
        margin-right: auto;
    }

    .me-2 {
        margin-right: 0.5rem;
    }

    /* ========== TESTIMONIAL & FAQ ========== */
    .testimonial-panel {
        background: var(--black);
        border-radius: var(--radius-lg);
        padding: 2.5rem;
        color: var(--white);
        height: 100%;
    }

    .testimonial-quote {
        font-family: var(--font-heading);
        font-size: 1.3rem;
        font-style: italic;
        color: rgba(255,255,255,0.85);
        margin: 1.5rem 0;
        line-height: 1.5;
        position: relative;
        padding-left: 1.5rem;
        border-left: 4px solid var(--orange);
    }

    .testimonial-meta strong {
        display: block;
        color: var(--orange);
    }

    .testimonial-meta span {
        font-size: 0.8rem;
        color: rgba(255,255,255,0.5);
    }

    .faq-panel {
        background: var(--bg-soft);
        border-radius: var(--radius-lg);
        padding: 2rem;
        height: 100%;
    }

    .faq-item {
        padding: 1rem 0;
        border-bottom: 1px solid var(--border);
    }

    .faq-item:last-child {
        border-bottom: none;
    }

    .faq-item h3 {
        font-size: 0.95rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .faq-item p {
        font-size: 0.85rem;
        color: var(--text-secondary);
        margin-top: 0.5rem;
    }

    /* ========== RESPONSIVE ========== */
    @media (max-width: 768px) {
        .hero-section {
            min-height: auto;
            padding: 6rem 0 3rem;
        }

        .hero-title-main {
            font-size: 1.8rem;
        }

        .hero-stat-grid {
            gap: 1.5rem;
        }

        .hero-stat strong {
            font-size: 1.5rem;
        }

        .metrics-grid {
            grid-template-columns: 1fr 1fr;
        }

        .focus-grid {
            grid-template-columns: 1fr;
        }

        .site-gallery-image {
            height: 300px;
        }

        .logo-ribbon {
            gap: 0.5rem;
        }

        .logo-chip {
            font-size: 0.75rem;
            padding: 0.5rem 1rem;
        }
    }

    @media (max-width: 576px) {
        .metrics-grid {
            grid-template-columns: 1fr;
        }

        .hero-service-pills {
            flex-direction: column;
        }

        .hero-service-pill {
            justify-content: center;
        }

        .site-gallery-image {
            height: 220px;
        }

    }
