@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');

:root {
    --bg: #ffffff;
    --surface: #F8FAFC;
    --surface-alt: #EEF2F7;
    --surface-soft: #E2E8F0;
    --surface-warm: #FAFAF8;
    --text: #1A2332;
    --text-dark: #0D1520;
    --muted: #5A6B7F;
    --line: #E2E8F0;
    --line-light: #F1F5F9;
    --accent: #0033A0;
    --accent-deep: #001F6C;
    --accent-light: #E8EFFF;
    --accent-soft: #F0F4FF;
    --accent-glow: rgba(0, 51, 160, 0.12);
    --danger: #E63946;
    --danger-light: #FEF2F2;
    --success: #059669;
    --success-light: #ECFDF5;
    --gold: #F5A623;
    --gold-soft: #FFF8EC;
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow: 0 4px 20px rgba(30, 41, 59, 0.06);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 16px 50px rgba(0, 0, 0, 0.10);
    --shadow-glow: 0 0 40px rgba(0, 51, 160, 0.12);
    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --radius-full: 999px;
    --container: 1280px;
    --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --heading-font: 'Plus Jakarta Sans', 'Inter', 'Segoe UI', sans-serif;
    --body-font: 'Inter', 'Segoe UI', system-ui, sans-serif;
}

/* ── Animations ── */
@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 51, 160, 0.3); }
    50% { box-shadow: 0 0 0 10px rgba(0, 51, 160, 0); }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* ── Scroll Reveal ── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--body-font);
    color: var(--text);
    background: var(--bg);
}

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

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

button,
input,
select,
textarea {
    font: inherit;
}

.site-shell {
    min-height: 100vh;
    overflow: clip;
}

.container {
    width: min(calc(100% - 2rem), var(--container));
    margin: 0 auto;
}

.section {
    padding: 5.5rem 0;
}

.section-dark {
    background: var(--surface);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.section-accent {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.section-accent::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(255,255,255,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(20px) saturate(1.8);
    -webkit-backdrop-filter: blur(20px) saturate(1.8);
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    transition: all 0.35s var(--ease-out);
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
    border-bottom-color: transparent;
}

.header-row {
    display: grid;
    grid-template-columns: minmax(170px, 220px) minmax(0, 1fr) auto;
    align-items: center;
    gap: 1rem;
    min-height: 88px;
    transition: min-height 0.35s var(--ease-out);
}

.is-scrolled .header-row {
    min-height: 64px;
}

.brand {
    display: flex;
    align-items: center;
}

.brand img {
    width: clamp(140px, 12vw, 180px);
    transition: width 0.35s var(--ease-out);
}

.is-scrolled .brand img {
    width: clamp(110px, 10vw, 140px);
}

.site-nav {
    display: flex;
    justify-content: center;
    gap: clamp(0.8rem, 1.1vw, 1.25rem);
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 600;
}

.site-nav a {
    position: relative;
    color: var(--muted);
    white-space: nowrap;
    padding: 0.3rem 0;
    transition: color 0.25s var(--ease-out);
}

.site-nav a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    transition: width 0.3s var(--ease-out), left 0.3s var(--ease-out);
}

.site-nav a.is-active {
    color: var(--accent);
    font-weight: 700;
}

.site-nav a.is-active::after {
    width: 100%;
    left: 0;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: var(--accent);
}

.site-nav a:hover::after {
    width: 100%;
    left: 0;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    white-space: nowrap;
}

.phone-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text);
    transition: color 0.2s var(--ease-out);
}

.phone-link:hover {
    color: var(--accent);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 1.5rem;
    border: 1px solid transparent;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: transform 0.25s var(--ease-spring), background-color 0.25s var(--ease-out), border-color 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.82rem;
    font-weight: 700;
    position: relative;
    overflow: hidden;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button:active {
    transform: translateY(0) scale(0.98);
}

.button-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 51, 160, 0.25);
}

.button-primary::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

.button-primary:hover,
.button-primary:focus-visible {
    background: linear-gradient(135deg, var(--accent-deep) 0%, var(--accent) 100%);
    box-shadow: 0 6px 25px rgba(0, 51, 160, 0.35);
}

.button-secondary {
    border-color: var(--line);
    background: var(--bg);
    color: var(--text);
}

.button-secondary:hover,
.button-secondary:focus-visible {
    border-color: var(--accent);
    background: var(--surface);
    color: var(--accent);
}

.button-dark {
    background: var(--text-dark);
    color: #ffffff;
}

.button-dark:hover,
.button-dark:focus-visible {
    background: #1e293b;
}

.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 14px;
    cursor: pointer;
    z-index: 100;
    position: relative;
    transition: all 0.3s ease;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: var(--text);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.nav-toggle.is-open {
    border-color: var(--accent);
    background: var(--accent-light);
}

.nav-toggle.is-open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
    background: var(--accent);
}

.nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
    background: var(--accent);
}

.hero {
    position: relative;
    padding: 7rem 0 5rem;
    isolation: isolate;
    background: linear-gradient(135deg, #F8FAFC 0%, var(--accent-light) 40%, #F0F4FF 100%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../../images/hero-monte-meuble-paris-optimized.jpg");
    background-repeat: no-repeat;
    background-position: 65% center;
    background-size: cover;
    opacity: 0.18;
    filter: saturate(0.6) brightness(0.9);
    z-index: -2;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(0, 51, 160, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 90% 20%, rgba(230, 57, 70, 0.06) 0%, transparent 50%),
        linear-gradient(180deg, transparent 60%, rgba(248, 250, 252, 0.95) 100%),
        radial-gradient(rgba(0, 51, 160, 0.04) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 100% 100%, 24px 24px;
    z-index: -1;
}

/* Hero entry animations */
.hero-copy > * {
    animation: heroFadeUp 0.8s var(--ease-out) both;
}
.hero-copy > *:nth-child(1) { animation-delay: 0s; }
.hero-copy > *:nth-child(2) { animation-delay: 0.1s; }
.hero-copy > *:nth-child(3) { animation-delay: 0.2s; }
.hero-copy > *:nth-child(4) { animation-delay: 0.3s; }
.hero-copy > *:nth-child(5) { animation-delay: 0.4s; }

.hero-grid {
    display: grid;
    grid-template-columns: minmax(420px, 560px) minmax(0, 1.2fr);
    gap: 3.5rem;
    align-items: center;
}

.eyebrow {
    margin: 0 0 0.8rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.75rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.eyebrow::before {
    content: "";
    width: 24px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

h1,
h2,
h3 {
    margin: 0;
    font-family: var(--heading-font);
    line-height: 1.08;
    letter-spacing: -0.03em;
    font-weight: 800;
}

h1 {
    font-size: clamp(2.6rem, 5.5vw, 4.2rem);
    max-width: 22ch;
    line-height: 1.05;
}

h2 {
    font-size: clamp(1.8rem, 3.4vw, 2.8rem);
    max-width: 16ch;
    font-weight: 700;
}

h3 {
    font-size: 1.3rem;
    letter-spacing: -0.02em;
    font-weight: 700;
}

.hero-text,
.section-heading p,
.split-copy p,
.form-copy p,
.feature-card p,
.pricing-card p,
.faq-item p,
.site-footer p,
.panel-pricing strong,
.panel-pricing span {
    line-height: 1.6;
}

.hero-text {
    max-width: 58ch;
    margin: 1.25rem 0 0;
    color: var(--muted);
    font-size: 1.02rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.stat-card {
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-md);
    min-height: 120px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.stat-card strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--accent);
    font-family: var(--heading-font);
    font-size: 1.7rem;
    font-weight: 800;
}

.stat-card span {
    font-size: 0.88rem;
    color: var(--muted);
}

.hero-panel {
    position: relative;
    padding: 2.2rem;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md), var(--shadow-glow);
    animation: heroFadeUp 0.8s var(--ease-out) 0.2s both;
}

.hero-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        linear-gradient(135deg, rgba(0, 51, 160, 0.03), transparent 50%),
        linear-gradient(315deg, rgba(230, 57, 70, 0.02), transparent 40%);
    pointer-events: none;
}

.panel-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.9rem;
    background: var(--accent-light);
    color: var(--accent);
    border: 1px solid rgba(0, 51, 160, 0.15);
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.72rem;
    font-weight: 700;
}

.panel-badge::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--success);
    animation: pulse 2s ease-in-out infinite;
}

.hero-panel h2 {
    margin-top: 1rem;
    font-size: clamp(1.7rem, 4vw, 2.7rem);
}

.hero-panel p {
    margin: 1rem 0 0;
    color: var(--muted);
}

.check-list,
.pricing-card ul {
    margin: 1.35rem 0 0;
    padding: 0;
    list-style: none;
}

.check-list li,
.pricing-card li {
    position: relative;
    padding-left: 1.4rem;
    margin-top: 0.72rem;
    color: var(--text);
}

.check-list li::before,
.pricing-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
}

.panel-divider {
    height: 1px;
    margin: 1.5rem 0;
    background: var(--line);
}

.panel-pricing {
    display: grid;
    gap: 0.8rem;
}

.plan-chip {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    width: 100%;
    padding: 0.95rem 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--line);
    background: var(--bg);
    color: var(--text);
    cursor: pointer;
    text-align: left;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.plan-chip.is-featured {
    background: rgba(0, 35, 149, 0.05);
    border-color: var(--accent);
}

.plan-chip span,
.plan-chip strong {
    pointer-events: none;
}

.intro-strip {
    padding: 1.4rem 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--surface);
}

.intro-strip-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 2rem;
}

.intro-strip p {
    margin: 0;
    color: var(--muted);
}

.section-heading {
    max-width: 720px;
    margin-bottom: 2.5rem;
}

.section-heading-left {
    margin-bottom: 0;
}

.pricing-grid,
.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.2rem;
}

.pricing-card,
.feature-card,
.step-card,
.form-card,
.coverage-panel,
.info-note {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
}

.pricing-card {
    display: flex;
    flex-direction: column;
    position: relative;
    min-height: 490px;
    padding: 1.8rem;
    background: #ffffff;
    border: 1px solid var(--line);
    overflow: hidden;
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

.pricing-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--danger));
    opacity: 0.72;
}

.pricing-card::after {
    content: "";
    position: absolute;
    right: -46px;
    top: -46px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 35, 149, 0.05), transparent 68%);
    pointer-events: none;
}

.pricing-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent);
    box-shadow: var(--shadow);
}

.pricing-card.is-featured {
    background: #ffffff;
    border-color: var(--accent);
    box-shadow: 0 15px 45px rgba(0, 35, 149, 0.1);
}

.pricing-card.is-featured::before {
    height: 5px;
    opacity: 1;
}

.pricing-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
}

.pricing-badge {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 0.75rem;
    border-radius: 999px;
    background: rgba(237, 41, 57, 0.1);
    border: 1px solid rgba(237, 41, 57, 0.2);
    color: var(--danger);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pricing-price {
    padding: 1rem 1.05rem;
    margin-bottom: 1rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 18px;
}

.card-kicker {
    margin: 0;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.8rem;
    font-weight: 700;
}

.pricing-card h3 {
    margin: 0;
    font-size: clamp(1.9rem, 3vw, 2.35rem);
    line-height: 1.08;
}

.pricing-note {
    margin: 0.35rem 0 0;
    color: var(--muted);
    font-size: 0.88rem;
}

.pricing-description {
    min-height: 92px;
    margin: 0 0 0.65rem;
    font-size: 1rem;
    line-height: 1.65;
}

.pricing-card p {
    color: var(--text);
}

.pricing-card ul {
    display: grid;
    gap: 0.9rem;
    padding-top: 1rem;
    margin-top: 0.6rem;
    border-top: 1px solid var(--line);
}

.pricing-card .button {
    width: 100%;
    margin-top: auto;
    min-height: 58px;
    border-radius: 18px;
}

.feature-card {
    position: relative;
    padding: 2rem 1.6rem;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
    overflow: hidden;
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

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

.feature-card h3 {
    margin-bottom: 0.8rem;
    font-size: 1.25rem;
}

.split-band {
    background: var(--surface);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.split-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 2rem;
    align-items: start;
}

.steps-list {
    display: grid;
    gap: 0;
    position: relative;
    padding-left: 1rem;
}

.steps-list::before {
    content: "";
    position: absolute;
    top: 2rem;
    bottom: 2rem;
    left: 38px;
    width: 2px;
    background: var(--line);
    z-index: 0;
}

.step-card {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    align-items: start;
    padding: 1.5rem 0;
    z-index: 1;
    transition: transform 0.3s var(--ease-out);
}

.step-card:hover {
    transform: translateX(8px);
}

.step-card span {
    position: relative;
    display: inline-grid;
    place-items: center;
    width: 56px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid var(--accent);
    color: var(--accent);
    font-family: var(--heading-font);
    font-size: 1.4rem;
    font-weight: 800;
    box-shadow: 0 0 0 8px var(--surface);
    transition: background-color 0.3s var(--ease-out), color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}

.step-card:hover span {
    background: var(--accent);
    color: #ffffff;
    box-shadow: 0 0 0 8px var(--surface), 0 0 20px rgba(0, 51, 160, 0.25);
    transform: scale(1.05);
}

.step-card h3 {
    margin-top: 0.4rem;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.step-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.zone-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 2rem;
    align-items: start;
}

.coverage-panel {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    padding: 1.8rem;
    background: #ffffff;
    border: 1px solid var(--line);
}

.coverage-panel span {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 1rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 999px;
}

.form-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    gap: 2rem;
    align-items: start;
}

.info-note {
    margin-top: 1.5rem;
    padding: 1.4rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.info-note p {
    margin: 0.55rem 0 0;
}

.form-card {
    padding: 1.6rem;
    background: #ffffff;
    color: var(--text);
    border: 1px solid var(--line);
}

.form-alert {
    margin-bottom: 1rem;
    padding: 0.95rem 1rem;
    border-radius: 14px;
    font-size: 0.95rem;
}

.form-alert-success {
    background: rgba(149, 213, 169, 0.18);
    border: 1px solid rgba(77, 148, 98, 0.28);
}

.form-alert-error {
    background: rgba(255, 123, 123, 0.12);
    border: 1px solid rgba(200, 88, 88, 0.28);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.form-grid-full {
    grid-column: 1 / -1;
}

.quote-form label {
    display: grid;
    gap: 0.45rem;
}

.quote-form span {
    font-size: 0.9rem;
    font-weight: 700;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    width: 100%;
    padding: 1.05rem 1.15rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--surface-warm);
    color: var(--text);
    font-size: 1rem;
    transition: all 0.25s var(--ease-out);
}

.quote-form input:hover,
.quote-form select:hover,
.quote-form textarea:hover {
    background: #ffffff;
    border-color: #cbd5e1;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    outline: none;
    background: #ffffff;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px var(--accent-light);
}

.quote-form small {
    color: #b74545;
}

/* Progress Bar */
.form-progress {
    width: 100%;
    height: 6px;
    background: var(--line-light);
    border-radius: 99px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.form-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-deep) 100%);
    transition: width 0.3s ease;
}

/* Submit Loader Animation support */
.button.is-loading {
    position: relative;
    color: transparent !important;
    pointer-events: none;
}

.button.is-loading::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    top: calc(50% - 10px);
    left: calc(50% - 10px);
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #ffffff;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.form-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.2rem;
}

.form-actions p {
    margin: 0;
    max-width: 36ch;
    font-size: 0.92rem;
    line-height: 1.5;
}

.faq-section {
    background: var(--surface);
}

.faq-list {
    display: grid;
    gap: 1rem;
}

.faq-item {
    padding: 1.4rem 1.6rem;
    border-radius: var(--radius-md);
    background: #ffffff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}

.faq-item:hover {
    border-color: #cbd5e1;
    box-shadow: var(--shadow);
}

.faq-item summary {
    cursor: pointer;
    list-style: none;
    font-family: var(--heading-font);
    font-size: 1.15rem;
    font-weight: 700;
    position: relative;
    padding-right: 2rem;
}

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

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--accent);
    transition: transform 0.3s var(--ease-out);
}

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

.faq-item p {
    margin: 1.2rem 0 0;
    color: var(--muted);
    line-height: 1.7;
    padding-top: 1rem;
    border-top: 1px solid var(--line-light);
    animation: fadeSlideUp 0.4s var(--ease-out) forwards;
}

.site-footer {
    padding: 4rem 0 2rem;
    background: var(--text-dark);
    border-top: 4px solid var(--danger);
    color: #94A3B8;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
    gap: 3rem 2rem;
    margin-bottom: 3rem;
}

.footer-logo {
    width: 180px;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.site-footer h3 {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    color: #ffffff;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.site-footer p {
    display: block;
    color: #94A3B8;
    margin-bottom: 0.85rem;
}

.site-footer a {
    display: inline-block;
    position: relative;
    color: #94A3B8;
    margin-bottom: 0.85rem;
    transition: color 0.25s var(--ease-out);
}

.site-footer a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #ffffff;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s var(--ease-out);
}

.site-footer a:hover {
    color: #ffffff;
}

.site-footer a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.catalog-hero {
    position: relative;
    padding: 5rem 0 4rem;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.8)),
        url("../../images/hero-monte-meuble-paris-optimized.jpg") center center / cover no-repeat;
}

.catalog-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 420px);
    gap: 2rem;
    align-items: center;
}

.catalog-callout {
    padding: 1.8rem;
    border-radius: var(--radius-lg);
    background: #ffffff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.catalog-callout p {
    color: var(--text);
    line-height: 1.7;
}

.machine-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.3rem;
}

.machine-card {
    overflow: hidden;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.machine-media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.machine-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.machine-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.1));
}

.machine-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--line);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.72rem;
    font-weight: 700;
}

.machine-status-disponible {
    color: #28a745;
}

.machine-status-maintenance,
.machine-status-indisponible {
    color: var(--danger);
}

.machine-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.4rem;
}

.machine-content h3 {
    margin: 0;
}

.machine-description {
    color: var(--muted);
    line-height: 1.65;
}

.machine-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.machine-specs span {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 0.9rem;
    border-radius: 999px;
    background: var(--surface);
    border: 1px solid var(--line);
}

.machine-button {
    width: 100%;
    margin-top: auto;
}

.catalog-empty {
    padding: 2rem;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid var(--line);
}

.zone-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.3rem;
}

.zone-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.zone-card p {
    color: var(--muted);
    line-height: 1.65;
}

.blog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.blog-filter {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 1rem;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid var(--line);
}

.blog-filter.is-active {
    background: var(--accent);
    color: #ffffff;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.3rem;
}

.blog-card {
    overflow: hidden;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.blog-card-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.blog-card-content {
    display: grid;
    gap: 0.9rem;
    padding: 1.4rem;
}

.article-hero {
    padding: 5rem 0 3rem;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.8)),
        url("../../images/hero-monte-meuble-paris-optimized.jpg") center center / cover no-repeat;
}

.article-hero-inner {
    max-width: 860px;
}

.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    gap: 2rem;
    align-items: start;
}

.article-content,
.article-sidebar {
    display: grid;
    gap: 1.3rem;
}

.article-image {
    width: 100%;
    border-radius: 24px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.article-text {
    padding: 1.6rem;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid var(--line);
}

.article-text p {
    margin: 0;
    color: var(--muted);
    line-height: 1.9;
    white-space: normal;
}

.article-links {
    display: grid;
    gap: 0.8rem;
}

.article-links a {
    color: var(--text);
    padding-bottom: 0.8rem;
    border-bottom: 1px solid var(--line);
}

@media (max-width: 1120px) {
    .pricing-grid,
    .feature-grid,
    .machine-grid,
    .blog-grid,
    .zone-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-grid {
        display: flex;
        flex-direction: column;
        gap: 2.5rem;
    }

    .hero-copy {
        order: 1;
    }

    .hero-panel {
        order: 2;
    }

    .split-grid,
    .zone-layout,
    .form-layout,
    .footer-grid,
    .catalog-hero-grid,
    .article-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1240px) {
    .header-row {
        grid-template-columns: minmax(150px, 190px) minmax(0, 1fr) auto;
    }

    .brand img {
        width: clamp(138px, 13vw, 178px);
    }

    .site-nav {
        gap: 0.7rem;
        font-size: 0.78rem;
    }

    .phone-link {
        font-size: 0.88rem;
    }

    .header-cta .button {
        min-height: 44px;
        padding: 0 1rem;
        font-size: 0.76rem;
    }
}

@media (max-width: 860px) {
    .header-row {
        grid-template-columns: auto auto;
        grid-template-areas:
            "brand toggle"
            "nav nav"
            "cta cta";
        padding: 1rem 0;
    }

    .brand {
        grid-area: brand;
    }

    .nav-toggle {
        display: block;
        grid-area: toggle;
        justify-self: end;
    }

    .site-nav {
        grid-area: nav;
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        max-width: 80vw;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        box-shadow: -10px 0 35px rgba(13, 21, 32, 0.12);
        display: flex;
        flex-direction: column;
        align-items: stretch;
        padding: 5.5rem 2rem 2rem;
        gap: 1.2rem;
        z-index: 99;
        transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        border-left: 1px solid rgba(226, 232, 240, 0.8);
    }

    .site-nav.is-open {
        right: 0;
    }

    .site-nav a {
        display: block;
        padding: 0.6rem 0;
        font-size: 0.95rem;
        border-bottom: 1px solid var(--line-light);
    }

    .header-cta {
        grid-area: cta;
        justify-content: space-between;
        width: 100%;
    }

    .hero {
        padding-top: 3.25rem;
    }

    .hero::before {
        background-position: 58% center;
        opacity: 0.34;
    }

    .hero-stats,
    .intro-strip-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    h1 {
        max-width: 10ch;
    }
}

@media (max-width: 640px) {
    .section {
        padding: 4.2rem 0;
    }

    .pricing-grid,
    .feature-grid,
    .machine-grid,
    .blog-grid,
    .zone-card-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions,
    .form-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .header-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .site-nav a,
    .phone-link,
    .button {
        width: 100%;
    }
}

/* ── Menu Mobile Backdrop & Lock ── */
body.menu-open {
    overflow: hidden;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(13, 21, 32, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease-out);
    z-index: 90;
}

body.menu-open::after {
    opacity: 1;
    pointer-events: auto;
}

/* ==========================================
   Carousel Premium (.hero-carousel)
   ========================================== */
.hero-carousel {
    position: relative;
    margin-top: 2.2rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 16 / 9;
    min-height: 220px;
    box-shadow: var(--shadow-md), var(--shadow-glow);
    border: 1px solid var(--line);
    background: #000;
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s ease;
    z-index: 1;
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 6s ease;
}

.carousel-slide.active img {
    transform: scale(1);
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem 2rem 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
    color: #ffffff;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.carousel-caption h3 {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.02em;
    font-family: var(--heading-font);
}

.carousel-caption p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

.caption-tag {
    align-self: flex-start;
    display: inline-flex;
    padding: 0.3rem 0.6rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.carousel-dots {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.carousel-dot {
    width: 28px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: background 0.35s ease;
    outline: none;
    padding: 0;
}

.carousel-dot.active {
    background: var(--accent);
    box-shadow: 0 0 8px var(--accent);
}

/* ==========================================
   Recent Articles Sidebar (.recent-articles-list)
   ========================================== */
.recent-articles-list {
    display: grid;
    gap: 1rem;
}

.recent-article-item {
    display: flex;
    gap: 0.9rem;
    text-decoration: none;
    align-items: center;
    padding: 0.6rem;
    border-radius: 16px;
    background: transparent;
    border: 1px solid transparent;
    transition: background 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.recent-article-item:hover {
    background: #ffffff;
    border-color: var(--line);
    transform: translateY(-2px) scale(1.01);
    box-shadow: var(--shadow-sm);
}

.recent-article-thumb {
    width: 64px;
    height: 64px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid var(--line);
    background: var(--surface);
}

.recent-article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.recent-article-item:hover .recent-article-thumb img {
    transform: scale(1.12);
}

.recent-article-meta {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.recent-article-meta .kicker {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--accent);
    letter-spacing: 0.08em;
}

.recent-article-title {
    margin: 0;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.35;
    transition: color 0.25s ease;
}

.recent-article-item:hover .recent-article-title {
    color: var(--accent);
}

