/* ============================================
   CleanCar68 - Global Stylesheet
   Couleurs: Noir (dominant), Rouge (accent), Blanc (contraste)
   ============================================ */

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

:root {
    --black: #0a0a0a;
    --black-light: #131313;
    --black-card: #1a1a1a;
    --black-surface: #1e1e1e;
    --black-border: #2a2a2a;
    --red: #e10000;
    --red-dark: #b30000;
    --red-glow: rgba(225, 0, 0, 0.15);
    --red-subtle: rgba(225, 0, 0, 0.08);
    --white: #ffffff;
    --white-soft: #e5e2e1;
    --gray-100: #f5f5f5;
    --gray-200: #e0e0e0;
    --gray-300: #c8c6c5;
    --gray-400: #999999;
    --gray-500: #777777;
    --gray-600: #555555;
    --gray-700: #333333;
    --nav-height: 80px;
    --section-padding: 100px 0;
    --container-width: 1200px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow-card: 0 4px 24px rgba(0,0,0,0.4);
    --shadow-hover: 0 8px 40px rgba(0,0,0,0.6);
    --shadow-red: 0 4px 30px rgba(225, 0, 0, 0.25);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--black);
    color: var(--white-soft);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

ul, ol { list-style: none; }

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

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    line-height: 1.1;
    color: var(--white);
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

.text-red { color: var(--red); }
.text-gradient {
    background: linear-gradient(135deg, #ff6b6b 0%, var(--red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-label {
    font-family: 'Manrope', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 16px;
    display: block;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 16px 36px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--red);
    color: var(--white);
    box-shadow: var(--shadow-red);
}

.btn-primary:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 35px rgba(225, 0, 0, 0.35);
}

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

.btn-outline:hover {
    border-color: var(--red);
    color: var(--red);
}

.btn-white {
    background: var(--white);
    color: var(--black);
}

.btn-white:hover {
    background: var(--gray-200);
    transform: translateY(-2px);
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    z-index: 1000;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo img {
    height: 50px;
    width: auto;
}

.nav-logo-text {
    font-family: 'Manrope', sans-serif;
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -0.03em;
    text-transform: uppercase;
    font-style: italic;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links a {
    font-family: 'Manrope', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--gray-400);
    position: relative;
    padding-bottom: 4px;
}

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

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--red);
}

.nav-cta {
    padding: 12px 28px;
    font-size: 0.75rem;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: var(--nav-height);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(10, 10, 10, 0.95) 0%,
        rgba(10, 10, 10, 0.6) 50%,
        rgba(10, 10, 10, 0.3) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 700px;
}

.hero h1 {
    margin-bottom: 24px;
}

.hero p {
    font-size: 1.15rem;
    color: var(--gray-300);
    max-width: 520px;
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* --- Sections --- */
.section {
    padding: var(--section-padding);
}

.section-dark {
    background: var(--black);
}

.section-darker {
    background: var(--black-light);
}

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

.section-white h2,
.section-white h3,
.section-white h4 {
    color: var(--black);
}

.section-header {
    margin-bottom: 60px;
}

.section-header p {
    color: var(--gray-400);
    max-width: 550px;
    font-size: 1.05rem;
    margin-top: 16px;
    line-height: 1.7;
}

.section-white .section-header p {
    color: var(--gray-600);
}

/* --- Cards --- */
.card {
    background: var(--black-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--black-border);
    overflow: hidden;
    transition: var(--transition);
}

.card:hover {
    border-color: rgba(225, 0, 0, 0.2);
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

/* --- Before/After --- */
.before-after-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.ba-card {
    background: var(--black-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--black-border);
    transition: var(--transition);
}

.ba-card:hover {
    border-color: rgba(225, 0, 0, 0.2);
}

.ba-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.ba-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ba-image .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
}

.ba-card-body {
    padding: 24px;
}

.ba-card-body h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.ba-card-body p {
    color: var(--gray-500);
    font-size: 0.9rem;
}

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

.service-card {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

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

.service-card:hover img {
    transform: scale(1.08);
}

.service-card .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 60%);
}

.service-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
}

.service-card-content .icon {
    font-size: 2.2rem;
    color: var(--red);
    margin-bottom: 12px;
}

.service-card-content h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.service-card-content p {
    color: var(--gray-400);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* --- Positioning Section --- */
.positioning {
    background: var(--white);
    color: var(--black);
    padding: 120px 0;
}

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

.positioning h2 {
    color: var(--black);
    margin-bottom: 24px;
}

.positioning p {
    color: var(--gray-600);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.tag-list {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.tag {
    background: var(--black);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-family: 'Manrope', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.positioning-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.positioning-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
}

/* --- Subscription Section --- */
.subscription-card {
    background: var(--black-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--black-border);
    padding: 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.subscription-card h2 {
    margin-bottom: 24px;
}

.subscription-card > div:first-child p {
    color: var(--gray-400);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 32px;
}

.club-card {
    background: var(--black-surface);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--black-border);
}

.club-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--black-border);
}

.club-card-header .plan-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gray-500);
    font-weight: 700;
    display: block;
    margin-bottom: 4px;
}

.club-card-header .plan-name {
    font-family: 'Manrope', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
}

.club-card-header .price {
    font-family: 'Manrope', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--white);
}

.club-card-header .price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--gray-500);
}

.club-card-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.club-card-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--gray-300);
}

.club-card-features li .check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--red-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.club-card-features li .check svg {
    width: 12px;
    height: 12px;
    stroke: var(--red);
}

/* --- Advantages --- */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.advantage-item {
    text-align: left;
}

.advantage-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: var(--black-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 1px solid var(--black-border);
}

.advantage-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--red);
}

.advantage-item h4 {
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.advantage-item p {
    color: var(--gray-500);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* --- CTA Banner --- */
.cta-banner {
    background: linear-gradient(135deg, var(--black-card) 0%, var(--black-surface) 100%);
    border: 1px solid var(--black-border);
    border-radius: var(--radius-xl);
    padding: 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 320px;
    height: 320px;
    background: rgba(225, 0, 0, 0.14);
    border-radius: 50%;
    filter: blur(90px);
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 260px;
    height: 260px;
    background: rgba(225, 0, 0, 0.06);
    border-radius: 50%;
    filter: blur(80px);
}

.cta-banner h2 {
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.cta-banner p {
    color: rgba(255,255,255,0.65);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 1;
}

/* --- Pricing Cards --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.pricing-card {
    background: var(--black-card);
    border-radius: var(--radius-lg);
    padding: 40px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--black-border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    border-color: rgba(225, 0, 0, 0.3);
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.pricing-card.featured {
    border: 2px solid var(--red);
    transform: translateY(-10px);
    box-shadow: var(--shadow-red);
}

.pricing-card.featured:hover {
    transform: translateY(-16px);
}

.pricing-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--red);
    color: var(--white);
    font-family: 'Manrope', sans-serif;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-bottom-left-radius: var(--radius-sm);
}

.pricing-card-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 8px;
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.pricing-card-desc {
    color: var(--gray-500);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 28px;
}

.pricing-features {
    flex: 1;
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--white-soft);
}

.pricing-features li svg {
    width: 18px;
    height: 18px;
    stroke: var(--red);
    flex-shrink: 0;
}

.pricing-table {
    background: rgba(0,0,0,0.3);
    border-radius: var(--radius-sm);
    padding: 16px;
    margin-bottom: 28px;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 0.9rem;
}

.pricing-row .type {
    color: var(--gray-400);
}

.pricing-row .price {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    color: var(--white);
}

.pricing-card .btn {
    width: 100%;
    justify-content: center;
    margin-top: auto;
}

/* --- Option Card --- */
.option-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 280px;
}

.option-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
    transition: var(--transition-slow);
}

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

.option-card-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
}

.option-card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.option-card-content p {
    color: var(--red);
    font-weight: 700;
}

.option-price {
    font-family: 'Manrope', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--white);
}

/* --- Tips Section --- */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tip-card {
    background: var(--black-card);
    border-radius: var(--radius-lg);
    padding: 36px;
    border: 1px solid var(--black-border);
    transition: var(--transition);
}

.tip-card:hover {
    border-color: rgba(225, 0, 0, 0.15);
    transform: translateY(-3px);
}

.tip-number {
    font-family: 'Manrope', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--red);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 16px;
}

.tip-card h4 {
    margin-bottom: 12px;
}

.tip-card p {
    color: var(--gray-500);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* --- Gallery --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery-item.wide {
    grid-column: span 2;
    aspect-ratio: 2/1;
}

.gallery-item.tall {
    grid-row: span 2;
    aspect-ratio: auto;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,10,0.8) 0%, rgba(10,10,10,0.1) 40%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.gallery-overlay p {
    color: var(--gray-400);
    font-size: 0.85rem;
}

.gallery-overlay .tag-small {
    display: inline-block;
    background: var(--red);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 10px;
    width: fit-content;
}

/* --- Zone --- */
.zone-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.zone-map {
    position: relative;
    background: var(--black-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--black-border);
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zone-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.zone-card {
    background: var(--black-card);
    border-radius: var(--radius-md);
    padding: 28px;
    border-left: 4px solid var(--red);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--black-border);
    border-right: 1px solid var(--black-border);
    border-bottom: 1px solid var(--black-border);
    transition: var(--transition);
}

.zone-card:hover {
    background: var(--black-surface);
}

.zone-card .zone-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gray-500);
    font-weight: 600;
    margin-bottom: 4px;
}

.zone-card h4 {
    font-size: 1.3rem;
}

.zone-price {
    font-family: 'Manrope', sans-serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--white);
}

.zone-price.free {
    color: var(--red);
}

.zone-price small {
    display: block;
    font-size: 0.65rem;
    font-weight: 400;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: right;
}

/* --- Contact --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form {
    background: var(--black-card);
    border-radius: var(--radius-lg);
    padding: 48px;
    border: 1px solid var(--black-border);
}

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

.form-group label {
    display: block;
    font-family: 'Manrope', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-400);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background: var(--black-surface);
    border: 1px solid var(--black-border);
    color: var(--white);
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px var(--red-glow);
}

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

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

/* --- Alsace Map --- */
.alsace-map-container {
    background: var(--black-card);
    border-radius: var(--radius-lg);
    padding: 48px;
    border: 1px solid var(--black-border);
    text-align: center;
}

.alsace-map-container h3 {
    margin-bottom: 24px;
}

.alsace-map-container p {
    color: var(--gray-400);
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.alsace-svg {
    max-width: 300px;
    margin: 0 auto;
}

.dept-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 10px 16px;
    font-family: 'Manrope', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
}

.dept-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--red);
}

/* --- Footer --- */
.footer {
    background: var(--black-light);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 60px 0;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-brand {
    font-family: 'Manrope', sans-serif;
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
    font-style: italic;
}

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

.footer-links a {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-600);
}

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

.footer-copy {
    font-size: 0.75rem;
    color: var(--gray-600);
    letter-spacing: 0.05em;
}

/* --- Page Header (inner pages) --- */
.page-header {
    padding: 160px 0 80px;
    background: var(--black);
    position: relative;
}

.page-header h1 {
    margin-bottom: 16px;
}

.page-header p {
    color: var(--gray-400);
    font-size: 1.1rem;
    max-width: 600px;
}

.page-header .notice {
    display: inline-block;
    background: var(--black-card);
    border-left: 4px solid var(--red);
    padding: 14px 24px;
    border-radius: var(--radius-sm);
    margin-top: 20px;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    color: var(--red);
    font-size: 0.95rem;
}

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

@keyframes pulse-ring {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    100% { transform: translate(-50%, -50%) scale(1.3); opacity: 0; }
}

.fade-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* --- Utility --- */
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mt-60 { margin-top: 60px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }

/* ============================================
   NAVBAR : Logo + Mon compte + Burger mobile
   ============================================ */

/* Le logo image contient deja "CLEANCAR68" : on masque le texte pour eviter le double */
.nav-logo-text {
    display: none;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-account {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--black-surface);
    border: 1px solid var(--black-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
    flex-shrink: 0;
}
.nav-account:hover {
    background: var(--red);
    border-color: var(--red);
}
.nav-account svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

.nav-burger {
    display: none;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid var(--black-border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    flex-shrink: 0;
}
.nav-burger span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--white);
    transition: transform 0.25s, opacity 0.25s;
}
.nav-burger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-burger.open span:nth-child(2) {
    opacity: 0;
}
.nav-burger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   PAGES AUTH : layout centre, carte
   ============================================ */
.auth-page {
    min-height: 100vh;
    padding: calc(var(--nav-height) + 40px) 20px 60px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background:
        radial-gradient(circle at 80% 20%, rgba(225, 0, 0, 0.08), transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(225, 0, 0, 0.04), transparent 50%),
        var(--black);
}
.auth-card {
    width: 100%;
    max-width: 460px;
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    box-shadow: var(--shadow-card);
}
.auth-card-header {
    text-align: center;
    margin-bottom: 32px;
}
.auth-card-header h1 {
    font-size: 1.8rem;
    margin-bottom: 8px;
}
.auth-card-header p {
    color: var(--gray-400);
    font-size: 0.9rem;
}
.auth-card form .form-group {
    margin-bottom: 20px;
}
.auth-card .auth-actions {
    margin-top: 28px;
}
.auth-card .auth-actions .btn {
    width: 100%;
    justify-content: center;
}
.auth-card .auth-extras {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    margin-top: 16px;
}
.auth-card .auth-extras a {
    color: var(--gray-400);
    text-decoration: none;
}
.auth-card .auth-extras a:hover {
    color: var(--red);
}
.auth-card .auth-divider {
    text-align: center;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--black-border);
    color: var(--gray-500);
    font-size: 0.85rem;
}
.auth-card .auth-divider a {
    color: var(--red);
    text-decoration: none;
    font-weight: 700;
}
.auth-card .auth-divider a:hover {
    text-decoration: underline;
}
.auth-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 8px;
    font-size: 0.82rem;
    color: var(--gray-400);
    line-height: 1.5;
}
.auth-checkbox input {
    margin-top: 3px;
    accent-color: var(--red);
}
.auth-checkbox a {
    color: var(--red);
    text-decoration: none;
}
.auth-checkbox a:hover {
    text-decoration: underline;
}

/* Separateur "ou" entre form classique et bouton social */
.auth-separator {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 24px 0;
    color: var(--gray-500);
    font-family: 'Manrope', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}
.auth-separator::before,
.auth-separator::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--black-border);
}

/* Bouton social (Google, etc.) */
.btn-social {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--white);
    color: #1f1f1f;
    border: 1px solid var(--white);
    padding: 13px 20px;
    border-radius: var(--radius-sm);
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}
.btn-social:hover {
    background: var(--gray-200);
    border-color: var(--gray-200);
    color: #1f1f1f;
    transform: translateY(-1px);
}
.btn-social svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* ============================================
   FORM STATES : erreur / succes
   ============================================ */
.form-message {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.form-message.error {
    background: rgba(225, 0, 0, 0.1);
    border: 1px solid rgba(225, 0, 0, 0.3);
    color: #ff8888;
}
.form-message.success {
    background: rgba(0, 200, 100, 0.1);
    border: 1px solid rgba(0, 200, 100, 0.3);
    color: #6fe3a3;
}
.form-group input.invalid,
.form-group select.invalid,
.form-group textarea.invalid {
    border-color: var(--red);
}
.field-help {
    display: block;
    margin-top: 6px;
    font-size: 0.75rem;
    color: var(--gray-500);
}
.field-error {
    display: block;
    margin-top: 6px;
    font-size: 0.78rem;
    color: #ff8888;
}

/* ============================================
   ESPACE CLIENT : dashboard + tableau commandes
   ============================================ */
.account-page {
    padding: calc(var(--nav-height) + 40px) 20px 80px;
    background: var(--black);
    min-height: 100vh;
}
.account-container {
    max-width: 1100px;
    margin: 0 auto;
}
.account-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 28px;
    margin-bottom: 32px;
    border-bottom: 1px solid var(--black-border);
}
.account-header h1 {
    font-size: 2rem;
    margin-bottom: 4px;
}
.account-header p {
    color: var(--gray-400);
    font-size: 0.95rem;
}
.account-header .user-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--black-card);
    border: 1px solid var(--black-border);
    padding: 10px 18px;
    border-radius: 50px;
}
.account-header .user-meta .user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 0.85rem;
}
.account-header .user-meta .user-info {
    line-height: 1.2;
}
.account-header .user-meta .user-info strong {
    display: block;
    color: var(--white);
    font-size: 0.85rem;
}
.account-header .user-meta .user-info span {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.account-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}
.stat-card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: var(--radius-md);
    padding: 24px;
}
.stat-card .stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-500);
    font-weight: 700;
    margin-bottom: 8px;
}
.stat-card .stat-value {
    font-family: 'Manrope', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
}
.stat-card .stat-value .stat-unit {
    font-size: 0.9rem;
    color: var(--gray-400);
    font-weight: 600;
    margin-left: 4px;
}

.section-title {
    font-family: 'Manrope', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.orders-table-wrap {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    overflow-x: auto;
}
.orders-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}
.orders-table th,
.orders-table td {
    text-align: left;
    padding: 16px 20px;
    border-bottom: 1px solid var(--black-border);
    font-size: 0.88rem;
}
.orders-table th {
    background: var(--black-surface);
    color: var(--white);
    font-family: 'Manrope', sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 800;
}
.orders-table td {
    color: var(--gray-300);
}
.orders-table tr:last-child td {
    border-bottom: none;
}
.orders-table tr:hover td {
    background: var(--black-surface);
}
.orders-table .order-amount {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    color: var(--white);
}
.orders-table .order-action {
    color: var(--red);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.orders-table .order-action:hover {
    text-decoration: underline;
}

/* Status badges */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 50px;
    font-family: 'Manrope', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.badge::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}
.badge-paid {
    background: rgba(0, 200, 100, 0.12);
    color: #6fe3a3;
}
.badge-pending {
    background: rgba(255, 180, 0, 0.12);
    color: #ffc94f;
}
.badge-cancelled {
    background: rgba(225, 0, 0, 0.12);
    color: #ff7d7d;
}
.badge-completed {
    background: rgba(120, 180, 255, 0.12);
    color: #91c0ff;
}

.empty-state {
    background: var(--black-card);
    border: 1px dashed var(--black-border);
    border-radius: var(--radius-md);
    padding: 60px 40px;
    text-align: center;
    color: var(--gray-500);
}
.empty-state svg {
    width: 48px;
    height: 48px;
    stroke: var(--gray-600);
    margin: 0 auto 16px;
}
.empty-state h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 8px;
}
.empty-state p {
    margin-bottom: 20px;
    color: var(--gray-500);
    font-size: 0.9rem;
}

/* ============================================
   DETAIL COMMANDE
   ============================================ */
.order-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 32px;
}
.order-card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: var(--radius-md);
    padding: 32px;
}
.order-card h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--black-border);
}
.order-meta {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 12px 24px;
    margin-bottom: 8px;
}
.order-meta dt {
    color: var(--gray-500);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
}
.order-meta dd {
    color: var(--white);
    font-size: 0.95rem;
}
.order-line {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid var(--black-border);
}
.order-line:last-of-type {
    border-bottom: none;
}
.order-line .label {
    color: var(--gray-300);
}
.order-line .value {
    color: var(--white);
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
}
.order-line.total {
    margin-top: 8px;
    padding-top: 16px;
    border-top: 2px solid var(--black-border);
    font-size: 1.1rem;
}
.order-line.total .value {
    color: var(--red);
    font-size: 1.3rem;
    font-weight: 800;
}

/* ============================================
   CHECKOUT
   ============================================ */
.checkout-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
}
.payment-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--black-surface);
    border: 1px solid var(--black-border);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    cursor: pointer;
    transition: var(--transition);
}
.payment-method:hover,
.payment-method.selected {
    border-color: var(--red);
    background: rgba(225, 0, 0, 0.04);
}
.payment-method input[type="radio"] {
    accent-color: var(--red);
    width: 18px;
    height: 18px;
}
.payment-method .pm-icon {
    width: 40px;
    height: 28px;
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Manrope', sans-serif;
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--white);
}
.payment-method .pm-info {
    flex: 1;
}
.payment-method .pm-info strong {
    display: block;
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 2px;
}
.payment-method .pm-info span {
    color: var(--gray-500);
    font-size: 0.8rem;
}
.checkout-summary {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: var(--radius-md);
    padding: 28px;
    position: sticky;
    top: calc(var(--nav-height) + 20px);
    height: fit-content;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 960px) {
    .nav-links {
        display: none;
        position: fixed;
        top: var(--nav-height);
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 20px;
        border-bottom: 1px solid var(--black-border);
        max-height: calc(100vh - var(--nav-height));
        overflow-y: auto;
    }
    .nav-links.open {
        display: flex;
    }
    .nav-links a {
        width: 100%;
        padding: 16px 8px;
        font-size: 0.95rem;
        border-bottom: 1px solid var(--black-border);
    }
    .nav-links a:last-child {
        border-bottom: none;
    }
    .nav-links a.active::after {
        display: none;
    }
    .nav-cta {
        display: none;
    }
    .nav-burger {
        display: flex;
    }
    .order-detail-grid,
    .checkout-grid {
        grid-template-columns: 1fr;
    }
    .checkout-summary {
        position: static;
    }
}

@media (max-width: 640px) {
    .auth-card {
        padding: 32px 24px;
    }
    .account-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .pricing-grid,
    .services-grid,
    .advantages-grid,
    .tips-grid,
    .before-after-grid {
        grid-template-columns: 1fr !important;
    }
    .positioning-grid,
    .zone-grid,
    .contact-main {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    .cta-banner {
        padding: 48px 28px;
    }
    .final-cta-card {
        flex-direction: column;
        padding: 40px 28px !important;
        text-align: center;
    }
}
