/* =========================================================================
   „НИКЕНА-21" ЕООД — Основна дизайн система
   Индустриален / технически / премиум стил
   ========================================================================= */

:root {
  /* --- Цветова система (съобразена с фирмената идентичност) --- */
  --navy: #0B2138;          /* основно тъмносиньо (тъмният член на синьото от логото) */
  --navy-700: #12314f;      /* по-светъл вариант за карти/акценти */
  --navy-800: #0e2843;
  --cobalt: #0050A8;        /* кобалтово синьо от логото (за връзки и акценти) */
  --cobalt-600: #013F86;    /* по-тъмен кобалт за hover */
  --orange: #E86A00;        /* основно оранжево — точно от логото */
  --orange-600: #cc5c00;    /* hover състояние */
  --orange-050: #fbeedf;    /* много светъл оранжев фон */
  --bg-light: #F5F7F9;      /* основен светъл фон */
  --white: #FFFFFF;         /* бял фон */
  --text: #1D2733;          /* основен текст */
  --text-2: #596575;        /* вторичен текст */
  --line: #DDE3E8;          /* светли разделителни линии */
  --line-dark: #1c3a5b;     /* разделителни линии върху тъмно */

  /* --- Типография --- */
  --font: "Inter", "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI",
          Roboto, "Helvetica Neue", Arial, sans-serif;

  /* --- Ритъм и форма --- */
  --radius: 8px;
  --radius-sm: 6px;
  --shadow-sm: 0 1px 2px rgba(11, 33, 56, .06), 0 1px 3px rgba(11, 33, 56, .05);
  --shadow-md: 0 4px 14px rgba(11, 33, 56, .08);
  --container: 1200px;
  --nav-h: 84px;

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ------------------------------- Reset --------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--cobalt); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { color: var(--navy); line-height: 1.2; font-weight: 700; margin: 0 0 .5em; letter-spacing: -0.01em; }
h1 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; }
ul { margin: 0 0 1rem; padding-left: 1.2em; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; border-radius: 4px; }

/* ------------------------------ Layout --------------------------------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 84px 0; }
.section--tight { padding: 56px 0; }
.section--light { background: var(--bg-light); }
.section--navy { background: var(--navy); }
.section--navy, .section--navy p, .section--navy li { color: #cdd6e0; }
.section--navy h1, .section--navy h2, .section--navy h3 { color: #fff; }

.eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--orange-600);
  margin-bottom: 14px;
  position: relative;
  padding-left: 30px;
}
.eyebrow::before {
  content: ""; position: absolute; left: 0; top: 50%;
  width: 22px; height: 2px; background: var(--orange); transform: translateY(-50%);
}
.section--navy .eyebrow { color: var(--orange); }
.lead { font-size: 1.15rem; color: var(--text-2); max-width: 720px; }
.section-head { max-width: 760px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ------------------------------ Buttons -------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: inherit; font-size: 1rem; font-weight: 600; line-height: 1;
  padding: 15px 26px; border-radius: var(--radius-sm); border: 2px solid transparent;
  cursor: pointer; transition: background .18s var(--ease), color .18s var(--ease),
              border-color .18s var(--ease), transform .12s var(--ease);
  text-decoration: none; white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--orange); color: #fff; }
.btn--primary:hover { background: var(--orange-600); color: #fff; }
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--navy); background: var(--white); }
.btn--on-navy { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.btn--on-navy:hover { border-color: #fff; background: rgba(255,255,255,.08); color: #fff; }
.btn--lg { padding: 17px 32px; font-size: 1.05rem; }
.btn--block { width: 100%; }
.btn__ico { width: 18px; height: 18px; flex: none; }

/* --------------------------- Navigation -------------------------------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h); background: var(--navy);
  border-bottom: 1px solid var(--line-dark);
  transition: box-shadow .2s var(--ease);
}
.nav.scrolled { box-shadow: 0 6px 20px rgba(0,0,0,.18); }
.nav__inner { height: 100%; display: flex; align-items: center; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; flex: none; }
.brand:hover { text-decoration: none; }
/* Официална фирмена емблема — кръгла бяла подложка за контраст на тъмносиньо */
.brand__logo {
  height: 64px; width: 64px; display: block; flex: none;
  background: #fff; border-radius: 50%; padding: 8px;
  box-sizing: border-box; object-fit: contain;
  box-shadow: 0 2px 7px rgba(0, 0, 0, .22);
}
.footer__brand .brand__logo { height: 78px; width: 78px; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { color: #fff; font-weight: 800; font-size: 1.06rem; letter-spacing: -.01em; }
.brand__sub { color: #8aa0b6; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; }

.nav__links { display: flex; align-items: center; gap: 2px; margin-left: auto; list-style: none; padding: 0; }
.nav__links a {
  display: block; padding: 8px 10px; border-radius: 6px; white-space: nowrap;
  color: #c6d2df; font-size: .89rem; font-weight: 500; text-decoration: none;
  transition: color .15s, background .15s;
}
.nav__links a:hover { color: #fff; background: rgba(255,255,255,.06); }
.nav__links a[aria-current="page"] { color: #fff; }
.nav__links a[aria-current="page"]::after {
  content: ""; display: block; height: 2px; background: var(--orange); margin-top: 4px; border-radius: 2px;
}
.nav__cta { margin-left: 8px; flex: none; }
.nav__cta .btn { padding: 10px 15px; font-size: .89rem; }
/* Навигацията ползва малко повече ширина от съдържанието, за да се събере на един ред */
.nav .container { max-width: 1280px; }

.nav__toggle {
  display: none; margin-left: auto; width: 44px; height: 44px;
  background: transparent; border: 1px solid var(--line-dark); border-radius: 7px;
  cursor: pointer; align-items: center; justify-content: center;
}
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after {
  content: ""; display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px;
  transition: transform .2s var(--ease), opacity .2s;
}
.nav__toggle span { position: relative; }
.nav__toggle span::before { position: absolute; top: -7px; }
.nav__toggle span::after { position: absolute; top: 7px; }
.nav[data-open="true"] .nav__toggle span { background: transparent; }
.nav[data-open="true"] .nav__toggle span::before { transform: rotate(45deg); top: 0; }
.nav[data-open="true"] .nav__toggle span::after { transform: rotate(-45deg); top: 0; }

/* Компенсация за фиксираната навигация */
.page { padding-top: var(--nav-h); }

/* ------------------------------- Hero ---------------------------------- */
.hero {
  position: relative; background: var(--navy); color: #fff; overflow: hidden;
}
.hero::before { /* дискретна техническа мрежа */
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 46px 46px; pointer-events: none;
}
.hero__inner { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; padding: 76px 0; }
.hero h1 { color: #fff; max-width: 15ch; }
.hero__sub { font-size: 1.18rem; color: #c3d0dd; max-width: 52ch; margin: 18px 0 30px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.hero__media { position: relative; }
.hero__accent { position: absolute; left: -14px; top: -14px; width: 64px; height: 64px; border-top: 3px solid var(--orange); border-left: 3px solid var(--orange); }

/* Продуктови акценти под hero */
.hilite { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-dark); border: 1px solid var(--line-dark); border-radius: var(--radius); overflow: hidden; }
.hilite__item { background: var(--navy-800); padding: 16px 18px; display: flex; align-items: center; gap: 12px; font-size: .93rem; color: #d7e0ea; }
.hilite__item svg { width: 20px; height: 20px; color: var(--orange); flex: none; }

/* ------------------------------- Cards --------------------------------- */
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm); transition: box-shadow .2s var(--ease), transform .2s var(--ease), border-color .2s;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: #c9d2db; }
.card__ico {
  width: 46px; height: 46px; border-radius: 8px; background: var(--orange-050);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.card__ico svg { width: 24px; height: 24px; color: var(--orange-600); }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--text-2); margin: 0; font-size: .97rem; }

/* Списък с предимства (иконки-отметки) */
.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.checklist li { position: relative; padding-left: 32px; color: var(--text); }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 3px; width: 20px; height: 20px;
  background: var(--orange-050); border-radius: 5px;
}
.checklist li::after {
  content: ""; position: absolute; left: 6px; top: 8px; width: 8px; height: 4px;
  border-left: 2px solid var(--orange-600); border-bottom: 2px solid var(--orange-600);
  transform: rotate(-45deg);
}
.section--navy .checklist li { color: #d7e0ea; }
.section--navy .checklist li::before { background: rgba(242,140,40,.18); }

/* -------------------------- Стъпки (Как работи) ------------------------ */
.steps { display: grid; gap: 24px; grid-template-columns: repeat(4, 1fr); counter-reset: step; }
.step { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; position: relative; }
.step__n {
  width: 44px; height: 44px; border-radius: 8px; background: var(--orange); color: #fff;
  font-weight: 800; font-size: 1.2rem; display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.step h3 { font-size: 1.1rem; }
.step p { color: var(--text-2); font-size: .95rem; margin: 0; }

/* Вертикална подробна последователност */
.flow { display: grid; gap: 28px; }
.flow__row { display: grid; grid-template-columns: 64px 1fr 1fr; gap: 28px; align-items: start; }
.flow__n { width: 56px; height: 56px; border-radius: 10px; background: var(--navy); color: #fff; font-weight: 800; font-size: 1.4rem; display: flex; align-items: center; justify-content: center; }
.flow__n span { color: var(--orange); }
.flow__body h3 { margin-bottom: 8px; }
.flow__body p { color: var(--text-2); margin: 0; }

/* ------------------------------ Реални снимки -------------------------- */
.shot {
  width: 100%; display: block; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); background: var(--bg-light); margin: 0;
}
.shot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.shot--hero { aspect-ratio: 5 / 4; border: 0; box-shadow: 0 20px 50px rgba(0, 0, 0, .35); }
.shot--wide { aspect-ratio: 16 / 9; }
.shot--square { aspect-ratio: 1 / 1; }
.shot--4x3 { aspect-ratio: 4 / 3; }
.shot--tall { aspect-ratio: 3 / 4; }

/* ------------------------------ Placeholder ---------------------------- */
/* Неутрален заместител при липса на реална снимка */
.ph {
  position: relative; width: 100%; border-radius: var(--radius); overflow: hidden;
  background:
    linear-gradient(135deg, #eef2f6 0%, #e3e9ef 100%);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; text-align: center;
  color: #8b98a6; aspect-ratio: 4 / 3;
}
.ph::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(11,33,56,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11,33,56,.05) 1px, transparent 1px);
  background-size: 28px 28px;
}
.ph__label { position: relative; z-index: 1; padding: 20px; font-size: .9rem; max-width: 80%; }
.ph__label svg { width: 40px; height: 40px; margin: 0 auto 10px; display: block; color: #a7b3c0; }
.ph--wide { aspect-ratio: 16 / 9; }
.ph--tall { aspect-ratio: 3 / 4; }
.ph--square { aspect-ratio: 1 / 1; }
.ph--hero { aspect-ratio: 5 / 4; box-shadow: 0 20px 50px rgba(0,0,0,.35); }
.ph--navy { background: linear-gradient(135deg, #12314f, #0b2138); border-color: var(--line-dark); color: #7f92a6; }

/* --------------------------- Технически таблици ------------------------ */
.spec-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.spec { width: 100%; border-collapse: collapse; min-width: 520px; }
.spec caption { text-align: left; padding: 16px 20px; font-weight: 700; color: var(--navy); background: var(--bg-light); border-bottom: 1px solid var(--line); }
.spec th, .spec td { text-align: left; padding: 14px 20px; border-bottom: 1px solid var(--line); vertical-align: top; }
.spec tr:last-child th, .spec tr:last-child td { border-bottom: 0; }
.spec th { width: 46%; font-weight: 600; color: var(--navy); background: #fbfcfd; }
.spec td { color: var(--text-2); }
.spec tr:hover td, .spec tr:hover th { background: #f4f7fa; }
.pending { display: inline-flex; align-items: center; gap: 7px; color: #8a6d3b; font-weight: 500; }
.pending::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--orange); flex: none; }

/* ---------------------------- Информационни блокове -------------------- */
.note { border-left: 4px solid var(--orange); background: var(--orange-050); padding: 18px 22px; border-radius: 0 var(--radius) var(--radius) 0; color: #5b4a2f; }
.note strong { color: #7a5a1e; }
.warn { border-left: 4px solid #c0392b; background: #fdecea; padding: 18px 22px; border-radius: 0 var(--radius) var(--radius) 0; color: #7d281f; }
.warn h3 { color: #a5281b; }
.warn .checklist li::before { background: rgba(192,57,43,.12); }
.warn .checklist li::after { border-color: #c0392b; }
.info-block { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.info-block h3 { display: flex; align-items: center; gap: 12px; }
.info-block h3 svg { width: 24px; height: 24px; color: var(--orange-600); flex: none; }

/* ------------------------------ Документи ------------------------------ */
.doc-card { display: flex; flex-direction: column; gap: 6px; }
.doc-card__top { display: flex; align-items: center; gap: 14px; margin-bottom: 8px; }
.doc-card__fmt { width: 46px; height: 46px; border-radius: 8px; background: var(--navy); color: #fff; display: flex; align-items: center; justify-content: center; font-size: .72rem; font-weight: 700; flex: none; }
.doc-card__meta { display: flex; flex-wrap: wrap; gap: 6px 16px; font-size: .82rem; color: var(--text-2); margin: 6px 0 16px; }
.doc-card__meta span strong { color: var(--navy); font-weight: 600; }
.badge { display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: 3px 9px; border-radius: 20px; }
.badge--pending { background: var(--orange-050); color: #9a6a1c; }
.badge--ready { background: #e6f4ea; color: #1e7a3d; }
.btn[disabled], .btn[aria-disabled="true"] { opacity: .5; cursor: not-allowed; pointer-events: none; }

/* ------------------------------- Галерия ------------------------------- */
.gallery-filter { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.gallery-filter button {
  font-family: inherit; font-size: .9rem; font-weight: 500; padding: 9px 16px;
  border: 1px solid var(--line); background: var(--white); color: var(--text-2);
  border-radius: 30px; cursor: pointer; transition: all .15s;
}
.gallery-filter button:hover { border-color: var(--navy); color: var(--navy); }
.gallery-filter button[aria-pressed="true"] { background: var(--navy); color: #fff; border-color: var(--navy); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-item { border: 0; padding: 0; background: none; cursor: zoom-in; border-radius: var(--radius); overflow: hidden; position: relative; }
.gallery-item .ph { border-radius: 0; }
.gallery-item .shot { border: 0; border-radius: 0; height: 100%; }
.gallery-item figcaption { position: absolute; left: 0; right: 0; bottom: 0; background: linear-gradient(transparent, rgba(11,33,56,.82)); color: #fff; font-size: .85rem; padding: 26px 14px 12px; text-align: left; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(6,16,28,.9); display: none; align-items: center; justify-content: center; padding: 24px; }
.lightbox[data-open="true"] { display: flex; }
.lightbox__content { max-width: 900px; width: 100%; }
.lightbox__content .ph { aspect-ratio: 16/10; background: linear-gradient(135deg,#12314f,#0b2138); }
.lightbox__img { width: 100%; max-height: 82vh; object-fit: contain; border-radius: var(--radius); display: block; background: #0b1a2b; }
.lightbox__cap { color: #cdd6e0; text-align: center; margin-top: 14px; font-size: .95rem; }
.lightbox__close { position: absolute; top: 18px; right: 22px; width: 46px; height: 46px; border-radius: 8px; background: rgba(255,255,255,.1); border: 0; color: #fff; font-size: 1.6rem; cursor: pointer; }
.lightbox__close:hover { background: rgba(255,255,255,.2); }

/* -------------------------------- Форма -------------------------------- */
.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 20px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .9rem; font-weight: 600; color: var(--navy); }
.field .req { color: #c0392b; }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 1rem; color: var(--text);
  padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: #fff; width: 100%; transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(242,140,40,.15);
}
.field textarea { resize: vertical; min-height: 110px; }
.field input[type="file"] { padding: 9px; background: var(--bg-light); }
.field .hint { font-size: .8rem; color: var(--text-2); }
.field--error input, .field--error textarea, .field--error select { border-color: #c0392b; }
.field__err { display: none; font-size: .82rem; color: #c0392b; }
.field--error .field__err { display: block; }
.consent { display: flex; align-items: flex-start; gap: 10px; }
.consent input { width: auto; margin-top: 4px; }
.consent label { font-weight: 400; color: var(--text-2); font-size: .9rem; }
.form-status { display: none; padding: 16px 20px; border-radius: var(--radius); margin-bottom: 20px; font-weight: 500; }
.form-status--ok { display: block; background: #e6f4ea; color: #1e7a3d; border: 1px solid #b8e0c4; }
.form-status--err { display: block; background: #fdecea; color: #a5281b; border: 1px solid #f3c3bd; }

/* -------------------------------- CTA ---------------------------------- */
.cta { background: var(--navy); border-radius: var(--radius); padding: 54px; text-align: center; position: relative; overflow: hidden; }
.cta::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px); background-size: 42px 42px; }
.cta > * { position: relative; }
.cta h2 { color: #fff; }
.cta p { color: #c3d0dd; max-width: 60ch; margin: 0 auto 26px; }

/* ------------------------------- Footer -------------------------------- */
.footer { background: var(--navy); color: #a9b8c8; padding: 60px 0 0; border-top: 3px solid var(--orange); }
.footer a { color: #c6d2df; }
.footer a:hover { color: #fff; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 46px; }
.footer__brand .brand { margin-bottom: 16px; }
.footer__brand p { font-size: .92rem; color: #93a6b8; max-width: 34ch; }
.footer h4 { color: #fff; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 16px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.footer ul a { font-size: .93rem; text-decoration: none; }
.footer__contact li { font-size: .93rem; color: #a9b8c8; display: flex; gap: 10px; }
.footer__contact svg { width: 17px; height: 17px; color: var(--orange); flex: none; margin-top: 3px; }
.footer__bottom { border-top: 1px solid var(--line-dark); padding: 22px 0; display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: space-between; font-size: .85rem; color: #8195a8; }
.footer__bottom a { font-size: .85rem; text-decoration: none; }
.footer__legal { display: flex; flex-wrap: wrap; gap: 8px 20px; }

/* ---------------------- Breadcrumb / page header ----------------------- */
.page-hero { background: var(--navy); color: #fff; padding: 54px 0; position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 46px 46px; }
.page-hero__inner { position: relative; }
.page-hero h1 { color: #fff; margin-bottom: 10px; }
.page-hero p { color: #c3d0dd; max-width: 62ch; margin: 0; }
.crumbs { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 0 0 16px; font-size: .85rem; color: #8aa0b6; }
.crumbs a { color: #b9c7d5; text-decoration: none; }
.crumbs a:hover { color: #fff; }
.crumbs li::after { content: "/"; margin-left: 8px; color: #56708a; }
.crumbs li:last-child::after { content: ""; }

/* --------------------------- Разни помощни ----------------------------- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.two-col--media-first .two-col__media { order: -1; }
.stack > * + * { margin-top: 14px; }
.divider { height: 1px; background: var(--line); border: 0; margin: 0; }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.muted { color: var(--text-2); }
.tag-row { display: flex; flex-wrap: wrap; gap: 10px; }
.tag { background: var(--white); border: 1px solid var(--line); border-radius: 30px; padding: 8px 16px; font-size: .9rem; color: var(--navy); font-weight: 500; }
.section--navy .tag { background: var(--navy-700); border-color: var(--line-dark); color: #d7e0ea; }

/* Анимации при скролване (умерени) */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .card:hover { transform: none; }
}

/* Skip link */
.skip { position: absolute; left: -9999px; top: 0; background: var(--orange); color: #fff; padding: 12px 20px; z-index: 300; border-radius: 0 0 6px 0; }
.skip:focus { left: 0; }

/* ============================== Responsive ============================== */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; padding: 56px 0; }
  .hero h1 { max-width: none; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .flow__row { grid-template-columns: 56px 1fr; }
  .flow__media { grid-column: 2; }
}
@media (max-width: 1200px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav[data-open="true"] .nav__links {
    display: flex; flex-direction: column; align-items: stretch; gap: 2px;
    position: absolute; top: var(--nav-h); left: 0; right: 0; margin: 0;
    background: var(--navy); border-bottom: 1px solid var(--line-dark); padding: 12px 16px 20px;
    box-shadow: 0 12px 24px rgba(0,0,0,.25); max-height: calc(100vh - var(--nav-h)); overflow-y: auto;
  }
  .nav[data-open="true"] .nav__links a { padding: 13px 12px; font-size: 1rem; }
  .nav[data-open="true"] .nav__cta { display: block; margin: 10px 16px 0; }
  .nav[data-open="true"] .nav__cta .btn { width: 100%; padding: 14px; font-size: 1rem; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .section { padding: 60px 0; }
  .btn { white-space: normal; max-width: 100%; }
  .grid--2, .grid--3, .grid--4, .steps, .two-col, .form-grid, .gallery-grid, .hilite { grid-template-columns: 1fr; }
  .two-col--media-first .two-col__media { order: 0; }
  .footer__grid { grid-template-columns: 1fr; gap: 30px; }
  .cta { padding: 36px 24px; }
  .form-card { padding: 24px; }
  .flow__row { grid-template-columns: 1fr; gap: 16px; }
  .hilite { border: 1px solid var(--line-dark); }
  .container { padding: 0 18px; }
}
@media (max-width: 400px) {
  .brand__sub { display: none; }
  .hero__actions .btn { width: 100%; }
}
