/* ============================================
   SIENA INGENIERIE - Style Bauhaus
   Minimaliste, Géométrique, Élégant
   ============================================ */

/* Reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

/* Curseur personnalisé vert - uniquement sur hover */
.custom-cursor {
    position: fixed;
    width: 0;
    height: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s ease-out, height 0.2s ease-out, opacity 0.2s ease-out;
    opacity: 0;
}

.custom-cursor.hover {
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid var(--primary);
    opacity: 1;
}

/* Masquer le curseur vert sur tablette et mobile (uniquement desktop) */
@media (max-width: 1024px) {
    .custom-cursor {
        display: none !important;
    }
}

:root {
    /* Palette officielle SIENA - Charte graphique 2022 */
    --primary: #c8d400;           /* Pomme - couleur principale */
    --primary-dark: #5e6700;      /* Kiwi - variante foncée */
    --primary-rgb: 200, 212, 0;
    
    /* Teintes Pomme */
    --primary-80: #d5db4d;
    --primary-60: #e0e483;
    --primary-40: #eaedb2;
    --primary-20: #f5f6db;
    
    /* Teintes Kiwi */
    --kiwi: #5e6700;
    --kiwi-80: #7d832f;
    --kiwi-60: #9ca15f;
    --kiwi-40: #bcbf91;
    --kiwi-20: #dddfc7;
    
    /* Gris Profond - Charte SIENA */
    --black: #23181a;             /* Gris Profond 100% */
    --dark: #23181a;
    --gray-dark: #413235;         /* Gris Profond 80% */
    --gray: #655558;              /* Gris Profond 60% */
    --gray-light: #918485;        /* Gris Profond 40% */
    --gray-lighter: #c4bcbe;      /* Gris Profond 20% */
    --border: #e0e0e0;
    --bg-light: #f5f5f5;
    --bg-cream: #fafaf8;
    --white: #ffffff;
    
    /* Typography - Charte SIENA */
    /* Titres: All Round Gothic (avec fallback sur Helvetica/Arial) */
    /* Textes: Helvetica, Arial, Calibri */
    --font-heading: 'All Round Gothic', Helvetica, Arial, sans-serif;
    --font-body: Helvetica, Arial, Calibri, sans-serif;
    
    /* Spacing */
    --section-padding: 140px;
    --container-width: 1400px;
    
    /* Hero - même hauteur index et pages métiers */
    --hero-height: calc(100vh - 80px);
    --hero-height-mobile: 92vh;
    --hero-min-height-mobile: 560px;
    
    /* Effects */
    --transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.3s ease;
    --shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    --shadow-sm: 0 10px 30px rgba(0, 0, 0, 0.05);
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.8;
    color: var(--gray);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Typography - Charte SIENA 2022 */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600; /* All Round Gothic demi */
    color: var(--black);
    line-height: 1.2;
    letter-spacing: 0;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; }
h3 { font-size: clamp(1.25rem, 2vw, 1.75rem); font-weight: 600; }
h4 { font-size: 1.125rem; font-weight: 500; }

p {
    margin-bottom: 1.5rem;
}

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

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

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 60px;
}

/* ============================================
   NAVIGATION - Bauhaus Minimal
   ============================================ */

/* ============================================
   NAVBAR - Sticky avec dropdown
   ============================================ */

.navbar {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 15px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    width: 100%;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.nav-logo img {
    height: 40px;
    width: auto;
    transition: var(--transition-fast);
}

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

/* Menu principal */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-menu > .nav-item > a {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-dark);
    position: relative;
    padding: 10px 0;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.nav-menu > .nav-item > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-menu > .nav-item > a:hover,
.nav-menu > .nav-item > a.active {
    color: var(--black);
}

.nav-menu > .nav-item > a:hover::after,
.nav-menu > .nav-item > a.active::after {
    width: 100%;
}

/* Dropdown arrow */
.dropdown-arrow {
    font-size: 0.6rem;
    transition: transform 0.3s ease;
}

.nav-item.has-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown menu */
.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--white);
    min-width: 280px;
    padding: 15px 0;
    list-style: none;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
}

.nav-dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--white);
}

.nav-item.has-dropdown:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown li a {
    display: block;
    padding: 10px 25px;
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--gray);
    text-transform: none;
    letter-spacing: 0;
    transition: all 0.2s ease;
}

.nav-dropdown li a:hover {
    background: var(--bg-light);
    color: var(--black);
    padding-left: 30px;
}

/* Contact navbar */
.nav-contact {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-shrink: 0;
}

.nav-phone {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-dark);
    transition: color 0.3s ease;
}

.nav-phone:hover {
    color: var(--primary-dark);
}

.nav-cta {
    padding: 12px 25px;
    background: var(--primary);
    color: var(--black);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-radius: 12px;
}

.nav-cta:hover {
    background: var(--black);
    color: var(--white);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    width: 30px;
    height: 2px;
    background: var(--black);
    transition: var(--transition);
}

/* ============================================
   HERO - Bauhaus Bold Typography
   ============================================ */

.hero {
    position: relative;
    height: var(--hero-height);
    display: flex;
    align-items: center;
    background: var(--dark);
    overflow: hidden;
    z-index: 1;
    max-width: calc(100% - 80px);
    margin: 0 auto;
    border-radius: 24px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-color: var(--dark);
    background-image: url('../assets/accueil/Hero.webp');
    background-size: cover;
    background-position: center;
    opacity: 1;
}

.hero-bg--mirror {
    transform: scaleX(-1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 60px;
}

.hero-label {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 30px;
    position: relative;
    padding-left: 60px;
}

.hero-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 1px;
    background: var(--primary);
}

.hero-title {
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 400;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 40px;
    letter-spacing: -0.03em;
}

.hero-title span {
    font-style: italic;
    color: var(--primary);
}

.hero-description {
    font-size: 1.15rem;
    color: #ffffff;
    max-width: 550px;
    margin-bottom: 50px;
    line-height: 1.9;
    text-align: justify;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 45px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
}

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

.btn-primary:hover {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(186, 195, 80, 0.3);
}

#about .section-cta .btn-primary:hover,
#services .section-cta .btn-primary:hover,
#values .section-cta .btn-primary:hover,
#projects .section-cta .btn-primary:hover,
.section-cta .btn-primary:hover {
    background: var(--black);
    color: var(--white);
    transform: none;
    box-shadow: none;
}

/* Page d'accueil : CTA fond noir, survol vert (sauf hero "Découvrir nos métiers") */
.page-accueil .btn-primary {
    background: var(--black);
    color: var(--white);
}

.page-accueil .btn-primary:hover {
    background: var(--primary);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(200, 212, 0, 0.25);
}

.page-accueil #about .section-cta .btn-primary:hover,
.page-accueil #services .section-cta .btn-primary:hover,
.page-accueil #values .section-cta .btn-primary:hover,
.page-accueil #projects .section-cta .btn-primary:hover,
.page-accueil .section-cta .btn-primary:hover {
    background: var(--primary);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(200, 212, 0, 0.25);
}

/* Hero : "Découvrir nos métiers" reste vert comme à l'origine */
.page-accueil .hero-buttons .btn-primary {
    background: var(--primary);
    color: var(--black);
}

.page-accueil .hero-buttons .btn-primary:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(186, 195, 80, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

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

.btn-dark:hover {
    background: var(--primary);
    color: var(--black);
}

/* Section CTAs - Call to action blocks */
.section-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    margin-top: 48px;
}

.section-cta--center {
    justify-content: center;
    text-align: center;
    flex-direction: column;
    margin-top: 64px;
}

.section-cta-text {
    font-size: 1.05rem;
    color: var(--gray);
    margin: 0 0 24px 0;
    max-width: 480px;
    line-height: 1.6;
}

.section-cta--center .section-cta-text {
    margin-bottom: 28px;
}

.section-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

/* Hero Stats */
.hero-stats {
    position: absolute;
    bottom: 80px;
    right: 80px;
    display: flex;
    gap: 60px;
    z-index: 2;
}

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

.hero-stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--white);
    line-height: 1;
    margin-bottom: 10px;
}

.hero-stat-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

/* Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 60px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    z-index: 2;
}

.hero-scroll-icon {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    position: relative;
}

.hero-scroll-icon::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 10px;
    background: var(--primary);
    border-radius: 2px;
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(10px); opacity: 0.3; }
}

/* ============================================
   SECTIONS - Bauhaus Grid
   ============================================ */

.section {
    padding: var(--section-padding) 0;
}

#projects {
    background: #FAFAF8;
}

#contact {
    background: #FFFFFF;
}

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

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

#services {
    background: #FFFFFF;
}

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

/* Section Header */
.section-header {
    margin-bottom: 80px;
}

.section-header.center {
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 25px;
}

.section-label::before {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--primary);
}

.section-title {
    margin-bottom: 25px;
}

.section-title span {
    font-style: italic;
    opacity: 0.4;
}

.section-description {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    line-height: 1.9;
}

.section-dark .section-description {
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   ABOUT - Asymmetric Layout
   ============================================ */

#about {
    position: relative;
    background: transparent;
}

#about::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #F5F5F5;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.8s ease;
}

#about.bg-visible::before {
    opacity: 1;
}

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

.about-image-wrapper {
    position: relative;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
}

.about-image img {
    width: 100%;
    height: 640px;
    object-fit: cover;
    transition: transform 1s ease;
    border-radius: 24px;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-image-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    background: var(--primary);
    z-index: -1;
    border-radius: 24px;
}

.about-experience {
    position: absolute;
    top: 32px;
    left: -48px;
    background: var(--white);
    padding: 24px 28px;
    text-align: center;
    z-index: 2;
    border-radius: 12px;
    border: 1px solid rgba(35, 24, 26, 0.08);
    box-shadow: 0 8px 32px rgba(35, 24, 26, 0.06);
}

.about-experience-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 300;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}

.about-experience-text {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gray-dark);
}

.about-content {
    padding-left: 40px;
}

.about-text {
    margin-bottom: 40px;
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.9;
}

.about-text p strong {
    color: var(--black);
    font-weight: 600;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
    padding-top: 50px;
    border-top: 1px solid var(--border);
}

.about-feature {
    display: flex;
    gap: 15px;
}

.about-feature-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: transparent;
    color: var(--black);
    border: 1px solid var(--gray-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    border-radius: 50%;
    transition: var(--transition-fast);
}

.about-feature:hover .about-feature-icon {
    background: var(--primary);
    color: var(--black);
    border-color: var(--primary);
    transform: scale(1.05);
}

.about-feature-content h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.about-feature-content p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: var(--gray-light);
}

/* ============================================
   SECTION NOTRE EXPERTISE (pages métiers)
   ============================================ */

.section-expertise {
    padding: 120px 0;
    background: linear-gradient(180deg, #FAFAF8 0%, var(--white) 100%);
}

.section-expertise .about-grid {
    gap: 80px;
    align-items: stretch;
}

.section-expertise .about-content {
    padding-left: 0;
}

.section-expertise .section-label {
    margin-bottom: 20px;
}

.section-expertise .section-title {
    margin-bottom: 32px;
    font-size: clamp(2rem, 4vw, 2.75rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-expertise .about-text > p:first-of-type {
    font-size: 1.1rem;
    line-height: 1.85;
    color: var(--gray);
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
}

.expertise-subtitle {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--black);
    margin: 36px 0 20px 0;
    position: relative;
    padding-left: 0;
}

.expertise-subtitle::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--primary);
    margin-top: 10px;
}

.expertise-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.expertise-list li {
    padding: 20px 0 20px 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--gray);
    position: relative;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.expertise-list li:last-child {
    border-bottom: none;
}

.expertise-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: var(--primary);
    transition: height 0.25s ease;
}

.expertise-list li:hover {
    color: var(--black);
    padding-left: 28px;
}

.expertise-list li:hover::before {
    height: 24px;
}

.expertise-list strong {
    color: var(--black);
    font-weight: 600;
    font-size: 1.02rem;
}

.expertise-list li {
    padding-top: 18px;
    padding-bottom: 18px;
}

/* Liste à puces (avantages, etc.) */
.expertise-list-check {
    list-style: none;
    padding: 0;
    margin: 24px 0 0 0;
}

.expertise-list-check li {
    padding: 12px 0 12px 36px;
    position: relative;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray);
    border: none;
}

.expertise-list-check li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: var(--primary);
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/contain no-repeat;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/contain no-repeat;
    height: 20px;
    width: 20px;
    background-color: var(--primary);
}

.expertise-list-check li::after {
    display: none;
}

.expertise-list-check li:hover {
    padding-left: 36px;
}

/* Image expertise : cadre premium */
.section-expertise .about-image-wrapper {
    position: relative;
    height: 100%;
    min-height: 0;
}

.section-expertise .about-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.04);
    height: 100%;
}

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

@media (max-width: 1024px) {
    .section-expertise {
        padding: 80px 0;
    }
    
    .section-expertise .about-grid {
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .section-expertise {
        padding: 60px 0;
    }
    
    .expertise-list li {
        padding-left: 20px;
    }
    
    .expertise-list li:hover {
        padding-left: 24px;
    }
}

/* ============================================
   PAGE MENTIONS LÉGALES
   ============================================ */

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 400;
    color: var(--black);
    margin-bottom: 24px;
}

.legal-intro {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--gray);
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
}

.legal-content h2 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--black);
    margin: 40px 0 16px 0;
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--gray);
    margin-bottom: 16px;
}

.legal-content ul {
    margin: 12px 0 24px 0;
    padding-left: 24px;
}

.legal-content li {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 8px;
}

.legal-content a {
    color: var(--primary);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.legal-update {
    margin-top: 48px !important;
    font-size: 0.9rem !important;
    color: var(--gray) !important;
    font-style: italic;
}

/* ============================================
   SERVICES - Numbered Cards
   ============================================ */

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

.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 60px 40px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 24px;
    transition: var(--transition);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow);
    transform: translateY(-10px);
}

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

.service-number {
    position: absolute;
    top: 30px;
    right: 30px;
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 300;
    color: var(--primary);
    line-height: 1;
    transition: var(--transition);
}

.service-card:hover .service-number {
    color: var(--primary-dark);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--black);
    stroke-width: 1.5;
    fill: none;
}

.service-card:hover .service-icon svg {
    stroke: var(--primary);
}

.service-title {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.35;
    min-height: 2.7em;
    margin-bottom: 15px;
    transition: var(--transition-fast);
}

.service-card:hover .service-title {
    color: var(--primary);
}

.service-text {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 25px;
}

.service-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--black);
}

.service-link::after {
    content: '→';
    transition: var(--transition-fast);
}

.service-card:hover .service-link {
    color: var(--primary);
}

.service-card:hover .service-link::after {
    transform: translateX(5px);
}

/* ============================================
   PROJECTS - Masonry Grid
   ============================================ */

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

.project-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 24px;
}

.project-item.tall {
    grid-row: span 2;
}

/* Carte avec plusieurs photos : flèches de navigation */
.project-item--slider {
    overflow: hidden;
}

/* Textes toujours visibles au-dessus des photos */
.project-item--slider .project-overlay--slider {
    z-index: 5;
    pointer-events: none;
}

.project-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.project-slider .project-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.project-slider .project-slide.active {
    opacity: 1;
    z-index: 1;
}

.project-slider .project-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

.project-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(17, 17, 17, 0.5);
    color: var(--white);
    font-size: 1.25rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10; /* au-dessus de l'overlay pour rester cliquables */
    backdrop-filter: blur(4px);
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.project-slider-nav.prev { left: 12px; }
.project-slider-nav.next { right: 12px; }

.project-slider-nav:hover {
    background: var(--primary);
    color: var(--black);
    border-color: var(--primary);
}

.project-image {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 520px;
    overflow: hidden;
}

.project-item.tall .project-image {
    min-height: 100%;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

.project-overlay {
    position: absolute;
    inset: 0;
    z-index: 5;
    background: linear-gradient(
        to top,
        rgba(17, 17, 17, 0.75) 0%,
        rgba(17, 17, 17, 0.2) 40%,
        transparent 70%
    );
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 1;
}

.project-category {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 10px;
}

.project-title {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 0;
}

.project-location {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 8px;
    letter-spacing: 0.05em;
}

.project-location-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    color: var(--primary);
}

.project-arrow {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--black);
    opacity: 1;
}

/* ============================================
   STATS BAR
   ============================================ */

.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--black);
}

.stat-item {
    padding: 60px 40px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

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

.stat-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 400;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 15px;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   TEAM - Profile Cards (style moderne)
   ============================================ */

#team {
    background: #FFFFFF;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    background: #FFFFFF;
    border: 1px solid var(--primary);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.team-card:hover {
    border-color: var(--primary);
    box-shadow: 0 12px 40px rgba(200, 212, 0, 0.15);
    transform: translateY(-4px);
}

.team-card-image {
    width: 100%;
    min-height: 260px;
    overflow: hidden;
    border-radius: 24px 24px 0 0;
    padding: 64px 24px 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200, 212, 0, 0.08);
}

.team-card-image img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    display: block;
    /* Vert Pomme charte graphique #c8d400 */
    filter: brightness(0) saturate(100%) invert(84%) sepia(42%) saturate(600%) hue-rotate(12deg);
}

.team-card-content {
    padding: 36px 32px 44px;
}

.team-card-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 8px;
    letter-spacing: 0;
}

.team-card-role {
    font-size: 0.9rem;
    font-weight: 400;
    color: #555555;
    line-height: 1.5;
    margin: 0;
}

/* ============================================
   VALUES - Icon Grid
   ============================================ */

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.value-item {
    text-align: center;
    padding: 50px 40px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 24px;
    transition: var(--transition);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.value-item:hover {
    border-color: transparent;
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(200, 212, 0, 0.12);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--primary-20);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border-radius: 50%;
    transition: var(--transition);
    color: var(--primary-dark);
}

.value-item:hover .value-icon {
    background: var(--primary);
    color: var(--black);
    transform: scale(1.05);
}

.value-title {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.value-text {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 0;
}

/* ============================================
   CLIENTS - Logo Carousel
   ============================================ */

.clients-section {
    padding: 180px 0 180px;
    background: #FFFFFF;
}

.clients-section-title {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 32px;
}

.clients-section-title::before {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--primary);
}

.clients-section-text {
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.85;
    color: var(--gray);
    max-width: 800px;
    margin: 0 auto 64px;
    padding: 0 20px;
}

.clients-wrapper {
    overflow: hidden;
    padding: 80px 0;
    width: 100%;
}

.clients-track {
    display: flex;
    width: fit-content;
    animation: scrollLogos 80s linear infinite;
    align-items: center;
}

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

.client-logo {
    flex-shrink: 0;
    width: 180px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 50px;
}

.client-logo img {
    height: auto;
    width: auto;
    max-height: 60px;
    max-width: 160px;
    object-fit: contain;
    opacity: 0.75;
    transition: var(--transition);
}

.client-logo:hover img {
    opacity: 1;
}

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

/* ============================================
   CONTACT - Modern Form Layout
   ============================================ */

.contact-header {
    text-align: center;
    margin-bottom: 80px;
}

.contact-header .section-description {
    max-width: 600px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: start;
}

/* Contact Info Card */
.contact-info-card {
    background: var(--white);
    border-radius: 24px;
    padding: 48px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
}

.contact-info-item:first-child {
    padding-top: 0;
}

.contact-info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--primary-20);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    transition: var(--transition-fast);
}

.contact-info-item:hover .contact-icon {
    background: var(--primary);
    color: var(--black);
}

.contact-info-content {
    flex: 1;
}

.contact-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.contact-value {
    font-size: 1rem;
    color: var(--black);
    line-height: 1.6;
}

.contact-value a {
    color: var(--black);
    transition: var(--transition-fast);
}

.contact-value a:hover {
    color: var(--primary-dark);
}

/* Contact Form Card */
.contact-form-card {
    background: var(--white);
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border);
}

.contact-form-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 32px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-dark);
    letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 16px 20px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--bg-cream);
    color: var(--black);
    transition: var(--transition-fast);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(200, 212, 0, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23655558' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 50px;
}

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

/* Checkbox styling */
.form-checkbox {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
}

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-top: 2px;
    padding: 0;
    cursor: pointer;
    accent-color: var(--primary);
}

.form-checkbox label {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--gray);
    line-height: 1.5;
    cursor: pointer;
}

.form-checkbox label a {
    color: var(--primary-dark);
    text-decoration: underline;
}

.form-checkbox label a:hover {
    color: var(--primary);
}

/* Submit Button */
.form-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 18px 32px;
    margin-top: 8px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: var(--primary);
    color: var(--black);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.form-submit:hover {
    background: var(--black);
    color: var(--white);
    transform: none;
    box-shadow: none;
}

.form-submit svg {
    transition: var(--transition-fast);
}

.form-submit:hover svg {
    transform: translateX(4px);
}

/* ============================================
   FOOTER - Minimal
   ============================================ */

.footer {
    background: var(--black);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-logo img {
    height: 90px;
    width: auto;
}

.footer-logo span {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--white);
}

.footer-brand p {
    font-size: 0.95rem;
    color: var(--white);
    margin-bottom: 0;
}

.footer-title {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 0.95rem;
    color: var(--white);
}

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

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copy {
    font-size: 0.85rem;
    color: var(--white);
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    font-size: 0.9rem;
    color: var(--white);
}

.footer-social a:hover {
    color: var(--primary);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1200px) {
    .container {
        padding: 0 40px;
    }
    
    .navbar {
        padding: 25px 40px;
    }
    
    .hero-content {
        padding: 0 40px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .project-item.tall {
        grid-row: span 1;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    :root {
        --section-padding: 100px;
    }
    
    .nav-menu,
    .nav-contact {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .contact-info-card {
        order: 2;
    }
    
    .contact-form-card {
        order: 1;
    }
    
    .about-image-wrapper {
        order: -1;
    }
    
    .about-experience {
        left: 30px;
    }
    
    .about-content {
        padding-left: 0;
    }
    
    .hero-stats {
        position: static;
        margin-top: 60px;
        justify-content: flex-start;
    }
    
    .hero-stat {
        text-align: left;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }
    
    .container {
        padding: 0 25px;
    }
    
    .navbar {
        padding: 20px 25px;
    }
    
    .hero {
        max-width: 100%;
        margin: 0;
        border-radius: 0;
        height: var(--hero-height-mobile);
        min-height: var(--hero-min-height-mobile);
    }
    
    .hero-bg {
        border-radius: 0;
    }
    
    .hero-content {
        padding: 0 20px;
    }
    
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .hero-description {
        display: none;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        margin-top: 0;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-scroll {
        display: none;
    }
    
    .services-grid,
    .projects-grid,
    .team-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-item {
        padding: 40px 30px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-card {
        padding: 32px 24px;
    }
    
    .contact-info-card {
        padding: 32px 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-header {
        margin-bottom: 50px;
    }
    
    .section-cta {
        margin-top: 40px;
    }
    
    .section-cta--center {
        margin-top: 50px;
    }
    
    .section-cta-buttons {
        flex-direction: column;
    }
    
    .section-cta-buttons .btn {
        width: 100%;
    }
    
    .clients-section {
        padding: 60px 0 60px;
    }
    
    .clients-wrapper {
        padding: 40px 0;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.85rem;
        line-height: 1.15;
    }
    
    .hero-buttons .btn {
        padding: 14px 24px;
        font-size: 0.7rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .stat-number,
    .hero-stat-number {
        font-size: 3rem;
    }
    
    .btn {
        width: 100%;
        padding: 16px 30px;
    }
    
    .stats-bar {
        grid-template-columns: 1fr;
    }
    
    .about-experience {
        display: none;
    }
    
    .about-image-accent {
        display: none;
    }
}

/* ============================================
   MOBILE MENU
   ============================================ */

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: var(--white);
    z-index: 1000;
    padding: 100px 40px 40px;
    transition: var(--transition);
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu li {
    border-bottom: 1px solid var(--border);
}

.mobile-menu a {
    display: block;
    padding: 20px 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--black);
}

.mobile-menu a:hover {
    color: var(--primary);
}

.mobile-menu-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-close::before,
.mobile-menu-close::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 2px;
    background: var(--black);
}

.mobile-menu-close::before {
    transform: rotate(45deg);
}

.mobile-menu-close::after {
    transform: rotate(-45deg);
}

/* Mobile dropdown */
.mobile-dropdown-menu {
    display: none;
    list-style: none;
    padding-left: 20px;
    background: var(--bg-light);
    margin: 0 -40px;
    padding: 10px 40px 10px 60px;
}

.mobile-dropdown.active .mobile-dropdown-menu {
    display: block;
}

.mobile-dropdown-menu li {
    border-bottom: none;
}

.mobile-dropdown-menu a {
    font-size: 0.9rem;
    padding: 12px 0;
    color: var(--gray);
}

.mobile-dropdown-menu a:hover {
    color: var(--primary-dark);
}

.mobile-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-dropdown-toggle::after {
    content: '+';
    font-size: 1.2rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.mobile-dropdown.active .mobile-dropdown-toggle::after {
    content: '−';
}

.mobile-cta {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 30px !important;
    background: var(--primary);
    color: var(--black) !important;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85rem !important;
    border-radius: 12px;
}

/* ============================================
   ANIMATIONS
   ============================================ */

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger */
.stagger > *:nth-child(1) { transition-delay: 0.1s; }
.stagger > *:nth-child(2) { transition-delay: 0.2s; }
.stagger > *:nth-child(3) { transition-delay: 0.3s; }
.stagger > *:nth-child(4) { transition-delay: 0.4s; }
.stagger > *:nth-child(5) { transition-delay: 0.5s; }
.stagger > *:nth-child(6) { transition-delay: 0.6s; }
