/* ================================================================
   EVO MULTISERVICES - main.css
   Thème WordPress sur-mesure - Mulhouse
   ================================================================ */

/* 1. RESET & BASE
   ================================================================ */

*, *::before, *::after { box-sizing: border-box; }

:root {
    --navy: #0A2540;
    --navy-2: #0F3158;
    --navy-3: #13335A;
    --orange: #F57C2F;
    --orange-hover: #E26B1E;
    --whatsapp: #25D366;
    --whatsapp-hover: #1FB955;
    --white: #FFFFFF;
    --gray-50: #F5F7FA;
    --gray-100: #E8EDF3;
    --gray-200: #D5DCE5;
    --gray-300: #C9D3E0;
    --gray-500: #6B7280;
    --gray-700: #374151;
    --text: #1F2A37;
    --text-light: #6B7280;
    --shadow-sm: 0 1px 2px rgba(10,37,64,.05);
    --shadow-md: 0 4px 12px rgba(10,37,64,.08);
    --shadow-lg: 0 12px 32px rgba(10,37,64,.12);
    --shadow-xl: 0 24px 60px rgba(10,37,64,.18);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-xl: 24px;
    --container: 1200px;
    --container-narrow: 820px;
    --header-h: 88px;
    --transition: 0.25s cubic-bezier(.4,0,.2,1);
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

a:hover { color: var(--orange-hover); }

p { margin: 0 0 1em; }

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--navy);
    line-height: 1.25;
    margin: 0 0 0.6em;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.1rem; }

ul { padding-left: 0; }
li { list-style: none; }

button {
    font-family: inherit;
    cursor: pointer;
    border: 0;
    background: none;
}

.screen-reader-text {
    position: absolute !important;
    clip: rect(1px,1px,1px,1px);
    width: 1px; height: 1px;
    overflow: hidden;
}

.skip-link:focus {
    position: fixed;
    top: 12px; left: 12px;
    width: auto; height: auto;
    clip: auto;
    padding: 12px 20px;
    background: var(--navy);
    color: var(--white);
    z-index: 9999;
    border-radius: var(--radius-sm);
}

/* 2. CONTAINERS
   ================================================================ */

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.container--narrow { max-width: var(--container-narrow); }

/* 3. BUTTONS
   ================================================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 22px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
    white-space: nowrap;
    line-height: 1.2;
    border: 2px solid transparent;
}

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn span {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
    text-align: left;
}

.btn span small { font-size: 0.75rem; font-weight: 400; opacity: 0.85; }

.btn--lg { padding: 18px 28px; font-size: 1rem; }

.btn--small { padding: 8px 14px; font-size: 0.85rem; }

.btn--orange {
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 6px 18px rgba(245,124,47,.3);
}
.btn--orange:hover {
    background: var(--orange-hover);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(245,124,47,.4);
}

.btn--ghost {
    background: rgba(255,255,255,.08);
    color: var(--white);
    border-color: rgba(255,255,255,.3);
}
.btn--ghost:hover {
    background: rgba(255,255,255,.15);
    border-color: rgba(255,255,255,.6);
    color: var(--white);
    transform: translateY(-2px);
}

.btn--ghost-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,.4);
}
.btn--ghost-light:hover {
    background: rgba(255,255,255,.12);
    color: var(--white);
}

.btn--ghost-dark {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}
.btn--ghost-dark:hover {
    background: var(--navy);
    color: var(--white);
}

.btn--whatsapp {
    background: var(--whatsapp);
    color: var(--white);
    box-shadow: 0 6px 18px rgba(37,211,102,.3);
}
.btn--whatsapp:hover {
    background: var(--whatsapp-hover);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(37,211,102,.4);
}

/* 4. HEADER
   ================================================================ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
    transition: box-shadow var(--transition);
}

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

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: var(--header-h);
    padding-top: 16px;
    padding-bottom: 16px;
}

/* Logo */
.site-logo {
    display: inline-flex;
    flex-direction: column;
    line-height: 1;
    color: var(--navy);
}
.site-logo:hover { color: var(--navy); }

.logo-text {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--navy);
}
.logo-o { color: var(--orange); }
.logo-tagline {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: var(--text-light);
    margin-top: 2px;
}

.custom-logo-link img { max-height: 56px; width: auto; }

/* Navigation */
.site-nav { position: relative; }

.site-nav__menu {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-nav__menu li a,
.site-nav__menu .menu-item a {
    display: inline-block;
    padding: 8px 14px;
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.site-nav__menu li a:hover,
.site-nav__menu .current-menu-item > a {
    color: var(--orange);
    background: rgba(245,124,47,.08);
}

.site-nav__toggle {
    display: none;
    width: 44px; height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 22px;
}
.hamburger span {
    display: block;
    height: 2.5px;
    background: var(--navy);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

.site-nav__toggle[aria-expanded="true"] .hamburger span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}
.site-nav__toggle[aria-expanded="true"] .hamburger span:nth-child(2) {
    opacity: 0;
}
.site-nav__toggle[aria-expanded="true"] .hamburger span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* Header contact */
.site-header__contact {
    display: flex;
    align-items: center;
    gap: 14px;
}

.site-header__phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--navy);
    padding: 6px 8px;
    border-radius: var(--radius-sm);
}

.site-header__phone:hover { color: var(--orange); }

.site-header__phone-icon {
    width: 38px; height: 38px;
    background: var(--gray-50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
}
.site-header__phone-icon svg { width: 18px; height: 18px; }

.site-header__phone-text { display: flex; flex-direction: column; line-height: 1.2; }
.site-header__phone-text strong { font-size: 0.95rem; font-weight: 700; }
.site-header__phone-text small { font-size: 0.75rem; color: var(--text-light); }

/* 5. HERO
   ================================================================ */

.hero {
    position: relative;
    color: var(--white);
    overflow: hidden;
    padding: 80px 0 100px;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 80% 20%, rgba(245,124,47,.18) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 80%, rgba(37,211,102,.10) 0%, transparent 50%),
        linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
    z-index: -1;
}

.hero__inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.18);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 22px;
}
.hero__badge svg { width: 14px; height: 14px; color: var(--orange); }

.hero__title {
    color: var(--white);
    margin-bottom: 18px;
    line-height: 1.1;
}

.hero__highlight {
    color: var(--orange);
    position: relative;
    display: inline-block;
}

.hero__lead {
    font-size: 1.1rem;
    color: rgba(255,255,255,.85);
    max-width: 560px;
    margin-bottom: 32px;
}

.hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 36px;
}

.hero__perks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 24px;
    margin: 0;
    padding: 0;
}

.hero__perks li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255,255,255,.9);
    font-size: 0.9rem;
}

.hero__perks li svg {
    width: 22px; height: 22px;
    color: var(--orange);
    flex-shrink: 0;
}

.hero__perks li strong {
    display: block;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 2px;
}
.hero__perks li span { color: rgba(255,255,255,.7); font-size: 0.82rem; }

.hero__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__visual-frame {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius-xl);
    padding: 32px;
    backdrop-filter: blur(8px);
    box-shadow: var(--shadow-xl);
    width: 100%;
    max-width: 520px;
}

/* 6. SECTIONS - GENERAL
   ================================================================ */

section { padding: 96px 0; }

.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}

.section-head h2 { margin-bottom: 12px; }
.section-head--light h2 { color: var(--white); }

.eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--text-light);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.eyebrow--orange { color: var(--orange); }

.lead {
    font-size: 1.12rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5em;
}

.bullet-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5em;
}

.bullet-list li {
    position: relative;
    padding: 6px 0 6px 28px;
}

.bullet-list li::before {
    content: '';
    position: absolute;
    top: 14px;
    left: 4px;
    width: 8px;
    height: 8px;
    background: var(--orange);
    border-radius: 50%;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: var(--orange);
}
.link-arrow svg { width: 16px; height: 16px; transition: transform var(--transition); }
.link-arrow:hover svg { transform: translateX(4px); }

/* 7. SERVICES (homepage grid)
   ================================================================ */

.services { background: var(--gray-50); }

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

.service-card {
    background: var(--white);
    padding: 32px 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

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

.service-card__icon {
    width: 56px; height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--white);
}
.service-card__icon svg { width: 28px; height: 28px; }

.service-card__icon.is-blue   { background: linear-gradient(135deg, #3B5998 0%, #2C4373 100%); }
.service-card__icon.is-orange { background: linear-gradient(135deg, #F57C2F 0%, #E26B1E 100%); }
.service-card__icon.is-green  { background: linear-gradient(135deg, #25D366 0%, #1FB955 100%); }
.service-card__icon.is-purple { background: linear-gradient(135deg, #8B5CF6 0%, #6D28D9 100%); }
.service-card__icon.is-yellow { background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 100%); }

.service-card h3 {
    margin-bottom: 10px;
    color: var(--navy);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 18px;
    flex-grow: 1;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--orange);
}
.service-card__link svg { width: 16px; height: 16px; transition: transform var(--transition); }
.service-card__link:hover svg { transform: translateX(4px); }

/* 8. WHY US
   ================================================================ */

.why-us {
    background: var(--navy);
    color: rgba(255,255,255,.85);
    position: relative;
}

.why-us::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 90% 10%, rgba(245,124,47,.12) 0%, transparent 60%),
        radial-gradient(ellipse at 10% 90%, rgba(37,211,102,.08) 0%, transparent 60%);
    pointer-events: none;
}

.why-us > .container { position: relative; z-index: 1; }

.why-us__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.02);
}

.why-us__item {
    padding: 36px 28px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,.08);
    transition: background var(--transition);
}

.why-us__item:last-child { border-right: 0; }
.why-us__item:hover { background: rgba(255,255,255,.05); }

.why-us__icon {
    width: 56px; height: 56px;
    background: rgba(245,124,47,.18);
    border: 1px solid rgba(245,124,47,.4);
    border-radius: 50%;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
}
.why-us__icon svg { width: 24px; height: 24px; }

.why-us__item h3 { color: var(--white); margin-bottom: 8px; font-size: 1.1rem; }
.why-us__item p { font-size: 0.9rem; color: rgba(255,255,255,.7); margin: 0; }

/* 9. AIRBNB SECTION
   ================================================================ */

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

.airbnb-section__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.airbnb-photos {
    position: relative;
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
    aspect-ratio: 1.1/1;
}

.airbnb-photos__main {
    grid-row: 1 / -1;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.airbnb-photos__side {
    display: contents;
}
.airbnb-photos__side > div {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.placeholder-photo {
    width: 100%;
    height: 100%;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 160px;
    overflow: hidden;
    position: relative;
}

.placeholder-photo > svg,
.placeholder-photo > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Hero illustration ou photo uploadee */
.hero__visual-frame > svg,
.hero__visual-frame > img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-md);
}

.hero__visual-frame > img {
    aspect-ratio: 4/3;
    object-fit: cover;
}

/* Carte Haut-Rhin */
.haut-rhin-map {
    width: 100%;
    height: auto;
    max-height: 360px;
}

.placeholder-photo--bedroom { background: linear-gradient(135deg, #E8EDF3 0%, #D5DCE5 100%); }
.placeholder-photo--kitchen { background: linear-gradient(135deg, #FFF5E6 0%, #FFE4C4 100%); }
.placeholder-photo--living  { background: linear-gradient(135deg, #E8F5E8 0%, #C8E6C9 100%); }

.airbnb-photos__rating {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--white);
    padding: 12px 18px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.airbnb-photos__rating .rating-star { color: #FBBF24; font-size: 1.1rem; }
.airbnb-photos__rating strong { color: var(--navy); font-size: 1.25rem; font-weight: 800; }
.airbnb-photos__rating small { color: var(--text-light); font-size: 0.7rem; }

.check-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
    display: grid;
    gap: 12px;
}
.check-list--two-cols {
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-size: 0.95rem;
}

.check-list .check {
    flex-shrink: 0;
    width: 22px; height: 22px;
    background: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}
.check-list .check svg { width: 14px; height: 14px; }

/* 10. ZONE / FORMULAIRE
   ================================================================ */

.zone-form {
    background: var(--gray-50);
}

.zone-form__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: stretch;
}

.zone-form__zone h2 { margin-bottom: 28px; }

.zone-form__cities {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 28px;
}

.city-list { padding: 0; margin: 0; }
.city-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    font-size: 0.95rem;
    color: var(--text);
}
.city-list li svg { width: 18px; height: 18px; flex-shrink: 0; }

.zone-form__map {
    margin-top: 28px;
    max-width: 220px;
}

.devis-card {
    background: var(--navy);
    color: var(--white);
    padding: 40px 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.devis-card .eyebrow { color: var(--orange); }
.devis-card h2 { color: var(--white); margin-bottom: 12px; font-size: 1.6rem; }
.devis-card > p { color: rgba(255,255,255,.75); margin-bottom: 24px; }

.devis-form { display: flex; flex-direction: column; gap: 14px; position: relative; }

.devis-form__row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.devis-form input,
.devis-form select,
.devis-form textarea {
    width: 100%;
    padding: 12px 14px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-family: inherit;
    font-size: 0.92rem;
    transition: all var(--transition);
}

.devis-form input::placeholder,
.devis-form textarea::placeholder { color: rgba(255,255,255,.5); }

.devis-form select { color: rgba(255,255,255,.6); }
.devis-form select option { color: var(--text); background: var(--white); }

.devis-form input:focus,
.devis-form select:focus,
.devis-form textarea:focus {
    outline: none;
    border-color: var(--orange);
    background: rgba(255,255,255,.1);
}

.devis-form textarea { resize: vertical; min-height: 110px; }

.devis-form__footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 8px;
}

.devis-form__perks {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    padding: 0; margin: 0;
}
.devis-form__perks li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,.75);
    font-size: 0.82rem;
}
.devis-form__perks li svg {
    width: 16px; height: 16px;
    color: var(--whatsapp);
}

.devis-form__feedback {
    margin-top: 8px;
    padding: 0;
    font-size: 0.92rem;
    transition: all var(--transition);
}
.devis-form__feedback.is-success {
    background: rgba(37,211,102,.16);
    border: 1px solid rgba(37,211,102,.4);
    color: #B5F0CC;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
}
.devis-form__feedback.is-error {
    background: rgba(245,124,47,.18);
    border: 1px solid rgba(245,124,47,.5);
    color: #FFD9B8;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
}

/* 11. SITES SPECIALISES
   ================================================================ */

.specialized-sites { background: var(--white); }

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

.specialized-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
    transition: all var(--transition);
}

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

.specialized-card__icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    color: var(--white);
}

.specialized-card__icon.is-blue   { background: #3B5998; }
.specialized-card__icon.is-orange { background: var(--orange); }
.specialized-card__icon.is-green  { background: var(--whatsapp); }
.specialized-card__icon.is-purple { background: #8B5CF6; }

.specialized-card h3 { margin-bottom: 4px; }
.specialized-card h3.is-orange { color: var(--orange); }
.specialized-card h3.is-green  { color: var(--whatsapp-hover); }
.specialized-card h3.is-purple { color: #8B5CF6; }
.specialized-card h3.is-blue   { color: #3B5998; }

.specialized-card small {
    display: block;
    color: var(--text-light);
    font-size: 0.78rem;
    margin-bottom: 12px;
    letter-spacing: 0.05em;
}

.specialized-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 18px;
}

.badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 600;
}

.badge-soon {
    background: var(--gray-50);
    color: var(--text-light);
    border: 1px dashed var(--gray-300);
}

.btn--small.is-blue   { background: #3B5998; color: var(--white); }
.btn--small.is-orange { background: var(--orange); color: var(--white); }
.btn--small.is-green  { background: var(--whatsapp); color: var(--white); }
.btn--small.is-purple { background: #8B5CF6; color: var(--white); }

/* 12. CTA BAND
   ================================================================ */

.cta-band {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
    color: var(--white);
    padding: 64px 0;
}

.cta-band__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: center;
}

.cta-band__text h2 {
    color: var(--white);
    margin-bottom: 8px;
    font-size: 1.7rem;
}

.cta-band__text p {
    color: rgba(255,255,255,.8);
    margin: 0;
    font-size: 1rem;
}

.cta-band__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

/* 13. FOOTER
   ================================================================ */

.site-footer {
    background: #061829;
    color: rgba(255,255,255,.7);
    padding: 72px 0 24px;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
    margin-bottom: 18px;
}
.footer-logo .logo-text { color: var(--white); }
.footer-logo .logo-tagline { color: rgba(255,255,255,.5); }

.footer-about {
    color: rgba(255,255,255,.6);
    font-size: 0.92rem;
    margin-bottom: 20px;
}

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

.footer-social a {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.85);
    transition: all var(--transition);
}
.footer-social a:hover {
    background: var(--orange);
    color: var(--white);
    transform: translateY(-2px);
}
.footer-social svg { width: 18px; height: 18px; }

.footer-title {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 18px;
    font-size: 1rem;
}

.footer-links { padding: 0; margin: 0; }
.footer-links li { padding: 5px 0; }
.footer-links a {
    color: rgba(255,255,255,.65);
    font-size: 0.92rem;
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--orange); }

.footer-contact { padding: 0; margin: 0 0 20px; }
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    color: rgba(255,255,255,.65);
    font-size: 0.92rem;
}
.footer-contact li svg {
    width: 18px; height: 18px;
    color: var(--orange);
    flex-shrink: 0;
    margin-top: 2px;
}
.footer-contact a { color: rgba(255,255,255,.85); }
.footer-contact a:hover { color: var(--orange); }
.footer-contact small { display: block; color: rgba(255,255,255,.45); font-size: 0.78rem; margin-top: 2px; }

.footer-whatsapp {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--whatsapp);
    color: var(--white);
    padding: 14px 18px;
    border-radius: var(--radius-md);
    transition: all var(--transition);
}
.footer-whatsapp:hover {
    background: var(--whatsapp-hover);
    color: var(--white);
    transform: translateY(-2px);
}
.footer-whatsapp svg { width: 22px; height: 22px; flex-shrink: 0; }
.footer-whatsapp span { display: flex; flex-direction: column; line-height: 1.2; }
.footer-whatsapp small { font-size: 0.78rem; opacity: 0.85; }

.site-footer__bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 24px;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,.5);
}
.site-footer__bottom a { color: var(--orange); }
.site-footer__bottom .sep { margin: 0 8px; opacity: 0.5; }

/* 14. WHATSAPP FAB & SCROLL TOP
   ================================================================ */

.whatsapp-fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--whatsapp);
    color: var(--white);
    padding: 14px 20px;
    border-radius: 100px;
    box-shadow: 0 12px 32px rgba(37,211,102,.4);
    transition: all var(--transition);
}

.whatsapp-fab:hover {
    background: var(--whatsapp-hover);
    color: var(--white);
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 18px 44px rgba(37,211,102,.55);
}

.whatsapp-fab svg { width: 26px; height: 26px; }
.whatsapp-fab__label { font-weight: 600; font-size: 0.92rem; }

.whatsapp-fab::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 100px;
    background: rgba(37,211,102,.4);
    z-index: -1;
    animation: pulse 2.4s ease-out infinite;
}

@keyframes pulse {
    0%   { transform: scale(0.95); opacity: 0.8; }
    70%  { transform: scale(1.15); opacity: 0; }
    100% { transform: scale(1.15); opacity: 0; }
}

.scroll-top {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 998;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: all var(--transition);
}
.scroll-top svg { width: 20px; height: 20px; }
.scroll-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.scroll-top:hover { background: var(--orange); }

/* 15. PAGE TEMPLATES (services, etc.)
   ================================================================ */

/* Pages editees avec Elementor / Gutenberg : remplacer les contraintes */
.evo-page-content--editor {
    padding: 0 !important;
}
.evo-page-content--editor > .container {
    max-width: none;
    padding: 0;
}
.page-builder-content {
    width: 100%;
    min-height: 60vh;
}
.page-builder-content > * {
    max-width: 100%;
}
/* Pour les pages Elementor, le contenu doit pouvoir etre full-width */
.elementor-page .page-builder-content,
.elementor-page .evo-page-content--editor {
    padding: 0 !important;
}

.page-hero {
    background: var(--gray-50);
    padding: 80px 0 60px;
    text-align: center;
}

.page-hero--blue {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-hero--blue::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 80% 20%, rgba(245,124,47,.12) 0%, transparent 60%);
    pointer-events: none;
}

.page-hero--blue h1,
.page-hero--blue .page-hero__lead { color: var(--white); position: relative; }

.page-hero--blue .eyebrow { color: var(--orange); position: relative; }

.page-hero h1 { margin-bottom: 18px; }

.page-hero__lead {
    font-size: 1.12rem;
    max-width: 720px;
    margin: 0 auto;
    color: rgba(255,255,255,.85);
    line-height: 1.6;
}

.page-content {
    padding: 80px 0;
}

.page-content h2 {
    margin-top: 1.6em;
    color: var(--navy);
}
.page-content h2:first-of-type { margin-top: 0; }

.page-content h3 {
    margin-top: 1.4em;
    color: var(--navy);
}

.page-content p,
.page-content ul,
.page-content ol {
    color: var(--text);
    font-size: 1.02rem;
    line-height: 1.75;
}

.page-content .lead {
    font-size: 1.18rem;
    color: var(--text);
}

/* Services overview list (page services) */
.services-overview {
    display: grid;
    gap: 20px;
    margin: 32px 0;
}

.services-overview__item {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 20px;
    background: var(--gray-50);
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-100);
    transition: all var(--transition);
}

.services-overview__item:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.services-overview__icon {
    width: 56px; height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}
.services-overview__icon svg { width: 28px; height: 28px; }
.services-overview__icon.is-blue   { background: linear-gradient(135deg, #3B5998, #2C4373); }
.services-overview__icon.is-orange { background: linear-gradient(135deg, #F57C2F, #E26B1E); }
.services-overview__icon.is-green  { background: linear-gradient(135deg, #25D366, #1FB955); }
.services-overview__icon.is-purple { background: linear-gradient(135deg, #8B5CF6, #6D28D9); }
.services-overview__icon.is-yellow { background: linear-gradient(135deg, #FBBF24, #F59E0B); }

.services-overview__body h3 { margin-top: 0; margin-bottom: 8px; }
.services-overview__body p { margin: 0 0 10px; }

/* 16. CONTACT SECTION
   ================================================================ */

.contact-section {
    background: var(--gray-50);
    padding: 80px 0;
}

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

.contact-list { padding: 0; margin: 24px 0; }
.contact-list li {
    display: flex;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-100);
    align-items: center;
}
.contact-list li:last-child { border-bottom: 0; }

.contact-list__icon {
    flex-shrink: 0;
    width: 48px; height: 48px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    box-shadow: var(--shadow-sm);
}
.contact-list__icon svg { width: 22px; height: 22px; }
.contact-list__icon--whatsapp { background: var(--whatsapp); color: var(--white); }

.contact-list h3 {
    margin: 0 0 4px;
    font-size: 1rem;
    color: var(--navy);
}
.contact-link {
    display: block;
    color: var(--navy);
    font-weight: 600;
    margin-bottom: 2px;
}
.contact-link:hover { color: var(--orange); }
.contact-list small { color: var(--text-light); font-size: 0.82rem; }

.contact-section__zones,
.contact-section__urgency {
    background: var(--white);
    padding: 22px 24px;
    border-radius: var(--radius-md);
    margin-top: 20px;
    border: 1px solid var(--gray-100);
}

.contact-section__urgency {
    background: rgba(245,124,47,.06);
    border-color: rgba(245,124,47,.18);
}

.contact-section__zones h3,
.contact-section__urgency h3 { margin-top: 0; margin-bottom: 10px; }

.contact-section__zones p,
.contact-section__urgency p { margin-bottom: 14px; font-size: 0.95rem; }

.contact-section__urgency .btn { margin-top: 4px; }

/* 17. ERROR 404
   ================================================================ */

.error-404 {
    padding: 120px 0;
    background: var(--gray-50);
    text-align: center;
}

.error-404 h1 {
    font-size: clamp(5rem, 16vw, 9rem);
    color: var(--navy);
    margin-bottom: 0;
    line-height: 1;
}

.error-404 h2 { margin-bottom: 14px; }

.error-404 p {
    max-width: 480px;
    margin: 0 auto 32px;
    color: var(--text-light);
    font-size: 1.05rem;
}

.error-404__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

/* 18. RESPONSIVE
   ================================================================ */

@media (max-width: 1024px) {
    section { padding: 72px 0; }

    .services__grid { grid-template-columns: repeat(2, 1fr); }
    .specialized-sites__grid { grid-template-columns: repeat(2, 1fr); }

    .why-us__grid { grid-template-columns: repeat(2, 1fr); }
    .why-us__item { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.08); }
    .why-us__item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.08); }

    .hero__inner { grid-template-columns: 1fr; gap: 40px; text-align: left; }
    .hero__visual { order: -1; max-width: 360px; margin: 0; }

    .airbnb-section__grid,
    .zone-form__grid,
    .contact-section__grid { grid-template-columns: 1fr; gap: 40px; }

    .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }

    .cta-band__inner { grid-template-columns: 1fr; text-align: center; }
    .cta-band__buttons { justify-content: center; }
}

@media (max-width: 768px) {

    /* Header mobile */
    .site-nav__toggle { display: inline-flex; }

    .site-nav__menu {
        position: absolute;
        top: 100%;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: var(--white);
        padding: 12px;
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-lg);
        min-width: 240px;
        margin-top: 12px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: all var(--transition);
    }

    .site-nav__toggle[aria-expanded="true"] + #primary-menu,
    .site-nav__toggle[aria-expanded="true"] ~ ul.site-nav__menu,
    .site-nav__menu.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .site-nav__menu li a { padding: 12px 14px; }

    .site-header__contact .site-header__phone-text,
    .site-header__cta { display: none; }

    .site-header__contact .site-header__phone {
        padding: 0;
    }

    section { padding: 56px 0; }

    .container { padding: 0 16px; }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }

    .hero { padding: 56px 0 72px; }
    .hero__buttons .btn { width: 100%; justify-content: center; }
    .hero__perks { grid-template-columns: 1fr; }

    .services__grid,
    .specialized-sites__grid { grid-template-columns: 1fr; }

    .why-us__grid { grid-template-columns: 1fr; }
    .why-us__item { border-right: 0 !important; }

    .check-list--two-cols { grid-template-columns: 1fr; }

    .zone-form__cities { grid-template-columns: 1fr 1fr; }

    .devis-form__row { grid-template-columns: 1fr; }
    .devis-card { padding: 28px 22px; }

    .site-footer__grid { grid-template-columns: 1fr; gap: 32px; }

    .whatsapp-fab__label { display: none; }
    .whatsapp-fab { padding: 14px; border-radius: 50%; }
    .whatsapp-fab svg { width: 24px; height: 24px; }

    .scroll-top { width: 40px; height: 40px; bottom: 20px; left: 20px; }

    .services-overview__item { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .site-header__phone-icon { width: 40px; height: 40px; }
    .zone-form__cities { grid-template-columns: 1fr; }
}

/* 19. ANIMATIONS (fade-in au scroll)
   ================================================================ */

.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Print
   ================================================================ */
@media print {
    .site-header, .site-footer, .whatsapp-fab, .scroll-top, .cta-band { display: none !important; }
    .page-hero, section { padding: 20px 0 !important; }
    body { color: #000; background: #fff; }
}

/* ================================================================
   ===  PREMIUM v1.1.0 — Animations, glow, glass, parallax  ===
   ================================================================ */

/* === Reveal animations === */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.9s cubic-bezier(.16,1,.3,1), transform 0.9s cubic-bezier(.16,1,.3,1);
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-line {
    display: block;
    opacity: 0;
    transform: translateY(60%);
    transition: opacity 1s cubic-bezier(.16,1,.3,1), transform 1s cubic-bezier(.16,1,.3,1);
}
.reveal-line.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* === HERO PREMIUM === */
.hero--premium {
    position: relative;
    color: var(--white);
    overflow: hidden;
    padding: 100px 0 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.hero--premium .hero__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #061829 0%, #0A2540 60%, #0F3158 100%);
    z-index: -1;
    overflow: hidden;
}

.hero--premium .hero__inner {
    flex: 1;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 64px;
    align-items: center;
    padding-bottom: 80px;
    position: relative;
    z-index: 1;
}

/* Mesh gradient animé */
.hero__mesh {
    position: absolute;
    inset: -20%;
    background:
        radial-gradient(circle at 20% 30%, rgba(245,124,47,0.18) 0%, transparent 40%),
        radial-gradient(circle at 80% 60%, rgba(37,211,102,0.12) 0%, transparent 40%),
        radial-gradient(circle at 50% 90%, rgba(139,92,246,0.10) 0%, transparent 40%);
    animation: meshFloat 20s ease-in-out infinite alternate;
}

@keyframes meshFloat {
    0%   { transform: translate(0,0) rotate(0); }
    50%  { transform: translate(3%,-2%) rotate(2deg); }
    100% { transform: translate(-2%,3%) rotate(-1deg); }
}

/* Grille subtile */
.hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

/* Glow blobs */
.hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: glowFloat 12s ease-in-out infinite alternate;
}
.hero__glow--orange {
    width: 500px; height: 500px;
    background: rgba(245,124,47,0.4);
    top: -100px; right: -100px;
    animation-delay: 0s;
}
.hero__glow--green {
    width: 400px; height: 400px;
    background: rgba(37,211,102,0.25);
    bottom: -80px; left: -80px;
    animation-delay: 3s;
}

@keyframes glowFloat {
    0%   { transform: translate(0,0) scale(1); }
    50%  { transform: translate(40px,-30px) scale(1.1); }
    100% { transform: translate(-30px,20px) scale(0.95); }
}

/* Particules flottantes */
.hero__particles { position: absolute; inset: 0; pointer-events: none; }
.hero__particles span {
    position: absolute;
    width: 4px; height: 4px;
    background: rgba(245,124,47,0.5);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(245,124,47,0.8);
    animation: particleFloat linear infinite;
}
.hero__particles span:nth-child(1) { left: 10%; animation-duration: 18s; animation-delay: 0s;  width:3px;height:3px; }
.hero__particles span:nth-child(2) { left: 25%; animation-duration: 22s; animation-delay: 3s; }
.hero__particles span:nth-child(3) { left: 40%; animation-duration: 16s; animation-delay: 5s; background:rgba(37,211,102,0.5); box-shadow:0 0 12px rgba(37,211,102,0.8); }
.hero__particles span:nth-child(4) { left: 55%; animation-duration: 20s; animation-delay: 1s; }
.hero__particles span:nth-child(5) { left: 70%; animation-duration: 24s; animation-delay: 7s; background:rgba(255,255,255,0.5); box-shadow:0 0 12px rgba(255,255,255,0.6); }
.hero__particles span:nth-child(6) { left: 85%; animation-duration: 19s; animation-delay: 4s; }
.hero__particles span:nth-child(7) { left: 95%; animation-duration: 17s; animation-delay: 2s; background:rgba(37,211,102,0.5); box-shadow:0 0 12px rgba(37,211,102,0.8); }
.hero__particles span:nth-child(8) { left: 5%;  animation-duration: 23s; animation-delay: 8s; }

@keyframes particleFloat {
    from { transform: translateY(110vh); opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 1; }
    to   { transform: translateY(-10vh); opacity: 0; }
}

/* Hero badge premium */
.hero--premium .hero__badge {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    font-weight: 700;
}
.hero__badge-dot {
    display: inline-block;
    width: 8px; height: 8px;
    background: #25D366;
    border-radius: 50%;
    margin-right: 10px;
    box-shadow: 0 0 10px rgba(37,211,102,0.8);
    animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
    0%,100% { transform: scale(1); opacity: 1; }
    50%     { transform: scale(1.4); opacity: 0.7; }
}

/* Title premium */
.hero--premium .hero__title {
    font-size: clamp(2.4rem, 5.2vw, 4.4rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 18px 0 22px;
}
.hero--premium .hero__title em {
    font-style: normal;
    font-weight: 800;
}
.hero--premium .hero__highlight {
    background: linear-gradient(135deg, #F57C2F 0%, #FFB077 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
}

/* Lead */
.hero--premium .hero__lead {
    color: rgba(255,255,255,0.72);
    font-size: 1.12rem;
    line-height: 1.65;
    max-width: 540px;
    margin-bottom: 36px;
}

/* Stats hero */
.hero__stats {
    display: flex;
    gap: 36px;
    padding: 28px 0 0;
    margin: 32px 0 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.hero__stats li { display: flex; flex-direction: column; gap: 2px; }
.hero__stats strong {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    background: linear-gradient(135deg, #FFFFFF 0%, #C9D3E0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
}
.hero__stats span {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 500;
}

/* === HERO VISUAL STACK === */
.hero__visual-stack {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1.05;
    max-width: 540px;
    margin-left: auto;
}

.hero-card--main {
    position: absolute;
    top: 0; right: 0;
    width: 88%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
        0 30px 80px rgba(0,0,0,0.4),
        0 0 0 1px rgba(255,255,255,0.08);
    transform: rotate(2deg);
    transition: transform 0.6s cubic-bezier(.16,1,.3,1);
    background: #1a2a3a;
}
.hero-card--main:hover { transform: rotate(0); }

.hero-card__image {
    position: absolute; inset: 0;
    overflow: hidden;
}
.hero-card__image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}
.hero-card--main:hover .hero-card__image img { transform: scale(1.06); }

.hero-card__overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 24px 24px 24px;
    background: linear-gradient(to top, rgba(10,37,64,0.96) 0%, rgba(10,37,64,0.7) 60%, transparent 100%);
    color: white;
}
.hero-card__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
    text-transform: uppercase;
}
.hero-card__tag-dot {
    width: 6px; height: 6px;
    background: #F57C2F;
    border-radius: 50%;
    box-shadow: 0 0 10px #F57C2F;
}
.hero-card__title {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0 0 4px;
    color: white;
}
.hero-card__sub {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    margin: 0;
}

/* Floats */
.hero-float {
    position: absolute;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 14px 18px;
    box-shadow: 0 16px 50px rgba(0,0,0,0.25);
    color: var(--text);
    z-index: 2;
    animation: floatY 4s ease-in-out infinite alternate;
}
@keyframes floatY {
    from { transform: translateY(0); }
    to   { transform: translateY(-8px); }
}

.hero-float--rating {
    top: 20px; left: -20px;
    display: flex; flex-direction: column;
    gap: 4px; align-items: flex-start;
    animation-delay: 0.5s;
}
.hero-float--rating .hero-float__stars { display: flex; gap: 2px; }
.hero-float--rating svg { width: 14px; height: 14px; }
.hero-float--rating strong { font-size: 1.1rem; font-weight: 800; color: var(--navy); }
.hero-float--rating small { font-size: 0.7rem; color: var(--text-light); }

.hero-float--team {
    top: 45%; left: -50px;
    display: flex; align-items: center; gap: 12px;
    animation-delay: 1.2s;
}
.hero-float--team .hero-float__icon {
    width: 40px; height: 40px;
    background: linear-gradient(135deg, #25D366, #1FB955);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: white;
}
.hero-float--team .hero-float__icon svg { width: 20px; height: 20px; }
.hero-float--team strong { display: block; font-size: 0.88rem; font-weight: 700; color: var(--navy); }
.hero-float--team small { font-size: 0.72rem; color: var(--text-light); }

.hero-float--quote {
    bottom: 60px; left: -10px;
    display: flex; align-items: center; gap: 12px;
    animation-delay: 2s;
    padding-left: 26px;
}
.hero-float__pulse {
    position: absolute;
    left: 12px; top: 50%; transform: translateY(-50%);
    width: 10px; height: 10px;
    background: #F57C2F;
    border-radius: 50%;
}
.hero-float__pulse::before {
    content: '';
    position: absolute; inset: -6px;
    border-radius: 50%;
    background: rgba(245,124,47,0.4);
    animation: floatPulse 1.6s ease-out infinite;
}
@keyframes floatPulse {
    0%   { transform: scale(0.6); opacity: 1; }
    100% { transform: scale(2.4); opacity: 0; }
}
.hero-float--quote strong { display: block; font-size: 0.88rem; font-weight: 700; color: var(--navy); }
.hero-float--quote small { font-size: 0.72rem; color: var(--text-light); }

/* === MARQUEE VILLES === */
.hero-marquee {
    position: relative;
    z-index: 1;
    overflow: hidden;
    background: rgba(255,255,255,0.04);
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 18px 0;
    color: rgba(255,255,255,0.5);
}
.hero-marquee__track {
    display: flex;
    gap: 36px;
    animation: marquee 50s linear infinite;
    white-space: nowrap;
    will-change: transform;
}
.hero-marquee__track span {
    font-size: 0.92rem;
    letter-spacing: 0.08em;
    font-weight: 500;
}
.hero-marquee__track .dot { color: #F57C2F; font-weight: 700; }
@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* === STATS BAND === */
.stats-band {
    background: linear-gradient(135deg, #F5F7FA 0%, #FFFFFF 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.stats-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(245,124,47,0.05) 0%, transparent 30%),
        radial-gradient(circle at 80% 50%, rgba(37,211,102,0.05) 0%, transparent 30%);
}
.stats-band__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.stat-item {
    text-align: center;
    padding: 32px 18px;
    background: white;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(10,37,64,0.06);
    border: 1px solid rgba(10,37,64,0.04);
    transition: all 0.3s cubic-bezier(.16,1,.3,1);
}
.stat-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(10,37,64,0.12);
    border-color: rgba(245,124,47,0.2);
}

.stat-item__icon {
    width: 56px; height: 56px;
    margin: 0 auto 18px;
    background: linear-gradient(135deg, rgba(245,124,47,0.1), rgba(245,124,47,0.05));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
}
.stat-item__icon svg { width: 26px; height: 26px; }

.stat-item__value {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
    background: linear-gradient(135deg, #0A2540 0%, #1F2A37 60%, #F57C2F 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 8px;
}

.stat-item__label {
    font-size: 0.88rem;
    color: var(--text-light);
    font-weight: 500;
}

/* === SERVICE CARDS PREMIUM (overrides) === */
.service-card {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(.16,1,.3,1);
}
.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(245,124,47,0.06) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(10,37,64,0.15);
}
.service-card__icon {
    transition: transform 0.5s cubic-bezier(.16,1,.3,1), box-shadow 0.5s;
}
.service-card:hover .service-card__icon {
    transform: scale(1.1) rotate(-4deg);
}

/* === TESTIMONIALS === */
.testimonials {
    background: var(--gray-50);
    padding: 96px 0;
}

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

.testimonial {
    background: white;
    padding: 32px 28px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(10,37,64,0.05);
    border: 1px solid rgba(10,37,64,0.03);
    transition: all 0.4s cubic-bezier(.16,1,.3,1);
    display: flex;
    flex-direction: column;
}
.testimonial:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(10,37,64,0.12);
}

.testimonial--featured {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
    color: white;
    transform: scale(1.04);
}
.testimonial--featured .testimonial__text { color: rgba(255,255,255,0.92); }
.testimonial--featured .testimonial__author strong { color: white; }
.testimonial--featured .testimonial__author small { color: rgba(255,255,255,0.65); }

.testimonial__stars {
    display: flex;
    gap: 4px;
    margin-bottom: 18px;
}
.testimonial__stars svg { width: 18px; height: 18px; }

.testimonial__text {
    flex: 1;
    color: var(--text);
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial__author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial__avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
}
.testimonial__author strong { display: block; font-size: 0.95rem; color: var(--navy); }
.testimonial__author small { font-size: 0.78rem; color: var(--text-light); }

/* === MAGNETIC BUTTONS === */
.btn--magnetic { transition: transform 0.3s cubic-bezier(.16,1,.3,1), box-shadow 0.3s; }

/* === Whatsapp FAB amélioré === */
.whatsapp-fab {
    transform: scale(1);
    transition: transform 0.4s cubic-bezier(.16,1,.3,1), box-shadow 0.4s, background 0.3s;
}
.whatsapp-fab:hover {
    transform: translateY(-3px) scale(1.06);
}

/* === RESPONSIVE PREMIUM === */
@media (max-width: 1024px) {
    .hero--premium .hero__inner {
        grid-template-columns: 1fr;
        text-align: left;
        padding-bottom: 60px;
    }
    .hero__visual-stack { max-width: 460px; margin: 0 auto; }
    .stats-band__grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials__grid { grid-template-columns: 1fr; }
    .testimonial--featured { transform: none; }
}
@media (max-width: 768px) {
    .hero--premium { min-height: auto; padding: 80px 0 0; }
    .hero__stats { gap: 18px; flex-wrap: wrap; }
    .hero__stats strong { font-size: 1.4rem; }
    .hero-float--rating, .hero-float--team, .hero-float--quote { display: none; }
    .hero-card--main { transform: none; width: 100%; }
    .stats-band__grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .stat-item { padding: 22px 14px; }
    .hero-marquee__track { gap: 20px; animation-duration: 40s; }
}

/* === Reduce motion preference === */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01s !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01s !important;
    }
    .reveal, .reveal-line { opacity: 1; transform: none; }
}
