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

:root {
    --primary: #436DA7;
    --primary-dark: #1d365d;
    --primary-light: #5A8AC4;
    --accent: #84C019;
    --accent-dark: #6FA015;
    --bg-white: #FFFFFF;
    --bg-light: #F7F9FC;
    --bg-blue-light: #F0F4FA;
    --bg-blue-soft: #E8EFF8;
    --text: #1d365d;
    --text-secondary: #5A6B80;
    --text-muted: #8A99AB;
    --border: #D8E1EC;
    --border-light: #E8EFF5;
    --radius: 10px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --shadow: 0 4px 24px rgba(29,54,93,0.08);
    --shadow-lg: 0 12px 48px rgba(29,54,93,0.12);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--bg-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

em {
    font-style: normal;
    color: var(--primary);
    font-family: 'DM Serif Display', serif;
}

/* ===== Animations ===== */
.fade-up {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes pulse {
    0%, 100% { opacity: 1; r: 5; }
    50% { opacity: 0.5; r: 8; }
}
.pulse-dot { animation: pulse 2s ease-in-out infinite; }

@keyframes blink {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.1; }
}
.blink-dot { animation: blink 2.5s ease-in-out infinite; }

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.spin { animation: spin 1s linear infinite; }

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

/* ===== Top Bar ===== */
.top-bar {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.8);
    font-size: 13px;
    padding: 8px 0;
}

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

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.top-bar-left span,
.top-bar-right a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.top-bar-right a {
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    transition: var(--transition);
}
.top-bar-right a:hover { color: var(--accent); }

/* ===== Navbar ===== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-title {
    display: block;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
    color: var(--primary-dark);
}

.logo-subtitle {
    display: block;
    font-weight: 500;
    font-size: 12px;
    color: var(--primary);
    line-height: 1.2;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
    position: relative;
    padding: 4px 0;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
    border-radius: 1px;
}
.nav-links a:hover::after { width: 100%; }

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--primary);
    color: white;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition);
}
.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== Hero Slider ===== */
.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
}
.hero-slide-bg svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 680px;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    font-weight: 500;
    border-radius: 100px;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
}

.hero h1 {
    font-size: clamp(2.4rem, 4.5vw, 3.6rem);
    font-weight: 700;
    line-height: 1.12;
    color: white;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
    animation: slideIn 0.8s ease;
}

.hero h1 em {
    color: var(--accent);
    font-family: 'DM Serif Display', serif;
    font-style: normal;
}

.hero p {
    font-size: 17px;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 2px 12px rgba(67,109,167,0.3);
}
.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(67,109,167,0.35);
}

.btn-accent {
    background: var(--accent);
    color: white;
    box-shadow: 0 2px 12px rgba(132,192,25,0.3);
}
.btn-accent:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(132,192,25,0.35);
}

.btn-white-outline {
    background: transparent;
    color: white;
    border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-white-outline:hover {
    border-color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.08);
    transform: translateY(-2px);
}

/* Hero navigation */
.hero-nav {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.5);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}
.hero-dot.active {
    background: var(--accent);
    border-color: var(--accent);
}

.hero-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    z-index: 5;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.hero-arrow {
    pointer-events: auto;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.08);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    backdrop-filter: blur(8px);
}
.hero-arrow:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.5);
}

/* ===== Counters ===== */
.counters {
    background: var(--bg-white);
    padding: 0;
    margin-top: -1px;
}

.counters-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 48px 0;
    border-bottom: 1px solid var(--border-light);
}

.counter-item {
    flex: 1;
    text-align: center;
    padding: 0 24px;
}

.counter-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    font-family: 'DM Serif Display', serif;
}

.counter-suffix {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
}

.counter-label {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
    margin-top: 6px;
}

.counter-divider {
    width: 1px;
    height: 48px;
    background: var(--border);
    flex-shrink: 0;
}

/* ===== Section Common ===== */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 60px;
}

.section-header.light h2 { color: white; }
.section-header.light p { color: rgba(255,255,255,0.75); }

.section-overline {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.section-overline.light { color: var(--accent); }

.section-header h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--text);
}

.section-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
    margin: 0 auto 20px;
}

.section-line.left { margin: 0 0 20px; }
.section-line.center.light { background: linear-gradient(90deg, var(--accent), rgba(255,255,255,0.3)); }

.section-header p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== Services ===== */
.services {
    padding: 100px 0;
    background: var(--bg-white);
}

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

.service-card {
    padding: 32px;
    border-radius: var(--radius-lg);
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.service-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--bg-blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary);
    transition: var(--transition);
}

.service-card:hover .service-icon-wrap {
    background: var(--accent);
    color: white;
}

.service-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 16px;
}

.service-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}

.service-line {
    width: 40px;
    height: 2px;
    background: var(--accent);
    margin: 0 auto 14px;
    border-radius: 1px;
}

.service-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.service-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    transition: var(--transition);
}
.service-link:hover {
    color: var(--accent);
}

/* ===== Équipements ===== */
.equipements {
    padding: 100px 0;
    background: var(--bg-light);
}

.equip-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.equip-image-frame {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.equip-image-frame svg {
    width: 100%;
    height: auto;
    display: block;
}

.equip-content h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
    color: var(--text);
}

.equip-intro {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.equip-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.equip-feature {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.equip-feature-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--accent);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.equip-feature strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 3px;
}

.equip-feature p {
    font-size: 13px;
    color: var(--text-secondary);
}

/* ===== Équipe ===== */
.equipe {
    padding: 100px 0;
    background: var(--primary-dark);
    position: relative;
    overflow: hidden;
}

.equipe-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(67,109,167,0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(132,192,25,0.08) 0%, transparent 40%);
    pointer-events: none;
}

.team-cards {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.team-card {
    text-align: center;
    padding: 48px 40px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
    margin-bottom: 32px;
}

.team-card-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 2px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: rgba(255,255,255,0.7);
}

.team-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin-bottom: 6px;
}

.team-card-role {
    display: block;
    font-size: 14px;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 16px;
}

.team-card p {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    max-width: 540px;
    margin: 0 auto;
}

.team-stats-row {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.team-stat-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 100px;
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    backdrop-filter: blur(8px);
}

.team-stat-pill strong {
    color: var(--accent);
    font-weight: 700;
}

.team-stat-pill svg {
    color: rgba(255,255,255,0.4);
}

/* ===== Infos Pratiques ===== */
.infos {
    padding: 100px 0;
    background: var(--bg-white);
}

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

.info-card {
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    text-align: center;
    transition: var(--transition);
}

.info-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.info-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--bg-blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    color: var(--primary);
}

.info-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text);
}

.info-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.info-card strong { color: var(--primary); }

/* ===== RDV ===== */
.rdv-section {
    padding: 100px 0;
    background: var(--bg-blue-light);
}

.rdv-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.rdv-left h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}

.rdv-left > p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 36px;
}

.rdv-contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rdv-contact-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    transition: var(--transition);
}

.rdv-contact-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.rdv-contact-card svg { color: var(--primary); flex-shrink: 0; margin-top: 2px; }

.rdv-contact-card strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text);
}

.rdv-contact-card a,
.rdv-contact-card span {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
}

.rdv-contact-card a:hover { color: var(--primary); }

.rdv-form-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow);
}

.rdv-form-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text);
}

.rdv-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

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

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

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 14px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    color: var(--text);
    background: var(--bg-light);
    transition: var(--transition);
    outline: none;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(67,109,167,0.1);
    background: white;
}

.form-group select {
    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='%235A6B80' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

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

.btn-submit {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 15px;
    margin-top: 4px;
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.form-note {
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
    margin-top: -4px;
}

.form-success {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 18px;
    background: #E8F8F0;
    border: 1px solid #A8E6CF;
    border-radius: var(--radius);
    color: #0A5C36;
}

.form-success strong { display: block; font-size: 14px; margin-bottom: 2px; }
.form-success p { font-size: 13px; opacity: 0.8; }

/* ===== Contact ===== */
.contact {
    padding: 100px 0;
    background: var(--bg-white);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 56px;
    align-items: start;
}

.contact-details h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 28px;
}

.contact-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.contact-item-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--bg-blue-light);
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.contact-item strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 3px;
    color: var(--text);
}

.contact-item p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-item a { color: var(--primary); font-weight: 500; }
.contact-item a:hover { text-decoration: underline; }

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
}

.social-links a:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--bg-blue-light);
}

.contact-map {
    height: 420px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* ===== Footer ===== */
.footer-top {
    padding: 60px 0 40px;
    background: var(--primary-dark);
}

.footer-top-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.footer-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
}

.footer-col h4 {
    font-size: 15px;
    font-weight: 700;
    color: white;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent);
    border-radius: 1px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul a {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}

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

.footer-contact li {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
}

.footer-contact a { color: rgba(255,255,255,0.6); }
.footer-contact a:hover { color: var(--accent); }

.footer-bottom {
    padding: 20px 0;
    background: rgba(0,0,0,0.15);
}

.footer-bottom-content {
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .infos-grid { grid-template-columns: repeat(2, 1fr); }
    .equip-layout { gap: 50px; }
    .footer-top-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .top-bar { display: none; }
    .nav-links, .nav-cta { display: none; }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 76px;
        left: 0;
        right: 0;
        background: white;
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-lg);
    }

    .nav-toggle { display: flex; }

    .hero { height: 500px; }
    .hero h1 { font-size: clamp(1.8rem, 5vw, 2.6rem); }
    .hero-arrows { display: none; }

    .counters-grid { flex-wrap: wrap; gap: 24px; padding: 32px 0; }
    .counter-divider { display: none; }
    .counter-item { flex: 1 1 40%; }

    .services-grid { grid-template-columns: 1fr; }
    .equip-layout { grid-template-columns: 1fr; gap: 40px; }
    .equip-visual { order: -1; }

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

    .rdv-layout { grid-template-columns: 1fr; }
    .rdv-form-card { padding: 28px 20px; }

    .contact-layout { grid-template-columns: 1fr; }
    .contact-map { height: 280px; }

    .footer-top-grid { grid-template-columns: 1fr; gap: 32px; }
    .team-stats-row { gap: 10px; }
    .team-stat-pill { font-size: 13px; padding: 10px 14px; }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; }
    .btn { justify-content: center; }
    .form-row { grid-template-columns: 1fr; }
    .hero { height: 450px; }
    .counter-item { flex: 1 1 100%; }
}
