:root {
            --color-dark: #1e2b50;
            --color-dark-2: #151d38;
            --color-accent: #f39200;
            --color-accent-light: #fba929;
            --color-blue: #006ab0;
            --color-white: #ffffff;
            --color-light: #f5f6f8;
            --color-gray: #6c757d;
            --color-gray-light: #e9ecef;
            --font-sans: 'Inter', sans-serif;
            --font-serif: 'Playfair Display', serif;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-sans);
            color: var(--color-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* ===== HEADER ===== */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255,255,255,0.97);
            box-shadow: 0 2px 20px rgba(0,0,0,0.06);
            transition: background 0.4s, box-shadow 0.4s, padding 0.3s;
            padding: 0.6rem 0;
        }

        header.scrolled {
            background: rgba(255,255,255,0.97);
            box-shadow: 0 2px 30px rgba(0,0,0,0.08);
            padding: 0.5rem 0;
        }

        header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            text-decoration: none;
            display: flex;
            align-items: center;
        }

        .logo-img {
            height: 42px;
            width: auto;
            transition: all 0.3s;
        }

        header.scrolled .logo-img {
            height: 36px;
        }

        nav {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        nav a {
            color: var(--color-dark);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            letter-spacing: 0.5px;
            transition: color 0.3s;
            position: relative;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--color-accent);
            transition: width 0.3s;
        }

        nav a:hover::after {
            width: 100%;
        }

        header.scrolled nav a {
            color: var(--color-dark);
        }

        header.scrolled nav a.btn-primary,
        nav a.btn-primary {
            color: var(--color-white) !important;
        }

        .btn {
            display: inline-block;
            padding: 0.75em 2em;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
            cursor: pointer;
            border: none;
            letter-spacing: 0.5px;
        }

        .btn-primary {
            background: var(--color-accent);
            color: var(--color-white);
        }

        .btn-primary:hover {
            background: #d07d00;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(243,146,0,0.3);
        }

        .btn-outline {
            border: 2px solid var(--color-white);
            color: var(--color-white);
            background: transparent;
        }

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

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

        .btn-dark:hover {
            background: var(--color-dark-2);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(30,43,80,0.3);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* ===== HAMBURGER ===== */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            z-index: 1001;
            position: relative;
        }

        .hamburger span {
            width: 25px;
            height: 2px;
            background: var(--color-white);
            transition: all 0.3s;
        }

        header.scrolled .hamburger span {
            background: var(--color-dark);
        }

        /* ===== HERO ===== */
        .hero {
            min-height: 100vh;
            background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-2) 50%, var(--color-blue) 100%);
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 800px;
            height: 800px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(243,146,0,0.15) 0%, transparent 70%);
            animation: float 8s ease-in-out infinite;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(243,146,0,0.1) 0%, transparent 70%);
            animation: float 10s ease-in-out infinite reverse;
        }

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

        /* Hero slideshow background */
        .hero-slideshow {
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            z-index: 1;
            opacity: 0.08;
            overflow: hidden;
        }

        .hero-slideshow-track {
            display: flex;
            gap: 8px;
            height: 100%;
            animation: hero-scroll 40s linear infinite;
        }

        .hero-slide {
            flex: 0 0 auto;
            height: 100%;
            width: 350px;
        }

        .hero-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 12px;
            filter: grayscale(0.5);
        }

        @keyframes hero-scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        .hero .container {
            position: relative;
            z-index: 2;
            display: flex;
            align-items: center;
            min-height: 100vh;
            padding-top: 3rem;
            padding-bottom: 3rem;
        }

        .hero-content {
            max-width: 700px;
        }

        .hero-subtitle {
            font-size: 0.95rem;
            color: var(--color-accent-light);
            text-transform: uppercase;
            letter-spacing: 3px;
            font-weight: 600;
            margin-bottom: 1.5rem;
            opacity: 0;
            animation: fadeUp 0.8s 0.3s forwards;
        }

        .hero h1 {
            font-family: var(--font-serif);
            font-size: 3.5rem;
            line-height: 1.15;
            color: var(--color-white);
            margin-bottom: 1.5rem;
            opacity: 0;
            animation: fadeUp 0.8s 0.5s forwards;
        }

        .hero h1 span {
            color: var(--color-accent-light);
        }

        .hero p {
            font-size: 1.15rem;
            color: rgba(255,255,255,0.7);
            margin-bottom: 2.5rem;
            max-width: 550px;
            opacity: 0;
            animation: fadeUp 0.8s 0.7s forwards;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            opacity: 0;
            animation: fadeUp 0.8s 0.9s forwards;
        }

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

        /* ===== UTILITY CLASSES ===== */
        .section-padded {
            padding: 4rem 0;
        }

        .page-hero + .section-padded {
            padding-top: 3rem;
        }

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

        /* ===== STATS ===== */
        .stats {
            background: var(--color-white);
            padding: 0;
            position: relative;
            z-index: 10;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            background: var(--color-white);
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            margin-top: -60px;
            overflow: hidden;
        }

        .stat-item {
            padding: 2.5rem 2rem;
            text-align: center;
            border-right: 1px solid var(--color-gray-light);
            transition: background 0.3s;
        }

        .stat-item:last-child {
            border-right: none;
        }

        .stat-item:hover {
            background: var(--color-light);
        }

        .stat-number {
            font-family: var(--font-serif);
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--color-accent);
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 0.85rem;
            color: var(--color-gray);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* ===== SECTIONS COMMON ===== */
        section {
            padding: 7rem 0;
        }

        .section-label {
            font-size: 0.85rem;
            color: var(--color-accent);
            text-transform: uppercase;
            letter-spacing: 3px;
            font-weight: 600;
            margin-bottom: 1rem;
            text-align: center;
        }

        .section-title {
            font-family: var(--font-serif);
            font-size: 2.8rem;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            color: var(--color-dark);
            text-align: center;
        }

        .section-desc {
            font-size: 1.05rem;
            color: var(--color-gray);
            max-width: 600px;
            line-height: 1.8;
            text-align: center;
            margin-left: auto;
            margin-right: auto;
        }

        /* ===== TWO COLUMN INTRO ===== */
        .two-col-intro {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
        }

        .two-col-left, .two-col-right {
            text-align: left;
        }

        @media (max-width: 768px) {
            .two-col-intro {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }

        /* ===== ABOUT ===== */
        .about {
            background: var(--color-white);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }

        .about-image {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            aspect-ratio: 4/3;
        }

        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .about-image::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 50%;
            background: linear-gradient(to top, rgba(0,106,176,0.2), transparent);
        }

        .experience-badge {
            position: absolute;
            bottom: 2rem;
            left: 2rem;
            background: var(--color-accent);
            color: white;
            padding: 1.2rem 1.8rem;
            border-radius: 15px;
            z-index: 2;
        }

        .experience-badge .number {
            font-family: var(--font-serif);
            font-size: 2rem;
            font-weight: 700;
            line-height: 1;
        }

        .experience-badge .text {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .about-content .section-desc {
            margin-bottom: 2rem;
        }

        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin-top: 2rem;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
        }

        .about-features .service-card {
            border: 1px solid var(--color-gray-light);
            box-shadow: 0 4px 15px rgba(0,0,0,0.04);
        }

        .about-feature {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
        }

        .about-feature .icon {
            width: 40px;
            height: 40px;
            background: rgba(243,146,0,0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: var(--color-accent);
            font-size: 1.1rem;
        }

        .about-feature h4 {
            font-size: 0.95rem;
            margin-bottom: 0.2rem;
        }

        .about-feature p {
            font-size: 0.8rem;
            color: var(--color-gray);
        }

        /* ===== SERVICES ===== */
        .services {
            background: var(--color-light);
        }

        .services-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .services-header .section-desc {
            margin: 0 auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .service-card {
            background: var(--color-white);
            border-radius: 20px;
            padding: 2.5rem;
            transition: all 0.4s;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s;
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.08);
        }

        .service-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
            color: white;
        }

        .service-card h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            font-family: var(--font-serif);
        }

        .service-card p {
            color: var(--color-gray);
            font-size: 0.9rem;
            line-height: 1.7;
        }

        .service-card ul {
            list-style: none;
            margin-top: 1.2rem;
        }

        .service-card ul li {
            padding: 0.4rem 0;
            font-size: 0.85rem;
            color: var(--color-gray);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .service-card ul li::before {
            content: '\2192';
            color: var(--color-accent);
            font-weight: 700;
        }

        /* ===== PROJECTS ===== */
        .projects {
            background: var(--color-white);
        }

        .projects-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 3rem;
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        .project-card {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            aspect-ratio: 4/3;
            cursor: pointer;
        }

        .project-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s, filter 0.3s;
        }

        .project-card:hover img {
            transform: scale(1.08);
            filter: brightness(0.7);
        }

        .project-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 2rem;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            color: white;
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.4s;
        }

        .project-card:hover .project-overlay {
            transform: translateY(0);
            opacity: 1;
        }

        .project-tag {
            display: inline-block;
            background: var(--color-accent);
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 50px;
            font-size: 0.7rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 0.5rem;
        }

        .project-overlay h3 {
            font-family: var(--font-serif);
            font-size: 1.2rem;
            margin-bottom: 0.3rem;
        }

        .project-overlay p {
            font-size: 0.85rem;
            opacity: 0.8;
        }

        /* ===== METHOD TIMELINE ===== */
        .method {
            background: var(--color-white);
        }

        .method-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .method-header .section-desc {
            margin: 0 auto;
        }

        .method-timeline {
            display: flex;
            gap: 0;
            position: relative;
        }

        .method-timeline::before {
            content: '';
            position: absolute;
            top: 35px;
            left: 10%;
            right: 10%;
            height: 3px;
            background: var(--color-gray-light);
        }

        .method-step {
            flex: 1;
            text-align: center;
            position: relative;
            padding: 0 1rem;
        }

        .method-step-number {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: var(--color-white);
            border: 3px solid var(--color-accent);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-family: var(--font-serif);
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--color-accent);
            position: relative;
            z-index: 2;
            transition: all 0.3s;
        }

        .method-step:hover .method-step-number {
            background: var(--color-accent);
            color: white;
        }

        .method-step h4 {
            font-size: 1rem;
            margin-bottom: 0.5rem;
            font-family: var(--font-serif);
        }

        .method-step p {
            font-size: 0.8rem;
            color: var(--color-gray);
            line-height: 1.5;
        }

        /* ===== SYNERGIES ===== */
        .synergies {
            background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-blue) 50%, var(--color-accent) 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .synergies::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }

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

        .synergies-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .synergies .section-title {
            color: white;
        }

        .synergies .section-desc {
            color: rgba(255,255,255,0.7);
            margin: 0 auto;
        }

        .synergies-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .synergy-card {
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: 20px;
            padding: 2.5rem;
            transition: all 0.4s;
        }

        .synergy-card:hover {
            background: rgba(255,255,255,0.12);
            transform: translateY(-5px);
        }

        .synergy-card h3 {
            font-family: var(--font-serif);
            font-size: 1.4rem;
            margin-bottom: 0.3rem;
        }

        .synergy-card .synergy-role {
            color: var(--color-accent-light);
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 1.2rem;
        }

        .synergy-card p {
            color: rgba(255,255,255,0.7);
            font-size: 0.9rem;
            line-height: 1.7;
            margin-bottom: 1rem;
        }

        .synergy-card ul {
            list-style: none;
        }

        .synergy-card ul li {
            padding: 0.3rem 0;
            font-size: 0.85rem;
            color: rgba(255,255,255,0.7);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .synergy-card ul li::before {
            content: '\2192';
            color: var(--color-accent-light);
            font-weight: 700;
        }

        .synergies-note {
            text-align: center;
            color: rgba(255,255,255,0.5);
            font-size: 0.9rem;
            font-style: italic;
        }

        /* Synergy cards V2 (light background) */
        .synergy-card-v2 {
            background: white;
            border: 2px solid var(--color-gray-light);
            border-radius: 20px;
            padding: 2.5rem;
            text-align: center;
            transition: all 0.3s;
        }

        a.synergy-card-link {
            text-decoration: none;
            color: inherit;
            display: block;
            cursor: pointer;
        }

        .synergy-card-v2:hover {
            border-color: var(--color-accent);
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transform: translateY(-3px);
        }

        .synergy-logo {
            margin-bottom: 1.2rem;
        }

        .synergy-logo img {
            max-height: 60px;
            max-width: 200px;
            object-fit: contain;
        }

        .synergy-subtitle {
            color: var(--color-accent);
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .synergy-desc {
            color: var(--color-gray);
            font-size: 0.9rem;
            line-height: 1.7;
            margin-bottom: 1.2rem;
        }

        .synergy-list {
            list-style: none;
            padding: 0;
            text-align: left;
        }

        .synergy-list li {
            padding: 0.4rem 0;
            font-size: 0.85rem;
            color: var(--color-dark);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .synergy-list li::before {
            content: '→';
            color: var(--color-accent);
            font-weight: 700;
            flex-shrink: 0;
        }

        /* ===== FORM SELECT ===== */
        .form-group select {
            width: 100%;
            padding: 0.85rem 1.2rem;
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: 12px;
            color: white;
            font-family: var(--font-sans);
            font-size: 0.9rem;
            transition: all 0.3s;
            appearance: none;
            cursor: pointer;
        }

        .form-group select:focus {
            outline: none;
            border-color: var(--color-accent);
            background: rgba(255,255,255,0.12);
        }

        .form-group select option {
            background: var(--color-dark);
            color: white;
        }

        /* ===== TEAM ===== */
        .team {
            background: var(--color-light);
        }

        .team-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .team-header .section-desc {
            margin: 0 auto;
        }

        .team-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .team-grid > .team-member {
            width: calc(25% - 1.5rem);
            min-width: 180px;
        }

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

        .team-card {
            background: var(--color-white);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.4s;
        }

        .team-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.08);
        }

        .team-photo {
            aspect-ratio: 1;
            overflow: hidden;
            background: linear-gradient(135deg, var(--color-blue), var(--color-accent));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            color: rgba(255,255,255,0.3);
        }

        .team-info {
            padding: 1.5rem 2rem;
        }

        .team-info h3 {
            font-family: var(--font-serif);
            font-size: 1.2rem;
            margin-bottom: 0.3rem;
        }

        .team-info .role {
            color: var(--color-accent);
            font-size: 0.85rem;
            font-weight: 500;
            margin-bottom: 0.8rem;
        }

        .team-info p {
            color: var(--color-gray);
            font-size: 0.85rem;
            line-height: 1.6;
        }

        /* ===== PAGE HERO (internal pages) ===== */
        .page-hero {
            background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-2) 50%, var(--color-blue) 100%);
            padding: 8rem 0 4rem;
            text-align: center;
            color: white;
        }

        .page-hero h1 {
            font-family: var(--font-serif);
            font-size: 2.8rem;
            margin-bottom: 1rem;
        }

        .page-hero p {
            font-size: 1.1rem;
            opacity: 0.8;
            max-width: 600px;
            margin: 0 auto;
        }

        /* ===== TEAM MEMBER CARDS (qui-sommes-nous) ===== */
        .team-member {
            text-align: center;
            padding: 2rem 1.5rem;
            background: var(--color-white);
            border-radius: 20px;
            border: 1px solid var(--color-gray-light);
            transition: all 0.4s;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .team-member:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.08);
        }

        .team-photo-placeholder {
            width: 90px;
            height: 90px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--color-blue), var(--color-accent));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            font-weight: 700;
            color: white;
        }

        .team-photo {
            height: 110px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.2rem;
        }

        .team-photo img {
            width: 90px;
            height: 90px;
            border-radius: 50%;
            object-fit: cover;
            display: block;
        }

        .team-name {
            font-family: var(--font-serif);
            font-size: 1.15rem;
            margin-bottom: 0.3rem;
        }

        .team-role {
            color: var(--color-accent);
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 0.8rem;
        }

        .team-desc {
            color: var(--color-gray);
            font-size: 0.85rem;
            line-height: 1.6;
        }

        /* ===== METHOD TIMELINE (vertical, qui-sommes-nous) ===== */
        .method-number {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--color-accent);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-serif);
            font-size: 1.3rem;
            font-weight: 700;
            flex-shrink: 0;
            position: relative;
            z-index: 2;
        }

        .method-content h3 {
            font-family: var(--font-serif);
            font-size: 1.1rem;
            margin-bottom: 0.4rem;
        }

        .method-content p {
            color: var(--color-gray);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        /* ===== HORIZONTAL METHOD TIMELINE ===== */
        .method-timeline-horizontal {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 0;
            margin-top: 3rem;
            position: relative;
        }

        .method-timeline-horizontal::before {
            content: '';
            position: absolute;
            top: 25px;
            left: 5%;
            right: 5%;
            height: 3px;
            background: var(--color-gray-light);
            z-index: 0;
        }

        .method-step-h {
            text-align: center;
            padding: 0 1rem;
            position: relative;
        }

        .method-step-h .method-number {
            margin: 0 auto 1.2rem;
            position: relative;
            z-index: 2;
        }

        .method-step-h h3 {
            font-family: var(--font-serif);
            font-size: 1rem;
            margin-bottom: 0.5rem;
            line-height: 1.3;
        }

        .method-step-h p {
            color: var(--color-gray);
            font-size: 0.82rem;
            line-height: 1.5;
        }

        /* Keep old vertical classes for backwards compat */
        .method-timeline-vertical {
            position: relative;
            padding-left: 60px;
            margin-top: 2rem;
        }

        .method-timeline-vertical::before {
            content: '';
            position: absolute;
            left: 24px;
            top: 25px;
            bottom: 25px;
            width: 3px;
            background: var(--color-gray-light);
        }

        .method-step-v {
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            margin-bottom: 2rem;
            position: relative;
        }

        .method-step-v:last-child {
            margin-bottom: 0;
        }

        .method-step-v .method-number {
            position: absolute;
            left: -60px;
        }

        /* ===== SERVICE DETAILS LIST ===== */
        .service-details {
            list-style: none;
            margin-top: 1rem;
            padding: 0;
        }

        .service-details li {
            padding: 0.3rem 0;
            font-size: 0.85rem;
            color: var(--color-gray);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .service-details li::before {
            content: '\2713';
            color: var(--color-accent);
            font-weight: 700;
        }

        /* ===== SYNERGY EXTRAS ===== */
        .synergy-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .synergy-subtitle {
            color: var(--color-accent);
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .synergy-details {
            list-style: none;
            padding: 0;
        }

        .synergy-details li {
            padding: 0.3rem 0;
            font-size: 0.85rem;
            color: var(--color-gray);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .synergy-details li::before {
            content: '\2192';
            color: var(--color-accent);
            font-weight: 700;
        }

        /* ===== PARTNER PLACEHOLDER ===== */
        .partner-placeholder {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
            font-family: var(--font-sans);
            font-weight: 700;
            font-size: 0.9rem;
            color: var(--color-gray);
        }

        /* ===== HISTORY ===== */
        .history {
            background: var(--color-white);
        }

        .history-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }

        .history-content blockquote {
            font-family: var(--font-serif);
            font-style: italic;
            font-size: 1.4rem;
            line-height: 1.6;
            color: var(--color-dark);
            border-left: 4px solid var(--color-accent);
            padding-left: 1.5rem;
            margin-top: 2rem;
        }

        .history-content cite {
            display: block;
            margin-top: 1rem;
            font-family: var(--font-sans);
            font-style: normal;
            font-size: 0.9rem;
            color: var(--color-gray);
        }

        .history-image {
            border-radius: 20px;
            overflow: hidden;
            aspect-ratio: 4/3;
        }

        .history-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* ===== CONTACT ===== */
        .contact {
            background: var(--color-dark);
            color: white;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
        }

        .contact .section-title {
            color: white;
        }

        .contact .section-desc {
            color: rgba(255,255,255,0.6);
        }

        .contact-info {
            margin-top: 2rem;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .contact-item .icon {
            width: 45px;
            height: 45px;
            background: rgba(243,146,0,0.15);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: var(--color-accent-light);
        }

        .contact-item h4 {
            font-size: 0.85rem;
            color: rgba(255,255,255,0.5);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 500;
            margin-bottom: 0.2rem;
        }

        .contact-item p, .contact-item a {
            color: rgba(255,255,255,0.85);
            text-decoration: none;
            font-size: 1rem;
        }

        .contact-form {
            background: rgba(255,255,255,0.05);
            padding: 2.5rem;
            border-radius: 20px;
            border: 1px solid rgba(255,255,255,0.08);
        }

        .form-group {
            margin-bottom: 1.2rem;
        }

        .form-group label {
            display: block;
            font-size: 0.85rem;
            color: rgba(255,255,255,0.6);
            margin-bottom: 0.4rem;
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.85rem 1.2rem;
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: 12px;
            color: white;
            font-family: var(--font-sans);
            font-size: 0.9rem;
            transition: all 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--color-accent);
            background: rgba(255,255,255,0.12);
        }

        .form-group textarea {
            height: 120px;
            resize: vertical;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        /* ===== FOOTER ===== */
        footer {
            background: #111a2d;
            color: rgba(255,255,255,0.5);
            padding: 4rem 0 2rem;
            border-top: 3px solid var(--color-accent);
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-logo {
            font-family: var(--font-serif);
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--color-accent);
        }

        .footer-logo .logo-accent {
            color: rgba(255,255,255,0.9);
        }

        .footer-links {
            display: flex;
            gap: 2rem;
        }

        .footer-links a {
            color: rgba(255,255,255,0.6);
            text-decoration: none;
            font-size: 0.85rem;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--color-accent-light);
        }

        footer p {
            font-size: 0.85rem;
            line-height: 1.8;
        }

        footer h4 {
            color: rgba(255,255,255,0.9);
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .footer-main {
            text-align: center;
            padding-bottom: 2rem;
            margin-bottom: 1.5rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .footer-nav {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin: 1.5rem 0;
        }

        .footer-nav a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            font-size: 0.88rem;
            font-weight: 500;
            transition: color 0.3s;
        }

        .footer-nav a:hover {
            color: var(--color-accent-light);
        }

        .footer-info {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 2rem;
            margin-top: 1rem;
        }

        .footer-info span {
            font-size: 0.85rem;
            color: rgba(255,255,255,0.5);
        }

        .footer-info a {
            color: rgba(255,255,255,0.6);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-info a:hover {
            color: var(--color-accent-light);
        }

        .footer-col h4 {
            color: rgba(255,255,255,0.9);
            font-family: var(--font-sans);
            font-size: 0.9rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1rem;
        }

        .footer-col p {
            font-size: 0.85rem;
            line-height: 1.8;
            color: rgba(255,255,255,0.55);
        }

        .footer-tagline {
            margin-top: 1rem;
            font-size: 0.85rem;
            line-height: 1.6;
            color: rgba(255,255,255,0.55);
        }

        .footer-links-col {
            display: flex;
            flex-direction: column;
            gap: 0.7rem;
        }

        .footer-links-col a {
            color: rgba(255,255,255,0.65);
            text-decoration: none;
            font-size: 0.88rem;
            transition: color 0.3s;
        }

        .footer-links-col a:hover {
            color: var(--color-accent-light);
        }

        .footer-bottom {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            padding-top: 1.5rem;
            text-align: center;
        }

        .footer-bottom p {
            font-size: 0.8rem;
            color: rgba(255,255,255,0.35);
        }

        .footer-bottom a {
            color: rgba(255,255,255,0.4);
            text-decoration: none;
            font-size: 0.8rem;
            transition: color 0.3s;
        }

        .footer-bottom a:hover {
            color: var(--color-accent-light);
        }

        /* ===== CONTACT PAGE ===== */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 4rem;
            align-items: start;
        }

        .contact-info-list {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            margin-top: 1.5rem;
        }

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

        .contact-info-icon {
            font-size: 1.4rem;
            width: 45px;
            height: 45px;
            background: var(--color-light);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .contact-grid form .form-group {
            margin-bottom: 1rem;
        }

        .contact-grid form label {
            display: block;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 0.4rem;
            color: var(--color-dark);
        }

        .contact-grid form input,
        .contact-grid form select,
        .contact-grid form textarea {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 2px solid var(--color-gray-light);
            border-radius: 10px;
            font-family: var(--font-sans);
            font-size: 0.9rem;
            background: var(--color-white);
            color: var(--color-dark);
            transition: border-color 0.3s;
        }

        .contact-grid form input:focus,
        .contact-grid form select:focus,
        .contact-grid form textarea:focus {
            outline: none;
            border-color: var(--color-accent);
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        /* ===== MAP SECTION ===== */
        .map-section {
            background: var(--color-light);
        }

        .map-section .section-label,
        .map-section .section-title {
            text-align: center;
        }

        .map-section .section-desc {
            text-align: center;
            margin: 0 auto 2rem;
        }

        .map-filters {
            display: flex;
            justify-content: center;
            gap: 0.6rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .map-filter-btn {
            padding: 0.5rem 1.2rem;
            border-radius: 50px;
            border: 2px solid var(--color-gray-light);
            background: var(--color-white);
            color: var(--color-dark);
            font-size: 0.8rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            font-family: var(--font-sans);
        }

        .map-filter-btn:hover, .map-filter-btn.active {
            border-color: var(--color-accent);
            background: var(--color-accent);
            color: white;
        }

        .map-filter-btn .filter-count {
            background: rgba(0,0,0,0.1);
            padding: 0.1rem 0.5rem;
            border-radius: 50px;
            font-size: 0.7rem;
            margin-left: 0.4rem;
        }

        .map-filter-btn.active .filter-count {
            background: rgba(255,255,255,0.25);
        }

        /* ===== OPERATION CARD (base styles, used on landing + programmes) ===== */
        .op-card {
            background: var(--color-white);
            border-radius: 16px;
            overflow: hidden;
            text-decoration: none;
            color: inherit;
            display: block;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(0,0,0,0.06);
        }

        .op-card:hover {
            box-shadow: 0 12px 40px rgba(0,0,0,0.12);
            transform: translateY(-4px);
        }

        .op-card-img {
            width: 100%;
            height: 200px;
            position: relative;
            overflow: hidden;
        }

        .op-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s;
        }

        .op-card:hover .op-card-img img {
            transform: scale(1.05);
        }

        .op-card-img .op-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .op-card-img .op-placeholder .op-placeholder-icon {
            font-size: 3rem;
            opacity: 0.5;
        }

        .op-card-img .op-placeholder .op-placeholder-city {
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: rgba(255, 255, 255, 0.4);
        }

        .op-status-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            padding: 0.25rem 0.8rem;
            border-radius: 50px;
            font-size: 0.65rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: white;
            z-index: 2;
        }

        .op-status-badge.livre { background: #27ae60; }
        .op-status-badge.en-cours { background: var(--color-accent); }
        .op-status-badge.a-venir { background: var(--color-blue); }

        .op-card-body {
            padding: 1.2rem 1.4rem 1.4rem;
        }

        .op-card-body .op-city {
            font-family: var(--font-sans);
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--color-accent);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 0.2rem;
        }

        .op-card-body h4 {
            font-family: var(--font-serif);
            font-size: 1.05rem;
            margin-bottom: 0.3rem;
            color: var(--color-dark);
            line-height: 1.3;
        }

        .op-card-body .op-location {
            font-size: 0.78rem;
            color: var(--color-gray);
            margin-bottom: 0.6rem;
        }

        .op-card-body .op-meta {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
            margin-bottom: 0.6rem;
        }

        .op-meta-item {
            display: inline-flex;
            align-items: center;
            gap: 0.25rem;
            font-size: 0.73rem;
            color: var(--color-dark);
            background: var(--color-light);
            padding: 0.2rem 0.6rem;
            border-radius: 6px;
            font-weight: 500;
        }

        .op-tag {
            display: inline-block;
            background: rgba(243,146,0,0.1);
            color: var(--color-accent);
            padding: 0.2rem 0.7rem;
            border-radius: 50px;
            font-size: 0.68rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* ===== PARTNERS ===== */
        .partners {
            background: var(--color-white);
            padding: 5rem 0;
        }

        .partners-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .partners-header .section-desc {
            margin: 0 auto;
        }

        .partners-logos {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 3rem;
            flex-wrap: wrap;
        }

        .partner-logo {
            background: var(--color-light);
            padding: 1.5rem 2.5rem;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 160px;
            height: 80px;
            font-family: var(--font-sans);
            font-weight: 700;
            font-size: 0.95rem;
            color: var(--color-gray);
            transition: all 0.3s;
            border: 1px solid var(--color-gray-light);
        }

        .partner-logo:hover {
            border-color: var(--color-accent);
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            transform: translateY(-3px);
        }

        /* ===== PARTNERS SCROLL (landing + synergies) ===== */
        .partners-scroll {
            overflow: hidden;
            padding: 1.5rem 0;
            margin-top: 1.5rem;
        }

        .partners-scroll-track {
            display: flex;
            gap: 1.5rem;
            width: max-content;
            animation: partners-scroll 35s linear infinite;
        }

        .partners-scroll:hover .partners-scroll-track {
            animation-play-state: paused;
        }

        @keyframes partners-scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        .partner-card {
            flex-shrink: 0;
            width: 200px;
            height: 120px;
            background: white;
            border: 1px solid var(--color-gray-light);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1rem;
            transition: all 0.3s;
            text-decoration: none;
        }

        .partner-card:hover {
            border-color: var(--color-accent);
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            transform: translateY(-2px);
        }

        .partner-card img {
            max-width: 140px;
            max-height: 60px;
            width: auto;
            height: auto;
            object-fit: contain;
            filter: grayscale(30%);
            transition: filter 0.3s;
        }

        .partner-card:hover img {
            filter: grayscale(0%);
        }

        .partner-card .partner-name {
            font-family: var(--font-sans);
            font-weight: 700;
            font-size: 0.75rem;
            color: var(--color-dark);
            text-align: center;
            line-height: 1.3;
        }

        /* ===== SCROLL REVEAL ===== */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ===== ABOUT PREVIEW ===== */
        .about-preview .section-desc {
            max-width: 600px;
            text-align: center;
        }

        .btn-lg {
            padding: 1rem 2.5rem;
            font-size: 1.05rem;
            font-weight: 700;
        }

        /* ===== HOME OPERATIONS CAROUSEL ===== */
        .ops-carousel-wrapper {
            position: relative;
            margin-top: 2.5rem;
        }

        .ops-carousel {
            display: flex;
            gap: 2rem;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
            padding: 0.5rem 0 1rem;
            scrollbar-width: none;
        }

        .ops-carousel::-webkit-scrollbar { display: none; }

        .ops-carousel-btn {
            position: absolute;
            top: 40%;
            transform: translateY(-50%);
            z-index: 10;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: rgba(255,255,255,0.95);
            border: 1px solid var(--color-gray-light);
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            font-size: 24px;
            color: var(--color-dark);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
        }

        .ops-carousel-btn:hover {
            background: var(--color-accent);
            color: white;
            border-color: var(--color-accent);
        }

        .ops-carousel-prev { left: -22px; }
        .ops-carousel-next { right: -22px; }

        /* Carousel wrapper */
        .ops-carousel-wrapper {
            position: relative;
            margin-top: 2.5rem;
        }

        .ops-carousel {
            overflow: hidden;
            mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
            -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
        }

        .ops-carousel-track {
            display: flex;
            gap: 2rem;
            transition: transform 0.5s ease;
        }

        .ops-carousel-track .home-op-card {
            flex: 0 0 var(--card-width);
            min-width: 0;
        }

        .ops-carousel-arrow {
            position: absolute;
            top: 35%;
            transform: translateY(-50%);
            z-index: 10;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            border: 2px solid var(--color-blue);
            background: white;
            color: var(--color-blue);
            font-size: 1.8rem;
            line-height: 1;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .ops-carousel-arrow:hover {
            background: var(--color-blue);
            color: white;
        }

        .ops-carousel-prev { left: -24px; }
        .ops-carousel-next { right: -24px; }

        .home-op-card {
            text-align: center;
            text-decoration: none;
            color: inherit;
            display: block;
            transition: transform 0.3s;
        }

        .home-op-card:hover {
            transform: translateY(-8px);
        }

        .home-op-card .home-op-img {
            width: 100%;
            aspect-ratio: 4/5;
            border-radius: 20px;
            overflow: hidden;
            margin-bottom: 1.2rem;
            box-shadow: 0 8px 30px rgba(0,0,0,0.1);
            position: relative;
        }

        .home-op-card .home-op-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .home-op-card .home-op-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .home-op-card .home-op-placeholder .op-placeholder-icon {
            font-size: 3.5rem;
            opacity: 0.5;
        }

        .home-op-card .home-op-placeholder .op-placeholder-city {
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: rgba(255, 255, 255, 0.4);
        }

        .home-op-card .home-op-img .op-status-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            padding: 0.3rem 0.8rem;
            border-radius: 50px;
            font-size: 0.65rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: white;
        }

        .op-status-badge.livre { background: #27ae60; }
        .op-status-badge.en-cours { background: var(--color-accent); }
        .op-status-badge.a-venir { background: var(--color-blue); }

        .home-op-card h3 {
            font-family: var(--font-sans);
            font-size: 1.1rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 0.3rem;
            color: var(--color-dark);
        }

        .home-op-card .home-op-city {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--color-accent);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 1rem;
        }

        .home-op-card .btn-sm-outline {
            display: inline-block;
            padding: 0.5rem 1.5rem;
            border: 2px solid var(--color-blue);
            border-radius: 8px;
            color: var(--color-blue);
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            text-decoration: none;
            transition: all 0.3s;
        }

        .home-op-card:hover .btn-sm-outline {
            background: var(--color-blue);
            color: white;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .hero h1 { font-size: 2.8rem; }
            .section-title { font-size: 2.2rem; }
            .stats-grid { grid-template-columns: repeat(2, 1fr); }
            .stat-item:nth-child(2) { border-right: none; }
            .team-grid > .team-member { width: calc(33.333% - 1.34rem); }
            .page-hero h1 { font-size: 2.2rem; }
            .method-timeline-horizontal { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
            .method-timeline-horizontal::before { display: none; }
            /* carousel handled by JS */
        }

        @media (max-width: 768px) {
            nav { display: none; }
            .hamburger { display: flex; }

            nav.active {
                display: flex;
                flex-direction: column;
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: var(--color-dark);
                justify-content: flex-start;
                align-items: center;
                padding-top: 100px;
                gap: 1.8rem;
                z-index: 999;
            }

            nav.active a {
                color: white;
                font-size: 1.2rem;
            }

            .hero {
                min-height: auto;
                padding: 0;
            }
            .hero .container {
                min-height: auto;
                padding-top: 6rem;
                padding-bottom: 3rem;
                align-items: flex-start;
            }
            .hero h1 { font-size: 2.2rem; }
            .hero p { font-size: 1rem; }
            .hero-buttons { flex-direction: column; }

            .about-grid,
            .history-grid,
            .contact-grid { grid-template-columns: 1fr; gap: 3rem; }

            .services-grid,
            .projects-grid,
            .team-grid > .team-member { width: calc(50% - 1rem) !important; }
            .method-timeline-horizontal { grid-template-columns: 1fr; gap: 1.5rem; }
            .method-step-h { text-align: left; display: flex; gap: 1rem; align-items: flex-start; padding: 0; }
            .method-step-h .method-number { margin: 0; flex-shrink: 0; }

            .stats-grid { grid-template-columns: repeat(2, 1fr); margin-top: -40px; }
            .stat-item { border-right: none; border-bottom: 1px solid var(--color-gray-light); }
            .stat-item:nth-child(odd) { border-right: 1px solid var(--color-gray-light); }
            .stat-item:nth-last-child(-n+2) { border-bottom: none; }

            .map-layout { grid-template-columns: 1fr; }
            .method-timeline { flex-direction: column; gap: 2rem; }
            .method-timeline::before { display: none; }
            .method-timeline-vertical { padding-left: 50px; }
            .method-timeline-vertical .method-number { width: 40px; height: 40px; font-size: 1rem; }
            .method-step-v .method-number { left: -50px; }
            .page-hero { padding: 6rem 0 3rem; }
            .page-hero h1 { font-size: 1.8rem; }
            .synergies-grid { grid-template-columns: 1fr; }
            .projects-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
            .section-title { font-size: 2rem; }

            .footer-grid { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
            .footer-links-col { align-items: center; }
            .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
            .footer-content { flex-direction: column; gap: 1.5rem; text-align: center; }
            .footer-nav { flex-direction: column; gap: 0.8rem; }
            .form-row { grid-template-columns: 1fr; }
            .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
            .about-features { grid-template-columns: 1fr; }

            /* carousel handled by JS */
            .ops-carousel-prev { left: 4px; }
            .ops-carousel-next { right: 4px; }
            .ops-carousel-arrow { width: 40px; height: 40px; font-size: 1.4rem; }

            /* Partners - horizontal scrolling banner on mobile */
            .partner-card {
                width: 150px;
                height: 90px;
                padding: 0.7rem;
            }
            .partner-card img {
                max-width: 110px;
                max-height: 45px;
            }
            .partners-scroll-track {
                gap: 1rem;
            }

            /* Reduce section padding on mobile */
            .section-padded {
                padding: 3rem 0;
            }

            /* Scroll reveal - reduce transform on mobile for better IntersectionObserver */
            .reveal {
                transform: translateY(20px);
            }

            /* Landing map */
            #landing-map {
                height: 320px !important;
            }

            /* Footer on mobile */
            footer {
                padding: 2.5rem 0 1.5rem;
            }
        }