/* ============================================
   IMPRESSION MURALE 56 - Main Stylesheet
   ============================================ */

:root {
    --white: #FFFFFF;
    --snow: #FAFAFA;
    --pearl: #F7F5F3;
    --silk: #F0EDE9;
    --linen: #E8E4DF;
    --stone: #D4CFC8;
    --warm-gray: #9B9590;
    --charcoal: #3D3D3D;
    --black: #1A1A1A;
    --copper: #B87333;
    --copper-light: #D4956A;
    --copper-dark: #8B5A2B;
    --sage: #9CAF88;
    --navy: #2C3E50;
    --navy-light: #2c4a6e;

    /* Status colors */
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
    --info: #17a2b8;
    --primary: #007bff;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Raleway', sans-serif;
    background: var(--snow);
    color: var(--charcoal);
    line-height: 1.8;
    font-weight: 400;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    line-height: 1.3;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Icon styling */
.icon-svg {
    width: 24px;
    height: 24px;
    min-width: 24px;
    max-width: 24px;
    min-height: 24px;
    max-height: 24px;
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

.icon-svg.lg { width: 32px; height: 32px; min-width: 32px; max-width: 32px; min-height: 32px; max-height: 32px; }
.icon-svg.xl { width: 40px; height: 40px; min-width: 40px; max-width: 40px; min-height: 40px; max-height: 40px; stroke-width: 1.25; }
.icon-svg.xxl { width: 48px; height: 48px; min-width: 48px; max-width: 48px; min-height: 48px; max-height: 48px; stroke-width: 1; }

/* Prevent SVGs from growing unexpectedly */
svg:not(.icon-svg) {
    max-width: 100%;
    height: auto;
}

/* ============================================
   FLASH MESSAGES
   ============================================ */

.flash-messages {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
}

.flash-message {
    padding: 1rem 2rem 1rem 1.5rem;
    border-radius: 4px;
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    position: relative;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.flash-success { border-left: 4px solid var(--success); }
.flash-error { border-left: 4px solid var(--danger); }
.flash-warning { border-left: 4px solid var(--warning); }
.flash-info { border-left: 4px solid var(--info); }

.flash-close {
    position: absolute;
    top: 5px;
    right: 10px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--warm-gray);
}

/* ============================================
   HEADER
   ============================================ */

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 4rem;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
}

header.scrolled {
    padding: 0.75rem 4rem;
    box-shadow: 0 2px 40px rgba(0,0,0,0.06);
}

nav {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: translateY(-2px);
}

.logo-mark {
    width: 56px;
    height: 56px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-diamond {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Outer diamond border */
.logo-diamond::before {
    content: '';
    position: absolute;
    width: 46px;
    height: 46px;
    border: 2px solid var(--copper);
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

/* Inner diamond accent */
.logo-diamond::after {
    content: '';
    position: absolute;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(184, 115, 51, 0.3);
    transform: rotate(45deg);
}

.logo:hover .logo-diamond::before {
    width: 50px;
    height: 50px;
    border-color: var(--copper-dark);
}

.logo-inner {
    display: flex;
    gap: 2px;
    z-index: 1;
}

.logo-letter {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--copper);
    line-height: 1;
    transition: color 0.3s ease;
}

.logo-letter:first-child {
    font-style: italic;
    color: var(--copper-dark);
}

.logo:hover .logo-letter {
    color: var(--copper-dark);
}

/* Corner accent */
.logo-accent {
    position: absolute;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--copper) 0%, var(--copper-dark) 100%);
    transform: rotate(45deg);
    top: 0;
    right: 4px;
    opacity: 0.8;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-text .brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--charcoal);
    letter-spacing: 0.5px;
    line-height: 1.1;
}

.logo-text .brand-highlight {
    font-weight: 700;
    font-style: italic;
    color: var(--black);
}

.logo-text .brand-num {
    font-weight: 400;
    color: var(--copper);
    margin-left: 2px;
}

.logo-text .tagline {
    font-size: 0.6rem;
    color: var(--warm-gray);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.tagline-dot {
    width: 3px;
    height: 3px;
    background: var(--copper);
    opacity: 0.6;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    color: var(--charcoal);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 4px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--copper);
    transition: width 0.4s ease;
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.header-cta {
    background: var(--black);
    color: var(--white);
    padding: 0.9rem 2rem;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s ease;
}

.header-cta:hover {
    background: var(--copper);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 24px;
    height: 1.5px;
    background: var(--black);
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu li {
    margin-bottom: 1rem;
}

.mobile-menu a {
    font-size: 1rem;
    font-weight: 500;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn-primary {
    background: var(--black);
    color: var(--white);
    padding: 1.1rem 2.5rem;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--copper);
}

.btn-secondary {
    background: transparent;
    color: var(--charcoal);
    padding: 1.1rem 2.5rem;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid var(--charcoal);
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.btn-secondary:hover {
    background: var(--charcoal);
    color: var(--white);
}

/* ============================================
   SECTION STYLING
   ============================================ */

.section-header {
    max-width: 800px;
    margin: 0 auto 5rem;
    text-align: center;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.section-label span {
    font-size: 0.7rem;
    color: var(--copper);
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 600;
}

.section-label::before,
.section-label::after {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--stone);
}

.section-title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--black);
    margin-bottom: 1.5rem;
}

.section-subtitle {
    color: var(--warm-gray);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--white);
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8rem 6rem 6rem 8rem;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.hero-badge span {
    font-size: 0.7rem;
    color: var(--copper);
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 600;
}

.hero-badge::before,
.hero-badge::after {
    content: '';
    width: 8px;
    height: 8px;
    border: 1px solid var(--stone);
    transform: rotate(45deg);
}

.hero h1 {
    font-size: clamp(2.8rem, 4.5vw, 4rem);
    color: var(--black);
    margin-bottom: 2rem;
    font-weight: 500;
}

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

.hero-description {
    font-size: 1.05rem;
    color: var(--warm-gray);
    max-width: 480px;
    margin-bottom: 1.5rem;
    font-weight: 400;
    line-height: 1.9;
}

.hero-features {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--silk);
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-feature .icon {
    width: 40px;
    height: 40px;
    border: 1px solid var(--linen);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--copper);
}

.hero-feature span {
    font-size: 0.8rem;
    color: var(--charcoal);
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
}

.hero-visual {
    position: relative;
    background: var(--pearl);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* ============================================
   PAGE HERO
   ============================================ */

.page-hero {
    padding: 12rem 4rem 6rem;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.page-hero.dark {
    background: var(--black);
    color: var(--white);
}

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

.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.breadcrumb span {
    color: var(--stone);
}

.breadcrumb .current {
    color: var(--charcoal);
    font-weight: 500;
}

.page-hero h1 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--black);
    margin-bottom: 1.5rem;
}

.page-hero.dark h1 {
    color: var(--white);
}

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

.page-hero.dark h1 em {
    color: var(--copper-light);
}

.page-hero-text {
    font-size: 1.1rem;
    color: var(--warm-gray);
    line-height: 1.9;
    margin-bottom: 2rem;
}

.page-hero.dark .page-hero-text {
    color: var(--stone);
}

/* ============================================
   CARDS & GRIDS
   ============================================ */

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

.card {
    background: var(--white);
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* ============================================
   FORMS
   ============================================ */

.form-section {
    padding: 6rem 4rem;
    background: var(--pearl);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--charcoal);
}

.form-group label .required {
    color: var(--danger);
}

.form-control {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid var(--linen);
    font-family: 'Raleway', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-control:focus {
    outline: none;
    border-color: var(--copper);
}

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

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%239B9590' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px;
    padding-right: 2.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.radio-group {
    display: flex;
    gap: 2rem;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.radio-option input {
    width: 18px;
    height: 18px;
    accent-color: var(--copper);
}

/* ============================================
   FOOTER
   ============================================ */

footer {
    background: var(--black);
    padding: 5rem 4rem 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

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

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

.footer-brand .logo-diamond::before {
    border-color: var(--copper);
}

.footer-brand .logo-diamond::after {
    border-color: rgba(184, 115, 51, 0.4);
}

.footer-brand .logo-letter {
    color: var(--copper);
}

.footer-brand .logo-letter:first-child {
    color: var(--copper-light);
}

.footer-brand .logo-text .brand {
    color: var(--white);
}

.footer-brand .logo-text .brand-highlight {
    color: var(--white);
}

.footer-brand .tagline-dot {
    background: var(--copper);
}

.footer-brand p {
    color: var(--warm-gray);
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-column h5 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

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

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

.footer-column a {
    color: var(--warm-gray);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--copper-light);
}

.footer-bottom {
    max-width: 1400px;
    margin: 4rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--warm-gray);
    font-size: 0.8rem;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    padding: 8rem 4rem;
    background: linear-gradient(135deg, var(--black) 0%, #2a2a2a 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-inner {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-section > .cta-inner > p {
    font-size: 1.1rem;
    color: var(--warm-gray);
    margin-bottom: 2.5rem;
}

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

.cta-section .btn-primary {
    background: var(--copper);
}

.cta-section .btn-primary:hover {
    background: var(--copper-light);
}

.cta-section .btn-secondary {
    color: var(--white);
    border-color: rgba(255,255,255,0.3);
}

.cta-section .btn-secondary:hover {
    background: var(--white);
    color: var(--black);
}

/* ============================================
   RESPONSIVE
   ============================================ */

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

    .hero-content {
        padding: 10rem 4rem 4rem;
        text-align: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .page-hero-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    header {
        padding: 1rem 1.5rem;
    }

    /* Mobile Logo */
    .logo {
        gap: 0.8rem;
    }

    .logo-mark {
        width: 44px;
        height: 44px;
    }

    .logo-diamond::before {
        width: 36px;
        height: 36px;
    }

    .logo-diamond::after {
        width: 28px;
        height: 28px;
    }

    .logo-letter {
        font-size: 0.95rem;
    }

    .logo-accent {
        width: 6px;
        height: 6px;
        top: 0;
        right: 3px;
    }

    .logo-text .brand {
        font-size: 1rem;
        white-space: nowrap;
    }

    .logo-text .tagline {
        font-size: 0.5rem;
        letter-spacing: 1.5px;
    }

    .tagline-dot {
        width: 2px;
        height: 2px;
    }

    .nav-links,
    .header-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-content {
        padding: 8rem 2rem 3rem;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .page-hero {
        padding: 10rem 1.5rem 4rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand .logo {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-section {
        padding: 4rem 1.5rem;
    }

    .form-container {
        padding: 2rem 1.5rem;
    }
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--black);
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-text p {
    color: var(--stone);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
}

.cookie-link {
    color: var(--warm-gray);
    font-size: 0.85rem;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-link:hover {
    color: var(--copper-light);
}

.cookie-accept {
    background: var(--copper);
    color: var(--white);
    border: none;
    padding: 0.8rem 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cookie-accept:hover {
    background: var(--copper-light);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

/* Extra small screens */
@media (max-width: 400px) {
    .logo {
        gap: 0.5rem;
    }

    .logo-mark {
        width: 38px;
        height: 38px;
    }

    .logo-diamond::before {
        width: 30px;
        height: 30px;
        border-width: 1.5px;
    }

    .logo-diamond::after {
        width: 22px;
        height: 22px;
    }

    .logo-letter {
        font-size: 0.85rem;
    }

    .logo-accent {
        display: none;
    }

    .logo-text .brand {
        font-size: 0.9rem;
    }

    .logo-text .tagline {
        font-size: 0.45rem;
        letter-spacing: 1px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

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

/* ============================================
   HERO SECTION - Full Layout
   ============================================ */

.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--white);
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8rem 6rem 6rem 8rem;
    position: relative;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 0;
    width: 1px;
    height: 200px;
    background: linear-gradient(180deg, transparent, var(--stone), transparent);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.hero-badge span {
    font-size: 0.7rem;
    color: var(--copper);
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 600;
}

.hero-badge::before,
.hero-badge::after {
    content: '';
    width: 8px;
    height: 8px;
    border: 1px solid var(--stone);
    transform: rotate(45deg);
}

.hero h1 {
    font-size: clamp(2.8rem, 4.5vw, 4rem);
    color: var(--black);
    margin-bottom: 2rem;
    font-weight: 500;
}

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

.hero-description {
    font-size: 1.05rem;
    color: var(--warm-gray);
    max-width: 480px;
    margin-bottom: 1.5rem;
    font-weight: 400;
    line-height: 1.9;
}

.hero-features {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--silk);
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-feature .icon {
    width: 40px;
    height: 40px;
    border: 1px solid var(--linen);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--copper);
}

.hero-feature span {
    font-size: 0.8rem;
    color: var(--charcoal);
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
}

.hero-visual {
    position: relative;
    background: var(--pearl);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-visual::before {
    content: '';
    position: absolute;
    inset: 60px;
    border: 1px solid var(--linen);
}

.hero-visual-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Hero Stats Bar */
.hero-stats-bar {
    background: linear-gradient(135deg, var(--charcoal) 0%, #1a1a1a 100%);
    padding: 0;
}

.hero-stats-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.hero-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 1.5rem;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.hero-stat-item:last-child {
    border-right: none;
}

.hero-stat-item:hover {
    background: rgba(255,255,255,0.05);
}

.hero-stat-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(184, 115, 51, 0.15);
    border-radius: 50%;
    border: 1px solid rgba(184, 115, 51, 0.3);
}

.hero-stat-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--copper-light);
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero-stat-item:hover .hero-stat-icon {
    background: rgba(184, 115, 51, 0.25);
    border-color: var(--copper);
    transform: scale(1.05);
    transition: all 0.3s ease;
}

.hero-stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--copper);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.hero-stat-label {
    font-family: 'Raleway', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Feature Grid */
.hero-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 3rem;
    position: relative;
    z-index: 1;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--pearl);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.hero-feature-item:hover {
    background: var(--silk);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.hero-feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
    flex-shrink: 0;
}

.hero-feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--copper);
}

.hero-feature-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-feature-value {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--black);
    line-height: 1;
}

.hero-feature-label {
    font-size: 0.75rem;
    color: var(--warm-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-item {
    text-align: center;
    background: var(--white);
    padding: 1.5rem 2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}

.stat-item .value {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--copper);
    line-height: 1;
}

.stat-item .label {
    font-size: 0.65rem;
    color: var(--warm-gray);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 0.5rem;
    font-weight: 500;
}

/* ============================================
   INTRO SECTION
   ============================================ */

/* ============================================
   INTRO TECH SECTION - Modern Design
   ============================================ */

.intro-tech {
    padding: 8rem 4rem;
    background: linear-gradient(180deg, var(--white) 0%, var(--pearl) 100%);
    position: relative;
    overflow: hidden;
}

.intro-tech::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, transparent 50%, rgba(184, 115, 51, 0.03) 100%);
    pointer-events: none;
}

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

.intro-tech-content {
    position: relative;
    z-index: 1;
}

.intro-tech-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin: 1rem 0 1.5rem;
    color: var(--black);
    line-height: 1.2;
}

.intro-tech-content h2 em {
    color: var(--copper);
    font-style: normal;
}

.intro-tech-lead {
    font-size: 1.15rem;
    color: var(--charcoal);
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 500px;
}

/* Feature List */
.intro-tech-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.intro-tech-feature {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.25rem;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--sand);
    transition: all 0.3s ease;
}

.intro-tech-feature:hover {
    border-color: var(--copper);
    box-shadow: 0 8px 30px rgba(184, 115, 51, 0.1);
    transform: translateX(8px);
}

.intro-tech-feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    max-width: 48px;
    min-height: 48px;
    max-height: 48px;
    background: linear-gradient(135deg, var(--copper) 0%, #a66830 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.intro-tech-feature-icon svg {
    width: 24px;
    height: 24px;
    min-width: 24px;
    max-width: 24px;
    min-height: 24px;
    max-height: 24px;
    stroke: var(--white);
    flex-shrink: 0;
}

.intro-tech-feature-text h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.35rem;
}

.intro-tech-feature-text p {
    font-size: 0.9rem;
    color: var(--charcoal);
    line-height: 1.6;
    margin: 0;
}

/* Right Visual - Comparison Card */
.intro-tech-visual {
    position: relative;
}

.intro-tech-card-main {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.intro-tech-card-header {
    background: var(--black);
    padding: 1rem 1.5rem;
    text-align: center;
}

.intro-tech-card-badge {
    color: var(--copper);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.intro-tech-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.comparison-item {
    padding: 2rem 1.5rem;
    text-align: center;
}

.comparison-old {
    background: #f8f5f2;
    border-right: 1px solid var(--sand);
}

.comparison-new {
    background: linear-gradient(180deg, rgba(184, 115, 51, 0.05) 0%, rgba(184, 115, 51, 0.1) 100%);
}

.comparison-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    max-width: 50px;
    min-height: 50px;
    max-height: 50px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.comparison-old .comparison-icon {
    background: #e8e4df;
}

.comparison-old .comparison-icon svg {
    width: 24px;
    height: 24px;
    min-width: 24px;
    max-width: 24px;
    min-height: 24px;
    max-height: 24px;
    stroke: #999;
    flex-shrink: 0;
}

.comparison-new .comparison-icon {
    background: var(--copper);
}

.comparison-new .comparison-icon svg {
    width: 24px;
    height: 24px;
    min-width: 24px;
    max-width: 24px;
    min-height: 24px;
    max-height: 24px;
    stroke: var(--white);
    flex-shrink: 0;
}

.comparison-item > span {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.comparison-old > span {
    color: #888;
}

.comparison-new > span {
    color: var(--copper);
}

.comparison-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-item li {
    font-size: 0.9rem;
    padding: 0.5rem 0;
    border-bottom: 1px dashed var(--sand);
}

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

.comparison-old li {
    color: #888;
    text-decoration: line-through;
    text-decoration-color: rgba(0,0,0,0.2);
}

.comparison-new li {
    color: var(--black);
    font-weight: 500;
}

/* Floating Cards */
.intro-tech-floating-cards {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 2;
}

.floating-card {
    position: absolute;
    background: var(--white);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border: 1px solid var(--sand);
    animation: float 6s ease-in-out infinite;
}

.floating-card svg {
    width: 28px;
    height: 28px;
    stroke: var(--copper);
}

.floating-card span {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
    display: block;
    line-height: 1;
}

.floating-card small {
    font-size: 0.7rem;
    color: var(--charcoal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.floating-card-1 {
    top: -20px;
    right: -30px;
    flex-direction: column;
    text-align: center;
    animation-delay: 0s;
}

.floating-card-2 {
    bottom: 30px;
    left: -40px;
    flex-direction: column;
    text-align: center;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Bottom Tagline */
.intro-tech-tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 5rem;
    text-align: center;
}

.tagline-line {
    flex: 1;
    max-width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--sand), transparent);
}

.intro-tech-tagline p {
    font-size: 1.1rem;
    color: var(--charcoal);
    font-style: italic;
    max-width: 600px;
}

/* Location Badges */
.intro-tech-locations {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: var(--white);
    border: 1px solid var(--sand);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--charcoal);
    transition: all 0.3s ease;
}

.location-badge svg {
    width: 16px;
    height: 16px;
    stroke: var(--copper);
}

.location-badge:hover {
    border-color: var(--copper);
    background: rgba(184, 115, 51, 0.05);
}

.location-badge-more {
    background: var(--copper);
    border-color: var(--copper);
    color: var(--white);
}

.location-badge-more:hover {
    background: #a66830;
}

/* Safety Card (Particuliers) */
.safety-card-content {
    padding: 2.5rem;
    text-align: center;
}

.safety-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(184, 115, 51, 0.1) 0%, rgba(184, 115, 51, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.safety-icon svg {
    width: 35px;
    height: 35px;
    stroke: var(--copper);
}

.safety-card-content h4 {
    font-size: 1.2rem;
    color: var(--black);
    margin-bottom: 0.75rem;
}

.safety-card-content > p {
    font-size: 0.95rem;
    color: var(--charcoal);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.safety-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.safety-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--pearl);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--charcoal);
}

.safety-badge svg {
    width: 16px;
    height: 16px;
    stroke: var(--copper);
}

/* Business Benefits Card (Entreprises) */
.business-benefits {
    padding: 2rem;
}

.business-benefit {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.business-benefit:last-child {
    border-bottom: none;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(184, 115, 51, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.benefit-text {
    display: flex;
    flex-direction: column;
}

.benefit-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--copper);
    line-height: 1;
}

.benefit-label {
    font-size: 0.85rem;
    color: var(--stone);
    margin-top: 0.25rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .intro-tech-inner {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .intro-tech-visual {
        max-width: 500px;
        margin: 0 auto;
    }

    .floating-card-1 {
        right: 0;
    }

    .floating-card-2 {
        left: 0;
    }
}

@media (max-width: 768px) {
    .intro-tech {
        padding: 5rem 1.5rem;
    }

    .intro-tech-feature {
        padding: 1rem;
    }

    .intro-tech-feature-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .intro-tech-feature-icon svg {
        width: 20px !important;
        height: 20px !important;
        min-width: 20px;
        max-width: 20px;
        min-height: 20px;
        max-height: 20px;
    }

    .comparison-item {
        padding: 1.5rem 1rem;
    }

    .comparison-icon svg {
        width: 20px !important;
        height: 20px !important;
        min-width: 20px;
        max-width: 20px;
        min-height: 20px;
        max-height: 20px;
    }

    .floating-card {
        display: none;
    }

    .intro-tech-tagline {
        flex-direction: column;
        gap: 1rem;
    }

    .tagline-line {
        display: none;
    }

    .intro-tech-locations {
        gap: 0.5rem;
    }

    .location-badge {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}

/* Legacy intro styles (keep for fallback) */
.intro {
    padding: 8rem 4rem;
    background: var(--white);
}

.intro-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.intro h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    margin-bottom: 2.5rem;
    color: var(--black);
}

.intro-text {
    font-size: 1.05rem;
    color: var(--charcoal);
    line-height: 2;
    font-weight: 400;
}

.intro-text p {
    margin-bottom: 1.5rem;
}

.intro-text strong {
    color: var(--black);
    font-weight: 600;
}

/* ============================================
   SURFACES SECTION
   ============================================ */

.surfaces {
    padding: 8rem 4rem;
    background: var(--pearl);
}

.surfaces-intro {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.surfaces-intro p {
    color: var(--charcoal);
    font-size: 1rem;
    line-height: 1.9;
}

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

.surface-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.surface-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--copper);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.surface-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.surface-card:hover::before {
    transform: translateX(0);
}

.surface-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    min-height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--silk);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--copper);
    overflow: hidden;
}

.surface-icon svg {
    width: 40px;
    height: 40px;
    min-width: 40px;
    max-width: 40px;
    min-height: 40px;
    max-height: 40px;
    flex-shrink: 0;
}

.surface-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--black);
}

.surface-card p {
    font-size: 0.85rem;
    color: var(--warm-gray);
    line-height: 1.7;
}

.surfaces-note {
    max-width: 800px;
    margin: 4rem auto 0;
    padding: 2rem;
    background: var(--white);
    border-left: 3px solid var(--copper);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    text-align: left;
}

.surfaces-note .note-icon {
    width: 50px;
    height: 50px;
    background: var(--silk);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--copper);
}

.surfaces-note p {
    font-size: 0.95rem;
    color: var(--charcoal);
}

.surfaces-note strong {
    color: var(--black);
}

/* ============================================
   CLIENTS SECTION
   ============================================ */

.clients {
    padding: 8rem 4rem;
    background: var(--white);
}

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

.client-card {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    background: var(--pearl);
    overflow: hidden;
    transition: all 0.4s ease;
}

.client-card:hover {
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.client-visual {
    aspect-ratio: 1;
    background: var(--silk);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.client-visual::before {
    content: '';
    position: absolute;
    inset: 15px;
    border: 1px solid var(--stone);
}

.client-icon {
    color: var(--copper);
    opacity: 0.7;
}

.client-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.client-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 300;
    color: var(--stone);
    line-height: 1;
    margin-bottom: 1rem;
}

.client-content h3 {
    font-size: 1.4rem;
    color: var(--black);
    margin-bottom: 1rem;
}

.client-content p {
    font-size: 0.9rem;
    color: var(--warm-gray);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.client-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.client-list span {
    background: var(--white);
    padding: 0.4rem 0.8rem;
    font-size: 0.7rem;
    color: var(--copper);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* ============================================
   ADVANTAGES SECTION
   ============================================ */

.advantages {
    padding: 8rem 4rem;
    background: var(--black);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.advantages::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 50%;
}

.advantages .section-label span {
    color: var(--copper-light);
}

.advantages .section-label::before,
.advantages .section-label::after {
    background: var(--copper);
}

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

.advantages .section-subtitle {
    color: var(--warm-gray);
}

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

.advantage-card {
    padding: 2.5rem 2rem;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.4s ease;
    position: relative;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255,255,255,0.05);
    transition: width 0.4s ease;
}

.advantage-card:hover {
    border-color: var(--copper);
}

.advantage-card:hover::before {
    width: 100%;
}

.advantage-icon {
    width: 50px;
    height: 50px;
    border: 1px solid var(--copper);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--copper-light);
    position: relative;
    z-index: 1;
}

.advantage-card h4 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.advantage-card p {
    font-size: 0.85rem;
    color: var(--warm-gray);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* ============================================
   PROCESS SECTION
   ============================================ */

.process {
    padding: 8rem 4rem;
    background: var(--pearl);
}

.process-timeline {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, var(--stone), var(--copper), var(--stone));
}

.process-step {
    flex: 1;
    text-align: center;
    padding: 0 1.5rem;
}

.step-marker {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    background: var(--white);
    border: 1px solid var(--linen);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
}

.step-marker::before {
    content: '';
    position: absolute;
    inset: 8px;
    border: 1px solid var(--silk);
}

.step-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--copper);
}

.process-step:hover .step-marker {
    background: var(--black);
    border-color: var(--black);
}

.process-step:hover .step-number {
    color: var(--white);
}

.process-step h4 {
    font-size: 1.2rem;
    color: var(--black);
    margin-bottom: 0.75rem;
}

.process-step p {
    font-size: 0.9rem;
    color: var(--warm-gray);
    line-height: 1.7;
}

/* ============================================
   GALLERY SECTION - Coming Soon
   ============================================ */

.gallery {
    padding: 8rem 4rem;
    background: var(--white);
}

.gallery-coming-soon {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.gallery-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    filter: grayscale(30%);
}

.preview-item {
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.preview-item span {
    color: rgba(255,255,255,0.7);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 1;
}

.preview-fresque {
    background: linear-gradient(135deg, #2c4a6e 0%, #1a1a1a 100%);
}

.preview-logo {
    background: linear-gradient(135deg, #f7f5f3 0%, #e8e4df 100%);
}

.preview-logo .logo-placeholder {
    width: 80px;
    height: 80px;
    border: 3px solid var(--copper);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(45deg);
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--copper);
}

.preview-logo .logo-placeholder {
    transform: rotate(45deg);
}

.preview-nature {
    background: linear-gradient(135deg, #9CAF88 0%, #6b8a5e 100%);
}

.preview-restaurant {
    background: linear-gradient(135deg, #1a1a1a 0%, #3d3d3d 100%);
}

.preview-bureau {
    background: linear-gradient(135deg, #2C3E50 0%, #1a252f 100%);
}

.preview-bureau span {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: rgba(184,115,51,0.4);
    letter-spacing: 4px;
}

.preview-enfant {
    background: linear-gradient(135deg, #f0ede9 0%, #d4cfc8 100%);
}

.preview-enfant span {
    color: var(--charcoal);
    opacity: 0.6;
}

.coming-soon-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(255,255,255,0.9) 70%, rgba(255,255,255,1) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 3rem;
}

.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--black);
    color: var(--white);
    padding: 1rem 2.5rem;
    margin-bottom: 1rem;
}

.coming-soon-badge svg {
    color: var(--copper);
}

.coming-soon-badge span {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.coming-soon-overlay p {
    color: var(--warm-gray);
    font-size: 0.9rem;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq {
    padding: 8rem 4rem;
    background: var(--pearl);
}

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

.faq-item {
    border-bottom: 1px solid var(--linen);
    padding: 2rem 0;
}

.faq-item:first-child {
    border-top: 1px solid var(--linen);
}

.faq-question {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--black);
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

.faq-question::after {
    content: '+';
    font-family: 'Raleway', sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--copper);
    flex-shrink: 0;
}

.faq-answer {
    color: var(--warm-gray);
    font-size: 0.95rem;
    line-height: 1.9;
    padding-right: 3rem;
}

.faq-answer p {
    margin-bottom: 1rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* ============================================
   ZONES SECTION
   ============================================ */

.zones {
    padding: 5rem 4rem;
    background: var(--white);
}

.zones-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.zones h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--black);
}

.zones p {
    color: var(--warm-gray);
    margin-bottom: 2rem;
}

.zones-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.zone-item {
    background: var(--pearl);
    padding: 0.6rem 1.25rem;
    font-size: 0.8rem;
    color: var(--charcoal);
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.zone-item:hover {
    background: var(--black);
    color: var(--white);
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta {
    padding: 10rem 4rem;
    background: linear-gradient(135deg, var(--black) 0%, #2a2a2a 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before,
.cta::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border: 1px solid rgba(255,255,255,0.03);
    border-radius: 50%;
}

.cta::before {
    top: -200px;
    left: -200px;
}

.cta::after {
    bottom: -200px;
    right: -200px;
}

.cta-inner {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta .section-label span {
    color: var(--copper-light);
}

.cta h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--white);
    margin-bottom: 1.5rem;
}

.cta > .cta-inner > p {
    font-size: 1.1rem;
    color: var(--warm-gray);
    margin-bottom: 3rem;
}

.contact-grid {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.contact-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 2rem 2.5rem;
    min-width: 220px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255,255,255,0.06);
    border-color: var(--copper);
}

.contact-item .contact-icon {
    margin-bottom: 1rem;
    color: var(--copper-light);
}

.contact-item h4 {
    font-family: 'Raleway', sans-serif;
    font-size: 0.7rem;
    color: var(--warm-gray);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-item a {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--copper-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--white);
}

/* ============================================
   RESPONSIVE - Additional
   ============================================ */

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

    .hero-content {
        padding: 10rem 4rem 4rem;
        text-align: center;
    }

    .hero-content::before {
        display: none;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-features {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-visual {
        min-height: 500px;
    }

    .hero-stats {
        bottom: 30px;
        right: 30px;
    }

    .surfaces-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-timeline {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .process-timeline::before {
        display: none;
    }

    .process-step {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding: 8rem 2rem 3rem;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-stats {
        position: relative;
        bottom: auto;
        right: auto;
        justify-content: center;
        padding: 2rem;
    }

    .hero-visual-inner {
        width: 100%;
        height: 280px;
    }

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

    /* Stats bar mobile */
    .hero-stats-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-stat-item {
        padding: 1.75rem 1rem;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .hero-stat-item:nth-child(odd) {
        border-right: 1px solid rgba(255,255,255,0.1);
    }

    .hero-stat-item:nth-child(even) {
        border-right: none;
    }

    .hero-stat-item:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .hero-stat-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 0.75rem;
    }

    .hero-stat-icon svg {
        width: 20px !important;
        height: 20px !important;
        min-width: 20px;
        max-width: 20px;
        min-height: 20px;
        max-height: 20px;
    }

    .hero-feature-icon svg {
        width: 20px !important;
        height: 20px !important;
        min-width: 20px;
        max-width: 20px;
        min-height: 20px;
        max-height: 20px;
    }

    /* Global SVG constraint for mobile */
    .icon-svg,
    .surface-icon svg,
    .safety-icon svg,
    .safety-badge svg,
    .benefit-icon svg,
    .location-badge svg,
    .floating-card svg {
        max-width: 40px;
        max-height: 40px;
    }

    .hero-stat-value {
        font-size: 1.6rem;
        margin-bottom: 0.25rem;
    }

    .hero-stat-label {
        font-size: 0.65rem;
        letter-spacing: 0.5px;
    }

    .hero-feature-value {
        font-size: 1.2rem;
    }

    .hero-feature-label {
        font-size: 0.65rem;
    }

    .intro,
    .surfaces,
    .clients,
    .advantages,
    .process,
    .gallery,
    .faq,
    .zones,
    .cta {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

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

    .client-card {
        grid-template-columns: 1fr;
    }

    .client-visual {
        aspect-ratio: 16/9;
    }

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

    .process-step {
        flex: 0 0 100%;
    }

    .gallery-preview-grid {
        grid-template-columns: 1fr 1fr;
    }
}
