/* ====================================================================
   ETIMYA — Luxury Frontend CSS
   Navy #1A2B4A · Gold #B8956A · Cream #f5f2ed
   Outfit + Newsreader + Manrope
   ==================================================================== */

:root {
    --navy:      #1A2B4A;
    --gold:      #B8956A;
    --gold-lt:   #D4AF7A;
    --cream:     #f5f2ed;
    --cream-lt:  #fefdfb;
    --white:     #ffffff;
    --black:     #000000;
    --ink:       #1A2B4A;
    --muted:     #5A6476;
    --border:    rgba(0,0,0,0.09);
    --navy-rgb:  26, 43, 74;
    --gold-rgb:  184, 149, 106;
    --star:      #f59e0b;

    --font-body:   'Outfit', sans-serif;
    --font-serif:  'Newsreader', serif;
    --font-alt:    'Manrope', sans-serif;

    --r-sm:   10px;
    --r-md:   18px;
    --r-lg:   28px;
    --r-full: 100px;

    --max-w: 1480px;

    --sh-soft:  0 2px 16px rgba(0,0,0,0.07);
    --sh-card:  0 8px 32px rgba(0,0,0,0.08);
    --sh-hover: 0 20px 48px rgba(26,43,74,0.14);
    --sh-gold:  0 8px 32px rgba(184,149,106,0.25);
}

/* ── Reset ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body.no-scroll { overflow: hidden; }
section[id] { scroll-margin-top: 100px; }
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }

/* ── Utility ─────────────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
}

.italic {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 500;
}

/* ── Section label ────────────────────────────────────────────────── */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
}
.eyebrow::before, .eyebrow::after {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--gold);
    opacity: .5;
}

/* ── Buttons ─────────────────────────────────────────────────────── */
.btn-dark {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: var(--black);
    color: var(--white);
    border-radius: var(--r-full);
    padding: 18px 34px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: opacity .2s, transform .2s;
}
.btn-dark:hover { opacity: .82; transform: translateY(-1px); }

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: rgba(255,255,255,.08);
    color: var(--white);
    border-radius: var(--r-full);
    padding: 18px 34px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,.18);
    cursor: pointer;
    backdrop-filter: blur(20px);
    transition: background .2s, transform .2s;
}
.btn-ghost:hover { background: rgba(255,255,255,.15); transform: translateY(-1px); }

/* ── NAVBAR ──────────────────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1400px;
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 22px;
    background: rgba(255,255,255,.04);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 14px;
    transition: background .35s, border-color .35s, box-shadow .35s, top .35s;
}

.navbar::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 14px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(var(--navy-rgb),.12), transparent 60%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity .3s;
    pointer-events: none; /* ne bloque pas les clics */
}
.navbar:hover::before { opacity: 1; }

.navbar.scrolled {
    top: 10px;
    background: rgba(255,255,255,.94);
    border-color: rgba(var(--navy-rgb),.1);
    box-shadow: 0 4px 30px rgba(0,0,0,.1);
}

.nav-logo { height: 46px; width: auto; object-fit: contain; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links a {
    color: rgba(255,255,255,.84);
    font-size: 14px;
    font-weight: 400;
    padding: 9px 16px;
    border-radius: 9px;
    transition: color .25s, background .25s;
}
.nav-links a:hover {
    color: var(--white);
    background: rgba(255,255,255,.07);
}
.navbar.scrolled .nav-links a { color: var(--muted); }
.navbar.scrolled .nav-links a:hover { color: var(--navy); background: rgba(var(--navy-rgb),.05); }

.nav-cta {
    background: var(--navy) !important;
    color: var(--white) !important;
    font-weight: 600 !important;
    padding: 11px 26px !important;
    border-radius: 9px !important;
    box-shadow: 0 2px 14px rgba(var(--navy-rgb),.28);
    transition: box-shadow .25s, transform .2s !important;
}
.nav-cta:hover { box-shadow: 0 4px 22px rgba(var(--navy-rgb),.38) !important; transform: translateY(-1px) !important; }
.navbar.scrolled .nav-cta { color: var(--white) !important; }

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    position: relative;
    z-index: 9100;
    border: none;
    background: none;
}
.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--white);
    border-radius: 2px;
    transition: transform .3s ease, opacity .3s ease;
    pointer-events: none;
}
.navbar.scrolled .nav-hamburger span { background: var(--navy); }
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5.5px, 5.5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5.5px, -5.5px); }

/* Mobile backdrop overlay */
.nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 8990;
    opacity: 0;
    transition: opacity .35s ease;
}
.nav-backdrop.show {
    display: block;
    opacity: 1;
}

/* ── HERO ────────────────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--navy);
}

/* slider */
.hero-slides {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.4s cubic-bezier(.4,0,.2,1);
}
.hero-slide.on { opacity: 1; }

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.06);
    transition: transform 9s ease-out;
}
.hero-slide.on img { transform: scale(1); }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(0,0,0,.52) 0%,
        rgba(var(--navy-rgb),.38) 60%,
        rgba(0,0,0,.62) 100%
    );
    z-index: 2;
}

/* gold line at bottom of hero */
.hero-gold-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    z-index: 5;
}

/* content */
.hero-body {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 120px 24px 60px;
    max-width: 960px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(var(--gold-rgb),.12);
    border: 1px solid rgba(var(--gold-rgb),.3);
    color: rgba(255,255,255,.88);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: var(--r-full);
    margin-bottom: 28px;
}
.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold-lt);
    box-shadow: 0 0 0 3px rgba(var(--gold-rgb),.25);
    animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 3px rgba(var(--gold-rgb),.25); } 50% { box-shadow: 0 0 0 7px rgba(var(--gold-rgb),.1); } }

.hero-title {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: clamp(2.8rem, 5vw, 6.4rem);
    line-height: 1.03;
    color: var(--white);
    letter-spacing: -.025em;
    margin-bottom: 24px;
}

.hero-sub {
    font-family: var(--font-alt);
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    color: rgba(255,255,255,.75);
    max-width: 580px;
    margin: 0 auto 44px;
    line-height: 1.75;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* dots */
.hero-dots {
    position: relative;
    z-index: 10;
    display: flex;
    gap: 7px;
    margin-top: 48px;
    padding-bottom: 40px;
}
.h-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,.35);
    border: none;
    cursor: pointer;
    transition: all .3s;
}
.h-dot.on { background: var(--white); width: 26px; border-radius: 4px; }

/* ticker */
.ticker-wrap {
    position: relative;
    z-index: 10;
    width: 100%;
    overflow: hidden;
    padding: 18px 0;
    background: rgba(var(--navy-rgb),.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(var(--gold-rgb),.2);
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.ticker-track {
    display: flex;
    gap: 0;
    width: max-content;
    animation: ticker 28s linear infinite;
}
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.ticker-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 36px;
    color: rgba(255,255,255,.82);
    font-size: 13px;
    font-weight: 400;
    white-space: nowrap;
    border-right: 1px solid rgba(var(--gold-rgb),.2);
}
.ticker-item i { color: var(--gold-lt); font-size: 13px; }

/* ── WAVE DIVIDER ────────────────────────────────────────────────── */
.wave-divider {
    display: block;
    line-height: 0;
    margin-top: -2px;
    overflow: hidden;
}
.wave-divider svg { width: 100%; display: block; }

/* ── CONTACT FORM SECTION ────────────────────────────────────────── */
.contact-section {
    padding: 0 24px 80px;
    background: var(--white);
}
.contact-shell {
    max-width: 1160px;
    margin: 0 auto;
}
.contact-card {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--sh-card);
    border: 1px solid var(--border);
    border-top: 3px solid var(--navy);
}
.contact-img {
    position: relative;
    min-height: 480px;
    overflow: hidden;
}
.contact-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s ease;
}
.contact-card:hover .contact-img img { transform: scale(1.04); }
.contact-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(var(--navy-rgb),.22), transparent);
}

.contact-form-area {
    background: var(--cream-lt);
    padding: 52px 48px;
}
.contact-form-area .eyebrow { margin-bottom: 14px; }

.cf-title {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: clamp(1.7rem, 2.2vw, 2.6rem);
    line-height: 1.12;
    color: var(--ink);
    margin-bottom: 12px;
}
.cf-sub {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px;
}

/* ── Channel Selector ── */
.channel-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 22px;
}
.channel-opt {
    position: relative;
    cursor: pointer;
}
.channel-opt input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0; height: 0;
}
.channel-label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 16px;
    border-radius: 12px;
    border: 2px solid var(--border);
    background: var(--white);
    transition: all .2s;
    cursor: pointer;
    user-select: none;
}
.channel-label:hover { border-color: rgba(var(--navy-rgb),.25); }

/* WhatsApp option */
.channel-opt.wa input:checked ~ .channel-label {
    border-color: #25D366;
    background: rgba(37,211,102,.06);
    box-shadow: 0 0 0 3px rgba(37,211,102,.1);
}
.channel-opt.wa .channel-icon { color: #25D366; }

/* Email option */
.channel-opt.em input:checked ~ .channel-label {
    border-color: var(--navy);
    background: rgba(var(--navy-rgb),.05);
    box-shadow: 0 0 0 3px rgba(var(--navy-rgb),.08);
}
.channel-opt.em .channel-icon { color: var(--navy); }

.channel-icon { width: 22px; height: 22px; flex-shrink: 0; }
.channel-text strong { display: block; font-size: 13.5px; font-weight: 600; color: var(--ink); }
.channel-text span   { display: block; font-size: 11px; color: var(--muted); margin-top: 1px; }

/* Radio check dot */
.channel-check {
    width: 16px; height: 16px;
    border-radius: 50%;
    border: 2px solid var(--border);
    margin-left: auto;
    flex-shrink: 0;
    transition: all .2s;
    position: relative;
}
.channel-check::after {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: transparent;
    transition: background .2s;
}
.channel-opt.wa input:checked ~ .channel-label .channel-check {
    border-color: #25D366;
}
.channel-opt.wa input:checked ~ .channel-label .channel-check::after {
    background: #25D366;
}
.channel-opt.em input:checked ~ .channel-label .channel-check {
    border-color: var(--navy);
}
.channel-opt.em input:checked ~ .channel-label .channel-check::after {
    background: var(--navy);
}

/* Submit button states */
.cf-submit {
    width: 100%;
    justify-content: center;
    transition: background .25s, opacity .2s, transform .2s;
}
.cf-submit.wa-mode {
    background: #25D366;
}
.cf-submit.wa-mode:hover { background: #1ebe5d; opacity: 1; }
.cf-submit.em-mode { background: var(--navy); }

/* Success message */
.cf-success {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(26,43,74,.06);
    border: 1px solid rgba(26,43,74,.18);
    border-radius: 10px;
    padding: 13px 16px;
    margin-bottom: 16px;
    font-size: 13px;
    color: var(--navy);
}
.cf-success svg { flex-shrink: 0; color: #25D366; }

.field {
    width: 100%;
    background: var(--cream);
    border: 1px solid transparent;
    border-radius: var(--r-sm);
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--ink);
    margin-bottom: 12px;
    transition: background .2s, border-color .2s, box-shadow .2s;
    outline: none;
    appearance: none;
}
.field:focus {
    background: var(--white);
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(var(--navy-rgb),.08);
}
.field::placeholder { color: var(--muted); opacity: .7; }
textarea.field { min-height: 88px; resize: vertical; }

/* ── SECTEURS ────────────────────────────────────────────────────── */
.secteurs {
    padding: 96px 24px;
    background: var(--cream-lt);
}
.secteurs-inner { max-width: var(--max-w); margin: 0 auto; }

.section-head {
    text-align: center;
    margin-bottom: 56px;
}
.section-title {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: clamp(2rem, 3.2vw, 4rem);
    line-height: 1.06;
    letter-spacing: -.022em;
    color: var(--ink);
    margin-bottom: 18px;
}
.section-desc {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.72;
    max-width: 580px;
    margin: 0 auto;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.city-card {
    border-radius: var(--r-md);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--sh-soft);
    border: 1px solid var(--border);
    transition: transform .35s cubic-bezier(.2,0,.2,1), box-shadow .35s;
}
.city-card:hover { transform: translateY(-7px); box-shadow: var(--sh-hover); }

.city-img {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}
.city-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s cubic-bezier(.2,0,.2,1);
}
.city-card:hover .city-img img { transform: scale(1.07); }

.city-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(8px);
    border-radius: var(--r-full);
    padding: 7px 13px;
    font-size: 12px;
    font-weight: 600;
    color: var(--ink);
    box-shadow: var(--sh-soft);
}
.city-badge svg { color: var(--star); width: 12px; height: 12px; }

.city-loc {
    position: absolute;
    bottom: 14px;
    left: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,.88);
    backdrop-filter: blur(8px);
    border-radius: var(--r-full);
    padding: 7px 14px;
    font-size: 12px;
    font-weight: 600;
    color: var(--ink);
}
.city-loc svg { color: var(--navy); width: 13px; height: 13px; }

.city-body { padding: 22px 22px 26px; }
.city-name { font-size: 20px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.city-desc { color: var(--muted); font-size: 13.5px; line-height: 1.65; }

/* ── SERVICES SLIDESHOW ──────────────────────────────────────────── */
.services-section {
    padding: 96px 0;
    background: var(--cream);
}

.filter-bar {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 32px;
}
.filter-btn {
    padding: 11px 24px;
    border-radius: var(--r-full);
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 500;
    cursor: pointer;
    border: 1.5px solid var(--border);
    background: var(--white);
    color: var(--muted);
    transition: all .22s;
}
.filter-btn.on,
.filter-btn:hover {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
    box-shadow: 0 4px 16px rgba(var(--navy-rgb),.22);
}

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

.progress-rail {
    height: 1.5px;
    background: rgba(var(--navy-rgb),.1);
    border-radius: 2px;
    margin: 36px 0 32px;
    overflow: hidden;
}
.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--navy), var(--gold));
    border-radius: 2px;
    transition: width .1s linear;
    width: 0;
}

.svc-slide { display: none; }
.svc-slide.on {
    display: block;
    animation: svcIn .4s ease;
}
@keyframes svcIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

.svc-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--sh-card);
    border: 1px solid var(--border);
    min-height: 500px;
}

.svc-img-side { position: relative; overflow: hidden; }
.svc-num {
    position: absolute;
    top: 22px;
    left: 22px;
    z-index: 5;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    color: rgba(255,255,255,.75);
    background: rgba(0,0,0,.28);
    backdrop-filter: blur(8px);
    padding: 5px 12px;
    border-radius: 8px;
}
.svc-img-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s ease;
}
.svc-slide.on .svc-img-side img { transform: scale(1.02); }
.svc-img-side::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent, rgba(var(--navy-rgb),.1));
}

.svc-text {
    padding: 56px 52px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--white);
}
.svc-cat {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(var(--gold-rgb),.1);
    border: 1px solid rgba(var(--gold-rgb),.25);
    border-radius: var(--r-full);
    padding: 6px 14px;
    margin-bottom: 22px;
    width: fit-content;
}
.svc-title {
    font-size: clamp(1.8rem, 2.4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -.015em;
    margin-bottom: 18px;
    color: var(--ink);
}
.svc-desc {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 32px;
}
.svc-link {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    font-weight: 600;
    font-size: 14px;
    color: var(--navy);
    transition: gap .2s;
}
.svc-link:hover { gap: 17px; }
.svc-link svg { transition: transform .2s; }
.svc-link:hover svg { transform: translateX(4px); }

.slide-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    margin-top: 36px;
}
.nav-arr {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    background: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    transition: all .2s;
}
.nav-arr:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.nav-arr svg { width: 18px; height: 18px; }

.indicators { display: flex; gap: 6px; align-items: center; }
.ind {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: rgba(var(--navy-rgb),.2);
    cursor: pointer;
    border: none;
    transition: all .3s;
}
.ind.on { background: var(--navy); width: 22px; border-radius: 4px; }

.services-cta {
    text-align: center;
    padding: 72px 24px 0;
}
.svc-cta-title {
    font-size: clamp(1.6rem, 2.5vw, 3rem);
    font-weight: 600;
    letter-spacing: -.02em;
    margin-bottom: 32px;
}

/* ── PRICING ─────────────────────────────────────────────────────── */
.pricing-section {
    padding: 96px 24px;
    background: var(--white);
}

.guarantee-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(var(--navy-rgb),.05);
    border: 1px solid rgba(var(--navy-rgb),.12);
    border-radius: var(--r-full);
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--navy);
    margin-top: 22px;
}
.guarantee-tag svg { width: 16px; height: 16px; stroke: var(--gold); }

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

.plan {
    border-radius: var(--r-md);
    border: 1px solid var(--border);
    background: var(--cream-lt);
    padding: 32px 28px;
    position: relative;
    transition: transform .3s, box-shadow .3s;
}
.plan:hover { transform: translateY(-5px); box-shadow: var(--sh-hover); }

.plan.featured {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(var(--navy-rgb),.3);
}
.plan.featured:hover { transform: translateY(-14px); }

.plan-ribbon {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold), var(--gold-lt));
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 5px 18px;
    border-radius: var(--r-full);
    box-shadow: var(--sh-gold);
    white-space: nowrap;
}

.plan-icon {
    width: 46px; height: 46px;
    border-radius: 12px;
    background: rgba(var(--navy-rgb),.07);
    display: flex; align-items: center; justify-content: center;
    color: var(--navy);
    margin-bottom: 18px;
}
.plan.featured .plan-icon { background: rgba(255,255,255,.12); color: var(--white); }
.plan-icon svg { width: 22px; height: 22px; stroke: currentColor; }

.plan-name { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.plan-tag { font-size: 13px; color: var(--muted); line-height: 1.55; margin-bottom: 22px; }
.plan.featured .plan-tag { color: rgba(255,255,255,.65); }

.commission-row {
    border-top: 1px solid rgba(0,0,0,.08);
    border-bottom: 1px solid rgba(0,0,0,.08);
    padding: 18px 0;
    margin-bottom: 22px;
}
.plan.featured .commission-row { border-color: rgba(255,255,255,.15); }
.commission-lbl { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.plan.featured .commission-lbl { color: rgba(255,255,255,.55); }
.commission-val { display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; }
.pct { font-size: 44px; font-weight: 800; line-height: 1; color: var(--ink); }
.plan.featured .pct { color: var(--white); }
.pct-suf { font-size: 12px; color: var(--muted); line-height: 1.4; max-width: 120px; }
.plan.featured .pct-suf { color: rgba(255,255,255,.55); }

.feat-head { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.plan.featured .feat-head { color: rgba(255,255,255,.55); }

.feat-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.feat-item { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--ink); }
.plan.featured .feat-item { color: rgba(255,255,255,.88); }

.feat-dot {
    width: 20px; height: 20px;
    border-radius: 50%;
    background: rgba(var(--navy-rgb),.07);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    color: var(--navy);
}
.plan.featured .feat-dot { background: rgba(255,255,255,.15); color: var(--white); }
.feat-dot svg { width: 11px; height: 11px; stroke: currentColor; stroke-width: 2.5; }

.plan-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    padding: 14px 22px;
    background: var(--navy);
    color: var(--white);
    border-radius: 11px;
    font-size: 14px;
    font-weight: 600;
    transition: opacity .2s, transform .2s;
    border: none;
    cursor: pointer;
}
.plan-cta:hover { opacity: .85; transform: translateY(-1px); }
.plan.featured .plan-cta { background: var(--white); color: var(--navy); }

/* bottom perks */
.perks-block {
    max-width: 1100px;
    margin: 52px auto 0;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 28px;
    padding: 40px;
    background: var(--cream-lt);
    border-radius: var(--r-md);
    border: 1px solid var(--border);
}
.perks-lead h3 { font-size: 22px; font-weight: 700; margin: 18px 0 12px; }
.perks-lead p { font-size: 14px; color: var(--muted); line-height: 1.7; }
.highlight { color: var(--gold); font-weight: 600; }
.perks-icon { width: 48px; height: 48px; background: rgba(var(--navy-rgb),.06); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--navy); }
.perks-icon svg { width: 24px; height: 24px; stroke: currentColor; }
.perks-cards { display: flex; flex-direction: column; gap: 14px; }
.perk-card {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 18px; background: var(--white);
    border-radius: 12px; border: 1px solid var(--border);
}
.perk-ic { width: 38px; height: 38px; background: rgba(var(--navy-rgb),.05); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--navy); flex-shrink: 0; }
.perk-ic svg { width: 18px; height: 18px; stroke: currentColor; }
.perk-card h4 { font-size: 14px; font-weight: 600; margin-bottom: 3px; }
.perk-card p { font-size: 12.5px; color: var(--muted); }

.question-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 22px 32px;
    background: var(--navy);
    border-radius: 12px;
    margin-top: 16px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}
.question-strip h4 { font-size: 16px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.question-strip p { font-size: 13px; color: rgba(255,255,255,.6); }
.q-btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--white); color: var(--navy);
    padding: 11px 22px; border-radius: 10px;
    font-size: 13px; font-weight: 600; white-space: nowrap;
    transition: transform .2s, box-shadow .2s;
}
.q-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,0,0,.18); }

/* ── ABOUT ───────────────────────────────────────────────────────── */
.about-section {
    padding: 96px 24px;
    background: var(--cream-lt);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: var(--max-w);
    margin: 0 auto;
    align-items: start;
}
.about-lbl {
    font-size: clamp(2.4rem, 4vw, 5rem);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -.02em;
    margin-bottom: 36px;
}

.team-frame {
    border-radius: var(--r-lg);
    overflow: hidden;
    position: relative;
    aspect-ratio: 3/4;
    background: var(--navy);
    box-shadow: var(--sh-card);
}
.team-frame img { width: 100%; height: 100%; object-fit: cover; opacity: .72; }
.team-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 28px;
    background: linear-gradient(to top, rgba(0,0,0,.7), transparent 45%);
}
.team-logo {
    width: 52px; height: 52px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,.25);
    background: var(--navy);
    overflow: hidden;
    margin-bottom: 12px;
    display: flex; align-items: center; justify-content: center;
}
.team-logo img { width: 100%; height: 100%; object-fit: contain; }
.team-name { font-size: 20px; font-weight: 700; color: var(--white); }

/* gold accent tag */
.about-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(var(--gold-rgb),.12);
    border: 1px solid rgba(var(--gold-rgb),.3);
    border-radius: var(--r-full);
    padding: 7px 16px;
    font-size: 12px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.about-right { padding-top: 48px; }
.about-text { font-size: 15.5px; color: var(--muted); line-height: 1.82; margin-bottom: 36px; }

.quote-box {
    background: var(--white);
    border-radius: var(--r-md);
    border: 1px solid var(--border);
    border-left: 4px solid var(--gold);
    padding: 28px 30px;
    position: relative;
}
.quote-box::before {
    content: '"';
    position: absolute;
    top: -8px;
    left: 20px;
    font-size: 60px;
    font-family: var(--font-serif);
    color: var(--gold);
    opacity: .25;
    line-height: 1;
}
.quote-box h3 { font-size: 17px; font-weight: 600; margin-bottom: 10px; line-height: 1.4; }
.quote-box p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* certs row */
.certs-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
}
.cert-chip {
    display: flex; align-items: center; gap: 7px;
    background: rgba(var(--navy-rgb),.05);
    border: 1px solid rgba(var(--navy-rgb),.1);
    border-radius: var(--r-full);
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 600;
    color: var(--navy);
}
.cert-chip svg { width: 14px; height: 14px; stroke: var(--gold); }

/* ── FAQ ─────────────────────────────────────────────────────────── */
/* ── FAQ ─────────────────────────────────────────────────────────── */
.faq-section {
    background: linear-gradient(145deg, #0d1b35 0%, #1a2b4a 50%, #0f2240 100%);
    padding: 100px 24px;
    position: relative;
    overflow: hidden;
}
.faq-section::before {
    content: '';
    position: absolute;
    top: -120px; right: -120px;
    width: 480px; height: 480px;
    background: radial-gradient(circle, rgba(196,161,101,.12) 0%, transparent 70%);
    pointer-events: none;
}
.faq-section::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -80px;
    width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(196,161,101,.07) 0%, transparent 70%);
    pointer-events: none;
}

.faq-wrap {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* ── Left column ── */
.faq-left { position: sticky; top: 100px; }

.faq-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}
.faq-eyebrow::before {
    content: '';
    display: block;
    width: 28px; height: 1.5px;
    background: var(--gold);
}

.faq-title {
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 18px;
    letter-spacing: -.02em;
}
.faq-title em {
    font-style: italic;
    color: var(--gold);
    font-weight: 700;
}

.faq-sub {
    font-size: 14.5px;
    color: rgba(255,255,255,.55);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 280px;
}

.faq-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    color: #0d1b35;
    font-size: 13px;
    font-weight: 700;
    padding: 13px 24px;
    border-radius: 50px;
    transition: opacity .2s, transform .2s;
    text-decoration: none;
    margin-bottom: 48px;
}
.faq-cta:hover { opacity: .88; transform: translateY(-1px); }

.faq-deco {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 16px;
    backdrop-filter: blur(8px);
}
.faq-deco span {
    font-size: 42px;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    letter-spacing: -.04em;
}
.faq-deco p {
    font-size: 13px;
    color: rgba(255,255,255,.6);
    line-height: 1.5;
    margin: 0;
}

/* ── Right column ── */
.faq-list { display: flex; flex-direction: column; gap: 8px; }

.faq-item {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    transition: background .25s, border-color .25s;
}
.faq-item:hover {
    background: rgba(255,255,255,.07);
    border-color: rgba(255,255,255,.15);
}
.faq-item.open {
    background: rgba(255,255,255,.08);
    border-color: rgba(196,161,101,.35);
}

.faq-q {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 22px;
    user-select: none;
}
.faq-n {
    font-size: 12px;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: .06em;
    flex-shrink: 0;
    width: 24px;
    opacity: .75;
    transition: opacity .2s;
}
.faq-item.open .faq-n { opacity: 1; }

.faq-q span {
    flex: 1;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255,255,255,.85);
    line-height: 1.5;
    transition: color .2s;
}
.faq-item.open .faq-q span { color: #fff; }

.faq-toggle {
    width: 32px; height: 32px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,.2);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    color: rgba(255,255,255,.6);
    transition: all .3s cubic-bezier(.4,0,.2,1);
}
.faq-item.open .faq-toggle {
    background: var(--gold);
    border-color: var(--gold);
    color: #0d1b35;
}
.faq-plus-v {
    transition: transform .3s cubic-bezier(.4,0,.2,1), opacity .3s;
    transform-origin: center;
}
.faq-item.open .faq-plus-v {
    transform: scaleY(0);
    opacity: 0;
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s cubic-bezier(.4,0,.2,1);
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a p {
    padding: 0 22px 22px 62px;
    font-size: 14px;
    color: rgba(255,255,255,.55);
    line-height: 1.8;
    margin: 0;
}

/* ── REVIEWS ─────────────────────────────────────────────────────── */
.reviews-section {
    padding: 96px 24px;
    background: linear-gradient(135deg, var(--navy) 0%, #0f1e38 55%, #2a1c10 100%);
    position: relative;
    overflow: hidden;
}
.reviews-section::before {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: rgba(var(--gold-rgb),.06);
    border: 1px solid rgba(var(--gold-rgb),.1);
    top: -140px; right: -100px;
    pointer-events: none;
}
.reviews-section::after {
    content: '';
    position: absolute;
    width: 320px; height: 320px;
    border-radius: 50%;
    background: rgba(255,255,255,.03);
    bottom: -80px; left: -60px;
    pointer-events: none;
}

.rev-inner { max-width: var(--max-w); margin: 0 auto; position: relative; z-index: 2; }

.rev-header { text-align: center; margin-bottom: 56px; }
.rev-title {
    font-size: clamp(2rem, 3.2vw, 4rem);
    font-weight: 600;
    color: var(--white);
    letter-spacing: -.02em;
    margin-bottom: 18px;
}
.rev-global {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(var(--gold-rgb),.3);
    border-radius: var(--r-full);
    padding: 10px 22px;
    color: rgba(255,255,255,.88);
    font-size: 14px;
    font-weight: 500;
}
.stars-gold { display: flex; gap: 2px; }
.stars-gold span { color: var(--star); font-size: 15px; }

.rev-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.rev-card {
    background: var(--white);
    border-radius: var(--r-md);
    padding: 26px;
    border: 1px solid rgba(var(--navy-rgb),.35);
    position: relative;
    transition: transform .3s, box-shadow .3s;
}
.rev-card:hover { transform: translateY(-5px); box-shadow: 0 20px 48px rgba(0,0,0,.18); }

.rev-perf {
    position: absolute;
    top: 14px; right: 14px;
    background: rgba(var(--navy-rgb),.06);
    border: 1px solid rgba(var(--navy-rgb),.12);
    border-radius: 8px;
    padding: 5px 10px;
    font-size: 11px;
    font-weight: 800;
    color: var(--gold);
}
.rev-stars { display: flex; gap: 2px; margin-bottom: 14px; }
.rev-stars span { color: var(--star); font-size: 14px; }
.rev-text {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.72;
    margin-bottom: 20px;
    font-style: italic;
}
.rev-author { display: flex; align-items: center; gap: 11px; }
.rev-avatar {
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 2px solid var(--navy);
    overflow: hidden;
    flex-shrink: 0;
}
.rev-avatar img { width: 100%; height: 100%; object-fit: cover; }
.rev-name { font-weight: 700; font-size: 13px; color: var(--ink); }
.rev-city { font-size: 11.5px; color: var(--muted); }

/* ── FOOTER ──────────────────────────────────────────────────────── */
footer {
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 80px 24px 40px;
}
.foot-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1fr;
    gap: 52px;
    max-width: var(--max-w);
    margin: 0 auto 48px;
}
.foot-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.foot-logo img { height: 36px; width: auto; object-fit: contain; }
.foot-logo strong { font-size: 18px; font-weight: 800; color: var(--ink); letter-spacing: -.01em; }
.foot-desc { font-size: 13.5px; color: var(--muted); line-height: 1.7; max-width: 260px; margin-bottom: 22px; }
.foot-contacts a { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: 13px; margin-bottom: 9px; transition: color .2s; }
.foot-contacts a:hover { color: var(--navy); }
.foot-contacts svg { width: 15px; height: 15px; flex-shrink: 0; }

.foot-col h4 { font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--ink); margin-bottom: 18px; }
.foot-col a { display: block; font-size: 13.5px; color: var(--muted); margin-bottom: 11px; transition: color .2s; }
.foot-col a:hover { color: var(--navy); }

.foot-bottom {
    max-width: var(--max-w);
    margin: 0 auto;
    padding-top: 22px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}
.foot-bottom p { font-size: 12px; color: var(--muted); }
.foot-links { display: flex; gap: 22px; }
.foot-links a { font-size: 12px; color: var(--muted); transition: color .2s; }
.foot-links a:hover { color: var(--navy); }

/* ── WA FLOAT ────────────────────────────────────────────────────── */
.wa-float {
    position: fixed;
    bottom: 26px; right: 26px;
    z-index: 8999;
    width: 54px; height: 54px;
    background: #25D366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    box-shadow: 0 4px 22px rgba(37,211,102,.42);
    transition: transform .28s, box-shadow .28s;
}
.wa-float:hover { transform: translateY(-3px) scale(1.06); box-shadow: 0 8px 32px rgba(37,211,102,.52); }
.wa-float svg { width: 27px; height: 27px; }

/* ── RESPONSIVE ──────────────────────────────────────────────────── */
@media (max-width: 1080px) {
    .cities-grid,
    .plans-grid,
    .rev-grid { grid-template-columns: 1fr 1fr; }
    .plan.featured { transform: none; }
    .plan.featured:hover { transform: translateY(-5px); }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .perks-block { grid-template-columns: 1fr; }
    .svc-inner { grid-template-columns: 1fr; min-height: auto; }
    .svc-img-side { min-height: 300px; }
    .foot-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .contact-card { grid-template-columns: 1fr; }
    .contact-img { min-height: 260px; }
}

@media (max-width: 768px) {
    .navbar { width: calc(100% - 28px); padding: 12px 14px; }
    .nav-hamburger { display: flex; }

    /* Menu drawer depuis la droite */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(80vw, 340px);
        height: 100vh;
        background: #faf8f4;
        flex-direction: column;
        align-items: flex-start;
        padding: 90px 28px 40px;
        gap: 0;
        border-left: 1px solid rgba(0,0,0,0.08);
        box-shadow: -20px 0 60px rgba(0,0,0,0.25);
        transition: right .38s cubic-bezier(.4,0,.2,1);
        z-index: 9050;
        overflow-y: auto;
    }
    .nav-links.open { right: 0 !important; }

    .nav-links a {
        width: 100%;
        padding: 16px 0;
        border-bottom: 1px solid rgba(0,0,0,0.07);
        border-radius: 0 !important;
        color: var(--ink) !important;
        font-size: 16px;
        font-weight: 500;
        background: none !important;
    }
    .nav-links a:hover { padding-left: 8px; color: var(--gold) !important; }
    .nav-cta {
        margin-top: 20px;
        width: 100%;
        text-align: center;
        padding: 14px 22px !important;
        border-radius: 12px !important;
        border-bottom: none !important;
        justify-content: center;
    }

    .hero-actions { flex-direction: column; align-items: stretch; }
    .btn-dark, .btn-ghost { justify-content: center; font-size: 15px; padding: 16px 24px; }

    .cities-grid,
    .plans-grid,
    .rev-grid { grid-template-columns: 1fr; }
    .svc-text { padding: 32px 26px; }
    .about-right { padding-top: 0; }
    .foot-grid { grid-template-columns: 1fr; gap: 28px; }
    .foot-bottom { flex-direction: column; align-items: flex-start; }
    .faq-wrap { grid-template-columns: 1fr; gap: 48px; }
    .faq-left { position: static; }
    .faq-deco { display: none; }
    .faq-a p { padding-left: 22px; }
    .question-strip { flex-direction: column; align-items: flex-start; }
}

/* ═══════════════════════════════════════════════════════════════
   DEVIS PAGE
═══════════════════════════════════════════════════════════════ */

.devis-hero {
    background: linear-gradient(135deg, var(--navy) 0%, #0f1e35 100%);
    padding: 140px 24px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.devis-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 60% at 50% 100%, rgba(196,161,101,.12) 0%, transparent 70%);
    pointer-events: none;
}
.devis-hero-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.devis-hero h1 { font-size: clamp(32px, 5vw, 54px); color: #fff; line-height: 1.18; margin: 16px 0 18px; }
.devis-hero h1 em { color: var(--gold); font-style: italic; font-family: 'Newsreader', Georgia, serif; }
.devis-hero p { color: rgba(255,255,255,.72); font-size: 17px; line-height: 1.6; }

/* ── Main section ── */
.devis-section { background: var(--cream); padding: 72px 24px 100px; }
.devis-wrap {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: start;
}

/* ── Benefits col ── */
.devis-benefits { position: sticky; top: 100px; }
.devis-benefits h2 { font-size: 30px; color: var(--navy); font-weight: 800; line-height: 1.25; margin-bottom: 32px; }
.devis-benefits h2 em { color: var(--gold); font-style: italic; font-family: 'Newsreader', Georgia, serif; }
.devis-perks { list-style: none; padding: 0; margin: 0 0 40px; display: flex; flex-direction: column; gap: 20px; }
.devis-perks li { display: flex; gap: 16px; align-items: flex-start; }
.devis-perk-icon {
    width: 42px; height: 42px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--navy), #2a4a7f);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: 16px;
}
.devis-perks li strong { display: block; color: var(--navy); font-weight: 700; margin-bottom: 3px; font-size: 14px; }
.devis-perks li p { color: var(--muted); font-size: 13.5px; line-height: 1.5; margin: 0; }

.devis-trust { display: flex; gap: 0; border-top: 1px solid rgba(26,43,74,.12); padding-top: 28px; }
.devis-trust-item { flex: 1; text-align: center; border-right: 1px solid rgba(26,43,74,.1); }
.devis-trust-item:last-child { border-right: none; }
.devis-trust-item span { display: block; font-size: 26px; font-weight: 800; color: var(--navy); }
.devis-trust-item p { font-size: 12px; color: var(--muted); margin: 2px 0 0; }

/* ── Form col ── */
.devis-form-col {}
.devis-alert {
    display: flex; gap: 14px; align-items: flex-start;
    padding: 16px 20px; border-radius: 12px; margin-bottom: 20px;
    font-size: 14px;
}
.devis-alert-success {
    background: #f0fdf4; border: 1px solid #86efac; color: #166534;
}
.devis-alert i { margin-top: 2px; font-size: 18px; }
.devis-alert strong { display: block; font-weight: 700; margin-bottom: 2px; }

.devis-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(26,43,74,.1);
    overflow: hidden;
}
.devis-card-header {
    background: linear-gradient(135deg, var(--navy) 0%, #2a4a7f 100%);
    padding: 28px 32px;
}
.devis-card-header h3 { color: #fff; font-size: 20px; font-weight: 700; margin: 0 0 4px; }
.devis-card-header p { color: rgba(255,255,255,.65); font-size: 14px; margin: 0; }

.devis-form { padding: 28px 32px 24px; display: flex; flex-direction: column; gap: 18px; }
.devis-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.devis-field { display: flex; flex-direction: column; gap: 6px; }
.devis-field label { font-size: 13px; font-weight: 600; color: var(--navy); }
.devis-opt { font-weight: 400; color: var(--muted); font-size: 12px; }
.devis-field input,
.devis-field select,
.devis-field textarea {
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    padding: 11px 14px;
    font-size: 14px;
    color: var(--ink);
    background: #fff;
    font-family: inherit;
    transition: border-color .2s, box-shadow .2s;
    outline: none;
    width: 100%;
    box-sizing: border-box;
}
.devis-field input:focus,
.devis-field select:focus,
.devis-field textarea:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(26,43,74,.08);
}
.devis-field textarea { resize: vertical; min-height: 80px; }

/* Bedroom chips */
.devis-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.devis-chip { cursor: pointer; }
.devis-chip input[type=radio] { display: none; }
.devis-chip span {
    display: block;
    padding: 8px 18px;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    transition: all .18s;
    background: #fff;
    user-select: none;
}
.devis-chip input:checked + span {
    background: var(--navy);
    border-color: var(--navy);
    color: #fff;
    box-shadow: 0 3px 10px rgba(26,43,74,.25);
}
.devis-chip:hover span { border-color: var(--navy); }

/* Actions */
.devis-actions { display: flex; flex-direction: column; gap: 12px; padding-top: 4px; }
.devis-btn-wa {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: background .2s, transform .15s, box-shadow .2s;
    box-shadow: 0 4px 16px rgba(37,211,102,.3);
}
.devis-btn-wa:hover { background: #1db954; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(37,211,102,.4); }
.devis-btn-email {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    background: var(--navy);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s, transform .15s;
}
.devis-btn-email:hover { background: #0f1e35; transform: translateY(-1px); }
.devis-sep { display: flex; align-items: center; gap: 12px; }
.devis-sep::before, .devis-sep::after {
    content: ''; flex: 1; height: 1px; background: #e2e8f0;
}
.devis-sep span { font-size: 12px; color: var(--muted); white-space: nowrap; }
.devis-privacy { font-size: 12px; color: var(--muted); text-align: center; margin: 4px 0 0; }
.devis-privacy i { margin-right: 5px; }

/* ── Responsive ── */
@media (max-width: 820px) {
    .devis-wrap { grid-template-columns: 1fr; gap: 40px; }
    .devis-benefits { position: static; }
    .devis-section { padding: 48px 16px 64px; }
    .devis-hero { padding: 120px 20px 60px; }
    .devis-form { padding: 20px; }
    .devis-card-header { padding: 20px; }
    .devis-row { grid-template-columns: 1fr; }
}
