:root {
    --color-bg: #0a0a0a;
    --color-bg-elevated: #111111;
    --color-bg-card: #161616;
    --color-gold: #c9a962;
    --color-gold-light: #e4d4a7;
    --color-gold-dark: #9a7b3a;
    --color-text: #f5f5f5;
    --color-text-muted: #888888;
    --color-border: #2a2a2a;
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Noise texture overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 9999;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0) 100%);
    transition: all 0.4s ease;
}

header.scrolled {
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(20px);
    padding: 1rem 4rem;
    border-bottom: 1px solid var(--color-border);
}

.logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--color-text);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

nav {
    display: flex;
    gap: 3rem;
    align-items: center;
}

nav a {
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: width 0.3s ease;
}

nav a:hover {
    color: var(--color-text);
}

nav a:hover::after {
    width: 100%;
}

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

.header-phone {
    font-size: 0.9rem;
    color: var(--color-gold);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-devis {
    padding: 0.8rem 2rem;
    background: transparent;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
}

.btn-devis:hover {
    background: var(--color-gold);
    color: var(--color-bg);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 8rem 4rem 4rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(180deg, rgba(13,13,13,0.55) 0%, rgba(13,13,13,0.7) 50%, rgba(13,13,13,0.95) 100%),
        url('hero-bg.jpg') center 60% / cover no-repeat;
}

.hero-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    opacity: 0.1;
}

.hero-lines::before,
.hero-lines::after {
    content: '';
    position: absolute;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    height: 1px;
}

.hero-lines::before {
    top: 30%;
    left: -10%;
    width: 120%;
    animation: lineMove 8s ease-in-out infinite;
}

.hero-lines::after {
    top: 70%;
    right: -10%;
    width: 80%;
    animation: lineMove 12s ease-in-out infinite reverse;
}

@keyframes lineMove {
    0%, 100% { transform: translateX(-20%); opacity: 0.1; }
    50% { transform: translateX(20%); opacity: 0.3; }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1000px;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--color-border);
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero h1 em {
    font-style: italic;
    color: var(--color-gold);
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.8;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    animation: fadeInUp 1s ease 0.8s both;
}

.btn-primary {
    padding: 1.2rem 3rem;
    background: var(--color-gold);
    border: none;
    color: var(--color-bg);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    background: var(--color-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(201, 169, 98, 0.3);
}

.btn-secondary {
    padding: 1.2rem 3rem;
    background: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    border-color: var(--color-text);
    background: rgba(255,255,255,0.05);
}

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

/* Brands marquee */
.brands-section {
    padding: 4rem 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    overflow: hidden;
    background: var(--color-bg-elevated);
}

.brands-label {
    text-align: center;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.brands-track {
    display: flex;
    animation: marquee 40s linear infinite;
}

.brands-track:hover {
    animation-play-state: paused;
}

.brand-item {
    flex-shrink: 0;
    padding: 0 3rem;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--color-text-muted);
    white-space: nowrap;
    transition: color 0.3s ease;
    cursor: default;
    text-decoration: none;
}

.brand-item:hover {
    color: var(--color-gold);
}

a.brand-item {
    cursor: pointer;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Section styling */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-label {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 300;
    line-height: 1.2;
}

/* Services Section */
.services {
    padding: 8rem 4rem;
    background: var(--color-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    padding: 3rem 2rem;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-gold-dark);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

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

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: var(--color-gold);
}

.service-icon svg {
    width: 40px;
    height: 40px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.8;
}

/* Stats Section */
.stats {
    padding: 6rem 4rem;
    background: var(--color-bg-elevated);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.stat-item {
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 60px;
    width: 1px;
    background: var(--color-border);
}

.stat-item:last-child::after {
    display: none;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 300;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

/* About Section */
.about {
    padding: 8rem 4rem;
    background: var(--color-bg);
}

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

.about-content {
    padding-right: 2rem;
}

.about-content .section-label {
    text-align: left;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 2rem;
}

.about-text {
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 2;
    margin-bottom: 2rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.about-feature-icon {
    width: 24px;
    height: 24px;
    color: var(--color-gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.about-feature h4 {
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.3rem;
}

.about-feature p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.about-visual {
    position: relative;
    height: 600px;
}

.about-image {
    position: absolute;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
}

.about-image-1 {
    top: 0;
    right: 0;
    width: 80%;
    height: 70%;
    background: 
        linear-gradient(135deg, rgba(201, 169, 98, 0.1) 0%, transparent 50%),
        var(--color-bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-1::before {
    content: '🏎️';
    font-size: 8rem;
    opacity: 0.6;
}

.about-image-2 {
    bottom: 0;
    left: 0;
    width: 60%;
    height: 50%;
    background: 
        linear-gradient(225deg, rgba(201, 169, 98, 0.15) 0%, transparent 50%),
        var(--color-bg-elevated);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 2rem;
}

.quote-text {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-style: italic;
    text-align: center;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.quote-author {
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gold);
}

/* Values Section */
.values {
    padding: 8rem 4rem;
    background: var(--color-bg-elevated);
}

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

.value-card {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    transition: all 0.4s ease;
}

.value-card:hover {
    border-color: var(--color-gold-dark);
}

.value-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 300;
    color: var(--color-gold);
    line-height: 1;
}

.value-content h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
}

.value-content p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* Brands Grid Section */
.brands-grid-section {
    padding: 8rem 4rem;
    background: var(--color-bg);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.brand-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    padding: 3rem 2rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.brand-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.brand-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-gold-dark);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

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

.brand-card-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.brand-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.brand-card p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.brand-card .arrow {
    display: inline-block;
    margin-top: 1.5rem;
    color: var(--color-gold);
    transition: transform 0.3s ease;
}

.brand-card:hover .arrow {
    transform: translateX(5px);
}

/* CTA Section */
.cta {
    padding: 8rem 4rem;
    background: 
        radial-gradient(ellipse at center, rgba(201, 169, 98, 0.1) 0%, transparent 60%),
        var(--color-bg);
    text-align: center;
    position: relative;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta .section-title {
    margin-bottom: 1.5rem;
}

.cta-text {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
footer {
    padding: 5rem 4rem 2rem;
    background: var(--color-bg-elevated);
    border-top: 1px solid var(--color-border);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto 4rem;
}

.footer-brand .logo {
    margin-bottom: 1.5rem;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-contact-info a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-contact-info a:hover {
    color: var(--color-gold);
}

.footer-column h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

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

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
    max-width: 1400px;
    margin: 0 auto;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--color-text);
}

/* Brand Page Specific Styles */
.brand-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 10rem 4rem 6rem;
    overflow: hidden;
}

.brand-hero .hero-content {
    text-align: left;
    max-width: 800px;
}

.brand-hero h1 {
    text-align: left;
}

.brand-hero .hero-subtitle {
    text-align: left;
    margin: 0 0 3rem 0;
}

.brand-hero .hero-cta {
    justify-content: flex-start;
}

.brand-logo-large {
    font-size: 8rem;
    margin-bottom: 2rem;
    display: block;
    animation: fadeInUp 1s ease 0.2s both;
}

.brand-info {
    padding: 6rem 4rem;
    background: var(--color-bg-elevated);
}

.brand-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.brand-info-content h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

.brand-info-content p {
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 2;
    margin-bottom: 1.5rem;
}

.brand-features-list {
    list-style: none;
    margin-top: 2rem;
}

.brand-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.brand-features-list svg {
    width: 20px;
    height: 20px;
    color: var(--color-gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.brand-sidebar {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    padding: 3rem;
}

.brand-sidebar h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: var(--color-gold);
}

.guarantee-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--color-border);
}

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

.guarantee-item h4 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.guarantee-item p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* Models section */
.models-section {
    padding: 6rem 4rem;
    background: var(--color-bg);
}

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

.model-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    padding: 2rem;
    transition: all 0.4s ease;
}

.model-card:hover {
    border-color: var(--color-gold-dark);
    transform: translateY(-5px);
}

.model-card h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.model-card p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* Other brands section */
.other-brands {
    padding: 6rem 4rem;
    background: var(--color-bg-elevated);
    border-top: 1px solid var(--color-border);
}

.other-brands-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.other-brand-link {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    padding: 1.5rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.4s ease;
}

.other-brand-link:hover {
    border-color: var(--color-gold);
    background: var(--color-bg);
}

.other-brand-link span {
    display: block;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.other-brand-link p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* Breadcrumb */
.breadcrumb {
    padding: 1rem 4rem;
    background: var(--color-bg-elevated);
    border-bottom: 1px solid var(--color-border);
    margin-top: 80px;
}

.breadcrumb-list {
    list-style: none;
    display: flex;
    gap: 0.5rem;
    font-size: 0.85rem;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb-list a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-list a:hover {
    color: var(--color-gold);
}

.breadcrumb-list .separator {
    color: var(--color-text-muted);
}

.breadcrumb-list .current {
    color: var(--color-text);
}

/* Mobile responsive */
@media (max-width: 1200px) {
    .services-grid,
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    
    .stat-item:nth-child(2)::after {
        display: none;
    }
    
    .other-brands-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    header {
        padding: 1rem 2rem;
    }
    
    nav {
        display: none;
    }
    
    .hero,
    .brand-hero {
        padding: 6rem 2rem 4rem;
    }
    
    .about-container,
    .brand-info-grid {
        grid-template-columns: 1fr;
    }
    
    .about-visual {
        order: -1;
        height: 400px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .models-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .other-brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid,
    .brands-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stat-item::after {
        display: none;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .hero-cta,
    .brand-hero .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .brand-hero .hero-content {
        text-align: center;
    }
    
    .brand-hero h1,
    .brand-hero .hero-subtitle {
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .models-grid {
        grid-template-columns: 1fr;
    }
    
    .other-brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .breadcrumb {
        padding: 1rem 2rem;
    }
}

/* Scroll animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ═══ EXPERTISE SEO SECTION ═══ */
.expertise-section {
    padding: 8rem 4rem;
    background: var(--color-bg);
}

.expertise-content {
    max-width: 1200px;
    margin: 0 auto;
}

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

.expertise-block {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    padding: 3rem;
    transition: border-color 0.4s ease;
}

.expertise-block:hover {
    border-color: var(--color-gold-dark);
}

.expertise-block h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--color-gold);
}

.expertise-block p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.9;
}

.expertise-why {
    max-width: 1200px;
    margin: 0 auto;
}

.expertise-why > h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 3rem;
}

.expertise-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.comparison-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    padding: 3rem;
}

.comparison-card.highlighted {
    border-color: var(--color-gold);
    background: linear-gradient(135deg, rgba(201,169,98,0.05) 0%, var(--color-bg-card) 100%);
}

.comparison-card h4 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 2rem;
    text-align: center;
}

.comparison-card.highlighted h4 {
    color: var(--color-gold);
}

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

.comparison-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

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

.comparison-list.negative li::before {
    content: '✗';
    color: #e74c3c;
    font-weight: 600;
    flex-shrink: 0;
}

.comparison-list.positive li::before {
    content: '✓';
    color: var(--color-gold);
    font-weight: 600;
    flex-shrink: 0;
}

/* ═══ SEGMENTS SECTION ═══ */
.segments-section {
    padding: 8rem 4rem;
    background: var(--color-bg-elevated);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

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

.segment-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
}

.segment-card:hover {
    border-color: var(--color-gold-dark);
    transform: translateY(-5px);
}

.segment-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.segment-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
}

.segment-card p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.segment-detail {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gold);
}

/* ═══ FAQ SECTION ═══ */
.faq-section {
    padding: 8rem 4rem;
    background: var(--color-bg-elevated);
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--color-border);
    margin-bottom: 1rem;
    background: var(--color-bg);
    transition: border-color 0.3s ease;
}

.faq-item:hover,
.faq-item[open] {
    border-color: var(--color-gold-dark);
}

.faq-item summary {
    padding: 1.5rem 2rem;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    transition: color 0.3s ease;
}

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

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--color-gold);
    flex-shrink: 0;
    margin-left: 1rem;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.9;
}

/* ═══ FOOTER SEO LINKS ═══ */
.footer-seo {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 2rem 0;
    border-top: 1px solid var(--color-border);
}

.footer-seo h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1.2rem;
    color: var(--color-text-muted);
}

.footer-seo-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
}

.footer-seo-list li a {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
    opacity: 0.7;
}

.footer-seo-list li a:hover {
    color: var(--color-gold);
    opacity: 1;
}

/* ═══ RESPONSIVE ADDITIONS ═══ */
@media (max-width: 1200px) {
    .segments-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .expertise-section,
    .segments-section,
    .faq-section {
        padding: 5rem 2rem;
    }
}

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

    .faq-item summary {
        font-size: 1rem;
        padding: 1.2rem 1.5rem;
    }

    .faq-answer {
        padding: 0 1.5rem 1.2rem;
    }

    .expertise-block {
        padding: 2rem;
    }

    .comparison-card {
        padding: 2rem;
    }
}

/* ═══ PAGE DEVIS ═══ */
.devis-hero {
    position: relative;
    padding: 10rem 4rem 5rem;
    background: 
        radial-gradient(ellipse at 30% 70%, rgba(201,169,98,0.08) 0%, transparent 50%),
        linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-elevated) 100%);
    text-align: center;
    overflow: hidden;
}

.devis-hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    margin: 0 auto;
}

.devis-hero-content h1 {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.devis-hero-content h1 em {
    font-style: normal;
    color: var(--color-gold);
}

.devis-hero-content .hero-subtitle {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.devis-reassurance {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem 3rem;
}

.reassurance-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.88rem;
    color: rgba(240,235,227,0.75);
}

/* ── Wizard Section ── */
.devis-wizard-section {
    padding: 5rem 4rem 6rem;
    background: var(--color-bg);
    border-top: 1px solid var(--color-border);
}

.devis-wizard-container {
    max-width: 920px;
    margin: 0 auto;
    background: rgba(255,255,255,0.015);
    border: 1px solid var(--color-border);
    padding: 3.5rem;
}

/* ── Contact alternatif ── */
.devis-contact-alt {
    padding: 6rem 4rem;
    background: var(--color-bg-elevated);
    border-top: 1px solid var(--color-border);
}

.devis-contact-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.devis-contact-content h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.devis-contact-content > p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.devis-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.devis-contact-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    padding: 2.5rem 2rem;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.devis-contact-card:hover {
    border-color: var(--color-gold-dark);
    transform: translateY(-3px);
}

.devis-contact-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0.3rem 0 0;
}

.devis-contact-card .contact-value {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-gold);
}

.devis-contact-card .contact-detail {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

@media (max-width: 992px) {
    .devis-hero {
        padding: 8rem 2rem 4rem;
    }
    .devis-hero-content h1 {
        font-size: 2.2rem;
    }
    .devis-wizard-section {
        padding: 3rem 1.5rem 4rem;
    }
    .devis-wizard-container {
        padding: 2rem 1.5rem;
    }
    .devis-contact-alt {
        padding: 4rem 2rem;
    }
}

@media (max-width: 768px) {
    .devis-contact-grid {
        grid-template-columns: 1fr;
    }
    .devis-reassurance {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    .devis-wizard-container {
        padding: 1.5rem 1rem;
        border: none;
    }
}
