/* ============================================
   KLATEM — Premium Homepage 2026
   Mesh gradients · Glassmorphism · Bento grid
   3D tilt · Marquee · Grain texture · Glow CTAs
   Mobile-first · Scroll reveal
   ============================================ */

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

:root {
    /* Colors */
    --black: #0a0a0a;
    --white: #fff;
    --off: #faf9f7;
    --g50: #f5f4f1;
    --g100: #eae9e5;
    --g200: #d5d4d0;
    --g300: #b0afab;
    --g400: #8a8985;
    --g500: #64635f;
    --g600: #3e3d3a;
    --accent: #ffe603;
    --accent-dark: #d4bf00;
    --accent-soft: #fff9b0;
    --accent-glow: rgba(255,230,3,.25);
    --accent-text: #bfad00;
    --green: #34d399;

    /* Layout */
    --max-w: 1200px;
    --gap: clamp(20px,5vw,40px);
    --section: clamp(80px,12vw,160px);
    --r: 16px;
    --r-sm: 10px;
    --r-xl: 24px;

    /* Effects */
    --ease: cubic-bezier(.4,0,.2,1);
    --glass-bg: rgba(255,255,255,.55);
    --glass-border: rgba(255,255,255,.25);
    --glass-blur: 16px;
    --shadow: 0 8px 32px rgba(0,0,0,.08);
    --shadow-lg: 0 24px 64px rgba(0,0,0,.12);
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--black);
    background: var(--white);
    line-height: 1.65;
}

img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
ul{list-style:none}
em{font-family:'Playfair Display',Georgia,serif;font-style:italic;font-weight:700}

.container{width:100%;max-width:var(--max-w);margin:0 auto;padding:0 var(--gap)}


/* ============================================
   GRAIN TEXTURE OVERLAY
   ============================================ */
.grain {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: .035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 180px;
}


/* ============================================
   OVERLINE (reusable label)
   ============================================ */
.overline {
    display: inline-block;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--g400);
    margin-bottom: 12px;
    padding: 6px 16px;
    border: 1px solid var(--g200);
    border-radius: 100px;
}
.overline--light {
    border-color: rgba(255,255,255,.2);
    color: rgba(255,255,255,.6);
}


/* ============================================
   SECTION HEADER
   ============================================ */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto clamp(48px,7vw,80px);
}
.section-header h2 {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1.1;
    margin-bottom: 16px;
}
.section-header p {
    font-size: clamp(.92rem,1.3vw,1.05rem);
    color: var(--g400);
    line-height: 1.7;
}


/* ============================================
   GLASSMORPHISM BASE
   ============================================ */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
}
.glass-card {
    background: rgba(255,255,255,.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.35);
    box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.6);
}


/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: inherit;
    font-weight: 600;
    font-size: .92rem;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: all .35s var(--ease);
    white-space: nowrap;
    text-decoration: none;
    padding: 14px 32px;
    position: relative;
    overflow: hidden;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; transition: transform .3s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

/* Glow button */
.btn--glow {
    background: var(--black);
    color: var(--white);
    box-shadow: 0 0 0 0 rgba(10,10,10,.3);
}
.btn--glow:hover {
    box-shadow: 0 4px 24px rgba(10,10,10,.35), 0 0 60px var(--accent-glow);
    transform: translateY(-2px);
}
.btn--glow::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255,230,3,.25), transparent 50%, rgba(255,230,3,.12));
    opacity: 0;
    transition: opacity .4s;
    z-index: -1;
}
.btn--glow:hover::after { opacity: 1; }

/* Glass button */
.btn--glass {
    background: rgba(255,255,255,.12);
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,.25);
    backdrop-filter: blur(10px);
}
.btn--glass:hover {
    background: rgba(255,255,255,.2);
    border-color: rgba(255,255,255,.5);
    transform: translateY(-2px);
}

/* Dark button */
.btn--dark {
    background: var(--black);
    color: var(--white);
}
.btn--dark:hover { box-shadow: 0 4px 20px rgba(10,10,10,.3); transform: translateY(-2px); }

/* Outline */
.btn--outline {
    background: transparent;
    color: var(--black);
    border: 1.5px solid var(--g200);
}
.btn--outline:hover { border-color: var(--black); background: var(--g50); }

.btn--lg { padding: 18px 44px; font-size: 1rem; }
.btn--full { width: 100%; }
.btn--success { background: #16a34a !important; box-shadow: 0 0 30px rgba(22,163,74,.3) !important; }

/* Spinner */
.btn-spinner {
    display: inline-block;
    width: 18px; height: 18px;
    border: 2px solid rgba(255,255,255,.3);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin .6s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }


/* ============================================
   HEADER
   ============================================ */
/* ---- Header ---- */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 14px var(--gap) 0;
    transition: padding .4s var(--ease);
}
.header.is-scrolled { padding-top: 10px; }

.header__nav {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
    padding: 0 8px 0 16px;
    background: rgba(10,10,10,.55);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 100px;
    transition: all .4s var(--ease);
}
.header.is-scrolled .header__nav {
    background: rgba(255,255,255,.88);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-color: rgba(0,0,0,.06);
    box-shadow: 0 4px 24px rgba(0,0,0,.06);
}

/* Logo */
.header__logo {
    display: flex;
    align-items: center;
}
.header__logo-img {
    height: 36px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: filter .3s;
}
.header.is-scrolled .header__logo-img {
    filter: none;
}

/* Nav links */
.header__links {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
}
.header__links a {
    font-size: .82rem;
    font-weight: 500;
    color: rgba(255,255,255,.75);
    transition: all .2s;
    position: relative;
    padding: 8px 14px;
    border-radius: 100px;
    text-decoration: none;
}
.header__links a::after { display: none; }
.header__links a:hover {
    color: var(--white);
    background: rgba(255,255,255,.1);
}
.header.is-scrolled .header__links a { color: var(--g500); }
.header.is-scrolled .header__links a:hover {
    color: var(--black);
    background: rgba(0,0,0,.05);
}

/* Nav dropdown */
.header__dropdown {
    position: relative;
}
.header__dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: .82rem;
    font-weight: 500;
    color: rgba(255,255,255,.75);
    transition: all .2s;
    padding: 8px 14px;
    border-radius: 100px;
}
.header__dropdown-trigger:hover {
    color: var(--white);
    background: rgba(255,255,255,.1);
}
.header.is-scrolled .header__dropdown-trigger { color: var(--g500); }
.header.is-scrolled .header__dropdown-trigger:hover {
    color: var(--black);
    background: rgba(0,0,0,.05);
}
.header__dropdown-arrow {
    width: 14px;
    height: 14px;
    transition: transform .3s var(--ease);
}
.header__dropdown.is-open .header__dropdown-arrow {
    transform: rotate(180deg);
}
.header__dropdown-menu {
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 280px;
    background: var(--white);
    border-radius: var(--r);
    box-shadow: 0 20px 60px rgba(0,0,0,.15), 0 0 0 1px rgba(0,0,0,.05);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
}
.header__dropdown.is-open .header__dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.header__dropdown-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 12px;
    border-radius: calc(var(--r) - 4px);
    transition: background .2s;
    text-decoration: none;
}
.header__dropdown-item:hover {
    background: var(--g50);
}
.header__dropdown-item::after { display: none !important; }
.header__dropdown-item img {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}
.header__dropdown-item div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.header__dropdown-item strong {
    font-size: .84rem;
    font-weight: 600;
    color: var(--black);
}
.header__dropdown-item span {
    font-size: .74rem;
    color: var(--g400);
    font-weight: 500;
}

/* Nav CTA */
.header__cta {
    display: flex !important;
    align-items: center;
    gap: 8px;
    background: var(--accent) !important;
    color: var(--black) !important;
    padding: 9px 20px !important;
    border-radius: 100px;
    font-weight: 600 !important;
    font-size: .8rem !important;
    transition: all .2s var(--ease) !important;
}
.header__cta::after { display: none !important; }
.header.is-scrolled .header__cta {
    background: var(--black) !important;
    color: var(--white) !important;
}
.header__cta:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 16px rgba(0,0,0,.15) !important;
    background: var(--accent) !important;
}

.cta-dot {
    width: 6px; height: 6px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
    0%,100% { box-shadow: 0 0 0 0 rgba(52,211,153,.5); }
    50% { box-shadow: 0 0 0 6px rgba(52,211,153,0); }
}

/* Mobile toggle */
.header__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none; border: none; cursor: pointer;
    padding: 8px; z-index: 1001;
}
.header__toggle span {
    display: block; width: 22px; height: 2px;
    background: var(--white); border-radius: 2px;
    transition: all .3s var(--ease);
}
.header.is-scrolled .header__toggle span { background: var(--black); }
.header__toggle.is-open span { background: var(--white) !important; }
.header__toggle.is-open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.header__toggle.is-open span:nth-child(2) { opacity: 0; }
.header__toggle.is-open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

@media(max-width:900px){
    .header{padding:10px 12px 0}
    .header__nav{height:50px;padding:0 6px 0 14px}
    .header__toggle{display:flex}
    .header__links{
        position:fixed;top:0;left:0;right:0;width:100%;height:100dvh;
        background:rgba(10,10,10,.97);backdrop-filter:blur(30px);
        flex-direction:column;justify-content:center;align-items:center;gap:8px;
        border-radius:0;border:none;
        padding:0 24px;
        opacity:0;visibility:hidden;
        transition:opacity .35s var(--ease),visibility 0s .35s;
    }
    .header__links.is-open{opacity:1;visibility:visible;transition:opacity .35s var(--ease),visibility 0s}
    .header__links > li{width:100%;max-width:360px}
    .header__links a{
        font-size:1.1rem;color:var(--white)!important;background:none!important;
        padding:14px 20px;border-radius:12px;
        transition:background .2s;
    }
    .header__links a:hover{background:rgba(255,255,255,.08)!important}
    .header__links .header__cta{
        margin-top:20px;padding:16px 32px!important;font-size:1.05rem!important;
        background:var(--accent)!important;color:var(--black)!important;
        border-radius:100px;font-weight:700!important;
        width:100%;max-width:360px;justify-content:center;
        box-shadow:0 0 24px rgba(255,230,3,.3);
    }
    /* Dropdown mobile */
    .header__dropdown{width:100%;max-width:360px}
    .header__dropdown-trigger{
        font-size:1.1rem;color:var(--white)!important;background:none!important;
        padding:14px 20px;border-radius:12px;width:100%;
        transition:background .2s;
    }
    .header__dropdown-trigger:hover{background:rgba(255,255,255,.08)!important}
    .header__dropdown-menu{
        position:static;
        transform:none;
        min-width:0;
        width:100%;
        background:rgba(255,255,255,.1);
        box-shadow:none;
        border-radius:16px;
        padding:6px;
        margin-top:8px;
        opacity:0;
        max-height:0;
        overflow:hidden;
        visibility:hidden;
        pointer-events:none;
        transition:opacity .3s,max-height .4s var(--ease),margin .3s,visibility .3s;
    }
    .header__dropdown.is-open .header__dropdown-menu{
        opacity:1;
        max-height:400px;
        visibility:visible;
        pointer-events:auto;
        transform:none;
    }
    .header__dropdown-item{padding:10px 12px;border-radius:12px}
    .header__dropdown-item:hover{background:rgba(255,255,255,.1)}
    .header__dropdown-item strong{color:var(--white);font-size:.9rem}
    .header__dropdown-item span{color:rgba(255,255,255,.7)}
    .header__dropdown-item img{
        width:48px;height:48px;border-radius:10px;
        border:1px solid rgba(255,255,255,.12);
    }
}


/* ============================================
   HERO — Floating photo card layout
   ============================================ */
.hero {
    position: relative;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background: var(--black);
}

/* Mesh gradient (no photo in bg anymore) */
.hero__mesh {
    position: absolute;
    inset: -50%;
    background:
        radial-gradient(ellipse 60% 50% at 10% 50%, rgba(255,230,3,.08) 0%, transparent 60%),
        radial-gradient(ellipse 50% 70% at 90% 30%, rgba(100,120,140,.1) 0%, transparent 60%),
        radial-gradient(ellipse 80% 40% at 50% 90%, rgba(255,230,3,.05) 0%, transparent 60%);
    animation: meshMove 20s ease-in-out infinite alternate;
}
@keyframes meshMove {
    0%   { transform: translate(0,0) scale(1); }
    33%  { transform: translate(-5%,3%) scale(1.05); }
    66%  { transform: translate(3%,-2%) scale(.98); }
    100% { transform: translate(-2%,5%) scale(1.02); }
}

/* Grid lines */
.hero__grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 60% 60% at 30% 50%, black 10%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 60% 60% at 30% 50%, black 10%, transparent 70%);
}

/* Inner layout: text left + photo right */
.hero__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 120px var(--gap) 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 72px);
    align-items: center;
}

/* Left: text */
.hero__content {
    color: var(--white);
    text-align: left;
}

.hero__pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 100px;
    backdrop-filter: blur(12px);
    margin-bottom: 28px;
    animation: fadeInUp .8s var(--ease) .2s both;
}
.hero__pill-dot {
    width: 6px; height: 6px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse-dot 2s ease infinite;
}
.hero__pill .stars { display: flex; gap: 2px; }
.hero__pill svg { width: 14px; height: 14px; color: var(--accent); }
.hero__pill > span { font-size: .75rem; font-weight: 500; opacity: .8; }

.hero h1 { margin-bottom: 20px; }
.hero__line {
    display: block;
    font-size: clamp(2rem, 5vw, 3.8rem);
    font-weight: 900;
    letter-spacing: -.04em;
    line-height: 1.05;
    animation: fadeInUp .8s var(--ease) both;
}
.hero__line:nth-child(1) { animation-delay: .3s; }
.hero__line:nth-child(2) { animation-delay: .45s; }
.hero__line:nth-child(3) { animation-delay: .6s; }
.hero__line--accent {
    background: linear-gradient(135deg, var(--accent-dark), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__subtitle {
    font-size: clamp(.9rem, 1.5vw, 1.1rem);
    font-weight: 300;
    opacity: .65;
    max-width: 440px;
    margin-bottom: 24px;
    line-height: 1.7;
    animation: fadeInUp .8s var(--ease) .7s both;
}

.hero__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
    animation: fadeInUp .8s var(--ease) .8s both;
}
.tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 100px;
    font-size: .78rem;
    font-weight: 500;
    background: rgba(255,255,255,.04);
    backdrop-filter: blur(8px);
}
.tag svg { width: 15px; height: 15px; color: var(--green); }

.hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    animation: fadeInUp .8s var(--ease) .9s both;
}

/* Right: floating photo card */
.hero__photo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInUp 1s var(--ease) .5s both;
}

.hero__photo-card {
    position: relative;
    width: 100%;
    max-width: 440px;
    border-radius: var(--r-xl);
    overflow: visible;
    animation: floatPhoto 8s ease-in-out infinite;
}

/* Glow behind the card */
.hero__photo-glow {
    position: absolute;
    inset: -20%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,230,3,.1) 0%, transparent 60%);
    filter: blur(40px);
    z-index: -1;
}

/* Animated gradient border */
.hero__photo-border {
    position: absolute;
    inset: -2px;
    border-radius: calc(var(--r-xl) + 2px);
    background: linear-gradient(135deg, rgba(255,230,3,.3), rgba(255,255,255,.08) 40%, rgba(255,230,3,.2) 70%, rgba(255,255,255,.05));
    z-index: 0;
    animation: borderRotate 6s linear infinite;
    background-size: 200% 200%;
}
@keyframes borderRotate {
    0% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
    100% { background-position: 0% 0%; }
}

.hero__photo-img {
    position: relative;
    z-index: 1;
    width: 100%;
    display: block;
    border-radius: var(--r-xl);
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: center;
    box-shadow: 0 32px 80px rgba(0,0,0,.5), 0 8px 24px rgba(0,0,0,.3);
}

@keyframes floatPhoto {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(.5deg); }
}

/* Mini badges on photo */
.hero__photo-badge {
    position: absolute;
    z-index: 5;
    padding: 12px 20px;
    border-radius: var(--r);
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(10, 10, 10, .85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 8px 32px rgba(0,0,0,.45);
    animation: float 6s ease-in-out infinite;
}
.hero__photo-badge strong {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--accent-text);
    white-space: nowrap;
}
.hero__photo-badge span {
    font-size: .7rem;
    font-weight: 500;
    color: rgba(255,255,255,.85);
    white-space: nowrap;
    line-height: 1.3;
}
.hero__photo-badge--top {
    top: -12px;
    right: -24px;
}
.hero__photo-badge--bottom {
    bottom: 24px;
    left: -28px;
    animation-delay: -3s;
}
@keyframes float {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Scroll indicator */
.hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 3;
    animation: fadeInUp .8s var(--ease) 1.2s both;
}
.hero__scroll span {
    font-size: .6rem;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: rgba(255,255,255,.3);
}
.hero__mouse {
    width: 20px; height: 32px;
    border: 1.5px solid rgba(255,255,255,.25);
    border-radius: 11px;
    position: relative;
}
.hero__mouse-wheel {
    width: 3px; height: 7px;
    background: rgba(255,255,255,.45);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: mouseScroll 2s ease infinite;
}
@keyframes mouseScroll {
    0%   { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(10px); }
}

/* Mobile: stack vertically */
@media(max-width:900px) {
    .hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 100px;
        padding-bottom: 100px;
    }
    .hero__content { text-align: center; }
    .hero__subtitle { margin-left: auto; margin-right: auto; }
    .hero__tags { justify-content: center; }
    .hero__ctas { justify-content: center; }
    .hero__photo-card { max-width: 320px; margin: 0 auto; }
    .hero__photo-badge--top { right: -12px; top: -8px; }
    .hero__photo-badge--bottom { left: -12px; }
    .hero__scroll { display: none; }
}

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


/* ============================================
   TRANSFORMATION
   ============================================ */
.transform {
    padding: var(--section) 0;
    background: var(--white);
}
.transform__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px,7vw,100px);
    align-items: center;
}
.transform__img-wrap {
    position: relative;
    border-radius: var(--r-xl);
    overflow: hidden;
    aspect-ratio: 4/5;
}
.transform__img {
    width: 100%; height: 100%;
    background: url('photos/photo-soudure.jpg') center/cover no-repeat;
}
img.transform__img--photo {
    object-fit: cover;
    display: block;
    background: none;
}
.transform__img-border {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(255,255,255,.3);
    pointer-events: none;
}
.transform__badge {
    position: absolute;
    top: 20px; left: 20px;
    padding: 8px 18px;
    border-radius: 100px;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--white);
    background: rgba(10,10,10,.6);
}

/* Origin block: logo + tag */
.transform__origin {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--g100);
}
.transform__logo {
    height: 42px;
    width: auto;
}
.transform__origin-tag {
    font-size: .78rem;
    font-weight: 600;
    color: var(--g500);
    padding: 6px 14px;
    background: var(--g50);
    border-radius: 100px;
    border: 1px solid var(--g100);
    white-space: nowrap;
}

.transform__text h2 {
    font-size: clamp(1.8rem,3.5vw,2.8rem);
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1.1;
    margin-bottom: 24px;
}
.transform__text p {
    color: var(--g500);
    line-height: 1.75;
    margin-bottom: 14px;
}
.transform__highlight {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin: 24px 0 32px;
    padding: 20px;
    background: var(--g50);
    border-radius: var(--r);
}
.highlight-bar {
    width: 3px;
    min-height: 100%;
    background: linear-gradient(180deg, var(--accent), transparent);
    border-radius: 2px;
    flex-shrink: 0;
}
.transform__highlight p {
    color: var(--black);
    font-weight: 600;
    font-size: 1.05rem;
    margin: 0;
}

@media(max-width:768px){
    .transform__grid{grid-template-columns:1fr;gap:32px}
    .transform__img-wrap{aspect-ratio:16/10}
    .transform__origin{flex-wrap:wrap;gap:10px}
    .transform__logo{height:36px}
}


/* ============================================
   MODELS
   ============================================ */
.models {
    padding: var(--section) 0;
    background: var(--g50);
}
.models__grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
}
.models__grid--duo {
    grid-template-columns: repeat(2,1fr);
    max-width: 780px;
    margin: 0 auto;
}
.model-card {
    position: relative;
    background: var(--white);
    border-radius: var(--r-xl);
    overflow: hidden;
    border: 1px solid var(--g100);
    transition: transform .5s var(--ease), box-shadow .5s var(--ease);
    will-change: transform;
}
.model-card:hover { box-shadow: var(--shadow-lg); }


/* Visual area */
.model-card__visual {
    position: relative;
    aspect-ratio: 5/4;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* Replace with real photo background */
}
.model-card__img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%; height: 100%;
}
.model-card__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease);
}
.model-card:hover .model-card__photo {
    transform: scale(1.05);
}
.model-card__svg {
    width: 100px;
    color: var(--g300);
    transition: transform .5s var(--ease);
}
.model-card:hover .model-card__svg { transform: scale(1.1); }

/* Card glow */
.model-card__glow {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .5s;
    background: radial-gradient(circle at 50% 80%, rgba(255,230,3,.06) 0%, transparent 60%);
}
.model-card:hover .model-card__glow { opacity: 1; }

.model-card__body {
    padding: 28px;
}
.model-card__body h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -.02em;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--accent);
    display: inline-block;
}
.model-card__body p {
    font-size: .88rem;
    color: var(--g500);
    line-height: 1.6;
    margin-bottom: 16px;
}
.model-card__features {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.model-card__features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .8rem;
    color: var(--g500);
}
.model-card__features svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    color: var(--accent-text);
}
.model-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.model-card__price small {
    display: block;
    font-size: .7rem;
    color: var(--g400);
}
.model-card__price strong {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -.01em;
}
.model-card__price strong span {
    font-size: .65em;
    font-weight: 500;
    color: var(--g400);
    margin-left: 2px;
}
.model-card__tag {
    font-size: .68rem;
    font-weight: 600;
    padding: 5px 12px;
    background: var(--g50);
    border-radius: 100px;
    color: var(--g400);
}

@media(max-width:900px){
    .models__grid{grid-template-columns:1fr;max-width:440px;margin:0 auto}
}


/* ============================================
   PRICING
   ============================================ */
.pricing {
    padding: var(--section) 0;
    background: var(--white);
}
.pricing__grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    margin-bottom: 48px;
}
.pricing__card {
    position: relative;
    padding: 36px 28px;
    border-radius: var(--r-xl);
    text-align: center;
    transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.pricing__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

/* Popular */
.pricing__card--pop {
    background: var(--black);
    color: var(--white);
    border: none;
    transform: scale(1.04);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}
.pricing__card--pop:hover { transform: scale(1.04) translateY(-4px); }
.pricing__card--pop .pricing__list li { border-color: rgba(255,255,255,.08); }
.pricing__card--pop .pricing__list svg { color: var(--green); }

.pricing__card-glow {
    position: absolute;
    top: -40%; left: -20%; right: -20%;
    height: 80%;
    background: radial-gradient(ellipse at 50% 100%, rgba(255,230,3,.12) 0%, transparent 60%);
    pointer-events: none;
}

.pricing__pop-badge {
    position: absolute;
    top: -1px; left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: linear-gradient(135deg, var(--accent-dark), var(--accent));
    color: var(--black);
    font-size: .65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
    border-radius: 0 0 12px 12px;
}

.pricing__label {
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    opacity: .55;
    margin-bottom: 20px;
}
.pricing__from {
    display: block;
    font-size: .75rem;
    opacity: .5;
    margin-bottom: 4px;
}
.pricing__value {
    font-size: 2.6rem;
    font-weight: 900;
    letter-spacing: -.03em;
    line-height: 1;
}
.pricing__value small {
    font-size: .4em;
    font-weight: 500;
    opacity: .45;
    margin-left: 4px;
}
.pricing__amount { margin-bottom: 28px; }

.pricing__list { text-align: left; margin-bottom: 24px; }
.pricing__list li {
    padding: 10px 0;
    font-size: .88rem;
    border-top: 1px solid var(--g100);
    display: flex;
    align-items: center;
    gap: 10px;
}
.pricing__list svg {
    width: 16px; height: 16px;
    flex-shrink: 0;
    color: var(--accent-text);
}

.pricing__reassurance {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    color: var(--g600);
}
.pricing__reassurance svg {
    width: 22px; height: 22px;
    color: var(--green);
}

@media(max-width:900px){
    .pricing__grid{grid-template-columns:1fr;max-width:400px;margin:0 auto 48px}
    .pricing__card--pop{transform:none}
    .pricing__card--pop:hover{transform:translateY(-4px)}
}


/* ============================================
   PROCESS / TIMELINE
   ============================================ */
.process {
    padding: var(--section) 0;
    background: var(--g50);
}

/* ---- Timeline bar ---- */
.process__bar {
    margin-bottom: 40px;
    position: relative;
}
.process__bar-track {
    height: 4px;
    background: var(--g200);
    border-radius: 4px;
    position: relative;
    margin: 0 6%;
}
.process__bar-fill {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--accent), var(--accent-dark));
    border-radius: 4px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 2s cubic-bezier(.22,1,.36,1);
}
.process__bar.is-visible .process__bar-fill {
    transform: scaleX(1);
}
.process__bar-labels {
    display: flex;
    justify-content: space-between;
    position: relative;
    top: -18px;
}
.process__bar-point {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.process__bar-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--g200);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color .5s var(--ease), background .5s var(--ease), box-shadow .5s var(--ease), transform .5s var(--ease);
}
.process__bar-dot span {
    font-size: .65rem;
    font-weight: 800;
    color: var(--g400);
    transition: color .5s var(--ease);
}
.process__bar-text {
    font-size: .7rem;
    font-weight: 600;
    color: var(--g400);
    white-space: nowrap;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity .4s var(--ease), transform .4s var(--ease), color .4s var(--ease);
}

/* Animate dots sequentially */
.process__bar.is-visible .process__bar-point[data-step="0"] .process__bar-dot { transition-delay: .2s; }
.process__bar.is-visible .process__bar-point[data-step="1"] .process__bar-dot { transition-delay: .6s; }
.process__bar.is-visible .process__bar-point[data-step="2"] .process__bar-dot { transition-delay: 1s; }
.process__bar.is-visible .process__bar-point[data-step="3"] .process__bar-dot { transition-delay: 1.4s; }

.process__bar.is-visible .process__bar-point[data-step="0"] .process__bar-text { transition-delay: .35s; }
.process__bar.is-visible .process__bar-point[data-step="1"] .process__bar-text { transition-delay: .75s; }
.process__bar.is-visible .process__bar-point[data-step="2"] .process__bar-text { transition-delay: 1.15s; }
.process__bar.is-visible .process__bar-point[data-step="3"] .process__bar-text { transition-delay: 1.55s; }

.process__bar.is-visible .process__bar-dot {
    border-color: var(--accent);
    background: var(--accent);
    box-shadow: 0 0 0 6px var(--accent-glow);
    transform: scale(1.1);
}
.process__bar.is-visible .process__bar-dot span {
    color: var(--black);
}
.process__bar.is-visible .process__bar-text {
    opacity: 1;
    transform: translateY(0);
    color: var(--black);
}

/* ---- Steps grid ---- */
.process__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.process__step {
    position: relative;
    border-radius: var(--r);
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: default;
}
.process__step::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.92) 0%, rgba(0,0,0,.5) 45%, rgba(0,0,0,.15) 100%);
    z-index: 1;
    transition: background .4s var(--ease);
}
.process__step:hover::after {
    background: linear-gradient(to top, rgba(0,0,0,.95) 0%, rgba(0,0,0,.55) 45%, rgba(0,0,0,.2) 100%);
}

/* Photo */
.process__photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease);
}
.process__step:hover .process__photo {
    transform: scale(1.06);
}

/* Overlay text */
.process__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 28px 22px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.process__tag {
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--accent);
    text-shadow: 0 1px 4px rgba(0,0,0,.5);
}
.process__overlay h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
    text-shadow: 0 2px 8px rgba(0,0,0,.6);
}
.process__overlay p {
    font-size: .8rem;
    color: rgba(255,255,255,.7);
    line-height: 1.55;
    margin-top: 2px;
    text-shadow: 0 1px 4px rgba(0,0,0,.5);
}

@media(max-width:900px){
    .process__grid{grid-template-columns:repeat(2,1fr)}
    .process__step{aspect-ratio:3/4}
    .process__bar-track{margin:0 10%}
    .process__bar-text{font-size:.6rem}
}
@media(max-width:480px){
    .process__grid{grid-template-columns:1fr;max-width:400px;margin:0 auto}
    .process__step{aspect-ratio:4/5}
    .process__bar-track{margin:0 6%}
    .process__bar-text{display:none}
}


/* ============================================
   REVIEWS
   ============================================ */
.reviews {
    padding: var(--section) 0;
    background: var(--white);
}

/* Big rating block in section header */
.reviews__rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
    padding: 16px 28px;
    background: linear-gradient(135deg, var(--accent-soft) 0%, rgba(255,230,3,.15) 100%);
    border: 1.5px solid rgba(255,230,3,.35);
    border-radius: var(--r);
    display: inline-flex;
}
.reviews__stars-big {
    display: flex;
    gap: 4px;
}
.reviews__stars-big svg {
    width: 28px;
    height: 28px;
    color: var(--accent);
    filter: drop-shadow(0 1px 4px var(--accent-glow));
}
.reviews__score {
    display: flex;
    flex-direction: column;
    text-align: left;
}
.reviews__score > strong {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--black);
    line-height: 1.1;
}
.reviews__score > span {
    font-size: .8rem;
    color: var(--g500);
}
.reviews__score > span strong {
    font-weight: 700;
    color: var(--g700);
}

.reviews__grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    margin-bottom: 64px;
}

/* Reviews grid — 3 visible + expand */
.reviews__wrap {
    margin-bottom: 64px;
}
.reviews__track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 8px;
    margin: -8px;
}
/* Extra cards hidden by default */
.reviews__more {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 8px;
    margin: 12px -8px 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height .5s ease, opacity .4s ease, margin-top .4s ease;
}
.reviews__more.is-open {
    max-height: 600px;
    opacity: 1;
    overflow: visible;
}
/* Toggle button */
.reviews__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 28px auto 0;
    padding: 12px 28px;
    font-size: .88rem;
    font-weight: 600;
    color: var(--g600);
    background: none;
    border: 1.5px solid rgba(0,0,0,.1);
    border-radius: 999px;
    cursor: pointer;
    transition: all .3s var(--ease);
}
.reviews__toggle:hover {
    color: var(--black);
    border-color: var(--black);
}
.reviews__toggle svg {
    width: 18px;
    height: 18px;
    transition: transform .3s ease;
}
.reviews__toggle.is-open svg {
    transform: rotate(180deg);
}
.review {
    padding: 32px;
    border-radius: var(--r-xl);
    display: flex;
    flex-direction: column;
    transition: transform .4s var(--ease);
}
.review:hover { transform: translateY(-4px); }

.review__stars {
    display: flex;
    gap: 3px;
    margin-bottom: 20px;
}
.review__stars svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
    filter: drop-shadow(0 1px 2px var(--accent-glow));
}

.review blockquote {
    font-size: .92rem;
    line-height: 1.7;
    color: var(--g600);
    flex: 1;
    margin-bottom: 24px;
    font-style: normal;
}

.review footer {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,.06);
}
.review__avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--black), #333);
    color: var(--white);
    font-size: .7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.review footer cite {
    font-style: normal;
    font-weight: 600;
    font-size: .88rem;
    display: block;
}
.review footer span {
    font-size: .72rem;
    color: var(--g400);
}

/* Bento trust grid */
.bento {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
    margin-top: 56px;
}
.bento__item {
    padding: 32px 24px 28px;
    border-radius: var(--r);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
    border: 1px solid var(--g100);
    position: relative;
    overflow: hidden;
}
.bento__item::before {
    content: '';
    position: absolute;
    top: 0; left: 50%; transform: translateX(-50%);
    width: 40px; height: 3px;
    background: var(--accent);
    border-radius: 0 0 3px 3px;
}
.bento__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,.1);
    border-color: var(--accent);
}
.bento__item:hover::before {
    width: 100%;
    transition: width .3s var(--ease);
}
.bento__icon {
    width: 52px; height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
    border-radius: 50%;
    flex-shrink: 0;
}
.bento__icon svg {
    width: 26px; height: 26px;
    color: var(--white);
}
.bento__stat {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--accent-dark);
    letter-spacing: -.02em;
    line-height: 1;
}
.bento__item strong {
    display: block;
    font-size: .95rem;
    font-weight: 800;
    line-height: 1.3;
}
.bento__item span {
    font-size: .78rem;
    color: var(--g400);
    display: block;
    line-height: 1.5;
}

@media(max-width:900px){
    .reviews__grid{grid-template-columns:1fr;max-width:500px;margin:0 auto 48px}
    .reviews__track{grid-template-columns:1fr;max-width:500px;margin:0 auto}
    .reviews__more{grid-template-columns:1fr;max-width:500px;margin:20px auto 0}
    .bento{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:600px){
    .reviews__more.is-open{max-height:1600px}
}
@media(max-width:480px){
    .bento{grid-template-columns:1fr}
}


/* ============================================
   ZONE
   ============================================ */
.zone {
    padding: var(--section) 0;
    background: var(--black);
    color: var(--white);
}
.zone__inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}
.zone__inner h2 {
    font-size: clamp(2rem,4.5vw,3rem);
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1.1;
    margin-bottom: 16px;
}
.zone__inner > p {
    color: rgba(255,255,255,.55);
    line-height: 1.7;
    margin-bottom: 40px;
}

/* Infinite marquee */
.zone__marquee {
    overflow: hidden;
    margin: 0 clamp(-20px, -5vw, -100px) 40px;
    mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
}
.marquee__track {
    display: flex;
    gap: 24px;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
    width: max-content;
}
.marquee__track span {
    font-size: 1.1rem;
    font-weight: 600;
    opacity: .6;
}
.marquee__dot {
    width: 5px !important;
    height: 5px;
    background: var(--accent);
    border-radius: 50%;
    align-self: center;
    opacity: 1 !important;
    flex-shrink: 0;
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.zone__note {
    font-size: .85rem;
    color: rgba(255,255,255,.35);
}
.zone__note a {
    color: var(--accent-text);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.zone__note a:hover { color: var(--accent); }


/* ============================================
   FORM
   ============================================ */
.form-section {
    padding: var(--section) 0;
    background: var(--g50);
}
.form {
    max-width: 760px;
    margin: 0 auto;
    padding: clamp(28px,4vw,48px);
    border-radius: var(--r-xl);
    position: relative;
    overflow: hidden;
}

/* Progress bar */
.form__progress {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--g100);
}
.form__progress-bar {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--accent-dark), var(--green));
    border-radius: 0 2px 2px 0;
    transition: width .4s var(--ease);
}

.form__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form__group--full { grid-column: 1/-1; }

.form__group label {
    display: block;
    font-size: .82rem;
    font-weight: 600;
    margin-bottom: 6px;
}
.form__group label small { font-weight: 400; color: var(--g400); }

.form__group input[type="text"],
.form__group input[type="email"],
.form__group input[type="tel"],
.form__group input[type="number"],
.form__group select,
.form__group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--g200);
    border-radius: var(--r-sm);
    font-family: inherit;
    font-size: .9rem;
    color: var(--black);
    background: var(--white);
    transition: border-color .3s, box-shadow .3s;
    outline: none;
}
.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
    border-color: var(--black);
    box-shadow: 0 0 0 4px rgba(10,10,10,.05);
}
.form__group small {
    display: block;
    font-size: .72rem;
    color: var(--g400);
    margin-top: 4px;
}
.form__group textarea { resize: vertical; min-height: 80px; }

/* Radio cards with SVG icons */
.form__radios {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 10px;
}
.form__radio-card { cursor: pointer; position: relative; }
.form__radio-card input { position: absolute; opacity: 0; pointer-events: none; }
.form__radio-card span {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 20px 12px 16px;
    border: 1.5px solid var(--g200);
    border-radius: var(--r);
    text-align: center;
    transition: all .3s var(--ease);
}
.form__radio-card svg {
    width: 32px; height: 40px;
    color: var(--g300);
    transition: color .3s;
}
.form__radio-card span strong { font-size: .8rem; }
.form__radio-card span small { font-size: .68rem; color: var(--g400); }
.form__radio-card input:checked + span {
    border-color: var(--black);
    background: var(--black);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(10,10,10,.2);
}
.form__radio-card input:checked + span svg { color: var(--accent-text); }
.form__radio-card input:checked + span small { color: rgba(255,255,255,.55); }
.form__radio-card:hover span { border-color: var(--g300); }

/* Upload */
.form__upload { position: relative; }
.form__upload input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; z-index: 2; }
.form__upload-zone {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 24px;
    border: 2px dashed var(--g200);
    border-radius: var(--r-sm);
    text-align: center;
    transition: all .3s;
    cursor: pointer;
}
.form__upload-zone:hover { border-color: var(--g300); background: var(--g50); }
.form__upload-zone.has-file { border-color: var(--green); background: #f0fdf4; }
.form__upload-zone svg { width: 28px; height: 28px; color: var(--g300); }
.form__upload-zone span { font-size: .82rem; font-weight: 500; color: var(--g500); }
.form__upload-zone small { font-size: .68rem; color: var(--g400); }

/* Separator */
.form__separator {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 8px 0;
}
.form__separator::before,
.form__separator::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--g200);
}
.form__separator span {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--g400);
    white-space: nowrap;
}

.form__submit { margin-top: 8px; text-align: center; }
.form__legal {
    font-size: .68rem;
    color: var(--g400);
    margin-top: 12px;
}

@media(max-width:600px){
    .form__grid{grid-template-columns:1fr}
    .form__radios{grid-template-columns:repeat(2,1fr)}
}


/* ============================================
   STICKY CTA (mobile)
   ============================================ */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0; right: 0;
    z-index: 999;
    padding: 12px 16px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom));
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0,0,0,.06);
    transform: translateY(100%);
    transition: transform .4s var(--ease);
}
.sticky-cta.is-visible { transform: translateY(0); }

@media(min-width:901px){
    .sticky-cta{display:none}
}


/* ============================================
   FOOTER — Full dark
   ============================================ */
.footer {
    background: var(--black);
    color: var(--white);
}

/* ---- CTA intégré en haut ---- */
.footer__cta {
    padding: clamp(56px, 8vw, 88px) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__cta::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 500px; height: 500px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    opacity: .12;
    pointer-events: none;
}
.footer__cta-inner {
    position: relative;
    z-index: 1;
    max-width: 560px;
    margin: 0 auto;
}
.footer__cta-inner h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -.02em;
    margin-bottom: 12px;
}
.footer__cta-inner p {
    color: rgba(255,255,255,.5);
    font-size: .92rem;
    line-height: 1.6;
    margin-bottom: 28px;
}
.footer__cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}
.footer__cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.5);
    font-size: .85rem;
    font-weight: 500;
    text-decoration: none;
    transition: color .3s;
}
.footer__cta-phone:hover { color: var(--accent); }
.footer__cta-phone svg { width: 16px; height: 16px; }

/* ---- Contenu principal ---- */
.footer__main {
    padding: 56px 0 48px;
}
.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}
.footer__logo-link {
    display: inline-block;
    margin-bottom: 16px;
}
.footer__logo-img {
    height: 36px;
    width: auto;
    filter: brightness(0) invert(1);
}
.footer__tagline {
    font-size: .82rem;
    color: rgba(255,255,255,.4);
    line-height: 1.65;
    margin-bottom: 20px;
}
.footer__tagline strong { color: rgba(255,255,255,.65); }
.footer__social {
    display: flex;
    gap: 10px;
}
.footer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px; height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.4);
    transition: all .3s var(--ease);
}
.footer__social a:hover {
    color: var(--accent);
    border-color: var(--accent);
    background: rgba(255,230,3,.08);
}
.footer__social svg { width: 16px; height: 16px; }

.footer__col h4 {
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255,255,255,.3);
    margin-bottom: 18px;
}
.footer__col li { margin-bottom: 10px; }
.footer__col a {
    font-size: .84rem;
    color: rgba(255,255,255,.55);
    transition: color .3s;
    text-decoration: none;
}
.footer__col a:hover { color: var(--accent); }
.footer__col li:not(:has(a)) { font-size: .84rem; color: rgba(255,255,255,.3); }

/* ---- Bottom bar ---- */
.footer__bottom {
    border-top: 1px solid rgba(255,255,255,.08);
}
.footer__bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}
.footer__bottom p { font-size: .73rem; color: rgba(255,255,255,.3); }
.footer__bottom strong { color: rgba(255,255,255,.5); font-weight: 600; }
.footer__bottom nav { display: flex; gap: 20px; }
.footer__bottom a { font-size: .73rem; color: rgba(255,255,255,.3); transition: color .3s; text-decoration: none; }
.footer__bottom a:hover { color: rgba(255,255,255,.7); }

@media(max-width:768px){
    .footer__grid{grid-template-columns:1fr 1fr}
    .footer__brand{grid-column:1/-1}
    .footer__bottom-inner{flex-direction:column;gap:12px;text-align:center}
}
@media(max-width:480px){
    .footer__grid{grid-template-columns:1fr}
    .footer__cta-actions{flex-direction:column;gap:16px}
}


/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.anim {
    opacity: 0;
    transition: opacity .8s var(--ease) var(--delay, 0s),
                transform .8s var(--ease) var(--delay, 0s);
}
.anim[data-anim="fade-up"] { transform: translateY(40px); }
.anim[data-anim="slide-left"] { transform: translateX(-50px); }
.anim[data-anim="slide-right"] { transform: translateX(50px); }

.anim.is-visible {
    opacity: 1;
    transform: translate(0);
}


/* ============================================
   ACCESSIBILITY
   ============================================ */
@media(prefers-reduced-motion:reduce){
    *,*::before,*::after{
        animation-duration:.01ms!important;
        animation-iteration-count:1!important;
        transition-duration:.01ms!important;
    }
    .anim{opacity:1;transform:none}
    html{scroll-behavior:auto}
    .hero__mesh{animation:none}
    .marquee__track{animation:none}
}

:focus-visible{
    outline:2px solid var(--accent);
    outline-offset:3px;
    border-radius:4px;
}

/* Selection color */
::selection {
    background: rgba(255,230,3,.15);
    color: var(--black);
}


/* ============================================
   BLOG ARTICLE PAGE
   ============================================ */

/* Breadcrumbs */
.breadcrumb {
    padding: 100px 0 0;
    background: var(--white);
}
.breadcrumb__list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: .78rem;
    color: var(--g400);
    list-style: none;
    margin: 0;
    padding: 0;
}
.breadcrumb__list li {
    display: inline-flex;
    align-items: center;
}
.breadcrumb__list a {
    color: var(--g500);
    transition: color .3s;
}
.breadcrumb__list a:hover { color: var(--black); }
.breadcrumb__sep {
    color: var(--g300);
    user-select: none;
}

/* Article hero */
.article-hero {
    padding: 32px 0 var(--section);
    background: var(--white);
}
.article-hero__inner {
    max-width: 760px;
    margin: 0 auto;
}
.article-hero__cat {
    display: inline-block;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--accent-text);
    background: rgba(255,230,3,.08);
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
}
.article-hero__inner h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1.12;
    margin-bottom: 20px;
}
.article-hero__excerpt {
    font-size: clamp(.95rem, 1.5vw, 1.1rem);
    color: var(--g500);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 640px;
}
.article-hero__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 24px;
    border-top: 1px solid var(--g100);
}
.article-hero__author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.article-hero__avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--black), #333);
    color: var(--white);
    font-size: .75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.article-hero__author-info strong {
    display: block;
    font-size: .88rem;
    font-weight: 600;
}
.article-hero__author-info span {
    font-size: .75rem;
    color: var(--g400);
}
.article-hero__stat {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .78rem;
    color: var(--g400);
}
.article-hero__stat svg {
    width: 16px; height: 16px;
    color: var(--g300);
}

/* Featured image */
.article-cover {
    max-width: 900px;
    margin: 0 auto clamp(40px, 6vw, 64px);
    border-radius: var(--r-xl);
    overflow: hidden;
    aspect-ratio: 2/1;
    background: linear-gradient(155deg, #d8d5cf 0%, #c4c1bb 40%, #aeaba5 100%);
}
.article-cover img {
    width: 100%; height: 100%;
    object-fit: cover;
}

/* Article body */
.article-body {
    max-width: 760px;
    margin: 0 auto;
    padding-bottom: var(--section);
}

/* Table of contents */
.article-toc {
    background: var(--g50);
    border: 1px solid var(--g100);
    border-radius: var(--r);
    padding: 28px 32px;
    margin-bottom: 48px;
}
.article-toc__title {
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--g400);
    margin-bottom: 16px;
}
.article-toc ol {
    list-style: none;
    counter-reset: toc;
}
.article-toc ol li {
    counter-increment: toc;
    margin-bottom: 8px;
}
.article-toc ol li::before {
    content: counter(toc) ".";
    font-weight: 700;
    color: var(--accent-text);
    margin-right: 10px;
    font-size: .85rem;
}
.article-toc a {
    font-size: .9rem;
    font-weight: 500;
    color: var(--g600);
    transition: color .3s;
}
.article-toc a:hover { color: var(--black); }

/* Prose content */
.article-prose h2 {
    font-size: clamp(1.3rem, 2.5vw, 1.7rem);
    font-weight: 800;
    letter-spacing: -.02em;
    margin: 48px 0 16px;
    padding-top: 32px;
    border-top: 1px solid var(--g100);
}
.article-prose h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.article-prose h3 {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    font-weight: 700;
    margin: 32px 0 12px;
}
.article-prose p {
    font-size: .95rem;
    color: var(--g600);
    line-height: 1.8;
    margin-bottom: 18px;
}
.article-prose strong { color: var(--black); }
.article-prose a {
    color: var(--black);
    text-decoration: underline;
    text-decoration-color: var(--accent);
    text-underline-offset: 3px;
    transition: text-decoration-color .3s;
}
.article-prose a:hover { text-decoration-color: var(--black); }
.article-prose ul, .article-prose ol {
    margin: 0 0 20px 20px;
    color: var(--g600);
}
.article-prose li {
    font-size: .92rem;
    line-height: 1.8;
    margin-bottom: 6px;
}
.article-prose ul li { list-style: disc; }
.article-prose ol li { list-style: decimal; }
.article-prose img {
    border-radius: var(--r);
    margin: 32px 0;
    box-shadow: var(--shadow);
}
.article-prose blockquote {
    border-left: 3px solid var(--accent);
    padding: 20px 24px;
    margin: 28px 0;
    background: var(--g50);
    border-radius: 0 var(--r-sm) var(--r-sm) 0;
}
.article-prose blockquote p {
    font-size: .95rem;
    color: var(--g600);
    font-style: italic;
    margin: 0;
}

/* Key takeaway / callout box */
.article-callout {
    background: var(--black);
    color: var(--white);
    border-radius: var(--r);
    padding: 28px 32px;
    margin: 36px 0;
}
.article-callout__label {
    display: inline-block;
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--accent-text);
    margin-bottom: 10px;
}
.article-callout p {
    color: rgba(255,255,255,.8) !important;
    margin: 0 !important;
}
.article-callout strong { color: var(--white) !important; }

/* CTA within article */
.article-cta {
    background: var(--g50);
    border: 1px solid var(--g100);
    border-radius: var(--r-xl);
    padding: 40px;
    margin: 48px 0;
    text-align: center;
}
.article-cta h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.article-cta p {
    font-size: .9rem;
    color: var(--g500);
    margin-bottom: 20px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

/* Tags */
.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 32px;
    margin-top: 48px;
    border-top: 1px solid var(--g100);
}
.article-tags a {
    font-size: .75rem;
    font-weight: 600;
    color: var(--g500);
    background: var(--g50);
    border: 1px solid var(--g100);
    padding: 6px 14px;
    border-radius: 100px;
    transition: all .3s;
    text-decoration: none;
}
.article-tags a:hover {
    color: var(--black);
    border-color: var(--g300);
}

/* Share bar */
.article-share {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}
.article-share__label {
    font-size: .78rem;
    font-weight: 600;
    color: var(--g400);
}
.article-share a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid var(--g200);
    color: var(--g500);
    transition: all .3s;
    text-decoration: none;
}
.article-share a:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}
.article-share svg { width: 18px; height: 18px; }

/* Related articles */
.article-related {
    padding: var(--section) 0;
    background: var(--g50);
}

/* Article FAQ */
.article-faq {
    margin: 48px 0;
}
.article-faq__title {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

/* Mobile */
@media(max-width:600px) {
    .article-hero__meta { gap: 14px; }
    .article-toc { padding: 22px 20px; }
    .article-callout { padding: 22px 20px; }
    .article-cta { padding: 28px 20px; }
    .article-prose h2 { margin-top: 36px; padding-top: 24px; }
}


/* ============================================
   VILLES — Zone d'intervention
   ============================================ */
.villes {
    padding: var(--section) 0;
    background: var(--black);
    color: var(--white);
}

/* Layout 2 colonnes : preuve + villes */
.villes__layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
}

/* Colonne gauche : photo + stats */
.villes__photo-wrap {
    position: relative;
    border-radius: var(--r);
    overflow: hidden;
}
.villes__photo {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: center 75%;
    display: block;
    border-radius: var(--r);
}
.villes__photo-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(0,0,0,.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 100px;
    font-size: .8rem;
    font-weight: 600;
    color: var(--white);
}
.villes__photo-badge svg {
    width: 16px; height: 16px;
    color: var(--accent);
}
.villes__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-top: 16px;
    background: rgba(255,255,255,.08);
    border-radius: var(--r);
    overflow: hidden;
}
.villes__stat {
    padding: 20px 16px;
    text-align: center;
    background: rgba(255,255,255,.04);
}
.villes__stat strong {
    display: block;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1.2;
}
.villes__stat span {
    display: block;
    font-size: .72rem;
    color: rgba(255,255,255,.5);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: .04em;
}

/* Colonne droite : villes */
.villes__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}
.villes__card {
    display: block;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--r);
    background: rgba(255,255,255,.04);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all .35s var(--ease);
    text-decoration: none;
    color: var(--white);
}
.villes__card:hover {
    background: rgba(255,255,255,.1);
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,.3);
}
.villes__card-inner {
    padding: 22px 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
    position: relative;
}
.villes__card-inner h3 {
    font-size: 1rem;
    font-weight: 700;
    width: 100%;
}
.villes__card-inner span {
    font-size: .72rem;
    color: rgba(255,255,255,.45);
    font-weight: 400;
}
.villes__arrow {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    opacity: 0;
    transition: all .35s var(--ease);
}
.villes__card:hover .villes__arrow {
    opacity: 1;
    transform: translateY(-50%) translateX(4px);
}
.villes__arrow svg {
    width: 18px;
    height: 18px;
    color: var(--accent);
}
.villes__more {
    font-size: .82rem;
    color: rgba(255,255,255,.4);
    line-height: 1.7;
}
.villes__more a {
    color: var(--accent-text);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color .3s;
}
.villes__more a:hover { color: var(--accent); }

@media(max-width:900px) {
    .villes__layout { grid-template-columns: 1fr; gap: 36px; }
    .villes__photo { height: 260px; }
    .villes__grid { grid-template-columns: repeat(3, 1fr); }
}
@media(max-width:600px) {
    .villes__grid { grid-template-columns: repeat(2, 1fr); }
    .villes__stats { grid-template-columns: repeat(3, 1fr); }
}
@media(max-width:480px) {
    .villes__grid { grid-template-columns: 1fr; }
    .villes__arrow { opacity: 1; transform: translateY(-50%); }
    .villes__photo { height: 220px; }
}


/* ============================================
   BLOG / RESSOURCES
   ============================================ */
.blog {
    padding: var(--section) 0;
    background: var(--white);
}
.blog__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.blog__card {
    border-radius: var(--r-xl);
    overflow: hidden;
    transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.blog__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.blog__img {
    aspect-ratio: 16/10;
    background: linear-gradient(155deg, #d8d5cf 0%, #c4c1bb 40%, #aeaba5 100%);
}
.blog__body {
    padding: 24px;
}
.blog__body h3 {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 10px;
}
.blog__body p {
    font-size: .85rem;
    color: var(--g500);
    line-height: 1.65;
    margin-bottom: 16px;
}
.blog__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .85rem;
    font-weight: 600;
    color: var(--black);
    transition: gap .3s var(--ease);
}
.blog__link:hover { gap: 10px; }
.blog__link svg {
    width: 18px;
    height: 18px;
    transition: transform .3s var(--ease);
}
.blog__link:hover svg { transform: translateX(3px); }

@media(max-width:900px) {
    .blog__grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
}


/* ============================================
   GRID MODIFIERS (6 items)
   ============================================ */
.reviews__grid--6 {
    grid-template-columns: repeat(3, 1fr);
}
.city-gallery__grid--6 {
    grid-template-columns: repeat(3, 1fr);
}

@media(max-width:900px) {
    .reviews__grid--6 { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto 48px; }
    .city-gallery__grid--6 { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width:480px) {
    .city-gallery__grid--6 { grid-template-columns: 1fr; }
}


/* ============================================
   REALISATIONS PAGE
   ============================================ */
.realisations-gallery {
    padding: clamp(40px, 6vw, 80px) 0 var(--section);
}
.realisations__filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 40px;
}
.realisations__filter {
    padding: 10px 22px;
    font-family: inherit;
    font-size: .85rem;
    font-weight: 600;
    border: 1.5px solid var(--g200);
    border-radius: 100px;
    background: none;
    color: var(--g500);
    cursor: pointer;
    transition: all .3s var(--ease);
}
.realisations__filter:hover {
    border-color: var(--black);
    color: var(--black);
}
.realisations__filter.is-active {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}
.realisations__link {
    text-decoration: none;
    color: inherit;
    display: block;
}
.realisations__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.realisations__item {
    border-radius: var(--r-xl);
    overflow: hidden;
    transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.realisations__item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.realisations__img {
    aspect-ratio: 4/5;
    overflow: hidden;
}
.realisations__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease);
}
.realisations__item:hover .realisations__img img {
    transform: scale(1.05);
}
.realisations__item figcaption {
    padding: 18px 22px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.realisations__item figcaption strong {
    font-size: .95rem;
    font-weight: 700;
}
.realisations__item figcaption span {
    font-size: .8rem;
    color: var(--g400);
}
.realisations__item figcaption em {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-size: .72rem;
    color: var(--accent-text);
    font-weight: 600;
}
.realisations__cta {
    text-align: center;
    margin-top: 56px;
}
.realisations__cta p {
    font-size: 1.1rem;
    color: var(--g500);
    margin-bottom: 20px;
}
@media(max-width:900px) {
    .realisations__grid { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width:480px) {
    .realisations__grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .realisations__img { aspect-ratio: 3/2; }
}

/* ============================================
   REALISATION DETAIL — Immersive Design
   ============================================ */

/* Full-bleed hero */
.real-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
}
.real-hero__bg {
    position: absolute;
    inset: 0;
}
.real-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.real-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.82) 0%, rgba(0,0,0,.35) 45%, rgba(0,0,0,.4) 80%, rgba(0,0,0,.55) 100%);
}

/* Breadcrumb over hero */
.real-hero .breadcrumb {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    z-index: 3;
    padding: 0;
    background: none;
}
.breadcrumb--light .breadcrumb__list,
.breadcrumb--light .breadcrumb__sep { color: rgba(255,255,255,.7); }
.breadcrumb--light .breadcrumb__list a { color: rgba(255,255,255,.85); }
.breadcrumb--light .breadcrumb__list a:hover { color: #fff; }

/* Hero content */
.real-hero__content {
    position: relative;
    z-index: 2;
    padding-bottom: clamp(56px, 10vw, 100px);
    max-width: 700px;
}
.real-hero h1 {
    font-size: clamp(2.2rem, 5.5vw, 3.6rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.08;
    letter-spacing: -.03em;
    margin-bottom: 16px;
}
.real-hero__excerpt {
    font-size: clamp(.95rem, 1.5vw, 1.1rem);
    color: rgba(255,255,255,.7);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 560px;
}
.real-hero__tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.real-hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 100px;
    font-size: .78rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: .01em;
}
.real-hero__tag svg { width: 14px; height: 14px; }
.real-hero__tag--accent {
    background: var(--accent);
    color: var(--black);
    border-color: var(--accent);
    font-weight: 700;
}

/* Summary strip — overlaps hero */
.real-summary {
    position: relative;
    z-index: 3;
    margin-top: -48px;
    padding-bottom: 56px;
}
.real-summary__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.real-summary__item {
    background: var(--white);
    border-radius: var(--r);
    padding: 22px 20px;
    box-shadow: 0 4px 32px rgba(0,0,0,.08), 0 1px 4px rgba(0,0,0,.04);
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.real-summary__item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(0,0,0,.1);
}
.real-summary__icon {
    width: 42px;
    height: 42px;
    background: var(--accent-soft);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.real-summary__icon svg { width: 20px; height: 20px; color: var(--accent-text); }
.real-summary__text strong {
    display: block;
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--g400);
    margin-bottom: 3px;
}
.real-summary__text span {
    font-size: .9rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1.3;
}

/* Specs grid (inside article-prose) */
.realisation-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 24px 0 32px;
}
.realisation-specs__item {
    padding: 18px 20px;
    background: var(--white);
    border-radius: var(--r-sm);
    border: 1px solid var(--g100);
    border-left: 3px solid var(--accent);
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: border-color .3s, box-shadow .3s;
}
.realisation-specs__item:hover {
    border-color: var(--accent);
    box-shadow: 0 2px 12px var(--accent-glow);
}
.realisation-specs__item strong {
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--g400);
}
.realisation-specs__item span {
    font-size: .92rem;
    font-weight: 600;
    color: var(--black);
}

/* Full-width CTA section */
.real-cta {
    background: var(--black);
    padding: clamp(56px, 10vw, 100px) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.real-cta::before {
    content: '';
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    pointer-events: none;
    opacity: .5;
}
.real-cta__inner {
    position: relative;
    max-width: 560px;
    margin: 0 auto;
}
.real-cta__label {
    display: inline-block;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--accent);
    margin-bottom: 12px;
}
.real-cta__inner h2 {
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -.02em;
    margin-bottom: 12px;
}
.real-cta__inner p {
    color: rgba(255,255,255,.55);
    font-size: .95rem;
    line-height: 1.7;
    margin-bottom: 36px;
}
.real-related { padding: clamp(48px, 8vw, 80px) 0; background: var(--off-white, #f6f6f4); }
.real-related h2 { text-align: center; font-size: clamp(1.3rem, 2.5vw, 1.8rem); margin-bottom: 8px; }
.real-related > .container > p { text-align: center; color: var(--text-light, #888); margin-bottom: 32px; }
.real-related__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.real-related__card { display: block; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow); background: var(--white); text-decoration: none; color: var(--black); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.real-related__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.real-related__card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; }
.real-related__card span { display: block; padding: 10px 14px; font-size: .85rem; font-weight: 600; }
.real-related__model { text-align: center; margin-top: 24px; }
.btn--accent {
    background: var(--accent);
    color: var(--black);
    font-weight: 700;
}
.btn--accent:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 24px var(--accent-glow);
}

/* Responsive */
@media(max-width:900px) {
    .real-summary__grid { grid-template-columns: repeat(2, 1fr); }
    .real-hero { min-height: 70vh; }
}
@media(max-width:600px) {
    .real-summary__grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .realisation-specs { grid-template-columns: 1fr; }
    .real-hero { min-height: 65vh; }
    .real-hero .breadcrumb { top: 70px; }
}


/* ============================================
   REALISATION — Photo Gallery
   ============================================ */
.realisation-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 2rem 0 3rem;
}
.realisation-gallery img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: var(--r-sm);
    cursor: pointer;
    margin: 0;
    box-shadow: none;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.realisation-gallery img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(0,0,0,.15);
}
.realisation-gallery img:only-child {
    grid-column: 1 / -1;
    height: 400px;
}
@media (max-width: 600px) {
    .realisation-gallery {
        grid-template-columns: 1fr;
    }
    .realisation-gallery img {
        height: 220px;
    }
    .realisation-gallery img:only-child {
        height: 280px;
    }
}


/* ============================================
   CITY PAGE — Hero
   ============================================ */
.city-hero {
    position: relative;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.city-hero__bg {
    position: absolute;
    inset: 0;
    background: var(--black);
}
.city-hero__mesh {
    position: absolute;
    inset: -50%;
    background:
        radial-gradient(ellipse 60% 50% at 10% 50%, rgba(255,230,3,.08) 0%, transparent 60%),
        radial-gradient(ellipse 50% 70% at 90% 30%, rgba(100,120,140,.1) 0%, transparent 60%),
        radial-gradient(ellipse 80% 40% at 50% 90%, rgba(255,230,3,.05) 0%, transparent 60%);
    animation: meshMove 20s ease-in-out infinite alternate;
}
.city-hero__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 120px var(--gap) 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 72px);
    align-items: center;
}
.city-hero__content {
    color: var(--white);
    text-align: left;
}
.city-hero__sub {
    font-size: clamp(.85rem, 2.5vw, 1rem);
    font-weight: 600;
    color: var(--accent-text);
    letter-spacing: .02em;
    margin-bottom: 12px;
    animation: fadeInUp .8s var(--ease) .65s both;
}

@media(max-width:900px) {
    .city-hero { min-height: auto; }
    .city-hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 100px;
        padding-bottom: 60px;
    }
    .city-hero__content { text-align: center; }
    .city-hero__content .hero__subtitle { margin-left: auto; margin-right: auto; }
    .city-hero__content .hero__tags { justify-content: center; }
    .city-hero__content .hero__ctas { justify-content: center; flex-direction: column; align-items: center; }
    .city-hero .hero__photo-card { max-width: 300px; margin: 0 auto; }
    .city-hero .hero__photo-badge--top { right: -8px; top: -8px; }
    .city-hero .hero__photo-badge--bottom { left: -8px; }
    .city-hero .hero__photo-badge { padding: 10px 14px; }
    .city-hero .hero__photo-badge strong { font-size: 1rem; }
    .city-hero .hero__photo-badge span { font-size: .65rem; }
}
@media(max-width:480px) {
    .city-hero__inner { padding-top: 90px; padding-bottom: 48px; gap: 28px; }
    .city-hero .hero__line { font-size: 1.8rem; }
    .city-hero__sub { font-size: .82rem; }
    .city-hero .hero__subtitle { font-size: .85rem; }
    .city-hero .hero__pill { padding: 6px 14px; gap: 8px; }
    .city-hero .hero__pill > span { font-size: .68rem; }
    .city-hero .hero__pill svg { width: 12px; height: 12px; }
    .city-hero .hero__photo-card { max-width: 260px; }
    .city-hero .hero__photo-badge--top { right: -4px; top: -6px; }
    .city-hero .hero__photo-badge--bottom { left: -4px; bottom: 16px; }
    .city-hero .hero__photo-badge { padding: 8px 12px; gap: 6px; }
    .city-hero .hero__photo-badge strong { font-size: .9rem; }
    .city-hero .tag { font-size: .72rem; padding: 6px 10px; }
    .city-hero .btn { width: 100%; }
}


/* ============================================
   CITY PAGE — Introduction Locale
   ============================================ */
.city-intro {
    padding: var(--section) 0;
    background: var(--white);
}
.city-intro__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: start;
}
.city-intro__text h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1.1;
    margin-bottom: 24px;
}
.city-intro__text p {
    color: var(--g500);
    line-height: 1.75;
    margin-bottom: 14px;
}
.city-intro__features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.city-intro__feature {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    border-radius: var(--r);
    transition: transform .3s var(--ease);
}
.city-intro__feature:hover { transform: translateX(4px); }
.city-intro__feature svg {
    width: 28px; height: 28px;
    flex-shrink: 0;
    color: var(--accent-text);
}
.city-intro__feature span {
    font-size: .88rem;
    font-weight: 500;
    color: var(--g600);
}

@media(max-width:768px) {
    .city-intro__grid { grid-template-columns: 1fr; gap: 32px; }
    .city-intro__text h2 { font-size: 1.6rem; }
}
@media(max-width:480px) {
    .city-intro__feature { padding: 14px 16px; gap: 12px; }
    .city-intro__feature svg { width: 22px; height: 22px; }
    .city-intro__feature span { font-size: .82rem; }
}


/* ============================================
   CITY PAGE — Types d'escaliers
   ============================================ */
.city-types {
    padding: var(--section) 0;
    background: var(--g50);
}
.city-type {
    position: relative;
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: clamp(32px, 5vw, 64px);
    align-items: start;
    background: var(--white);
    border: 1px solid var(--g100);
    border-radius: var(--r-xl);
    padding: clamp(24px, 3vw, 40px);
    margin-bottom: 32px;
    transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.city-type:last-of-type { margin-bottom: 0; }
.city-type:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }

/* Featured variant */
.city-type--featured {
    background: var(--black);
    color: var(--white);
    border-color: transparent;
}
.city-type--featured h3 { color: var(--white); }
.city-type--featured p { color: rgba(255,255,255,.6); }
.city-type--featured h4 { color: rgba(255,255,255,.5); }
.city-type--featured .city-type__col ul li { color: rgba(255,255,255,.7); border-color: rgba(255,255,255,.08); }
.city-type--featured .city-type__col ul li svg { color: var(--green); }
.city-type--featured .city-type__pros li::before { color: var(--green); }
.city-type--featured .city-type__price-badge { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.15); }
.city-type--featured .city-type__price-badge small { color: rgba(255,255,255,.5); }
.city-type--featured .city-type__price-badge strong { color: var(--white); }
.city-type--featured .city-type__svg { color: rgba(255,255,255,.15); }

.city-type__ribbon {
    position: absolute;
    top: 20px; right: 20px;
    padding: 6px 14px;
    background: linear-gradient(135deg, var(--accent-dark), var(--accent));
    color: var(--black);
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    border-radius: 100px;
    z-index: 2;
}

.city-type__visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.city-type__img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 4/5;
    background: var(--g50);
    border-radius: var(--r);
    overflow: hidden;
}
.city-type--featured .city-type__img { background: rgba(255,255,255,.04); }
.city-type__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s var(--ease);
}
.city-type:hover .city-type__img img { transform: scale(1.05); }
.city-type__svg {
    width: 100px;
    color: var(--g300);
    transition: transform .5s var(--ease);
}
.city-type:hover .city-type__svg { transform: scale(1.1); }

.city-type__price-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 14px 28px;
    background: var(--g50);
    border: 1px solid var(--g100);
    border-radius: var(--r);
    text-align: center;
    width: 100%;
}
.city-type__price-badge small { font-size: .72rem; color: var(--g400); }
.city-type__price-badge strong {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -.01em;
}
.city-type__price-badge strong span {
    font-size: .6em;
    font-weight: 500;
    color: var(--g400);
    margin-left: 2px;
}

.city-type__content h3 {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -.02em;
}
.city-type__content > p {
    color: var(--g500);
    line-height: 1.7;
    margin-bottom: 24px;
}
.city-type__details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 28px;
}
.city-type__col h4 {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--g400);
    margin-bottom: 12px;
}
.city-type__col ul { list-style: none; }
.city-type__col ul li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 8px 0;
    font-size: .85rem;
    color: var(--g600);
    border-top: 1px solid var(--g100);
}
.city-type__col ul li svg {
    width: 16px; height: 16px;
    flex-shrink: 0;
    color: var(--accent-text);
    margin-top: 2px;
}
.city-type__pros { list-style: none; }
.city-type__pros li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 8px 0;
    font-size: .85rem;
    color: var(--g600);
    border-top: 1px solid var(--g100);
}
.city-type__pros li::before {
    content: '\2713';
    color: var(--accent-text);
    font-weight: 700;
    flex-shrink: 0;
}

@media(max-width:900px) {
    .city-type { grid-template-columns: 1fr; gap: 24px; }
    .city-type__visual { max-width: 280px; margin: 0 auto; }
    .city-type__img { aspect-ratio: 1/1; }
    .city-type__details { grid-template-columns: 1fr; gap: 16px; }
    .city-type__content .btn { width: 100%; }
    .city-type__ribbon { top: 12px; right: 12px; }
}
@media(max-width:480px) {
    .city-type { padding: 20px; margin-bottom: 20px; }
    .city-type__visual { max-width: 200px; }
    .city-type__content h3 { font-size: 1.1rem; }
    .city-type__content > p { font-size: .85rem; margin-bottom: 16px; }
    .city-type__col ul li { font-size: .8rem; padding: 6px 0; }
    .city-type__pros li { font-size: .8rem; padding: 6px 0; }
    .city-type__price-badge { padding: 10px 16px; }
    .city-type__price-badge strong { font-size: 1.2rem; }
    .city-type__content .btn { font-size: .82rem; padding: 12px 20px; }
}


/* ============================================
   CITY PAGE — Why Klatem
   ============================================ */
.city-why {
    padding: var(--section) 0;
    background: var(--g50);
}

/* ---- Bento layout ---- */
.why__bento {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
}

/* ---- Base card ---- */
.why__card {
    position: relative;
    padding: 28px 24px;
    border-radius: var(--r);
    background: var(--white);
    border: 1px solid var(--g100);
    overflow: hidden;
    transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.why__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,.08);
    border-color: var(--accent);
}

/* ---- Hero card (large, spans left column + 2 rows) ---- */
.why__card--hero {
    grid-row: 1 / 3;
    grid-column: 1;
    background: var(--black);
    border-color: transparent;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.why__card--hero:hover {
    border-color: var(--accent);
}
.why__card-accent {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: var(--accent);
    opacity: .12;
    filter: blur(40px);
    pointer-events: none;
}
.why__card--hero .why__num {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
    letter-spacing: -.03em;
}
.why__card--hero h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.2;
}
.why__card--hero p {
    font-size: .88rem;
    color: rgba(255,255,255,.55);
    line-height: 1.6;
    margin-bottom: 20px;
}
.why__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .7rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: 8px 14px;
    border: 1px solid rgba(255,230,3,.2);
    border-radius: 100px;
    width: fit-content;
}
.why__badge svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* ---- Small cards ---- */
.why__icon {
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
    color: var(--accent-dark);
    background: var(--accent-soft);
    border-radius: 12px;
    padding: 10px;
    transition: background .3s var(--ease), color .3s var(--ease);
}
.why__card:hover .why__icon {
    background: var(--accent);
    color: var(--black);
}
.why__icon svg {
    width: 100%;
    height: 100%;
}
.why__card h3 {
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.why__card p {
    font-size: .82rem;
    color: var(--g500);
    line-height: 1.6;
}

/* ---- Responsive ---- */
@media(max-width:900px) {
    .why__bento {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .why__card--hero {
        grid-row: auto;
        grid-column: 1 / -1;
        padding: 32px 28px;
    }
    .why__card--hero .why__num {
        font-size: 2.8rem;
    }
}
@media(max-width:480px) {
    .why__bento {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .why__card { padding: 24px 20px; }
    .why__card--hero { padding: 28px 24px; }
    .why__card--hero .why__num { font-size: 2.4rem; }
}


/* ============================================
   CITY PAGE — Why (card grid variant)
   ============================================ */
.city-why__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.city-why__card {
    position: relative;
    padding: 28px 24px;
    border-radius: var(--r);
    background: var(--white);
    border: 1px solid var(--g100);
    overflow: hidden;
    transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.city-why__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,.08);
    border-color: var(--accent);
}
.city-why__icon {
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
    color: var(--accent-dark);
    background: var(--accent-soft);
    border-radius: 12px;
    padding: 10px;
    transition: background .3s var(--ease), color .3s var(--ease);
}
.city-why__card:hover .city-why__icon {
    background: var(--accent);
    color: var(--black);
}
.city-why__icon svg { width: 100%; height: 100%; }
.city-why__card h3 { font-size: .95rem; font-weight: 700; margin-bottom: 8px; }
.city-why__card p { font-size: .82rem; color: var(--g500); line-height: 1.6; }

@media(max-width:900px) {
    .city-why__grid { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width:480px) {
    .city-why__grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; gap: 12px; }
    .city-why__card { padding: 24px 20px; }
}

/* ============================================
   CITY PAGE — Process Timeline
   ============================================ */
.process__timeline {
    position: relative;
    max-width: 640px;
    margin: 0 auto;
}
.process__line {
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--g100);
}
.process__step {
    position: relative;
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    align-items: flex-start;
}
.process__step:last-child { margin-bottom: 0; }
.process__dot {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
}
.process__dot span {
    font-size: .75rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -.02em;
}
.process__card {
    flex: 1;
    padding: 24px;
    border-radius: var(--r);
}
.process__icon {
    width: 44px;
    height: 44px;
    margin-bottom: 12px;
    color: var(--accent-dark);
}
.process__icon svg { width: 100%; height: 100%; }
.process__card h3 { font-size: .95rem; font-weight: 700; margin-bottom: 6px; }
.process__card p { font-size: .82rem; color: var(--g500); line-height: 1.6; }

@media(max-width:600px) {
    .process__line { left: 18px; }
    .process__dot { width: 36px; height: 36px; }
    .process__dot span { font-size: .65rem; }
    .process__step { gap: 16px; margin-bottom: 20px; }
    .process__card { padding: 18px; }
    .process__card h3 { font-size: .88rem; }
    .process__card p { font-size: .78rem; }
}


/* ============================================
   CITY PAGE — Gallery
   ============================================ */
.city-gallery {
    padding: var(--section) 0;
    background: var(--g50);
}
.city-gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}
.city-gallery__item {
    border-radius: var(--r-xl);
    overflow: hidden;
    transition: transform .4s var(--ease);
}
.city-gallery__item:hover { transform: translateY(-4px); }
.city-gallery__img {
    aspect-ratio: 4/5;
    overflow: hidden;
}
img.city-gallery__img {
    width: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s var(--ease);
}
.city-gallery__item:hover img.city-gallery__img {
    transform: scale(1.04);
}
.city-gallery__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease);
}
.city-gallery__item:hover .city-gallery__photo {
    transform: scale(1.05);
}
.city-gallery__placeholder {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(155deg, #d8d5cf 0%, #c4c1bb 40%, #aeaba5 100%);
}
.city-gallery__placeholder svg {
    width: 70px;
    color: rgba(255,255,255,.4);
}
.city-gallery__item figcaption {
    padding: 18px 20px;
}
.city-gallery__item figcaption strong {
    display: block;
    font-size: .9rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.city-gallery__item figcaption span {
    display: block;
    font-size: .78rem;
    color: var(--g500);
    line-height: 1.5;
}
.city-gallery__item figcaption em {
    display: block;
    font-size: .72rem;
    color: var(--g400);
    margin-top: 6px;
    font-family: 'Inter', system-ui, sans-serif;
    font-style: italic;
    font-weight: 400;
}
.city-gallery__cta {
    text-align: center;
}

@media(max-width:900px) {
    .city-gallery__grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media(max-width:480px) {
    .city-gallery__grid { grid-template-columns: 1fr; max-width: 100%; margin: 0 auto 36px; gap: 16px; }
    .city-gallery__img { aspect-ratio: 3/2; }
    .city-gallery__item figcaption { padding: 14px 16px; }
    .city-gallery__item figcaption strong { font-size: .85rem; }
    .city-gallery__item figcaption span { font-size: .75rem; }
}


/* ============================================
   CITY PAGE — Guarantee
   ============================================ */
.city-guarantee {
    padding: var(--section) 0;
    background: var(--black);
    color: var(--white);
}
.city-guarantee .section-header h2 { color: var(--white); }
.city-guarantee .section-header p { color: rgba(255,255,255,.55); }
.city-guarantee__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.city-guarantee__card {
    padding: 36px 28px;
    border-radius: var(--r-xl);
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    text-align: center;
    transition: transform .4s var(--ease), background .3s;
}
.city-guarantee__card:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,.08);
}
.city-guarantee__icon {
    width: 52px; height: 52px;
    margin: 0 auto 20px;
    color: var(--accent-text);
}
.city-guarantee__icon svg { width: 100%; height: 100%; }
.city-guarantee__card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.city-guarantee__card p {
    font-size: .85rem;
    color: rgba(255,255,255,.55);
    line-height: 1.65;
}

@media(max-width:768px) {
    .city-guarantee__grid { grid-template-columns: 1fr; max-width: 100%; margin: 0 auto; gap: 12px; }
    .city-guarantee__card { padding: 28px 22px; }
    .city-guarantee__icon { width: 44px; height: 44px; margin-bottom: 14px; }
}


/* ============================================
   CITY PAGE — FAQ
   ============================================ */
.city-faq {
    padding: var(--section) 0;
    background: var(--white);
}
.city-faq__list {
    max-width: 760px;
    margin: 0 auto;
}
.city-faq__item {
    border: 1px solid var(--g100);
    border-radius: var(--r);
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color .3s, box-shadow .3s;
}
.city-faq__item:hover { border-color: var(--g200); }
.city-faq__item[open] {
    border-color: var(--black);
    box-shadow: 0 4px 16px rgba(0,0,0,.06);
}
.city-faq__item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    font-size: .92rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    transition: background .3s;
}
.city-faq__item summary::-webkit-details-marker { display: none; }
.city-faq__item summary::marker { display: none; content: ''; }
.city-faq__item summary:hover { background: var(--g50); }
.city-faq__item summary svg {
    width: 20px; height: 20px;
    flex-shrink: 0;
    color: var(--g400);
    transition: transform .3s var(--ease);
}
.city-faq__item[open] summary svg { transform: rotate(180deg); }
.city-faq__item summary span { flex: 1; }
.city-faq__answer {
    padding: 0 24px 20px;
    font-size: .88rem;
    color: var(--g500);
    line-height: 1.7;
}
.city-faq__answer p { margin-bottom: 8px; }
.city-faq__answer ul {
    list-style: none;
    margin-top: 8px;
}
.city-faq__answer ul li {
    padding: 6px 0;
    font-size: .85rem;
}

@media(max-width:480px) {
    .city-faq__item summary { padding: 16px 18px; font-size: .85rem; gap: 12px; }
    .city-faq__item summary svg { width: 18px; height: 18px; }
    .city-faq__answer { padding: 0 18px 16px; font-size: .82rem; }
    .city-faq__answer ul li { font-size: .8rem; }
}


/* ============================================
   CITY PAGE — Contact direct
   ============================================ */
.city-contact-direct {
    text-align: center;
    margin-top: 32px;
    font-size: .92rem;
    color: var(--g500);
}
.city-contact-direct a { color: var(--black); }
.city-contact-direct a:hover { color: var(--accent-text); }

@media(max-width:480px) {
    .city-contact-direct { font-size: .85rem; margin-top: 24px; }
}


/* ============================================
   CITY PAGE — Internal Links
   ============================================ */
.city-links {
    padding: var(--section) 0;
    background: var(--g50);
}
.city-links__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.city-links__col {
    padding: 32px 28px;
    border-radius: var(--r-xl);
}
.city-links__col h3 {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--g400);
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--g100);
}
.city-links__col ul { list-style: none; }
.city-links__col li { margin-bottom: 4px; }
.city-links__col a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    border-radius: var(--r-sm);
    font-size: .88rem;
    font-weight: 500;
    color: var(--g600);
    transition: all .3s var(--ease);
}
.city-links__col a:hover {
    background: var(--g50);
    color: var(--black);
    transform: translateX(4px);
}
.city-links__col a svg {
    width: 16px; height: 16px;
    flex-shrink: 0;
    opacity: 0;
    transform: translateX(-4px);
    transition: all .3s var(--ease);
    color: var(--accent-text);
}
.city-links__col a:hover svg {
    opacity: 1;
    transform: translateX(0);
}

@media(max-width:768px) {
    .city-links__grid { grid-template-columns: 1fr; gap: 14px; }
    .city-links__col { padding: 24px 20px; }
    .city-links__col a { padding: 10px 8px; font-size: .85rem; }
}


/* ============================================
   CITY PAGE — Location / Map
   ============================================ */
.city-location {
    padding: var(--section) 0;
    background: var(--white);
}
.city-location__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
}
.city-location__map {
    border-radius: var(--r-xl);
    overflow: hidden;
    background: var(--g100);
    min-height: 350px;
}
.city-location__map iframe {
    width: 100%; height: 100%;
    min-height: 350px;
    display: block;
    border: 0;
}
.city-location__info h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1.15;
    margin-bottom: 28px;
}
.city-location__details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}
.city-location__row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.city-location__row svg {
    width: 22px; height: 22px;
    flex-shrink: 0;
    color: var(--accent-text);
    margin-top: 2px;
}
.city-location__row strong {
    display: block;
    font-size: .82rem;
    font-weight: 700;
    margin-bottom: 2px;
}
.city-location__row span,
.city-location__row a {
    font-size: .88rem;
    color: var(--g500);
}
.city-location__row a:hover { color: var(--black); }
.city-location__note {
    font-size: .85rem;
    color: var(--g400);
    line-height: 1.6;
    margin-bottom: 28px;
}

@media(max-width:768px) {
    .city-location__grid { grid-template-columns: 1fr; gap: 32px; }
    .city-location__map { min-height: 280px; }
    .city-location__map iframe { min-height: 280px; }
    .city-location__info h2 { font-size: 1.5rem; margin-bottom: 20px; }
    .city-location__info .btn { width: 100%; }
}
@media(max-width:480px) {
    .city-location__map { min-height: 240px; }
    .city-location__map iframe { min-height: 240px; }
    .city-location__row { gap: 10px; }
    .city-location__row svg { width: 20px; height: 20px; }
    .city-location__row strong { font-size: .78rem; }
    .city-location__row span,
    .city-location__row a { font-size: .82rem; }
    .city-location__note { font-size: .8rem; }
}


/* ============================================
   CITY PAGE — Global mobile refinements
   ============================================ */
@media(max-width:480px) {
    /* Tighter section spacing on small phones */
    .city-intro,
    .city-types,
    .city-why,
    .city-gallery,
    .city-guarantee,
    .city-faq,
    .city-links,
    .city-location { padding: clamp(48px, 10vw, 80px) 0; }

    /* Section headers */
    .city-types .section-header h2,
    .city-why .section-header h2,
    .city-gallery .section-header h2,
    .city-guarantee .section-header h2,
    .city-faq .section-header h2,
    .city-links .section-header h2 { font-size: 1.5rem; }

    .city-types .section-header p,
    .city-why .section-header p,
    .city-gallery .section-header p,
    .city-guarantee .section-header p { font-size: .85rem; }

    /* Ensure reviews match */
    .reviews .section-header h2 { font-size: 1.5rem; }
    .reviews__rating { gap: 12px; padding: 12px 20px; }
    .reviews__stars-big svg { width: 22px; height: 22px; }
    .reviews__score > strong { font-size: 1.1rem; }
}


/* ============================================
   PRODUCT PAGE — Escalier Droit
   ============================================ */

/* ---------- HERO ---------- */
.prod-hero {
    position: relative;
    background: var(--black);
    color: var(--white);
    padding: clamp(120px, 15vw, 180px) 0 var(--section);
    overflow: hidden;
}
.prod-hero--compact {
    padding-bottom: clamp(48px, 6vw, 80px);
}
.prod-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 40%, rgba(255,230,3,.06), transparent),
        radial-gradient(ellipse 60% 50% at 80% 60%, rgba(255,230,3,.04), transparent);
    pointer-events: none;
}
.prod-hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
}
.prod-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .04em;
    padding: 6px 16px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 100px;
    color: rgba(255,255,255,.8);
    margin-bottom: 20px;
}
.prod-hero__badge .stars {
    display: inline-flex;
    gap: 2px;
    color: var(--accent);
}
.prod-hero__badge .stars svg {
    width: 13px;
    height: 13px;
}
.prod-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1.08;
    margin-bottom: 16px;
}
.prod-hero h1 .accent {
    color: var(--accent);
}
.prod-hero__subtitle {
    font-size: clamp(.95rem, 1.4vw, 1.1rem);
    color: rgba(255,255,255,.65);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 520px;
}
.prod-hero__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}
.prod-hero__stat {
    text-align: center;
    padding: 16px 8px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--r-sm);
}
.prod-hero__stat strong {
    display: block;
    font-size: clamp(1rem, 1.6vw, 1.25rem);
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 4px;
}
.prod-hero__stat span {
    font-size: .7rem;
    color: rgba(255,255,255,.55);
    letter-spacing: .02em;
    line-height: 1.3;
    display: block;
}
.prod-hero__ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.prod-hero__trust {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: .78rem;
    color: rgba(255,255,255,.45);
    flex-wrap: wrap;
}
.prod-hero__trust span {
    display: flex;
    align-items: center;
    gap: 6px;
}
.prod-hero__trust svg {
    width: 15px;
    height: 15px;
    color: var(--green);
}
.prod-hero__photo {
    position: relative;
    border-radius: var(--r-xl);
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: 0 32px 80px rgba(0,0,0,.4);
}
.prod-hero__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.prod-hero__photo-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0,0,0,.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,230,3,.3);
    border-radius: var(--r-sm);
    padding: 12px 18px;
    text-align: center;
    z-index: 2;
}
.prod-hero__photo-badge strong {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1.1;
}
.prod-hero__photo-badge span {
    font-size: .72rem;
    color: rgba(255,255,255,.7);
    letter-spacing: .02em;
}
.prod-hero__photo::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(255,255,255,.08);
    pointer-events: none;
}

@media (max-width: 900px) {
    .prod-hero { padding-top: clamp(100px, 12vw, 140px); padding-bottom: clamp(40px, 6vw, 60px); }
    .prod-hero__inner { grid-template-columns: 1fr; gap: 32px; }
    .prod-hero__photo {
        max-width: 100%;
        margin: 0 auto;
        aspect-ratio: 16/10;
        border-radius: var(--r);
        box-shadow: 0 20px 50px rgba(0,0,0,.3);
    }
    .prod-hero__photo-badge {
        bottom: 12px;
        left: 12px;
        padding: 8px 14px;
    }
    .prod-hero__photo-badge strong { font-size: 1.1rem; }
    .prod-hero h1 { font-size: clamp(1.8rem, 7vw, 2.6rem); }
    .prod-hero__subtitle { font-size: .95rem; margin-bottom: 20px; }
    .prod-hero__stats { grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 24px; }
    .prod-hero__stat { padding: 12px 6px; }
    .prod-hero__stat strong { font-size: .95rem; }
    .prod-hero__stat span { font-size: .65rem; }
    .prod-hero__ctas { margin-bottom: 16px; }
    .prod-hero__ctas .btn { width: 100%; justify-content: center; }
    .prod-hero__trust { gap: 12px; font-size: .72rem; }
    .prod-hero__badge { font-size: .7rem; padding: 5px 12px; margin-bottom: 14px; }
    .prod-hero__badge .stars svg { width: 11px; height: 11px; }
}
@media (max-width: 480px) {
    .prod-hero { padding-top: 90px; }
    .prod-hero__inner { gap: 24px; }
    .prod-hero__photo { aspect-ratio: 4/3; border-radius: 12px; }
    .prod-hero h1 { font-size: 1.7rem; margin-bottom: 12px; }
    .prod-hero__subtitle { font-size: .88rem; line-height: 1.6; }
    .prod-hero__stats { grid-template-columns: repeat(3, 1fr); gap: 6px; margin-bottom: 20px; }
    .prod-hero__stat { padding: 10px 4px; border-radius: 8px; }
    .prod-hero__stat strong { font-size: .85rem; }
    .prod-hero__trust { flex-direction: column; align-items: flex-start; gap: 6px; }
}


/* ---------- INTRO ---------- */
.prod-intro {
    padding: var(--section) 0;
    background: var(--white);
}
.prod-intro__inner {
    max-width: 780px;
    margin: 0 auto;
}
.prod-intro h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1.12;
    margin-bottom: 32px;
    text-align: center;
}
.prod-intro p {
    font-size: clamp(.92rem, 1.2vw, 1.02rem);
    color: var(--g500);
    line-height: 1.8;
    margin-bottom: 20px;
}
.prod-intro p:last-child { margin-bottom: 0; }


/* ---------- SPECS TABLE ---------- */
.prod-specs {
    padding: var(--section) 0;
    background: var(--g50);
}
.prod-specs__table {
    width: 100%;
    border-collapse: collapse;
    border-radius: var(--r);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--white);
    max-width: 780px;
    margin: 0 auto;
}
.prod-specs__table tr:nth-child(even) {
    background: var(--g50);
}
.prod-specs__table td {
    padding: 18px 24px;
    font-size: .92rem;
    border-bottom: 1px solid var(--g100);
    vertical-align: top;
}
.prod-specs__table td:first-child {
    font-weight: 700;
    color: var(--black);
    width: 40%;
    white-space: nowrap;
}
.prod-specs__table td:last-child {
    color: var(--g500);
}
.prod-specs__table tr:last-child td {
    border-bottom: none;
}
.prod-specs__price {
    color: var(--black) !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
}

@media (max-width: 600px) {
    .prod-specs__table td { padding: 14px 16px; font-size: .85rem; }
    .prod-specs__table td:first-child { white-space: normal; }
}


/* ---------- WHY KLATEM ---------- */
.prod-why {
    padding: var(--section) 0;
    background: var(--white);
}
.prod-why__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.prod-why__card {
    background: var(--white);
    border: 1px solid var(--g100);
    border-radius: var(--r);
    padding: 32px 28px;
    transition: all .35s var(--ease);
}
.prod-why__card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}
.prod-why__icon {
    width: 48px;
    height: 48px;
    background: var(--g50);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: background .3s var(--ease);
}
.prod-why__card:hover .prod-why__icon {
    background: var(--accent);
}
.prod-why__icon svg {
    width: 24px;
    height: 24px;
    color: var(--black);
}
.prod-why__card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -.01em;
}
.prod-why__card p {
    font-size: .85rem;
    color: var(--g400);
    line-height: 1.65;
}

@media (max-width: 900px) { .prod-why__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .prod-why__grid { grid-template-columns: 1fr; } }


/* ---------- DETAILS ---------- */
.prod-details {
    padding: var(--section) 0;
    background: var(--g50);
}
.prod-details__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.prod-details__card {
    background: var(--white);
    border: 1px solid var(--g100);
    border-radius: var(--r);
    padding: 32px 28px;
}
.prod-details__card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -.01em;
    display: flex;
    align-items: center;
    gap: 10px;
}
.prod-details__card h3 svg {
    width: 22px;
    height: 22px;
    color: var(--accent-dark);
    flex-shrink: 0;
}
.prod-details__card ul {
    list-style: none;
    padding: 0;
}
.prod-details__card li {
    font-size: .88rem;
    color: var(--g500);
    line-height: 1.7;
    padding: 4px 0;
    padding-left: 20px;
    position: relative;
}
.prod-details__card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}

@media (max-width: 600px) { .prod-details__grid { grid-template-columns: 1fr; } }


/* ---------- GALLERY ---------- */
.prod-gallery {
    padding: var(--section) 0;
    background: var(--white);
}
.prod-gallery__main {
    max-width: 780px;
    margin: 0 auto;
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}
.prod-gallery__main img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    display: block;
}
.prod-gallery__cta {
    text-align: center;
    margin-top: 32px;
}
.prod-gallery__items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 32px;
}
.prod-gallery__item {
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
    text-decoration: none;
    color: var(--black);
    display: block;
}
.prod-gallery__item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.prod-gallery__item img { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; }
.prod-gallery__item span { display: block; padding: 10px 14px; font-size: .9rem; font-weight: 600; }


/* ---------- MID-PAGE CTA ---------- */
.mid-cta {
    padding: clamp(32px, 5vw, 48px) 0;
}
.mid-cta__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    padding: clamp(28px, 4vw, 40px) clamp(24px, 4vw, 48px);
    background: var(--black);
    border-radius: var(--r-xl);
    text-align: center;
}
.mid-cta__inner p {
    font-size: clamp(.95rem, 1.4vw, 1.1rem);
    color: rgba(255,255,255,.8);
    font-weight: 500;
    margin: 0;
}
@media (max-width: 600px) {
    .mid-cta__inner { flex-direction: column; gap: 16px; }
}


/* ---------- COMPARE ---------- */
.prod-compare {
    padding: var(--section) 0;
    background: var(--g50);
}
.prod-compare__table {
    width: 100%;
    border-collapse: collapse;
    border-radius: var(--r);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--white);
    max-width: 900px;
    margin: 0 auto;
}
.prod-compare__table th,
.prod-compare__table td {
    padding: 16px 20px;
    font-size: .88rem;
    text-align: center;
    border-bottom: 1px solid var(--g100);
}
.prod-compare__table thead th {
    background: var(--black);
    color: var(--white);
    font-weight: 700;
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: 18px 20px;
}
.prod-compare__table thead th:first-child {
    text-align: left;
}
.prod-compare__table tbody td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--black);
}
.prod-compare__table tbody td {
    color: var(--g500);
}
.prod-compare__table tbody tr:nth-child(even) {
    background: var(--g50);
}
.prod-compare__table tbody tr:last-child td {
    border-bottom: none;
}
.prod-compare__table .prod-compare__highlight {
    background: rgba(255,230,3,.08) !important;
    font-weight: 700;
    color: var(--black);
}
.prod-compare__table a {
    color: var(--black);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 600;
    font-size: .82rem;
}
.prod-compare__table a:hover {
    color: var(--accent-dark);
}

@media (max-width: 700px) {
    .prod-compare .container { overflow: visible; }
    .prod-compare__table {
        display: block;
        width: 100%;
        box-shadow: none;
        background: none;
        overflow: visible;
    }
    .prod-compare__table thead { display: none; }
    .prod-compare__table tbody { display: block; }
    .prod-compare__table tbody tr {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        background: var(--white);
        border-radius: var(--r);
        overflow: hidden;
        box-shadow: var(--shadow);
        margin-bottom: 12px;
    }
    .prod-compare__table tbody td {
        padding: 12px 10px;
        font-size: .8rem;
        text-align: center;
        border-bottom: none;
        color: var(--g500);
    }
    .prod-compare__table tbody td:first-child {
        grid-column: 1 / -1;
        background: var(--g50);
        color: var(--black);
        font-weight: 700;
        font-size: .75rem;
        text-transform: uppercase;
        letter-spacing: .04em;
        padding: 10px 16px;
        text-align: left;
        border-bottom: 1px solid var(--g100);
    }
    .prod-compare__table .prod-compare__highlight {
        background: rgba(255,230,3,.1) !important;
        font-weight: 700;
        color: var(--black);
    }
}


/* ---------- PROCESS (dark) ---------- */
.prod-process {
    padding: var(--section) 0;
    background: var(--black);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.prod-process::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 40% at 30% 70%, rgba(255,230,3,.05), transparent),
        radial-gradient(ellipse 40% 30% at 70% 30%, rgba(255,230,3,.03), transparent);
    pointer-events: none;
}
.prod-process .section-header h2 { color: var(--white); }
.prod-process .section-header p { color: rgba(255,255,255,.5); }
.prod-process__timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
}
.prod-process__step {
    position: relative;
    padding: 28px 24px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--r);
    transition: all .35s var(--ease);
}
.prod-process__step:hover {
    background: rgba(255,255,255,.07);
    border-color: rgba(255,230,3,.2);
    transform: translateY(-4px);
}
.prod-process__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--black);
    font-weight: 800;
    font-size: .82rem;
    margin-bottom: 16px;
}
.prod-process__step h3 {
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--white);
}
.prod-process__step p {
    font-size: .82rem;
    color: rgba(255,255,255,.5);
    line-height: 1.6;
}

@media (max-width: 900px) { .prod-process__timeline { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .prod-process__timeline { grid-template-columns: 1fr; } }


/* ---------- VILLES ---------- */
.prod-villes {
    padding: var(--section) 0;
    background: var(--white);
}
.prod-villes__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 700px;
    margin: 0 auto;
}
.prod-villes__link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 20px;
    background: var(--g50);
    border: 1px solid var(--g100);
    border-radius: var(--r-sm);
    font-weight: 600;
    font-size: .9rem;
    transition: all .3s var(--ease);
}
.prod-villes__link:hover {
    border-color: var(--accent);
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}
.prod-villes__link svg {
    width: 16px;
    height: 16px;
    opacity: .4;
    transition: opacity .3s;
}
.prod-villes__link:hover svg { opacity: 1; }

@media (max-width: 600px) { .prod-villes__grid { grid-template-columns: repeat(2, 1fr); } }


/* ---------- OTHER PRODUCTS ---------- */
.prod-other {
    padding: var(--section) 0;
    background: var(--g50);
}
.prod-other__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 700px;
    margin: 0 auto;
}
.prod-other__card {
    display: block;
    background: var(--white);
    border: 1px solid var(--g100);
    border-radius: var(--r);
    padding: 32px 28px;
    text-align: center;
    transition: all .35s var(--ease);
}
.prod-other__card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}
.prod-other__card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.prod-other__card .prod-other__price {
    display: block;
    font-size: .85rem;
    color: var(--g400);
    margin-bottom: 20px;
}
.prod-other__card .prod-other__price strong {
    color: var(--black);
    font-size: 1.1rem;
}

@media (max-width: 600px) { .prod-other__grid { grid-template-columns: 1fr; } }


/* ============================================
   GLOBAL RESPONSIVE FIXES
   ============================================ */

/* FAQ / article word-break safety */
.city-faq__answer,
.article-prose,
.article-callout { overflow-wrap: break-word; word-break: break-word; }

/* Marquee GPU optimization */
.marquee__track { will-change: transform; backface-visibility: hidden; }

/* ---- 900px — Tablet ---- */
@media(max-width:900px){
    .models__grid { grid-template-columns: repeat(2,1fr); max-width: 100%; }
    .process__bar-text { white-space: normal; text-align: center; max-width: 80px; }
}

/* ---- 768px ---- */
@media(max-width:768px){
    .city-guarantee__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---- 600px ---- */
@media(max-width:600px){
    :root { --section: clamp(48px, 10vw, 80px); }
    .models__grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
    .models__grid--duo { grid-template-columns: 1fr; max-width: 440px; }
    .footer__grid { grid-template-columns: 1fr; }
    .city-guarantee__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; gap: 12px; }
    .city-type__visual { max-width: 100%; }
    .city-type__img { aspect-ratio: 16/10; }
    /* Prevent long button text from overflowing */
    .btn { white-space: normal; max-width: 100%; text-align: center; }

    /* Kill marquee negative margins that push beyond viewport */
    .zone__marquee { margin-left: 0; margin-right: 0; }

    /* Replace slide animations with fade-only on mobile (no translateX overflow) */
    .anim[data-anim="slide-left"],
    .anim[data-anim="slide-right"] { transform: none; }
}

/* ---- 480px — Small phones ---- */
@media(max-width:480px){
    /* Hero */
    .hero__line { font-size: 1.65rem; }
    .hero__pill { padding: 6px 14px; gap: 8px; }
    .hero__pill > span { font-size: .68rem; }
    .hero__inner { padding-top: 90px; padding-bottom: 48px; gap: 24px; }
    .hero__photo-card { max-width: 260px; }
    .hero__photo-badge { padding: 8px 12px; gap: 6px; }
    .hero__photo-badge strong { font-size: .95rem; }
    .hero__photo-badge span { font-size: .62rem; }
    .hero__photo-badge--top { right: -4px; top: -6px; }
    .hero__photo-badge--bottom { left: -4px; bottom: 16px; }
    .hero__ctas { flex-direction: column; align-items: stretch; }
    .hero__ctas .btn { width: 100%; justify-content: center; text-align: center; }
    .tag { font-size: .72rem; padding: 6px 10px; }

    /* Section headers */
    .section-header h2 { font-size: 1.5rem; }
    .section-header p { font-size: .85rem; }

    /* Transform / Intro */
    .transform__highlight { padding: 16px; margin: 16px 0 24px; }
    .transform__highlight p { font-size: .92rem; }

    /* Model cards */
    .model-card__body { padding: 20px 18px; }
    .model-card__body h3 { font-size: 1.2rem; }

    /* Process */
    .process__step { aspect-ratio: 3/2; }
    .process__overlay { padding: 18px 16px; }
    .process__overlay h3 { font-size: .95rem; }
    .process__overlay p { font-size: .75rem; }

    /* Buttons */
    .btn--lg { padding: 14px 28px; font-size: .9rem; }

    /* Form / Devis */
    .form { padding: 20px 16px; }
    .form__radio-card svg { width: 24px; height: 30px; }
    .form__radio-card span { padding: 14px 8px 12px; gap: 4px; }
    .form__radio-card span strong { font-size: .72rem; }
    .form__radio-card span small { font-size: .62rem; }

    /* Footer */
    .footer__bottom nav { gap: 12px; flex-wrap: wrap; justify-content: center; }

    /* Villes photo */
    .villes__photo { height: auto; aspect-ratio: 16/9; }
}
