/* =============================================================
   ALMA CONCEPT - Feuille de style principale
   Style : banque sobre, premium, institutionnel
   Charte : bordeaux / noir / blanc / accent or
   ============================================================= */

:root {
    --bordeaux: #7a1f2b;
    --bordeaux-dark: #5d1620;
    --bordeaux-light: #9a3a47;
    --noir: #1a1a1a;
    --noir-soft: #2a2a2a;
    --gris: #6b6b6b;
    --gris-light: #a0a0a0;
    --gris-bg: #f5f3ef;
    --gris-line: #e5e2dc;
    --blanc: #ffffff;
    --or: #c8a96b;
    --or-soft: #d4b97a;

    --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
    --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;

    --container: 1240px;
    --radius: 2px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.08), 0 8px 20px rgba(0, 0, 0, 0.04);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--noir);
    background: var(--blanc);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: var(--bordeaux);
    text-decoration: none;
    transition: color var(--transition);
}
a:hover { color: var(--bordeaux-dark); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.25;
    color: var(--noir);
    letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 500; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; font-family: var(--font-body); font-weight: 600; letter-spacing: 0.02em; }

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

/* ============== TOP BAR ============== */
.top-bar {
    background: var(--noir);
    color: var(--gris-light);
    font-size: 13px;
    padding: 10px 0;
    letter-spacing: 0.02em;
}
.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.top-bar-info {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}
.top-bar a {
    color: var(--gris-light);
    transition: color var(--transition);
}
.top-bar a:hover { color: var(--or); }
.top-bar-langs {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--or);
    letter-spacing: 0.1em;
}

/* ============== HEADER ============== */
.site-header {
    background: var(--blanc);
    border-bottom: 1px solid var(--gris-line);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--noir);
}
.logo-mark { width: 54px; height: 54px; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--bordeaux);
    letter-spacing: 0.08em;
}
.logo-subtitle {
    font-size: 11px;
    color: var(--gris);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: 4px;
}

/* ============== NAVIGATION ============== */
.main-nav > ul {
    display: flex;
    list-style: none;
    gap: 4px;
    align-items: center;
}
.main-nav > ul > li { position: relative; }
.main-nav a {
    color: var(--noir);
    padding: 10px 14px;
    display: block;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color var(--transition);
    position: relative;
}
.main-nav > ul > li > a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--bordeaux);
    transform: scaleX(0);
    transition: transform var(--transition);
    transform-origin: left;
}
.main-nav > ul > li > a:hover::after,
.main-nav > ul > li > a.active::after { transform: scaleX(1); }
.main-nav > ul > li > a:hover { color: var(--bordeaux); }
.main-nav > ul > li > a.active { color: var(--bordeaux); }

.btn-nav-contact {
    background: var(--bordeaux);
    color: var(--blanc) !important;
    margin-left: 8px;
}
.btn-nav-contact::after { display: none !important; }
.btn-nav-contact:hover { background: var(--bordeaux-dark); color: var(--blanc) !important; }

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--blanc);
    min-width: 240px;
    list-style: none;
    box-shadow: var(--shadow-lg);
    border-top: 2px solid var(--bordeaux);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition);
    padding: 8px 0;
}
.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown li a {
    padding: 10px 20px;
    font-size: 14px;
    color: var(--noir-soft);
}
.dropdown li a:hover {
    background: var(--gris-bg);
    color: var(--bordeaux);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}
.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--noir);
    transition: var(--transition);
}

/* ============== MAIN ============== */
.site-main { min-height: 60vh; }

/* ============== HERO ============== */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--noir) 0%, var(--bordeaux-dark) 100%);
    color: var(--blanc);
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(200, 169, 107, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(122, 31, 43, 0.3) 0%, transparent 50%);
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cpath d='M0 0h60v60H0z' fill='none'/%3E%3Cpath d='M30 0v60M0 30h60' stroke='%23ffffff' stroke-opacity='0.02' stroke-width='1'/%3E%3C/svg%3E");
    pointer-events: none;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    padding: 100px 0;
}
.hero-eyebrow {
    display: inline-block;
    font-family: var(--font-display);
    font-style: italic;
    color: var(--or);
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    position: relative;
    padding-left: 60px;
}
.hero-eyebrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 40px;
    height: 1px;
    background: var(--or);
}
.hero h1 {
    color: var(--blanc);
    font-size: clamp(2.5rem, 5.5vw, 4.2rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 28px;
}
.hero h1 em {
    color: var(--or);
    font-style: italic;
    font-weight: 500;
}
.hero-lead {
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
    max-width: 620px;
}
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Slider Hero (multi-bandeaux) */
.hero-slider {
    position: relative;
}
.hero-slide {
    display: none;
}
.hero-slide.active { display: block; }
.hero-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}
.hero-dot {
    width: 40px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}
.hero-dot.active { background: var(--or); }

/* ============== BOUTONS ============== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}
.btn-primary {
    background: var(--bordeaux);
    color: var(--blanc);
}
.btn-primary:hover {
    background: var(--bordeaux-dark);
    color: var(--blanc);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(122, 31, 43, 0.3);
}
.btn-ghost {
    background: transparent;
    color: var(--blanc);
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--blanc);
    border-color: var(--or);
}
.btn-outline {
    background: transparent;
    color: var(--bordeaux);
    border: 1px solid var(--bordeaux);
}
.btn-outline:hover {
    background: var(--bordeaux);
    color: var(--blanc);
}
.btn-gold {
    background: var(--or);
    color: var(--noir);
}
.btn-gold:hover {
    background: var(--or-soft);
    color: var(--noir);
}
.btn-lg { padding: 18px 40px; font-size: 15px; }
.btn-sm { padding: 10px 20px; font-size: 12px; }

/* ============== SECTIONS ============== */
.section {
    padding: 100px 0;
}
.section-sm { padding: 60px 0; }
.section-bg { background: var(--gris-bg); }
.section-dark { background: var(--noir); color: var(--blanc); }
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--blanc); }

.section-header {
    text-align: center;
    margin-bottom: 70px;
}
.section-eyebrow {
    display: inline-block;
    font-family: var(--font-display);
    font-style: italic;
    color: var(--bordeaux);
    font-size: 1.15rem;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    position: relative;
    padding: 0 50px;
}
.section-eyebrow::before, .section-eyebrow::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background: var(--bordeaux);
}
.section-eyebrow::before { left: 0; }
.section-eyebrow::after { right: 0; }
.section-dark .section-eyebrow { color: var(--or); }
.section-dark .section-eyebrow::before, .section-dark .section-eyebrow::after { background: var(--or); }

.section-title {
    max-width: 800px;
    margin: 0 auto 20px;
}
.section-subtitle {
    font-size: 1.05rem;
    color: var(--gris);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.7;
}
.section-dark .section-subtitle { color: rgba(255, 255, 255, 0.7); }

/* ============== CARDS SERVICES ============== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.service-card {
    background: var(--blanc);
    padding: 40px 32px;
    border: 1px solid var(--gris-line);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--bordeaux);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}
.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
    width: 56px;
    height: 56px;
    color: var(--bordeaux);
    margin-bottom: 24px;
}
.service-card h3 {
    margin-bottom: 14px;
    color: var(--noir);
}
.service-card p {
    color: var(--gris);
    margin-bottom: 20px;
    font-size: 0.95rem;
}
.service-link {
    color: var(--bordeaux);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.03em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.service-link::after {
    content: '→';
    transition: transform var(--transition);
}
.service-link:hover::after { transform: translateX(4px); }

/* ============== TARIFS ============== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.pricing-card {
    background: var(--blanc);
    border: 1px solid var(--gris-line);
    padding: 36px 28px;
    text-align: center;
    transition: all var(--transition);
    position: relative;
}
.pricing-card.featured {
    border-color: var(--bordeaux);
    border-width: 2px;
    box-shadow: var(--shadow-lg);
}
.pricing-card.featured::before {
    content: 'PRESTATION PHARE';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--bordeaux);
    color: var(--blanc);
    padding: 6px 16px;
    font-size: 11px;
    letter-spacing: 0.15em;
    font-weight: 600;
}
.pricing-card h4 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--noir);
    margin-bottom: 12px;
    letter-spacing: 0;
}
.pricing-card .price {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--bordeaux);
    font-weight: 500;
    margin: 20px 0;
    line-height: 1;
}
.pricing-card .price small { font-size: 1rem; color: var(--gris); }
.pricing-card .price-from { font-size: 0.85rem; color: var(--gris); display: block; margin-top: -8px; }
.pricing-card ul {
    list-style: none;
    margin: 24px 0;
    text-align: left;
}
.pricing-card ul li {
    padding: 8px 0;
    color: var(--gris);
    font-size: 0.92rem;
    border-bottom: 1px solid var(--gris-line);
    position: relative;
    padding-left: 24px;
}
.pricing-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--bordeaux);
    font-weight: bold;
}
.pricing-card ul li:last-child { border-bottom: none; }

/* ============== FORMS ============== */
.form-section {
    background: var(--gris-bg);
    padding: 80px 0;
}
.form-card {
    background: var(--blanc);
    padding: 50px 50px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
    border-top: 3px solid var(--bordeaux);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}
.form-row-3 { grid-template-columns: 1fr 1fr 1fr; }
.form-group { margin-bottom: 20px; }
.form-group.full { grid-column: 1 / -1; }

label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--noir);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}
label .required { color: var(--bordeaux); }

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="date"],
input[type="password"],
select,
textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gris-line);
    background: var(--blanc);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--noir);
    transition: all var(--transition);
    border-radius: var(--radius);
}
input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--bordeaux);
    box-shadow: 0 0 0 3px rgba(122, 31, 43, 0.08);
}
textarea { resize: vertical; min-height: 120px; }

.checkbox-group {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 16px;
    background: var(--gris-bg);
    border-left: 3px solid var(--bordeaux);
    margin: 24px 0;
}
.checkbox-group input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    accent-color: var(--bordeaux);
    flex-shrink: 0;
}
.checkbox-group label {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
    color: var(--gris);
    font-weight: 400;
}

.form-divider {
    margin: 32px 0 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--gris-line);
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--bordeaux);
    font-weight: 600;
}
.form-divider:first-of-type { margin-top: 0; }

/* ============== SIMULATEUR ============== */
.simulator {
    background: var(--blanc);
    padding: 50px;
    box-shadow: var(--shadow-lg);
    border-top: 3px solid var(--bordeaux);
}
.simulator-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}
.slider-group { margin-bottom: 32px; }
.slider-group label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    font-size: 14px;
}
.slider-group .slider-value {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--bordeaux);
    font-weight: 600;
    letter-spacing: 0;
}
input[type="range"] {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    height: 4px;
    background: var(--gris-line);
    outline: none;
    border-radius: 2px;
}
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    background: var(--bordeaux);
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid var(--blanc);
    box-shadow: 0 2px 8px rgba(122, 31, 43, 0.4);
}
input[type="range"]::-moz-range-thumb {
    width: 22px;
    height: 22px;
    background: var(--bordeaux);
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid var(--blanc);
}
.simulator-result {
    background: var(--noir);
    color: var(--blanc);
    padding: 40px;
    position: relative;
}
.simulator-result::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--or);
}
.simulator-result h3 {
    color: var(--blanc);
    margin-bottom: 24px;
    font-size: 1.3rem;
}
.result-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.result-row:last-child { border-bottom: none; }
.result-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.result-value {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--blanc);
}
.result-value.highlight {
    color: var(--or);
    font-size: 2.2rem;
}

.legal-notice {
    background: var(--gris-bg);
    border-left: 3px solid var(--bordeaux);
    padding: 20px 24px;
    margin: 30px 0;
    font-size: 13px;
    line-height: 1.7;
    color: var(--gris);
}
.legal-notice strong { color: var(--bordeaux); display: block; margin-bottom: 8px; }

/* ============== FOOTER ============== */
.site-footer {
    background: var(--noir);
    color: var(--gris-light);
    padding-top: 80px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 60px;
    padding-bottom: 60px;
}
.footer-col h4 {
    color: var(--or);
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.05em;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a {
    color: var(--gris-light);
    font-size: 14px;
    transition: color var(--transition);
}
.footer-col a:hover { color: var(--or); }
.footer-logo {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 20px;
}
.footer-logo svg { width: 48px; height: 48px; }
.footer-logo strong {
    color: var(--blanc);
    display: block;
    font-family: var(--font-display);
    font-size: 1.3rem;
    letter-spacing: 0.1em;
}
.footer-logo span {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.footer-tagline {
    font-size: 14px;
    line-height: 1.7;
    color: var(--gris-light);
}
address {
    font-style: normal;
    font-size: 14px;
    line-height: 1.8;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
}
.footer-langs {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--or);
    letter-spacing: 0.15em;
}

/* ============== ARTICLES BLOG ============== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 40px;
}
.blog-card {
    background: var(--blanc);
    border: 1px solid var(--gris-line);
    overflow: hidden;
    transition: all var(--transition);
}
.blog-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.blog-card-img {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--gris-bg);
}
.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 28px; }
.blog-card-meta {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: var(--gris);
    margin-bottom: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.blog-card-meta .cat { color: var(--bordeaux); font-weight: 600; }
.blog-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    transition: color var(--transition);
}
.blog-card:hover h3 { color: var(--bordeaux); }
.blog-card p {
    color: var(--gris);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============== ALERTES ============== */
.alert {
    padding: 16px 20px;
    border-left: 4px solid;
    margin-bottom: 24px;
    font-size: 14px;
    border-radius: var(--radius);
}
.alert-success { background: #f0f9f4; border-color: #2d8659; color: #1a5d3d; }
.alert-error { background: #fdf4f4; border-color: var(--bordeaux); color: var(--bordeaux-dark); }
.alert-info { background: #f3f6fa; border-color: #345678; color: #1e3a5f; }

/* ============== BREADCRUMB ============== */
.breadcrumb {
    background: var(--gris-bg);
    padding: 16px 0;
    font-size: 13px;
    color: var(--gris);
}
.breadcrumb a { color: var(--gris); }
.breadcrumb a:hover { color: var(--bordeaux); }
.breadcrumb .sep { margin: 0 10px; opacity: 0.5; }
.breadcrumb .current { color: var(--bordeaux); font-weight: 600; }

/* ============== PAGE HEADER ============== */
.page-header {
    background: linear-gradient(135deg, var(--noir) 0%, var(--bordeaux-dark) 100%);
    color: var(--blanc);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 70% 50%, rgba(200, 169, 107, 0.1) 0%, transparent 50%);
}
.page-header-inner {
    position: relative;
    z-index: 2;
    max-width: 800px;
}
.page-header .eyebrow {
    color: var(--or);
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.15rem;
    margin-bottom: 14px;
    letter-spacing: 0.05em;
}
.page-header h1 {
    color: var(--blanc);
    margin-bottom: 18px;
    font-weight: 400;
}
.page-header h1 em { color: var(--or); font-style: italic; }
.page-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    max-width: 680px;
}

/* ============== UTILITIES ============== */
.text-center { text-align: center; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-2 { gap: 16px; }

/* ============== LISTES SERVICES ============== */
.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px 40px;
    list-style: none;
}
.services-list li {
    padding: 14px 0 14px 32px;
    border-bottom: 1px solid var(--gris-line);
    position: relative;
    color: var(--noir-soft);
    font-size: 0.98rem;
}
.services-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 22px;
    width: 18px;
    height: 1px;
    background: var(--bordeaux);
}

/* ============== TWO-COLUMN CONTENT ============== */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.two-col-text h2 { margin-bottom: 24px; }
.two-col-text p { margin-bottom: 16px; color: var(--noir-soft); }

/* ============== STATS ============== */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}
.stat-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: var(--bordeaux);
    font-weight: 600;
    line-height: 1;
    margin-bottom: 12px;
}
.section-dark .stat-number { color: var(--or); }
.stat-label {
    font-size: 14px;
    color: var(--gris);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.section-dark .stat-label { color: rgba(255, 255, 255, 0.7); }

/* ============== TABLE ============== */
table.styled {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}
table.styled th, table.styled td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid var(--gris-line);
}
table.styled th {
    background: var(--noir);
    color: var(--blanc);
    font-size: 13px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 600;
}
table.styled tr:hover { background: var(--gris-bg); }
table.styled td.price {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--bordeaux);
    font-weight: 600;
}

/* ============== RESPONSIVE ============== */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .simulator-grid { grid-template-columns: 1fr; gap: 32px; }
    .two-col { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .top-bar { font-size: 12px; }
    .top-bar-info { gap: 16px; }
    .menu-toggle { display: flex; }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: var(--blanc);
        padding: 80px 24px 24px;
        transition: right 0.4s;
        z-index: 99;
        overflow-y: auto;
        box-shadow: -10px 0 30px rgba(0,0,0,0.15);
    }
    .main-nav.open { right: 0; }
    .main-nav > ul {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
    }
    .main-nav > ul > li { width: 100%; border-bottom: 1px solid var(--gris-line); }
    .main-nav a { padding: 16px 0; }
    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0 0 12px 16px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s;
    }
    .has-dropdown.open .dropdown { max-height: 500px; }
    .btn-nav-contact { margin-top: 12px; text-align: center; }

    .section { padding: 60px 0; }
    .hero-content { padding: 60px 0; }
    .form-card, .simulator { padding: 30px 24px; }
    .form-row, .form-row-3 { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; padding-bottom: 40px; }
    .stats { gap: 24px; }
    .stat-number { font-size: 2.5rem; }
}
