/*
Theme Name: N'Joy Genius Car
Theme URI: https://njoygeniuscar.ch
Author: N'Joy Genius Car
Author URI: https://njoygeniuscar.ch
Description: Thème Premium pour N'Joy Genius Car – Expert en réparation de systèmes multimédia et installation d'options VAG & Porsche.
Version: 2.1.5
License: GNU General Public License v2 or later
Text Domain: njoy
*/

/* ===================================================
   VARIABLES & CUSTOM PROPERTIES
=================================================== */
:root {
    --dark:        #0d0d0d;
    --dark-2:      #1a1a1a;
    --dark-3:      #222222;
    --gold:        #C9A84C;
    --gold-hover:  #b8933d;
    --gold-light:  rgba(201,168,76,0.15);
    --white:       #ffffff;
    --light:       #f7f7f7;
    --light-2:     #f0f0f0;
    --gray:        #888888;
    --gray-light:  #cccccc;
    --border:      #e5e5e5;
    --text:        #1a1a1a;
    --text-light:  #666666;

    --font-heading: 'Montserrat', sans-serif;
    --font-body:    'Inter', sans-serif;

    --max-width:   1200px;
    --radius:      4px;
    --radius-lg:   8px;
    --shadow-sm:   0 2px 12px rgba(0,0,0,0.06);
    --shadow:      0 4px 24px rgba(0,0,0,0.10);
    --shadow-lg:   0 8px 40px rgba(0,0,0,0.16);
    --transition:  0.3s ease;
    --header-h:    80px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

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

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

ul, ol { list-style: none; }

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

input, textarea, select {
    font-family: var(--font-body);
    font-size: 1rem;
}

/* ===================================================
   TYPOGRAPHY
=================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p { line-height: 1.75; color: var(--text-light); }

.text-gold  { color: var(--gold); }
.text-white { color: var(--white); }
.text-gray  { color: var(--gray); }

.text-center { text-align: center; }
.text-upper  { text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.75rem; font-weight: 600; }

/* ===================================================
   LAYOUT
=================================================== */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-lg { padding: 120px 0; }

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

.flex     { display: flex; }
.flex-col { display: flex; flex-direction: column; }
.items-center  { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-8  { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }

/* ===================================================
   SECTION LABELS
=================================================== */
.section-label {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 16px;
    display: block;
}

.section-title {
    font-family: var(--font-heading);
    color: var(--text);
    margin-bottom: 24px;
}

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

.section-divider {
    width: 48px;
    height: 3px;
    background: var(--gold);
    margin: 16px 0 40px;
}

.section-divider.center { margin: 16px auto 40px; }

/* ===================================================
   BUTTONS
=================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--radius);
    transition: all var(--transition);
    cursor: pointer;
    white-space: nowrap;
}

.btn-gold {
    background: var(--gold);
    color: var(--dark);
    border: 2px solid var(--gold);
}
.btn-gold:hover {
    background: var(--gold-hover);
    border-color: var(--gold-hover);
    color: var(--dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(201,168,76,0.35);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
    color: var(--white);
}

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

.btn-dark {
    background: var(--dark);
    color: var(--white);
    border: 2px solid var(--dark);
}
.btn-dark:hover {
    background: var(--dark-2);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

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

.btn-lg { padding: 18px 36px; font-size: 0.85rem; }
.btn-sm { padding: 10px 20px; font-size: 0.75rem; }

/* ===================================================
   HEADER & NAVIGATION
=================================================== */
#site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-h);
    display: flex;
    align-items: center;
    transition: background var(--transition), box-shadow var(--transition);
    background: transparent;
}

#site-header.scrolled {
    background: var(--dark);
    box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

#site-header.page-header {
    background: var(--dark);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.site-logo img { height: 36px; width: auto; }

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.02em;
}

.logo-text .logo-x {
    color: var(--gold);
    font-style: italic;
}

.logo-tagline {
    font-size: 0.55rem;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    display: block;
    margin-top: 2px;
}

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

.main-nav ul li a {
    display: block;
    padding: 8px 14px;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.85);
    border-radius: var(--radius);
    transition: color var(--transition);
    position: relative;
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform var(--transition);
    transform-origin: center;
}

.main-nav ul li a:hover,
.main-nav ul li.current-menu-item > a {
    color: var(--white);
}

.main-nav ul li a:hover::after,
.main-nav ul li.current-menu-item > a::after {
    transform: scaleX(1);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Mobile burger */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
}

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
}

.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--dark);
    z-index: 999;
    padding: 100px 24px 40px;
    flex-direction: column;
    gap: 8px;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
    display: block;
    padding: 16px 0;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: color var(--transition);
}

.mobile-nav a:hover { color: var(--gold); }

/* ===================================================
   HERO SECTION
=================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--dark);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('assets/images/hero-bg.svg');
    background-size: cover;
    background-position: center right;
    opacity: 0.4;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(13,13,13,0.95) 0%,
        rgba(13,13,13,0.75) 55%,
        rgba(13,13,13,0.3) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 640px;
    padding-top: var(--header-h);
}

.hero-tag {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--gold);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-tag::before {
    content: '';
    display: inline-block;
    width: 32px;
    height: 2px;
    background: var(--gold);
}

.hero h1 {
    color: var(--white);
    margin-bottom: 12px;
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 700;
    line-height: 1.1;
}

.hero h1 span { color: var(--gold); }

.hero-systems {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 28px 0 24px;
}

.hero-systems span {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.55);
    padding: 6px 12px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 2px;
}

.hero-desc {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.hero-badges {
    display: flex;
    gap: 24px;
    margin-top: 56px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-badge-icon {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(201,168,76,0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.hero-badge-text strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
}

.hero-badge-text span {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
}

/* ===================================================
   FEATURES BAR
=================================================== */
.features-bar {
    background: var(--light);
    padding: 48px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 0 32px;
    border-right: 1px solid var(--border);
}

.feature-item:first-child { padding-left: 0; }
.feature-item:last-child { border-right: none; }

.feature-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-icon svg { width: 28px; height: 28px; }

.feature-text strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text);
    margin-bottom: 4px;
}

.feature-text p {
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* ===================================================
   SYSTEMS SECTION
=================================================== */
.systems-section {
    background: var(--white);
    padding: 96px 0;
}

.systems-header {
    margin-bottom: 56px;
}

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

@media (min-width: 1024px) {
    .systems-grid { grid-template-columns: repeat(6, 1fr); }
}

.system-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
    background: var(--white);
    text-align: center;
}

.system-card:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 32px rgba(201,168,76,0.12);
    transform: translateY(-4px);
}

.system-card-img {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--light-2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.system-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.system-card:hover .system-card-img img { transform: scale(1.05); }

.system-card-body {
    padding: 20px 16px;
}

.system-card-body h3 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
}

.system-card-body p {
    font-size: 0.75rem;
    color: var(--text-light);
    line-height: 1.4;
}

.systems-cta { text-align: center; }

/* ===================================================
   WHY SECTION
=================================================== */
.why-section {
    position: relative;
    padding: 120px 0;
    background: var(--dark-2);
    overflow: hidden;
}

.why-bg {
    position: absolute;
    inset: 0;
    background-image: url('assets/images/circuit-bg.svg');
    background-size: cover;
    background-position: center;
    opacity: 0.12;
}

.why-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.why-content .section-label { color: var(--gold); }
.why-content h2 { color: var(--white); max-width: 560px; margin: 0 auto 16px; }
.why-content .section-divider { margin: 16px auto 64px; }

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

.why-item { text-align: center; }

.why-icon {
    width: 64px;
    height: 64px;
    border: 1px solid rgba(201,168,76,0.35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--gold);
    transition: all var(--transition);
}

.why-item:hover .why-icon {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
}

.why-icon svg { width: 28px; height: 28px; }

.why-item h3 {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
    margin-bottom: 12px;
}

.why-item p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
}

/* ===================================================
   STATS SECTION
=================================================== */
.stats-section {
    background: var(--white);
    padding: 80px 0;
    border-bottom: 1px solid var(--border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 40px;
    border-right: 1px solid var(--border);
}

.stat-item:first-child { padding-left: 0; }
.stat-item:last-child { border-right: none; }

.stat-icon {
    color: var(--gold);
    flex-shrink: 0;
}

.stat-icon svg { width: 36px; height: 36px; }

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 4px;
}

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

.testimonials-header { text-align: center; margin-bottom: 56px; }

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

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all var(--transition);
}

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

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    color: var(--gold);
}

.testimonial-stars svg { width: 18px; height: 18px; fill: var(--gold); }

.testimonial-text {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author { display: flex; align-items: center; gap: 14px; }

.testimonial-avatar {
    width: 44px;
    height: 44px;
    background: var(--gold-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--gold);
    flex-shrink: 0;
}

.testimonial-name {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text);
    display: block;
}

.testimonial-car {
    font-size: 0.75rem;
    color: var(--gray);
}

/* ===================================================
   CTA SECTION
=================================================== */
.cta-section {
    position: relative;
    background: var(--dark);
    overflow: hidden;
    min-height: 420px;
    display: flex;
    align-items: center;
}

.cta-bg {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 45%;
    background-image: url('assets/images/cta-car.svg');
    background-size: cover;
    background-position: center;
    opacity: 0.45;
}

.cta-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--dark) 55%, transparent 100%);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 560px;
    padding: 80px 0;
}

.cta-content .section-label { color: var(--gold); }
.cta-content h2 { color: var(--white); margin-bottom: 32px; }

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    margin-bottom: 32px;
}

.cta-badges {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.cta-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
}

.cta-badge svg { width: 16px; height: 16px; color: var(--gold); }

/* ===================================================
   INNER PAGE HERO
=================================================== */
.page-hero {
    background: var(--dark);
    padding: 120px 0 64px;
    position: relative;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('assets/images/page-hero-bg.svg');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
}

.page-hero-content {
    position: relative;
    z-index: 1;
}

.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p  { color: rgba(255,255,255,0.6); max-width: 560px; font-size: 1.05rem; }

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.breadcrumb a, .breadcrumb span {
    font-size: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.4);
}

.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: rgba(255,255,255,0.2); }
.breadcrumb .current { color: var(--gold); }

/* ===================================================
   REPARATIONS PAGE
=================================================== */
.repair-intro {
    background: var(--white);
    padding: 80px 0;
}

.repair-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.repair-intro-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--light-2);
}

.repair-intro-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.repair-list { list-style: none; margin-top: 24px; }

.repair-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
    color: var(--text-light);
}

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

.repair-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
}

.systems-full-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 56px;
}

.system-full-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
}

.system-full-card:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 32px rgba(201,168,76,0.1);
}

.system-full-img {
    aspect-ratio: 16/9;
    background: var(--light-2);
    overflow: hidden;
}

.system-full-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.system-full-card:hover .system-full-img img { transform: scale(1.05); }

.system-full-body { padding: 28px; }

.system-full-body h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.system-full-body .system-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 4px 10px;
    background: var(--gold-light);
    color: var(--gold);
    border-radius: 2px;
    margin-bottom: 12px;
}

.system-full-body p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.65;
    margin-bottom: 16px;
}

.system-features {
    list-style: none;
    margin-top: 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}

.system-features li {
    font-size: 0.78rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 6px;
}

.system-features li::before {
    content: '✓';
    color: var(--gold);
    font-weight: 700;
    font-size: 0.75rem;
}

.repair-process { background: var(--light); padding: 96px 0; }

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 56px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(12.5% + 16px);
    right: calc(12.5% + 16px);
    height: 2px;
    background: var(--border);
    z-index: 0;
}

.process-step { text-align: center; position: relative; z-index: 1; }

.process-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--gold);
}

.process-step h4 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.process-step p { font-size: 0.82rem; line-height: 1.5; }

.warranty-section {
    background: var(--dark);
    padding: 80px 0;
}

.warranty-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.warranty-content h2 { color: var(--white); margin-bottom: 20px; }
.warranty-content p  { color: rgba(255,255,255,0.6); margin-bottom: 32px; }

.warranty-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.warranty-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(201,168,76,0.25);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
}

.warranty-card-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.warranty-card-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    margin-top: 6px;
}

/* ===================================================
   MARQUES PAGE
=================================================== */
.brands-intro {
    background: var(--white);
    padding: 80px 0;
    text-align: center;
}

.brands-intro p { max-width: 640px; margin: 0 auto; font-size: 1.05rem; }

.brands-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    margin-top: 80px;
}

.brand-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
}

.brand-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow);
}

.brand-card-header {
    background: var(--dark);
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.brand-logo-placeholder {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(201,168,76,0.15);
    border: 2px solid rgba(201,168,76,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--gold);
    flex-shrink: 0;
}

.brand-card-header h2 {
    color: var(--white);
    font-size: 1.5rem;
}

.brand-card-header p {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    margin-top: 4px;
}

.brand-card-body { padding: 32px 40px; }

.brand-models {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 20px;
}

.brand-model-tag {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 10px 16px;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text);
    text-align: center;
    transition: all var(--transition);
}

.brand-model-tag:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-light);
}

/* ===================================================
   PANNES PAGE
=================================================== */
.pannes-intro {
    background: var(--white);
    padding: 80px 0;
}

.panne-accordion { margin-top: 48px; }

.panne-group { border: 1px solid var(--border); border-radius: var(--radius-lg); margin-bottom: 16px; overflow: hidden; }

.panne-group-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    cursor: pointer;
    background: var(--white);
    transition: background var(--transition);
}

.panne-group-header:hover { background: var(--light); }

.panne-group-header.active { background: var(--dark); }
.panne-group-header.active h3 { color: var(--white); }
.panne-group-header.active .panne-chevron { transform: rotate(180deg); color: var(--gold); }

.panne-group-header h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
}

.panne-system-tag {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 4px 10px;
    background: var(--gold-light);
    color: var(--gold);
    border-radius: 2px;
    margin-left: 12px;
}

.panne-chevron { transition: transform var(--transition); color: var(--gray); }
.panne-chevron svg { width: 20px; height: 20px; }

.panne-group-body {
    display: none;
    padding: 0 28px 28px;
    background: var(--white);
}

.panne-group-body.open { display: block; }

.panne-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 20px;
}

.panne-item {
    background: var(--light);
    border-radius: var(--radius);
    padding: 20px;
    border-left: 3px solid var(--gold);
}

.panne-item h4 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
}

.panne-item p { font-size: 0.8rem; line-height: 1.55; }

/* ===================================================
   AVIS CLIENTS PAGE
=================================================== */
.reviews-summary {
    background: var(--light);
    padding: 64px 0;
}

.reviews-summary-inner {
    display: flex;
    align-items: center;
    gap: 80px;
}

.reviews-score {
    text-align: center;
    flex-shrink: 0;
}

.reviews-score-num {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1;
}

.reviews-score-label {
    font-size: 0.8rem;
    color: var(--gray);
    margin-top: 4px;
}

.reviews-bars { flex: 1; }

.rating-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.rating-bar-label {
    font-size: 0.8rem;
    color: var(--text-light);
    width: 48px;
    text-align: right;
    flex-shrink: 0;
}

.rating-bar-track {
    flex: 1;
    height: 8px;
    background: var(--border);
    border-radius: 4px;
    overflow: hidden;
}

.rating-bar-fill {
    height: 100%;
    background: var(--gold);
    border-radius: 4px;
}

.reviews-full-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
}

/* ===================================================
   À PROPOS PAGE
=================================================== */
.about-story {
    background: var(--white);
    padding: 96px 0;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-story-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 3/4;
    background: var(--light-2);
}

.about-story-img img { width: 100%; height: 100%; object-fit: cover; }

.about-timeline { margin-top: 40px; }

.timeline-item {
    display: flex;
    gap: 20px;
    padding-bottom: 28px;
    border-left: 2px solid var(--border);
    padding-left: 24px;
    margin-left: 12px;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -7px;
    top: 4px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gold);
    border: 2px solid var(--white);
}

.timeline-year {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    flex-shrink: 0;
    padding-top: 2px;
    min-width: 48px;
}

.timeline-text h4 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.timeline-text p { font-size: 0.82rem; }

.certifications {
    background: var(--light);
    padding: 80px 0;
}

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

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

.cert-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow);
}

.cert-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--gold);
}

.cert-icon svg { width: 32px; height: 32px; }

.cert-card h3 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.cert-card p { font-size: 0.82rem; }

/* ===================================================
   CONTACT PAGE
=================================================== */
.contact-section {
    background: var(--white);
    padding: 96px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
}

.contact-info h2 { margin-bottom: 16px; }
.contact-info > p { margin-bottom: 40px; }

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

.contact-detail:last-of-type { border-bottom: none; }

.contact-detail-icon {
    width: 44px;
    height: 44px;
    background: var(--gold-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.contact-detail-icon svg { width: 20px; height: 20px; }

.contact-detail-label {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 4px;
    display: block;
}

.contact-detail-value {
    font-size: 0.9rem;
    color: var(--text);
    font-weight: 500;
}

.contact-hours { margin-top: 40px; }

.contact-hours h4 {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text);
    margin-bottom: 16px;
}

.hours-table { width: 100%; }

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.85rem;
}

.hours-row:last-child { border-bottom: none; }
.hours-day { color: var(--text-light); }
.hours-time { color: var(--text); font-weight: 500; font-family: var(--font-heading); font-size: 0.8rem; }
.hours-closed { color: var(--gray); font-style: italic; }

/* Contact Form */
.contact-form-wrap h2 { margin-bottom: 8px; }
.contact-form-wrap > p { margin-bottom: 32px; }

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

.form-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.9rem;
    color: var(--text);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}

.form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}

.form-control::placeholder { color: var(--gray-light); }

textarea.form-control { resize: vertical; min-height: 140px; }

select.form-control { appearance: none; cursor: pointer; }

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

.form-note { font-size: 0.75rem; color: var(--gray); margin-top: 16px; }

/* ===================================================
   FOOTER
=================================================== */
#site-footer {
    background: var(--dark);
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-main {
    padding: 64px 0;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
}

.footer-brand p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
    margin: 16px 0 24px;
    max-width: 260px;
}

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

.footer-social a {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    transition: all var(--transition);
}

.footer-social a:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201,168,76,0.08);
}

.footer-social a svg { width: 16px; height: 16px; }

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.35);
    margin-bottom: 20px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col ul li a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--gold); }

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 10px;
}

.footer-contact li svg { width: 14px; height: 14px; color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.footer-contact li a { color: rgba(255,255,255,0.55); }
.footer-contact li a:hover { color: var(--gold); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.25);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.25);
    transition: color var(--transition);
}

.footer-bottom-links a:hover { color: var(--gold); }

/* ===================================================
   UTILITIES
=================================================== */
.bg-dark  { background: var(--dark); }
.bg-light { background: var(--light); }
.bg-white { background: var(--white); }

.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }

.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

/* Animate on scroll */
.anim-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.anim-fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Delay utilities */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ===================================================
   RESPONSIVE
=================================================== */
@media (max-width: 1024px) {
    .features-grid    { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .feature-item     { border-right: none; padding: 0; }
    .systems-grid     { grid-template-columns: repeat(3, 1fr); }
    .why-grid         { grid-template-columns: repeat(2, 1fr); }
    .stats-grid       { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .stat-item        { border-right: none; padding: 0; }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-main      { grid-template-columns: 1fr 1fr; gap: 40px; }
    .repair-intro-grid  { grid-template-columns: 1fr; gap: 48px; }
    .contact-grid     { grid-template-columns: 1fr; gap: 48px; }
    .about-story-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-story-img  { aspect-ratio: 16/9; }
    .warranty-grid    { grid-template-columns: 1fr; gap: 48px; }
    .process-steps    { grid-template-columns: repeat(2, 1fr); }
    .process-steps::before { display: none; }
    .brands-grid      { grid-template-columns: 1fr; }
    .reviews-summary-inner { flex-direction: column; gap: 40px; align-items: flex-start; }
    .reviews-full-grid { grid-template-columns: repeat(2, 1fr); }
    .systems-full-grid { grid-template-columns: repeat(2, 1fr); }
    .cert-grid        { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    :root { --header-h: 70px; }
    .section, .section-lg { padding: 72px 0; }
    .main-nav, .header-cta .btn { display: none; }
    .burger { display: flex; }
    .hero { min-height: 90vh; }
    .hero-badges { display: none; }
    .systems-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid     { grid-template-columns: 1fr; gap: 32px; }
    .stats-grid   { grid-template-columns: 1fr 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-main { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .systems-full-grid { grid-template-columns: 1fr; }
    .panne-items  { grid-template-columns: 1fr; }
    .reviews-full-grid { grid-template-columns: 1fr; }
    .cert-grid    { grid-template-columns: 1fr; }
    .form-row     { grid-template-columns: 1fr; }
    .grid-2, .grid-3, .grid-4, .grid-6 { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .systems-grid { grid-template-columns: 1fr 1fr; }
    .stats-grid   { grid-template-columns: 1fr; }
    .cta-actions  { flex-direction: column; align-items: flex-start; }
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .warranty-cards { grid-template-columns: 1fr; }
    .brand-models { grid-template-columns: 1fr; }
}

/* ===================================================
   ELEMENTOR COMPATIBILITY
=================================================== */

/* Pleine largeur sans contrainte de conteneur */
#site-main.njoy-main {
    width: 100%;
    padding: 0;
    margin: 0;
    max-width: none;
}

/* Sections Elementor pleine largeur */
.elementor-section-full_width,
.e-con,
.elementor-top-section {
    max-width: none !important;
}

/* Pas de marge intérieure sur le wrapper principal côté Elementor */
.elementor-page #site-main {
    padding: 0;
}

/* Forcer le passage du contenu Elementor sous le header fixe */
.elementor-page #site-main .elementor-section:first-child,
.elementor-page #site-main .e-con:first-child {
    scroll-margin-top: var(--header-h);
}

/* ── Variables CSS disponibles dans les widgets HTML Elementor ── */
/* Les couleurs N'Joy Genius Car sont définies dans :root et utilisables  */
/* directement dans les champs de style Elementor.               */

/* ── Contact form shortcode dans Elementor ─────────────────── */
.contact-form-wrapper .contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-form-wrapper .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.contact-form-wrapper .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.contact-form-wrapper label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text);
}
.contact-form-wrapper .required { color: var(--gold); }
.contact-form-wrapper .form-hint { font-size: 0.78rem; color: #999; font-weight: 400; }
.contact-form-wrapper input,
.contact-form-wrapper select,
.contact-form-wrapper textarea {
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--text);
    font-size: 1rem;
    transition: border-color var(--transition);
    width: 100%;
}
.contact-form-wrapper input:focus,
.contact-form-wrapper select:focus,
.contact-form-wrapper textarea:focus {
    outline: none;
    border-color: var(--gold);
}
.contact-form-wrapper textarea { resize: vertical; min-height: 140px; }
.contact-form-wrapper .form-message {
    padding: 12px 16px;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 500;
}
.contact-form-wrapper .form-message.success {
    background: rgba(92,184,92,0.1);
    color: #3a7a3a;
    border: 1px solid rgba(92,184,92,0.3);
}
.contact-form-wrapper .form-message.error {
    background: rgba(220,53,69,0.08);
    color: #c0392b;
    border: 1px solid rgba(220,53,69,0.2);
}
@media (max-width: 640px) {
    .contact-form-wrapper .form-row { grid-template-columns: 1fr; }
}
