/*
Theme Name: Cabinet Lassort
Theme URI: https://lassort-avocat.fr
Author: Cabinet G. Lassort
Description: Thème personnalisé pour le Cabinet G. Lassort - Avocat au Barreau de Bordeaux
Version: 1.1
License: Private
Text Domain: lassort
*/

/* ========================================
   VARIABLES & BASE
======================================== */
:root {
    /* Couleurs principales - ADN Lassort */
    --color-primary: #1E3A32;
    --color-primary-light: #2A4F44;
    --color-primary-dark: #152A25;

    /* Accent or mat - subtil, pas brillant */
    --color-accent: #9A8B6E;
    --color-accent-dark: #8B7D5C;

    /* Neutres */
    --color-text: #1a1a1a;
    --color-gray: #666666;
    --color-light-gray: #999999;
    --color-cream: #f8f8f8;
    --color-white: #ffffff;
    --color-black: #0D0D0D;

    /* Typographie */
    --font-script: 'Great Vibes', cursive;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Espacements - Style épuré (Troisgros) */
    --section-padding: 180px;
    --section-padding-mobile: 100px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-white);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ========================================
   HEADER
======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 40px;
    background: transparent;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: var(--color-white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    padding: 15px 40px;
}

.logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.logo-script {
    font-family: var(--font-script);
    font-size: 2rem;
    color: var(--color-primary);
    line-height: 1;
}

.logo-subtitle {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-gray);
    margin-top: 2px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.btn-rdv {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-primary);
    padding: 14px 28px;
    min-height: 44px;
    border: 1px solid var(--color-primary);
    transition: all 0.3s ease;
}

.btn-rdv:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

/* Menu Burger */
.menu-burger {
    width: 44px;
    height: 44px;
    position: relative;
    cursor: pointer;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-primary);
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.menu-burger span:nth-child(1) { top: 0; }
.menu-burger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.menu-burger span:nth-child(3) { bottom: 0; }

.menu-burger.active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    background: var(--color-white);
}

.menu-burger.active span:nth-child(2) {
    opacity: 0;
}

.menu-burger.active span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
    background: var(--color-white);
}

/* ========================================
   FULLSCREEN MENU
======================================== */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-primary);
    z-index: 9999;
    display: flex;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease, visibility 0s 0.4s;
}

.fullscreen-menu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.4s ease, visibility 0s;
}

.menu-close {
    position: absolute;
    top: 25px;
    right: 25px;
    background: none;
    border: none;
    color: var(--color-primary);
    font-size: 2rem;
    cursor: pointer;
    z-index: 10000;
    line-height: 1;
    padding: 10px;
    transition: opacity 0.3s ease;
    font-weight: 300;
}

.menu-close:hover {
    opacity: 0.6;
}

.menu-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 100px 80px 60px;
    position: relative;
    overflow: hidden;
    background: var(--color-primary);
}

.menu-building-bg {
    position: absolute;
    right: -5%;
    bottom: 0;
    width: 70%;
    height: auto;
    opacity: 0.6;
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: lighten;
}

.menu-nav-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
}

.menu-categories {
    list-style: none;
}

.menu-category {
    margin-bottom: 25px;
}

.menu-category > a {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--color-white);
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.menu-category > a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-accent);
    transition: width 0.3s ease;
}

.menu-category:hover > a::after,
.menu-category.expanded > a::after {
    width: 100%;
}

.menu-category > a:hover {
    transform: translateX(10px);
}

/* Sous-menus avec hover */
.menu-subcategories {
    list-style: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    margin-top: 15px;
    padding-left: 25px;
    opacity: 0;
}

.menu-category.expanded .menu-subcategories {
    max-height: 500px !important;
    opacity: 1 !important;
    display: block !important;
    visibility: visible !important;
}

.menu-subcategories li {
    margin-bottom: 12px;
    transform: translateX(-20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.menu-category.expanded .menu-subcategories li {
    transform: translateX(0) !important;
    opacity: 1 !important;
}

.menu-category.expanded .menu-subcategories li:nth-child(1) { transition-delay: 0.1s; }
.menu-category.expanded .menu-subcategories li:nth-child(2) { transition-delay: 0.15s; }
.menu-category.expanded .menu-subcategories li:nth-child(3) { transition-delay: 0.2s; }
.menu-category.expanded .menu-subcategories li:nth-child(4) { transition-delay: 0.25s; }
.menu-category.expanded .menu-subcategories li:nth-child(5) { transition-delay: 0.3s; }

.menu-subcategories a {
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    transition: all 0.3s ease;
    display: inline-block;
}

.menu-subcategories a:hover {
    color: var(--color-white);
    transform: translateX(10px);
}

/* Menu secondaire (Honoraires, Actualités, Contact) */
.menu-secondary {
    list-style: none;
    margin-top: auto;
    padding-top: 40px;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
}

.menu-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 280px;
    height: 1px;
    background: var(--color-accent);
}

.menu-secondary li {
    margin: 0;
}

.menu-secondary a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.menu-secondary a:hover {
    color: var(--color-white);
}

.menu-right {
    width: 350px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px;
    text-align: center;
}

.menu-right-logo {
    margin-bottom: 30px;
}

.menu-right-logo img {
    height: 120px;
    width: auto;
}

.menu-contact {
    margin-top: 60px;
    color: var(--color-gray);
    font-size: 0.95rem;
    line-height: 1.8;
}

.menu-contact .phone {
    margin-top: 20px;
}

.menu-contact .phone a {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--color-primary);
}

.menu-contact .urgence {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-top: 5px;
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(to bottom, var(--color-cream) 0%, var(--color-white) 100%);
    padding: 0 40px;
}

.hero-content {
    max-width: 800px;
}

.hero-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--color-primary);
}

.hero h1 {
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 300;
    color: var(--color-text);
    line-height: 1.1;
    margin-bottom: 30px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--color-gray);
    line-height: 1.8;
    margin-bottom: 50px;
}

/* ========================================
   PAGE HERO
======================================== */
.page-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--color-cream);
    padding: 120px 40px 80px;
}

.page-hero.urgency {
    background: var(--color-primary);
}

.page-hero.urgency .page-hero-label,
.page-hero.urgency h1,
.page-hero.urgency .page-hero-subtitle {
    color: var(--color-white);
}

.page-hero.urgency .page-hero-label {
    border-color: rgba(255,255,255,0.3);
}

.page-hero-content {
    max-width: 800px;
}

.page-hero-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--color-primary);
}

.page-hero h1 {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--color-text);
    line-height: 1.1;
    margin-bottom: 20px;
}

.page-hero-subtitle {
    font-size: 1.1rem;
    color: var(--color-gray);
    line-height: 1.8;
}

/* ========================================
   BUTTONS
======================================== */
.btn {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 15px 35px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
}

.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn-white {
    background: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-white);
}

.btn-white:hover {
    background: transparent;
    color: var(--color-white);
}

/* ========================================
   SECTIONS
======================================== */
.section {
    padding: var(--section-padding) 0;
}

@media (max-width: 768px) {
    .section {
        padding: var(--section-padding-mobile) 0;
    }
}

.section-alt {
    background: var(--color-cream);
}

.section-primary {
    background: var(--color-primary);
    color: var(--color-white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--color-text);
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    line-height: 1.1;
}

.section-header p {
    font-size: 1rem;
    color: var(--color-gray);
}

.section-header-light h2 {
    color: var(--color-white);
}

.section-header-light p {
    color: rgba(255,255,255,0.7);
}

/* ========================================
   INTRO GRID
======================================== */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.intro-content h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 30px;
}

.intro-content .lead {
    font-size: 1.2rem;
    color: var(--color-gray);
    margin-bottom: 25px;
    line-height: 1.8;
}

.intro-content p {
    color: var(--color-gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.intro-content blockquote {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 300;
    color: var(--color-primary);
    padding: 40px 0;
    border: none;
    margin: 40px 0;
    position: relative;
    line-height: 1.6;
}

.intro-content blockquote::before {
    content: '"';
    font-family: var(--font-serif);
    font-size: 4rem;
    color: var(--color-accent);
    position: absolute;
    top: 0;
    left: -10px;
    line-height: 1;
    opacity: 0.5;
}

.intro-image {
    height: 500px;
    background: var(--color-cream);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ========================================
   SERVICES
======================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-card {
    padding: 50px 40px;
    background: var(--color-white);
    border: none;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
}

.service-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    transform: translateY(-8px);
}

.service-card-icon {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.service-card h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--color-gray);
    line-height: 1.7;
    margin-bottom: 25px;
}

.services-list {
    max-width: 800px;
    margin: 0 auto;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 30px 0;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-item:hover {
    padding-left: 15px;
}

.service-item-icon {
    font-size: 1.5rem;
    width: 50px;
    text-align: center;
}

.service-item h4 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 5px;
}

.service-item p {
    font-size: 0.9rem;
    color: var(--color-gray);
}

.service-item-arrow {
    margin-left: auto;
    font-size: 1.2rem;
    color: var(--color-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-item:hover .service-item-arrow {
    opacity: 1;
}

/* ========================================
   PROCESS STEPS
======================================== */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
}

.process-step-number {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 300;
    color: var(--color-primary);
    opacity: 0.3;
    margin-bottom: 20px;
}

.process-step h4 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 15px;
}

.process-step p {
    font-size: 0.9rem;
    color: var(--color-gray);
    line-height: 1.6;
}

/* ========================================
   ENGAGEMENTS
======================================== */
.engagements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: var(--color-primary-light);
    border-radius: 4px;
    overflow: hidden;
}

.engagement-card {
    padding: 40px 30px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.engagement-card:nth-child(4n) {
    border-right: none;
}

.engagement-card h4 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--color-white);
    margin-bottom: 15px;
}

.engagement-card p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

/* ========================================
   LANGUES
======================================== */
.langues-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.langues-content h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 20px;
}

.langues-content p {
    color: var(--color-gray);
    line-height: 1.8;
}

.langues-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.langue-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    background: var(--color-white);
    border: 1px solid #eee;
}

.langue-flag {
    font-size: 1.5rem;
}

.langue-name {
    font-size: 0.95rem;
}

.langue-level {
    font-size: 0.75rem;
    color: var(--color-gray);
    margin-left: auto;
    font-style: italic;
}

/* ========================================
   TIMELINE
======================================== */
.timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #eee;
}

.timeline-item {
    padding-left: 40px;
    padding-bottom: 40px;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -4px;
    top: 5px;
    width: 9px;
    height: 9px;
    background: var(--color-primary);
    border-radius: 50%;
}

.timeline-year {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-primary);
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.timeline-item h4 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 8px;
}

.timeline-item p {
    font-size: 0.95rem;
    color: var(--color-gray);
}

/* ========================================
   HONORAIRES
======================================== */
.honoraires-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.honoraires-intro p {
    color: var(--color-gray);
    line-height: 1.8;
}

.honoraires-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.honoraire-card {
    background: var(--color-white);
    border: 1px solid #eee;
    padding: 40px 30px;
    text-align: center;
}

.honoraire-card.featured {
    border-color: var(--color-primary);
    position: relative;
}

.honoraire-card.featured::before {
    content: 'Populaire';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: white;
    font-size: 0.7rem;
    padding: 5px 15px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.honoraire-card h4 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 10px;
}

.honoraire-price {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 5px;
}

.honoraire-price span {
    font-size: 1rem;
    color: var(--color-gray);
}

.honoraire-card p {
    font-size: 0.9rem;
    color: var(--color-gray);
    margin-bottom: 25px;
}

/* ========================================
   CONTACT GRID
======================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
}

.contact-info h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 30px;
}

.contact-item {
    margin-bottom: 25px;
}

.contact-item strong {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.contact-item p {
    color: var(--color-gray);
    line-height: 1.6;
}

.contact-item a {
    color: var(--color-primary);
    transition: opacity 0.3s ease;
}

.contact-item a:hover {
    opacity: 0.7;
}

/* ========================================
   CTA
======================================== */
.cta {
    background: var(--color-primary);
    padding: 80px 0;
    text-align: center;
}

.cta h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--color-white);
    margin-bottom: 15px;
}

.cta p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 35px;
}

/* ========================================
   FOOTER
======================================== */
.footer {
    background: var(--color-text);
    color: var(--color-white);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    font-family: var(--font-script);
    font-size: 2rem;
    margin-bottom: 5px;
}

.footer-logo-sub {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 20px;
}

.footer p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer a {
    color: rgba(255,255,255,0.7);
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--color-white);
}

.footer h4 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

/* ========================================
   FOOTER LIGNE
======================================== */
.footer-line {
    background: #ffffff;
    padding: 20px 0;
    border-top: 1px solid #eee;
}

.footer-line-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.footer-line-links {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-line-links a {
    font-size: 0.75rem;
    color: var(--color-gray);
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: color 0.3s ease;
}

.footer-line-links a:hover {
    color: var(--color-primary);
}

.footer-line-links .separator {
    color: #ddd;
    font-size: 0.6rem;
}

.footer-line-links .copyright {
    font-size: 0.7rem;
    color: var(--color-light-gray);
}

.footer-line-logo img {
    height: 40px;
    width: auto;
}

@media (max-width: 768px) {
    .footer-line-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-line-links {
        justify-content: center;
    }
}

/* ========================================
   TABLES
======================================== */
.delais-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
}

.delais-table th,
.delais-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.delais-table th {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-primary);
    background: var(--color-cream);
}

.delais-table td {
    font-size: 0.95rem;
    color: var(--color-text);
}

.delais-table .urgent {
    color: var(--color-primary);
    font-weight: 600;
}

/* ========================================
   URGENCY STRIP
======================================== */
.urgency-strip {
    background: var(--color-primary);
    color: white;
    text-align: center;
    padding: 15px 20px;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

.urgency-strip a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.urgency-strip a:hover {
    text-decoration: underline;
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .engagements-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .honoraires-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header {
        padding: 20px;
    }

    .btn-rdv {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .page-hero h1 {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .intro-image {
        height: 300px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .engagements-grid {
        grid-template-columns: 1fr;
    }

    .langues-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .menu-left {
        padding: 100px 40px;
    }

    .menu-category > a {
        font-size: 1.8rem;
    }

    .menu-right {
        display: none;
    }

    .container {
        padding: 0 20px;
    }
}

/* ========================================
   ACCESSIBILITE
======================================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ========================================
   STYLE WIX - HEADER
======================================== */
.header-wix {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 25px 50px;
    background: transparent;
    transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.header-wix.scrolled {
    background: #ffffff;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    padding: 15px 50px;
}

.logo-wix {
    display: block;
}

.logo-wix img {
    height: 120px;
    width: auto;
}

.nav-wix {
    display: flex;
    gap: 50px;
    align-items: center;
    padding-top: 20px;
}

.nav-wix a {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--color-primary);
    text-decoration: none;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.nav-wix a:hover {
    opacity: 0.7;
}

.nav-wix .urgence-link {
    color: var(--color-primary);
}

.nav-wix .lang-switch {
    font-size: 0.75rem !important;
    font-weight: 600;
    letter-spacing: 0.1em;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}
.nav-wix .lang-switch:hover {
    opacity: 1;
}

/* ========================================
   STYLE WIX - HERO
======================================== */
.hero-wix {
    min-height: 100vh;
    background: linear-gradient(135deg, #e8eaed 0%, #d4d8dc 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10%;
    position: relative;
    overflow: hidden;
}

.hero-wix-content {
    max-width: 500px;
    z-index: 2;
}

.hero-wix-title {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--color-primary);
    letter-spacing: 0.03em;
    line-height: 1.1;
    margin-bottom: 12px;
}

.hero-wix-subtitle {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--color-light-gray);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.hero-wix-domains {
    display: flex;
    gap: 30px;
}

.hero-wix-domains a {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--color-primary);
    text-decoration: none;
    padding-bottom: 5px;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.hero-wix-domains a:hover {
    border-bottom-color: var(--color-primary);
}

.hero-wix-image {
    position: absolute;
    right: 5%;
    bottom: 0;
    height: 90%;
    z-index: 1;
}

.hero-wix-image img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

@media (max-width: 1024px) {
    .hero-wix {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 120px 40px 60px;
    }

    .hero-wix-content {
        max-width: 100%;
    }

    .hero-wix-domains {
        justify-content: center;
    }

    .hero-wix-image {
        position: relative;
        right: auto;
        height: 50vh;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .header-wix {
        padding: 15px 20px;
        flex-direction: row;
        align-items: center;
    }

    .logo-wix img {
        height: 50px;
    }

    .nav-wix {
        gap: 20px;
        padding-top: 0;
    }

    .nav-wix a {
        font-size: 0.85rem;
        letter-spacing: 0.1em;
    }

    .hero-wix-title {
        font-size: 2.5rem;
    }

    .hero-wix-subtitle {
        font-size: 0.8rem;
    }
}

/* ========================================
   BLOG - ARCHIVE
======================================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--color-white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.blog-card-image {
    display: block;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 25px;
}

.blog-card-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 0.8rem;
}

.blog-card-date {
    color: var(--color-gray);
}

.blog-card-category {
    color: var(--color-primary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-card-title {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 12px;
}

.blog-card-title a {
    color: var(--color-text);
    transition: color 0.2s ease;
}

.blog-card-title a:hover {
    color: var(--color-primary);
}

.blog-card-excerpt {
    font-size: 0.9rem;
    color: var(--color-gray);
    line-height: 1.6;
    margin-bottom: 15px;
}

.blog-card-link {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-pagination {
    margin-top: 50px;
    text-align: center;
}

.blog-pagination .page-numbers {
    display: inline-block;
    padding: 10px 15px;
    margin: 0 5px;
    color: var(--color-text);
    transition: all 0.2s ease;
}

.blog-pagination .page-numbers.current,
.blog-pagination .page-numbers:hover {
    background: var(--color-primary);
    color: white;
}

/* ========================================
   BLOG - SINGLE POST
======================================== */
.post-hero {
    padding: 160px 0 60px;
    background: var(--color-cream);
}

.post-hero-content {
    max-width: 800px;
}

.post-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 0.85rem;
}

.post-date {
    color: var(--color-gray);
}

.post-category {
    color: var(--color-primary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.post-title {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-text);
    margin-bottom: 20px;
}

.post-excerpt {
    font-size: 1.2rem;
    color: var(--color-gray);
    line-height: 1.6;
}

.post-featured-image {
    margin: -30px 0 50px;
}

.post-featured-image img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 4px;
}

.post-content {
    padding: 0 0 60px;
}

.post-body {
    max-width: 750px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text);
}

.post-body h2 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 400;
    margin: 40px 0 20px;
    color: var(--color-primary);
}

.post-body h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 500;
    margin: 30px 0 15px;
}

.post-body p {
    margin-bottom: 20px;
}

.post-body ul, .post-body ol {
    margin: 20px 0;
    padding-left: 25px;
}

.post-body li {
    margin-bottom: 10px;
}

.post-body blockquote {
    margin: 30px 0;
    padding: 25px 30px;
    background: var(--color-cream);
    border-left: 3px solid var(--color-primary);
    font-style: italic;
    font-size: 1.1rem;
}

.post-body a {
    color: var(--color-primary);
    border-bottom: 1px solid var(--color-primary);
}

.post-tags {
    max-width: 750px;
    margin: 40px auto;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.post-tags span {
    font-weight: 500;
    margin-right: 10px;
}

.post-tags a {
    display: inline-block;
    padding: 5px 12px;
    margin: 5px;
    background: var(--color-cream);
    color: var(--color-gray);
    font-size: 0.85rem;
    border-radius: 3px;
    transition: all 0.2s ease;
}

.post-tags a:hover {
    background: var(--color-primary);
    color: white;
}

.post-author {
    max-width: 750px;
    margin: 40px auto;
    padding: 25px;
    background: var(--color-cream);
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.post-author-info {
    display: flex;
    flex-direction: column;
}

.post-author-name {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--color-primary);
}

.post-author-title {
    font-size: 0.9rem;
    color: var(--color-gray);
}

.post-cta {
    padding: 60px 0;
    background: var(--color-cream);
}

.post-cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.post-cta-box h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 15px;
}

.post-cta-box p {
    color: var(--color-gray);
    margin-bottom: 25px;
}

.post-cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.post-related-pages {
    padding: 40px 0;
    background: var(--color-cream, #f8f6f1);
}

.post-related-pages h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 20px;
    color: var(--color-primary);
}

.related-pages-links {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.related-pages-links a {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid var(--color-primary);
    border-radius: 25px;
    color: var(--color-primary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.related-pages-links a:hover {
    background: var(--color-primary);
    color: var(--color-white, #fff);
}

.related-posts {
    padding: 60px 0;
}

.related-posts h2 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 30px;
    text-align: center;
}

/* ========================================
   ACCESSIBILITÉ
======================================== */
/* Skip Link - visible uniquement au focus */
.skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: var(--color-white);
    padding: 15px 25px;
    z-index: 100000;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 0 0 4px 4px;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
    outline: 3px solid var(--color-white);
    outline-offset: 2px;
}

/* Screen Reader Text */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    width: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    clip: auto !important;
    clip-path: none;
    display: block;
    height: auto;
    width: auto;
    z-index: 100000;
}

/* Focus visible amélioré */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--color-primary);
    outline-offset: 2px;
}

/* ========================================
   UTILITAIRES (remplacement styles inline)
======================================== */
/* Hero compact pour pages intérieures */
.hero-compact {
    min-height: auto;
    padding: 140px 40px 60px;
}

/* Boutons CTA en groupe */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* Bouton outline blanc */
.btn-outline-white {
    border: 1px solid white;
    color: white;
    background: transparent;
}

.btn-outline-white:hover {
    background: white;
    color: var(--color-primary);
}

/* Texte centré */
.text-center {
    text-align: center;
}

/* Padding sections */
.py-60 {
    padding-top: 60px;
    padding-bottom: 60px;
}

/* Taille de police */
.text-large {
    font-size: 1.3rem;
}

.text-small {
    font-size: 0.85rem;
}

.text-xs {
    font-size: 0.8rem;
}

/* Couleurs texte */
.text-gray {
    color: var(--color-gray);
}

.text-primary {
    color: var(--color-primary);
}

.text-white {
    color: var(--color-white);
}

/* Margin top */
.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

/* Full width */
.w-full {
    width: 100%;
}

/* Blog responsive */
@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .post-title {
        font-size: 2rem;
    }

    .post-body {
        font-size: 1rem;
    }

    .post-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* ========================================
   PHASE 5 - REDESIGN PREMIUM
======================================== */

/* Couleur accent */
.text-accent {
    color: var(--color-accent);
}

.border-accent {
    border-color: var(--color-accent);
}

/* Icones SVG */
.service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 25px;
    color: var(--color-primary);
    stroke-width: 1.5;
}

.service-icon-accent {
    color: var(--color-accent);
}

/* Section Resultats */
.results-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
    padding: 80px 0;
    border-top: 1px solid rgba(0,0,0,0.08);
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.result-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.result-number {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--color-accent);
    line-height: 1;
}

.result-label {
    font-size: 0.9rem;
    color: var(--color-gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@media (max-width: 768px) {
    .results-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .result-number {
        font-size: 2.5rem;
    }
}

/* Hero simplifie */
.hero-minimal {
    min-height: 100vh;
    background: var(--color-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 40px;
}

.hero-minimal h1 {
    font-family: var(--font-serif);
    font-size: 5rem;
    font-weight: 300;
    color: var(--color-primary);
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.hero-minimal .tagline {
    font-size: 1.2rem;
    color: var(--color-gray);
    max-width: 600px;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .hero-minimal h1 {
        font-size: 3rem;
    }
}

/* ========================================
   PHASE 5.2 - STYLE VEY/TROISGROS
======================================== */

/* Cartes expertise - style minimaliste */
.expertise-card {
    padding: 40px;
    background: var(--color-white);
    border: none;
    border-left: 3px solid transparent;
    transition: all 0.4s ease;
    position: relative;
}

.expertise-card:hover {
    border-left-color: var(--color-accent);
    background: var(--color-cream);
}

.expertise-card-icon {
    width: 40px;
    height: 40px;
    color: var(--color-primary);
    stroke-width: 1.5;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.expertise-card:hover .expertise-card-icon {
    color: var(--color-accent);
}

.expertise-card h4 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 12px;
    color: var(--color-text);
}

.expertise-card p {
    font-size: 0.95rem;
    color: var(--color-gray);
    line-height: 1.7;
}

/* Grille expertise */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid rgba(0,0,0,0.08);
    border-left: 1px solid rgba(0,0,0,0.08);
}

.expertise-grid .expertise-card {
    border-right: 1px solid rgba(0,0,0,0.08);
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

@media (max-width: 1024px) {
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .expertise-grid {
        grid-template-columns: 1fr;
    }
}

/* Citation statement - style Vey */
.statement {
    text-align: center;
    padding: 100px 40px;
    max-width: 900px;
    margin: 0 auto;
}

.statement-text {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--color-primary);
    line-height: 1.4;
    letter-spacing: -0.02em;
}

.statement-author {
    margin-top: 30px;
    font-size: 0.9rem;
    color: var(--color-gray);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

@media (max-width: 768px) {
    .statement {
        padding: 60px 20px;
    }

    .statement-text {
        font-size: 1.8rem;
    }
}

/* Icones service-item améliorées */
.service-item-icon svg {
    width: 32px;
    height: 32px;
    color: var(--color-primary);
    stroke-width: 1.5;
}

.service-item:hover .service-item-icon svg {
    color: var(--color-accent);
}

/* Boutons avec micro-animation */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::after {
    left: 100%;
}

/* Section avec bordure accent */
.section-bordered {
    border-top: 3px solid var(--color-accent);
}

/* Liste à puces élégante */
.elegant-list {
    list-style: none;
    margin: 30px 0;
}

.elegant-list li {
    padding: 12px 0;
    padding-left: 25px;
    position: relative;
    color: var(--color-gray);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.elegant-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 1px;
    background: var(--color-accent);
}

.elegant-list li:last-child {
    border-bottom: none;
}

/* Carte info avec accent */
.info-card {
    background: var(--color-cream);
    padding: 30px;
    border-radius: 4px;
    border-left: 3px solid var(--color-primary);
}

.info-card h4 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.info-card p {
    font-size: 0.95rem;
    color: var(--color-gray);
    line-height: 1.7;
}

.info-card.accent {
    border-left-color: var(--color-accent);
}

.info-card.primary-bg {
    background: var(--color-primary);
    border-left: none;
}

.info-card.primary-bg h4,
.info-card.primary-bg p {
    color: var(--color-white);
}

.info-card.primary-bg p {
    opacity: 0.9;
}

/* Grands chiffres style Troisgros */
.big-number {
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 300;
    color: var(--color-primary);
    line-height: 1;
}

.big-number-label {
    font-size: 0.85rem;
    color: var(--color-gray);
    margin-top: 8px;
}

/* Séparateur élégant */
.divider {
    width: 60px;
    height: 1px;
    background: var(--color-accent);
    margin: 40px auto;
}

.divider-left {
    margin-left: 0;
}

/* Animation fade-in au scroll */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Témoignages */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--color-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   ANIMATIONS PREMIUM - NEXT LEVEL
======================================== */

/* --- Reveal Animations (Scroll) --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered reveal pour les grilles */
.reveal-stagger > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.2s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.3s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.4s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.5s; }

.reveal-stagger.visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* Reveal from left */
.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Reveal from right */
.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Scale reveal */
.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* --- Hero Amélioré --- */
.hero-wix {
    position: relative;
    overflow: hidden;
}

.hero-wix::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    transform: scale(1.1);
    transition: transform 0.3s ease-out;
    z-index: -1;
}

.hero-content {
    animation: heroFadeIn 1s ease-out forwards;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    animation: heroTitleReveal 1s ease-out 0.2s forwards;
    opacity: 0;
}

@keyframes heroTitleReveal {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Cartes Services Premium --- */
.service-card {
    position: relative;
    border-left: 3px solid transparent;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -3px;
    width: 3px;
    height: 0;
    background: var(--color-accent);
    transition: height 0.4s ease;
}

.service-card:hover::before {
    height: 100%;
}

.service-card:hover {
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    transform: translateY(-10px) scale(1.02);
    border-left-color: var(--color-accent);
}

.service-card-icon svg,
.service-card-icon img {
    transition: transform 0.4s ease, filter 0.4s ease;
}

.service-card:hover .service-card-icon svg,
.service-card:hover .service-card-icon img {
    transform: scale(1.1);
    filter: brightness(0) saturate(100%) invert(58%) sepia(11%) saturate(894%) hue-rotate(6deg) brightness(92%) contrast(87%);
}

/* --- Compteurs Animés --- */
.stat-number {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--color-primary);
    line-height: 1;
    display: inline-block;
}

.stat-number.counting {
    animation: countPulse 0.1s ease-in-out;
}

@keyframes countPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.stat-item {
    text-align: center;
    padding: 30px;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--color-gray);
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stat-number {
        font-size: 2.5rem;
    }
}

/* --- Séparateurs Élégants --- */
.section-divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent), transparent);
    margin: 0 auto 50px;
    position: relative;
}

.section-divider::before {
    content: '';
    position: absolute;
    left: 0;
    top: -3px;
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
}

.section-divider-center {
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
    margin: 60px auto;
}

/* --- Boutons Premium --- */
.btn-primary,
.btn-outline {
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::after {
    left: 100%;
}

.btn-outline::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 0.3s ease, left 0.3s ease;
}

.btn-outline:hover::before {
    width: 100%;
    left: 0;
}

/* --- Témoignages Améliorés --- */
.testimonial-card {
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-family: var(--font-serif);
    font-size: 6rem;
    color: var(--color-accent);
    opacity: 0.15;
    line-height: 1;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.testimonial-card:hover::before {
    opacity: 0.3;
    transform: scale(1.1);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-stars svg {
    width: 20px;
    height: 20px;
    fill: #FFD700;
    opacity: 0;
    transform: scale(0.5);
    animation: starReveal 0.3s ease-out forwards;
}

.testimonial-stars svg:nth-child(1) { animation-delay: 0s; }
.testimonial-stars svg:nth-child(2) { animation-delay: 0.1s; }
.testimonial-stars svg:nth-child(3) { animation-delay: 0.2s; }
.testimonial-stars svg:nth-child(4) { animation-delay: 0.3s; }
.testimonial-stars svg:nth-child(5) { animation-delay: 0.4s; }

@keyframes starReveal {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* --- Engagements Cards --- */
.engagement-card {
    background: rgba(255,255,255,0.1);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.engagement-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
    border-color: var(--color-accent);
}

.engagement-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.engagement-card:hover .engagement-icon {
    transform: scale(1.15);
}

/* --- Floating Elements (Décoration) --- */
.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: var(--color-accent);
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* --- Reduced Motion (Accessibilité) --- */
@media (prefers-reduced-motion: reduce) {
    .reveal,
    .reveal-left,
    .reveal-right,
    .reveal-scale,
    .reveal-stagger > * {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .hero-content,
    .hero-title {
        animation: none;
        opacity: 1;
    }

    .testimonial-stars svg {
        animation: none;
        opacity: 1;
        transform: scale(1);
    }

    .floating-shape {
        animation: none;
    }
}

/* ========================================
   COOKIE BANNER RGPD
======================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-primary);
    color: white;
    padding: 20px;
    z-index: 10000;
    display: none;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
    flex: 1;
    min-width: 250px;
}

.cookie-content a {
    color: var(--color-accent);
    text-decoration: underline;
}

.cookie-content a:hover {
    color: white;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: var(--font-sans);
}

.cookie-btn-accept {
    background: var(--color-accent);
    color: var(--color-primary);
}

.cookie-btn-accept:hover {
    background: white;
}

.cookie-btn-refuse {
    background: transparent;
    color: white;
    border: 1px solid rgba(255,255,255,0.4);
}

.cookie-btn-refuse:hover {
    border-color: white;
    background: rgba(255,255,255,0.1);
}

@media (max-width: 600px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .cookie-btn {
        flex: 1;
        max-width: 150px;
    }
}

/* ========================================
   MOBILE MENU IMPROVEMENTS
======================================== */
@media (max-width: 768px) {
    /* Menu fullscreen - colonne sur mobile */
    .fullscreen-menu {
        flex-direction: column !important;
        overflow-y: auto;
        overflow-x: hidden;
    }

    /* Menu left prend tout l'écran */
    .menu-left {
        flex: none !important;
        width: 100% !important;
        padding: 80px 30px 30px;
        min-height: auto;
    }

    /* Cacher le menu-right (logo/contact à droite) sur mobile */
    .menu-right {
        display: none !important;
    }

    /* Cacher l'image de fond du menu (9 Mo - trop lourd pour mobile) */
    .menu-building-bg {
        display: none !important;
    }

    .menu-nav-wrapper {
        width: 100%;
    }

    .menu-categories,
    .menu-category {
        width: 100%;
    }

    /* Catégories principales - titres dorés */
    .menu-category > a {
        font-size: 1.2rem;
        padding: 10px 0;
        display: block;
        color: var(--color-accent);
        font-weight: 600;
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    /* Pas de "+" sur mobile */
    .menu-category > a::after {
        display: none !important;
        content: none !important;
    }

    /* SOUS-MENUS TOUJOURS VISIBLES sur mobile */
    .menu-subcategories {
        max-height: none !important;
        height: auto !important;
        opacity: 1 !important;
        overflow: visible !important;
        visibility: visible !important;
        display: block !important;
        margin-top: 5px;
        margin-bottom: 20px;
        padding-left: 15px;
        border-left: 2px solid rgba(255,255,255,0.2);
        width: 100% !important;
    }

    .menu-subcategories li {
        margin-bottom: 0;
        opacity: 1 !important;
        transform: none !important;
        width: 100% !important;
    }

    .menu-subcategories a {
        font-size: 1rem;
        padding: 8px 0;
        display: block;
        color: rgba(255,255,255,0.85);
        white-space: normal;
        word-wrap: break-word;
    }

    .menu-subcategories a:hover,
    .menu-subcategories a:active {
        color: white;
    }

    /* Menu secondaire en colonne */
    .menu-secondary {
        flex-direction: column;
        gap: 0;
        margin-top: 30px;
        padding-top: 30px;
    }

    .menu-secondary::before {
        width: 100%;
    }

    .menu-secondary a {
        font-size: 1rem;
        padding: 12px 0;
        display: block;
    }

    /* Menu-right caché sur mobile (contact affiché dans menu-secondary) */

    /* Bouton fermer visible et plus gros sur mobile */
    .menu-close {
        top: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        color: white !important;
        font-size: 2.5rem !important;
        background: rgba(0,0,0,0.2);
        border-radius: 50%;
        display: flex !important;
        align-items: center;
        justify-content: center;
    }
}

/* Petits écrans (iPhone SE, etc.) */
@media (max-width: 375px) {
    .menu-left {
        padding: 70px 20px 30px;
    }

    .menu-category > a {
        font-size: 1.3rem;
    }

    .menu-subcategories a {
        font-size: 1rem;
        padding: 10px 0;
    }

    .menu-secondary a {
        font-size: 0.9rem;
    }
}

/* ========================================
   AMELIORATIONS UX MOBILE (2026-02-05)
======================================== */

/* Formulaires - prevention zoom iOS */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
textarea,
select {
    font-size: 16px;
    min-height: 44px;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    /* Performance - desactiver smooth scroll */
    html {
        scroll-behavior: auto;
    }

    /* Performance - reduire animations */
    .reveal,
    .reveal-left,
    .reveal-right,
    .reveal-scale {
        transition-duration: 0.4s !important;
    }

    .reveal-stagger > * {
        transition-delay: 0s !important;
    }

    /* Performance - desactiver parallax */
    .hero-wix,
    [data-parallax] {
        background-attachment: scroll !important;
    }

    /* Touch targets - navigation mobile */
    .nav-wix a {
        padding: 10px 14px;
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    /* Font sizes - augmenter lisibilite */
    .section-header h2 {
        font-size: 2.2rem;
    }

    .service-card p,
    .intro-content p,
    .contact-item p {
        font-size: 1rem;
    }

    .footer-line-links a {
        font-size: 0.9rem;
        padding: 8px 12px;
    }

    .footer-line-links .copyright {
        font-size: 0.85rem;
    }

    /* Espacement cards */
    .services-grid {
        gap: 24px;
    }

    .service-card {
        padding: 30px 24px;
    }

    .engagements-grid {
        gap: 16px;
        padding: 16px;
    }

    .engagement-card {
        border: none;
        border-radius: 8px;
        padding: 24px 20px;
    }

    /* Hero section */
    .hero-wix {
        min-height: auto;
        height: auto;
        padding: 80px 20px 40px;
    }

    .hero-wix-domains {
        flex-direction: column;
        gap: 12px;
    }

    .hero-wix-domains a {
        padding: 12px 16px;
        display: block;
        text-align: center;
        border: 1px solid var(--color-primary);
        border-radius: 4px;
    }

    /* Footer */
    .footer {
        padding: 60px 0 30px;
    }

    .footer-line-links {
        gap: 16px;
    }

    /* Intro image */
    .intro-image {
        height: 250px;
    }

    /* Menu items - touch targets */
    .menu-category > a {
        padding: 14px 0;
        min-height: 44px;
    }

    .menu-subcategories a {
        padding: 12px 0;
        min-height: 44px;
    }

    .menu-secondary a {
        padding: 14px 0;
        min-height: 44px;
    }
}

/* ========================================
   TEST CIVIQUE - Page & Quiz
======================================== */

/* Mode Switcher */
.tc-mode-switcher {
    display: inline-flex;
    background: #f0f0f0;
    border-radius: 12px;
    padding: 4px;
    gap: 4px;
}

.tc-mode-btn {
    padding: 14px 28px;
    border: none;
    border-radius: 10px;
    background: transparent;
    color: var(--color-gray);
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tc-mode-btn.active {
    background: var(--color-primary);
    color: white;
    box-shadow: 0 2px 8px rgba(30, 58, 50, 0.3);
}

.tc-mode-btn:hover:not(.active) {
    background: #e0e0e0;
}

/* Theme Sections */
.tc-theme-section {
    margin-bottom: 50px;
}

.tc-theme-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--color-primary);
    padding-bottom: 15px;
    border-bottom: 2px solid var(--color-accent);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.tc-theme-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-primary);
    color: white;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    flex-shrink: 0;
}

.tc-theme-count {
    font-size: 0.85rem;
    color: var(--color-gray);
    font-family: var(--font-sans);
    font-weight: 400;
    margin-left: auto;
}

/* Question Accordion */
.tc-question {
    margin-bottom: 8px;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}

.tc-question:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.tc-question summary {
    padding: 18px 20px;
    cursor: pointer;
    font-weight: 500;
    color: var(--color-text);
    font-size: 1rem;
    line-height: 1.5;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

.tc-question summary::before {
    content: '+';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--color-cream);
    color: var(--color-primary);
    font-weight: 600;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.tc-question[open] summary::before {
    content: '-';
    background: var(--color-primary);
    color: white;
}

.tc-question summary::-webkit-details-marker {
    display: none;
}

.tc-answer {
    padding: 0 20px 20px 56px;
    color: var(--color-gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

.tc-answer p {
    margin: 0;
}

/* Quiz Card */
.tc-quiz-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}

/* Quiz Progress Bar */
.tc-quiz-progress {
    height: 6px;
    background: #e8e8e8;
    border-radius: 3px;
    margin-bottom: 30px;
    overflow: hidden;
}

.tc-quiz-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    border-radius: 3px;
    transition: width 0.4s ease;
    width: 0%;
}

/* Quiz Choices */
.tc-quiz-choices {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tc-quiz-choice {
    padding: 16px 20px;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    background: white;
    cursor: pointer;
    font-size: 1rem;
    text-align: left;
    font-family: var(--font-sans);
    transition: all 0.2s ease;
    color: var(--color-text);
    line-height: 1.4;
}

.tc-quiz-choice:hover:not(:disabled) {
    border-color: var(--color-primary);
    background: rgba(30, 58, 50, 0.03);
}

.tc-quiz-choice.correct {
    border-color: #22c55e;
    background: #f0fdf4;
    color: #166534;
}

.tc-quiz-choice.incorrect {
    border-color: #ef4444;
    background: #fef2f2;
    color: #991b1b;
}

.tc-quiz-choice:disabled {
    cursor: default;
    opacity: 0.7;
}

.tc-quiz-choice.correct:disabled,
.tc-quiz-choice.incorrect:disabled {
    opacity: 1;
}

/* Quiz Feedback */
.tc-quiz-feedback-correct {
    background: #f0fdf4;
    border-left: 4px solid #22c55e;
    color: #166534;
}

.tc-quiz-feedback-incorrect {
    background: #fef2f2;
    border-left: 4px solid #ef4444;
    color: #991b1b;
}

/* Responsive Quiz */
@media (max-width: 768px) {
    .tc-mode-switcher {
        flex-direction: column;
        width: 100%;
    }

    .tc-mode-btn {
        text-align: center;
    }

    .tc-quiz-card {
        padding: 25px 20px;
    }

    .tc-theme-title {
        font-size: 1.4rem;
    }

    .tc-theme-count {
        width: 100%;
        margin-left: 52px;
    }

    .tc-question summary {
        padding: 14px 16px;
        font-size: 0.95rem;
    }

    .tc-answer {
        padding: 0 16px 16px 42px;
    }
}

/* ========================================
   RECRUTEMENT
======================================== */
.recruitment-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 70px;
    align-items: start;
}

.recruitment-intro h2 {
    margin-bottom: 20px;
}

.recruitment-highlights {
    list-style: none;
    margin: 30px 0 0;
    padding: 0;
}

.recruitment-highlights li {
    padding: 14px 0;
    border-bottom: 1px solid #eee;
    color: var(--color-gray);
}

.recruitment-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 35px;
}

.recruitment-card {
    padding: 22px 20px;
    background: var(--color-cream);
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.recruitment-card h4 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.recruitment-card p {
    color: var(--color-gray);
    font-size: 0.95rem;
}

.recruitment-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.recruitment-form-wrapper {
    background: var(--color-white);
    padding: 45px 40px;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.recruitment-form-wrapper h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 10px;
}

.recruitment-form-intro {
    color: var(--color-gray);
    margin-bottom: 25px;
}

.recruitment-form .form-group {
    margin-bottom: 20px;
}

.recruitment-form label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.recruitment-form input,
.recruitment-form textarea,
.recruitment-form select {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-sans);
    font-size: 1rem;
    border: 1px solid #ddd;
    background: white;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.recruitment-form input:focus,
.recruitment-form textarea:focus,
.recruitment-form select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(30, 58, 50, 0.12);
}

.recruitment-form textarea {
    min-height: 150px;
    resize: vertical;
}

.recruitment-inline {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-consent .checkbox-label {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 0.9rem;
    letter-spacing: normal;
    text-transform: none;
    color: var(--color-gray);
}

.form-consent input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
}

.recruitment-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border: none;
    border-radius: 30px;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.recruitment-btn:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.recruitment-note {
    margin-top: 16px;
    font-size: 0.85rem;
    color: var(--color-gray);
}

.recruitment-note a {
    color: var(--color-primary);
}

@media (max-width: 980px) {
    .recruitment-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 700px) {
    .recruitment-cards {
        grid-template-columns: 1fr;
    }

    .recruitment-inline {
        grid-template-columns: 1fr;
    }

    .recruitment-form-wrapper {
        padding: 35px 25px;
    }
}

/* ============================================
   SERVICES HUB
   ============================================ */

.services-hub-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.service-hub-card {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 16px;
    padding: 45px 35px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(30, 58, 50, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-hub-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(30, 58, 50, 0.12);
}

.service-hub-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--color-primary);
    color: white;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 5px 14px;
    border-radius: 20px;
}

.service-hub-badge.urgence {
    background: #c0392b;
}

.service-hub-icon {
    color: var(--color-primary);
    margin-bottom: 25px;
}

.service-hub-card h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.service-hub-card p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--color-gray);
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-hub-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
}

.service-hub-tag {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-primary);
    background: rgba(30, 58, 50, 0.06);
    padding: 5px 14px;
    border-radius: 20px;
}

.service-hub-cta {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.service-hub-card:hover .service-hub-cta {
    gap: 14px;
}

@media (max-width: 700px) {
    .services-hub-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-hub-card {
        padding: 35px 25px;
    }
}

/* ============================================
   SIMULATEUR
   ============================================ */

.simulateur {
    max-width: 700px;
    margin: 0 auto;
    min-height: 300px;
}

/* Progress bar */
.sim-progress {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.sim-progress-bar {
    flex: 1;
    height: 4px;
    background: rgba(30, 58, 50, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.sim-progress-fill {
    height: 100%;
    background: var(--color-primary);
    border-radius: 4px;
    transition: width 0.4s ease;
}

.sim-progress-text {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-gray);
    white-space: nowrap;
}

/* Question */
.sim-question {
    animation: simSlideIn 0.4s ease;
}

.sim-question-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 8px;
    line-height: 1.4;
}

.sim-question-subtitle {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--color-gray);
    margin-bottom: 30px;
}

/* Options */
.sim-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sim-option {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: white;
    border: 2px solid rgba(30, 58, 50, 0.1);
    border-radius: 12px;
    padding: 20px 24px;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
    text-align: left;
    min-height: 44px;
}

.sim-option:hover {
    border-color: rgba(30, 58, 50, 0.3);
    background: rgba(30, 58, 50, 0.02);
}

.sim-option.selected {
    border-color: var(--color-primary);
    background: rgba(30, 58, 50, 0.04);
}

.sim-option-radio {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border-radius: 50%;
    border: 2px solid rgba(30, 58, 50, 0.2);
    margin-top: 2px;
    transition: border-color 0.2s ease, background 0.2s ease;
    position: relative;
}

.sim-option.selected .sim-option-radio {
    border-color: var(--color-primary);
    background: var(--color-primary);
}

.sim-option.selected .sim-option-radio::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.sim-option-content {
    flex: 1;
}

.sim-option-label {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
    line-height: 1.4;
}

.sim-option-desc {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--color-gray);
    margin-top: 4px;
    line-height: 1.5;
}

/* Multi-select (checkboxes) */
.sim-options.multi-select .sim-option-radio {
    border-radius: 4px;
}

.sim-options.multi-select .sim-option.selected .sim-option-radio::after {
    width: 12px;
    height: 12px;
    border-radius: 2px;
    background: white;
    clip-path: polygon(20% 50%, 40% 70%, 80% 30%, 85% 35%, 40% 80%, 15% 55%);
}

.sim-options.multi-select .sim-confirm {
    margin-top: 20px;
    text-align: center;
}

.sim-confirm-btn {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    background: var(--color-primary);
    border: none;
    border-radius: 8px;
    padding: 12px 35px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.sim-confirm-btn:hover {
    background: #15302a;
}

/* Result */
.sim-result {
    text-align: center;
    padding: 50px 40px;
    border-radius: 16px;
    animation: simSlideIn 0.5s ease;
}

.sim-result-green {
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8f2 100%);
    border: 2px solid #a5d6a7;
}

.sim-result-orange {
    background: linear-gradient(135deg, #fff3e0 0%, #fff8f0 100%);
    border: 2px solid #ffcc80;
}

.sim-result-red {
    background: linear-gradient(135deg, #fce4ec 0%, #fef0f3 100%);
    border: 2px solid #ef9a9a;
}

.sim-result-blue {
    background: linear-gradient(135deg, #e3f2fd 0%, #f0f7fe 100%);
    border: 2px solid #90caf9;
}

.sim-result-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.sim-result-title {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 15px;
}

.sim-result-text {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-gray);
    max-width: 500px;
    margin: 0 auto;
}

/* Lead form */
.sim-lead-form {
    margin-top: 40px;
    padding: 35px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}

.sim-lead-intro {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--color-gray);
    margin-bottom: 25px;
    line-height: 1.7;
    text-align: center;
}

.sim-lead-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}

.sim-lead-form input[type="email"],
.sim-lead-form input[type="tel"] {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    padding: 14px 18px;
    border: 2px solid rgba(30, 58, 50, 0.1);
    border-radius: 8px;
    outline: none;
    transition: border-color 0.2s ease;
    width: 100%;
    box-sizing: border-box;
}

.sim-lead-form input:focus {
    border-color: var(--color-primary);
}

.sim-lead-form input::placeholder {
    color: #aaa;
}

.sim-lead-form button[type="submit"] {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
    background: var(--color-primary);
    border: none;
    border-radius: 8px;
    padding: 15px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.sim-lead-form button[type="submit"]:hover {
    background: #15302a;
}

.sim-form-success {
    text-align: center;
    padding: 25px;
    animation: simSlideIn 0.4s ease;
}

.sim-form-success p {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--color-primary);
    font-weight: 600;
}

/* Restart */
.sim-restart {
    text-align: center;
    margin-top: 30px;
}

.sim-restart button {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-gray);
    background: none;
    border: 1px solid rgba(30, 58, 50, 0.15);
    border-radius: 8px;
    padding: 10px 25px;
    cursor: pointer;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.sim-restart button:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
}

/* Animation */
@keyframes simSlideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive simulateur */
@media (max-width: 700px) {
    .sim-question-title {
        font-size: 1.2rem;
    }

    .sim-option {
        padding: 16px 18px;
    }

    .sim-result {
        padding: 35px 25px;
    }

    .sim-result-title {
        font-size: 1.3rem;
    }

    .sim-lead-form {
        padding: 25px 20px;
    }
}

/* ========================================
   AMELIORATIONS UI/UX (2026-02-20)
======================================== */

/* --- Mobile Bottom Bar --- */
.mobile-bar {
    display: none;
}

@media (max-width: 768px) {
    .mobile-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        display: flex;
        z-index: 9998;
        background: var(--color-primary);
        box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    }

    .mobile-bar-btn {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 16px 12px;
        color: var(--color-white);
        font-family: var(--font-sans);
        font-size: 0.85rem;
        font-weight: 600;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        text-decoration: none;
        transition: background 0.2s ease;
        min-height: 56px;
    }

    .mobile-bar-btn svg {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
    }

    .mobile-bar-call {
        background: var(--color-primary-dark);
        border-right: 1px solid rgba(255,255,255,0.15);
    }

    .mobile-bar-rdv {
        background: var(--color-accent-dark);
        color: var(--color-white);
    }

    .mobile-bar-call:hover,
    .mobile-bar-call:active {
        background: var(--color-primary);
    }

    .mobile-bar-rdv:hover,
    .mobile-bar-rdv:active {
        background: var(--color-accent);
    }

    /* Compenser la barre en bas */
    body {
        padding-bottom: 56px;
    }

    /* Remonter le cookie banner au-dessus de la mobile bar */
    .cookie-banner {
        bottom: 56px;
    }
}

/* --- Hero CTA Buttons --- */
.hero-wix-domains .hero-btn {
    padding: 14px 32px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: 1px solid rgba(30, 58, 50, 0.3);
    color: var(--color-primary);
    background: transparent;
    transition: all 0.3s ease;
    text-decoration: none;
}

.hero-wix-domains .hero-btn:hover {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

@media (max-width: 768px) {
    .hero-wix-domains .hero-btn {
        width: 100%;
        text-align: center;
        padding: 16px 24px;
    }
}

/* --- FAQ Accordion --- */
.faq-item {
    border-bottom: 1px solid #eee;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    padding: 22px 40px 22px 0;
    cursor: pointer;
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--color-text);
    position: relative;
    list-style: none;
    transition: color 0.2s ease;
}

/* Supprimer le marker natif */
.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::marker {
    display: none;
    content: '';
}

/* Chevron anime */
.faq-question::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 12px;
    height: 12px;
    border-right: 2px solid var(--color-primary);
    border-bottom: 2px solid var(--color-primary);
    transform: translateY(-70%) rotate(45deg);
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-question::after {
    transform: translateY(-30%) rotate(-135deg);
}

.faq-question:hover {
    color: var(--color-primary);
}

.faq-answer {
    padding: 0 0 22px;
    color: var(--color-gray);
    line-height: 1.8;
    animation: faqFadeIn 0.3s ease;
}

.faq-answer a {
    color: var(--color-primary);
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.faq-answer a:hover {
    border-bottom-color: var(--color-primary);
}

@keyframes faqFadeIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Scroll to Top --- */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--color-primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.scroll-top svg {
    width: 22px;
    height: 22px;
}

@media (max-width: 768px) {
    .scroll-top {
        bottom: 76px; /* au-dessus de la mobile bar */
        right: 20px;
        width: 44px;
        height: 44px;
    }
}

/* --- Answer Box SEO --- */
.answer-box {
    padding: 50px 0 0;
}

.answer-box .container {
    max-width: 800px;
}

.answer-box p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--color-text);
}

.answer-box a {
    color: var(--color-primary);
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.answer-box a:hover {
    border-bottom-color: var(--color-primary);
}

/* --- Consultation Box --- */
.consultation-box {
    background: var(--color-cream);
    padding: 35px;
    text-align: center;
    margin-bottom: 30px;
    border-radius: 4px;
}

.consultation-box .price {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--color-primary);
}

.consultation-box .price span {
    font-size: 1rem;
    color: var(--color-gray);
}

.consultation-box .price-desc {
    font-size: 0.9rem;
    color: var(--color-gray);
    margin-top: 10px;
}

/* --- Testimonials Carousel (deplace depuis inline) --- */
.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    min-width: 100%;
    padding: 50px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
    text-align: center;
    box-sizing: border-box;
}

.testimonial-slide .testimonial-stars {
    color: #F59E0B;
    font-size: 1.5rem;
    letter-spacing: 4px;
    margin-bottom: 25px;
}

.testimonial-slide .testimonial-text {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-slide .testimonial-author {
    font-size: 0.95rem;
    color: var(--color-gray);
}

.testimonial-slide .testimonial-author strong {
    color: var(--color-text);
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.testimonials-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.testimonials-dots .dot.active {
    background: var(--color-primary);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .testimonial-slide {
        padding: 30px 20px;
    }

    .testimonial-slide .testimonial-text {
        font-size: 1.1rem;
    }
}

/* --- Blog Cards Homepage --- */
.blog-home-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-home-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-home-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.blog-home-card .blog-home-date {
    font-size: 0.8rem;
    color: var(--color-gray);
    margin-bottom: 10px;
}

.blog-home-card h3 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 12px;
    line-height: 1.5;
}

.blog-home-card h3 a {
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-home-card h3 a:hover {
    color: var(--color-primary);
}

.blog-home-card .blog-home-excerpt {
    color: var(--color-gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .blog-home-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-home-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Consultation section (cote droit contact) --- */
.consultation-section h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 30px;
}

.consultation-section .lead {
    font-size: 1.1rem;
    color: var(--color-gray);
    margin-bottom: 30px;
}

/* --- Header logo scroll animation --- */
.logo-wix img {
    transition: height 0.3s ease;
}

.header-wix.scrolled .logo-wix img {
    height: 50px;
}

/* ========================================
   AUDIT UI/UX - MARS 2026
======================================== */

/* --- 1. Hero: kept clean, no additions --- */

/* --- 2. Engagement Cards with Icons --- */
.engagement-icon {
    width: 36px;
    height: 36px;
    color: var(--color-accent);
    margin-bottom: 18px;
    opacity: 0.8;
}

.engagement-card {
    transition: background 0.3s ease;
}

.engagement-card:hover {
    background: rgba(255,255,255,0.05);
}

.engagement-card:hover .engagement-icon {
    opacity: 1;
}

/* --- 3. Service Cards Differentiation --- */
.service-card {
    position: relative;
    border-top: 3px solid transparent;
}

.service-card:nth-child(1) {
    border-top-color: var(--color-primary);
}

.service-card:nth-child(2) {
    border-top-color: var(--color-accent);
}

.service-card:nth-child(3) {
    border-top-color: #C0392B;
}

.service-card:nth-child(3) .service-icon {
    color: #C0392B;
}

.service-card .service-icon {
    padding: 12px;
    border-radius: 50%;
    background: var(--color-cream);
    width: 48px;
    height: 48px;
    box-sizing: content-box;
}

.service-card:nth-child(2) .service-icon {
    color: var(--color-accent);
}

/* --- 4. Testimonials SVG Stars refinement --- */
.testimonial-slide .testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 25px;
}

.testimonial-slide .testimonial-stars svg {
    width: 20px;
    height: 20px;
}

/* --- 5. Blog Home Cards Categories --- */
.blog-home-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.blog-home-category {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-primary);
    background: rgba(30, 58, 50, 0.08);
    padding: 3px 10px;
    border-radius: 3px;
}

.blog-home-meta .blog-home-date {
    font-size: 0.8rem;
    color: var(--color-light-gray);
    margin-bottom: 0;
}

/* --- 6. Nav Link Hover Animations --- */
.nav-wix a {
    position: relative;
}

.nav-wix a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-accent);
    transition: width 0.3s ease;
}

.nav-wix a:hover::after {
    width: 100%;
}

.nav-wix a:hover {
    opacity: 1;
}

.nav-wix .lang-switch::after {
    display: none;
}

/* --- 7. Reveal Animations --- */
/* Already defined at line ~2524. No override needed. */

/* --- 8. Footer Articles Section: removed (too heavy) --- */

/* --- 9. Consultation Box Enhancement --- */
.consultation-box {
    border: 1px solid rgba(30, 58, 50, 0.1);
    position: relative;
    overflow: hidden;
}

.consultation-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--color-primary), var(--color-accent));
}

.consultation-box .price {
    font-size: 3rem;
    font-weight: 300;
}

/* --- 10. Shadow & Border-Radius Standardization --- */
/* Level 1 - Subtle */
.blog-home-card,
.blog-card {
    border-radius: 8px;
}

/* Level 2 - Medium */
.service-card,
.testimonial-slide {
    border-radius: 8px;
}

/* Level 3 - Lifted (hover states already defined above) */

/* Consistent shadow variables for future use */
:root {
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
}

/* --- Bonus: Urgence link pulse on mobile --- */
@media (max-width: 768px) {
    .nav-wix .urgence-link {
        color: #C0392B;
        font-weight: 600;
    }
}

/* --- Bonus: Smooth page transitions --- */
.hero-wix {
    position: relative;
}

/* --- Bonus: answer-box and CTA kept as-is --- */
