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

:root {
    --blue: #007AC2;
    --blue-dark: #005F99;
    --blue-light: #1A8FD4;
    --blue-pale: #EBF5FC;
    --blue-glow: rgba(0, 122, 194, 0.12);
    --yellow: #FFBF35;
    --yellow-dark: #E5A820;
    --yellow-light: #FFD06B;
    --yellow-pale: #FFF8E6;
    --yellow-glow: rgba(255, 191, 53, 0.15);
    --navy: #012340;
    --white: #FFFFFF;
    --bg: #FAFBFC;
    --g50: #F4F5F7; --g100: #EAECF0; --g200: #D5D9E0;
    --g300: #A8AEBB; --g400: #8B92A0; --g500: #636B7A; --g600: #4A5260;
    --g700: #343B48; --g800: #1E2430; --g900: #111520;
    --radius-xs: 10px; --radius-sm: 14px; --radius: 20px; --radius-lg: 24px; --radius-xl: 32px;
    --shadow-xs: 0 1px 2px rgba(0,0,0,0.03);
    --shadow-sm: 0 1px 4px rgba(0,0,0,0.04), 0 4px 12px rgba(0,0,0,0.03);
    --shadow-md: 0 2px 8px rgba(0,0,0,0.04), 0 8px 32px rgba(0,0,0,0.06);
    --shadow-lg: 0 4px 12px rgba(0,0,0,0.04), 0 16px 48px rgba(0,0,0,0.08);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; scroll-padding-top: 120px; }

body {
    font-family: 'Poppins', sans-serif;
    color: var(--g800);
    background: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; }

/* ═══════════════════════════════════════════
   SECTION TITLES
   ═══════════════════════════════════════════ */
.section-title {
    font-family: 'Lato', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    color: var(--navy);
    letter-spacing: -0.035em;
    line-height: 1.15;
    text-align: center;
    margin-bottom: 16px;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--yellow);
    border-radius: 2px;
    margin: 12px auto 0;
}

.section-sub {
    font-size: 0.95rem;
    color: var(--g500);
    font-weight: 300;
    text-align: center;
    margin-bottom: 48px;
}

/* ═══════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════ */
.hd {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000; padding: 16px 0;
    background: var(--white);
    transition: all 0.4s ease;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.hd.visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.hd.s {
    padding: 10px 0;
    box-shadow: 0 1px 0 rgba(0,0,0,0.04), 0 4px 16px rgba(0,0,0,0.03);
}

.hd-in {
    max-width: 1280px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: center;
}

.lg { height: 28px; width: auto; }

.hd-btn {
    display: none;
    padding: 11px 24px;
    background: var(--yellow);
    color: var(--navy);
    font-size: 0.78rem; font-weight: 600;
    border-radius: 99px;
    transition: all var(--transition);
}

.hd-btn:hover {
    background: var(--yellow-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(255,191,53,0.3);
}

/* ═══════════════════════════════════════════
   HERO — Full-screen background
   ═══════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0 24px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 14s cubic-bezier(0.25, 0, 0.25, 1);
}

.hero-bg .slide {
    position: absolute; inset: 0;
    opacity: 0;
    transition: opacity 1.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-bg .slide.active { opacity: 1; }
.hero-bg .slide.active img { transform: scale(1.06); }

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to bottom,
        rgba(1, 35, 64, 0.55) 0%,
        rgba(1, 35, 64, 0.45) 50%,
        rgba(1, 35, 64, 0.65) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 680px;
    padding: 100px 0 80px;
}

.hero-logo {
    height: 50px;
    width: auto;
    margin: 0 auto 24px;
}

.hero-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--white);
    font-size: 0.7rem; font-weight: 600;
    border-radius: 99px;
    margin-bottom: 28px;
    letter-spacing: 0.02em;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero h1 {
    font-family: 'Lato', sans-serif;
    font-size: clamp(2.6rem, 7.5vw, 4.8rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.05;
    letter-spacing: -0.045em;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.hero h1::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--yellow);
    border-radius: 2px;
    margin: 16px auto 0;
}

.hero-sub {
    font-size: clamp(0.92rem, 1.5vw, 1.1rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    max-width: 520px;
    margin: 0 auto 36px;
}

.hero-cta {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 18px 40px;
    background: var(--yellow);
    color: var(--navy);
    font-size: 0.95rem; font-weight: 700;
    border-radius: 99px;
    transition: all var(--transition);
    box-shadow: 0 4px 24px rgba(255, 191, 53, 0.35);
}

.hero-cta-short { display: none; }

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 40px rgba(255, 191, 53, 0.5);
}

.hero-cta svg { width: 16px; height: 16px; transition: transform var(--transition); }
.hero-cta:hover svg { transform: translateX(4px); }

.hero-proof {
    margin-top: 20px;
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

.hero-proof span { font-weight: 600; color: var(--yellow); }

/* Catalogue image in hero */
.hero-catalogue {
    width: 170px;
    height: auto;
    filter: drop-shadow(0 12px 40px rgba(0,0,0,0.35));
    margin: 28px auto 0;
    animation: floatCatalogue 4s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes floatCatalogue {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-10px) rotate(-2deg); }
}

/* Catalogue in CTA */
.cta-catalogue {
    width: 150px;
    height: auto;
    filter: drop-shadow(0 8px 24px rgba(0,0,0,0.12));
    margin-bottom: 24px;
    animation: floatCatalogue 4s ease-in-out infinite;
}

/* Mobile CTA short text */
@media (max-width: 479px) {
    .hero-cta-full { display: none; }
    .hero-cta-short { display: inline; }
}

/* Slide dots */
.slide-dots {
    position: absolute;
    bottom: 32px; left: 50%; transform: translateX(-50%);
    z-index: 3;
    display: flex; gap: 8px;
}

.s-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: rgba(255,255,255,0.35);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.s-dot.active {
    background: var(--white);
    width: 28px; border-radius: 3px;
}

/* ═══════════════════════════════════════════
   STATS BAND
   ═══════════════════════════════════════════ */
.stats {
    background: var(--blue-pale);
    border-top: 1px solid rgba(0,122,194,0.08);
    border-bottom: 1px solid rgba(0,122,194,0.08);
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,122,194,0.12) 0%, transparent 65%);
    top: -120px; left: -100px;
    pointer-events: none;
}

.stats::after {
    content: '';
    position: absolute;
    width: 250px; height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,191,53,0.15) 0%, transparent 65%);
    bottom: -100px; right: -80px;
    pointer-events: none;
}

.stats-in {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.stat {
    text-align: center;
    padding: 28px 16px;
    border-bottom: 1px solid rgba(0,122,194,0.1);
}

.stat:nth-child(odd) { border-right: 1px solid rgba(0,122,194,0.1); }
.stat:nth-child(n+3) { border-bottom: none; }

.stat-ico {
    width: 32px;
    height: 32px;
    margin: 0 auto 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,122,194,0.08);
    border-radius: 10px;
    color: var(--blue);
}

.stat-ico svg {
    width: 18px;
    height: 18px;
}

.stat-num {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 600;
    color: var(--blue);
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.72rem;
    color: var(--g400);
    font-weight: 400;
    margin-top: 2px;
}

/* ═══════════════════════════════════════════
   CONFIGURATOR — 4-step wizard
   ═══════════════════════════════════════════ */
.config {
    padding: 80px 20px 100px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.config::before {
    content: '';
    position: absolute;
    width: 180px; height: 180px;
    border: 2.5px solid rgba(0,122,194,0.1);
    border-radius: 50%;
    top: 10px; right: -50px;
    pointer-events: none;
    z-index: -1;
}

.config::after {
    content: '';
    position: absolute;
    width: 90px; height: 90px;
    border: 2.5px solid rgba(255,191,53,0.18);
    border-radius: 16px;
    transform: rotate(45deg);
    bottom: 40px; left: -20px;
    pointer-events: none;
    z-index: -1;
}

.config-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px 28px 36px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0,0,0,0.04);
    position: relative;
    overflow: hidden;
}

.config-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--yellow));
    opacity: 0.5;
}

/* Progress */
.config-progress {
    display: flex; align-items: center;
    margin-bottom: 36px;
    padding: 0 4px;
}

.cp-step {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.72rem; font-weight: 500;
    color: var(--g300);
    transition: all var(--transition);
    white-space: nowrap;
}

.cp-step.active { color: var(--blue); }
.cp-step.done { color: var(--blue); }
.cp-label { display: none; }

.cp-num {
    width: 30px; height: 30px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.72rem; font-weight: 700;
    background: var(--g100); color: var(--g500);
    transition: all var(--transition);
    flex-shrink: 0;
}

.cp-step.active .cp-num { background: var(--blue); color: var(--white); box-shadow: 0 2px 12px var(--blue-glow); }
.cp-step.done .cp-num { background: var(--blue); color: var(--white); }

.cp-line {
    flex: 1; height: 2px;
    background: var(--g100);
    margin: 0 8px;
    border-radius: 2px;
    position: relative; overflow: hidden;
}

.cp-line-fill {
    position: absolute; left: 0; top: 0; bottom: 0;
    width: 0;
    background: var(--blue);
    border-radius: 2px;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.cp-line.filled .cp-line-fill { width: 100%; }

/* Steps */
.steps-wrap { position: relative; overflow: hidden; }
.step { display: none; }
.step.active { display: block; animation: stepIn 0.45s cubic-bezier(0.4, 0, 0.2, 1); }

@keyframes stepIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.step-title {
    font-family: 'Lato', sans-serif;
    font-size: 1.45rem; font-weight: 900;
    color: var(--navy);
    letter-spacing: -0.025em;
    margin-bottom: 8px;
}

.step-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--yellow);
    border-radius: 2px;
    margin-top: 8px;
}

.step-sub {
    font-size: 0.88rem; color: var(--g500);
    font-weight: 300; margin-bottom: 28px;
}

/* Style picker */
.style-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 24px;
}

.style-option {
    position: relative;
    border: 2px solid var(--g100);
    border-radius: var(--radius-sm);
    overflow: hidden; cursor: pointer;
    transition: all var(--transition);
}

.style-option:hover { border-color: rgba(0,122,194,0.15); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.style-option.selected { border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-glow), var(--shadow-sm); }

.style-option img { width: 100%; height: 120px; object-fit: cover; transition: transform 0.5s ease; }
.style-option:hover img { transform: scale(1.04); }

.style-option-label {
    padding: 12px 14px;
    font-size: 0.82rem; font-weight: 600;
    color: var(--navy);
    display: flex; align-items: center; justify-content: space-between;
}

.style-check {
    width: 22px; height: 22px;
    border: 2px solid var(--g200);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: all var(--transition);
}

.style-option.selected .style-check { background: var(--blue); border-color: var(--blue); }
.style-check svg { width: 12px; height: 12px; color: var(--white); opacity: 0; transition: all 0.2s; }
.style-option.selected .style-check svg { opacity: 1; }

/* Terrain picker */
.terrain-options { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }

.terrain-opt {
    display: flex; align-items: center; gap: 16px;
    padding: 18px 20px;
    border: 2px solid var(--g100);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition);
}

.terrain-opt:hover { border-color: rgba(0,122,194,0.15); background: var(--g50); }
.terrain-opt.selected { border-color: var(--blue); background: var(--blue-pale); box-shadow: 0 0 0 3px var(--blue-glow); }

.terrain-ico {
    width: 44px; height: 44px; border-radius: 12px;
    background: var(--g50);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition);
}

.terrain-opt.selected .terrain-ico { background: var(--blue); }
.terrain-ico svg { width: 20px; height: 20px; color: var(--g500); transition: color var(--transition); }
.terrain-opt.selected .terrain-ico svg { color: var(--white); }
.terrain-txt h4 { font-size: 0.92rem; font-weight: 600; color: var(--navy); }
.terrain-txt p { font-size: 0.78rem; color: var(--g500); font-weight: 300; }

/* Terrain location (shown when terrain = oui) */
.terrain-location {
    max-height: 0; overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, margin 0.3s ease;
    margin-top: 0;
}

.terrain-location.show {
    max-height: 200px;
    opacity: 1;
    margin-top: 4px;
    margin-bottom: 12px;
}

.terrain-loc-divider {
    display: flex; align-items: center; gap: 6px;
    font-size: 0.76rem; font-weight: 600;
    color: var(--blue);
    padding: 10px 0 16px;
    border-top: 1px dashed var(--g200);
    margin-top: 4px;
}

.terrain-loc-divider svg { color: var(--blue); flex-shrink: 0; }

/* Delivery choice */
.delivery-options {
    display: flex; flex-direction: column;
    gap: 14px; margin-bottom: 24px;
}

.delivery-opt {
    display: flex; align-items: center; gap: 16px;
    padding: 18px 20px;
    border: 2px solid var(--g100);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition);
    position: relative;
}

.delivery-opt:hover { border-color: rgba(0,122,194,0.15); background: var(--g50); }
.delivery-opt.selected { border-color: var(--blue); background: var(--blue-pale); box-shadow: 0 0 0 3px var(--blue-glow); }

.delivery-opt.reco { border-color: rgba(255,191,53,0.25); background: var(--yellow-pale); }
.delivery-opt.reco:hover { border-color: var(--yellow); }
.delivery-opt.reco.selected { border-color: var(--yellow-dark); background: var(--yellow-pale); box-shadow: 0 0 0 3px var(--yellow-glow); }

.reco-tag {
    position: absolute; top: -1px; right: 16px;
    padding: 3px 12px;
    background: var(--yellow);
    color: var(--navy);
    font-size: 0.62rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.04em;
    border-radius: 0 0 8px 8px;
}

.delivery-ico {
    width: 44px; height: 44px; border-radius: 12px;
    background: var(--g50);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition);
}

.delivery-opt.selected .delivery-ico { background: var(--blue); }
.delivery-opt.reco.selected .delivery-ico { background: var(--yellow-dark); }
.delivery-ico svg { width: 20px; height: 20px; color: var(--g500); transition: color var(--transition); }
.delivery-opt.selected .delivery-ico svg { color: var(--white); }
.delivery-txt h4 { font-size: 0.92rem; font-weight: 600; color: var(--navy); }
.delivery-txt p { font-size: 0.78rem; color: var(--g500); font-weight: 300; }

.delivery-badge {
    margin-left: auto;
    padding: 4px 12px;
    background: var(--blue-pale);
    color: var(--blue);
    font-size: 0.66rem; font-weight: 600;
    border-radius: 99px;
    flex-shrink: 0;
}

.postal-badge { background: var(--yellow-pale); color: var(--yellow-dark); }

.delivery-rush {
    display: block;
    margin-top: 4px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--green, #16a34a);
    letter-spacing: -0.01em;
}

/* Recap pills */
.step-recap {
    display: flex; flex-wrap: wrap; gap: 8px;
    margin-bottom: 18px;
}

.recap-pill {
    display: none;
    padding: 6px 14px;
    background: var(--g50);
    border: 1px solid var(--g100);
    border-radius: 99px;
    font-size: 0.72rem; font-weight: 400;
    color: var(--g500);
}

.recap-pill strong {
    font-weight: 600;
    color: var(--g700);
}

.recap-pill.show { display: inline-flex; align-items: center; gap: 5px; }
.recap-pill::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--blue); flex-shrink: 0; }
.recap-pill.recap-delivery::before { background: var(--yellow-dark); }

/* HONEYPOT — invisible to humans, visible to bots */
.field-hp {
    position: absolute;
    left: -9999px;
    top: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

/* FORM FIELDS — LARGER */
.field { margin-bottom: 18px; }
.field label {
    display: block;
    font-size: 0.8rem; font-weight: 500;
    color: var(--g600);
    margin-bottom: 6px;
}

.field input {
    width: 100%;
    padding: 16px 18px;
    background: var(--g50);
    border: 1.5px solid transparent;
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--g800);
    outline: none;
    transition: all 0.25s ease;
    -webkit-appearance: none;
}

.field input::placeholder { color: var(--g300); }
.field input:focus { background: var(--white); border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-glow); }

.field input.touched:valid { border-color: #22c55e; }
.field input.touched:invalid:not(:placeholder-shown) { border-color: #ef4444; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* Address fields */
.address-fields {
    max-height: 0; overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, margin 0.3s ease;
    margin-top: 0;
}

.address-fields.show {
    max-height: 300px;
    opacity: 1;
    margin-top: 4px;
}

.address-divider {
    display: flex; align-items: center; gap: 6px;
    font-size: 0.76rem; font-weight: 600;
    color: var(--blue);
    padding: 10px 0 16px;
    border-top: 1px dashed var(--g200);
    margin-top: 4px;
}

.address-divider svg { color: var(--blue); flex-shrink: 0; }

/* Consent */
.consent { display: flex; align-items: flex-start; gap: 10px; margin: 22px 0 26px; }
.consent input[type="checkbox"] { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--blue); flex-shrink: 0; cursor: pointer; }
.consent label { font-size: 0.74rem; color: var(--g500); line-height: 1.5; cursor: pointer; }
.consent a { color: var(--blue); text-decoration: underline; }

/* BUTTONS — LARGER */
.btn-next {
    width: 100%; padding: 16px;
    background: var(--blue); color: var(--white);
    font-size: 0.95rem; font-weight: 600;
    border-radius: 12px;
    transition: all var(--transition);
}

.btn-next:hover:not(:disabled) { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 4px 20px var(--blue-glow); }
.btn-next:disabled { opacity: 0.35; cursor: not-allowed; }

.btn-row { display: flex; gap: 12px; }

.btn-back {
    display: flex; align-items: center; gap: 4px;
    padding: 16px 20px;
    background: var(--g50); color: var(--g600);
    font-size: 0.88rem; font-weight: 500;
    border-radius: 12px;
    transition: all var(--transition);
    flex-shrink: 0;
}

.btn-back svg { flex-shrink: 0; }
.btn-back:hover { background: var(--g100); }

.btn-submit {
    flex: 1; padding: 18px 24px;
    background: var(--blue); color: var(--white);
    font-size: 1rem; font-weight: 700;
    border-radius: 12px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-submit:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 4px 20px var(--blue-glow); }

.btn-submit.loading .btn-submit-text { opacity: 0; }
.btn-submit.loading .btn-submit-loader { opacity: 1; }

.btn-submit-loader {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    transition: opacity 0.2s;
}

.btn-submit-loader::after {
    content: '';
    width: 22px; height: 22px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

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

/* Form trust */
.form-trust {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 16px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--g100);
}

.form-trust span {
    display: flex; align-items: center; gap: 5px;
    font-size: 0.68rem; color: var(--g400);
    font-weight: 400;
}

.form-trust svg { width: 13px; height: 13px; flex-shrink: 0; }

.config-social-proof {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    margin-top: 20px;
    padding: 10px 16px;
    background: var(--blue-pale);
    border-radius: 10px;
    font-size: 0.72rem;
    color: var(--g600);
}

.config-social-proof svg {
    width: 16px; height: 16px;
    stroke: var(--blue);
    flex-shrink: 0;
}

.config-social-proof strong {
    color: var(--blue-dark);
    font-weight: 700;
}

/* ═══════════════════════════════════════════
   SUCCESS STATE
   ═══════════════════════════════════════════ */
.form-ok { display: none; text-align: center; padding: 48px 20px 40px; position: relative; }
.form-ok.show { display: block; animation: fadeUp 0.5s ease; }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

.ok-confetti {
    position: absolute; top: 0; left: 0; right: 0;
    height: 120px; pointer-events: none; overflow: hidden;
}

.confetti-piece {
    position: absolute; top: -10px;
    width: 8px; height: 8px;
    border-radius: 2px;
    animation: confettiFall 2.5s ease-out forwards;
}

@keyframes confettiFall {
    0% { transform: translateY(0) rotate(0deg); opacity: 1; }
    100% { transform: translateY(150px) rotate(720deg); opacity: 0; }
}

.ok-ico {
    width: 72px; height: 72px;
    background: var(--blue-pale);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px;
    animation: okBounce 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

@keyframes okBounce {
    0% { transform: scale(0); }
    60% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

.ok-ico svg { width: 30px; height: 30px; color: var(--blue); }
.form-ok h3 { font-size: 1.3rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.form-ok p { font-size: 0.9rem; color: var(--g500); line-height: 1.7; max-width: 420px; margin: 0 auto; }
.ok-catalogue-btn { margin-top: 24px; font-size: 1.05rem; padding: 16px 36px; border-radius: 50px; font-weight: 700; animation: pulse 2s ease-in-out infinite; }

/* ═══════════════════════════════════════════
   WHY US
   ═══════════════════════════════════════════ */
.why {
    padding: 120px 24px;
    background: linear-gradient(rgba(1, 35, 64, 0.85), rgba(1, 35, 64, 0.9)), url('img/droneentreprise.webp') center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

.why::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,122,194,0.25) 0%, transparent 55%);
    top: -200px; right: -200px;
    pointer-events: none;
}

.why::after {
    content: '';
    position: absolute;
    width: 450px; height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,191,53,0.12) 0%, transparent 55%);
    bottom: -150px; left: -120px;
    pointer-events: none;
}

.why .section-title { color: var(--white); }
.why .section-sub { color: rgba(255,255,255,0.5); }

.why-wrap {
    max-width: 1000px;
    position: relative;
    z-index: 1;
    margin: 0 auto;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 48px;
}

.why-card {
    text-align: center;
    padding: 32px 24px;
    background: rgba(1, 35, 64, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius);
    transition: all 0.4s ease;
}

.why-card:hover {
    background: rgba(1, 35, 64, 0.85);
    transform: translateY(-4px);
}

.why-ico {
    width: 56px; height: 56px;
    border-radius: 16px;
    background: rgba(0,122,194,0.2);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
}

.why-ico svg { width: 24px; height: 24px; color: var(--yellow); }

.why-card h3 {
    font-family: 'Lato', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.why-card p {
    font-size: 0.86rem;
    color: rgba(255,255,255,0.55);
    font-weight: 300;
    line-height: 1.7;
    max-width: 300px;
    margin: 0 auto;
}

/* ═══════════════════════════════════════════
   TESTIMONIALS — Masonry layout
   ═══════════════════════════════════════════ */
.reviews {
    padding: 120px 24px;
    background: var(--yellow-pale);
    position: relative;
    overflow: hidden;
}

.reviews::before {
    content: '\201C';
    position: absolute;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 32rem;
    line-height: 1;
    color: rgba(255, 191, 53, 0.15);
    top: -80px; left: -30px;
    pointer-events: none;
}

.reviews::after {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    border: 3px solid rgba(255, 191, 53, 0.15);
    border-radius: 50%;
    bottom: -200px; right: -150px;
    pointer-events: none;
}

.reviews-wrap {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.reviews-masonry {
    display: flex;
    flex-direction: column;
    gap: 28px;
    max-width: 900px;
    margin: 0 auto;
}

.review-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(1, 35, 64, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.review-photo {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.review-body {
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(1, 35, 64, 0.12);
}

.review-quote-mark {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 3.5rem;
    line-height: 1;
    color: var(--yellow-dark);
    opacity: 0.6;
    margin-bottom: -8px;
}

.review-quote {
    font-size: 0.95rem;
    color: var(--g700);
    line-height: 1.85;
    font-weight: 400;
    margin-bottom: 24px;
    flex: 1;
    font-style: italic;
}

.review-footer {
    border-top: 1px solid var(--g100);
    padding-top: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.review-stars {
    font-size: 0.72rem;
    color: var(--yellow-dark);
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.review-author { display: flex; align-items: center; gap: 8px; }
.review-name { font-size: 0.82rem; font-weight: 600; color: var(--navy); }
.review-sep { color: var(--g300); font-size: 0.7rem; }
.review-src { font-size: 0.74rem; color: var(--g400); }

/* ═══════════════════════════════════════════
   GALLERY
   ═══════════════════════════════════════════ */
.gallery {
    padding: 120px 24px;
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

.gallery::before {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,122,194,0.08) 0%, transparent 60%);
    top: -150px; right: -150px;
    pointer-events: none;
}

.gallery::after {
    content: '';
    position: absolute;
    width: 120px; height: 120px;
    border: 3px solid rgba(0,122,194,0.12);
    border-radius: 20px;
    transform: rotate(45deg);
    bottom: 80px; left: 30px;
    pointer-events: none;
}

.gallery-wrap {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--white);
    transition: all 0.4s ease;
    aspect-ratio: 3 / 2;
}

.gallery-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--blue-pale);
}

.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
    image-rendering: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.gallery-item:hover img { transform: scale(1.04); }

.gallery-label {
    position: absolute;
    bottom: 12px; left: 12px;
    padding: 5px 12px;
    background: rgba(1, 35, 64, 0.75);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: var(--white);
    font-size: 0.68rem;
    font-weight: 500;
    border-radius: 8px;
    letter-spacing: 0.01em;
}

.gallery-item { position: relative; }

/* ═══════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════ */
.cta-section {
    padding: 0 24px 120px;
}

.cta-card {
    max-width: 900px;
    margin: 0 auto;
    background: var(--blue-pale);
    border-radius: var(--radius-xl);
    padding: 72px 32px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    width: 350px; height: 350px;
    border: 3px solid rgba(0, 122, 194, 0.12);
    border-radius: 50%;
    top: -140px; right: -100px;
    pointer-events: none;
}

.cta-card::after {
    content: '';
    position: absolute;
    width: 250px; height: 250px;
    border: 3px solid rgba(0, 122, 194, 0.1);
    border-radius: 50%;
    bottom: -100px; left: -80px;
    pointer-events: none;
}

.cta-card h2 {
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.035em;
    line-height: 1.15;
    margin-bottom: 28px;
}

.cta-card h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--yellow);
    border-radius: 2px;
    margin: 12px auto 0;
}

.cta-checklist {
    display: inline-flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
    margin-bottom: 36px;
}

.cta-check {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--g700);
    font-weight: 400;
}

.cta-check svg {
    width: 18px; height: 18px;
    color: var(--blue);
    flex-shrink: 0;
}

.cta-btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 18px 40px;
    background: var(--yellow);
    color: var(--navy);
    font-family: inherit;
    font-size: 0.95rem; font-weight: 700;
    border-radius: 99px;
    transition: all var(--transition);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255,191,53,0.3);
}

.cta-btn svg { width: 16px; height: 16px; transition: transform var(--transition); }
.cta-btn:hover svg { transform: translateX(4px); }

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
    padding: 48px 24px;
    border-top: 1px solid var(--g100);
}

.footer-in {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo { height: 22px; width: auto; opacity: 0.4; margin: 0 auto 20px; }

.footer-links {
    display: flex; justify-content: center; gap: 24px; flex-wrap: wrap;
    margin-bottom: 16px;
}

.footer-links a {
    font-size: 0.74rem; color: var(--g400);
    transition: color var(--transition);
}

.footer-links a:hover { color: var(--navy); }

.footer-copy { font-size: 0.64rem; color: var(--g300); }

/* ═══════════════════════════════════════════
   MOBILE STICKY
   ═══════════════════════════════════════════ */
.sticky {
    position: fixed; bottom: 0; left: 0; right: 0;
    padding: 12px 16px;
    padding-bottom: constant(safe-area-inset-bottom);
    padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    background: rgba(255,255,255,0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--g100);
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sticky.show { transform: translateY(0); }

.sticky a {
    display: block; padding: 16px;
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: var(--white);
    font-size: 0.92rem; font-weight: 600;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 122, 194, 0.35);
    animation: stickyPulse 2.5s ease-in-out infinite;
}

@keyframes stickyPulse {
    0%, 100% { box-shadow: 0 4px 16px rgba(0, 122, 194, 0.35); }
    50% { box-shadow: 0 4px 24px rgba(0, 122, 194, 0.55); }
}

/* ═══════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════ */
.anim {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.anim.seen {
    opacity: 1;
    transform: translateY(0);
}

.gallery, .cta-section { content-visibility: auto; }

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .anim { opacity: 1; transform: none; transition: none; }
    .sticky a { animation: none; }
    .slide { transition: none !important; }
    html { scroll-behavior: auto; }
}

/* ═══════════════════════════════════════════
   DECORATIVE ELEMENTS
   ═══════════════════════════════════════════ */
.deco {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    display: none;
}

@media (min-width: 768px) {
    .deco { display: block; }
}

/* --- House silhouette --- */
.deco-house {
    width: 80px; height: 80px;
    background-color: currentColor;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M12 3L2 12h3v8h6v-6h2v6h6v-8h3L12 3z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M12 3L2 12h3v8h6v-6h2v6h6v-8h3L12 3z'/%3E%3C/svg%3E");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    opacity: 0.1;
}

/* --- Key silhouette (clé sur porte) --- */
.deco-key {
    width: 50px; height: 50px;
    background-color: currentColor;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M12.65 10a6 6 0 1 0-1.3 0H7v2h1v2h2v-2h1.35A6 6 0 0 0 17 16a6 6 0 0 0 0-12 6 6 0 0 0-4.35 6zM17 8a2 2 0 1 1 0 4 2 2 0 0 1 0-4z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M12.65 10a6 6 0 1 0-1.3 0H7v2h1v2h2v-2h1.35A6 6 0 0 0 17 16a6 6 0 0 0 0-12 6 6 0 0 0-4.35 6zM17 8a2 2 0 1 1 0 4 2 2 0 0 1 0-4z'/%3E%3C/svg%3E");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    opacity: 0.12;
}

/* --- Roof / triangle --- */
.deco-roof {
    width: 60px; height: 40px;
    background-color: currentColor;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 14' fill='currentColor'%3E%3Cpath d='M12 0L0 14h24L12 0z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 14' fill='currentColor'%3E%3Cpath d='M12 0L0 14h24L12 0z'/%3E%3C/svg%3E");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    opacity: 0.12;
}

/* --- Brick pattern --- */
.deco-brick {
    width: 90px; height: 60px;
    background-color: currentColor;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 40' fill='currentColor'%3E%3Crect x='1' y='1' width='28' height='11' rx='2'/%3E%3Crect x='31' y='1' width='28' height='11' rx='2'/%3E%3Crect x='15' y='14' width='28' height='11' rx='2'/%3E%3Crect x='45' y='14' width='14' height='11' rx='2'/%3E%3Crect x='1' y='14' width='12' height='11' rx='2'/%3E%3Crect x='1' y='27' width='28' height='11' rx='2'/%3E%3Crect x='31' y='27' width='28' height='11' rx='2'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 40' fill='currentColor'%3E%3Crect x='1' y='1' width='28' height='11' rx='2'/%3E%3Crect x='31' y='1' width='28' height='11' rx='2'/%3E%3Crect x='15' y='14' width='28' height='11' rx='2'/%3E%3Crect x='45' y='14' width='14' height='11' rx='2'/%3E%3Crect x='1' y='14' width='12' height='11' rx='2'/%3E%3Crect x='1' y='27' width='28' height='11' rx='2'/%3E%3Crect x='31' y='27' width='28' height='11' rx='2'/%3E%3C/svg%3E");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    opacity: 0.1;
}

/* --- Window --- */
.deco-window {
    width: 30px; height: 36px;
    background-color: currentColor;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 24' fill='currentColor'%3E%3Crect x='1' y='1' width='18' height='22' rx='2' fill='none' stroke='currentColor' stroke-width='2'/%3E%3Cline x1='10' y1='1' x2='10' y2='23' stroke='currentColor' stroke-width='1.5'/%3E%3Cline x1='1' y1='12' x2='19' y2='12' stroke='currentColor' stroke-width='1.5'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 24' fill='currentColor'%3E%3Crect x='1' y='1' width='18' height='22' rx='2' fill='none' stroke='currentColor' stroke-width='2'/%3E%3Cline x1='10' y1='1' x2='10' y2='23' stroke='currentColor' stroke-width='1.5'/%3E%3Cline x1='1' y1='12' x2='19' y2='12' stroke='currentColor' stroke-width='1.5'/%3E%3C/svg%3E");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    opacity: 0.15;
}

/* --- Blueprint grid --- */
.deco-blueprint {
    width: 100px; height: 100px;
    background-color: currentColor;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 60'%3E%3Cdefs%3E%3Cpattern id='g' patternUnits='userSpaceOnUse' width='15' height='15'%3E%3Cpath d='M15 0v15H0' fill='none' stroke='%23000' stroke-width='0.8'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='60' height='60' fill='url(%23g)'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 60'%3E%3Cdefs%3E%3Cpattern id='g' patternUnits='userSpaceOnUse' width='15' height='15'%3E%3Cpath d='M15 0v15H0' fill='none' stroke='%23000' stroke-width='0.8'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='60' height='60' fill='url(%23g)'/%3E%3C/svg%3E");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    opacity: 0.12;
}

/* ---- Stats positions ---- */
.deco-stats-house {
    color: var(--blue);
    top: 8px; right: 16px;
    width: 60px; height: 60px;
}

.deco-stats-key {
    color: var(--yellow);
    width: 40px; height: 40px;
    bottom: 8px; left: 32px;
}

/* ---- Why Us positions (navy bg) ---- */
.deco-why-blueprint {
    color: rgba(255,255,255,0.15);
    top: 60px; left: 24px;
    width: 100px; height: 100px;
}

.deco-why-key {
    color: var(--yellow);
    width: 45px; height: 45px;
    opacity: 0.18;
    bottom: 80px; right: 40px;
}

.deco-why-house {
    color: var(--blue-light);
    width: 140px; height: 140px;
    opacity: 0.06;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}

/* ---- Reviews positions (yellow bg) ---- */
.deco-reviews-brick {
    color: var(--yellow-dark);
    bottom: 40px; right: 24px;
    width: 90px; height: 60px;
    opacity: 0.1;
}

.deco-reviews-roof {
    color: var(--yellow-dark);
    width: 55px; height: 36px;
    opacity: 0.1;
    top: 50px; left: 50%;
}

.deco-reviews-window {
    color: var(--yellow-dark);
    top: 100px; right: 60px;
    width: 28px; height: 34px;
    opacity: 0.12;
}

/* ---- Gallery positions ---- */
.deco-gallery-house {
    color: var(--blue);
    bottom: 50px; right: 30px;
    width: 70px; height: 70px;
    opacity: 0.08;
}

.deco-gallery-roof {
    color: var(--blue);
    width: 50px; height: 32px;
    opacity: 0.1;
    top: 70px; left: 30px;
}

/* ═══════════════════════════════════════════
   RESPONSIVE — Tablet
   ═══════════════════════════════════════════ */
@media (min-width: 480px) {
    .cp-label { display: inline; }
    .style-option img { height: 130px; }
}

@media (min-width: 768px) {
    .hd-in { padding: 0 40px; justify-content: space-between; }
    .hd-btn { display: inline-block; }
    .lg { height: 32px; }

    .hero { padding: 0 40px; }
    .hero-content {
        padding: 120px 0 100px;
        display: flex;
        align-items: center;
        gap: 40px;
        text-align: left;
        max-width: 960px;
    }
    .hero-text { flex: 1; }
    .hero-logo { height: 60px; margin: 0 0 24px; }
    .hero h1 { margin-bottom: 24px; }
    .hero h1::after { margin: 16px 0 0; }
    .hero-catalogue { width: 220px; margin: 0; }
    .cta-catalogue { width: 180px; }

    .stats-in { grid-template-columns: repeat(4, 1fr); }
    .stat { padding: 36px 20px; border-bottom: none; border-right: 1px solid rgba(0,122,194,0.1); }
    .stat:last-child { border-right: none; }
    .stat:nth-child(odd) { border-right: 1px solid rgba(0,122,194,0.1); }

    .config { max-width: 860px; padding: 80px 40px 100px; }
    .config-card { padding: 48px 44px 44px; border-radius: var(--radius-xl); }
    .style-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .style-option img { height: 180px; }

    .why { padding: 140px 40px; }
    .why-grid { grid-template-columns: repeat(3, 1fr); gap: 40px; }

    .reviews { padding: 140px 40px; }
    .review-card { flex-direction: row; }
    .review-photo { width: 45%; aspect-ratio: auto; min-height: 280px; }
    .review-body { width: 55%; padding: 36px 32px; justify-content: center; }

    .gallery { padding: 140px 40px; }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }

    .cta-section { padding: 0 40px 140px; }
    .cta-card { padding: 96px 48px; }

    .sticky { display: none; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — Desktop
   ═══════════════════════════════════════════ */
@media (min-width: 1024px) {
    .hero { padding: 0 48px; }
    .hero-content { max-width: 1000px; padding: 140px 0 120px; gap: 56px; }
    .hero-logo { height: 64px; margin: 0 0 24px; }
    .hero h1 { font-size: 4.2rem; }
    .hero-sub { font-size: 1.1rem; }
    .hero-catalogue { width: 280px; }
    .cta-catalogue { width: 200px; }

    .stats-in { max-width: 1000px; }
    .stat { padding: 44px 24px; }

    .config { max-width: 900px; }
    .config-card { padding: 56px 60px 52px; }
    .style-option img { height: 220px; }

    .why { padding: 160px 48px; }

    .reviews { padding: 160px 48px; }
    .reviews-masonry { gap: 32px; }
    .review-photo { min-height: 320px; }

    .gallery { padding: 160px 48px; }
    .gallery-grid { gap: 16px; }

    .cta-section { padding: 0 48px 160px; }
    .cta-card { padding: 100px 56px; border-radius: 40px; }
}

/* ═══════════════════════════════════════════
   FAQ SECTION
   ═══════════════════════════════════════════ */
.faq {
    padding: 80px 20px;
    background: var(--white);
    overflow: hidden;
}

.faq-wrap {
    max-width: 720px;
    margin: 0 auto;
}

.faq-list {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg);
    border: 1px solid var(--g100);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: border-color var(--transition);
}

.faq-item[open] {
    border-color: var(--blue);
}

.faq-item summary {
    padding: 18px 20px;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--g800);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

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

.faq-item summary::after {
    content: '+';
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--blue);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item p {
    padding: 0 20px 18px;
    font-size: 0.84rem;
    color: var(--g500);
    line-height: 1.7;
}

@media (min-width: 768px) {
    .faq { padding: 120px 40px; }
}

/* ═══════════════════════════════════════════
   FOMO TOAST
   ═══════════════════════════════════════════ */
/* ═══════════════════════════════════════════
   EXIT-INTENT POPUP
   ═══════════════════════════════════════════ */
.exit-overlay {
    position: fixed;
    inset: 0;
    background: rgba(1, 35, 64, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.exit-overlay.show {
    opacity: 1;
    visibility: visible;
}

.exit-popup {
    background: var(--white);
    border-radius: var(--radius-lg);
    max-width: 440px;
    width: 100%;
    position: relative;
    padding: 48px 32px 36px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.exit-overlay.show .exit-popup {
    transform: scale(1) translateY(0);
}

.exit-close {
    position: absolute;
    top: 12px; right: 16px;
    background: none;
    font-size: 1.8rem;
    color: var(--g400);
    line-height: 1;
    padding: 4px;
    transition: color 0.2s;
}

.exit-close:hover { color: var(--g700); }

.exit-content { text-align: center; }

.exit-ico {
    width: 56px; height: 56px;
    background: var(--blue-pale);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
}

.exit-ico svg {
    width: 28px; height: 28px;
    stroke: var(--blue);
}

.exit-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.exit-content p {
    font-size: 0.88rem;
    color: var(--g500);
    line-height: 1.6;
    margin-bottom: 24px;
}

.exit-cta {
    display: block;
    padding: 16px;
    background: var(--blue);
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 12px;
    text-align: center;
    transition: background 0.3s;
}

.exit-cta:hover { background: var(--blue-dark); }

.exit-sub {
    display: block;
    margin-top: 12px;
    font-size: 0.68rem;
    color: var(--g400);
}

/* ═══════════════════════════════════════════
   COOKIE CONSENT POPUP
   ═══════════════════════════════════════════ */
.cookie-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.cookie-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.cookie-popup {
    background: var(--white);
    border-radius: var(--radius-lg);
    max-width: 440px;
    width: 100%;
    padding: 36px 32px 28px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    transform: scale(1);
    transition: transform 0.3s ease;
}

.cookie-overlay.hidden .cookie-popup {
    transform: scale(0.95);
}

.cookie-ico {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: #f0f7ee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.cookie-popup h3 {
    font-family: 'Lato', sans-serif;
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--navy);
    margin: 0 0 8px;
}

.cookie-popup p {
    font-size: 0.85rem;
    color: var(--g500);
    line-height: 1.55;
    margin: 0 0 24px;
}

.cookie-popup a {
    color: var(--blue);
    text-decoration: underline;
}

.cookie-btn-accept {
    display: block;
    width: 100%;
    background: #2eac4e;
    color: var(--white);
    border: none;
    padding: 16px 32px;
    border-radius: var(--radius-xs);
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 4px 16px rgba(46, 172, 78, 0.35);
    margin-bottom: 12px;
}

.cookie-btn-accept:hover {
    background: #259b42;
    transform: scale(1.02);
}

.cookie-btn-refuse {
    display: block;
    width: 100%;
    background: transparent;
    color: var(--g500);
    border: 1px solid var(--g300);
    padding: 14px 32px;
    border-radius: var(--radius-xs);
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
}

.cookie-btn-refuse:hover {
    color: var(--navy);
    border-color: var(--navy);
}

/* ═══════════════════════════════════════════
   CONTACT FAB (WhatsApp + Phone)
   ═══════════════════════════════════════════ */
