/* ============================================
   LOKA PERMIS — CHARTE GRAPHIQUE
   Couleurs: Rouge #FF0000, Noir #000000, Blanc #FFFFFF
   Police: Bebas Neue (titres) + Montserrat (texte)
   Style: Racing, premium, automobile sportif
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:wght@400;500;600;700;800;900&display=swap');

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

:root {
    /* LOKA PERMIS Brand */
    --red:            #FF0000;
    --red-dark:       #D90429;
    --black-deep:     #000000;
    --graphite:       #1A1A1A;
    --card-dark:      #0F0F0F;
    --border-dark:    #2a2a2a;
    /* Backward compat aliases */
    --blue-primary:   #FF0000;
    --blue-secondary: #D90429;
    --blue-accent:    #FF0000;
    --white:          #FFFFFF;
    --black:          #FFFFFF;       /* text on dark bg is white */
    --gray-light:     #0F0F0F;       /* light section bg = dark card */
    --shadow-light:   0 4px 20px rgba(0,0,0,.5);
    --shadow-hover:   0 8px 30px rgba(255,0,0,.2);
    --radius-card:    12px;
    --radius-btn:     6px;
    --radius-input:   6px;
    --transition:     all 0.25s ease;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--white);
    background: var(--black-deep);
    line-height: 1.6;
}

h1, h2 {
    font-family: 'Bebas Neue', 'Montserrat', sans-serif;
    letter-spacing: 0.04em;
}

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

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

/* ============================================
   PAGE HERO (sous-pages)
   ============================================ */
.page-hero {
    padding: 8rem 2rem 5rem;
    background: #0B0B0B;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #2e2e2e;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
}

.page-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.page-hero-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(255,255,255,0.65);
    margin-bottom: 1.25rem;
    background: rgba(255,255,255,0.1);
    padding: 0.4rem 1rem;
    border-radius: 50px;
}

.page-hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
}

.page-hero-content h1 span {
    color: var(--blue-accent);
}

.page-hero-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.75);
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.page-hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.page-hero .btn-primary {
    background: var(--white);
    color: var(--blue-primary);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.page-hero .btn-primary:hover {
    background: var(--gray-light);
    color: var(--blue-primary);
}

.page-hero .btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}

.page-hero .btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
    color: var(--white);
}

.page-hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.15);
    flex-wrap: wrap;
}

.page-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.4rem;
}

.page-stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(11, 11, 11, 0.96);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.4s ease;
    box-shadow: 0 2px 20px rgba(0,0,0,.5);
    border-bottom: 1px solid #2e2e2e;
}

.header.scrolled {
    background: #0B0B0B;
    box-shadow: 0 4px 20px rgba(0,0,0,.6);
    padding: 0.75rem 0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-logo img {
    height: 50px;
}

.header-logo-text {
    font-size: 1.5rem;
    font-weight: 900;
    color: #FFFFFF;
    letter-spacing: 0.06em;
    font-family: 'Bebas Neue', sans-serif;
}

.header-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.header-nav a {
    color: rgba(255,255,255,.75);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.header-nav a:hover,
.header-nav a.active {
    color: #FF0000;
}

.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-link-dropdown {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link-dropdown i {
    font-size: 0.7rem;
    transition: var(--transition);
}

.nav-dropdown:hover .nav-link-dropdown i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    box-shadow: var(--shadow-hover);
    border-radius: var(--radius-card);
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--black);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background: var(--gray-light);
    color: var(--blue-primary);
}

.header-nav a.cta-header {
    background: #FF0000;
    color: #FFFFFF;
    padding: 0.75rem 1.5rem;
    border: 2px solid #FF0000;
    border-radius: var(--radius-btn);
    font-weight: 700;
    transition: var(--transition);
}

.header-nav a.cta-header:hover {
    background: #D90429;
    border-color: #D90429;
    color: #0B0B0B;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,0,0,.4);
}

.header-nav a.phone-header {
    background: transparent;
    color: rgba(255,255,255,.75);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-btn);
    font-weight: 600;
    transition: var(--transition);
}

.header-nav a.phone-header:hover {
    color: #FF0000;
}

/* ============================================
   NAV DROPDOWN — Guides
   ============================================ */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    font-weight: 500;
    color: rgba(255,255,255,.75);
    padding: 0;
    transition: color 0.2s ease;
}

.nav-dropdown-trigger:hover {
    color: #FF0000;
}

.nav-chevron {
    font-size: 0.65rem;
    transition: transform 0.25s ease;
}

.nav-dropdown:hover .nav-chevron,
.nav-dropdown.open .nav-chevron {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 300px;
    background: #1a1a1a;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0,0,0,.6);
    border: 1px solid #2e2e2e;
    list-style: none;
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-50%) translateY(-6px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    z-index: 999;
}

.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: #1a1a1a;
    border-left: 1px solid #2e2e2e;
    border-top: 1px solid #2e2e2e;
    rotate: 45deg;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.7rem 0.85rem;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.15s ease;
    color: rgba(255,255,255,.8);
}

.nav-dropdown-menu li a:hover {
    background: #2B2B2B;
    color: #FF0000;
}

.ndm-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: rgba(255,0,0,.12);
    color: #FF0000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
    transition: background 0.15s ease;
}

.nav-dropdown-menu li a:hover .ndm-icon {
    background: #FF0000;
    color: #0B0B0B;
}

.ndm-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.ndm-text strong {
    font-size: 0.88rem;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1.3;
}

.ndm-text em {
    font-size: 0.77rem;
    font-style: normal;
    color: #666;
    line-height: 1.3;
}

.ndm-divider {
    height: 1px;
    background: #2e2e2e;
    margin: 0.35rem 0.85rem;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    padding: 9rem 2rem 6rem;
    background: #000000;
    min-height: 92vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -120px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255,0,0,.13) 0%, transparent 65%);
    z-index: 0;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 28%;
    width: 2px;
    background: linear-gradient(to bottom, transparent 0%, rgba(255,0,0,.4) 40%, rgba(255,0,0,.4) 60%, transparent 100%);
    transform: skewX(-8deg);
    pointer-events: none;
    z-index: 1;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-left,
.hero-right {
    z-index: 2;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,0,0,.12);
    color: #FF0000;
    border: 1px solid rgba(255,0,0,.25);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 5.2rem;
    font-weight: 900;
    line-height: 0.95;
    margin-bottom: 1.75rem;
    color: #FFFFFF;
    letter-spacing: 0.02em;
}

.hero h1 span {
    color: #FF0000;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,.6);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 480px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.hero-micro-proofs {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.micro-proof {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255,255,255,.75);
    background: rgba(255,255,255,.04);
    padding: 0.45rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,.1);
    transition: border-color 0.2s;
}

.micro-proof:hover {
    border-color: rgba(255,0,0,.3);
}

.proof-icon {
    width: 18px;
    height: 18px;
    background: #FF0000;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.55rem;
    flex-shrink: 0;
}

.hero-legal {
    font-size: 0.78rem;
    color: #999;
    line-height: 1.5;
}

.hero-right {
    margin-top: -10rem;
}

.hero-visual-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
}

.hero-car-glow {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 75%;
    height: 60px;
    background: radial-gradient(ellipse, rgba(255,0,0,.45) 0%, transparent 70%);
    filter: blur(18px);
    pointer-events: none;
}

.hero-car {
    max-width: 100%;
    height: auto;
    border-radius: 0;
    filter: drop-shadow(0 20px 50px rgba(255,0,0,.22)) drop-shadow(0 4px 10px rgba(0,0,0,.8));
    transition: all 0.35s ease;
    position: relative;
    z-index: 2;
}

.hero-car:hover {
    transform: scale(1.03) translateY(-6px);
    filter: drop-shadow(0 30px 70px rgba(255,0,0,.35)) drop-shadow(0 4px 10px rgba(0,0,0,.8));
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-micro-proofs {
        justify-content: center;
    }
    
    .hero-right {
        margin-top: 0;
    }

    .hero-visual-wrapper {
        order: -1;
    }
    
    .hero-car {
        max-width: 400px;
    }
    
    .hero-subtitle {
        max-width: 100%;
    }
}

@media (max-width: 1024px) {
    .hero h1 { font-size: 4rem; }
}

@media (max-width: 768px) {
    .hero {
        padding: 6rem 1.5rem 4rem;
        min-height: auto;
    }
    
    .hero h1 {
        font-size: 3.2rem;
        line-height: 1.0;
    }
    
    .hero-subtitle {
        font-size: 1.05rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-micro-proofs {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .hero-visual-wrapper {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.6rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-legal {
        font-size: 0.75rem;
    }
}


.btn-primary {
    display: inline-block;
    background: #FF0000;
    color: #FFFFFF;
    padding: 1rem 2.25rem;
    border-radius: var(--radius-btn);
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(255,0,0,.3);
    text-decoration: none;
}

.btn-primary:hover {
    background: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255,0,0,.45);
    color: #FF0000;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #FF0000;
    padding: 1rem 2.25rem;
    border-radius: var(--radius-btn);
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid #FF0000;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-secondary:hover {
    background: #FF0000;
    color: #FFFFFF;
    transform: translateY(-3px);
}

.price-cta:hover {
    background: var(--blue-secondary);
    transform: translateY(-2px);
}

.prix-cta-section {
    text-align: center;
}

/* ============================================
   SECTION STYLES (GÉNÉRAL)
   ============================================ */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--blue-secondary);
    margin-bottom: 1rem;
    background: rgba(30, 91, 255, 0.08);
    padding: 0.4rem 1rem;
    border-radius: 50px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--black);
    letter-spacing: -0.02em;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 4px;
    background: var(--blue-secondary);
    border-radius: 4px;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 3.5rem;
    line-height: 1.7;
}

/* ============================================
   PRIX SECTION
   ============================================ */
.prix {
    padding: 5rem 2rem;
    background: var(--gray-light);
}

.switch-container {
    display: flex;
    background: var(--white);
    border: 2px solid #e0e5ef;
    border-radius: 50px;
    padding: 4px;
    width: fit-content;
    margin: 0 auto 3rem;
    gap: 4px;
}

.switch-btn {
    padding: 0.65rem 1.75rem;
    border-radius: 50px;
    border: none;
    background: transparent;
    color: #111111;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
}

.switch-btn.active {
    background: #FF0000;
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(255,0,0,.35);
}

.switch-btn[data-type="automatique"].active {
    background: #FF0000;
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(255,0,0,.35);
}

.prix-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.price-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    transition: var(--transition);
    position: relative;
    border: 1px solid #e8ecf4;
    overflow: hidden;
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: #e8ecf4;
    transition: var(--transition);
}

.price-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(13, 59, 142, 0.12);
    border-color: rgba(13, 59, 142, 0.2);
}

.price-card:hover::before {
    background: var(--blue-secondary);
}

.price-card.featured {
    border: 2px solid var(--blue-primary);
    box-shadow: 0 8px 30px rgba(13, 59, 142, 0.15);
}

.price-card.featured::before {
    background: var(--blue-primary);
    height: 5px;
}

.price-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: var(--blue-primary);
    color: var(--white);
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.price-icon {
    width: 56px;
    height: 56px;
    background: rgba(13, 59, 142, 0.08);
    color: var(--blue-primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 1.25rem;
}

.price-card.featured .price-icon {
    background: var(--blue-primary);
    color: var(--white);
}

.price-icon svg {
    width: 100%;
    height: 100%;
}

.price-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--blue-primary);
}

.price-desc {
    font-size: 0.95rem;
    color: var(--black);
    opacity: 0.7;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.price-per-hour {
    font-size: 0.9rem;
    color: var(--black);
    opacity: 0.6;
    margin-bottom: 1.5rem;
}

.price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    text-align: left;
}

.price-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: var(--black);
    opacity: 0.8;
}

.price-features li i {
    color: var(--blue-primary);
    font-size: 0.85rem;
}

.price-cta {
    display: inline-block;
    background: var(--blue-primary);
    color: var(--white);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.price-cta:hover {
    background: var(--blue-secondary);
    transform: translateY(-2px);
}

.prix-cta-section {
    text-align: center;
}

/* ============================================
   PV2 — NOUVELLE SECTION PRIX (index.php)
   ============================================ */
.pv2 {
    padding: 5rem 2rem;
    background: #0B0B0B;
    position: relative;
    overflow: hidden;
}

.pv2::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(255,0,0,.07) 0%, transparent 70%);
    pointer-events: none;
}

.pv2-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.pv2-label {
    display: inline-block;
    background: rgba(255,0,0,.1);
    color: #FF0000;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    margin-bottom: 0.9rem;
}

.pv2-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--black);
    line-height: 1.2;
    margin-bottom: 0.65rem;
}

.pv2-sub {
    font-size: 0.97rem;
    color: rgba(255,255,255,.45);
    max-width: 440px;
    margin: 0 auto;
}

.pv2-grid {
    display: grid;
    grid-template-columns: 1fr 1.06fr 1fr;
    gap: 1.25rem;
    align-items: start;
    max-width: 980px;
    margin: 0 auto 3rem;
}

.pv2-card {
    background: #1A1A1A;
    border-radius: 20px;
    border: 1.5px solid #2B2B2B;
    box-shadow: 0 4px 20px rgba(0,0,0,.3);
    padding: 2rem 1.75rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
}

.pv2-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: #2B2B2B;
    transition: background 0.25s ease;
}

.pv2-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 40px rgba(0,0,0,.5);
}

.pv2-card:hover::after {
    background: var(--blue-secondary);
}

.pv2-card--star {
    background: #FF0000;
    border: none;
    box-shadow: 0 18px 55px rgba(255,0,0,.3);
    padding-top: 1.5rem;
}

.pv2-card--star::after {
    display: none;
}

.pv2-card--star:hover {
    transform: translateY(-7px);
    box-shadow: 0 26px 65px rgba(255,0,0,.4);
}

.pv2-card--star-auto {
    background: #FF0000;
    box-shadow: 0 18px 55px rgba(255,0,0,.3);
}

.pv2-card--star-auto:hover {
    box-shadow: 0 26px 65px rgba(255,0,0,.4);
}

.pv2-popular-ribbon {
    display: inline-block;
    background: rgba(0,0,0,.25);
    color: #FFFFFF;
    padding: 0.3rem 0.95rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-bottom: 1.35rem;
}

.pv2-tag {
    display: inline-block;
    background: rgba(255,0,0,.1);
    color: #FF0000;
    padding: 0.28rem 0.85rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-bottom: 1.35rem;
}

.pv2-tag--bonus {
    background: rgba(16, 160, 80, 0.09);
    color: #0f9050;
}

.pv2-tag--auto {
    background: rgba(8, 145, 178, 0.09);
    color: #0891B2;
}

.pv2-tag--auto-bonus {
    background: rgba(16, 160, 80, 0.09);
    color: #0f9050;
}

.pv2-name {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 0.45rem;
    line-height: 1.2;
}

.pv2-card--star .pv2-name,
.pv2-card--star-auto .pv2-name {
    color: #FFFFFF;
}

.pv2-desc {
    font-size: 0.865rem;
    color: rgba(255,255,255,.45);
    line-height: 1.55;
    margin-bottom: 1.6rem;
}

.pv2-card--star .pv2-desc,
.pv2-card--star-auto .pv2-desc {
    color: rgba(255,255,255,.65);
}

.pv2-price-row {
    display: flex;
    align-items: flex-start;
    gap: 1px;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.pv2-currency {
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--black);
    margin-top: 0.55rem;
}

.pv2-card--star .pv2-currency,
.pv2-card--star-auto .pv2-currency {
    color: #FFFFFF;
}

.pv2-amount {
    font-size: 3.6rem;
    font-weight: 900;
    color: var(--black);
    letter-spacing: -2px;
}

.pv2-card--star .pv2-amount,
.pv2-card--star-auto .pv2-amount {
    color: #FFFFFF;
}

.pv2-rate {
    display: block;
    font-size: 0.8rem;
    color: rgba(255,255,255,.35);
    margin-bottom: 1.5rem;
}

.pv2-card--star .pv2-rate,
.pv2-card--star-auto .pv2-rate {
    color: rgba(255,255,255,.55);
}

.pv2-divider {
    border: none;
    border-top: 1.5px solid #2B2B2B;
    margin: 0 0 1.4rem;
}

.pv2-card--star .pv2-divider,
.pv2-card--star-auto .pv2-divider {
    border-color: rgba(255,255,255,.2);
}

.pv2-feats {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.pv2-feats li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.875rem;
    color: rgba(255,255,255,.6);
    margin-bottom: 0.6rem;
}

.pv2-card--star .pv2-feats li,
.pv2-card--star-auto .pv2-feats li {
    color: rgba(255,255,255,.85);
}

.pv2-feats li i {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(255,0,0,.12);
    color: #FF0000;
    font-size: 0.65rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pv2-card--star .pv2-feats li i {
    background: rgba(255,255,255,.2);
    color: #FFFFFF;
}

.pv2-card--star-auto .pv2-feats li i {
    background: rgba(255,255,255,.2);
    color: #FFFFFF;
}

.pv2-card--auto .pv2-feats li i {
    background: rgba(255,0,0,.12);
    color: #FF0000;
}

.pv2-btn {
    display: block;
    text-align: center;
    background: #FF0000;
    color: #FFFFFF;
    padding: 0.88rem 1.5rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.93rem;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.pv2-btn:hover {
    background: #D90429;
    transform: translateY(-2px);
}

.pv2-btn--white {
    background: #0B0B0B;
    color: #FF0000;
}

.pv2-btn--white:hover {
    background: #1A1A1A;
    color: #FF0000;
    transform: translateY(-2px);
}

.pv2-btn--auto {
    background: #0B0B0B;
    color: #FF0000;
}

.pv2-btn--auto:hover {
    background: #1A1A1A;
    transform: translateY(-2px);
}

.pv2-footer {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.pv2-footer p {
    color: rgba(255,255,255,.4);
    font-size: 0.93rem;
}

@media (max-width: 860px) {
    .pv2-grid {
        grid-template-columns: 1fr 1fr;
        max-width: 640px;
    }
    .pv2-card--star,
    .pv2-card--star-auto {
        grid-column: 1 / -1;
    }
}

@media (max-width: 560px) {
    .pv2-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
    }
    .pv2-title {
        font-size: 1.7rem;
    }
    .pv2-amount {
        font-size: 2.8rem;
    }
}

/* ============================================
   SECTION STYLES (GÉNÉRAL)
   ============================================ */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--blue-primary);
    margin-bottom: 2rem;
}

/* ============================================
   COMMENT ÇA MARCHE
   ============================================ */
.comment-ca-marche {
    padding: 7rem 2rem;
    background: #080808;
    position: relative;
    overflow: hidden;
}

.comment-ca-marche::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,0,0,.5), transparent);
}

.comment-ca-marche::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.06), transparent);
}

.ccm-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.ccm-title {
    font-size: 3rem;
    font-weight: 900;
    color: #FFFFFF;
    letter-spacing: 0.03em;
    margin: 0.75rem 0 0.5rem;
}

.ccm-sub {
    font-size: 0.95rem;
    color: rgba(255,255,255,.4);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    text-align: center;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 30px;
    left: calc(12.5% + 8px);
    right: calc(12.5% + 8px);
    height: 1px;
    background: linear-gradient(90deg, #FF0000, rgba(255,0,0,.2) 50%, #FF0000);
    z-index: 0;
}

.step-item {
    position: relative;
    background: #0F0F0F;
    border: 1px solid #1E1E1E;
    border-radius: 16px;
    padding: 2rem 1.5rem 2rem;
    transition: all 0.3s ease;
    z-index: 1;
}

.step-item:hover {
    border-color: rgba(255,0,0,.35);
    box-shadow: 0 12px 40px rgba(255,0,0,.1);
    transform: translateY(-6px);
}

.step-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255,0,0,.6);
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
    display: block;
}

.step-icon-wrap {
    width: 56px;
    height: 56px;
    background: #FF0000;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin: 0 auto 1.25rem;
    box-shadow: 0 8px 25px rgba(255,0,0,.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-item:hover .step-icon-wrap {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(255,0,0,.5);
}

.step-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.6rem;
    letter-spacing: 0.01em;
}

.step-item p {
    color: rgba(255,255,255,.45);
    font-size: 0.88rem;
    line-height: 1.6;
}

/* ============================================
   OFFRES SECTION
   ============================================ */
.offres {
    padding: 6rem 2rem;
    background: var(--white);
}

/* OC2 — Nouvelle section Offres Code (index.php) */
.oc2 {
    padding: 5rem 2rem;
    background: var(--white);
    position: relative;
}

.oc2::before {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(13, 59, 142, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.offres-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.offre-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-card);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
}

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

.offre-card.featured {
    border: 2px solid var(--blue-primary);
    background: linear-gradient(180deg, rgba(13, 59, 142, 0.05) 0%, var(--white) 100%);
}

.offre-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--blue-secondary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

.offre-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.offre-icon i {
    color: var(--blue-primary);
}

.offre-icon svg {
    width: 100%;
    height: 100%;
}

.offre-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--blue-primary);
}

.offre-desc {
    font-size: 0.95rem;
    color: var(--black);
    opacity: 0.7;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.offre-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.offre-per-hour {
    font-size: 1rem;
    color: var(--black);
    opacity: 0.6;
    margin-bottom: 1.5rem;
}

.offre-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    text-align: left;
}

.offre-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: var(--black);
    opacity: 0.8;
}

.offre-features li i {
    color: var(--blue-primary);
    font-size: 0.85rem;
}

.offre-cta {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--blue-primary);
    color: var(--white);
    border-radius: var(--radius-btn);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.offre-cta:hover {
    background: var(--blue-secondary);
    transform: translateY(-2px);
}

.offres-cta-section {
    text-align: center;
}

/* ============================================
   AVIS CLIENTS
   ============================================ */
.avis {
    padding: 5rem 2rem;
    background: #111;
}

/* ============================================
   AVANTAGES LOCATION SECTION
   ============================================ */
.avantages-location {
    padding: 5rem 2rem;
    background: #111;
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.avantages-location::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(255,0,0,.05);
    border-radius: 50%;
}

.avantages-location::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: rgba(255,0,0,.03);
    border-radius: 50%;
}

.avantages-location .section-title {
    color: var(--white);
    margin-bottom: 3rem;
}

.avantages-location .section-title::after {
    background: var(--white);
    width: 80px;
    height: 3px;
    border-radius: 3px;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.avantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.avantage-card {
    background: #1A1A1A;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: none;
    text-align: center;
    transition: all 0.4s ease;
    border: 1.5px solid #2B2B2B;
    position: relative;
    overflow: hidden;
}

.avantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #FF0000;
    opacity: 1;
}

.avantage-card:hover {
    box-shadow: 0 20px 60px rgba(0,0,0,.5);
    transform: translateY(-8px);
    border-color: #3a3a3a;
}

.avantage-icon {
    width: 80px;
    height: 80px;
    background: #FF0000;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(255,0,0,.25);
    position: relative;
    z-index: 1;
}

.avantage-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
}

.avantage-card p {
    color: rgba(255,255,255,.5);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ============================================
   TARIFS SECTION (LOCATION)
   ============================================ */
.tarifs {
    padding: 6rem 2rem;
    background: #0B0B0B;
    position: relative;
}

.tarifs-category {
    margin-bottom: 2.5rem;
    background: #1A1A1A;
    padding: 1.75rem;
    border-radius: 16px;
    border: 1px solid #2B2B2B;
}

.tarifs-category .switch-container {
    margin-bottom: 1.25rem;
}

.category-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ============================================
   CODE DE LA ROUTE SECTION
   ============================================ */
.avantages-code {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #fff 0%, #f8f9ff 100%);
    position: relative;
}

.avantages-code::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(180deg, var(--blue-primary) 0%, transparent 100%);
    opacity: 0.05;
}

.avantages-code .avantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.avantages-code .avantage-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(13, 59, 142, 0.08);
    transition: all 0.4s ease;
    border: 2px solid rgba(13, 59, 142, 0.08);
}

.avantages-code .avantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(13, 59, 142, 0.15);
    border-color: var(--blue-primary);
}

.avantages-code .avantage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--blue-primary), var(--blue-secondary));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(13, 59, 142, 0.3);
}

.avantages-code .avantage-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--blue-primary);
    margin-bottom: 1rem;
}

.avantages-code .avantage-card p {
    color: var(--black);
    opacity: 0.7;
    line-height: 1.6;
}

/* ============================================
   FEATURE SECTIONS (code-route.php)
   ============================================ */
.feature-section {
    padding: 6rem 2rem;
}

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

.feature-section.feature-alt {
    background: linear-gradient(135deg, #f8f9ff 0%, #fff 100%);
}

.feature-section.feature-dark {
    background: linear-gradient(135deg, #0a1f5c 0%, #0D3B8E 60%, #0a2e7a 100%);
    position: relative;
    overflow: hidden;
}

.feature-section.feature-dark::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: rgba(30, 91, 255, 0.15);
    pointer-events: none;
}

.feature-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.feature-inner.reverse {
    direction: rtl;
}

.feature-inner.reverse > * {
    direction: ltr;
}

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

.feature-img {
    max-width: 100%;
    max-height: 460px;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(13, 59, 142, 0.15);
    transition: var(--transition);
}

.feature-img:hover {
    transform: scale(1.02) translateY(-4px);
    box-shadow: 0 30px 80px rgba(13, 59, 142, 0.2);
}

.feature-img-app {
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4) !important;
}

.feature-img-app:hover {
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5) !important;
}

.feature-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--blue-primary);
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0.75rem 0 1.25rem;
}

.feature-title span { color: var(--blue-secondary); }

.feature-title-dark { color: var(--white); }
.feature-title-dark span { color: #3DA5FF; }

.feature-desc {
    font-size: 1rem;
    color: #555;
    line-height: 1.75;
    margin-bottom: 1.75rem;
}

.feature-desc strong { color: var(--blue-primary); font-weight: 700; }
.feature-desc-dark { color: rgba(255, 255, 255, 0.75); }
.feature-desc-dark strong { color: var(--white); }

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    color: #444;
}

.feature-list li i { color: var(--blue-primary); font-size: 0.9rem; flex-shrink: 0; }
.feature-list-dark li { color: rgba(255, 255, 255, 0.85); }
.feature-list-dark li i { color: #3DA5FF; }

.feature-label-dark {
    background: rgba(61, 165, 255, 0.15) !important;
    color: #3DA5FF !important;
    border-color: rgba(61, 165, 255, 0.3) !important;
}

.tarifs-code {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f8f9ff 0%, #fff 100%);
}

/* ============================================
   CODE PRICE CARDS — Compact tiles
   ============================================ */
.code-tarifs-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 2rem;
    align-items: start;
}

.code-simple-cards {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.code-price-card {
    background: var(--white);
    border-radius: 12px;
    border: 1px solid #e8ecf4;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem 1rem 1.5rem;
}

.code-price-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; bottom: 0;
    width: 3px;
    background: #dde3ef;
    transition: var(--transition);
}

.code-price-card:hover {
    border-color: var(--blue-primary);
    box-shadow: 0 4px 20px rgba(13, 59, 142, 0.1);
}

.code-price-card:hover::before {
    background: var(--blue-primary);
}

.code-price-badge {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--blue-primary);
    background: rgba(13, 59, 142, 0.08);
    border-radius: 6px;
    padding: 0.25rem 0.5rem;
    white-space: nowrap;
}

.code-price-info { min-width: 0; }

.code-price-info .price-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--black);
    margin: 0;
}

.code-price-sub {
    font-size: 0.78rem;
    color: #888;
    margin: 0.1rem 0 0;
}

.code-price-amount {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--blue-primary);
    white-space: nowrap;
    line-height: 1;
}

.code-price-cta {
    background: var(--blue-primary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: var(--transition);
}

.code-price-cta:hover {
    background: var(--blue-secondary);
}

/* Pack complet card */
.code-pack-card {
    background: linear-gradient(135deg, #0a1f5c 0%, #0D3B8E 100%);
    border-radius: 20px;
    padding: 2.25rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(13, 59, 142, 0.3);
}

.code-pack-card::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.code-pack-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.75rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.code-pack-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: rgba(61, 165, 255, 0.2);
    color: #3DA5FF;
    border: 1px solid rgba(61, 165, 255, 0.3);
    border-radius: 6px;
    padding: 0.25rem 0.6rem;
    margin-bottom: 0.5rem;
}

.code-pack-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--white);
    margin: 0.25rem 0 0.4rem;
    line-height: 1.2;
}

.code-pack-sub {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.code-pack-price {
    text-align: right;
    flex-shrink: 0;
}

.code-pack-amount {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}

.code-pack-period {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
}

.code-pack-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
}

.code-pack-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
}

.code-pack-features li i {
    color: #3DA5FF;
    font-size: 0.8rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.code-pack-cta {
    display: block;
    text-align: center;
    background: var(--white);
    color: var(--blue-primary);
    padding: 0.9rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.code-pack-cta:hover {
    background: #f0f4ff;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

/* ============================================
   FAQ CODE SECTION
   ============================================ */
.faq-code {
    padding: 5rem 2rem;
    background: #0a0a0a;
    border-bottom: 1px solid #1e1e1e;
    position: relative;
}

.faq-code::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FF0000 0%, transparent 100%);
    opacity: 0.5;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 1rem;
    margin-top: 2.5rem;
}

.faq-item {
    background: #161616;
    border-radius: 14px;
    border: 1px solid #2a2a2a;
    overflow: hidden;
    transition: border-color 0.25s, box-shadow 0.25s;
}

.faq-item:hover {
    border-color: rgba(255,0,0,0.3);
    box-shadow: 0 6px 24px rgba(255,0,0,0.07);
}

.faq-question {
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #161616;
    transition: background 0.2s;
    gap: 1rem;
}

.faq-question:hover {
    background: #1e1e1e;
}

.faq-item.active .faq-question {
    border-bottom: 1px solid #2a2a2a;
    background: #1e1e1e;
}

.faq-question h3,
.faq-question h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    flex: 1;
    line-height: 1.5;
}

.faq-question i {
    color: #FF0000;
    font-size: 0.85rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 320px;
    padding: 1.25rem 1.5rem;
}

.faq-answer p {
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin: 0;
    font-size: 0.9rem;
}

.faq-answer a {
    color: #FF0000;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.faq-answer strong {
    color: rgba(255,255,255,0.9);
}

/* ============================================
   LOCATION PRICE CARDS (Spécifique à location.php)
   ============================================ */
.tarifs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 0.65rem;
}

.location-price-card {
    background: #1A1A1A;
    border-radius: 12px;
    border: 1px solid #2B2B2B;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr auto auto;
    grid-template-rows: auto auto;
    align-items: center;
    column-gap: 1.25rem;
    padding: 1rem 1.25rem 1rem 1.5rem;
}

.location-price-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; bottom: 0;
    width: 3px;
    background: #2B2B2B;
    transition: var(--transition);
}

.location-price-card:hover {
    border-color: rgba(255,0,0,.4);
    box-shadow: 0 4px 16px rgba(255,0,0,.1);
    transform: translateY(-1px);
}

.location-price-card:hover::before,
.location-price-card.featured::before {
    background: var(--blue-primary);
}

.location-price-card.featured {
    border-color: rgba(255,0,0,.5);
    background: rgba(255,0,0,.04);
}

.location-price-icon {
    display: none;
}

.location-price-card .price-features {
    display: none;
}

.location-price-badge {
    grid-column: 1;
    grid-row: 1;
    position: static;
    display: inline-block;
    font-size: 0.67rem;
    font-weight: 700;
    color: #FF0000;
    background: rgba(255,0,0,.1);
    padding: 0.18rem 0.55rem;
    border-radius: 50px;
    letter-spacing: 0.04em;
    width: fit-content;
    margin-bottom: 0.2rem;
}

.location-price-card.featured .location-price-badge {
    color: #D90429;
    background: rgba(255,0,0,.18);
}

.price-title {
    grid-column: 1;
    grid-row: 2;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--black);
    margin: 0;
}

.location-price-amount {
    grid-column: 2;
    grid-row: 1 / span 2;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--blue-primary);
    line-height: 1;
    text-align: right;
    white-space: nowrap;
}

.location-price-per-hour {
    display: none;
}

.location-price-cta {
    grid-column: 3;
    grid-row: 1 / span 2;
    background: #FF0000;
    color: #FFFFFF;
    padding: 0.5rem 0.9rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.78rem;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
    text-align: center;
}

.location-price-cta:hover {
    background: #D90429;
}

.location-price-card.featured .location-price-cta {
    background: var(--blue-primary);
    color: var(--white);
}

.location-price-card[data-type="automatique"] .location-price-badge {
    color: #FF0000;
    background: rgba(255,0,0,.1);
}

.location-price-card[data-type="automatique"] .location-price-amount {
    color: #FF0000;
}

.location-price-card[data-type="automatique"]::before {
    background: #2B2B2B;
}

.location-price-card[data-type="automatique"]:hover::before {
    background: #FF0000;
}

.location-price-card[data-type="automatique"].featured::before {
    background: #FF0000;
}

.location-price-card[data-type="automatique"] .location-price-cta {
    background: #FF0000;
    color: #FFFFFF;
}

.location-price-card[data-type="automatique"] .location-price-cta:hover {
    background: #D90429;
}

.caution-option {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.caution-card,
.option-card {
    background: #1A1A1A;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: none;
    text-align: center;
    border: 1.5px solid #2B2B2B;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.caution-card:hover,
.option-card:hover {
    box-shadow: 0 15px 45px rgba(0,0,0,.5);
    transform: translateY(-8px);
    border-color: #FF0000;
}

.caution-card h4,
.option-card h4 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.5rem;
}

.caution-amount {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--blue-primary);
    margin-bottom: 0.5rem;
    color: #FF0000;
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    -webkit-text-fill-color: unset;
}

.option-prices {
    margin-bottom: 1rem;
}

.option-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--blue-primary);
    margin-bottom: 0.5rem;
}

.caution-card p,
.option-card p {
    color: rgba(255,255,255,.5);
    line-height: 1.6;
    font-weight: 500;
}

/* ============================================
   FICHE DE SUIVI SECTION
   ============================================ */
.fiche-suivi {
    padding: 6rem 2rem;
    background: #111;
}

.fiche-suivi-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.fiche-suivi-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--black);
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
    line-height: 1.15;
}

.fiche-suivi-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,.55);
    line-height: 1.75;
    margin-bottom: 1.75rem;
}

.fiche-suivi-desc strong {
    color: var(--blue-primary);
    font-weight: 700;
}

.fiche-suivi-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.fiche-suivi-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: rgba(255,255,255,.7);
    font-weight: 500;
}

.fiche-suivi-list li i {
    color: #FF0000;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.fiche-suivi-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.fiche-img {
    max-width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,.5);
    border: 1px solid #2B2B2B;
    transition: var(--transition);
}

.fiche-img:hover {
    transform: scale(1.02);
    box-shadow: 0 28px 80px rgba(13, 59, 142, 0.2);
}

@media (max-width: 900px) {
    .fiche-suivi-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .fiche-suivi-visual {
        order: -1;
    }
}

/* ============================================
   APP SECTION
   ============================================ */
.app-section {
    padding: 6rem 2rem;
    background: #0B0B0B;
    position: relative;
    overflow: hidden;
}

.app-section::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: rgba(255,0,0,.05);
    pointer-events: none;
}

.app-section::after {
    content: '';
    position: absolute;
    bottom: -60px; left: -60px;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(255,0,0,.03);
    pointer-events: none;
}

.app-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

.app-img {
    max-width: 100%;
    max-height: 500px;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
}

.app-img:hover {
    transform: scale(1.02) translateY(-4px);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.app-content .section-label {
    background: rgba(255,0,0,.1);
    color: #FF0000;
    border: 1px solid rgba(255,0,0,.2);
}

.app-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin: 0.75rem 0 1.25rem;
}

.app-title span {
    color: #FF0000;
}

.app-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.75;
    margin-bottom: 2rem;
}

.app-desc strong {
    color: var(--white);
    font-weight: 700;
}

.app-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.app-features li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.app-feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,0,0,.1);
    border: 1px solid rgba(255,0,0,.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF0000;
    font-size: 1rem;
    flex-shrink: 0;
}

.app-features li > div:last-child {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.app-features li strong {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
}

.app-features li span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

@media (max-width: 900px) {
    .app-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .app-title {
        font-size: 1.8rem;
    }
}

/* ============================================
   CONDITIONS SECTION
   ============================================ */
.conditions {
    padding: 6rem 2rem;
    background: #0B0B0B;
    position: relative;
    overflow: hidden;
}

.conditions::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 350px;
    height: 350px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
}

.conditions .section-title {
    color: var(--white);
}

.conditions .section-title::after {
    background: var(--white);
}

.conditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.condition-card {
    background: #1A1A1A;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: none;
    transition: all 0.4s ease;
    border: 1.5px solid #2B2B2B;
    position: relative;
    overflow: hidden;
}

.condition-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: #FF0000;
    opacity: 1;
}

.condition-card:hover {
    box-shadow: 0 20px 60px rgba(0,0,0,.5);
    transform: translateY(-8px);
    border-color: #3a3a3a;
}

.condition-icon {
    width: 70px;
    height: 70px;
    background: #FF0000;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 6px 20px rgba(255,0,0,.3);
}

.condition-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.5rem;
    text-align: center;
}

.condition-card ul {
    list-style: none;
    padding: 0;
}

.condition-card ul li {
    padding: 0.85rem 0;
    border-bottom: 1px solid #2B2B2B;
    color: rgba(255,255,255,.65);
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-weight: 500;
}

.condition-card ul li:before {
    content: "✓";
    color: var(--blue-primary);
    font-weight: 900;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.condition-card ul li:last-child {
    border-bottom: none;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    padding: 5rem 2rem;
    background: #0B0B0B;
    text-align: center;
}

.contact-content p {
    font-size: 1.2rem;
    color: rgba(255,255,255,.5);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.contact-info {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.2rem 2.5rem;
    background: #FF0000;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255,0,0,.3);
}

.contact-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(255,0,0,.4);
}

.avis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.avis-card {
    background: #1A1A1A;
    padding: 2rem;
    border-radius: 16px;
    border: 1.5px solid #2B2B2B;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.avis-card:hover {
    box-shadow: 0 16px 40px rgba(0,0,0,.4);
    transform: translateY(-4px);
    border-color: #3a3a3a;
}

.avis-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.avis-avatar {
    width: 40px;
    height: 40px;
    background: #FF0000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-weight: 800;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.avis-name {
    font-size: .88rem;
    font-weight: 700;
    color: #fff;
}

.avis-stars {
    color: #FF0000;
    font-size: .8rem;
    letter-spacing: .05em;
}

.avis-text {
    font-size: .88rem;
    color: rgba(255,255,255,.6);
    line-height: 1.75;
    margin-bottom: 1.5rem;
    flex: 1;
}

.avis-quote-mark {
    font-size: 3.5rem;
    line-height: .75;
    color: #FF0000;
    font-weight: 900;
    opacity: .5;
    margin-bottom: .6rem;
    font-family: Georgia, serif;
}

.avis-footer-row {
    display: flex;
    align-items: center;
    gap: .85rem;
}

/* ============================================
   STATS STRIP
   ============================================ */
.stats-strip {
    background: #0A0A0A;
    border-top: 1px solid #141414;
    border-bottom: 1px solid #141414;
    padding: 1.75rem 2rem;
    position: relative;
    z-index: 2;
}

.stats-strip-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 3rem;
}

.stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    color: #FF0000;
    line-height: 1;
    letter-spacing: 0.05em;
}

.stat-label {
    font-size: 0.7rem;
    color: rgba(255,255,255,.35);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.3rem;
    white-space: nowrap;
}

.stat-sep {
    width: 1px;
    height: 36px;
    background: #1E1E1E;
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .stats-strip-inner { gap: 1rem; }
    .stat-item { padding: 0 1.5rem; }
    .stat-sep { display: none; }
}

/* ============================================
   CTA FINAL
   ============================================ */
.cta-final {
    padding: 8rem 2rem;
    background: #000000;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 3px solid #FF0000;
}

.cta-final-stripe {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -55deg,
        transparent,
        transparent 48px,
        rgba(255,0,0,.025) 48px,
        rgba(255,0,0,.025) 50px
    );
    pointer-events: none;
    z-index: 0;
}

.cta-final::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(255,0,0,.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.cta-final::after {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: #FF0000;
    border-radius: 0 0 4px 4px;
    z-index: 2;
}

.cta-final-badge {
    display: inline-block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    color: #FF0000;
    border: 1px solid rgba(255,0,0,.3);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.cta-final h2 {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    line-height: 0.95;
    letter-spacing: 0.02em;
}

.cta-final h2 span {
    color: #FF0000;
}

.cta-final p {
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    color: rgba(255,255,255,.5);
    position: relative;
    z-index: 1;
}

.cta-final-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-final-btn-main {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #FF0000;
    color: #FFFFFF;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-btn);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 8px 30px rgba(255,0,0,.35);
}

.cta-final-btn-main:hover {
    background: #FFFFFF;
    color: #FF0000;
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(255,0,0,.4);
}

.cta-final-btn-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: transparent;
    color: rgba(255,255,255,.75);
    padding: 1rem 2rem;
    border-radius: var(--radius-btn);
    border: 1px solid rgba(255,255,255,.15);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
}

.cta-final-btn-phone:hover {
    border-color: rgba(255,0,0,.4);
    color: #FF0000;
    transform: translateY(-3px);
}

/* Steps responsive */
@media (max-width: 900px) {
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid::before { display: none; }
}
@media (max-width: 520px) {
    .steps-grid { grid-template-columns: 1fr; }
    .ccm-title { font-size: 2.2rem; }
}

/* CTA final responsive */
@media (max-width: 768px) {
    .cta-final h2 { font-size: 3rem; }
    .cta-final-btns { flex-direction: column; align-items: center; }
    .cta-final-btn-main, .cta-final-btn-phone { width: 100%; justify-content: center; max-width: 320px; }
}
@media (max-width: 480px) {
    .cta-final h2 { font-size: 2.4rem; }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #0B0B0B;
    color: #fff;
    padding: 3rem 2rem 1rem;
    border-top: 1px solid #1A1A1A;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
    margin-bottom: 1.2rem;
}

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

.footer-section ul li {
    margin-bottom: .65rem;
    font-size: .88rem;
    color: rgba(255,255,255,.5);
}

.footer-section ul li a {
    color: rgba(255,255,255,.5);
    transition: color .2s;
}

.footer-section ul li a:hover {
    color: #FF0000;
}

.footer-bottom {
    border-top: 1px solid #1A1A1A;
    padding: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: .8rem;
    color: rgba(255,255,255,.3);
}

.legal-notice {
    font-size: .75rem;
    color: rgba(255,255,255,.25);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .prix-grid, .offres-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .header-nav {
        display: none;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .prix, .offres {
        padding: 4rem 1.5rem;
    }
    
    .prix-grid, .offres-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .switch-container {
        flex-direction: row;
        width: 100%;
    }
    
    .switch-btn {
        flex: 1;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .price-title {
        font-size: 1.3rem;
    }
    
    .comment-ca-marche {
        padding: 4rem 1.5rem;
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .avis {
        padding: 4rem 1.5rem;
    }
    
    .avis-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.6rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero {
        padding: 5rem 1rem 3rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .prix, .offres, .comment-ca-marche, .avis {
        padding: 3rem 1rem;
    }
    
    .price-card {
        padding: 1.5rem 1rem;
    }
    
    .price-amount {
        font-size: 2.25rem;
    }
    
    .price-title {
        font-size: 1.2rem;
    }
    
    .price-desc {
        font-size: 0.85rem;
    }
    
    .price-features li {
        font-size: 0.85rem;
    }
    
    .switch-btn {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }
    
    .step-item h3 {
        font-size: 1.1rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-section h4 {
        font-size: 1rem;
    }
}

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb {
    background: #0B0B0B;
    border-bottom: 1px solid #1A1A1A;
    padding: 0.6rem 2rem;
}

.breadcrumb-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.breadcrumb ol {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    font-size: 0.8rem;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,.35);
}

.breadcrumb li + li::before {
    content: '/';
    color: rgba(255,255,255,.2);
}

.breadcrumb a {
    color: #FF0000;
    text-decoration: none;
}

.breadcrumb a:hover { text-decoration: underline; }

.breadcrumb [aria-current="page"] {
    color: var(--black);
    font-weight: 600;
}

/* ============================================
   SECTION INTRO TEXT
   ============================================ */
.section-intro {
    text-align: center;
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
    max-width: 680px;
    margin: -1rem auto 2.5rem;
}

/* ============================================
   LOCATION PAGE – RESPONSIVE COMPLET
   ============================================ */
@media (max-width: 1024px) {
    .page-hero-container {
        gap: 3rem;
        padding: 0 1rem;
    }
    .tarifs-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    }
}

@media (max-width: 900px) {
    .page-hero-container {
        flex-direction: column;
        text-align: center;
    }
    .page-hero-stats {
        justify-content: center;
    }
    .page-hero-cta {
        justify-content: center;
    }
    .avantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .conditions-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .breadcrumb { padding: 0.5rem 1.25rem; }

    .page-hero {
        padding: 5rem 1.25rem 3rem;
    }
    .page-hero h1 {
        font-size: 2.4rem;
    }
    .page-hero-stats {
        flex-wrap: wrap;
        gap: 1.25rem 2rem;
    }

    .avantages-location,
    .fiche-suivi,
    .app-section,
    .tarifs,
    .conditions,
    .contact {
        padding: 4rem 1.25rem;
    }

    .tarifs-category {
        padding: 1.25rem;
        margin-bottom: 1.5rem;
    }

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

    .caution-option {
        grid-template-columns: 1fr;
    }

    .switch-container {
        width: 100%;
        justify-content: stretch;
    }
    .switch-btn {
        flex: 1;
        padding: 0.6rem 0.75rem;
        font-size: 0.85rem;
    }

    .section-intro {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .page-hero h1 { font-size: 1.9rem; }
    .page-hero-label { font-size: 0.75rem; }
    .page-stat-number { font-size: 1.6rem; }
    .page-hero-stats { gap: 1rem; }

    .avantages-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .location-price-card {
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto auto;
        column-gap: 0.75rem;
        padding: 0.85rem 0.85rem 0.85rem 1.1rem;
    }
    .location-price-badge {
        grid-column: 1;
        grid-row: 1;
    }
    .price-title {
        grid-column: 1;
        grid-row: 2;
    }
    .location-price-amount {
        grid-column: 2;
        grid-row: 1 / span 2;
        font-size: 1.35rem;
    }
    .location-price-cta {
        grid-column: 1 / -1;
        grid-row: 3;
        text-align: center;
        margin-top: 0.5rem;
        padding: 0.55rem;
    }

    .app-title { font-size: 1.6rem; }
    .fiche-suivi-title { font-size: 1.7rem; }

    .condition-card { padding: 1.5rem; }

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

/* ============================================
   CODE-ROUTE PAGE – RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
    .feature-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .feature-inner.reverse {
        direction: ltr;
    }
    .feature-title { font-size: 1.8rem; }
    .code-tarifs-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .feature-section { padding: 4rem 1.25rem; }
    .tarifs-code { padding: 4rem 1.25rem; }
    .faq-code { padding: 4rem 1.25rem; }
    .faq-grid {
        grid-template-columns: 1fr;
    }
    .code-pack-features {
        grid-template-columns: 1fr;
    }
    .code-pack-header {
        flex-direction: column;
        gap: 0.75rem;
    }
    .code-pack-price { text-align: left; }
}

@media (max-width: 480px) {
    .feature-title { font-size: 1.6rem; }
    .code-price-card {
        grid-template-columns: auto 1fr auto;
        grid-template-rows: auto auto;
        gap: 0.5rem;
    }
    .code-price-cta {
        grid-column: 1 / -1;
        grid-row: 2;
        text-align: center;
        padding: 0.55rem;
    }
    .code-pack-amount { font-size: 2rem; }
}

/* ============================================
   GUIDE PAGES — Styles communs (dark theme)
   ============================================ */

.guide-section {
    padding: 5rem 2rem;
    background: #0a0a0a;
    border-bottom: 1px solid #1e1e1e;
}

.guide-section--alt {
    background: #111111;
}

/* Titres et sous-titres dans les guides */
.guide-section .section-title {
    color: #ffffff;
}

.guide-section .section-title::after {
    background: #FF0000;
}

.guide-section p[style*="color:#6b7a99"],
.guide-section p[style*="color: #6b7a99"] {
    color: rgba(255,255,255,0.58) !important;
}

/* Étapes numérotées */
.guide-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 780px;
    margin: 0 auto;
}

.guide-step {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.guide-step-num {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: #FF0000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 4px;
    box-shadow: 0 4px 16px rgba(255,0,0,0.35);
}

.guide-step-body {
    flex: 1;
    background: #181818;
    border-radius: 14px;
    border: 1px solid #282828;
    padding: 1.25rem 1.5rem;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.guide-step-body:hover {
    border-color: rgba(255,0,0,0.28);
    box-shadow: 0 6px 22px rgba(255,0,0,0.07);
    transform: translateY(-1px);
}

.guide-step-body h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.guide-step-body p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.58);
    line-height: 1.65;
    margin: 0;
}

.guide-step-body a {
    color: #FF0000;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.guide-step-body a:hover { color: #ff4444; }

/* Boîte info */
.info-box {
    display: flex;
    gap: 1rem;
    background: rgba(255,0,0,0.06);
    border-left: 4px solid #FF0000;
    border-radius: 0 12px 12px 0;
    padding: 1.1rem 1.4rem;
    margin: 2rem 0;
    align-items: flex-start;
}

.info-box i {
    color: #FF0000;
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.info-box p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.65;
    margin: 0;
}

.info-box a {
    color: #FF0000;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Boîte warning */
.warn-box {
    display: flex;
    gap: 1rem;
    background: rgba(245,166,35,0.07);
    border-left: 4px solid #f5a623;
    border-radius: 0 12px 12px 0;
    padding: 1.1rem 1.4rem;
    margin: 2rem 0;
    align-items: flex-start;
}

.warn-box i {
    color: #f5a623;
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.warn-box p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.65;
    margin: 0;
}

/* Checklist documents */
.doc-checklist {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.doc-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    background: #181818;
    border: 1px solid #282828;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.doc-item:hover {
    border-color: rgba(255,0,0,0.25);
    box-shadow: 0 4px 16px rgba(255,0,0,0.06);
}

.doc-item-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 9px;
    background: rgba(255,0,0,0.12);
    color: #FF0000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.doc-item-text strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.2rem;
}

.doc-item-text span {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.48);
    line-height: 1.4;
}

/* Grille avantages */
.guide-avantages {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
}

.guide-avantage-card {
    background: #181818;
    border: 1px solid #282828;
    border-radius: 16px;
    padding: 1.75rem 1.25rem;
    text-align: center;
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.guide-avantage-card:hover {
    border-color: rgba(255,0,0,0.3);
    box-shadow: 0 8px 28px rgba(255,0,0,0.08);
    transform: translateY(-3px);
}

.guide-avantage-card .ga-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(255,0,0,0.12);
    color: #FF0000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin: 0 auto 1rem;
    transition: background 0.25s;
}

.guide-avantage-card:hover .ga-icon {
    background: rgba(255,0,0,0.22);
}

.guide-avantage-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.4rem;
}

.guide-avantage-card p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.52);
    line-height: 1.55;
    margin: 0;
}

/* Tableau comparatif */
.compare-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.5);
    margin-top: 1.5rem;
}

.compare-table th {
    background: #FF0000;
    color: #fff;
    padding: 1rem 1.25rem;
    text-align: left;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.compare-table td {
    padding: 0.85rem 1.25rem;
    font-size: 0.87rem;
    color: rgba(255,255,255,0.78);
    background: #181818;
    border-bottom: 1px solid #242424;
}

.compare-table tr:last-child td { border-bottom: none; }

.compare-table tr:nth-child(even) td { background: #131313; }

.compare-table .td-yes { color: #4ade80; font-weight: 700; }
.compare-table .td-no  { color: #f87171; font-weight: 700; }

/* Responsive guides */
@media (max-width: 640px) {
    .guide-step {
        flex-direction: column;
        gap: 0.5rem;
    }
    .guide-step-num {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 0.9rem;
    }
    .doc-checklist { grid-template-columns: 1fr; }
    .compare-table { font-size: 0.8rem; }
    .compare-table th,
    .compare-table td { padding: 0.65rem 0.85rem; }
}

/* ============================================
   BLOG — Listing & Articles
   ============================================ */

/* Hero blog */
.blog-hero {
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-primary) 100%);
    padding: 5rem 2rem 4rem;
    text-align: center;
    color: #fff;
}

.blog-hero-label {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    margin-bottom: 1.25rem;
}

.blog-hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.blog-hero h1 span {
    color: rgba(255,255,255,0.7);
}

.blog-hero p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Filtres blog */
.blog-filters {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    padding: 1.5rem 1rem 0;
}

.blog-filter-btn {
    padding: 0.45rem 1.1rem;
    border-radius: 50px;
    border: 2px solid #e4eaf6;
    background: #fff;
    color: #6b7a99;
    font-size: 0.83rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.blog-filter-btn.active,
.blog-filter-btn:hover {
    background: var(--blue-primary);
    border-color: var(--blue-primary);
    color: #fff;
}

/* Grid listing */
.blog-listing {
    padding: 3rem 2rem 5rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.75rem;
    max-width: 1100px;
    margin: 0 auto;
}

/* Carte article */
.blog-card {
    background: #fff;
    border-radius: 18px;
    border: 1.5px solid #e4eaf6;
    overflow: hidden;
    transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(13, 59, 142, 0.10);
    border-color: rgba(13, 59, 142, 0.2);
}

.blog-card-img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-primary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    flex-shrink: 0;
}

.blog-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.blog-card-tag {
    display: inline-block;
    background: rgba(13, 59, 142, 0.08);
    color: var(--blue-primary);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.25rem 0.7rem;
    border-radius: 50px;
}

.blog-card-date {
    font-size: 0.78rem;
    color: #aab2c8;
}

.blog-card-read {
    font-size: 0.78rem;
    color: #aab2c8;
    margin-left: auto;
}

.blog-card h2 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1.4;
    margin-bottom: 0.65rem;
    transition: color 0.2s;
}

.blog-card:hover h2 {
    color: var(--blue-primary);
}

.blog-card-excerpt {
    font-size: 0.86rem;
    color: #7a8aaa;
    line-height: 1.65;
    flex: 1;
    margin-bottom: 1.25rem;
}

.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid #f0f3fa;
}

.blog-card-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #8a96b0;
    font-weight: 600;
}

.blog-card-author-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--blue-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 800;
}

.blog-card-link {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--blue-primary);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

/* ---- Page article individuelle ---- */
.article-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 1.5rem 5rem;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
    align-items: start;
}

/* En-tête article */
.article-header {
    padding: 4rem 2rem 0;
    max-width: 800px;
    margin: 0 auto;
}

.article-header-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.article-tag {
    display: inline-block;
    background: rgba(13, 59, 142, 0.09);
    color: var(--blue-primary);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
}

.article-date,
.article-read-time {
    font-size: 0.82rem;
    color: #aab2c8;
}

.article-header h1 {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: var(--black);
    line-height: 1.25;
    margin-bottom: 1.1rem;
}

.article-header .article-intro {
    font-size: 1.05rem;
    color: #6b7a99;
    line-height: 1.75;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #f0f3fa;
}

/* Corps de l'article */
.article-body {
    font-size: 0.97rem;
    color: #3a4460;
    line-height: 1.8;
}

.article-body h2 {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--black);
    margin: 2.5rem 0 1rem;
    padding-top: 0.5rem;
}

.article-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
    margin: 1.75rem 0 0.75rem;
}

.article-body p {
    margin-bottom: 1.25rem;
}

.article-body ul,
.article-body ol {
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
}

.article-body li {
    margin-bottom: 0.5rem;
}

.article-body a {
    color: var(--blue-primary);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.article-body strong {
    color: var(--black);
    font-weight: 700;
}

.article-body .article-highlight {
    background: rgba(13, 59, 142, 0.05);
    border-left: 4px solid var(--blue-primary);
    border-radius: 0 12px 12px 0;
    padding: 1.1rem 1.4rem;
    margin: 1.75rem 0;
    font-size: 0.92rem;
    color: var(--black);
    line-height: 1.65;
}

.article-body .article-highlight strong {
    color: var(--blue-primary);
}

/* Sidebar */
.article-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-box {
    background: #fff;
    border: 1.5px solid #e4eaf6;
    border-radius: 18px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.sidebar-box h3 {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #f0f3fa;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.sidebar-toc {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sidebar-toc a {
    font-size: 0.85rem;
    color: #6b7a99;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.2s;
}

.sidebar-toc a:hover { color: var(--blue-primary); }

.sidebar-toc a::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #d0d8ee;
    flex-shrink: 0;
    transition: background 0.2s;
}

.sidebar-toc a:hover::before { background: var(--blue-primary); }

.sidebar-cta-box {
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-primary) 100%);
    border-radius: 18px;
    padding: 1.75rem 1.5rem;
    text-align: center;
    color: #fff;
}

.sidebar-cta-box h3 {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.6rem;
}

.sidebar-cta-box p {
    font-size: 0.83rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.55;
    margin-bottom: 1.25rem;
}

.sidebar-cta-box .btn-white {
    display: inline-block;
    background: #fff;
    color: var(--blue-primary);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.65rem 1.4rem;
    border-radius: 50px;
    text-decoration: none;
    transition: opacity 0.2s;
}

.sidebar-cta-box .btn-white:hover { opacity: 0.9; }

/* Articles liés */
.related-articles {
    padding: 3rem 2rem 4rem;
    background: var(--gray-light);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
    max-width: 1100px;
    margin: 1.5rem auto 0;
}

/* Pagination blog */
.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.blog-page-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1.5px solid #e4eaf6;
    background: #fff;
    color: #6b7a99;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    text-decoration: none;
}

.blog-page-btn.active,
.blog-page-btn:hover {
    background: var(--blue-primary);
    border-color: var(--blue-primary);
    color: #fff;
}

/* Responsive blog */
@media (max-width: 900px) {
    .article-wrap {
        grid-template-columns: 1fr;
    }
    .article-sidebar {
        position: static;
    }
}

@media (max-width: 640px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .article-header {
        padding: 2rem 1rem 0;
    }
    .blog-hero {
        padding: 3.5rem 1.25rem 3rem;
    }
}
