/* ============================================================
   KRONA v3 · Siemens Light · извлечено из KRONA_Homepage.html
   15 патчей: hero manual, spacing 96px, 6 products, 3 certs,
   SVG-logo, search, Schema.org, mega-menu, typography tighten,
   sec-cta form, cookie, a11y, polish.
   Подключается через krona-child/functions.php только на главной.
============================================================ */
/* ============================================================
   KRONA · ГЛАВНАЯ · Siemens Light Style
   Токены: #F2F3F4 фон / #001233 текст / #0033FF акцент / #fff карточки
============================================================ */

/* PATCH #12: Inter + Inter Tight (display-шрифт для заголовков) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Inter+Tight:wght@500;600;700;800&display=swap');

:root {
  --navy:        #001233;
  --blue:        #0033FF;
  --blue-hover:  #0028CC;
  --blue-light:  #EEF1FF;
  --page-bg:     #F2F3F4;
  --white:       #FFFFFF;
  --border:      #E2E5EC;
  --text:        #001233;
  --text-2:      #4A5568;
  --text-3:      #9AA3B2;
  --container:   1200px;
  /* PATCH #12: раздельные шрифты body / display */
  --font-body:    'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-display: 'Inter Tight', 'Inter', 'Helvetica Neue', Arial, sans-serif;
  /* PATCH #15: единая шкала radius и shadow */
  --radius:      3px;   /* дефолт: кнопки, inputs */
  --radius-md:   6px;   /* карточки продуктов/услуг */
  --radius-lg:   8px;   /* панели, формы, модалки */
  --shadow-sm:   0 2px 8px rgba(0, 18, 51, .06);
  --shadow-md:   0 8px 24px rgba(0, 18, 51, .10);
  --shadow-lg:   0 16px 48px rgba(0, 18, 51, .14);
  --shadow-blue: 0 8px 28px rgba(0, 51, 255, .10);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--page-bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }

/* ── SECTION DEFAULTS ── */
section { background: var(--page-bg); }
section.white { background: var(--white); }
section.navy  { background: var(--navy); }

/* ── LABELS (Siemens style) ── */
.label {
  display: block;
  font-size: 10px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--text-3);
  margin-bottom: 10px;
}
.label.blue { color: var(--blue); }

/* ── HEADINGS (PATCH #12: Inter Tight + выверенная шкала) ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--text);
}
h1 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.025em;
}
h1 span { color: var(--blue); }
h2 {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -.02em;
}
h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -.01em;
}
h4 {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -.005em;
}
h5 {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0;
}

.section-intro {
  padding-top: 56px;
  padding-bottom: 32px;
}
.section-intro h2 { margin-bottom: 8px; }
.section-intro p  { font-size: 15px; color: var(--text-2); max-width: 560px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: inherit; font-size: 13px; font-weight: 600;
  padding: 11px 22px; border-radius: var(--radius);
  border: none; cursor: pointer; transition: all .2s ease;
  text-decoration: none; white-space: nowrap;
}
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-hover); }
.btn-outline  { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn-outline:hover { background: var(--page-bg); }
.btn-white    { background: #fff; color: var(--blue); }
.btn-white:hover { opacity: .9; }
.btn-lg { font-size: 14px; padding: 13px 26px; }

/* ── LINK ARROW ── */
.link-arrow {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 13px; font-weight: 600; color: var(--blue);
  transition: gap .2s;
}
.link-arrow:hover { gap: 9px; }

/* ── DIVIDER ── */
hr.divider { border: none; border-top: 1px solid var(--border); }


/* =============================================================
   NAV — тёмная, поверх hero
============================================================= */
.site-nav {
  position: absolute; top: 0; left: 0; right: 0;
  z-index: 200;
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,.1);
  height: 60px;
  display: flex; align-items: center;
}
/* После скролла — становится тёмной */
.site-nav.scrolled {
  position: fixed;
  background: #001233;
  border-bottom-color: rgba(255,255,255,.08);
}
.site-nav .container {
  display: flex; align-items: center;
  justify-content: space-between; gap: 24px;
  width: 100%; max-width: var(--container);
  margin: 0 auto; padding: 0 32px;
}
/* PATCH #6: SVG-лого KRONA с tagline. Цвет прореза в O управляется
   через CSS-переменную --logo-cut, которая меняется по контексту (nav/footer/white). */
.nav-logo, .footer-logo-lockup {
  display: inline-flex; align-items: center; gap: 12px;
  text-decoration: none; flex-shrink: 0;
  line-height: 1;
}
.krona-logo {
  height: 28px; width: auto; display: block;
  color: #fff;
  --logo-cut: var(--navy); /* по умолчанию — совпадает с навигацией */
}
.krona-logo .krona-word  { fill: currentColor; }
.krona-logo .krona-cut   { fill: var(--logo-cut); }
.krona-logo .krona-tag   { fill: var(--blue); }
/* В хедере: белые буквы, прорез цвета navy (хедер-фон) */
.site-nav .krona-logo { --logo-cut: var(--navy); color: #fff; }
/* В футере ровно то же */
.site-footer .krona-logo { --logo-cut: var(--navy); color: #fff; }
/* Если лого окажется на белом фоне (например, карточка или внутр. страница) */
.on-white .krona-logo { color: var(--navy); --logo-cut: #fff; }

@media (max-width: 768px) {
  .krona-logo { height: 24px; }
  .krona-logo .krona-tag,
  .krona-logo .krona-tagline-group { display: none; }
  .krona-logo { width: 108px !important; }
}
.nav-links {
  display: flex; align-items: center; gap: 2px; flex: 1;
  justify-content: center;
}
.nav-links > a,
.nav-link-toggle {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 13px; font-weight: 400; color: rgba(255,255,255,.7);
  padding: 6px 12px; border-radius: var(--radius);
  transition: color .15s, background .15s;
  text-decoration: none;
  cursor: pointer;
}
.nav-links > a:hover,
.nav-link-toggle:hover { color: #fff; background: rgba(255,255,255,.08); }
.nav-links > a.active,
.nav-link-toggle.active { color: #fff; font-weight: 600; }

/* PATCH #11: Nav dropdowns + mega-menu */
.nav-item { position: relative; }
.nav-arrow { width: 8px; height: 5px; opacity: .55; transition: transform .22s, opacity .22s; flex-shrink: 0; }
.nav-item:hover .nav-arrow,
.nav-item:focus-within .nav-arrow { transform: rotate(180deg); opacity: 1; }

/* Малый dropdown (Отрасли / Компания) */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 240px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(0, 18, 51, .18);
  padding: 8px;
  opacity: 0; visibility: hidden;
  transition: opacity .22s, transform .22s, visibility .22s;
  z-index: 150;
}
.dropdown-menu::before {
  content: ''; position: absolute; left: 0; right: 0; top: -10px; height: 10px;
}
.nav-item:hover > .dropdown-menu,
.nav-item:focus-within > .dropdown-menu {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  font-size: 13px; color: var(--text); font-weight: 500;
  border-radius: var(--radius);
  transition: background .18s, color .18s;
  text-decoration: none;
}
.dropdown-menu a:hover { background: var(--blue-light); color: var(--blue); }
.dropdown-menu a .dm-count {
  margin-left: auto;
  font-size: 10px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-3);
}

/* Mega-menu для «Решений» */
.mega-menu {
  position: fixed;
  top: 60px; left: 0; right: 0;
  background: #fff;
  box-shadow: 0 16px 40px rgba(0, 18, 51, .18);
  opacity: 0; visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .25s, transform .25s, visibility .25s;
  z-index: 150;
  padding: 32px 0 24px;
}
.mega-menu::before {
  content: ''; position: absolute; left: 0; right: 0; top: -10px; height: 10px;
}
.site-nav.scrolled .mega-menu { top: 52px; }
.has-mega:hover > .mega-menu,
.has-mega:focus-within > .mega-menu {
  opacity: 1; visibility: visible;
  transform: translateY(0);
}
.mega-menu .container {
  max-width: var(--container);
  margin: 0 auto; padding: 0 32px;
}
.mega-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: 18px;
}
.mega-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 12px 14px;
  border-radius: var(--radius);
  transition: background .18s;
  text-decoration: none; color: inherit;
}
.mega-item:hover { background: var(--blue-light); }
.mega-item .mi-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: var(--blue-light);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  transition: background .18s;
}
.mega-item:hover .mi-icon { background: #fff; }
.mega-item .mi-icon svg { width: 22px; height: 22px; }
.mega-item h5 {
  font-size: 14px; font-weight: 700; color: var(--text);
  margin-bottom: 2px; line-height: 1.25;
}
.mega-item p {
  font-size: 12px; color: var(--text-2); line-height: 1.45;
  margin: 0;
}
.mega-item:hover h5 { color: var(--blue); }
.mega-footer {
  border-top: 1px solid var(--border);
  padding-top: 16px; margin-top: 8px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px; flex-wrap: wrap;
}
.mega-footer-note { font-size: 12px; color: var(--text-3); }
.mega-footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.mega-footer a {
  font-size: 13px; font-weight: 600; color: var(--blue);
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 5px;
  transition: gap .2s;
}
.mega-footer a:hover { gap: 9px; }

/* Hamburger — только на мобайле */
.nav-hamburger {
  display: none;
  width: 36px; height: 36px;
  background: transparent;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  position: relative;
  cursor: pointer;
  transition: border-color .22s, background .22s;
}
.nav-hamburger:hover { border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.04); }
.nav-hamburger span {
  position: absolute; left: 9px; right: 9px;
  height: 1.5px; background: #fff;
  transition: transform .28s, opacity .2s, top .28s;
}
.nav-hamburger span:nth-child(1) { top: 12px; }
.nav-hamburger span:nth-child(2) { top: 17px; }
.nav-hamburger span:nth-child(3) { top: 22px; }
.nav-hamburger.open span:nth-child(1) { top: 17px; transform: rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { top: 17px; transform: rotate(-45deg); }

/* Mobile menu (fullscreen slide-in) */
.mobile-menu {
  position: fixed; inset: 0; z-index: 300;
  background: var(--navy);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
  visibility: hidden;
}
.mobile-menu.open { transform: translateX(0); visibility: visible; }
.mobile-menu-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  flex-shrink: 0;
}
.mobile-menu-head .krona-logo { height: 22px; }
.mobile-menu-close {
  width: 36px; height: 36px;
  background: transparent; border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  color: #fff; font-size: 22px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s;
}
.mobile-menu-close:hover { background: var(--blue); border-color: var(--blue); }
.mobile-menu-body { padding: 16px 20px 24px; flex-grow: 1; }
.mobile-menu-body ul { list-style: none; padding: 0; margin: 0; }
.mobile-menu-body > ul > li { border-bottom: 1px solid rgba(255,255,255,.06); }
.mm-top-link,
.mm-top-toggle {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 4px;
  color: #fff; font-size: 18px; font-weight: 500;
  text-decoration: none; cursor: pointer;
  list-style: none;
}
.mm-top-toggle::-webkit-details-marker { display: none; }
.mm-top-toggle::after {
  content: '';
  width: 8px; height: 8px; flex-shrink: 0;
  border-right: 2px solid rgba(255,255,255,.5);
  border-bottom: 2px solid rgba(255,255,255,.5);
  transform: rotate(-45deg);
  transition: transform .22s;
}
details[open] > .mm-top-toggle::after { transform: rotate(45deg); }
.mm-sub { padding: 0 0 16px 0; display: flex; flex-direction: column; gap: 2px; }
.mm-sub li { border: none; }
.mm-sub a {
  display: block;
  padding: 10px 16px;
  color: rgba(255,255,255,.72);
  font-size: 14px; font-weight: 400;
  text-decoration: none;
  border-radius: var(--radius);
  transition: color .18s, background .18s;
}
.mm-sub a:hover { color: #fff; background: rgba(255,255,255,.04); }
.mobile-menu-foot {
  padding: 24px 20px 28px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.mobile-menu-foot .mm-phone {
  display: inline-block;
  color: #fff; font-size: 22px; font-weight: 800;
  letter-spacing: -.01em; text-decoration: none;
}
.mobile-menu-foot .mm-hours { font-size: 12px; color: rgba(255,255,255,.45); margin-top: 4px; }
.mobile-menu-foot .mm-cta {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--blue); color: #fff;
  padding: 14px 20px;
  font-size: 14px; font-weight: 700;
  border-radius: var(--radius);
  text-decoration: none;
  margin-top: 16px;
  transition: background .2s;
}
.mobile-menu-foot .mm-cta:hover { background: var(--blue-hover); }
.mobile-menu-foot .mm-messengers { display: flex; gap: 8px; margin-top: 14px; }
.mobile-menu-foot .mm-messengers a {
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  padding: 10px; font-size: 12px; color: rgba(255,255,255,.65);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  text-decoration: none;
  transition: color .18s, border-color .18s;
}
.mobile-menu-foot .mm-messengers a:hover { color: #fff; border-color: rgba(255,255,255,.3); }

/* Enhanced sticky header — shrink + shadow при скролле */
.site-nav { transition: height .28s cubic-bezier(.4,0,.2,1), background .22s, box-shadow .28s; }
.site-nav.scrolled {
  height: 52px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .32);
}
.site-nav.scrolled .krona-logo { height: 24px; transition: height .28s; }

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
}
.nav-right { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.nav-phone { font-size: 13px; color: rgba(255,255,255,.5); font-weight: 500; }


/* =============================================================
   PATCH #14 · COOKIE-БАННЕР (ФЗ-152)
============================================================= */
.cookie-banner {
  position: fixed;
  bottom: 20px; left: 20px; right: 20px;
  max-width: 1080px;
  margin: 0 auto;
  background: var(--navy);
  color: #fff;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  padding: 22px 26px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, .4);
  z-index: 400;
  display: none;
  transform: translateY(calc(100% + 40px));
  transition: transform .45s cubic-bezier(.4,0,.2,1);
}
.cookie-banner.ready { display: block; }
.cookie-banner.visible { transform: translateY(0); }

.cookie-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}
.cookie-text h4 {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 700; color: #fff;
  margin-bottom: 4px;
  letter-spacing: -.005em;
}
.cookie-text p {
  font-size: 13px; color: rgba(255,255,255,.65);
  line-height: 1.5; margin: 0;
  max-width: 640px;
}
.cookie-text a { color: var(--blue); text-decoration: none; }
.cookie-text a:hover { text-decoration: underline; }

.cookie-actions {
  display: flex; gap: 10px;
  flex-shrink: 0;
}
.cookie-btn {
  padding: 11px 20px;
  font-family: inherit;
  font-size: 13px; font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s;
  white-space: nowrap;
}
.cookie-btn-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,.22);
  color: #fff;
}
.cookie-btn-outline:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.4);
}
.cookie-btn-primary {
  background: var(--blue);
  border: 1px solid var(--blue);
  color: #fff;
}
.cookie-btn-primary:hover {
  background: var(--blue-hover);
  border-color: var(--blue-hover);
}

@media (max-width: 768px) {
  .cookie-banner {
    bottom: 76px; /* над sticky-mobile-cta 60px + зазор */
    left: 12px; right: 12px;
    padding: 16px 18px;
    border-radius: 6px;
  }
  .cookie-inner {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .cookie-btn { padding: 11px 10px; font-size: 12px; }
}

/* PATCH #7: Иконка поиска в навигации */
.nav-search-btn {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  color: rgba(255,255,255,.7);
  cursor: pointer;
  transition: color .2s, border-color .2s, background .2s;
}
.nav-search-btn:hover {
  color: #fff;
  border-color: rgba(255,255,255,.3);
  background: rgba(255,255,255,.04);
}
.nav-search-btn svg { width: 16px; height: 16px; }

/* PATCH #7: Fullscreen overlay поиска */
.search-overlay {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(0,18,51,0.92);
  backdrop-filter: blur(12px);
  display: none;
  align-items: flex-start; justify-content: center;
  padding-top: 20vh;
  animation: searchFadeIn .2s ease;
}
.search-overlay.open { display: flex; }
@keyframes searchFadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
.search-overlay-inner {
  width: 100%; max-width: 720px;
  padding: 0 32px;
}
.search-overlay-close {
  position: absolute; top: 28px; right: 32px;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  color: #fff; font-size: 22px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s;
}
.search-overlay-close:hover {
  background: var(--blue); border-color: var(--blue);
}
.search-overlay-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
  display: block;
}
.search-overlay-form {
  position: relative;
  border-bottom: 2px solid rgba(255,255,255,.25);
  margin-bottom: 28px;
  transition: border-color .2s;
}
.search-overlay-form:focus-within { border-bottom-color: var(--blue); }
.search-overlay-input {
  width: 100%;
  background: transparent; border: none; outline: none;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 500;
  padding: 12px 48px 18px 0;
  letter-spacing: -.015em;
}
.search-overlay-input::placeholder { color: rgba(255,255,255,.35); }
.search-overlay-submit {
  position: absolute; right: 0; top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  background: var(--blue); color: #fff;
  border: none; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .2s;
}
.search-overlay-submit:hover { background: var(--blue-hover); }
.search-overlay-submit svg { width: 16px; height: 16px; }
.search-overlay-hints { display: flex; flex-wrap: wrap; gap: 8px; }
.search-hint {
  font-size: 12px; font-weight: 500;
  padding: 8px 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  color: rgba(255,255,255,.65);
  cursor: pointer;
  transition: color .2s, border-color .2s, background .2s;
}
.search-hint:hover {
  color: #fff; border-color: var(--blue);
  background: rgba(0,51,255,.15);
}
.search-overlay-note {
  margin-top: 24px;
  font-size: 12px; color: rgba(255,255,255,.45);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .nav-search-btn { width: 32px; height: 32px; }
  .search-overlay { padding-top: 12vh; }
  .search-overlay-inner { padding: 0 20px; }
  .search-overlay-close { top: 16px; right: 20px; }
}


/* =============================================================
   PATCH #10 · МИКРО-ИНТЕРАКЦИИ
   Fade-in · counter · sticky mobile CTA · back-to-top · progress bar
============================================================= */

/* Scroll-progress bar наверху страницы */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px; width: 0%;
  background: var(--blue);
  z-index: 250;
  transition: width .08s linear;
  will-change: width;
}

/* Reveal по скроллу */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s cubic-bezier(.4,0,.2,1),
              transform .65s cubic-bezier(.4,0,.2,1);
  will-change: opacity, transform;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* Back-to-top button */
.back-to-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 48px; height: 48px;
  background: var(--blue); color: #fff;
  border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0; pointer-events: none;
  transform: translateY(12px);
  transition: opacity .3s, transform .3s, background .2s;
  box-shadow: 0 8px 24px rgba(0, 51, 255, .3);
  z-index: 90;
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 51, 255, .4);
}
.back-to-top svg { width: 18px; height: 18px; }

/* Sticky mobile CTA — плавающая кнопка внизу экрана только на мобайле */
.sticky-mobile-cta {
  display: none;
}
@media (max-width: 768px) {
  .sticky-mobile-cta {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    padding: 14px 20px;
    background: var(--blue);
    color: #fff;
    font-size: 14px; font-weight: 700;
    letter-spacing: .02em;
    text-decoration: none;
    z-index: 80;
    box-shadow: 0 -6px 20px rgba(0, 0, 0, .18);
    transition: background .2s;
  }
  .sticky-mobile-cta:hover,
  .sticky-mobile-cta:active { background: var(--blue-hover); }
  .sticky-mobile-cta svg { width: 16px; height: 16px; }
  .back-to-top { bottom: 72px; right: 16px; width: 42px; height: 42px; }
  /* Чтобы footer не прятался под sticky CTA */
  body { padding-bottom: 60px; }
}

/* Тонкая hover-полировка для всех основных карточек.
   Переопределяет transition/shadow в едином cubic-bezier. */
.dir-card,
.cycle-card,
.product-card,
.service-card,
.cert-item,
.license-card,
.mcert-card,
.industry-card,
.project-card,
.app-card,
.cases-grid .case-card,
.standard-card,
.adv-card,
.smr-card {
  transition:
    border-color .28s cubic-bezier(.4,0,.2,1),
    box-shadow .28s cubic-bezier(.4,0,.2,1),
    transform .28s cubic-bezier(.4,0,.2,1);
}

/* =============================================================
   01 · HERO SLIDER (Siemens style)
============================================================= */
.hero-slider {
  position: relative;
  width: 100%;
  min-height: 680px;
  overflow: hidden;
  background: var(--navy);
}

/* Слайды */
.hero-slides {
  display: flex;
  width: 100%;
  transition: none;
}
.hero-slide {
  flex-shrink: 0;
  width: 100%;
  min-height: 680px;
  position: relative;
  overflow: hidden;
  background: #001233;
}

/* Фоновая иллюстрация — полный блид */
.hs-right {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hs-right img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center right;
}

/* Градиентный оверлей слева — читаемость текста */
.hero-slide::after {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    #001233 0%,
    #001233 35%,
    rgba(0,18,51,0.88) 50%,
    rgba(0,18,51,0.45) 65%,
    rgba(0,18,51,0.10) 82%,
    transparent 100%
  );
}

/* Текстовый блок поверх */
.hs-left {
  position: relative; z-index: 3;
  padding: 80px clamp(24px,4vw,56px) 48px clamp(24px,3vw,48px); /* под nav */
  max-width: 52%;        /* растягиваем как у Siemens */
  display: flex; flex-direction: column; justify-content: center;
  min-height: 680px;
}
.hs-label {
  font-size: 10px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--blue);
  display: inline-block; margin-bottom: 16px;
  width: fit-content;
}
.hs-left h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 700; color: #fff;
  letter-spacing: -.022em;
  line-height: 1.1;
  margin-bottom: 18px;
  max-width: 100%;
}
.hs-left h1 em { font-style: normal; color: var(--blue); }
/* h2 на слайдах 2-4 — визуально как h1, но семантически h2 (SEO: один H1 на страницу) */
.hs-left h2.hs-h {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 700; color: #fff;
  letter-spacing: -.022em;
  line-height: 1.1;
  margin-bottom: 18px;
  max-width: 100%;
}
.hs-left h2.hs-h em { font-style: normal; color: var(--blue); }
/* Фон-фолбэк для hs-right, когда реального фото ещё нет */
.hs-right {
  background:
    radial-gradient(circle at 75% 40%, rgba(0,51,255,0.08) 0%, transparent 55%),
    linear-gradient(135deg, #0A1A4D 0%, #001233 50%, #000828 100%);
}
.hs-right[data-bg="smr"]         { background-image: linear-gradient(135deg, #10234A 0%, #001233 55%, #000828 100%); }
.hs-right[data-bg="production"]  { background-image: linear-gradient(135deg, #0A1A4D 0%, #001233 50%, #000828 100%); }
.hs-right[data-bg="asutp"]       { background-image: linear-gradient(135deg, #001B99 0%, #001233 55%, #000828 100%); }
.hs-sub {
  font-size: 14px; color: rgba(255,255,255,.65);
  line-height: 1.75; max-width: 480px; margin-bottom: 36px;
}
.hs-btns { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.hs-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue); color: #fff;
  font-size: 15px; font-weight: 700; padding: 16px 34px;
  border: none; border-radius: 0; cursor: pointer;
  text-decoration: none; transition: background .2s;
  letter-spacing: .01em; white-space: nowrap;
}
.hs-btn-primary:hover { background: var(--blue-hover); }
.hs-btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: #fff;
  font-size: 15px; font-weight: 600; padding: 15px 34px;
  border: 2px solid rgba(255,255,255,.55); border-radius: 0;
  cursor: pointer; text-decoration: none; transition: border-color .2s, background .2s;
  white-space: nowrap;
}
.hs-btn-outline:hover { border-color: rgba(255,255,255,.9); background: rgba(255,255,255,.06); }

/* ── 5 ЦИФР-ЯКОРЕЙ ВНУТРИ HERO ── */
.hero-anchors {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.12);
  max-width: 760px;
}
.ha-item {
  min-width: 0;
  padding: 8px 12px 8px 0;
  border-left: 2px solid transparent;
  padding-left: 14px;
  margin-left: -14px;
  transition: border-color .25s, padding-left .25s;
}
.ha-item:hover { border-left-color: var(--blue); }
.ha-num {
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 800; color: #fff;
  letter-spacing: -.01em; line-height: 1.1;
  white-space: nowrap;
}
.ha-num em {
  font-style: normal; color: var(--blue); font-weight: 800;
}
.ha-lbl {
  font-size: 11px; color: rgba(255,255,255,.6);
  line-height: 1.4; margin-top: 6px; font-weight: 500;
}

/* ── НАВИГАЦИЯ ── */
.hs-nav {
  position: absolute; bottom: 28px; left: 0; right: 0;
  display: flex; align-items: center; justify-content: center;
  gap: 10px; z-index: 10;
}
/* Кнопка паузы */
.hs-pause {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(30,30,50,.6); border: 1px solid rgba(255,255,255,.25);
  color: #fff; font-size: 12px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  margin-right: 8px; transition: background .2s; flex-shrink: 0;
  backdrop-filter: blur(4px);
}
.hs-pause:hover { background: rgba(60,60,90,.8); }
.hs-dot {
  height: 4px; border-radius: 2px;
  background: rgba(255,255,255,.35);
  cursor: pointer; transition: background .25s, width .25s;
  border: none; padding: 0; flex-shrink: 0;
  width: 24px;
}
.hs-dot.active {
  background: var(--blue); width: 44px;
}

/* ── СТРЕЛКИ ── */
.hs-arrow {
  position: absolute; top: 50%; z-index: 10;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.15);
  color: #fff; font-size: 22px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .22s, border-color .22s, transform .22s;
  border-radius: 50%;
  backdrop-filter: blur(6px);
}
.hs-arrow:hover {
  background: var(--blue);
  border-color: var(--blue);
}
.hs-arrow-prev { left: 28px; }
.hs-arrow-next { right: 28px; }
.hs-arrow-prev:hover { transform: translateY(-50%) translateX(-2px); }
.hs-arrow-next:hover { transform: translateY(-50%) translateX(2px); }

/* ── СЧЁТЧИК СЛАЙДОВ (крупнее, промышленный) ── */
.hs-counter {
  position: absolute; top: 28px; right: 36px; z-index: 10;
  font-size: 13px; font-weight: 700; color: rgba(255,255,255,.55);
  font-family: 'Inter', monospace; letter-spacing: .08em;
  display: inline-flex; align-items: baseline; gap: 4px;
  padding: 6px 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  backdrop-filter: blur(6px);
}
.hs-counter #hsCurrent {
  font-size: 17px; font-weight: 800; color: var(--blue);
  letter-spacing: -.01em;
}

/* ── ПОЛОСКА ПРОГРЕССА ── */
.hs-progress {
  position: absolute; bottom: 0; left: 0;
  height: 2px; background: var(--blue); z-index: 11;
  transition: width 0s linear;
}
.hs-progress.animating {
  transition: width 5s linear;
}

/* =============================================================
   01b · STATS STRIP
============================================================= */
.sec-stats {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 36px 40px;
  border-right: 1px solid var(--border);
  position: relative;
}
.stat-item:last-child { border-right: none; }
/* синяя черта сверху у первого */
.stat-item:first-child::before {
  content: '';
  position: absolute; top: 0; left: 40px;
  width: 32px; height: 3px;
  background: var(--blue); border-radius: 0 0 2px 2px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.5vw, 60px);
  font-weight: 700; letter-spacing: -.035em; line-height: 1;
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}
.stat-num.blue  { color: var(--blue); }
.stat-num.dark  { color: var(--text); }
.stat-label {
  font-size: 13px; color: var(--text-2); font-weight: 500; line-height: 1.4;
}


/* =============================================================
   02 · КАРТОЧКИ НАПРАВЛЕНИЙ
============================================================= */
.sec-directions {
  background: var(--page-bg);
  padding: 48px 0;
}
.sec-directions h2 { margin-bottom: 28px; }
.directions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.dir-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px 24px;
  transition: border-color .2s, box-shadow .2s;
}
.dir-card:hover {
  border-color: #c0cbff;
  box-shadow: 0 4px 20px rgba(0,51,255,.06);
}
.dir-card-num {
  font-size: 10px; font-weight: 700; color: var(--text-3);
  font-family: monospace; letter-spacing: .08em;
  margin-bottom: 16px;
}
.dir-card-icon {
  width: 40px; height: 40px;
  background: var(--blue-light);
  border-radius: 4px;
  margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center;
}
.dir-card-icon svg { width: 20px; height: 20px; stroke: var(--blue); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.dir-card h4 { margin-bottom: 8px; }
.dir-card p  { font-size: 13px; color: var(--text-2); line-height: 1.55; margin-bottom: 18px; }


/* =============================================================
   02b · ПОЛНЫЙ ЦИКЛ ПРОЕКТА
============================================================= */
.sec-cycle {
  background: var(--white);
  padding: 56px 0;
  border-top: 1px solid var(--border);
}
.sec-cycle h2 { margin-bottom: 6px; }
.cycle-accent {
  width: 32px; height: 3px;
  background: var(--blue);
  border-radius: 2px;
  margin-bottom: 36px;
}
.cycle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.cycle-card {
  border: 1.5px solid var(--border);
  border-radius: 4px;
  padding: 28px 24px 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 120px;
  transition: border-color .2s, box-shadow .2s;
  cursor: default;
}
.cycle-card:hover {
  border-color: var(--blue);
  box-shadow: 0 2px 16px rgba(0,51,255,.07);
}
.cycle-card-name {
  font-size: 13px; font-weight: 700;
  color: var(--text); line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: .04em;
  max-width: 180px;
}
.cycle-card-num {
  font-family: var(--font-display);
  position: absolute;
  bottom: 18px; right: 22px;
  font-size: 36px; font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--blue); opacity: .25;
  line-height: 1; letter-spacing: -.02em;
  transition: opacity .2s;
}
.cycle-card:hover .cycle-card-num { opacity: .45; }

/* =============================================================
   03 · ПРОДУКЦИЯ
============================================================= */
.sec-products { background: var(--white); padding: 56px 0; border-top: 1px solid var(--border); }
.products-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 48px;
  align-items: start;
}
.products-text h2 { margin-bottom: 14px; }
.products-text p { font-size: 14px; color: var(--text-2); line-height: 1.7; margin-bottom: 28px; }
.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}
.product-card {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #d1d5db;
  cursor: pointer;
}
.product-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.product-card:hover img { transform: scale(1.04); }
.product-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,18,51,.72) 0%, rgba(0,18,51,.1) 60%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 20px;
}
.product-card-tag {
  font-size: 9px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--blue);
  margin-bottom: 6px;
}
.product-card-name {
  font-size: 15px; font-weight: 700; color: #fff; line-height: 1.3;
}
.product-card-link {
  font-size: 11px; color: rgba(255,255,255,.65);
  margin-top: 8px; display: flex; align-items: center; gap: 4px;
}


/* =============================================================
   04 · ПОСТАВЩИКИ
============================================================= */
.sec-partners {
  background: var(--page-bg);
  padding: 48px 0;
  border-top: 1px solid var(--border);
}
.partners-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.partners-text h2 { margin-bottom: 12px; }
.partners-text p { font-size: 14px; color: var(--text-2); line-height: 1.7; }
.partners-logos {
  display: flex; flex-wrap: wrap;
  gap: 8px; align-items: center;
}
.partner-logo {
  font-size: 13px; font-weight: 700; color: #b0b8c8;
  padding: 8px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  letter-spacing: .04em;
  transition: color .2s, border-color .2s;
}
.partner-logo:hover { color: var(--text-2); border-color: #c5cad5; }


/* =============================================================
   05 · КАК МЫ РАБОТАЕМ
============================================================= */
.sec-process {
  background: var(--white);
  padding: 56px 0;
  border-top: 1px solid var(--border);
}
.sec-process h2 { margin-bottom: 40px; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
}
/* соединительная линия */
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px; left: 5%; right: 5%;
  height: 1px;
  background: var(--border);
  z-index: 0;
}
.process-step {
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  padding: 0 12px;
}
.step-num-wrap {
  width: 56px; height: 56px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  transition: border-color .2s, background .2s;
}
.process-step:hover .step-num-wrap {
  background: var(--blue-light);
  border-color: var(--blue);
}
.step-num {
  font-size: 15px; font-weight: 800;
  color: var(--text); letter-spacing: -.01em;
}
.process-step:hover .step-num { color: var(--blue); }
.step-title { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.step-desc  { font-size: 12px; color: var(--text-2); line-height: 1.5; }
.step-time  { font-size: 11px; font-weight: 700; color: var(--blue); margin-top: 6px; }


/* =============================================================
   06 · СЕРТИФИКАТЫ
============================================================= */
.sec-certs {
  background: var(--page-bg);
  padding: 48px 0;
  border-top: 1px solid var(--border);
}
/* PATCH #9: компактные 3 карточки, side-by-side layout */
.certs-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.certs-text h2 { margin-bottom: 12px; }
.certs-text p { font-size: 14px; color: var(--text-2); line-height: 1.7; }

.certs-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.cert-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: left;
  transition: border-color .22s, box-shadow .22s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.cert-item:hover {
  border-color: #c0cbff;
  box-shadow: 0 4px 16px rgba(0,51,255,.06);
}
/* Компактное превью: полоса 80px с иконкой (принимает img при необходимости) */
.cert-preview {
  height: 80px;
  background: linear-gradient(135deg, var(--blue-light) 0%, #e1e6ff 100%);
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.cert-preview img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.cert-preview-ph { display: flex; align-items: center; justify-content: center; }
.cert-preview-ph svg {
  width: 28px; height: 28px;
  color: var(--blue); opacity: .6;
}
.cert-info {
  padding: 14px 16px 16px;
  border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 4px;
  flex-grow: 1;
}
.cert-tag {
  font-size: 10px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 2px;
}
.cert-name  { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 2px; line-height: 1.3; }
.cert-desc  { font-size: 12px; color: var(--text-2); line-height: 1.45; flex-grow: 1; }


/* PATCH #5: Блок «Сертификаты компонентов» в sec-partners */
.partners-certs {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}
.partners-certs-header {
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: 16px;
  margin-bottom: 24px;
}
.partners-certs-header h3 {
  font-size: 22px; font-weight: 700; letter-spacing: -.015em;
  color: var(--text);
  margin-top: 6px;
}
.mcerts-wrap { overflow: hidden; position: relative; }
.mcerts-track {
  display: flex; gap: 14px;
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.mcert-card {
  flex-shrink: 0;
  width: calc(20% - 12px);  /* 5 в ряду на десктопе */
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  background: var(--white);
  transition: border-color .22s, box-shadow .22s;
  cursor: pointer;
}
.mcert-card:hover {
  border-color: #c0cbff;
  box-shadow: 0 4px 20px rgba(0,51,255,.07);
}
.mcert-preview {
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, #f0f1f4 0%, #e5e7ec 100%);
  position: relative; overflow: hidden;
}
.mcert-preview img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
}
.mcert-preview-ph {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px; padding: 14px; text-align: center;
}
.mcert-preview-ph .mcert-brand {
  font-size: 14px; font-weight: 800;
  letter-spacing: .06em;
  color: #8A95AB;
}
.mcert-preview-ph svg {
  width: 28px; height: 28px;
  color: var(--text-3); opacity: .35;
}
.mcert-info {
  padding: 12px 14px;
  border-top: 1px solid var(--border);
}
.mcert-name {
  font-size: 12px; font-weight: 600;
  color: var(--text); line-height: 1.4;
}

@media (max-width: 1024px) {
  .mcert-card { width: calc(33.333% - 10px); } /* 3 в ряду */
}
@media (max-width: 768px) {
  .mcert-card { width: calc(50% - 7px); }       /* 2 в ряду */
  .partners-certs-header { flex-direction: column; gap: 8px; }
}


/* =============================================================
   07 · СМР
============================================================= */
.sec-smr {
  background: var(--white);
  padding: 56px 0;
  border-top: 1px solid var(--border);
}
.sec-smr h2 { margin-bottom: 8px; }
.sec-smr .sec-sub { font-size: 14px; color: var(--text-2); margin-bottom: 36px; }
.smr-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.smr-card {
  background: var(--page-bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 22px 20px;
  transition: border-color .2s;
}
.smr-card:hover { border-color: #c0cbff; }
.smr-card-num {
  font-size: 10px; font-weight: 700; color: var(--blue);
  font-family: monospace; letter-spacing: .08em; margin-bottom: 10px;
}
.smr-card h4 { margin-bottom: 6px; }
.smr-card p  { font-size: 12px; color: var(--text-2); line-height: 1.5; }
.smr-more { margin-top: 28px; }

/* лицензии внутри СМР */
.smr-licenses {
  margin-top: 52px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.smr-licenses-header {
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: 16px;
  margin-bottom: 6px;
}
.smr-licenses-header h3 { font-size: 24px; font-weight: 700; letter-spacing: -.015em; }
.slider-nav { display: flex; gap: 6px; flex-shrink: 0; margin-top: 4px; }
.slider-btn {
  width: 38px; height: 38px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 14px; color: var(--text-2);
  transition: border-color .2s, color .2s, background .2s;
  user-select: none;
}
.slider-btn:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-light); }
.licenses-accent {
  width: 32px; height: 3px; background: var(--blue);
  border-radius: 2px; margin-bottom: 28px;
}
.licenses-track-wrap {
  overflow: hidden;
  position: relative;
}
.licenses-track {
  display: flex; gap: 16px;
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.license-card {
  flex-shrink: 0;
  width: calc(25% - 12px);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  cursor: pointer;
}
.license-card:hover {
  border-color: #c0cbff;
  box-shadow: 0 4px 20px rgba(0,51,255,.07);
}
.license-img {
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, #f0f1f4 0%, #e5e7ec 100%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.license-img img { width: 100%; height: 100%; object-fit: cover; }
.license-img-placeholder {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 8px; padding: 16px;
  text-align: center;
}
.license-img-placeholder svg { opacity: .25; }
.license-img-placeholder span { font-size: 11px; color: var(--text-3); }
.license-info {
  padding: 12px 14px;
  border-top: 1px solid var(--border);
}
.license-name { font-size: 12px; font-weight: 600; color: var(--text); line-height: 1.4; }


/* =============================================================
   08 · ПРЕИМУЩЕСТВА
============================================================= */
.sec-adv {
  background: var(--page-bg);
  padding: 56px 0;
  border-top: 1px solid var(--border);
}
.sec-adv h2 { margin-bottom: 36px; }
.adv-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.adv-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 24px 20px;
}
.adv-val {
  font-family: var(--font-display);
  font-size: 32px; font-weight: 700;
  letter-spacing: -.025em; line-height: 1;
  color: var(--blue); margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}
.adv-val.dark { color: var(--text); }
.adv-card h4 { margin-bottom: 6px; font-size: 14px; }
.adv-card p  { font-size: 12px; color: var(--text-2); line-height: 1.5; }


/* =============================================================
   09 · КЛИЕНТЫ
============================================================= */
.sec-clients {
  background: var(--white);
  padding: 48px 0;
  border-top: 1px solid var(--border);
}
.clients-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.clients-intro { margin-bottom: 24px; }
.clients-intro h2 { margin-bottom: 8px; }
.client-logo {
  font-size: 13px; font-weight: 700;
  color: #b0b8c8; letter-spacing: .05em;
  padding: 10px 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: color .2s;
}
.client-logo:hover { color: var(--text-3); }
.clients-cta { margin-top: 28px; }


/* =============================================================
   10 · ОТРАСЛИ
============================================================= */
.sec-industries {
  background: var(--page-bg);
  padding: 56px 0;
  border-top: 1px solid var(--border);
}
.industries-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 48px;
  align-items: start;
}
.industries-text h2 { margin-bottom: 12px; }
.industries-text p  { font-size: 14px; color: var(--text-2); line-height: 1.7; }
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.industry-card {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #c5c9d1;
  cursor: pointer;
}
.industry-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
  filter: grayscale(20%);
}
.industry-card:hover img { transform: scale(1.06); filter: grayscale(0); }
.industry-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,18,51,.68) 0%, rgba(0,18,51,.05) 55%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 18px;
}
.industry-count {
  font-size: 10px; font-weight: 700; color: var(--blue);
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: 4px;
}
.industry-name { font-size: 14px; font-weight: 700; color: #fff; }


/* =============================================================
   11 · ПРОЕКТЫ
============================================================= */
.sec-projects {
  background: var(--white);
  padding: 56px 0;
  border-top: 1px solid var(--border);
}
.sec-projects h2 { margin-bottom: 36px; }
.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.project-card {
  background: var(--page-bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color .2s;
}
.project-card:hover { border-color: #c0cbff; }
.project-img {
  aspect-ratio: 4/3;
  background: #c5c9d1;
  overflow: hidden;
}
.project-img img { width: 100%; height: 100%; object-fit: cover; }
.project-info { padding: 16px; }
.project-tag {
  font-size: 9px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 6px;
}
.project-name { font-size: 14px; font-weight: 700; color: var(--text); line-height: 1.3; margin-bottom: 8px; }
.project-client {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--text-2);
}
.projects-footer { display: flex; justify-content: center; }


/* =============================================================
   12 · ФИНАЛЬНЫЙ CTA С ФОРМОЙ (PATCH #13)
============================================================= */
.sec-cta {
  background: var(--navy);
  padding: 80px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.sec-cta::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 40%, rgba(0,51,255,.12) 0%, transparent 50%),
    radial-gradient(circle at 85% 80%, rgba(0,51,255,.08) 0%, transparent 45%);
  pointer-events: none;
}
.cta-grid {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
}
.cta-text .label { color: var(--blue); margin-bottom: 14px; }
.cta-text h2 {
  color: #fff;
  margin-bottom: 14px;
  font-size: clamp(26px, 3vw, 40px);
}
.cta-text p {
  color: rgba(255,255,255,.7);
  font-size: 16px; line-height: 1.65;
  margin-bottom: 28px;
  max-width: 500px;
}
.cta-contacts { display: flex; flex-direction: column; gap: 10px; }
.cta-contact {
  display: flex; align-items: center; gap: 14px;
  color: #fff; text-decoration: none;
  padding: 8px 0;
  transition: transform .2s;
}
.cta-contact:hover { transform: translateX(4px); }
.cta-contact .cc-ic {
  width: 42px; height: 42px;
  background: rgba(0,51,255,.15);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
  transition: background .22s;
}
.cta-contact:hover .cc-ic { background: var(--blue); color: #fff; }
.cta-contact .cc-ic svg { width: 20px; height: 20px; }
.cta-contact .cc-lbl {
  display: block;
  font-size: 10px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 2px;
}

.cta-form {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  padding: 32px 28px;
  position: relative; z-index: 2;
  backdrop-filter: blur(8px);
}
.cta-form h3 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 22px;
}
.cf-field { margin-bottom: 12px; }
.cf-field input, .cf-field textarea {
  width: 100%;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 13px 16px;
  color: #fff;
  font-family: inherit; font-size: 14px;
  transition: border-color .18s, background .18s;
}
.cf-field input::placeholder, .cf-field textarea::placeholder {
  color: rgba(255,255,255,.4);
}
.cf-field input:focus, .cf-field textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: rgba(255,255,255,.06);
}
.cf-field textarea { min-height: 86px; resize: vertical; }
.cf-submit {
  width: 100%;
  background: var(--blue); color: #fff;
  padding: 14px; font-size: 14px; font-weight: 700;
  letter-spacing: .02em;
  border: none; border-radius: var(--radius);
  cursor: pointer;
  transition: background .18s, transform .18s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.cf-submit:hover {
  background: var(--blue-hover);
  transform: translateY(-1px);
}
.cf-submit svg { width: 14px; height: 14px; }
.cf-agree {
  font-size: 11px; color: rgba(255,255,255,.4);
  margin-top: 12px; line-height: 1.55;
}
.cf-agree a { color: var(--blue); text-decoration: none; }
.cf-agree a:hover { text-decoration: underline; }


/* =============================================================
   FOOTER
============================================================= */
.site-footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 48px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 220px repeat(5, 1fr);
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand {}
.footer-logo {
  display: inline-block;
  margin-bottom: 16px;
}
.footer-logo .krona-logo { height: 32px; }
.footer-tagline { font-size: 12px; color: rgba(255,255,255,.4); line-height: 1.5; margin-bottom: 20px; }
.footer-contact-main {
  font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 4px;
}
.footer-contact-sub {
  font-size: 10px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 16px;
}
.footer-messengers { display: flex; gap: 8px; }
.messenger-btn {
  font-size: 11px; font-weight: 600; color: rgba(255,255,255,.5);
  padding: 6px 12px; border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  transition: color .2s, border-color .2s;
}
.messenger-btn:hover { color: #fff; border-color: rgba(255,255,255,.3); }
.footer-col-title {
  font-size: 10px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.3);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a {
  font-size: 13px; color: rgba(255,255,255,.55);
  transition: color .15s;
}
.footer-col a:hover { color: rgba(255,255,255,.9); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 24px; gap: 16px; flex-wrap: wrap;
}
.footer-copy { font-size: 11px; color: rgba(255,255,255,.25); }
.footer-legal { display: flex; gap: 16px; }
.footer-legal a { font-size: 11px; color: rgba(255,255,255,.25); }
.footer-legal a:hover { color: rgba(255,255,255,.5); }


/* =============================================================
   PLACEHOLDERS (удалить после добавления реального контента)
============================================================= */
.placeholder-img {
  background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
  display: flex; align-items: center; justify-content: center;
  color: #9CA3AF; font-size: 12px; font-weight: 500;
  width: 100%; height: 100%;
}


/* =============================================================
   PATCH #4 · SPACING 80-96px (Siemens rhythm)
   Единый вертикальный ритм контентных секций, больше «воздуха».
============================================================= */
.sec-directions,
.sec-cycle,
.sec-products,
.sec-partners,
.sec-process,
.sec-certs,
.sec-smr,
.sec-adv,
.sec-industries,
.sec-projects { padding: 96px 0; }

.sec-clients { padding: 80px 0; }
.sec-cta     { padding: 56px 0; }

/* На планшете сохраняем пропорцию чуть меньше */
@media (max-width: 1024px) {
  .sec-directions,
  .sec-cycle,
  .sec-products,
  .sec-partners,
  .sec-process,
  .sec-certs,
  .sec-smr,
  .sec-adv,
  .sec-industries,
  .sec-projects { padding: 72px 0; }
  .sec-clients   { padding: 64px 0; }
}

@media (max-width: 768px) {
  .sec-directions,
  .sec-cycle,
  .sec-products,
  .sec-partners,
  .sec-process,
  .sec-certs,
  .sec-smr,
  .sec-adv,
  .sec-industries,
  .sec-projects { padding: 56px 0; }
  .sec-clients   { padding: 48px 0; }
  .sec-cta       { padding: 48px 0; }
}


/* =============================================================
   PATCH #4 · ПРОДУКТОВАЯ СЕТКА 4→6 (3 колонки × 2 ряда)
============================================================= */
.products-grid { grid-template-columns: repeat(3, 1fr) !important; }

@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 768px) {
  .products-grid { grid-template-columns: 1fr !important; }
}


/* =============================================================
   АДАПТИВ — Mobile First
   1024px = tablet, 768px = mobile
============================================================= */

/* ── TABLET ── */
@media (max-width: 1024px) {
  :root { --container: 100%; }

  /* Hero */
  .hs-left { max-width: 65%; padding: 80px 32px 60px 32px; }
  .hs-left h1 { font-size: clamp(22px, 3.5vw, 36px); }
  .hero-anchors { grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 32px; padding-top: 20px; }
  .hero-anchors .ha-item:nth-child(n+4) { display: none; }

  /* Stats */
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid var(--border); }
  .stat-item:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }

  /* Directions */
  .directions-grid { grid-template-columns: repeat(2, 1fr); }

  /* Products */
  .products-layout { grid-template-columns: 1fr; gap: 32px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }

  /* Partners */
  .partners-layout { grid-template-columns: 1fr; gap: 32px; }

  /* Process */
  .process-steps { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .process-steps::before { display: none; }

  /* Certs */
  .certs-layout { grid-template-columns: 1fr; gap: 32px; }
  .certs-list { grid-template-columns: repeat(3, 1fr); gap: 12px; }

  /* SMR */
  .smr-grid { grid-template-columns: repeat(2, 1fr); }

  /* Adv */
  .adv-grid { grid-template-columns: repeat(3, 1fr); }

  /* Industries */
  .industries-layout { grid-template-columns: 1fr; gap: 32px; }
  .industries-grid { grid-template-columns: repeat(3, 1fr); }

  /* Projects */
  .projects-grid { grid-template-columns: repeat(2, 1fr); }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  /* Nav */
  .site-nav .container { padding: 0 16px; }
  .nav-links { display: none; } /* Скрыть на мобильном — нужен hamburger */
  .nav-logo .krona-logo { height: 22px; }
  .nav-phone { display: none; }

  /* Hero */
  .hero-slider { min-height: 520px; }
  .hero-slide { min-height: 520px; }
  .hs-left {
    max-width: 100%;
    padding: 80px 20px 60px 20px;
    min-height: 520px;
    background: rgba(0,18,51,0.85);
  }
  .hs-left h1 { font-size: clamp(22px, 6vw, 32px); max-width: 100%; }
  .hs-sub { font-size: 13px; max-width: 100%; margin-bottom: 28px; }
  .hs-btn-primary, .hs-btn-outline { font-size: 13px; padding: 12px 20px; }
  .hero-anchors { grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 28px; padding-top: 18px; max-width: 100%; }
  .hero-anchors .ha-item:nth-child(n+5) { display: none; }
  .ha-num { font-size: 16px; }
  .ha-lbl { font-size: 10px; }
  .hs-arrow { display: none; }
  .hero-slide::after {
    background: linear-gradient(
      180deg,
      rgba(0,18,51,0.95) 0%,
      rgba(0,18,51,0.85) 60%,
      rgba(0,18,51,0.70) 100%
    );
  }

  /* Stats */
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .stat-num { font-size: 36px; }
  .stat-label { font-size: 12px; }
  .stat-item { padding: 24px 20px; }

  /* Sections padding */
  .sec-directions, .sec-cycle, .sec-products, .sec-partners,
  .sec-process, .sec-certs, .sec-smr, .sec-adv,
  .sec-clients, .sec-industries, .sec-projects { padding: 40px 0; }

  /* Container */
  .container { padding: 0 16px; }

  /* Directions — 1 col */
  .directions-grid { grid-template-columns: 1fr; gap: 10px; }

  /* Cycle */
  .cycle-grid { grid-template-columns: repeat(2, 1fr); }
  .cycle-card { min-height: 90px; padding: 18px 16px 14px; }
  .cycle-card-name { font-size: 12px; }
  .cycle-card-num { font-size: 26px; }

  /* Products */
  .products-layout { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 2px; }

  /* Partners */
  .partners-layout { grid-template-columns: 1fr; gap: 24px; }
  h2 { font-size: clamp(20px, 5vw, 28px); }

  /* Process */
  .process-steps {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .process-steps::before { display: none; }
  .process-step {
    flex-direction: row; text-align: left;
    padding: 16px 0; gap: 16px;
    border-bottom: 1px solid var(--border);
    align-items: flex-start;
  }
  .process-step:last-child { border-bottom: none; }
  .step-num-wrap { width: 44px; height: 44px; flex-shrink: 0; margin-bottom: 0; }
  .step-num { font-size: 14px; }

  /* Certs */
  .certs-layout { grid-template-columns: 1fr; gap: 24px; }
  .certs-list { grid-template-columns: 1fr; gap: 10px; }

  /* SMR */
  .smr-grid { grid-template-columns: 1fr; gap: 8px; }

  /* Adv */
  .adv-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .adv-val { font-size: 26px; }

  /* Clients */
  .clients-row { gap: 6px; }
  .client-logo { font-size: 11px; padding: 7px 14px; }

  /* Industries */
  .industries-layout { grid-template-columns: 1fr; gap: 24px; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }

  /* Projects */
  .projects-grid { grid-template-columns: 1fr; gap: 12px; }

  /* CTA */
  .cta-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-text p { max-width: 100%; }
  .cta-form { padding: 24px 20px; }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Licenses slider */
  .license-card { width: calc(70% - 12px); }
}

/* ── SMALL MOBILE ── */
@media (max-width: 480px) {
  .directions-grid { grid-template-columns: 1fr; }
  .cycle-grid { grid-template-columns: 1fr; }
  .adv-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hs-btns { flex-direction: column; }
  .hs-btn-primary, .hs-btn-outline { width: 100%; justify-content: center; }
}


/* =============================================================
   PATCH #15 · A11y + Polish + Consistency (пункты 7-8-9)
============================================================= */

/* ── A11y: visible focus для клавиатурной навигации ── */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 2px;
}
button:focus-visible,
.btn:focus-visible,
.cookie-btn:focus-visible,
.nav-search-btn:focus-visible,
.nav-hamburger:focus-visible,
.hs-btn-primary:focus-visible,
.hs-btn-outline:focus-visible,
.cf-submit:focus-visible {
  outline-offset: 4px;
}
/* Input-фокусы — сохраняем свой стиль (border) вместо outline */
.cf-field input:focus-visible,
.cf-field textarea:focus-visible,
.search-overlay-input:focus-visible { outline: none; }

/* ── A11y: skip-link для Tab-навигации ── */
.skip-link {
  position: absolute;
  top: -60px; left: 16px;
  background: var(--blue); color: #fff;
  padding: 10px 16px;
  font-size: 13px; font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius);
  z-index: 500;
  transition: top .22s;
}
.skip-link:focus {
  top: 16px;
  outline: 2px solid #fff;
  outline-offset: 2px;
}

/* ── Polish: мягкие системные умолчания ── */
* { -webkit-tap-highlight-color: rgba(0, 51, 255, .12); }
html { scrollbar-gutter: stable; }
svg { user-select: none; -webkit-user-drag: none; }

/* Selection (выделение мышью) в бренд-цветах */
::selection { background: var(--blue); color: #fff; }
::-moz-selection { background: var(--blue); color: #fff; }

/* Reduced motion: отключаем все анимации и transitions */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ── Polish: мелкие правки мобильного hero ── */
@media (max-width: 480px) {
  .hs-counter {
    top: 20px; right: 16px;
    padding: 4px 10px;
    font-size: 11px;
  }
  .hs-counter #hsCurrent { font-size: 14px; }
  .hs-nav { bottom: 16px; }
  .hs-dot { width: 20px; }
  .hs-dot.active { width: 32px; }
}

/* ── Polish: печать — уводим hero к мин. высоте, прячем fixed-элементы ── */
@media print {
  .site-nav, .back-to-top, .sticky-mobile-cta, .scroll-progress,
  .cookie-banner, .search-overlay, .mobile-menu, .hs-arrow, .hs-nav { display: none !important; }
  .hero-slider { min-height: auto; }
  .hero-slide::after { display: none; }
  body { color: #000; background: #fff; }
}

