/* ========================================
   SAAPHONE - Style Principal
   Premium & Luxe — Blanc / Rouge / Bleu nuit
   ======================================== */

/* Typographie premium : Satoshi (display) + Poppins (body) */
@import url('https://api.fontshare.com/v2/css?f[]=satoshi@400,500,700,900&display=swap');

/* --- VARIABLES --- */
:root {
    /* Couleurs SaaPhone principales */
    --primary: #DC2626;              /* Rouge SaaPhone */
    --primary-dark: #991B1B;         /* Rouge profond */
    --primary-light: #F87171;        /* Rouge clair (hover / accents doux) */
    --secondary: #0A1628;            /* Bleu nuit profond (signature SaaPhone) */
    --accent: #D4AF37;               /* Or champagne (touches luxe, sparingly) */

    /* Gradients */
    --gradient: linear-gradient(135deg, #DC2626, #991B1B);                 /* Rouge profond CTA */
    --gradient-light: linear-gradient(135deg, #F87171, #FCA5A5);           /* Rouge doux sections */
    --gradient-dark: linear-gradient(135deg, #0A1628, #1E293B);            /* Bleu nuit premium */
    --gradient-luxe: linear-gradient(135deg, #DC2626 0%, #0A1628 100%);    /* Signature rouge→nuit */

    /* Textes */
    --text: #0A1628;                 /* Texte principal (bleu nuit au lieu de noir) */
    --text-light: #64748B;           /* Texte secondaire */
    --text-on-dark: #F8FAFC;         /* Texte sur fond sombre */
    --text-muted-dark: #94A3B8;      /* Texte secondaire sur sombre */

    /* Fonds */
    --bg: #FFFFFF;                   /* Blanc pur */
    --bg-light: #FAFAFA;             /* Off-white élégant */
    --bg-soft: #FEF2F2;              /* Rouge très pâle (sections accent léger) */
    --bg-dark: #0A1628;              /* Bleu nuit SaaPhone (sections premium) */
    --bg-dark-elevated: #152238;     /* Bleu nuit élevé (cards sur sombre) */

    /* Bordures */
    --border: #E2E8F0;               /* Bordure neutre claire */
    --border-dark: rgba(255, 255, 255, 0.08); /* Bordure sur fond sombre */

    /* Radius */
    --radius: 16px;
    --radius-sm: 8px;
    --radius-lg: 24px;

    /* Ombres premium */
    --shadow: 0 4px 24px rgba(10, 22, 40, 0.06);
    --shadow-lg: 0 12px 40px rgba(220, 38, 38, 0.15);
    --shadow-luxe: 0 20px 60px rgba(10, 22, 40, 0.12);
    --shadow-red-glow: 0 0 32px rgba(220, 38, 38, 0.18);

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- BANDEAU PROMO --- */
.promo-bar {
    background: var(--gradient);
    color: white;
    text-align: center;
    padding: 10px 40px 10px 20px;
    font-size: 0.85rem;
    font-weight: 500;
    position: relative;
    z-index: 1001;
}

.promo-bar p {
    margin: 0;
}

.promo-bar a {
    color: white;
    font-weight: 700;
    text-decoration: underline;
    margin-left: 6px;
}

.promo-bar a:hover {
    opacity: 0.8;
}

.promo-close {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    opacity: 0.7;
    transition: var(--transition);
}

.promo-close:hover {
    opacity: 1;
}

.promo-bar.hidden {
    display: none;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: -0.005em;
}

/* Typographie display premium : Satoshi sur tous les titres */
h1, h2, h3, h4, h5, h6,
.section-title,
.logo,
.hero h1,
.footer-logo {
    font-family: 'Satoshi', 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    letter-spacing: -0.03em;
    font-weight: 800;
}

/* Hero titre : poids et tracking ultra soignés, style éditorial */
.hero h1 {
    font-weight: 900;
    letter-spacing: -0.045em;
    line-height: 1.05;
}

html {
    overflow-x: hidden;
}

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

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

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

/* --- GRADIENT TEXT --- */
.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- BOUTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 4px 16px rgba(220, 38, 38, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.4);
}

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

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

.btn-large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

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

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

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

.logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    line-height: 1;
}

.logo .logo-mark {
    height: 40px;
    width: auto;
    display: block;
    object-fit: contain;
    transition: transform 0.25s ease;
}

.logo:hover .logo-mark {
    transform: scale(1.04);
}

@media (max-width: 480px) {
    .logo .logo-mark {
        height: 34px;
    }
}

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

.nav-links a {
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 500;
    color: var(--text-light);
}

.nav-links a:hover,
.nav-links a.active {
    background: var(--gradient);
    color: white;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text);
    padding: 8px;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #FEF2F2 0%, #FFFFFF 100%);
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: var(--gradient);
    top: -100px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--accent);
    bottom: 10%;
    left: -50px;
    animation: float 6s ease-in-out infinite reverse;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--secondary);
    top: 40%;
    right: 20%;
    animation: float 10s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #92400e;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 24px;
    animation: fadeInDown 0.6s ease, badgePulse 2.5s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4); }
    50% { box-shadow: 0 0 16px 6px rgba(245, 158, 11, 0.25), 0 0 0 12px rgba(245, 158, 11, 0.1); }
}

.hero-badge i {
    color: #f59e0b;
    animation: badgeStarSpin 2.5s ease-in-out infinite;
}

@keyframes badgeStarSpin {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.3) rotate(15deg); }
    50% { transform: scale(1) rotate(0deg); }
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
}

.hero-headline {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
    animation: fadeInUp 0.9s ease;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
    animation: fadeInUp 1.2s ease;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    animation: fadeInUp 1.4s ease;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* ========================================
   SECTIONS COMMUNES
   ======================================== */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 12px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   SERVICES PREVIEW (Accueil)
   ======================================== */
.services-preview {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

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

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

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FEF2F2, #FEE2E2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--primary);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--gradient);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.service-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.service-link:hover {
    gap: 12px;
}

.service-link i {
    transition: var(--transition);
}

.service-link:hover i {
    transform: translateX(4px);
}

/* ========================================
   POURQUOI NOUS
   ======================================== */
/* ========================================
   TIKTOK SECTION
   ======================================== */
.tiktok-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.tiktok-link {
    color: var(--primary);
    font-weight: 600;
}

.tiktok-link:hover {
    text-decoration: underline;
}

.tiktok-grid {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.tiktok-card {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 9 / 16;
    position: relative;
    width: 200px;
    flex-shrink: 0;
}

.tiktok-card iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: var(--radius);
}

@media (max-width: 992px) {
    .tiktok-grid {
        flex-wrap: wrap;
    }
    .tiktok-card {
        width: 180px;
    }
}

@media (max-width: 576px) {
    .tiktok-card {
        width: 150px;
    }
}

/* ========================================
   AVIS CLIENTS CARROUSEL
   ======================================== */
.reviews-section {
    padding: 100px 0;
    background: white;
    overflow: hidden;
}

.reviews-slider {
    overflow: hidden;
    margin-top: 10px;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent 0, black 60px, black calc(100% - 60px), transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, black 60px, black calc(100% - 60px), transparent 100%);
}

.reviews-track {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: reviewsMarquee 90s linear infinite;
    will-change: transform;
}

.reviews-slider:hover .reviews-track,
.reviews-track:focus-within {
    animation-play-state: paused;
}

@keyframes reviewsMarquee {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-50% - 8px)); }
}

@media (prefers-reduced-motion: reduce) {
    .reviews-track {
        animation: none;
    }
}

.review-card {
    min-width: 240px;
    max-width: 240px;
    background: var(--bg-light);
    padding: 20px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 180px;
}

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

.review-stars {
    color: #f59e0b;
    font-size: 0.8rem;
    margin-bottom: 10px;
    display: flex;
    gap: 2px;
}

.review-text {
    font-size: 0.85rem;
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 14px;
    font-style: italic;
    white-space: normal;
    word-wrap: break-word;
    flex-grow: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.8rem;
}

.review-author img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.reviews-controls {
    display: none;
}

.review-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: white;
    cursor: pointer;
    font-size: 1rem;
    color: var(--text);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-btn:hover {
    background: var(--gradient);
    color: white;
    border-color: transparent;
}

@media (max-width: 768px) {
    .review-card {
        min-width: 220px;
        max-width: 220px;
    }
}

@media (max-width: 480px) {
    .review-card {
        min-width: 200px;
        max-width: 200px;
    }
}

/* ========================================
   LAISSER UN AVIS
   ======================================== */
.leave-review {
    padding: 30px 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #FEF2F2 100%);
}

.leave-review-card {
    text-align: center;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 30px 40px;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    transition: var(--transition);
}

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


.leave-review-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4285f4, #34a853);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
    animation: badgePulse 2.5s ease-in-out infinite;
    box-shadow: 0 4px 16px rgba(66, 133, 244, 0.3);
}

.leave-review-card h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.leave-review-card p {
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.6;
}

.leave-review-stars {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 28px;
}

.leave-review-stars i {
    font-size: 2rem;
    color: #fbbc05;
    transition: transform 0.2s;
    cursor: pointer;
    animation: starPop 0.4s ease both;
}

.leave-review-stars i:nth-child(1) { animation-delay: 0.1s; }
.leave-review-stars i:nth-child(2) { animation-delay: 0.2s; }
.leave-review-stars i:nth-child(3) { animation-delay: 0.3s; }
.leave-review-stars i:nth-child(4) { animation-delay: 0.4s; }
.leave-review-stars i:nth-child(5) { animation-delay: 0.5s; }

.leave-review-stars i:hover {
    transform: scale(1.3) rotate(15deg);
}

@keyframes starPop {
    0% { opacity: 0; transform: scale(0) rotate(-30deg); }
    60% { transform: scale(1.2) rotate(5deg); }
    100% { opacity: 1; transform: scale(1) rotate(0deg); }
}

.leave-review-btn {
    background: linear-gradient(135deg, #4285f4, #357ae8);
    border: none;
    font-size: 1.05rem;
    padding: 14px 32px;
}

.leave-review-btn:hover {
    background: linear-gradient(135deg, #357ae8, #2a6cd6);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(66, 133, 244, 0.4);
}

@media (max-width: 768px) {
    .leave-review-card { padding: 35px 24px; }
    .leave-review-card h2 { font-size: 1.4rem; }
    .leave-review-stars i { font-size: 1.6rem; }
}

/* ========================================
   POURQUOI NOUS
   ======================================== */
.why-us {
    padding: 100px 0;
}

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

.why-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: var(--radius);
    transition: var(--transition);
    border: 2px solid transparent;
    background: white;
    box-shadow: var(--shadow);
}

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

.why-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 4px 16px rgba(220, 38, 38, 0.3);
}

.why-item h3 {
    font-weight: 700;
    margin-bottom: 8px;
}

.why-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ========================================
   LOCALISATION & HORAIRES
   ======================================== */
.location-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

.hours-card,
.map-card {
    background: white;
    padding: 36px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 2px solid transparent;
    transition: var(--transition);
}

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

.hours-card h3,
.map-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary);
}

.hours-card h3 i,
.map-card h3 i {
    margin-right: 8px;
}

.hours-list {
    list-style: none;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2px 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
}

.hours-list li span:first-child {
    font-weight: 600;
    white-space: nowrap;
}

.hours-list li span:last-child {
    text-align: right;
    white-space: nowrap;
}

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

.hours-list li.closed {
    color: #ef4444;
    font-weight: 600;
}

.map-card p {
    color: var(--text-light);
    margin-bottom: 16px;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    padding: 80px 0;
    background: var(--gradient);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -5%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-section h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.cta-section p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-section .btn-primary {
    background: white;
    color: var(--primary);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.cta-section .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.cta-section .btn-outline {
    border-color: white;
    color: white;
}

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

/* ========================================
   PAGE HEADER (Services & Contact)
   ======================================== */
.page-header {
    padding: 80px 0 80px;
    text-align: center;
    background: linear-gradient(180deg, #FEF2F2 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

.page-header-compact {
    padding: 15px 0 8px;
}

.page-header-compact h1 {
    font-size: 1.8rem;
    margin-bottom: 0;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.page-header p {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto;
    padding: 0 16px;
}

/* ========================================
   SERVICES DETAIL (Page Services)
   ======================================== */
.service-detail {
    padding: 80px 0;
}

.service-detail-alt {
    background: var(--bg-light);
}

.detail-header {
    text-align: center;
    margin-bottom: 50px;
}

.detail-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.2rem;
    color: white;
    box-shadow: var(--shadow-lg);
}

.detail-header h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.detail-header p {
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Grille réparations */
.repair-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.repair-item {
    background: white;
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.repair-item:hover {
    border-left-color: var(--primary);
    transform: translateX(4px);
}

.repair-icon {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.repair-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.repair-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Vente features */
.sale-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.sale-item {
    background: white;
    padding: 40px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.sale-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.sale-item i {
    font-size: 2.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.sale-item h3 {
    font-weight: 700;
    margin-bottom: 8px;
}

.sale-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Accessoires tags */
.accessories-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.accessory-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 16px 28px;
    border-radius: 50px;
    box-shadow: var(--shadow);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    cursor: default;
}

.accessory-tag i {
    color: var(--primary);
    font-size: 1.1rem;
}

.accessory-tag:hover {
    background: var(--gradient);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.accessory-tag:hover i {
    color: white;
}

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-section {
    padding: 80px 0;
}

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

.contact-info-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: var(--radius);
    margin-bottom: 24px;
}

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

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

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

.info-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.info-item h3 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.info-item p {
    font-weight: 500;
}

.info-item a {
    color: var(--primary);
    font-weight: 600;
}

.info-item a:hover {
    text-decoration: underline;
}

.contact-hours-card {
    background: var(--bg-light);
    padding: 24px 30px;
    border-radius: var(--radius);
    margin-bottom: 24px;
}

.contact-hours-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary);
}

.contact-social h3 {
    font-weight: 700;
    margin-bottom: 12px;
}

.social-links-large a {
    width: 52px;
    height: 52px;
    font-size: 1.3rem;
}

/* Formulaire */
.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact-form-wrapper h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 28px;
}

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

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

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 6px;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
    background: var(--bg-light);
}

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

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

/* Options d'envoi formulaire */
.send-options {
    display: flex;
    gap: 12px;
}

.btn-send-option {
    flex: 1;
    justify-content: center;
}

.btn-sms-only {
    display: none;
}

@media (max-width: 768px) {
    .btn-sms-only {
        display: inline-flex;
    }

    .send-options {
        flex-direction: column;
    }
}

/* Map pleine largeur */
.map-full {
    width: 100%;
    line-height: 0;
}

.map-full iframe {
    width: 100%;
}

/* ========================================
   BOUTIQUE
   ======================================== */
.shop-filter {
    padding: 30px 0;
    background: white;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    border-radius: 50px;
    border: 2px solid var(--border);
    background: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient);
    color: white;
    border-color: transparent;
}

.shop-section {
    padding: 60px 0;
}

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

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

.product-card {
    background: white;
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: visible;
    border: 2px solid transparent;
}

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

.product-badge.badge-promo {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    animation: promoPulse 1.5s ease-in-out infinite;
}

@keyframes promoPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.product-badge {
    position: absolute;
    top: -12px;
    right: -12px;
    z-index: 10;
    background: var(--gradient);
    color: white;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

.product-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-image .fallback-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: #333;
}

.product-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.product-specs {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 14px;
}

.product-grades {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
}

/* Variante "prix unique" — affichage centré, plus large */
.product-grades-single {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 14px 18px;
    background: linear-gradient(135deg, #fff5f5 0%, #fef2f2 100%);
    border: 1px solid rgba(220, 38, 38, 0.12);
    border-radius: 14px;
    min-height: 56px;
}

.grade-price-single {
    font-weight: 800;
    font-size: 1.55rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.grade-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 14px;
    background: #e9ecf0;
    border-radius: 50px;
}

.grade-price {
    font-weight: 800;
    font-size: 0.95rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.grade-item .tarif-badge {
    min-width: 80px;
    font-size: 0.65rem;
    padding: 3px 10px;
}

.price-from {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    background: none;
    -webkit-text-fill-color: var(--text-light);
    color: var(--text-light);
    margin-bottom: 2px;
}

.product-price {
    font-size: 1.1rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.product-colors {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-bottom: 12px;
}

.color-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #e2e8f0;
    transition: var(--transition);
    cursor: default;
}

.color-dot:hover {
    transform: scale(1.3);
    border-color: var(--primary);
}

.product-card .btn {
    padding: 10px 20px;
    font-size: 0.85rem;
}

@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   TARIFS REPARATION
   ======================================== */
.tarifs-selector {
    padding: 30px 0 60px;
    background: white;
}

.tarifs-selector .container {
    position: relative;
    z-index: 1;
}

/* Sélection marque */
.brand-selection {
    padding: 60px 0 80px;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.brand-card-contact {
    grid-column: 3;
}

.brand-card {
    background: white;
    border-radius: var(--radius);
    padding: 40px 24px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    min-height: 160px;
}

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

/* Carte Autre marque */
.brand-card-contact {
    background: linear-gradient(135deg, #FEF2F2, #FEE2E2);
    flex-direction: column;
    gap: 6px;
    padding: 24px 20px;
}

.brand-contact-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 4px;
}

.brand-contact-title {
    font-weight: 700 !important;
    font-size: 1rem !important;
    color: var(--text) !important;
}

.brand-contact-sub {
    font-size: 0.7rem !important;
    color: var(--text-light) !important;
    font-weight: 400 !important;
    line-height: 1.4;
}

.brand-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
    padding: 6px 16px;
    background: var(--gradient);
    color: white !important;
    border-radius: 50px;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
}

.brand-card-contact:hover {
    background: var(--gradient);
}

.brand-card-contact:hover .brand-contact-icon,
.brand-card-contact:hover .brand-contact-title,
.brand-card-contact:hover .brand-contact-sub {
    color: white !important;
}

.brand-card-contact:hover .brand-contact-btn {
    background: white;
    color: var(--primary) !important;
}

.brand-logo {
    width: auto;
    height: 100px;
    max-width: 220px;
    object-fit: contain;
    transition: var(--transition);
    opacity: 0.5;
}

.brand-card:hover .brand-logo {
    opacity: 0.75;
}

.brand-logo-samsung {
    height: 140px;
    max-width: 280px;
}

.page-header .back-to-brands {
    margin-bottom: 16px;
}

.back-to-brands {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    color: var(--primary);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 8px 0;
    margin-bottom: 16px;
    transition: var(--transition);
}

.back-to-brands:hover {
    color: var(--primary-dark);
    transform: translateX(-4px);
}

@media (max-width: 768px) {
    .brand-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .brand-card {
        padding: 24px 12px;
        min-height: 100px;
    }

    .brand-card i {
        font-size: 2rem;
    }

    .brand-card img {
        max-height: 70px;
    }

    .brand-logo {
        height: 70px;
    }

    .brand-logo-samsung {
        height: 90px;
    }

    .brand-card-contact {
        grid-column: 1 / -1;
        flex-direction: row;
        min-height: auto;
        padding: 16px 20px;
        gap: 12px;
    }

    .brand-card-contact .brand-contact-sub {
        display: none;
    }
}

/* Barre de recherche modèle */
.search-model-wrapper {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.model-search {
    width: 100%;
    padding: 16px 20px 16px 48px;
    border: 2px solid var(--border);
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 1.05rem;
    color: var(--text);
    background: white;
    transition: var(--transition);
}

.model-search:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1);
}

.model-search::placeholder {
    color: #9ca3af;
}

.search-model-wrapper .search-hint {
    text-align: center;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
    animation: fadeInDown 0.5s ease;
}

.search-model-wrapper .search-hint i {
    margin-right: 6px;
    color: var(--primary);
}

.model-search.typing-animation {
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0); }
    50% { box-shadow: 0 0 0 8px rgba(220, 38, 38, 0.12); }
}

.search-input-wrap {
    position: relative;
}

.search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 1rem;
    z-index: 2;
    pointer-events: none;
}

.search-results {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: white;
    border-radius: var(--radius);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    max-height: 350px;
    overflow-y: auto;
    display: none;
    z-index: 100;
}

.search-results.active {
    display: block;
}

.search-result-item {
    padding: 14px 20px;
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 1px solid var(--border);
    font-weight: 500;
    font-size: 0.95rem;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: linear-gradient(135deg, #FEF2F2, #FEE2E2);
}

.search-result-item mark {
    background: rgba(220, 38, 38, 0.15);
    color: var(--primary);
    border-radius: 2px;
    padding: 0 2px;
    font-weight: 700;
}

.search-no-result {
    padding: 20px;
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Grille visuelle modèles */
.models-visual-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 30px;
    max-width: 100%;
}

.model-visual-card {
    background: white;
    border-radius: var(--radius);
    padding: 30px 16px 20px;
    box-shadow: var(--shadow);
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

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

.model-visual-card img {
    width: auto;
    height: 140px;
    object-fit: contain;
    margin-bottom: 14px;
}

.model-visual-card span {
    display: block;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text);
}

@media (max-width: 992px) {
    .models-visual-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .models-visual-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .model-visual-card {
        padding: 20px 12px 16px;
    }

    .model-visual-card img {
        height: 100px;
    }

    .model-visual-card span {
        font-size: 0.85rem;
    }

    .find-model-card {
        grid-column: 1 / -1;
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 14px 20px;
        gap: 12px;
    }

    .find-model-card .find-icon-wrap {
        width: 44px;
        height: 44px;
        margin: 0;
        flex-shrink: 0;
    }

    .find-model-card .find-icon-phone {
        font-size: 1.6rem;
    }

    .find-model-card .find-icon-search {
        font-size: 0.7rem;
    }

    .find-model-card span {
        margin-bottom: 0;
        text-align: left;
    }

    .find-subtitle {
        display: none;
    }
}

@media (max-width: 480px) {
    .models-visual-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .model-visual-card img {
        height: 80px;
    }
}

/* Trouvez mon modèle - carte */
.find-model-card {
    background: linear-gradient(135deg, #FEF2F2, #FEE2E2);
    border-radius: var(--radius);
    padding: 30px 16px 20px;
    box-shadow: var(--shadow);
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid var(--primary);
}

.find-model-card:hover {
    background: var(--gradient);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.find-model-card:hover span,
.find-model-card:hover small,
.find-model-card:hover .find-icon-search,
.find-model-card:hover .find-icon-phone {
    color: white;
}

.find-icon-wrap {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.find-icon-phone {
    font-size: 3rem;
    color: var(--primary);
    transition: var(--transition);
}

.find-icon-search {
    position: absolute;
    bottom: 5px;
    right: 5px;
    font-size: 1.3rem;
    color: var(--secondary);
    background: white;
    border-radius: 50%;
    padding: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.find-model-card span {
    display: block;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text);
    margin-bottom: 4px;
}

.find-subtitle {
    display: block;
    font-size: 0.7rem;
    color: var(--text-light);
    font-weight: 400;
}

/* Trouvez mon modèle - modal */
.find-model-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 16px;
    box-sizing: border-box;
}

.find-model-overlay.active {
    display: flex;
}

.find-model-modal {
    background: white;
    border-radius: 16px;
    max-width: 500px;
    width: 100%;
    padding: 24px 20px;
    position: relative;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.find-model-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 30px;
    height: 30px;
    background: var(--bg-light);
    border: none;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.find-model-close:hover {
    background: #e2e8f0;
    color: var(--text);
}

.find-model-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.find-tab {
    padding: 8px 18px;
    border-radius: 50px;
    border: none;
    background: var(--bg-light);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-light);
}

.find-tab:hover {
    background: #e2e8f0;
}

.find-tab.active {
    background: var(--gradient);
    color: white;
}

.find-model-modal h2 {
    font-size: 1.3rem;
    margin-bottom: 16px;
    line-height: 1.3;
    font-weight: 800;
}

.find-step {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 10px;
    padding: 12px;
    background: var(--bg-light);
    border-radius: 16px;
    transition: var(--transition);
}

.find-step:hover {
    background: #FEF2F2;
}

.find-step:last-child {
    margin-bottom: 0;
}

.find-step-text {
    flex: 1;
}

.find-step-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 800;
    color: white;
    letter-spacing: 1px;
    margin-bottom: 8px;
    background: var(--gradient);
    padding: 3px 10px;
    border-radius: 50px;
}

.find-step-text p {
    font-size: 0.82rem;
    color: var(--text);
    line-height: 1.6;
}

.find-step-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--primary);
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

@media (max-width: 480px) {
    .find-model-modal {
        padding: 30px 20px;
    }

    .find-step {
        flex-direction: column;
        text-align: center;
    }
}

.model-select {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 14px 20px;
    border: 2px solid var(--border);
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text);
    background: white;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%232563eb' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    transition: var(--transition);
    text-align: center;
    text-align-last: center;
}

.model-select:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1);
}

.model-select:hover {
    border-color: var(--primary);
}

.model-select optgroup {
    font-weight: 700;
    color: var(--primary);
}

.model-select option {
    font-weight: 500;
    color: var(--text);
    padding: 8px;
}

.tarifs-list {
    padding: 20px 0 80px;
    position: relative;
    overflow: hidden;
}

.tarifs-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.tarifs-list .container {
    position: relative;
    z-index: 1;
}

.tarifs-bg-shapes .shape-1 {
    width: 400px;
    height: 400px;
    top: 5%;
    right: -100px;
}

.tarifs-bg-shapes .shape-2 {
    width: 300px;
    height: 300px;
    bottom: 20%;
    left: -80px;
}

.tarifs-bg-shapes .shape-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    right: 15%;
}

.tarifs-bg-shapes .shape-4 {
    width: 150px;
    height: 150px;
    background: var(--primary-light);
    top: 15%;
    left: 10%;
    animation: float 9s ease-in-out infinite;
}

.tarifs-bg-shapes .shape-5 {
    width: 250px;
    height: 250px;
    background: var(--secondary);
    bottom: 5%;
    right: 5%;
    animation: float 7s ease-in-out infinite reverse;
}

.tarifs-bg-shapes .shape-6 {
    width: 120px;
    height: 120px;
    background: var(--accent);
    top: 35%;
    left: -30px;
    animation: float 11s ease-in-out infinite;
}

.tarifs-bg-shapes .shape-7 {
    width: 180px;
    height: 180px;
    background: var(--gradient);
    bottom: 30%;
    right: -50px;
    animation: float 8s ease-in-out infinite reverse;
}

.tarifs-model-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 30px;
    text-align: center;
}

.tarifs-model-title i {
    margin-right: 8px;
}

.tarifs-coming {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    padding: 60px 0;
}

/* Onglets tarifs */
.tarifs-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 30px;
}

.tarifs-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 18px 12px;
    background: white;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    box-shadow: var(--shadow);
}

.tarifs-tab i {
    font-size: 1.5rem;
    transition: var(--transition);
}

.tarifs-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.15);
}

.tarifs-tab.active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

.tarifs-tab.active i {
    color: white;
}

.tarifs-tab-all {
    grid-column: 1 / -1;
    flex-direction: row;
    gap: 10px;
    padding: 14px 12px;
}

.tarifs-tab-all i {
    font-size: 1.2rem;
}

.tarifs-panel {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tarifs-panel.active {
    display: block;
}

@media (max-width: 768px) {
    .tarifs-tabs {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    .tarifs-tab {
        padding: 14px 8px;
        font-size: 0.75rem;
    }
    .tarifs-tab i {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .tarifs-tabs {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }
    .tarifs-tab {
        padding: 12px 6px;
        font-size: 0.7rem;
    }
    .tarifs-tab i {
        font-size: 1rem;
    }
}

.tarifs-category {
    margin-bottom: 30px;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.tarifs-cat-title {
    padding: 22px 24px;
    background: linear-gradient(135deg, #FEF2F2, #FEE2E2);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 12px;
}

.tarifs-cat-title i {
    font-size: 1.3rem;
}

.tarif-row {
    display: flex;
    align-items: center;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
    gap: 16px;
}

.tarif-row:last-child {
    border-bottom: none;
}

.tarif-row:hover {
    background: linear-gradient(135deg, #FEF2F2, #FEE2E2);
    transform: scale(1.01);
}

.tarif-info {
    flex: 1;
}

.tarif-name {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.tarif-desc {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
}

.tarif-warning {
    color: #dc2626;
    font-weight: 600;
    font-size: 0.75rem;
}

.tarif-badge {
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    min-width: 100px;
    text-align: center;
    display: inline-block;
    flex-shrink: 0;
}

.badge-original {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #92400e;
}

.badge-premium {
    background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
    color: #3730a3;
}

.badge-eco {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    color: #065f46;
}

.badge-standard {
    background: linear-gradient(135deg, #dbeafe, #93c5fd);
    color: #1e40af;
}

.badge-excellence {
    background: linear-gradient(135deg, #fef3c7, #fbbf24);
    color: #78350f;
}

/* Bandeau "Stock variable" cliquable WhatsApp — au-dessus de la grille iPhone */
.stock-info-banner {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 880px;
    margin: 0 auto 32px;
    padding: 16px 22px;
    background: linear-gradient(135deg, #fef2f2 0%, #ffffff 100%);
    border: 1px solid rgba(220, 38, 38, 0.12);
    border-left: 4px solid var(--primary);
    border-radius: 14px;
    text-decoration: none;
    color: var(--text);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    line-height: 1.45;
    box-shadow: 0 2px 12px rgba(220, 38, 38, 0.04);
    transition: var(--transition);
}

.stock-info-banner:hover,
.stock-info-banner:focus-visible {
    background: linear-gradient(135deg, #fee9e9 0%, #fff5f5 100%);
    border-left-color: var(--primary-dark);
    box-shadow: 0 6px 24px rgba(220, 38, 38, 0.12);
    transform: translateY(-1px);
}

.stock-info-banner:hover .stock-info-arrow,
.stock-info-banner:focus-visible .stock-info-arrow {
    transform: translateX(4px);
}

.stock-info-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    line-height: 1;
}

.stock-info-text {
    flex: 1;
    min-width: 0;
}

.stock-info-text strong {
    color: var(--primary);
    font-weight: 700;
}

.stock-info-arrow {
    flex-shrink: 0;
    font-size: 1.4rem;
    color: var(--primary);
    font-weight: 700;
    transition: transform 0.25s ease;
}

@media (max-width: 600px) {
    .stock-info-banner {
        gap: 12px;
        padding: 14px 16px;
        font-size: 0.88rem;
    }
    .stock-info-icon {
        font-size: 1.3rem;
    }
    .stock-info-arrow {
        display: none;
    }
}

/* Badges capacité Go (boutique) — palette premium par palier */
.badge-rose {
    background: linear-gradient(135deg, #fce7f3, #f9a8d4);
    color: #831843;
}

.badge-onyx {
    background: linear-gradient(135deg, #1e1b4b, #312e81, #0a0a0a);
    color: #ffffff;
    position: relative;
}

.badge-onyx::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent 60%);
    pointer-events: none;
}

/* Tabular nums pour aligner les chiffres dans les pastilles capacité */
.badge-eco, .badge-standard, .badge-excellence,
.badge-premium, .badge-rose, .badge-onyx {
    font-variant-numeric: tabular-nums;
}

.badge-saphir {
    background: linear-gradient(135deg, #60a5fa, #1e40af, #1e3a5f);
    color: #ffffff;
    position: relative;
}


.tarif-price {
    font-size: 1.15rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
    min-width: 90px;
    text-align: right;
}

.tarif-price-tbd {
    font-size: 0.85rem;
    font-weight: 600;
    background: none;
    -webkit-text-fill-color: var(--text-light);
    color: var(--text-light);
    font-style: italic;
}

@media (max-width: 768px) {
    .tarif-row {
        flex-wrap: wrap;
        gap: 8px;
        padding: 14px 16px;
    }

    .tarif-info {
        width: 100%;
    }

    .tarif-badge {
        order: 1;
    }

    .tarif-price {
        order: 2;
        margin-left: auto;
    }

    .model-tabs {
        gap: 6px;
    }

    .model-tab {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--bg-dark);
    color: #cbd5e1;
    padding: 60px 0 0;
}

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

.footer-logo {
    font-size: 1.4rem;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
}

.footer-logo i {
    color: var(--primary-light);
}

.footer-logo span {
    color: var(--primary-light);
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-col h4 {
    color: white;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    padding: 6px 0;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col ul li i {
    color: var(--primary-light);
    width: 16px;
}

.footer-col ul a:hover {
    color: white;
}

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

.social-links a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gradient);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    font-size: 0.85rem;
    color: #94a3b8;
}

/* ========================================
   COOKIE CONSENT
   ======================================== */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    max-width: 500px;
    background: white;
    border-radius: var(--radius);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    padding: 24px;
    z-index: 1500;
    animation: fadeInUp 0.5s ease;
}

.cookie-banner.active {
    display: block;
}

.cookie-content {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 16px;
}

.cookie-icon {
    font-size: 1.8rem;
    color: #f59e0b;
    flex-shrink: 0;
    margin-top: 2px;
}

.cookie-content p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 80px;
        padding: 18px;
    }
}

/* ========================================
   WHATSAPP FLOTTANT
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
    color: white;
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.6), 0 0 0 12px rgba(37, 211, 102, 0.1); }
}

/* Bouton Appeler flottant mobile */
.call-float {
    display: none;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 16px;
        right: 16px;
        width: 54px;
        height: 54px;
        font-size: 1.6rem;
    }

    .call-float {
        display: flex;
        position: fixed;
        bottom: 16px;
        left: 16px;
        width: 54px;
        height: 54px;
        background: var(--gradient);
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.4rem;
        box-shadow: 0 4px 16px rgba(220, 38, 38, 0.4);
        z-index: 999;
        transition: var(--transition);
        animation: callPulse 2s ease-in-out infinite;
    }

    .call-float:hover {
        transform: scale(1.1);
        color: white;
    }

    @keyframes callPulse {
        0%, 100% { box-shadow: 0 4px 16px rgba(220, 38, 38, 0.4); }
        50% { box-shadow: 0 4px 24px rgba(220, 38, 38, 0.6), 0 0 0 12px rgba(220, 38, 38, 0.1); }
    }
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

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

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

/* Tablette */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .services-grid,
    .repair-grid,
    .sale-features {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

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

/* Mobile */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        align-items: center;
        padding: 20px 16px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        gap: 8px;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 8px 16px;
        border-radius: 6px;
        font-size: 1rem;
        text-align: center;
    }

    .nav-toggle {
        display: block;
    }

    .hero {
        min-height: auto;
        padding: 60px 0 40px;
    }

    .hero h1 {
        font-size: 1.8rem;
        word-break: break-word;
    }

    .hero-headline {
        font-size: 1.1rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .services-grid,
    .repair-grid,
    .sale-features {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

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

    .cta-section h2 {
        font-size: 1.6rem;
    }

    .page-header {
        padding: 60px 0 40px;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 24px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Petit mobile */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.7rem;
    }

    .hero-badge {
        font-size: 0.78rem;
        padding: 6px 14px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

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

    .accessories-list {
        flex-direction: column;
    }

    .accessory-tag {
        justify-content: center;
    }

    .leave-review-card {
        padding: 24px 16px;
    }

    .leave-review-stars i {
        font-size: 1.3rem;
    }

    .tarifs-tab {
        padding: 10px 4px;
        font-size: 0.75rem;
    }

    .tarifs-tab i {
        font-size: 0.95rem;
    }

    .tarifs-tab-all {
        padding: 10px 12px;
    }
}

/* Ultra petit mobile (320px) */
@media (max-width: 360px) {
    .container {
        padding: 0 16px;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 5px 12px;
    }

    .leave-review-card {
        padding: 20px 12px;
    }

    .leave-review-stars i {
        font-size: 1.1rem;
    }

    .tiktok-card {
        width: 120px;
    }

    .tarifs-tabs {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }

    .tarifs-tab-all {
        grid-column: 1 / -1;
    }

    .product-badge {
        top: -6px;
        right: -6px;
        font-size: 0.7rem;
        padding: 4px 10px;
    }
}

/* ============================================================
   SAAPHONE PREMIUM — Additions (Hero vidéo, Exploded View, Luxe)
   ============================================================ */

/* --- Hero Aurora background (gradient mesh animé) --- */
.hero-aurora {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 20% 10%, rgba(220, 38, 38, 0.22) 0%, transparent 45%),
        radial-gradient(ellipse at 85% 80%, rgba(212, 175, 55, 0.10) 0%, transparent 50%),
        linear-gradient(180deg, #0A1628 0%, #152238 100%);
}

.aurora-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.65;
    mix-blend-mode: screen;
    will-change: transform;
}

.aurora-blob-1 {
    width: 620px;
    height: 620px;
    left: -120px;
    top: -140px;
    background: radial-gradient(circle, #DC2626 0%, transparent 70%);
    animation: auroraFloat 14s ease-in-out infinite;
}

.aurora-blob-2 {
    width: 520px;
    height: 520px;
    right: -100px;
    bottom: -120px;
    background: radial-gradient(circle, #991B1B 0%, transparent 70%);
    animation: auroraFloat 18s ease-in-out infinite reverse;
    animation-delay: -4s;
}

.aurora-blob-3 {
    width: 420px;
    height: 420px;
    left: 50%;
    top: 40%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(212, 175, 55, 0.35) 0%, transparent 70%);
    animation: auroraFloat 22s ease-in-out infinite;
    animation-delay: -8s;
    opacity: 0.4;
}

@keyframes auroraFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%      { transform: translate(60px, -40px) scale(1.08); }
    66%      { transform: translate(-50px, 50px) scale(0.95); }
}

.aurora-grain {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 256px;
    mix-blend-mode: overlay;
}

@media (prefers-reduced-motion: reduce) {
    .aurora-blob { animation: none; }
}

.hero.hero-premium {
    background: #0A1628;
    color: var(--text-on-dark);
    min-height: 100vh;
    padding-top: 80px;
}

.hero.hero-premium .hero-content {
    z-index: 2;
}

.hero.hero-premium h1 {
    color: var(--text-on-dark);
    text-shadow: 0 4px 32px rgba(0, 0, 0, 0.4);
}

.hero.hero-premium .hero-headline,
.hero.hero-premium .hero-subtitle {
    color: rgba(248, 250, 252, 0.92);
}

.hero.hero-premium .hero-badge {
    background: rgba(255, 255, 255, 0.12);
    color: #FFFFFF;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.hero.hero-premium .hero-badge i {
    color: var(--accent); /* or champagne */
}

.hero.hero-premium .stat-number {
    background: linear-gradient(135deg, #FFFFFF, #FCA5A5);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero.hero-premium .stat-label {
    color: rgba(248, 250, 252, 0.72);
}

.hero.hero-premium .gradient-text {
    background: linear-gradient(135deg, #DC2626, #F87171);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero.hero-premium .btn-outline {
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.05);
}

.hero.hero-premium .btn-outline:hover {
    background: #FFFFFF;
    color: var(--text);
    border-color: #FFFFFF;
}

/* Masquer les shapes bleues sur hero premium (on a la vidéo) */
.hero.hero-premium .hero-bg-shapes {
    display: none;
}

/* --- Navbar glassmorphism premium --- */
.navbar {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(10, 22, 40, 0.06);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 8px 32px rgba(10, 22, 40, 0.08);
}

/* --- Section Exploded View (démontage iPhone façon Apple atelier) --- */
.exploded-section {
    padding: 140px 0;
    background: var(--bg-dark);
    color: var(--text-on-dark);
    position: relative;
    overflow: hidden;
}

.exploded-section::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(ellipse, rgba(220, 38, 38, 0.12), transparent 60%);
    pointer-events: none;
    filter: blur(40px);
}

.exploded-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.03) 1px, transparent 0);
    background-size: 40px 40px;
    pointer-events: none;
}

.exploded-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 20px;
}

.exploded-eyebrow::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--accent);
}

.exploded-section .section-title {
    color: var(--text-on-dark);
    font-size: clamp(2rem, 5vw, 3.8rem);
    letter-spacing: -0.045em;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.exploded-section .section-subtitle {
    color: var(--text-muted-dark);
    font-size: 1.15rem;
    max-width: 620px;
}

/* === Showcase iPhone 17 Pro — tabs style Apple (Design/Caméra/Puce/Batterie/Châssis) === */
.showcase-stage {
    position: relative;
    margin: 70px auto 0;
    max-width: 1100px;
    z-index: 2;
    border-radius: 32px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(20, 30, 50, 0.7) 0%, rgba(10, 15, 28, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

/* Container des panneaux — actif en flow, inactifs en absolute */
.showcase-panels {
    position: relative;
}

/* Panneaux : affichage par défaut (utilisé par l'actif) */
.showcase-panel {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 60px 70px 40px;
    transition: opacity 0.5s ease;
}

/* Panneaux inactifs : superposés invisibles */
.showcase-panel:not(.is-active) {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    pointer-events: none;
}

.showcase-panel.is-active {
    opacity: 1;
}

.showcase-visual {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: #000;
    aspect-ratio: 16 / 10;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.showcase-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
    transition: transform 8s ease-out;
}

.showcase-panel.is-active .showcase-visual img {
    transform: scale(1);
}

.showcase-text {
    padding: 10px 0;
}

.showcase-kicker {
    display: inline-block;
    font-size: 0.72rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 18px;
    padding: 6px 14px;
    border: 1px solid rgba(220, 38, 38, 0.35);
    border-radius: 100px;
    background: rgba(220, 38, 38, 0.08);
}

.showcase-title {
    font-family: 'Satoshi', sans-serif;
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    font-weight: 900;
    letter-spacing: -0.035em;
    line-height: 1.05;
    color: #FFFFFF;
    margin: 0 0 18px;
}

.showcase-desc {
    font-size: 1.02rem;
    line-height: 1.6;
    color: var(--text-muted-dark);
    margin: 0;
    max-width: 440px;
}

/* === Tabs en bas (style Apple) === */
.showcase-tabs {
    display: flex;
    justify-content: center;
    gap: 4px;
    padding: 16px 20px;
    margin: 0 30px 30px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 100px;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.showcase-tab {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    background: transparent;
    border: none;
    border-radius: 100px;
    color: var(--text-muted-dark);
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.2s ease;
    white-space: nowrap;
}

.showcase-tab i {
    font-size: 0.95rem;
    color: inherit;
}

.showcase-tab:hover {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.04);
}

.showcase-tab.is-active {
    background: var(--accent);
    color: #FFFFFF;
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.35);
}

.showcase-tab.is-active i {
    color: #FFFFFF;
}

.showcase-tab:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

/* === Footer bouton "Voir notre savoir-faire" === */
.exploded-footer {
    text-align: center;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.exploded-footer .btn-outline {
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.4);
}

.exploded-footer .btn-outline:hover {
    background: var(--primary);
    border-color: var(--primary);
}

@media (prefers-reduced-motion: reduce) {
    .showcase-panel,
    .showcase-visual img {
        transition: opacity 0.3s ease !important;
        transform: none !important;
    }
}

/* === Responsive === */
@media (max-width: 960px) {
    .showcase-panel {
        grid-template-columns: 1fr;
        padding: 40px 36px 24px;
        gap: 28px;
    }
    .showcase-visual {
        aspect-ratio: 16 / 9;
    }
    .showcase-text {
        text-align: center;
        padding: 0;
    }
    .showcase-desc {
        margin: 0 auto;
    }
    .showcase-tabs {
        margin: 0 20px 24px;
        padding: 10px 12px;
        gap: 2px;
        overflow-x: auto;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .showcase-tabs::-webkit-scrollbar { display: none; }
    .showcase-tab {
        padding: 10px 16px;
        font-size: 0.82rem;
    }
}

@media (max-width: 560px) {
    .showcase-stage {
        border-radius: 24px;
        margin: 50px auto 0;
    }
    .showcase-panel {
        padding: 32px 24px 20px;
    }
    .showcase-visual {
        border-radius: 18px;
    }
    .showcase-tab span {
        display: none;
    }
    .showcase-tab {
        padding: 12px 14px;
    }
    .showcase-tab i {
        font-size: 1.05rem;
    }
}

/* --- Section Video Proof (conversations WhatsApp clients) --- */
.video-proof-section {
    padding: 120px 0;
    background: var(--bg-dark);
    color: var(--text-on-dark);
    position: relative;
    overflow: hidden;
}

.video-proof-section::before {
    content: '';
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(ellipse, rgba(220, 38, 38, 0.10), transparent 60%);
    pointer-events: none;
    filter: blur(60px);
}

.video-proof-header {
    text-align: center;
    position: relative;
    z-index: 2;
    margin-bottom: 60px;
}

.video-proof-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 20px;
}

.video-proof-eyebrow::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--accent);
}

.video-proof-section .section-title {
    color: var(--text-on-dark);
    font-size: clamp(2rem, 5vw, 3.4rem);
    letter-spacing: -0.045em;
}

.video-proof-section .section-subtitle {
    color: var(--text-muted-dark);
    font-size: 1.1rem;
    max-width: 620px;
}

/* Carte photo boutique (preuve d'existence avant la vidéo) */
.boutique-photo-card {
    position: relative;
    max-width: 520px;
    margin: 0 auto 56px;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(10, 22, 40, 0.18), 0 0 0 1px rgba(220, 38, 38, 0.12);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
    z-index: 2;
}

.boutique-photo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 80px rgba(10, 22, 40, 0.22), 0 0 0 1px rgba(220, 38, 38, 0.25);
}

.boutique-photo-card img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
}

.boutique-photo-card figcaption {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 24px;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    border-top: 1px solid rgba(10, 22, 40, 0.06);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: var(--text);
    text-align: center;
    line-height: 1.4;
}

.boutique-photo-card figcaption strong {
    color: var(--primary);
    font-weight: 600;
}

.boutique-photo-pin {
    font-size: 1.1rem;
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .boutique-photo-card {
        max-width: 92%;
        margin-bottom: 40px;
        border-radius: 18px;
    }
    .boutique-photo-card figcaption {
        font-size: 0.88rem;
        padding: 14px 18px;
    }
}

.video-proof-wrapper {
    position: relative;
    max-width: 520px;
    margin: 0 auto;
    z-index: 2;
}

.video-proof-player {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
    border: 1px solid rgba(220, 38, 38, 0.35);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.06) inset;
    background: #000;
    aspect-ratio: 9 / 16;
    object-fit: cover;
}

.video-proof-glow {
    position: absolute;
    inset: -30px;
    z-index: -1;
    background:
        radial-gradient(circle at 30% 30%, rgba(220, 38, 38, 0.35), transparent 60%),
        radial-gradient(circle at 70% 70%, rgba(212, 175, 55, 0.15), transparent 60%);
    filter: blur(50px);
    pointer-events: none;
    border-radius: 50%;
}

@media (max-width: 640px) {
    .video-proof-section { padding: 80px 0; }
    .video-proof-wrapper { max-width: 360px; }
    .video-proof-player { border-radius: 18px; }
}

/* Stat avec suffixe "+" (évite le retour à la ligne dû à display:block) */
.stat-number.stat-plus::after {
    content: '+';
    display: inline;
    margin-left: 2px;
}

/* --- Divider en or champagne (touche luxe) --- */
.luxe-divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    margin: 20px auto;
    border: none;
}

/* ════════════════════════════════════════════════════════════════════════
   HERO MODES D'INTERVENTION (pastilles Sur place / À domicile / Voiture / Moto)
   ════════════════════════════════════════════════════════════════════════ */

.hero-modes {
    list-style: none;
    padding: 0;
    margin: 30px auto 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 640px;
}

.hero-modes li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 100px;
    color: var(--text-on-dark, #F8FAFC);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.hero-modes li:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(220, 38, 38, 0.4);
    transform: translateY(-2px);
}

.hero-modes li i {
    font-size: 0.95rem;
    color: var(--primary-light, #F87171);
}

/* Si le hero est sur fond clair (page-header style), adapter */
.page-header .hero-modes li,
section:not(.hero):not(.hero-premium):not(.zone-hero) > .container > .hero-modes li {
    background: rgba(220, 38, 38, 0.08);
    border-color: rgba(220, 38, 38, 0.25);
    color: var(--text, #0A1628);
}

@media (max-width: 640px) {
    .hero-modes {
        gap: 8px;
    }
    .hero-modes li {
        padding: 8px 14px;
        font-size: 0.82rem;
    }
}

/* ════════════════════════════════════════════════════════════════════════
   "4 FAÇONS D'INTERVENIR" — section services.html
   ════════════════════════════════════════════════════════════════════════ */

.intervene-modes {
    padding: 100px 0;
    background: var(--bg-light, #FAFAFA);
}

.intervene-modes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 40px auto 0;
}

.intervene-mode {
    padding: 34px 26px;
    background: #fff;
    border-radius: 22px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.3s ease,
                border-color 0.3s ease;
}

.intervene-mode:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(220, 38, 38, 0.25);
}

.intervene-mode-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(212, 175, 55, 0.1));
    color: var(--primary, #DC2626);
    font-size: 1.6rem;
}

.intervene-mode h3 {
    font-family: 'Satoshi', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text, #0A1628);
    margin: 0 0 10px;
}

.intervene-mode p {
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--text-light, #64748B);
    margin: 0;
}

/* ════════════════════════════════════════════════════════════════════════
   ZONES D'INTERVENTION (pages locales SEO)
   ════════════════════════════════════════════════════════════════════════ */

/* === Breadcrumb === */
.zone-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-muted-dark);
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.zone-breadcrumb a {
    color: var(--text-muted-dark);
    text-decoration: none;
    transition: color 0.2s ease;
}

.zone-breadcrumb a:hover {
    color: var(--text-on-dark);
}

.zone-breadcrumb span {
    color: rgba(255, 255, 255, 0.3);
}

/* === Hero localisée === */
.zone-hero {
    position: relative;
    background: var(--bg-dark);
    color: var(--text-on-dark);
    padding: 100px 0 80px;
    overflow: hidden;
}

.zone-hero-aurora {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.zone-hero .container {
    position: relative;
    z-index: 2;
}

.zone-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
    color: var(--primary-light);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 100px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.zone-hero h1 {
    font-size: clamp(2.2rem, 5.5vw, 4rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.05;
    margin: 0 0 24px;
    max-width: 900px;
    color: var(--text-on-dark);
}

.zone-hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.55;
    color: var(--text-muted-dark);
    max-width: 700px;
    margin: 0 0 36px;
}

.zone-hero-subtitle strong {
    color: var(--text-on-dark);
    font-weight: 700;
}

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

.zone-hero-ctas .btn-outline {
    color: var(--text-on-dark);
    border-color: rgba(255, 255, 255, 0.3);
}

.zone-hero-ctas .btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.5);
}

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

.zone-services .exploded-eyebrow {
    color: var(--primary);
}

.zone-services .exploded-eyebrow::before {
    background: var(--primary);
}

.zone-services .section-title {
    color: var(--text);
    margin-top: 12px;
}

.zone-services .section-subtitle {
    color: var(--text-light);
    max-width: 720px;
    margin: 0 auto 50px;
    text-align: center;
}

.zone-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
    max-width: 1100px;
    margin: 0 auto;
}

.zone-service {
    padding: 28px 24px;
    background: var(--bg-light);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 18px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.3s ease,
                border-color 0.3s ease;
}

.zone-service:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(220, 38, 38, 0.08);
    border-color: rgba(220, 38, 38, 0.2);
}

.zone-service h3 {
    font-family: 'Satoshi', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 8px;
    letter-spacing: -0.02em;
}

.zone-service p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

.zone-cta-inline {
    text-align: center;
    margin-top: 45px;
}

/* === Infos pratiques locales (3 cards) === */
.zone-info {
    padding: 90px 0;
    background: var(--bg-light);
}

.zone-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.zone-info-card {
    padding: 36px 28px;
    background: #fff;
    border-radius: 22px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04);
}

.zone-info-card i {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.zone-info-card h3 {
    font-family: 'Satoshi', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text);
    margin: 0 0 12px;
    letter-spacing: -0.02em;
}

.zone-info-card p {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.55;
    margin: 0 0 6px;
}

.zone-info-card p:last-child {
    margin-bottom: 0;
}

.zone-info-card .zone-info-sub {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 8px;
}

/* === Pourquoi SaaPhone depuis cette zone === */
.zone-why {
    padding: 100px 0;
    background: var(--bg);
}

.zone-why .section-title {
    text-align: center;
    color: var(--text);
    max-width: 900px;
    margin: 0 auto 50px;
}

.zone-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.zone-why-item {
    padding: 32px 26px;
    border-radius: 20px;
    background: var(--bg-light);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease;
}

.zone-why-item:hover {
    transform: translateY(-4px);
}

.zone-why-item i {
    font-size: 1.7rem;
    color: var(--primary);
    margin-bottom: 14px;
}

.zone-why-item h3 {
    font-family: 'Satoshi', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text);
    margin: 0 0 10px;
    letter-spacing: -0.02em;
}

.zone-why-item p {
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--text-light);
    margin: 0;
}

.zone-why-item a {
    color: var(--primary);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

/* === FAQ locale (accordéon) === */
.zone-faq {
    padding: 100px 0;
    background: var(--bg-light);
}

.zone-faq .section-title {
    text-align: center;
    color: var(--text);
    margin: 12px auto 40px;
}

.zone-faq-list {
    max-width: 820px;
    margin: 0 auto;
}

.zone-faq-item {
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.zone-faq-item[open] {
    border-color: rgba(220, 38, 38, 0.25);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.06);
}

.zone-faq-item summary {
    padding: 20px 50px 20px 24px;
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--text);
    cursor: pointer;
    list-style: none;
    position: relative;
    letter-spacing: -0.01em;
    transition: color 0.2s ease;
}

.zone-faq-item summary::-webkit-details-marker {
    display: none;
}

.zone-faq-item summary::after {
    content: '+';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 300;
    transition: transform 0.25s ease;
}

.zone-faq-item[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
}

.zone-faq-item summary:hover {
    color: var(--primary);
}

.zone-faq-item p {
    padding: 0 24px 22px;
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--text-light);
    margin: 0;
}

.zone-faq-item p a {
    color: var(--primary);
    text-decoration: underline;
}

/* ─── Zone : photo Wikipedia hero ─── */
.zone-photo {
    margin: 32px auto 0;
    max-width: 720px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(10, 22, 40, 0.18);
}

.zone-photo img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.zone-photo figcaption {
    padding: 12px 18px;
    font-size: 0.78rem;
    color: var(--text-light);
    background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
    text-align: center;
}

.zone-photo figcaption a {
    color: var(--primary);
    text-decoration: none;
}

.zone-photo figcaption a:hover {
    text-decoration: underline;
}

/* ─── Zone : local hook ("on connaît bien ce coin") ─── */
.zone-local-hook {
    padding: 64px 0;
    background: linear-gradient(180deg, #fff 0%, #fef2f2 100%);
}

.zone-local-hook-content {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.zone-local-hook-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text);
    font-weight: 500;
    margin: 0 0 18px;
}

.zone-local-hook-sub {
    font-size: 1rem;
    color: var(--text-light);
    margin: 0;
}

/* ─── Zone : témoignage exemple type ─── */
.zone-testimonial {
    padding: 64px 0;
    background: var(--bg-dark);
    color: var(--text-on-dark);
}

.zone-testimonial-card {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.zone-testimonial-label {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(220, 38, 38, 0.18);
    color: #fca5a5;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 24px;
}

.zone-testimonial-quote {
    font-size: 1.4rem;
    line-height: 1.55;
    font-style: italic;
    margin: 0 0 20px;
    color: var(--text-on-dark);
    border: none;
    padding: 0;
}

.zone-testimonial-quote strong {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-style: normal;
}

.zone-testimonial-disclaimer {
    font-size: 0.82rem;
    color: var(--text-muted-dark);
    line-height: 1.5;
    margin: 0;
    font-style: normal;
}

@media (max-width: 768px) {
    .zone-local-hook-text { font-size: 1.1rem; }
    .zone-testimonial-quote { font-size: 1.15rem; }
    .zone-testimonial { padding: 48px 0; }
    .zone-local-hook { padding: 48px 0; }
}

/* === Zones voisines (internal linking) === */
.zone-neighbors {
    padding: 80px 0;
    text-align: center;
    background: var(--bg);
}

.zone-neighbors .section-title {
    color: var(--text);
    margin-bottom: 20px;
}

.zone-neighbors-list {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 30px auto 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.zone-neighbors-list li {
    margin: 0;
}

.zone-neighbors-list a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--bg-light);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 100px;
    color: var(--text);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.zone-neighbors-list a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.25);
}

.zone-neighbors-list a i {
    font-size: 0.75rem;
    opacity: 0.6;
}

.zone-neighbors-list a:hover i {
    opacity: 1;
}

/* === Hub des zones (grid de cards) === */
.zone-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
    max-width: 1150px;
    margin: 0 auto;
}

.zone-card {
    display: flex;
    flex-direction: column;
    padding: 28px 24px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-decoration: none;
    color: var(--text);
    position: relative;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.3s ease,
                border-color 0.3s ease;
}

.zone-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
    border-color: rgba(220, 38, 38, 0.2);
}

.zone-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    align-self: flex-start;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--primary);
    background: rgba(220, 38, 38, 0.08);
    padding: 5px 12px;
    border-radius: 100px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.zone-card h3 {
    font-family: 'Satoshi', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text);
    margin: 0 0 8px;
}

.zone-card p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-light);
    margin: 0 0 18px;
    flex: 1;
}

.zone-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    transition: gap 0.25s ease;
}

.zone-card:hover .zone-card-link {
    gap: 10px;
}

/* === Section homepage "Nos zones" === */
.zones-preview {
    padding: 100px 0;
    background: var(--bg);
}

.zones-preview-header {
    text-align: center;
    margin-bottom: 50px;
}

.zones-preview-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 900px;
    margin: 0 auto 40px;
}

.zones-preview-list a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--bg-light);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 100px;
    color: var(--text);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.zones-preview-list a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

.zones-preview-cta {
    text-align: center;
}

/* === Responsive Zones === */
@media (max-width: 960px) {
    .zone-hero {
        padding: 80px 0 60px;
    }
    .zone-services,
    .zone-info,
    .zone-why,
    .zone-faq,
    .zone-neighbors,
    .zones-preview {
        padding: 70px 0;
    }
}

@media (max-width: 640px) {
    .zone-hero {
        padding: 60px 0 50px;
    }
    .zone-hero-ctas {
        flex-direction: column;
    }
    .zone-hero-ctas .btn {
        width: 100%;
        justify-content: center;
    }
    .zone-services-grid,
    .zone-info-grid,
    .zone-why-grid,
    .zone-cards-grid {
        grid-template-columns: 1fr;
    }
    .zone-faq-item summary {
        font-size: 0.95rem;
        padding: 18px 44px 18px 20px;
    }
}
