/* ══════════════════════════════════════════════
   MONARC — Consulting & Dev
   Palette : Navy #0a1628 · Argent #c2c8d4 · Or (discret) #b08924
══════════════════════════════════════════════ */

:root {
    /* backgrounds */
    --bg: #051123;
    --bg-2: #010d1c;
    --bg-card: #030f1f;

    /* argent — accent principal */
    --silver:    #c2c8d4;
    --silver-l:  #dde2ec;

    /* or — usage minimal, intentionnel */
    --gold: #644d14;
    --gold-l:    #c9a030;

    /* texte */
    --text:      #dde4ef;
    --text-m: #98a8bd;
    --text-d:    #4d6080;

    /* bordures */
    --bdr:       #172035;
    --bdr-s:     rgba(194,200,212,.1);
}

/* ── Reset ──────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    line-height: 1.65;
    overflow-x: hidden;
    cursor: none;
}

/* ── Scrollbar ──────────────────────────────── */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--silver); opacity: .4; }

/* ── Selection ──────────────────────────────── */
::selection { background: var(--silver); color: var(--bg); }

/* ══════════════════════════════════════════════
   CURSEUR PERSONNALISÉ
══════════════════════════════════════════════ */
#cur {
    position: fixed; width: 7px; height: 7px;
    background: var(--silver);
    border-radius: 50%; pointer-events: none;
    z-index: 9999; transform: translate(-50%,-50%);
    transition: background .25s, width .25s, height .25s;
}
#cur-ring {
    position: fixed; width: 30px; height: 30px;
    border: 1px solid rgba(194,200,212,.3);
    border-radius: 50%; pointer-events: none;
    z-index: 9998; transform: translate(-50%,-50%);
    transition: width .3s, height .3s, border-color .3s;
}
#cur.on      { width: 10px; height: 10px; background: var(--gold); }
#cur-ring.on { width: 44px; height: 44px; border-color: rgba(176,137,36,.5); }

/* ══════════════════════════════════════════════
   TYPO & LAYOUT
══════════════════════════════════════════════ */
h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400; line-height: 1.05;
}

/* or discret sur les labels de catégorie */
.label {
    font-family: 'Inter', sans-serif;
    font-size: .62rem; font-weight: 500;
    letter-spacing: .28em; text-transform: uppercase;
    color: var(--gold);
}

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 48px; }

/* ══════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════ */
nav {
    position: fixed; inset: 0 0 auto 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 30px 48px;
    transition: padding .4s, background .4s, border-color .4s, backdrop-filter .4s;
    border-bottom: 1px solid transparent;
}
nav.s {
    padding: 18px 48px;
    background: rgba(10,22,40,.96);
    backdrop-filter: blur(16px);
    border-bottom-color: var(--bdr);
}

.logo { text-decoration: none; }
.logo-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.45rem; font-weight: 600;
    color: var(--text); letter-spacing: .12em;
}
/* or sur le sous-titre du logo */
.logo-sub {
    display: block;
    font-size: .58rem; font-weight: 400;
    letter-spacing: .32em; text-transform: uppercase;
    color: var(--gold); margin-top: -3px;
}

.nav-links { display: flex; align-items: center; gap: 44px; list-style: none; }
.nav-links a {
    text-decoration: none;
    font-size: .72rem; font-weight: 400;
    letter-spacing: .16em; text-transform: uppercase;
    color: var(--text-m);
    transition: color .3s;
    position: relative; padding-bottom: 2px;
}
.nav-links a::after {
    content: ''; position: absolute;
    bottom: -2px; left: 0; width: 0; height: 1px;
    background: var(--silver);
    transition: width .3s ease;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

/* toggle langue */
.lang {
    display: flex; align-items: center; gap: 10px;
    padding: 7px 16px;
    border: 1px solid var(--bdr); border-radius: 2px;
    transition: border-color .3s;
}
.lang:hover { border-color: var(--bdr-s); border-color: rgba(194,200,212,.25); }
.lang button {
    background: none; border: none; cursor: none;
    font-family: 'Inter', sans-serif;
    font-size: .62rem; font-weight: 500;
    letter-spacing: .18em; text-transform: uppercase;
    color: var(--text-m); padding: 0;
    transition: color .3s;
}
.lang button.act { color: var(--gold); }
.lang-sep { width: 1px; height: 9px; background: var(--bdr); }

/* hamburger */
.burger {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: none; padding: 4px;
}
.burger span {
    display: block; width: 22px; height: 1px;
    background: var(--text-m); transition: all .3s;
}
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(4px,4px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px,-4px); }

/* menu mobile */
.mobile-menu {
    display: none; position: fixed; inset: 0;
    background: rgba(10,22,40,.98); z-index: 99;
    flex-direction: column;
    align-items: center; justify-content: center; gap: 44px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
    text-decoration: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem; font-weight: 300;
    color: var(--text-m); letter-spacing: .08em;
    transition: color .3s;
}
.mobile-menu a:hover { color: var(--text); }

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
#hero {
    min-height: 100vh; display: flex; align-items: center;
    background: var(--bg);
    position: relative; overflow: hidden; padding-top: 90px;
}

/* lueur bleutée-argentée — donne la profondeur */
.h-glow {
    position: absolute; inset: 0; pointer-events: none;
    background:
        radial-gradient(ellipse 80% 70% at 65% 45%,  rgba(100,140,220,.09) 0%, transparent 65%),
        radial-gradient(ellipse 50% 45% at 15% 75%,  rgba(194,200,212,.04) 0%, transparent 55%),
        radial-gradient(ellipse 30% 30% at 85% 15%,  rgba(176,137,36,.04) 0%, transparent 50%);
}

/* noise */
.h-noise {
    position: absolute; inset: 0; opacity: .025; pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%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-size: 180px;
}

/* vignette bas */
.h-vign {
    position: absolute; bottom: 0; left: 0; right: 0; height: 30%;
    background: linear-gradient(0deg, var(--bg) 0%, transparent 100%);
    pointer-events: none;
}

/* spotlight souris */
#h-spot {
    position: absolute; inset: 0; pointer-events: none;
    transition: background .06s linear;
}

/* liseré argenté en haut */
.h-line {
    position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--silver) 50%, transparent 100%);
    opacity: .2;
}

/* trait vertical décoratif */
.h-vert {
    position: absolute; top: 90px; bottom: 40px; right: 80px;
    width: 1px; background: var(--bdr);
}
.h-vert::after {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 35%;
    background: linear-gradient(180deg, var(--silver), transparent);
    opacity: .2;
}

.hero-body {
    position: relative; z-index: 1;
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.h-eyebrow {
    display: flex; align-items: center; gap: 18px; margin-bottom: 36px;
}
.h-eline { width: 44px; height: 1px; background: var(--silver); opacity: .35; }

.h-title {
    font-size: clamp(3.8rem, 8.5vw, 7.5rem);
    font-weight: 300; line-height: .93;
    color: var(--text); margin-bottom: 28px;
    letter-spacing: -.01em;
}
.h-title em { font-style: italic; }

/* or sur le mot clé du hero — seul moment vraiment doré */
.h-title .acc {
    color: var(--gold);
    text-shadow:
        0 0 60px rgba(176,137,36,.4),
        0 0 120px rgba(176,137,36,.15);
}

.h-sub {
    display: flex; align-items: center; gap: 0;
    flex-wrap: wrap; margin-bottom: 60px;
    justify-content: center;
}
.h-sub-item {
    font-size: .75rem; letter-spacing: .18em; text-transform: uppercase;
    color: var(--text-m);
}
/* petits points or */
.h-sub-dot {
    width: 3px; height: 3px; border-radius: 50%;
    background: var(--gold); margin: 0 16px; opacity: .6;
}

.h-actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; justify-content: center; }

/* ── Bouton primaire — argent, révèle l'or ── */
.btn-p {
    display: inline-flex; align-items: center; gap: 12px;
    background: var(--silver-l);
    color: var(--bg); text-decoration: none;
    font-size: .72rem; font-weight: 500;
    letter-spacing: .16em; text-transform: uppercase;
    padding: 16px 34px;
    position: relative; overflow: hidden;
    transition: color .35s;
}
.btn-p::before {
    content: ''; position: absolute; inset: 0;
    background: var(--gold);   /* la touche or se révèle au hover */
    transform: translateX(-102%);
    transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.btn-p:hover { color: var(--bg); }
.btn-p:hover::before { transform: translateX(0); }
.btn-p > * { position: relative; z-index: 1; }

/* ── Bouton fantôme ─────────────────────── */
.btn-g {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--text-m); text-decoration: none;
    font-size: .72rem; font-weight: 400;
    letter-spacing: .16em; text-transform: uppercase;
    padding: 16px 0; border-bottom: 1px solid var(--bdr);
    transition: color .3s, border-color .3s;
}
.btn-g:hover { color: var(--text); border-color: var(--silver); }

/* indicateur de défilement */
.h-scroll {
    position: absolute; bottom: 44px; left: 48px;
    display: flex; align-items: center; gap: 14px;
}
.h-scroll-bar {
    width: 56px; height: 1px; background: var(--bdr);
    position: relative; overflow: hidden;
}
.h-scroll-bar::after {
    content: ''; position: absolute; top: 0; left: -100%;
    width: 100%; height: 100%; background: var(--silver);
    animation: sbar 2s ease-in-out infinite; opacity: .5;
}
@keyframes sbar {
    0%   { left: -100%; }
    50%  { left: 0%; }
    100% { left: 100%; }
}
.h-scroll-txt {
    font-size: .58rem; letter-spacing: .28em;
    text-transform: uppercase; color: var(--text-d);
}

/* ══════════════════════════════════════════════
   SECTIONS — base
══════════════════════════════════════════════ */
section { padding: 128px 0; }

.sec-head { margin-bottom: 72px; }
.sec-head .label { margin-bottom: 18px; }
.sec-title {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 300; color: var(--text);
}
.sec-title em { font-style: italic; }
.sec-rule {
    width: 38px; height: 1px;
    background: var(--silver); opacity: .3;
    margin-top: 22px;
}

/* Fade-up */
.fu {
    opacity: 0; transform: translateY(28px);
    transition: opacity .85s ease, transform .85s ease;
}
.fu.vis { opacity: 1; transform: translateY(0); }
.fu:nth-child(2) { transition-delay: .1s; }
.fu:nth-child(3) { transition-delay: .2s; }
.fu:nth-child(4) { transition-delay: .3s; }

/* ══════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════ */
#services {
    background: var(--bg-2);
    border-top: 1px solid var(--bdr);
    border-bottom: 1px solid var(--bdr);
    position: relative;
}

/* lueur bleue subtile en coin haut-droit */
#services::before {
    content: '';
    position: absolute; inset: 0; pointer-events: none;
    background:
        radial-gradient(ellipse 50% 60% at 100% 0%,   rgba(100,140,220,.06) 0%, transparent 60%),
        radial-gradient(ellipse 35% 40% at 0%   100%, rgba(194,200,212,.04) 0%, transparent 55%);
}

.svc-grid {
    position: relative;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1px; background: var(--bdr);
}

.svc-card {
    background: var(--bg-2); padding: 56px 52px;
    position: relative; overflow: hidden;
    transition: background .4s;
}

/* angle argenté en coin supérieur gauche */
.svc-card::before {
    content: '';
    position: absolute; top: 0; left: 0;
    width: 0; height: 0;
    border-style: solid;
    border-width: 20px 20px 0 0;
    border-color: rgba(194,200,212,.15) transparent transparent transparent;
    transition: border-width .3s, border-color .3s;
}
.svc-card:hover::before {
    border-width: 28px 28px 0 0;
    border-color: rgba(194,200,212,.3) transparent transparent transparent;
}

/* liseré argent→or au bas au hover */
.svc-card::after {
    content: ''; position: absolute;
    bottom: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, var(--silver), var(--gold));
    transform: scaleX(0); transform-origin: left;
    transition: transform .45s cubic-bezier(.4,0,.2,1);
}
.svc-card:hover { background: var(--bg-card); }
.svc-card:hover::after { transform: scaleX(1); }

/* icônes argentées */
.svc-icon {
    width: 36px; height: 36px;
    color: var(--silver); opacity: .7;
    margin-bottom: 28px;
    transition: opacity .3s, color .3s;
}
.svc-card:hover .svc-icon { opacity: 1; color: var(--silver-l); }

.svc-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: .72rem; font-weight: 300;
    color: var(--silver); opacity: .2;
    letter-spacing: .2em; margin-bottom: 12px;
}
.svc-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem; font-weight: 400;
    color: var(--text); margin-bottom: 14px; line-height: 1.15;
}
.svc-desc {
    font-size: .83rem; color: var(--text-m); line-height: 1.85;
}
.svc-arr {
    position: absolute; bottom: 48px; right: 48px;
    width: 28px; height: 28px; color: var(--text-d);
    transition: color .3s, transform .3s;
}
.svc-card:hover .svc-arr { color: var(--gold); transform: translate(4px,-4px); }

/* ══════════════════════════════════════════════
   EXPERTISE
══════════════════════════════════════════════ */
#expertise {
    background: var(--bg);
    position: relative;
}

/* liseré argenté gauche */
#expertise::before {
    content: '';
    position: absolute; top: 0; left: 0; bottom: 0; width: 1px;
    background: linear-gradient(180deg, transparent, rgba(194,200,212,.2) 30%, rgba(194,200,212,.2) 70%, transparent);
}

.exp-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 88px; align-items: center;
}
.exp-txt p {
    font-size: .87rem; color: var(--text-m);
    line-height: 1.95; margin-top: 28px;
}
.exp-txt p + p { margin-top: 14px; }

.exp-stats {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1px; background: var(--bdr);
}
.stat {
    background: var(--bg-card); padding: 36px 32px;
    border-top: 1px solid rgba(194,200,212,.2);
    transition: border-top-color .3s, background .3s;
}
.stat:hover {
    background: #112240;
    border-top-color: var(--gold); /* la touche or au hover */
}
.stat-n {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem; font-weight: 300;
    color: var(--text); line-height: 1; margin-bottom: 8px;
}
/* sup en argent, devient or au hover */
.stat-n sup { font-size: 1.2rem; color: var(--silver); opacity: .5; }
.stat:hover .stat-n sup { color: var(--gold); opacity: 1; }
.stat-l {
    font-size: .68rem; letter-spacing: .15em;
    text-transform: uppercase; color: var(--text-m);
}

/* ══════════════════════════════════════════════
   PROCESS
══════════════════════════════════════════════ */
#processus {
    background: var(--bg-2);
    border-top: 1px solid var(--bdr);
    position: relative;
}

/* lueur bleue douce en bas à droite */
#processus::after {
    content: '';
    position: absolute; bottom: 0; right: 0;
    width: 45%; height: 45%;
    background: radial-gradient(ellipse at 100% 100%, rgba(100,140,220,.06) 0%, transparent 65%);
    pointer-events: none;
}

.proc-step {
    display: grid; grid-template-columns: 72px 1fr 1fr;
    gap: 44px; padding: 52px 0;
    border-bottom: 1px solid var(--bdr);
    align-items: center;
    position: relative;
    transition: padding-left .3s;
}
.proc-step:last-child { border-bottom: none; }
.proc-step:hover { padding-left: 12px; }

/* trait argenté à gauche au hover */
.proc-step::before {
    content: '';
    position: absolute; left: 0; top: 0; bottom: 0; width: 1px;
    background: linear-gradient(180deg, transparent, var(--silver), transparent);
    transform: scaleY(0); transform-origin: center;
    transition: transform .4s ease; opacity: .4;
}
.proc-step:hover::before { transform: scaleY(1); }

.proc-n {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem; font-weight: 300; color: var(--text-d);
    transition: color .35s;
}
.proc-step:hover .proc-n { color: var(--silver); opacity: .6; }

.proc-t {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.55rem; font-weight: 400; color: var(--text);
}
.proc-d {
    font-size: .83rem; color: var(--text-m); line-height: 1.85;
}

/* ══════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════ */
#contact {
    background: var(--bg);
    text-align: center; padding: 160px 0;
    position: relative; overflow: hidden;
}

/* lueur profonde navy-bleue */
#contact::before {
    content: '';
    position: absolute; inset: 0; pointer-events: none;
    background:
        radial-gradient(ellipse 65% 55% at 50% 50%, rgba(100,140,220,.07) 0%, transparent 65%),
        radial-gradient(ellipse 30% 30% at 50% 50%, rgba(176,137,36,.04) 0%, transparent 50%);
}

.contact-in { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.contact-in .label { margin-bottom: 22px; }

.c-title {
    font-size: clamp(2.6rem, 5.5vw, 4.8rem);
    font-weight: 300; line-height: 1.02; margin-bottom: 24px;
}
.c-title em { font-style: italic; }

.c-sub {
    font-size: .84rem; color: var(--text-m);
    margin-bottom: 52px; letter-spacing: .04em;
}

/* email — argent, hover or */
.c-mail {
    display: inline-flex; align-items: center; gap: 12px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem; font-weight: 300;
    color: var(--silver); text-decoration: none;
    border-bottom: 1px solid rgba(194,200,212,.2); padding-bottom: 6px;
    transition: color .3s, border-color .3s;
    margin-bottom: 52px;
}
.c-mail:hover { color: var(--gold); border-color: var(--gold); }

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
footer {
    background: var(--bg);
    border-top: 1px solid var(--bdr);
    padding: 36px 48px;
    display: flex; align-items: center; justify-content: space-between;
    position: relative;
}

/* fine ligne argentée en haut du footer */
footer::before {
    content: '';
    position: absolute; top: -1px; left: 48px; right: 48px; height: 1px;
    background: linear-gradient(90deg, var(--silver), rgba(176,137,36,.5), transparent);
    opacity: .2;
}

.foot-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem; font-weight: 400;
    color: var(--text-d); letter-spacing: .18em;
}
.foot-copy {
    font-size: .68rem; color: var(--text-d); letter-spacing: .08em;
}
.foot-links { display: flex; gap: 28px; }
.foot-links a {
    font-size: .68rem; color: var(--text-d);
    text-decoration: none; letter-spacing: .12em;
    text-transform: uppercase; transition: color .3s;
}
.foot-links a:hover { color: var(--gold); }

/* ══════════════════════════════════════════════
   RÉALISATIONS
══════════════════════════════════════════════ */
#realisations {
    background: var(--bg);
    border-top: 1px solid var(--bdr);
    border-bottom: 1px solid var(--bdr);
}

#realisations .sec-head { margin-bottom: 64px; }

.real-grid {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--bdr);
    overflow: hidden;
}

.real-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--bg);
    overflow: hidden;
    transition: background .4s;
    border-bottom: 1px solid var(--bdr);
}

.real-card:last-child { border-bottom: none; }

.real-card--rev {
    direction: rtl;
}
.real-card--rev > * {
    direction: ltr;
}

.real-card:hover { background: var(--bg-card); }

.real-img {
    position: relative;
    overflow: hidden;
    background: var(--bg-card);
    min-height: 240px;
}

.real-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(15%) brightness(.85);
    transition: filter .5s, transform .6s cubic-bezier(.4,0,.2,1);
}

.real-card:hover .real-img img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.04);
}

.real-img-ph {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: .62rem; letter-spacing: .22em; text-transform: uppercase;
    color: var(--text-d);
    border: 1px dashed rgba(194,200,212,.1);
}

.real-info {
    padding: 48px 52px;
    display: flex; flex-direction: column;
    justify-content: center; gap: 14px;
}

.real-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: .72rem; font-weight: 300;
    color: var(--silver); opacity: .2;
    letter-spacing: .2em;
}

.real-cat {
    font-size: .62rem; font-weight: 500;
    letter-spacing: .22em; text-transform: uppercase;
    color: var(--gold); opacity: .8;
}

.real-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem; font-weight: 400;
    color: var(--text); line-height: 1.1;
}

.real-desc {
    font-size: .83rem; color: var(--text-m); line-height: 1.85;
    max-width: 380px;
}

.real-link {
    display: inline-flex;
    align-self: flex-start;
    margin-top: 8px;
}

/* liseré argenté bas au hover */
.real-card::after {
    content: ''; position: absolute;
    display: none;
}

/* ── Lien mentions légales footer ─── */
.foot-ml {
    position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
    font-size: .58rem; color: var(--text-d);
    text-decoration: none; letter-spacing: .12em;
    text-transform: uppercase;
    transition: color .3s;
    white-space: nowrap;
}
.foot-ml:hover { color: var(--silver); }

footer { padding-bottom: 44px; position: relative; }

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .exp-grid { gap: 56px; }
}

@media (max-width: 860px) {
    .wrap { padding: 0 24px; }
    nav { padding: 20px 24px; }
    nav.s { padding: 14px 24px; }
    .nav-links { display: none; }
    .burger { display: flex; }
    .h-vert { display: none; }
    .svc-grid { grid-template-columns: 1fr; }
    .exp-grid { grid-template-columns: 1fr; gap: 52px; }
    .exp-stats { grid-template-columns: 1fr 1fr; }
    .proc-step {
        grid-template-columns: 52px 1fr;
        grid-template-rows: auto auto;
        gap: 16px 24px;
    }
    .proc-d { grid-column: 2; }
    footer { flex-direction: column; gap: 16px; text-align: center; }
    .foot-links { flex-wrap: wrap; justify-content: center; }
    footer::before { left: 24px; right: 24px; }
    #expertise::before { display: none; }

    .real-card,
    .real-card--rev { grid-template-columns: 1fr; direction: ltr; }
    .real-card--rev > * { direction: ltr; }
    .real-info { padding: 36px 28px; }
    .real-img { min-height: 220px; }
    .real-desc { max-width: 100%; }

    .foot-ml { position: static; transform: none; display: block; margin-top: 4px; }
}

@media (max-width: 480px) {
    .h-title { font-size: 3.2rem; }
    .svc-card { padding: 40px 28px; }
    .h-scroll { left: 24px; }
    .proc-step { padding: 36px 0; }
}
