:root {
    --primary: #1E3A5F;
    --primary-dark: #0F172A;
    --accent: #F97316;
    --accent-hover: #EA580C;
    --text-main: #0F172A;
    --text-light: #64748B;
    --bg-light: #F0F5FF;
    --white: #FFFFFF;
    --shadow: 0 10px 30px -10px rgba(30, 58, 95, 0.15);
    --radius: 50px;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--primary);
    font-weight: 900;
    letter-spacing: -1px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

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

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

.section {
    padding: 80px 0;
    position: relative;
}

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

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

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

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

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

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

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

.full-width {
    width: 100%;
}

/* --- Top Banner --- */
.top-banner {
    background-color: var(--accent);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.9rem;
    font-weight: 600;
    position: relative;
    z-index: 1001;
    transition: margin-top 0.3s ease;
}

.banner-content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

#close-banner {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    position: absolute;
    right: 0;
    cursor: pointer;
}

/* --- Header --- */
.site-header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #E2E8F0;
    padding: 10px 0;
    transition: padding 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
    padding: 6px 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-inline: 20px;
    gap: 20px;
}

.logo {
    font-size: 1.4rem;
    font-family: var(--font-heading);
}

.logo-gmk {
    color: var(--primary);
}

.logo-renovation {
    color: var(--accent);
}

.main-nav {
    margin-right: auto;
    margin-left: 40px;
}

.main-nav ul {
    display: flex;
    gap: 20px;
}

.main-nav a {
    font-weight: 500;
    font-size: 1.1rem;
    position: relative;
}

.site-header .btn-primary {
    padding: 8px 20px;
    font-size: 1rem;
    border-radius: 999px;
}

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

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

.main-nav a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary);
    transition: 0.3s;
}

/* --- Hero Section --- */
.hero-section {
    padding: 80px 0 80px;
    background-color: var(--white);
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 90%;
}

.hero-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.hero-badges {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    flex-wrap: nowrap;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    color: var(--primary);
    background: var(--bg-light);
}

.hero-svg {
    width: 100%;
    height: auto;
    max-height: 500px;
    filter: drop-shadow(0 20px 40px rgba(30, 58, 95, 0.1));
}

.wave-divider {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin-top: -50px;
    z-index: 1;
    position: relative;
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.wave-divider .shape-fill {
    fill: var(--white);
}

/* --- Section Notre Expérience (Team) --- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.team-card {
    background: var(--white);
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.team-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.team-role {
    font-size: 1.25rem;
    margin-bottom: 5px;
    color: var(--primary);
}

.team-exp {
    display: inline-block;
    background-color: var(--bg-light);
    color: var(--accent);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 4px 12px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.team-list {
    margin-top: 15px;
}

.team-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--text-light);
}

.team-list li::before {
    content: '•';
    color: var(--accent);
    position: absolute;
    left: 0;
    font-weight: bold;
}


/* --- Section Réseaux (Grid 2x2) --- */
.section-header {
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

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

.grid-2x2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.feature-block {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border-left: 4px solid transparent;
}

.feature-block:hover {
    background: var(--white);
    box-shadow: var(--shadow);
    border-left-color: var(--accent);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.feature-block h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.feature-block p {
    color: var(--text-light);
}

/* --- Process (Vertical Timeline) --- */
.timeline-vertical {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline-line {
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: #E2E8F0;
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 60px;
}

.timeline-dot {
    position: absolute;
    left: 0;
    top: 0;
    width: 44px;
    height: 44px;
    background-color: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 900;
    font-size: 1.2rem;
    border: 4px solid var(--white);
    box-shadow: 0 0 0 4px #E2E8F0;
    z-index: 2;
}

.timeline-content {
    background: var(--bg-light);
    padding: 20px 30px;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.timeline-item:hover .timeline-content {
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateX(10px);
}

.timeline-content h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

/* --- Stats Section --- */
.stats-section {
    background-color: var(--primary);
    color: var(--white);
    background-image: radial-gradient(circle at top right, #2563EB 0%, transparent 40%);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
}

.stat-item {
    padding: 0 30px;
    border-right: 1px solid rgba(255,255,255,0.12);
}

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

.stat-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
    display: inline-block;
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent);
}

.stat-label {
    display: block;
    margin-top: 16px;
    font-size: 0.9rem;
    opacity: 0.85;
    line-height: 1.4;
}

/* --- Partners Marquee --- */
.partners-section {
    overflow: hidden;
}

.partners-marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    padding: 40px 0;
    position: relative;
}

.partners-marquee::before,
.partners-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.partners-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-light), transparent);
}

.partners-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-light), transparent);
}

.marquee-content {
    display: inline-block;
    animation: marquee 40s linear infinite;
}

.marquee-content span {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: rgba(30, 58, 95, 0.35);
    margin: 0 40px;
    -webkit-text-stroke: 1px rgba(30, 58, 95, 0.5);
    transition: 0.3s;
}

.marquee-content span:hover {
    color: var(--primary);
    -webkit-text-stroke: 0;
}

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

/* --- Garanties --- */
.guarantees-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    align-items: center;
}

.guarantee-item {
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: var(--bg-light);
    border-radius: 30px;
}

.check {
    color: var(--accent);
    font-weight: 900;
}

/* --- Testimonials --- */
.testimonials-section {
    background-color: var(--primary-dark);
    padding-bottom: 100px;
    color: var(--white);
}

.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 50px;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    position: relative;
}

.quote-icon {
    font-size: 4rem;
    color: var(--accent);
    opacity: 0.3;
    line-height: 0;
    margin-bottom: 30px;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 30px;
    opacity: 0.9;
}

.testimonial-author strong {
    display: block;
    color: var(--accent);
    font-size: 1.1rem;
}

.testimonial-author span {
    font-size: 0.9rem;
    opacity: 0.7;
}

.stars {
    display: block;
    margin-top: 5px;
    font-size: 0.8rem;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    z-index: 10;
}

.slider-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.prev-btn { left: 0; }
.next-btn { right: 0; }

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.dot.active, .dot:hover {
    background-color: var(--accent);
    transform: scale(1.2);
}

/* --- Zone --- */
.departments-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto 40px;
}

.dept-badge {
    background: var(--white);
    border: 1px solid #E2E8F0;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    color: var(--primary);
}

.emergency-box {
    background: var(--accent);
    color: var(--white);
    max-width: 500px;
    margin: 0 auto;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
}

.emergency-box h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* --- FAQ Accordion --- */
.faq-container {
    max-width: 800px;
}

.accordion-item {
    border-bottom: 1px solid #E2E8F0;
}

.accordion-header {
    width: 100%;
    padding: 20px 0;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header .icon {
    font-size: 1.5rem;
    color: var(--accent);
    transition: 0.3s;
}

.accordion-header.active .icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding-right: 40px;
}

.accordion-content p {
    padding-bottom: 20px;
    color: var(--text-light);
}

/* --- Contact Form --- */
.contact-container {
    max-width: 800px;
}

.contact-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    gap: 20px;
}

.tab-btn {
    background: transparent;
    border: 2px solid #E2E8F0;
    padding: 15px 30px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    color: var(--text-light);
    transition: border-color 0.3s ease, color 0.3s ease, background-color 0.3s ease;
}

.tab-btn.active {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(249, 115, 22, 0.05);
}

.contact-form {
    display: none;
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.contact-form.active {
    display: block;
    animation: fadeIn 0.5s;
}

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

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

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 0.85rem;
}

/* --- Footer --- */
.site-footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 80px 0 30px;
    border-top: 4px solid var(--accent);
}

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

.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-contact p {
    margin-bottom: 10px;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-col ul li {
    margin-bottom: 10px;
}

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

.footer-badges {
    margin-top: 15px;
    font-weight: 600;
    color: var(--white);
}

.footer-badges span {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
}

/* --- Elements Flottants --- */
#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--accent);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 900;
}

#back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.mobile-emergency-badge {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--accent);
    color: var(--white);
    text-align: center;
    padding: 12px;
    font-weight: 700;
    z-index: 999;
    display: none;
}

.scroll-progress {
    height: 4px;
    background: var(--accent);
    width: 0%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2000;
    transition: width 0.1s;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    .scroll-reveal {
        opacity: 1;
        transform: none;
    }
}


.team-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

/* --- Modal --- */
.modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: var(--white);
    padding: 40px;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: modalSlide 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalSlide {
    from { opacity: 0; transform: scale(0.8) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: var(--text-light);
    cursor: pointer;
}

.modal-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

/* --- Animations Scroll Reveal --- */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.5,0,0,1), transform 0.8s cubic-bezier(0.5,0,0,1);
}

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

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }

/* --- Dossier Box --- */
.dossier-box {
    background: var(--white);
    border: 2px solid var(--accent);
    border-radius: 20px;
    padding: 50px 40px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.1);
}
.dossier-box h2 {
    font-size: 2rem;
    color: var(--primary);
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .hero-subtitle {
        margin: 0 auto 30px;
    }

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

    .hero-badges {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .grid-2x2, .team-grid {
        grid-template-columns: 1fr;
    }

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

    .timeline-line {
        left: 50%;
        transform: translateX(-50%);
    }

    .timeline-item {
        padding: 0;
        margin-bottom: 60px;
    }

    .timeline-dot {
        left: 50%;
        transform: translateX(-50%);
        top: -30px;
    }

    .timeline-content {
        text-align: center;
        margin-top: 20px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .main-nav {
        display: none; /* Mobile menu implementation usually requires JS toggle class, keeping simple here */
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-emergency-badge {
        display: block;
    }
    
    #back-to-top {
        bottom: 80px; /* Above emergency badge */
    }

    /* Mobile Nav Active State (toggled by JS) */
    .main-nav.active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 20px;
        box-shadow: var(--shadow);
    }

    .main-nav.active ul {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    /* 1. Titres trop grands sur téléphone */
    .hero-content h1 {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }
    .section-header h2 {
        font-size: clamp(1.8rem, 6vw, 2.2rem);
    }
    .hero-subtitle {
        font-size: 1rem;
    }

    /* 2. Boutons d'action dans le héro */
    .hero-actions {
        flex-direction: column;
        gap: 10px;
    }
    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }

    /* 3. Badges de confiance sous les boutons */
    .hero-content > div[style*="flex-wrap:wrap"] {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 12px !important;
    }
    .hero-content > div[style*="flex-wrap:wrap"] > span[style*="color:#CBD5E1"] {
        display: none !important; /* Masquer les points séparateurs */
    }

    /* 4. Section statistiques (chiffres clés) */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 30px;
    }
    .stat-item {
        padding: 0 10px;
    }
    .stat-item:nth-child(2) {
        border-right: none;
    }
    .stat-item:nth-child(3),
    .stat-item:nth-child(4) {
        border-top: 1px solid rgba(255,255,255,0.12);
        padding-top: 30px;
    }
    .stat-number {
        font-size: 2.5rem;
    }
    .stat-suffix {
        font-size: 1.8rem;
    }

    /* 5. Cartes équipe et fonctionnalités */
    .team-card, .feature-block {
        padding: 20px;
    }

    /* 6. Formulaire de contact */
    .form-grid {
        grid-template-columns: 1fr;
    }

    /* 7. Bandeau urgence en bas */
    .mobile-emergency-badge {
        padding: 10px 10px 8px;
        font-size: 0.85rem;
    }
    .mobile-emergency-badge a {
        font-size: 0.85rem;
    }
    #back-to-top {
        bottom: 60px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    /* 8. Navigation mobile */
    .main-nav.active {
        padding: 20px 10px;
    }
    .main-nav.active ul li {
        margin: 5px 0;
    }
    .main-nav.active a {
        display: block;
        padding: 15px;
        font-size: 1.2rem;
    }

    /* 9. Section timeline (processus) */
    .timeline-item {
        margin-bottom: 50px;
    }
    .timeline-content {
        margin-top: 35px;
        padding: 30px 15px 15px;
    }
    .timeline-dot {
        top: -22px;
    }

    /* 10. Espacement général */
    .section {
        padding: 50px 0;
    }
    .hero-section {
        padding: 40px 0 50px;
    }
    .section-header {
        margin-bottom: 40px;
    }
    .footer-container {
        margin-bottom: 30px;
    }
}

/* Prose descriptions in team cards (replaces bullet lists) */
.team-desc {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--text-secondary, #64748b);
    margin: 0;
    padding-top: 0.25rem;
}
