/* =====================================================
   Blanc & Associés — Styles CSS
   Palette : Navy #1B2A4A | Doré #C9A84C | Blanc #FFFFFF
   Fonts   : Playfair Display (titres) + Inter (corps)
===================================================== */

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

:root {
    --navy:       #1B2A4A;
    --navy-light: #243559;
    --navy-dark:  #131d33;
    --gold:       #C9A84C;
    --gold-light: #d9bc74;
    --gold-dark:  #a8853a;
    --white:      #FFFFFF;
    --off-white:  #F8F6F2;
    --light-gray: #F2F0EC;
    --mid-gray:   #8A8A8A;
    --dark-gray:  #333333;
    --border:     #E0DBCF;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans:  'Inter', system-ui, sans-serif;
    --shadow-sm:  0 2px 8px rgba(27,42,74,0.08);
    --shadow-md:  0 6px 24px rgba(27,42,74,0.12);
    --shadow-lg:  0 16px 48px rgba(27,42,74,0.18);
    --radius:     8px;
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    color: var(--dark-gray);
    background: var(--white);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    max-width: 100vw;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
address { font-style: normal; }

/* ---- Container ---- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- Section ---- */
.section { padding: 96px 0; }
.section-alt { background: var(--off-white); }

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 64px;
}

.section-eyebrow {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 17px;
    color: var(--mid-gray);
    line-height: 1.7;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 13px 28px;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}
.btn-primary:hover {
    background: var(--navy-dark);
    border-color: var(--navy-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-gold {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}
.btn-gold:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(201,168,76,0.4);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
}

.btn-full { width: 100%; justify-content: center; }

/* ============================================
   HEADER
============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow var(--transition);
}

.header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 32px;
    position: relative;
}

/* Logo */
.logo, .footer-logo {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 700;
    flex-shrink: 0;
    cursor: default;
}
/* Header nav : texte navy, & doré */
.logo .logo-blanc, .logo .logo-associes { color: var(--navy); }

/* Footer : texte blanc, & doré */
.footer-logo .logo-blanc, .footer-logo .logo-associes { color: var(--white); }

/* & doré dans les deux contextes */
.logo-et { color: var(--gold); }

/* Nav */
.nav { display: flex; align-items: center; gap: 4px; }

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-gray);
    padding: 8px 14px;
    border-radius: 6px;
    transition: color var(--transition), background var(--transition);
}
.nav-link:hover, .nav-link.active {
    color: var(--navy);
    background: var(--light-gray);
}

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--navy);
    transition: color var(--transition);
}
.header-phone i { color: var(--gold); font-size: 13px; }
.header-phone:hover { color: var(--gold); }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.hamburger span {
    display: block;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   HERO
============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: url('https://images.unsplash.com/photo-1554224155-6726b3ff858f?w=1600&q=80&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding-top: 72px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(27,42,74,0.88) 0%,
        rgba(27,42,74,0.72) 60%,
        rgba(201,168,76,0.25) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    padding: 80px 0;
}

.hero-eyebrow {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    line-height: 1.75;
    margin-bottom: 40px;
    max-width: 580px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

/* Trust badges */
.trust-badges {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    padding: 12px 18px;
}

.trust-badge i {
    font-size: 22px;
    color: var(--gold-light);
    flex-shrink: 0;
}

.trust-badge strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
}

.trust-badge span {
    display: block;
    font-size: 12px;
    color: rgba(255,255,255,0.7);
}

/* ============================================
   ABOUT
============================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

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

.about-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--gold);
    color: var(--white);
    border-radius: 8px;
    padding: 12px 18px;
    text-align: center;
}

.badge-year {
    display: block;
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}

.badge-label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    opacity: 0.9;
    margin-top: 4px;
}

.about-content { padding: 16px 0; }

.about-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--mid-gray);
    margin-bottom: 20px;
}

/* Stats */
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 40px 0;
    padding: 32px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stat { text-align: center; }

.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 38px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-number sup { font-size: 22px; }

.stat-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--mid-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Software tags */
.about-softwares { margin-top: 32px; }

.softwares-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.software-tags { display: flex; flex-wrap: wrap; gap: 10px; }

.tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--light-gray);
    color: var(--navy);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    transition: all var(--transition);
}

.tag:hover {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

/* ============================================
   SERVICES
============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 36px 28px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform var(--transition);
}

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

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

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--off-white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: background var(--transition);
}

.service-icon i {
    font-size: 22px;
    color: var(--navy);
    transition: color var(--transition);
}

.service-card:hover .service-icon {
    background: var(--navy);
}
.service-card:hover .service-icon i { color: var(--gold); }

.service-title {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 12px;
    line-height: 1.3;
}

.service-text {
    font-size: 14px;
    line-height: 1.75;
    color: var(--mid-gray);
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    transition: gap var(--transition), color var(--transition);
}

.service-link:hover { gap: 10px; color: var(--gold-dark); }

/* ============================================
   CERTIFICATIONS
============================================ */
.certs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.cert-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 40px 32px;
    text-align: center;
    transition: all var(--transition);
}

.cert-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}

.cert-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.cert-icon i { font-size: 28px; color: var(--gold); }

.cert-title {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.35;
    margin-bottom: 12px;
}

.cert-text {
    font-size: 14px;
    line-height: 1.75;
    color: var(--mid-gray);
    margin-bottom: 20px;
}

.cert-badge {
    display: inline-block;
    padding: 5px 16px;
    background: rgba(201,168,76,0.1);
    color: var(--gold-dark);
    border: 1px solid rgba(201,168,76,0.35);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   TÉMOIGNAGES
============================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 36px 28px;
    transition: all var(--transition);
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    right: 28px;
    font-family: var(--font-serif);
    font-size: 72px;
    line-height: 1;
    color: var(--gold);
    opacity: 0.25;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold-light);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}
.testimonial-stars i { color: var(--gold); font-size: 14px; }

.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--mid-gray);
    font-style: italic;
    margin-bottom: 24px;
    padding-top: 4px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

.author-info strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 2px;
}

.author-info span {
    font-size: 12px;
    color: var(--mid-gray);
}

/* ============================================
   CONTACT
============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 64px;
    align-items: start;
}

.contact-info-title, .contact-form-title {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 28px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-item i {
    font-size: 18px;
    color: var(--gold);
    margin-top: 2px;
    flex-shrink: 0;
    width: 20px;
}

.contact-item strong {
    display: block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--navy);
    margin-bottom: 4px;
}

.contact-item span, .contact-item a {
    font-size: 15px;
    color: var(--mid-gray);
    line-height: 1.5;
}

.contact-item a:hover { color: var(--gold); }

/* Évite les débordements sur les adresses email longues */
.contact-item a,
.footer-address a {
    word-break: break-all;
    overflow-wrap: break-word;
}

.contact-map {
    margin-top: 28px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
}

/* Form */
.contact-form-wrapper {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

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

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

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.required { color: var(--gold); }

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-sans);
    font-size: 15px;
    color: var(--dark-gray);
    background: var(--off-white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 12px 16px;
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(27,42,74,0.1);
    background: var(--white);
}

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

.form-group select { cursor: pointer; }

/* Form feedback */
.form-message {
    display: none;
    padding: 14px 18px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.5;
}

.form-message.success {
    background: rgba(16, 185, 129, 0.1);
    color: #065f46;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    color: #991b1b;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* ============================================
   FOOTER
============================================ */
.footer {
    background: var(--navy-dark);
    color: rgba(255,255,255,0.75);
    padding-top: 72px;
    padding-bottom: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    font-size: 24px;
    margin-bottom: 10px;
}

.footer-tagline {
    font-size: 13px;
    color: var(--gold-light);
    font-style: italic;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}

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

.footer-heading {
    font-family: var(--font-serif);
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(201,168,76,0.3);
}

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

.footer-links a {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold-light); }

.footer-address p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 12px;
    line-height: 1.5;
}

.footer-address i {
    color: var(--gold);
    font-size: 13px;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-address a { color: rgba(255,255,255,0.6); }
.footer-address a:hover { color: var(--gold-light); }

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

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

.footer-bottom strong { color: var(--gold-light); }

.footer-disclaimer {
    margin-top: 6px;
    font-size: 12px !important;
    font-style: italic;
}

/* CTA dans le nav mobile — caché sur desktop */
.nav-cta {
    display: none;
    margin-top: 8px;
    text-align: center;
    justify-content: center;
}

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

/* ---- Tablette large ---- */
@media (max-width: 1100px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { gap: 48px; }
}

/* ---- Tablette ---- */
@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; }
    .about-image img { height: 380px; }
    .certs-grid { grid-template-columns: 1fr 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* ---- Mobile ---- */
@media (max-width: 768px) {
    .section { padding: 56px 0; }
    .section-header { margin-bottom: 36px; }
    .section-subtitle { font-size: 15px; }

    /* --- Header --- */
    /* Masquer le btn CTA header sur mobile (gardé dans le nav déroulant) */
    .header-actions .btn-primary { display: none; }
    .header-phone span { display: none; }
    .hamburger { display: flex; }
    .header-inner { gap: 12px; }

    /* Nav mobile déroulant */
    .nav {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        padding: 12px 16px 20px;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-md);
        gap: 2px;
        z-index: 999;
    }
    .nav.open { display: flex; }
    .nav-link { padding: 12px 16px; border-radius: 8px; font-size: 15px; }
    .nav-cta { display: flex; } /* visible dans le menu mobile */

    /* --- Hero --- */
    .hero {
        background-attachment: scroll;
        min-height: 100svh;
    }
    .hero-content { padding: 56px 0 48px; }
    .hero-eyebrow {
        font-size: 11px;
        letter-spacing: 1.5px;
        word-break: break-word;
    }
    .hero-subtitle { font-size: 16px; margin-bottom: 32px; }
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    .hero-actions .btn { justify-content: center; text-align: center; }
    .trust-badges {
        flex-direction: column;
        gap: 12px;
    }
    .trust-badge { width: 100%; }

    /* --- About --- */
    .about-image img { height: 280px; }
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        padding: 24px 0;
    }
    .stat-number { font-size: 28px; }
    .stat-label { font-size: 11px; letter-spacing: 0; }

    /* --- Services --- */
    .services-grid { grid-template-columns: 1fr; }

    /* --- Certifications --- */
    .certs-grid { grid-template-columns: 1fr; }

    /* --- Contact --- */
    .contact-form-wrapper { padding: 24px 20px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }

    /* --- Footer --- */
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-address a,
    .footer-address p { word-break: break-word; }
}

/* ---- Petits mobiles (≤ 480px) ---- */
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .section { padding: 48px 0; }

    /* Logo légèrement réduit */
    .logo { font-size: 18px; }

    /* Hero */
    .hero-content { padding: 48px 0 40px; }
    .hero-title { font-size: 30px; }
    .hero-subtitle { font-size: 15px; }
    .hero-eyebrow { font-size: 10px; letter-spacing: 1px; }
    .btn { font-size: 14px; padding: 12px 20px; }

    /* About stats : 3 col garde mais réduit encore */
    .about-stats { gap: 8px; }
    .stat-number { font-size: 26px; }
    .stat-number sup { font-size: 16px; }
    .stat-label { font-size: 10px; }

    /* Contact form */
    .contact-form-wrapper { padding: 20px 16px; }
    .form-group input,
    .form-group select,
    .form-group textarea { font-size: 16px; } /* évite le zoom iOS */

    /* Footer */
    .footer-bottom p { font-size: 12px; }
    .footer-address p { font-size: 13px; }
}

/* ---- Très petits écrans (≤ 360px) ---- */
@media (max-width: 360px) {
    .logo { font-size: 16px; }
    .hero-title { font-size: 26px; }
    .section-title { font-size: 24px; }
    .container { padding: 0 12px; }
    .about-stats { grid-template-columns: 1fr; gap: 16px; }
    .stat { display: flex; align-items: center; gap: 12px; text-align: left; }
    .stat-number { font-size: 32px; margin-bottom: 0; }
}
