/* ============================================================
   VERTUEUX IMMO — Premium CSS
   Navy #0C1B33 · Teal #5CB8B2 · Plus Jakarta Sans
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    color: #1D1D1F;
    background: #fff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Tokens ─────────────────────────────────── */
:root {
    --navy:   #0C1B33;
    --navy2:  #152543;
    --teal:   #5CB8B2;
    --tealL:  #7DCEC9;
    --white:  #FFFFFF;
    --smoke:  #F5F5F7;
    --gray:   #86868B;
    --ease:   cubic-bezier(.25,.46,.45,.94);
}

/* ── Layout ─────────────────────────────────── */
.wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 52px;
}

/* ── Animations ─────────────────────────────── */
.fade-up {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.fade-in { opacity: 0; transition: opacity .8s var(--ease); }
.fade-up.visible, .fade-in.visible { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }

/* ── Buttons ─────────────────────────────────── */
.btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--teal); color: #fff;
    font-family: inherit; font-size: 15px; font-weight: 700;
    padding: 15px 30px; border: none; border-radius: 100px;
    cursor: pointer; letter-spacing: .01em;
    transition: background .25s, transform .25s, box-shadow .25s;
}
.btn-primary:hover {
    background: var(--tealL);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(92,184,178,.4);
    color: #fff;
}
.btn-full { width: 100%; justify-content: center; }

.btn-outline {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: rgba(255,255,255,.78);
    font-family: inherit; font-size: 15px; font-weight: 400;
    padding: 14px 30px; border: 1.5px solid rgba(255,255,255,.22); border-radius: 100px;
    transition: border-color .25s, color .25s, transform .25s;
}
.btn-outline:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-2px); }

/* ── Section helpers ─────────────────────────── */
.section-head { margin-bottom: 64px; }
.section-head--center { text-align: center; }
.section-head--center .eyebrow { justify-content: center; }

.eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 11px; font-weight: 700; letter-spacing: .14em;
    text-transform: uppercase; color: var(--teal); margin-bottom: 16px;
}
.eyebrow::before { content: ''; width: 26px; height: 2px; background: var(--teal); border-radius: 2px; }
.eyebrow--light { color: rgba(92,184,178,.9); }
.eyebrow--light::before { background: rgba(92,184,178,.9); }

.title {
    font-size: clamp(34px, 4vw, 54px); font-weight: 800;
    color: var(--navy); line-height: 1.07; letter-spacing: -.025em; margin-bottom: 16px;
}
.title--light { color: #fff; }
.subtitle { font-size: 17px; font-weight: 400; color: var(--gray); line-height: 1.65; max-width: 440px; }
.subtitle--light { color: rgba(255,255,255,.48); }

/* ════════════════════════════════════════════
   NAV
   ════════════════════════════════════════════ */
#navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 900;
    display: flex; align-items: center; justify-content: space-between;
    padding: 28px 52px;
    transition: padding .4s var(--ease), background .4s, border-color .4s;
    border-bottom: 1px solid transparent;
}
#navbar.scrolled {
    padding: 14px 52px;
    background: rgba(12,27,51,.9);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-color: rgba(255,255,255,.07);
}
.nav-logo img { height: 28px; filter: brightness(0) invert(1); }

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
    font-size: 14px; font-weight: 400; color: rgba(255,255,255,.75);
    letter-spacing: .01em; transition: color .2s; position: relative;
}
.nav-links a:not(.nav-cta)::after {
    content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
    height: 1px; background: var(--teal);
    transform: scaleX(0); transition: transform .25s var(--ease);
}
.nav-links a:not(.nav-cta):hover { color: #fff; }
.nav-links a:not(.nav-cta):hover::after { transform: scaleX(1); }

.nav-cta {
    background: var(--teal) !important; color: #fff !important;
    padding: 9px 20px; border-radius: 100px; font-weight: 700 !important;
    transition: background .2s, transform .2s !important;
}
.nav-cta:hover { background: var(--tealL) !important; transform: translateY(-1px) !important; }
.nav-cta::after { display: none !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: all .3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════ */
.hero {
    position: relative; height: 100vh; min-height: 700px;
    display: flex; align-items: center; overflow: hidden;
    background: var(--navy);
}
.hero-bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 75% 70% at 60% 45%, rgba(92,184,178,.13) 0%, transparent 58%),
        linear-gradient(155deg, #0C1B33 0%, #152543 55%, #0A1628 100%);
}
.hero-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(92,184,178,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(92,184,178,.04) 1px, transparent 1px);
    background-size: 68px 68px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 10%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 10%, transparent 70%);
}
.hero-orb {
    position: absolute; border-radius: 50%;
    filter: blur(90px); pointer-events: none;
}
.hero-orb-1 {
    width: 550px; height: 550px; background: rgba(92,184,178,.09);
    top: -120px; right: -60px;
    animation: float 9s ease-in-out infinite;
}
.hero-orb-2 {
    width: 380px; height: 380px; background: rgba(92,184,178,.06);
    bottom: -80px; left: 8%;
    animation: float 12s ease-in-out infinite reverse;
}
@keyframes float {
    0%,100% { transform: translate(0,0) scale(1); }
    50%      { transform: translate(18px,-28px) scale(1.04); }
}

.hero-content {
    position: relative; z-index: 2; width: 100%;
    max-width: 1200px; margin: 0 auto; padding: 0 52px;
}
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 11px; font-weight: 700; letter-spacing: .14em;
    text-transform: uppercase; color: var(--teal); margin-bottom: 24px;
    animation: slideUp .8s var(--ease) .2s both;
}
.eyebrow-pulse {
    width: 6px; height: 6px; background: var(--teal); border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:.4;transform:scale(1.5);} }

.hero-title {
    font-size: clamp(54px, 7.8vw, 112px); font-weight: 800;
    color: #fff; line-height: .96; letter-spacing: -.04em; margin-bottom: 24px;
    animation: slideUp .8s var(--ease) .35s both;
}
.hero-gradient {
    display: block;
    background: linear-gradient(130deg, var(--teal) 0%, var(--tealL) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-sub {
    font-size: 18px; font-weight: 400; color: rgba(255,255,255,.55);
    line-height: 1.65; max-width: 460px; margin-bottom: 40px;
    animation: slideUp .8s var(--ease) .5s both;
}
.hero-ctas {
    display: flex; align-items: center; gap: 12px;
    animation: slideUp .8s var(--ease) .65s both;
}
@keyframes slideUp {
    from { opacity:0; transform:translateY(28px); }
    to   { opacity:1; transform:none; }
}

.hero-badges {
    position: absolute; z-index: 2; right: 52px; bottom: 96px;
    display: flex; flex-direction: column; gap: 10px;
    animation: slideUp .9s var(--ease) .8s both;
}
.hero-badge {
    display: flex; align-items: center; gap: 13px;
    background: rgba(255,255,255,.07);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 18px; padding: 14px 18px; min-width: 185px;
    transition: background .3s, transform .3s;
}
.hero-badge:hover { background: rgba(255,255,255,.1); transform: translateX(-4px); }
.badge-icon {
    width: 42px; height: 42px; background: rgba(92,184,178,.18);
    border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.badge-num { font-size: 21px; font-weight: 800; color: #fff; line-height: 1; }
.badge-label { font-size: 11px; color: rgba(255,255,255,.42); margin-top: 3px; }

.scroll-hint {
    position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 7px; z-index: 2;
    font-size: 10px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
    color: rgba(255,255,255,.3); transition: color .2s;
    animation: slideUp 1s var(--ease) 1s both;
}
.scroll-hint:hover { color: var(--teal); }
.scroll-bar {
    width: 1px; height: 42px;
    background: linear-gradient(to bottom, rgba(92,184,178,.7), transparent);
    animation: scrollAnim 1.8s ease-in-out infinite;
}
@keyframes scrollAnim {
    0%   { transform:scaleY(0); transform-origin:top; }
    45%  { transform:scaleY(1); transform-origin:top; }
    55%  { transform:scaleY(1); transform-origin:bottom; }
    100% { transform:scaleY(0); transform-origin:bottom; }
}

/* ════════════════════════════════════════════
   MARQUEE
   ════════════════════════════════════════════ */
.marquee { background: var(--teal); padding: 13px 0; overflow: hidden; }
.marquee-track {
    display: inline-flex; gap: 0;
    animation: marquee 24s linear infinite;
    white-space: nowrap;
}
.marquee-track span {
    display: inline-flex; align-items: center; gap: 16px;
    font-size: 11px; font-weight: 700; letter-spacing: .13em;
    text-transform: uppercase; color: rgba(255,255,255,.9); padding: 0 8px;
}
.marquee-track em { font-style: normal; opacity: .5; font-size: 8px; }
@keyframes marquee { from{transform:translateX(0);} to{transform:translateX(-50%);} }

/* ════════════════════════════════════════════
   STATS
   ════════════════════════════════════════════ */
.stats { background: var(--smoke); padding: 80px 0; }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.stat {
    text-align: center; padding: 36px 20px;
    border-right: 1px solid rgba(0,0,0,.09);
}
.stat:last-child { border-right: none; }
.stat-n {
    font-size: clamp(44px, 5vw, 64px); font-weight: 800;
    color: var(--navy); line-height: 1; letter-spacing: -.03em; margin-bottom: 8px;
}
.stat-n .count { color: var(--teal); }
.stat-l { font-size: 12px; font-weight: 400; color: var(--gray); letter-spacing: .06em; text-transform: uppercase; }

/* ════════════════════════════════════════════
   SERVICES
   ════════════════════════════════════════════ */
.services { padding: 140px 0; background: #fff; }
.services-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }

.scard {
    position: relative; overflow: hidden;
    background: var(--smoke); border-radius: 24px;
    padding: 38px 30px 34px; cursor: default;
    transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.scard::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(140deg, var(--navy) 0%, var(--navy2) 100%);
    opacity: 0; transition: opacity .4s var(--ease);
}
.scard:hover { transform: translateY(-10px); box-shadow: 0 24px 56px rgba(12,27,51,.16); }
.scard:hover::before { opacity: 1; }
.scard--dark { background: var(--navy); }
.scard--dark::before { background: linear-gradient(140deg, var(--teal) 0%, var(--tealL) 100%); }

.scard-icon {
    width: 54px; height: 54px; background: rgba(92,184,178,.12);
    border-radius: 14px; display: flex; align-items: center; justify-content: center;
    color: var(--teal); margin-bottom: 26px;
    position: relative; z-index: 1; transition: background .4s;
}
.scard:hover .scard-icon { background: rgba(92,184,178,.2); }

.scard h3 {
    font-size: 17px; font-weight: 800; color: var(--navy);
    margin-bottom: 11px; position: relative; z-index: 1; transition: color .4s;
}
.scard p {
    font-size: 14px; font-weight: 400; color: #666;
    line-height: 1.65; position: relative; z-index: 1; transition: color .4s; margin-bottom: 26px;
}
.scard:hover h3, .scard:hover p { color: rgba(255,255,255,.85); }
.scard--dark h3 { color: #fff; }
.scard--dark p { color: rgba(255,255,255,.52); }
.scard--dark:hover h3, .scard--dark:hover p { color: rgba(255,255,255,.9); }

.scard-arrow {
    position: relative; z-index: 1;
    font-size: 20px; color: var(--teal);
    transition: transform .3s var(--ease);
}
.scard:hover .scard-arrow { transform: translateX(6px); }

/* ════════════════════════════════════════════
   BIENS
   ════════════════════════════════════════════ */
.biens { padding: 140px 0; background: var(--navy); }
.biens-head {
    display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px;
}
.biens-grid {
    display: grid;
    grid-template-columns: 1.45fr 1fr 1fr;
    grid-template-rows: 360px 280px 240px;
    gap: 14px;
}
.bien {
    position: relative; border-radius: 22px; overflow: hidden; cursor: pointer;
}
.bien--featured { grid-row: span 2; }
.biens-grid .bien:nth-child(6) { grid-column: 1 / -1; }
.bien-link {
    display: block; width: 100%; height: 100%; position: relative;
}
.bien img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .7s var(--ease);
    display: block;
}
.bien:hover img { transform: scale(1.06); }

.bien-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(6,14,28,.96) 0%, rgba(6,14,28,.45) 40%, transparent 70%);
    padding: 22px; display: flex; flex-direction: column; justify-content: flex-end;
    transition: background .4s;
}
.bien:hover .bien-overlay {
    background: linear-gradient(to top, rgba(6,14,28,.99) 0%, rgba(6,14,28,.6) 50%, rgba(6,14,28,.1) 80%, transparent 100%);
}
.bien-tag {
    position: absolute; top: 16px; left: 16px;
    background: var(--teal); color: #fff;
    font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
    padding: 5px 12px; border-radius: 100px;
}
.bien-tag--exclu { background: rgba(255,255,255,.15); backdrop-filter: blur(8px); }
.bien-tag--vendu { background: #2ECC71; }
.bien-loc { font-size: 10px; font-weight: 700; color: var(--teal); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 4px; }
.bien-name { font-size: 17px; font-weight: 800; color: #fff; line-height: 1.2; margin-bottom: 9px; }
.bien--featured .bien-name { font-size: 23px; }
.bien-specs { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 9px; }
.bien-specs span { font-size: 11px; color: rgba(255,255,255,.55); background: rgba(255,255,255,.08); padding: 4px 10px; border-radius: 100px; }
.bien-price { font-size: 17px; font-weight: 800; color: #fff; }
.biens-cta { margin-top: 48px; text-align: center; }

/* ════════════════════════════════════════════
   PROCESS
   ════════════════════════════════════════════ */
.process { padding: 140px 0; background: var(--smoke); }
.process-grid {
    display: grid; grid-template-columns: repeat(4,1fr);
    gap: 0; position: relative;
}
.process-grid::after {
    content: ''; position: absolute; top: 27px;
    left: calc(12.5% + 14px); right: calc(12.5% + 14px);
    height: 1px; background: linear-gradient(to right, var(--teal), rgba(92,184,178,.15));
    pointer-events: none;
}
.pstep { padding: 0 24px; text-align: center; }
.pnum {
    width: 54px; height: 54px; background: var(--navy);
    border-radius: 50%; font-size: 14px; font-weight: 800; color: var(--teal);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 26px; position: relative; z-index: 1;
    box-shadow: 0 0 0 6px var(--smoke);
    transition: background .3s, box-shadow .3s;
}
.pstep:hover .pnum {
    background: var(--teal); color: #fff;
    box-shadow: 0 0 0 6px var(--smoke), 0 8px 22px rgba(92,184,178,.35);
}
.pstep h3 { font-size: 16px; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.pstep p { font-size: 13px; font-weight: 400; color: var(--gray); line-height: 1.65; }

/* ════════════════════════════════════════════
   ABOUT
   ════════════════════════════════════════════ */
.about { padding: 160px 0; background: #fff; }
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 90px; align-items: center; }

.about-img { position: relative; }
.about-img img {
    width: 100%; border-radius: 36px;
    object-fit: cover; object-position: top center; aspect-ratio: 4/5;
}
.about-accent {
    position: absolute; bottom: -22px; right: -22px;
    width: 130px; height: 130px; background: var(--teal);
    border-radius: 26px; z-index: -1;
}
.about-badge {
    position: absolute; bottom: 48px; left: -28px;
    background: var(--navy); border-radius: 18px; padding: 16px 20px; color: #fff;
    box-shadow: 0 20px 56px rgba(12,27,51,.28); z-index: 2;
}
.about-badge--2 { bottom: auto; top: 44px; left: auto; right: -24px; }
.ab-num { font-size: 30px; font-weight: 800; color: var(--teal); line-height: 1; }
.ab-label { font-size: 11px; color: rgba(255,255,255,.48); margin-top: 4px; line-height: 1.4; }

.about-text p { font-size: 16px; font-weight: 400; color: #555; line-height: 1.8; margin-bottom: 14px; }

.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 40px; }
.aval { display: flex; gap: 11px; align-items: flex-start; }
.aval-dot {
    width: 8px; height: 8px; background: var(--teal); border-radius: 50%;
    flex-shrink: 0; margin-top: 5px;
}
.aval strong { display: block; font-size: 14px; font-weight: 800; color: var(--navy); margin-bottom: 2px; }
.aval span { font-size: 13px; color: var(--gray); }

/* ════════════════════════════════════════════
   TÉMOIGNAGES
   ════════════════════════════════════════════ */
.temoignages { padding: 140px 0; background: var(--navy); }
.temoignages .section-head { margin-bottom: 52px; }
.temoignages .subtitle { margin: 0 auto; text-align: center; }

.temo-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.tcard {
    background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.07);
    border-radius: 24px; padding: 36px;
    transition: background .3s, border-color .3s, transform .3s;
}
.tcard:hover { background: rgba(255,255,255,.08); border-color: rgba(92,184,178,.28); transform: translateY(-6px); }
.tcard-stars { font-size: 15px; color: var(--teal); letter-spacing: 2px; margin-bottom: 18px; }
.tcard blockquote { font-size: 14px; font-weight: 400; font-style: italic; color: rgba(255,255,255,.72); line-height: 1.72; margin-bottom: 26px; }
.tcard-author { display: flex; align-items: center; gap: 12px; }
.tcard-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, var(--teal), var(--navy2));
    display: flex; align-items: center; justify-content: center;
    font-size: 15px; font-weight: 800; color: #fff; flex-shrink: 0;
}
.tcard-author strong { display: block; font-size: 14px; color: #fff; }
.tcard-author span { font-size: 12px; color: rgba(255,255,255,.38); margin-top: 2px; display: block; }

/* ════════════════════════════════════════════
   CONTACT
   ════════════════════════════════════════════ */
.contact { padding: 140px 0; background: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: start; }
.contact-left p { font-size: 16px; font-weight: 400; color: var(--gray); line-height: 1.7; margin-bottom: 40px; }

.cinfos { display: flex; flex-direction: column; gap: 14px; }
.cinfo {
    display: flex; align-items: center; gap: 14px;
    padding: 14px; border-radius: 16px; transition: background .2s;
}
.cinfo:hover { background: var(--smoke); }
.cinfo-icon {
    width: 46px; height: 46px; background: rgba(92,184,178,.1);
    border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.cinfo span { font-size: 11px; font-weight: 700; color: var(--gray); letter-spacing: .07em; text-transform: uppercase; display: block; margin-bottom: 2px; }
.cinfo strong { font-size: 14px; font-weight: 600; color: var(--navy); }

.contact-form {
    background: var(--smoke); border-radius: 32px; padding: 44px;
}
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.fg { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
.fg label { font-size: 10px; font-weight: 700; color: var(--navy); letter-spacing: .1em; text-transform: uppercase; }
.fg input, .fg select, .fg textarea {
    background: #fff; border: 1.5px solid transparent; border-radius: 10px;
    padding: 12px 14px; font-family: inherit; font-size: 14px; font-weight: 400;
    color: var(--navy); outline: none; transition: border-color .2s, box-shadow .2s;
    appearance: none;
}
.fg input::placeholder, .fg textarea::placeholder { color: #bbb; }
.fg input:focus, .fg select:focus, .fg textarea:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(92,184,178,.14);
}
.fg textarea { resize: vertical; min-height: 100px; }
.fg select {
    background-image: url("data:image/svg+xml,%3Csvg width='11' height='7' viewBox='0 0 11 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4.5 4.5L10 1' stroke='%2386868B' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 13px center; padding-right: 36px;
}

/* ════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════ */
footer { background: #060F1E; }
footer .wrap { padding-top: 80px; padding-bottom: 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 52px; padding-bottom: 56px; }
.footer-brand img { height: 24px; filter: brightness(0) invert(1); margin-bottom: 18px; }
.footer-brand p { font-size: 13px; font-weight: 400; color: rgba(255,255,255,.36); line-height: 1.7; max-width: 260px; }
.footer-socials { display: flex; gap: 9px; margin-top: 24px; }
.footer-socials a {
    width: 38px; height: 38px; background: rgba(255,255,255,.06);
    border-radius: 9px; display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.48); transition: background .2s, color .2s, transform .2s;
}
.footer-socials a:hover { background: var(--teal); color: #fff; transform: translateY(-2px); }

.footer-col h4 { font-size: 10px; font-weight: 700; color: #fff; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 13px; font-weight: 400; color: rgba(255,255,255,.38); transition: color .2s; }
.footer-col ul a:hover { color: var(--teal); }

.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding: 22px 0; border-top: 1px solid rgba(255,255,255,.06);
    font-size: 12px; color: rgba(255,255,255,.26);
}
.footer-bottom a { color: rgba(255,255,255,.38); transition: color .2s; }
.footer-bottom a:hover { color: var(--teal); }

/* ════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════ */
@media (max-width: 1100px) {
    .services-grid { grid-template-columns: repeat(2,1fr); }
    .about-grid { gap: 56px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 960px) {
    .wrap { padding: 0 28px; }
    #navbar, #navbar.scrolled { padding-left: 28px; padding-right: 28px; }
    .hero-content { padding: 0 28px; }
    .hero-badges { display: none; }
    .biens-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .bien--featured { grid-column: span 2; height: 380px; }
    .bien { height: 260px; }
    .about-grid { grid-template-columns: 1fr; }
    .about-img { max-width: 360px; margin: 0 auto; }
    .process-grid { grid-template-columns: repeat(2,1fr); gap: 36px; }
    .process-grid::after { display: none; }
    .temo-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat { border-right: none; border-bottom: 1px solid rgba(0,0,0,.09); }
    .stat:nth-child(odd) { border-right: 1px solid rgba(0,0,0,.09); }
    .stat:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 640px) {
    .wrap { padding: 0 18px; }
    #navbar, #navbar.scrolled { padding-left: 18px; padding-right: 18px; }
    .hero-content { padding: 0 18px; }
    .nav-links {
        display: none; flex-direction: column; position: fixed;
        top: 0; left: 0; right: 0; bottom: 0; background: var(--navy);
        align-items: center; justify-content: center; gap: 28px; z-index: 800;
    }
    .nav-links.open { display: flex; }
    .nav-links a { font-size: 22px; }
    .hamburger { display: flex; z-index: 1000; }
    .hero-ctas { flex-direction: column; align-items: flex-start; }
    .services, .biens, .process, .about, .temoignages, .contact { padding: 90px 0; }
    .services-grid { grid-template-columns: 1fr; gap: 12px; }
    .biens-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .bien--featured, .bien { grid-column: auto; height: 270px; }
    .biens-head { flex-direction: column; align-items: flex-start; gap: 10px; }
    .process-grid { grid-template-columns: 1fr; gap: 32px; }
    .temo-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat { border-right: none; border-bottom: 1px solid rgba(0,0,0,.09); }
    .stat:nth-child(odd) { border-right: 1px solid rgba(0,0,0,.09); }
    .stat:nth-last-child(-n+2) { border-bottom: none; }
    .contact-form { padding: 26px 18px; }
    .frow { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; padding-bottom: 40px; }
    .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
    .about-badge { left: -14px; }
    .about-badge--2 { right: -14px; }
}

/* ══ SERVICE CARDS — clickable ════════════════════════════════ */
.scard--link {
    display: block;
    cursor: pointer;
    transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}
.scard--link:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(12,27,51,.14); }

/* ══ RECRUTEMENT ══════════════════════════════════════════════ */
.recrutement {
    background: var(--navy);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}
.recrutement::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(92,184,178,.08) 0%, transparent 60%);
    pointer-events: none;
}

/* ── Barème table ── */
.bareme {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 20px;
    padding: 36px;
    margin-bottom: 40px;
}
.bareme-head {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.bareme-icon {
    width: 44px; height: 44px;
    background: rgba(92,184,178,.15);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.bareme-head h3 { font-size: 1.15rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.bareme-head p  { font-size: .9rem; color: rgba(255,255,255,.6); }
.bareme-head strong { color: var(--teal); }

.bareme-table { width: 100%; border-collapse: collapse; }
.bareme-row {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr 1.2fr;
    gap: 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
    align-items: center;
}
.bareme-row > div { padding: 14px 12px; font-size: .88rem; color: rgba(255,255,255,.8); }
.bareme-row--header > div {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: rgba(255,255,255,.4);
    padding: 10px 12px;
}
.bareme-row:last-child { border-bottom: none; }
.bareme-row--highlight { background: rgba(92,184,178,.06); border-radius: 8px; }
.bareme-row--premium > div { color: var(--tealL); }
.bareme-row strong { color: #fff; font-size: .95rem; }
.prix-range { font-weight: 600; color: rgba(255,255,255,.9); }
.note-ttc { font-size: .78rem; color: rgba(255,255,255,.4); margin-left: 4px; }
.agent-part .pct-agent { color: var(--teal); font-weight: 700; }
.agence-part { color: rgba(255,255,255,.5); font-size: .85rem; }
.bareme-note { font-size: .78rem; color: rgba(255,255,255,.35); margin-top: 20px; line-height: 1.5; }

/* ── Commission cards ── */
.commission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}
.commission-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 20px;
    padding: 32px 28px;
    position: relative;
    transition: transform .22s var(--ease), border-color .22s;
}
.commission-card:hover { transform: translateY(-4px); border-color: rgba(92,184,178,.3); }
.commission-card--featured {
    background: rgba(92,184,178,.08);
    border-color: rgba(92,184,178,.35);
}
.cc-badge {
    position: absolute;
    top: -12px; left: 50%;
    transform: translateX(-50%);
    background: var(--teal);
    color: var(--navy);
    font-size: .72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: 4px 14px;
    border-radius: 20px;
    white-space: nowrap;
}
.cc-level {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--teal);
    margin-bottom: 6px;
}
.cc-title { font-size: 1.4rem; font-weight: 800; color: #fff; margin-bottom: 4px; }
.cc-sub   { font-size: .8rem; color: rgba(255,255,255,.4); margin-bottom: 24px; }
.cc-split {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding: 16px;
    background: rgba(255,255,255,.04);
    border-radius: 12px;
}
.cc-agent, .cc-agence { text-align: center; flex: 1; }
.cc-pct { font-size: 2rem; font-weight: 800; color: var(--teal); line-height: 1; }
.cc-pct--agence { color: rgba(255,255,255,.35); font-size: 1.4rem; }
.cc-label { font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.4); margin-top: 4px; }
.cc-divider { width: 1px; height: 40px; background: rgba(255,255,255,.1); }
.cc-avantages { display: flex; flex-direction: column; gap: 8px; }
.cc-avantages li { font-size: .84rem; color: rgba(255,255,255,.65); padding-left: 16px; position: relative; }
.cc-avantages li::before { content: '✓'; position: absolute; left: 0; color: var(--teal); font-size: .8rem; }

/* ── Simulations ── */
.simu {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 20px;
    padding: 36px;
    margin-bottom: 60px;
}
.simu-head {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 24px;
}
.simu-head h3 { font-size: 1.1rem; font-weight: 700; color: #fff; }
.simu-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-bottom: 16px; }
.simu-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
    padding: 20px;
}
.simu-card--featured { border-color: rgba(92,184,178,.3); background: rgba(92,184,178,.06); }
.simu-scenario { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--teal); margin-bottom: 8px; }
.simu-detail  { font-size: .84rem; color: rgba(255,255,255,.6); margin-bottom: 6px; }
.simu-calcul  { font-size: .82rem; color: rgba(255,255,255,.4); margin-bottom: 10px; font-family: monospace; }
.simu-result  { font-size: 1rem; color: #fff; }
.simu-result strong { color: var(--teal); font-size: 1.1rem; }
.simu-disclaimer { font-size: .76rem; color: rgba(255,255,255,.3); }

/* ── CTA recrutement ── */
.recru-cta {
    text-align: center;
    display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.recru-cta p { font-size: 1.15rem; color: rgba(255,255,255,.7); }
.recru-cta .btn-primary { display: inline-flex; }

/* ══ MENTIONS LÉGALES ══════════════════════════════════════════ */
.mentions {
    padding: 80px 0 60px;
    background: var(--smoke);
}
.mentions h2 { font-size: 1.6rem; font-weight: 800; margin-bottom: 32px; color: var(--navy); }
.mentions h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin: 24px 0 8px; }
.mentions p, .mentions li { font-size: .88rem; color: #555; line-height: 1.7; }
.mentions ul { list-style: disc; padding-left: 20px; }
.mentions a { color: var(--teal); text-decoration: underline; }

/* ── Footer legal links ── */
.footer-legal {
    display: flex; gap: 18px; align-items: center;
    flex-wrap: wrap;
}
.footer-legal a {
    font-size: .75rem;
    color: rgba(255,255,255,.4);
    text-decoration: underline;
    transition: color .2s;
}
.footer-legal a:hover { color: var(--teal); }
.footer-bottom-wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* ── Responsive recrutement ── */
@media (max-width: 960px) {
    .commission-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
    .simu-grid { grid-template-columns: 1fr; }
    .bareme-row { grid-template-columns: 1fr 1fr; }
    .bareme-row--header > div:nth-child(n+3) { display: none; }
    .bareme-row > div:nth-child(n+3) { display: none; }
}
@media (max-width: 640px) {
    .bareme { padding: 20px 16px; }
    .simu { padding: 24px 16px; }
    .recrutement { padding: 80px 0; }
}

/* ══ BANDEAU COOKIES ══════════════════════════════════════════ */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9000;
    background: var(--navy);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px;
    padding: 16px 20px;
    gap: 20px;
    align-items: center;
    max-width: 680px;
    width: calc(100% - 40px);
    box-shadow: 0 8px 40px rgba(0,0,0,.35);
    flex-wrap: wrap;
}
.cookie-text {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    flex: 1;
    min-width: 200px;
}
.cookie-text span { font-size: .84rem; color: rgba(255,255,255,.7); line-height: 1.5; }
.cookie-text a    { color: var(--teal); text-decoration: underline; }
.cookie-actions   { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn {
    padding: 8px 18px;
    border-radius: 8px;
    font-size: .82rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: opacity .2s;
}
.cookie-btn:hover { opacity: .85; }
.cookie-btn--accept  { background: var(--teal); color: var(--navy); }
.cookie-btn--decline { background: rgba(255,255,255,.1); color: rgba(255,255,255,.6); }

/* ══ SCROLL PROGRESS ══════════════════════════════════════════ */
.scroll-progress {
    position: fixed; top: 0; left: 0; z-index: 9999;
    height: 3px; width: 0%;
    background: linear-gradient(90deg, var(--teal), var(--tealL));
    transition: width .1s linear;
    pointer-events: none;
}

/* ══ CUSTOM CURSOR ════════════════════════════════════════════ */
@media (hover: hover) { body { cursor: none; } }
#customCursor { position: fixed; top: 0; left: 0; z-index: 9998; pointer-events: none; }
.cursor-dot {
    position: fixed; width: 6px; height: 6px;
    background: var(--teal); border-radius: 50%;
    margin-left: -3px; margin-top: -3px;
    transition: transform .05s, opacity .2s;
}
.cursor-ring {
    position: fixed; width: 36px; height: 36px;
    border: 1.5px solid rgba(92,184,178,.5); border-radius: 50%;
    transition: transform .12s cubic-bezier(.25,.46,.45,.94), width .2s, height .2s, opacity .2s;
}
#customCursor.hovering .cursor-ring {
    width: 52px; height: 52px;
    border-color: var(--teal);
    background: rgba(92,184,178,.06);
    margin-left: -8px; margin-top: -8px;
}
#customCursor.hovering .cursor-dot { transform: scale(0); opacity: 0; }

/* ══ HERO CANVAS ═════════════════════════════════════════════ */
.hero-canvas {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    z-index: 0; pointer-events: none;
    opacity: .7;
}
.hero-content, .hero-badges, .scroll-hint { position: relative; z-index: 2; }

/* ══ SIMULATEUR ══════════════════════════════════════════════ */
.simulateur { padding: 120px 0; background: var(--smoke); }

.simu-widget {
    background: #fff;
    border-radius: 28px;
    box-shadow: 0 4px 80px rgba(12,27,51,.1);
    padding: 52px 48px 40px;
    max-width: 980px; margin: 0 auto;
}

.simu-slider-zone { margin-bottom: 44px; }

.simu-label-row {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 18px;
}
.simu-label {
    font-size: .78rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: .09em; color: var(--gray);
}
.simu-price-live {
    font-size: 2.4rem; font-weight: 800; color: var(--navy);
    font-variant-numeric: tabular-nums;
    transition: color .2s;
}

.simu-range {
    -webkit-appearance: none; width: 100%; height: 5px;
    border-radius: 3px; outline: none; cursor: pointer; margin-bottom: 10px;
    background: linear-gradient(to right, var(--teal) 0%, var(--teal) 17%, #e8e8e8 17%);
}
.simu-range::-webkit-slider-thumb {
    -webkit-appearance: none; width: 26px; height: 26px;
    background: var(--navy); border: 3px solid var(--teal); border-radius: 50%;
    cursor: grab; box-shadow: 0 2px 16px rgba(92,184,178,.45);
    transition: transform .15s;
}
.simu-range::-webkit-slider-thumb:active { cursor: grabbing; transform: scale(1.2); }
.simu-range-ends { display: flex; justify-content: space-between; font-size: .75rem; color: #bbb; }

.simu-cards {
    display: grid; grid-template-columns: 1fr auto 1fr;
    gap: 20px; align-items: center; margin-bottom: 32px;
}

.simu-card {
    border-radius: 20px; padding: 28px 24px;
    border: 1.5px solid #eee;
    transition: box-shadow .2s;
}
.simu-card:hover { box-shadow: 0 8px 32px rgba(12,27,51,.08); }
.simu-card--v { border-color: var(--teal); background: rgba(92,184,178,.03); }
.simu-card--t { background: #fafafa; }

.sc-tag {
    display: inline-block; font-size: .7rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: .09em;
    padding: 4px 10px; border-radius: 6px;
    background: rgba(92,184,178,.12); color: var(--teal);
    margin-bottom: 12px;
}
.sc-tag--t { background: #f0f0f0; color: #999; }

.sc-amount {
    font-size: 2rem; font-weight: 800; color: var(--navy);
    font-variant-numeric: tabular-nums; margin-bottom: 4px;
    transition: all .3s ease;
}
.sc-amount--t { color: #aaa; }
.sc-rate { font-size: .8rem; color: var(--gray); margin-bottom: 18px; }
.sc-list li { font-size: .82rem; color: #555; padding: 3px 0; }
.sc-list--t li { color: #bbb; }
.sc-no { text-decoration: line-through; color: #ccc !important; }

/* Eco card (center) */
.simu-eco {
    text-align: center; padding: 28px 20px;
    background: var(--navy); border-radius: 20px;
    min-width: 200px;
}
.simu-eco-label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; color: rgba(255,255,255,.4); margin-bottom: 8px; }
.simu-eco-amount {
    font-size: 2.2rem; font-weight: 800; color: var(--teal);
    font-variant-numeric: tabular-nums; margin-bottom: 4px;
    transition: all .3s ease;
}
.simu-eco-vs { font-size: .78rem; color: rgba(255,255,255,.35); margin-bottom: 24px; }

.simu-bars { display: flex; flex-direction: column; gap: 10px; }
.simu-bar-row { display: flex; align-items: center; gap: 10px; }
.simu-bar-row span { font-size: .7rem; color: rgba(255,255,255,.4); width: 70px; text-align: right; flex-shrink: 0; }
.simu-bar-track { flex: 1; height: 5px; background: rgba(255,255,255,.08); border-radius: 3px; overflow: hidden; }
.simu-bar-fill { height: 100%; border-radius: 3px; transition: width .35s cubic-bezier(.25,.46,.45,.94); }
.simu-bar--v { background: var(--teal); }
.simu-bar--t { background: rgba(255,255,255,.2); }

.simu-cta { text-align: center; }

/* ══ BIEN CARD 3D ═════════════════════════════════════════════ */
.bien { transform-style: preserve-3d; will-change: transform; }

/* ══ RESPONSIVE SIMULATEUR ═══════════════════════════════════ */
@media (max-width: 900px) {
    .simu-cards { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; }
    .simu-eco { grid-column: 1 / -1; order: 3; }
    .simu-card--t { order: 2; }
    .simu-widget { padding: 32px 24px 28px; }
}
@media (max-width: 600px) {
    .simu-cards { grid-template-columns: 1fr; }
    .simu-eco { order: 2; }
    .simu-card--t { order: 3; }
    .simu-price-live { font-size: 1.8rem; }
}

/* ══ SECTION PROTECTION JURIDIQUE ══════════════════════════════ */
.protection {
    background: var(--navy);
    padding: 96px 0;
}
.protection-head {
    text-align: center;
    margin-bottom: 56px;
}
.protection-eyebrow {
    display: inline-block;
    font-size: .72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--teal);
    margin-bottom: 16px;
}
.protection-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 16px;
}
.protection-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,.55);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.65;
}
.protection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}
@media (max-width: 900px) { .protection-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .protection-grid { grid-template-columns: 1fr; } }

.prot-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(92,184,178,.15);
    border-radius: 20px;
    padding: 28px 24px;
    transition: border-color .25s, background .25s;
}
.prot-card:hover {
    background: rgba(92,184,178,.07);
    border-color: rgba(92,184,178,.35);
}
.prot-icon {
    width: 44px;
    height: 44px;
    background: rgba(92,184,178,.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.prot-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}
.prot-card p {
    font-size: .875rem;
    color: rgba(255,255,255,.5);
    line-height: 1.6;
    margin: 0;
}
.prot-badge {
    display: inline-block;
    font-size: .65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    background: rgba(92,184,178,.15);
    color: var(--teal);
    border-radius: 6px;
    padding: 3px 8px;
    margin-bottom: 10px;
}
.protection-cta-bar {
    background: rgba(92,184,178,.08);
    border: 1px solid rgba(92,184,178,.2);
    border-radius: 20px;
    padding: 32px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.protection-cta-bar strong {
    display: block;
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}
.protection-cta-bar p {
    font-size: .9rem;
    color: rgba(255,255,255,.5);
    margin: 0;
}
/* ── Active page nav link ── */
.nav-links .active-page {
    color: var(--teal) !important;
    font-weight: 700;
}
.nav-links .active-page::after {
    content: '';
    display: block;
    height: 2px;
    background: var(--teal);
    border-radius: 1px;
    margin-top: 2px;
}
