/* ===========================================================
   ООО «Леон» — редизайн 2026 (v5)
   Плоский минималистичный корпоративный стиль: холодный
   белый фон, графит, один акцент — кобальтовый синий.
   Без фото-геро на внутренних страницах, без хард-теней.
   =========================================================== */

:root {
  --ink: #14161B;
  --ink-2: #1D2027;
  --ink-3: #272B33;
  --paper: #FAFAF8;
  --panel: #F2F2ED;
  --line: #E2E2DA;
  --line-strong: #C9C9BE;
  --muted: #5B5F68;
  --muted-2: #8B8F97;
  --accent: #2A46D8;
  --accent-dark: #1E35AC;
  --accent-light: #5D74E8;
  --white: #FFFFFF;
  --radius: 6px;
  --radius-sm: 4px;
  --container: 1240px;
  --font-display: 'Inter', Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, .display {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin: 0;
}
.wrap { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { margin: 0; }
button { font-family: inherit; }

::selection { background: var(--accent); color: #fff; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px; border-radius: var(--radius-sm); font-size: 14.5px; font-weight: 600;
  white-space: nowrap; border: 1.5px solid var(--ink); cursor: pointer; transition: all .15s ease;
  font-family: 'Inter', sans-serif;
}
.btn-accent { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-accent:hover { background: var(--accent-dark); border-color: var(--accent-dark); }
.btn-outline { background: transparent; border: 1.5px solid var(--ink); color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--paper); }
.btn-outline-light { background: transparent; border: 1.5px solid rgba(255,255,255,0.4); color: #fff; }
.btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn-sm { padding: 10px 18px; font-size: 13px; }
.btn-block { width: 100%; }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ---------- Header ---------- */
header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,250,248,0.96);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; max-width: var(--container); margin: 0 auto; padding-left: 32px; padding-right: 32px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { width: 26px; height: auto; }
.brand-name { font-family: var(--font-display); font-weight: 800; font-size: 16.5px; color: var(--ink); letter-spacing: -0.01em; }
nav.mainnav { display: flex; gap: 28px; font-size: 14px; font-family: 'Inter', sans-serif; }
nav.mainnav a { position: relative; color: var(--muted); padding: 6px 0; font-weight: 500; }
nav.mainnav a:hover { color: var(--ink); }
nav.mainnav a.active { font-weight: 700; color: var(--ink); }
nav.mainnav a.active::after { content: ''; position: absolute; left: 0; right: 0; bottom: -19px; height: 2px; background: var(--accent); }
.header-cta { display: flex; align-items: center; gap: 18px; }
.phone { font-weight: 700; color: var(--ink); font-size: 14.5px; white-space: nowrap; font-family: 'Inter', sans-serif; }
.phone-link { display: flex; align-items: center; gap: 7px; }
.burger { display: none; width: 38px; height: 38px; border: 1.5px solid var(--ink); border-radius: var(--radius-sm); background: #fff; cursor: pointer; align-items: center; justify-content: center; flex-direction: column; gap: 4px; }
.burger span { width: 16px; height: 2px; background: var(--ink); display: block; border-radius: 1px; transition: all .2s ease; }
.mobile-nav { display: none; }

/* ---------- Decorative accents (kept for compat; unused in v5) ---------- */
.blob-field { display: none; }
.blob { display: none; }

/* ---------- Accent text ---------- */
.accent-text { color: var(--accent); }

/* ---------- Kicker with line ---------- */
.section-head .kicker { display: flex; align-items: center; gap: 10px; font-family: 'Inter', sans-serif; }
.section-head .kicker::before { content: ''; width: 22px; height: 2px; background: var(--accent); display: inline-block; }

/* ---------- Floating call button ---------- */
.float-call {
  position: fixed; right: 24px; bottom: 24px; z-index: 60;
  width: 54px; height: 54px; border-radius: var(--radius); background: var(--accent);
  display: flex; align-items: center; justify-content: center; color: #fff;
  border: none; box-shadow: 0 10px 24px -8px rgba(42,70,216,.5); transition: transform .15s ease;
}
.float-call svg { width: 22px; height: 22px; }
.float-call:hover { transform: translateY(-2px); }
@media (max-width: 860px) { .float-call { width: 48px; height: 48px; right: 16px; bottom: 16px; } .float-call svg { width: 19px; height: 19px; } }

/* ---------- Icon badges (SVG) ---------- */
.isvg { width: 20px; height: 20px; display: block; }

/* ---------- Homepage hero: split layout, framed photo ---------- */
.hero { padding: 76px 0 0; background: var(--paper); overflow: hidden; }
.hero-split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; padding-bottom: 56px; }
.hero-inner { max-width: 560px; }
.badge {
  display: inline-flex; align-items: center; gap: 9px; padding: 6px 16px 6px 6px;
  background: var(--panel); border: 1px solid var(--line-strong);
  border-radius: 999px; font-size: 12.5px; color: var(--ink); margin-bottom: 22px;
  font-family: 'Inter', sans-serif;
}
.badge .dot { width: 22px; height: 22px; border-radius: 50%; background: var(--accent); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 11.5px; font-weight: 800; font-family: var(--font-display); }
.eyebrow { color: var(--accent); font-size: 13px; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; font-family: 'Inter', sans-serif; }
.hero h1 { font-size: clamp(30px, 3.6vw, 46px); line-height: 1.12; margin: 0 0 20px; color: var(--ink); font-weight: 800; }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero p.lead { font-size: 16.5px; color: var(--muted); max-width: 500px; margin: 0 0 30px; font-family: 'Inter', sans-serif; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 34px; }
.hero-mini-stats { display: flex; gap: 30px; flex-wrap: wrap; border-top: 1px solid var(--line); padding-top: 22px; }
.hero-mini-stats div .n { font-family: var(--font-display); font-size: 21px; font-weight: 800; color: var(--ink); }
.hero-mini-stats div .l { font-size: 12.5px; color: var(--muted-2); margin-top: 2px; }
.hero-photo { position: relative; }
.hero-photo .frame { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/5; border: 1px solid var(--line-strong); }
.hero-photo .frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo .tag { position: absolute; left: -1px; bottom: 22px; background: var(--ink); color: #fff; padding: 12px 20px; font-size: 13px; font-family: 'Inter', sans-serif; font-weight: 600; border-radius: 0 var(--radius) var(--radius) 0; }
.hero-scroll { display: none; }

/* ---------- Page hero (inner pages): plain, no photo ---------- */
.pagehero {
  background: var(--paper); padding: 52px 0 44px; border-bottom: 1px solid var(--line);
}
.crumb { font-size: 13px; color: var(--muted-2); margin-bottom: 16px; font-family: 'Inter', sans-serif; }
.crumb a { color: var(--muted); }
.crumb a:hover { color: var(--accent); }
.pagehero h1 { font-size: clamp(26px, 3vw, 38px); margin: 0 0 14px; color: var(--ink); font-weight: 800; max-width: 780px; }
.pagehero p { color: var(--muted); max-width: 640px; margin: 0; font-size: 16px; font-family: 'Inter', sans-serif; }

/* ---------- Stats (compact inline strip) ---------- */
.stats { background: var(--panel); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stats .wrap { display: grid; grid-template-columns: repeat(3, 1fr); padding: 0; }
.stat { text-align: left; padding: 26px 28px; border-right: 1px solid var(--line); }
.stat:last-child { border-right: none; }
.stat .num { font-family: var(--font-display); font-size: clamp(19px, 2vw, 24px); color: var(--ink); font-weight: 800; }
.stat .label { font-size: 12.5px; color: var(--muted); margin-top: 5px; font-family: 'Inter', sans-serif; }

/* ---------- Sections ---------- */
section { padding: 88px 0; }
.section-tight { padding: 56px 0; }
.section-head { max-width: 660px; margin: 0 0 44px; display: flex; flex-direction: column; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; align-items: center; }
.section-head .kicker { color: var(--accent); font-weight: 700; font-size: 12.5px; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.08em; }
.section-head h2 { font-size: clamp(24px, 2.8vw, 34px); color: var(--ink); margin: 0 0 14px; font-weight: 800; }
.section-head p { color: var(--muted); font-size: 15.5px; margin: 0; font-family: 'Inter', sans-serif; }
.bg-off { background: var(--panel); }
.bg-navy { background: var(--ink); color: #fff; }
.bg-navy .section-head h2 { color: #fff; }
.bg-navy .section-head p { color: #A7ABB4; }
.bg-navy .section-head .kicker { color: var(--accent-light); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .5s ease, transform .5s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-delay-1.in { transition-delay: .06s; }
.reveal-delay-2.in { transition-delay: .12s; }
.reveal-delay-3.in { transition-delay: .18s; }
.reveal-delay-4.in { transition-delay: .24s; }
.reveal-delay-5.in { transition-delay: .3s; }

/* ---------- Direction rows (numbered horizontal list, replaces card grid) ---------- */
.dir-grid { border-top: 1px solid var(--line); }
.dir-card {
  display: grid; grid-template-columns: 60px 1fr; gap: 30px; align-items: start;
  padding: 40px 0; border-bottom: 1px solid var(--line);
}
.dir-card .ico { width: 40px; height: 40px; border-radius: var(--radius-sm); background: var(--ink); display: flex; align-items: center; justify-content: center; color: var(--accent-light); }
.dir-card .ico svg { width: 20px; height: 20px; }
.dir-card .dir-content { max-width: 640px; }
.dir-card h3 { color: var(--ink); font-size: 21px; margin: 0 0 10px; font-weight: 800; }
.dir-card .tag { color: var(--accent); font-size: 12.5px; font-weight: 700; margin-bottom: 10px; display: block; text-transform: uppercase; letter-spacing: 0.06em; font-family: 'Inter', sans-serif; }
.dir-card ul { padding-left: 18px; color: #33373E; font-size: 14.5px; columns: 2; column-gap: 24px; }
.dir-card li { margin-bottom: 8px; break-inside: avoid; }
.card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 18px; font-size: 13.5px; font-weight: 700; color: var(--accent); font-family: 'Inter', sans-serif; }
.card-link .arrow { transition: transform .2s ease; }
.card-link:hover .arrow { transform: translateX(4px); }

/* ---------- Process stepper (полный цикл общестроя) ---------- */
.cycle { display: flex; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.cycle-item {
  flex: 1; background: #fff; border-right: 1px solid var(--line);
  display: flex; flex-direction: column; position: relative;
}
.cycle-item:last-child { border-right: none; }
.cycle-item .ph { aspect-ratio: 1/1; overflow: hidden; position: relative; }
.cycle-item .ph img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.15); transition: filter .3s ease, transform .5s ease; }
.cycle-item:hover .ph img { filter: grayscale(0); transform: scale(1.05); }
.cycle-item .num {
  position: absolute; top: 10px; left: 10px; width: 24px; height: 24px;
  background: var(--ink); color: #fff; font-weight: 700; font-size: 12px;
  display: flex; align-items: center; justify-content: center; font-family: var(--font-display); border-radius: 50%;
}
.cycle-item .cap { padding: 13px 12px; border-top: 1px solid var(--line); }
.cycle-item .cap h4 { font-size: 12.5px; color: var(--ink); margin: 0; line-height: 1.3; font-family: 'Inter', sans-serif; font-weight: 700; }
.cycle-arrow-row { display: none; }

/* ---------- NLMK highlight block (light, compact — replaces dark full-bleed banner) ---------- */
.nlmk-banner { background: var(--panel); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.nlmk-inner { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 48px; align-items: center; padding: 64px 0; }
.nlmk-photo { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; border: 1px solid var(--line-strong); }
.nlmk-photo img { width: 100%; height: 100%; object-fit: cover; }
.nlmk-content .badge { align-self: flex-start; background: #fff; }
.nlmk-content h2 { color: var(--ink); font-size: clamp(22px, 2.6vw, 30px); margin: 0 0 16px; font-weight: 800; }
.nlmk-content p { color: var(--muted); font-size: 15.5px; margin: 0 0 14px; font-family: 'Inter', sans-serif; }
.nlmk-stats { display: flex; gap: 32px; margin-top: 20px; margin-bottom: 24px; flex-wrap: wrap; }
.nlmk-stats div .n { font-family: var(--font-display); font-size: 23px; font-weight: 800; color: var(--accent); }
.nlmk-stats div .l { font-size: 12.5px; color: var(--muted); margin-top: 2px; font-family: 'Inter', sans-serif; }

/* ---------- Trust list (big numerals, editorial list — replaces card grid) ---------- */
.trust-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.trust-item { position: relative; padding: 32px 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-item .n { font-family: var(--font-display); font-weight: 800; font-size: 28px; color: var(--accent); margin-bottom: 10px; }
.trust-item h4 { color: var(--ink); font-size: 17px; margin: 0 0 10px; font-weight: 800; }
.trust-item p { color: var(--muted); font-size: 14.5px; margin: 0; font-family: 'Inter', sans-serif; }
.bg-navy .trust-grid { border-color: rgba(255,255,255,0.12); }
.bg-navy .trust-item { border-color: rgba(255,255,255,0.12); background: transparent; }
.bg-navy .trust-item h4 { color: #fff; }
.bg-navy .trust-item p { color: #A7ABB4; }
.bg-navy .trust-item .n { color: var(--accent-light); }

/* ---------- Vacancies ---------- */
.vacancies, .vacancies-section { background: var(--paper); }
.vac-card { background: #fff; color: var(--ink); border-radius: var(--radius); border: 1px solid var(--line); padding: 30px 32px; display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 28px; margin-bottom: 16px; transition: border-color .15s ease; }
.vac-card:hover { border-color: var(--line-strong); }
.vac-card h3 { color: var(--ink); font-size: 19px; margin: 0 0 8px; font-weight: 800; }
.vac-card .salary { color: var(--accent); font-weight: 700; font-size: 15px; margin-bottom: 16px; font-family: 'Inter', sans-serif; }
.vac-col h4 { font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted-2); margin: 0 0 10px; font-weight: 700; font-family: 'Inter', sans-serif; }
.vac-col ul { padding-left: 18px; font-size: 13.5px; color: #33373E; }
.vac-col li { margin-bottom: 7px; }
.vac-cta { margin-top: 22px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.vac-cta .phone { color: var(--ink); }
.vac-more { text-align: center; margin-top: 22px; color: var(--muted); font-size: 14px; font-family: 'Inter', sans-serif; }

/* ---------- Contacts ---------- */
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.contact-info .row { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 22px; }
.contact-info .ic { width: 42px; height: 42px; border-radius: var(--radius-sm); background: var(--panel); border: 1px solid var(--line-strong); display: flex; align-items: center; justify-content: center; color: var(--accent); flex-shrink: 0; }
.contact-info .label { color: var(--muted); font-size: 12.5px; display: block; margin-bottom: 3px; font-family: 'Inter', sans-serif; }
.contact-info .val { font-size: 15.5px; font-weight: 700; color: var(--ink); }
.contact-form { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; }
.contact-form h3 { color: var(--ink); font-size: 18px; margin-bottom: 6px; font-weight: 800; }
.contact-form p.sub { color: var(--muted); font-size: 14px; margin: 0 0 20px; font-family: 'Inter', sans-serif; }
.contact-form input, .contact-form textarea {
  width: 100%; padding: 12px 14px; margin-bottom: 12px; border: 1.5px solid var(--line-strong);
  border-radius: var(--radius-sm); font-family: 'Inter', sans-serif; font-size: 14.5px; background: #fff;
  transition: border-color .2s ease;
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--accent); }
.map-embed {
  background: var(--panel) url('../img/leon-warehouse-steel.jpg') center/cover; position: relative;
  border: 1px solid var(--line); border-radius: var(--radius); height: 260px; margin-top: 24px; overflow: hidden;
}
.map-embed .map-tag { position: absolute; left: 16px; bottom: 16px; background: var(--ink); color: #fff; padding: 9px 16px; border-radius: var(--radius-sm); font-size: 12.5px; font-family: 'Inter', sans-serif; }

/* ---------- Objects grid ---------- */
.obj-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.obj-card { overflow: hidden; background: #fff; transition: background .15s ease; }
.obj-card:hover { background: var(--panel); }
.obj-card .thumb { height: 190px; position: relative; overflow: hidden; }
.obj-card .thumb img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.1); transition: filter .3s ease, transform .5s ease; }
.obj-card:hover .thumb img { filter: grayscale(0); transform: scale(1.05); }
.obj-card .thumb .tag { position: absolute; top: 12px; left: 12px; background: var(--ink); color: #fff; font-size: 11px; font-weight: 700; padding: 6px 12px; border-radius: var(--radius-sm); font-family: 'Inter', sans-serif; }
.obj-card .body { padding: 20px 22px 24px; }
.obj-card h4 { margin: 0 0 8px; color: var(--ink); font-size: 16px; font-weight: 800; }
.obj-card p { margin: 0; color: var(--muted); font-size: 13.5px; font-family: 'Inter', sans-serif; }
.obj-note { background: var(--panel); border: 1px solid var(--line); padding: 18px 22px; font-size: 14px; color: var(--ink); margin-top: 30px; border-radius: var(--radius); font-family: 'Inter', sans-serif; }

/* ---------- Service detail (uslugi) ---------- */
.service-detail { border-top: 1px solid var(--line); padding: 48px 0; }
.service-detail:first-of-type { border-top: none; }
.service-detail .inner { display: grid; grid-template-columns: 0.85fr 1.3fr; gap: 44px; align-items: center; }
.service-detail .photo { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; border: 1px solid var(--line-strong); }
.service-detail .photo img { width: 100%; height: 100%; object-fit: cover; }
.service-detail.rev .inner { grid-template-columns: 1.3fr 0.85fr; }
.service-detail.rev .photo { order: 2; }
.service-detail h3 { color: var(--ink); font-size: 22px; margin: 0 0 10px; font-weight: 800; }
.service-detail .tag { color: var(--accent); font-weight: 700; font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.06em; font-family: 'Inter', sans-serif; }
.service-detail ul { padding-left: 18px; color: #33373E; font-size: 14.5px; }
.service-detail li { margin-bottom: 9px; }

/* ---------- CTA strip (flat, no decoration) ---------- */
.cta-strip { background: var(--ink); color: #fff; border-radius: var(--radius); padding: 48px 52px; display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.cta-strip h2 { color: #fff; font-size: 24px; margin: 0 0 8px; font-weight: 800; }
.cta-strip p { color: #A7ABB4; margin: 0; font-size: 14.5px; font-family: 'Inter', sans-serif; }
.cta-strip .actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
footer { background: var(--ink); color: #8E929B; padding: 56px 0 26px; font-size: 13.5px; border-top: 3px solid var(--accent); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 40px; margin-bottom: 42px; }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand img { width: 24px; }
.footer-brand span { color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 15.5px; }
.footer-about { color: #71757E; font-size: 13.5px; max-width: 280px; line-height: 1.7; font-family: 'Inter', sans-serif; }
.footer-col h5 { color: #fff; font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; margin: 0 0 15px; font-weight: 700; font-family: 'Inter', sans-serif; }
.footer-col a, .footer-col p { display: block; color: #8E929B; margin-bottom: 11px; }
.footer-col a:hover { color: var(--accent-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; color: #5C5F66; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-family: 'Inter', sans-serif; font-size: 12px; }

/* ---------- Misc icons ---------- */
.icon { width: 22px; height: 22px; display: block; }

/* ===========================================================
   Responsive
   =========================================================== */
@media (max-width: 980px) {
  .hero-split { grid-template-columns: 1fr; }
  .hero-photo { max-width: 420px; }
  .cycle { flex-wrap: wrap; }
  .cycle-item { flex: 1 1 33.33%; border-bottom: 1px solid var(--line); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .nlmk-inner { grid-template-columns: 1fr; padding: 44px 0; }
  .trust-grid { grid-template-columns: 1fr; }
  .dir-card { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  section { padding: 60px 0; }
  .hero { padding: 96px 0 0; }
  nav.mainnav { display: none; }
  .header-cta .phone { display: none; }
  .burger { display: flex; }
  .mobile-nav.open {
    display: flex; flex-direction: column; position: fixed; inset: 0; top: 66px; background: var(--paper);
    z-index: 49; padding: 20px 28px; gap: 4px; overflow-y: auto;
  }
  .mobile-nav a { padding: 16px 4px; border-bottom: 1px solid var(--line); font-size: 16px; color: var(--ink); font-weight: 600; font-family: 'Inter', sans-serif; }
  .mobile-nav .btn { margin-top: 18px; }
  .dir-grid, .materials-inner, .contact-inner, .obj-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .stats .wrap { grid-template-columns: repeat(1, 1fr); }
  .stat { border-right: none; border-bottom: 1px solid var(--line); }
  .vac-card { grid-template-columns: 1fr; }
  .cycle { flex-direction: column; }
  .cycle-item { border-right: none; border-bottom: 1px solid var(--line); }
  .service-detail .inner, .service-detail.rev .inner { grid-template-columns: 1fr; }
  .service-detail.rev .photo { order: 0; }
  .cta-strip { padding: 36px 26px; flex-direction: column; align-items: flex-start; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 520px) {
  .wrap { padding: 0 20px; }
}
