/* КТК — основные стили (UI kit: UI_UX_KIT_КТК.md) */

/* ==========================================================================
   Design tokens
   ========================================================================== */
:root {
  /* Brand */
  --ktk-navy: #042356;
  --ktk-navy-dark: #02142f;
  --ktk-navy-stats: #1a3578;
  --ktk-orange: #e66003;
  --ktk-orange-hover: #cf5703;
  --ktk-dark: #061713;

  /* Neutrals */
  --ktk-white: #ffffff;
  --ktk-gray-bg: #eef1f5;
  --ktk-gray-bg-alt: #f8f8f8;
  --ktk-gray-text: #4b4b4b;
  --ktk-gray-border: #dbdbdb;
  --ktk-gray-muted: rgba(255, 255, 255, 0.5);
  --ktk-text-light: #f5f5f5;

  /* Overlays */
  --ktk-header-glass: rgba(2, 20, 47, 0.2);
  --ktk-divider: rgba(75, 75, 75, 0.4);

  /* Radius */
  --ktk-radius-pill: 30px;
  --ktk-radius-card: 16px;
  --ktk-radius-input: 12px;
  --ktk-radius-tab: 14px;
  --ktk-radius-stats: 36px;

  /* Shadow */
  --ktk-shadow-card: 0 6px 3px rgba(0, 0, 0, 0.15);

  /* Layout */
  --ktk-container-max: 1536px;
  --ktk-content-width: 1600px;
  --ktk-gutter: 128px;
  --ktk-section-pt: 60px;
  --ktk-section-pb: 60px;
  --ktk-full-bleed-inset: 36px;

  /* Typography */
  --ktk-font: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Legacy aliases (старые классы .btn, .card, sidebar) */
  --ktk-green: var(--ktk-navy);
  --ktk-green-dark: var(--ktk-navy-dark);
  --ktk-text: var(--ktk-navy-dark);
  --ktk-muted: var(--ktk-gray-text);
  --ktk-border: var(--ktk-gray-border);
  --ktk-bg-alt: var(--ktk-gray-bg);
  --container: var(--ktk-content-width);
  --sidebar: 512px;
}

/* ==========================================================================
   Base — только контент kb-layout (шапка/подвал — main.css шаблона KTK)
   ========================================================================== */
main.kb-layout {
  font-family: var(--ktk-font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ktk-navy-dark);
}

main.kb-layout img { max-width: 100%; height: auto; display: block; }

main.kb-layout h1,
main.kb-layout h2,
main.kb-layout h3,
main.kb-layout h4,
main.kb-layout h5,
main.kb-layout h6,
main.kb-layout p,
main.kb-layout ul,
main.kb-layout ol {
  margin: 0;
  padding: 0;
}

main.kb-layout ul,
main.kb-layout ol { list-style: none; }

main.kb-layout a {
  color: var(--ktk-navy-stats);
  text-decoration: none;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

main.kb-layout a:hover { text-decoration: none; }

main.kb-layout input::-webkit-input-placeholder,
main.kb-layout textarea::-webkit-input-placeholder { color: var(--ktk-navy-dark); opacity: 1; }
main.kb-layout input::-moz-placeholder,
main.kb-layout textarea::-moz-placeholder { color: var(--ktk-navy-dark); opacity: 1; }
main.kb-layout input:-ms-input-placeholder,
main.kb-layout textarea:-ms-input-placeholder { color: var(--ktk-navy-dark); opacity: 1; }
main.kb-layout input::-ms-input-placeholder,
main.kb-layout textarea::-ms-input-placeholder { color: var(--ktk-navy-dark); opacity: 1; }
main.kb-layout input::placeholder,
main.kb-layout textarea::placeholder { color: var(--ktk-navy-dark); opacity: 1; }

main.kb-layout input,
main.kb-layout button,
main.kb-layout textarea {
  -webkit-appearance: none;
  appearance: none;
}

/* ==========================================================================
   Layout
   ========================================================================== */

main.kb-layout .container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding-top: var(--ktk-section-pt);
  padding-bottom: var(--ktk-section-pb);
}

.section--alt { background: var(--ktk-gray-bg); }

.section--gray-alt { background: var(--ktk-gray-bg-alt); }

/* ==========================================================================
   Typography (UI kit)
   ========================================================================== */
.title-hero {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--ktk-navy);
}

.title-hero--light { color: var(--ktk-white); }

.title-section {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.04;
  color: var(--ktk-navy);
}

.title-section--sm {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--ktk-navy);
}

.title-card {
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  color: var(--ktk-navy);
}

.title-block {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--ktk-navy);
}

.descr-lead {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--ktk-navy-dark);
}

.descr-lead strong,
.descr-lead b { font-weight: 600; }

.descr-section {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--ktk-navy-dark);
}

.text-body-l {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--ktk-navy-dark);
}

.text-body {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--ktk-navy-dark);
}

.text-body-s {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--ktk-gray-text);
}

.text-legal {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.3;
  color: var(--ktk-dark);
}

.brand-name {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--ktk-white);
}

.brand-tagline {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--ktk-text-light);
}

.stat-value {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--ktk-navy-stats);
}

.stat-label {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--ktk-gray-text);
}

/* ==========================================================================
   Buttons (UI kit)
   ========================================================================== */
.btn-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 60px;
  padding: 20px 32px;
  border: 2px solid var(--ktk-orange);
  border-radius: var(--ktk-radius-pill);
  background: var(--ktk-orange);
  color: var(--ktk-white);
  font-family: var(--ktk-font);
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.btn-main:hover {
  background: var(--ktk-orange-hover);
  border-color: var(--ktk-orange-hover);
  color: var(--ktk-white);
  text-decoration: none;
}

.btn-main:active { transform: scale(0.98); }

.btn-main:focus-visible {
  outline: 2px solid var(--ktk-navy);
  outline-offset: 2px;
}

.btn-main:disabled,
.btn-main.is-disabled {
  opacity: 0.5;
  pointer-events: none;
}

.btn-main--phone {
  min-height: 50px;
  padding: 15px 18px;
}

.btn-main--outline {
  background: transparent;
  border-color: var(--ktk-navy);
  color: var(--ktk-navy);
}

.btn-main--outline:hover {
  background: rgba(4, 35, 86, 0.05);
  border-color: var(--ktk-navy);
  color: var(--ktk-navy);
}

.btn-main--outline-light {
  background: transparent;
  border-color: var(--ktk-white);
  color: var(--ktk-white);
}

.btn-main--outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--ktk-white);
  color: var(--ktk-white);
}

.link-page {
  display: inline-block;
  width: auto;
  max-width: 100%;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--ktk-navy-stats);
  color: var(--ktk-navy-stats);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}

.link-page:hover {
  color: var(--ktk-navy-stats);
}

/* Legacy buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  background: var(--ktk-navy);
  color: var(--ktk-white);
  font-weight: 600;
  font-size: 14px;
  border: 2px solid var(--ktk-navy);
  border-radius: var(--ktk-radius-pill);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.btn:hover {
  background: var(--ktk-navy-dark);
  border-color: var(--ktk-navy-dark);
  color: var(--ktk-white);
  text-decoration: none;
}

.btn--outline {
  background: var(--ktk-white);
  color: var(--ktk-navy);
}

.btn--orange {
  background: var(--ktk-orange);
  border-color: var(--ktk-orange);
}

.btn--orange:hover {
  background: var(--ktk-orange-hover);
  border-color: var(--ktk-orange-hover);
}

/* ==========================================================================
   Components (UI kit — стартовые блоки)
   ========================================================================== */
.stats-bar {
  padding: 37px 0;
  background: var(--ktk-gray-bg);
  border-radius: 0 0 var(--ktk-radius-stats) var(--ktk-radius-stats);
}

.stats-bar__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.stats-bar__item {
  flex: 1 1 0;
  padding-left: 28px;
  border-left: 1px solid var(--ktk-divider);
}

.stats-bar__item:first-child {
  padding-left: 0;
  border-left: none;
}

.stats-bar__item .stat-value,
.stats-bar__item .stat-label {
  display: block;
}

.stats-bar__item .stat-value { margin-bottom: 10px; }

/* Формы: css/ktk-forms.css */

.item-form { margin-bottom: 12px; }

.item-form input,
.item-form textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid var(--ktk-gray-border);
  border-radius: var(--ktk-radius-input);
  background: var(--ktk-white);
  color: var(--ktk-navy-dark);
  font-family: var(--ktk-font);
  font-size: 14px;
  line-height: 32px;
}

.item-form textarea {
  min-height: 102px;
  line-height: 1.6;
  resize: vertical;
}

.item-form input:focus,
.item-form textarea:focus {
  outline: 2px solid var(--ktk-navy);
  outline-offset: 0;
  border-color: var(--ktk-navy);
}

.item-step {
  display: flex;
  align-items: flex-start;
  padding: 6px 20px 20px;
  border-radius: var(--ktk-radius-card);
  background: var(--ktk-gray-bg);
}

.item-step__badge {
  position: relative;
  flex-shrink: 0;
  width: 48px;
  margin-right: 20px;
}

.item-step__badge::before {
  content: "";
  display: block;
  width: 48px;
  height: 48px;
  margin-top: 15px;
  border-radius: 50%;
  background: var(--ktk-white);
}

.item-step__num {
  position: absolute;
  top: 0;
  left: 50%;
  font-size: 32px;
  font-weight: 800;
  line-height: 78px;
  color: var(--ktk-orange);
  transform: translateX(-50%);
}

.item-step__body {
  flex: 1;
  padding: 36px 0 0;
}

.item-step__body .title-block { margin-bottom: 13px; }

.item-audience {
  display: flex;
  gap: 20px;
  padding: 24px;
  border-radius: var(--ktk-radius-card);
  background: var(--ktk-white);
  box-shadow: var(--ktk-shadow-card);
}

.item-service-tab {
  display: flex;
  align-items: center;
  min-height: 72px;
  padding: 20px 16px;
  border: 1px solid transparent;
  border-radius: var(--ktk-radius-tab);
  background: var(--ktk-gray-bg-alt);
  color: var(--ktk-navy);
  font-size: 20px;
  font-weight: 600;
  line-height: 32px;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.item-service-tab.is-active,
.item-service-tab:hover {
  border-color: var(--ktk-navy);
  background: var(--ktk-white);
}

.list-chevron {
  display: flex;
  align-items: center;
  gap: 16px;
}

.list-chevron__icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.list-chevron__text {
  flex: 1;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--ktk-navy-dark);
}

/* Header */
.site-header {
  border-bottom: 2px solid var(--ktk-green);
  background: var(--ktk-white);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 10px 20px;
  font-size: 13px;
  border-bottom: 1px solid #eee;
}

.site-header__logo {
  font-weight: 800;
  font-size: 18px;
  color: var(--ktk-green);
  text-decoration: none;
}

.site-header__phone { font-weight: 700; color: var(--ktk-text); text-decoration: none; }

.site-header__nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 12px 20px;
}

.site-header__nav a {
  color: #222;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}

.site-header__nav a:hover { color: var(--ktk-green); }

/* Catalog menu under header */
.catalog-bar {
  background: #f4f6f4;
  border-bottom: 1px solid var(--ktk-border);
}

.catalog-bar__inner {
  max-width: 100%;
  overflow-x: auto;
}

.catalog-menu__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
}

.catalog-menu__item { position: relative; }

.catalog-menu__link {
  display: block;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ktk-green);
  white-space: nowrap;
  text-decoration: none;
}

.catalog-menu__link:hover { background: #e8ede8; }

.catalog-menu__drop {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: var(--ktk-white);
  border: 1px solid var(--ktk-border);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  z-index: 90;
}

.catalog-menu__item:hover .catalog-menu__drop { display: block; }

.catalog-menu__drop a {
  display: block;
  padding: 8px 16px;
  font-size: 12px;
  color: var(--ktk-text);
  text-decoration: none;
  border-bottom: 1px solid #f0f0f0;
}

.catalog-menu__drop a:hover { background: var(--ktk-gray-bg); color: var(--ktk-navy); }

/* Layout with sidebar */
.page-layout { display: flex; min-height: 100vh; }

.catalog-sidebar {
  width: var(--sidebar);
  flex-shrink: 0;
  background: #f4f6f4;
  border-right: 2px solid var(--ktk-green);
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}

.catalog-sidebar__brand {
  padding: 16px;
  background: var(--ktk-green);
  color: var(--ktk-white);
  font-weight: 800;
}

.catalog-sidebar__brand small {
  display: block;
  font-weight: 400;
  font-size: 11px;
  margin-top: 4px;
  opacity: 0.85;
}

.catalog-sidebar__group { border-bottom: 1px solid var(--ktk-border); }

.catalog-sidebar__group-link {
  display: block;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ktk-green);
  text-decoration: none;
}

.catalog-sidebar__group-link--active,
.catalog-sidebar__group-link:hover { background: #dce8dc; }

.catalog-sidebar__sub {
  list-style: none;
  margin: 0;
  padding: 0 0 8px;
  background: #fafafa;
}

.catalog-sidebar__sub a {
  display: block;
  padding: 7px 16px 7px 24px;
  font-size: 12px;
  color: var(--ktk-text);
  text-decoration: none;
  border-bottom: 1px solid #f0f0f0;
}

.catalog-sidebar__sub a:hover { background: #efefef; }

.page-content { flex: 1; min-width: 0; }

/* Breadcrumbs */
.breadcrumbs {
  padding: 16px 0;
  font-size: 13px;
  color: var(--ktk-muted);
}

.breadcrumbs a { color: var(--ktk-green); }

/* Hero inner */
.page-hero {
  padding: 40px 0;
  background: linear-gradient(135deg, var(--ktk-navy-dark) 0%, var(--ktk-navy) 100%);
  color: var(--ktk-white);
}

.page-hero h1 { color: var(--ktk-white); margin-bottom: 16px; }

.page-hero__lead {
  font-size: 16px;
  max-width: 720px;
  opacity: 0.95;
  margin-bottom: 24px;
}

.page-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }

.page-hero--light {
  background: var(--ktk-bg-alt);
  color: var(--ktk-text);
}

.page-hero--light h1 { color: var(--ktk-text); }

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

.card {
  border: 1px solid var(--ktk-border);
  background: var(--ktk-white);
  padding: 20px;
  border-radius: 4px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.15s, border-color 0.15s;
}

.card:hover {
  border-color: var(--ktk-green);
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  text-decoration: none;
}

.card h3 { color: var(--ktk-green); font-size: 16px; }

.card p { font-size: 13px; color: var(--ktk-muted); margin: 0; }

.card--accent { border-color: var(--ktk-green); background: #f0f7f1; }

/* Equipment overview */
.equipment-intro .col-lg-10,
.docs-intro .col-lg-10 {
  flex: 0 0 100%;
  max-width: 100%;
}

.equipment-intro__content {
  max-width: none;
}

.equipment-intro__content .text-body {
  margin-bottom: 16px;
}

.equipment-intro__content .text-body:last-child {
  margin-bottom: 0;
}

.equipment-intro__content p {
  margin-bottom: 18px;
  font-size: 16px;
  line-height: 1.7;
}

.equipment-intro__content p:last-child {
  margin-bottom: 0;
}

.equipment-intro__content a {
  color: var(--ktk-navy);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.equipment-intro__content a:hover {
  color: var(--ktk-orange);
}

.equipment-intro .head-section .title-section {
  max-width: none;
  line-height: 1.2;
}

.equipment-intro__lead {
  font-size: 20px;
  color: var(--ktk-navy-dark);
  font-weight: 600;
  line-height: 1.6;
}

/* ==========================================================================
   Главная — hero (billbord)
   ========================================================================== */
.billbord {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 860px;
  overflow: hidden;
  color: var(--ktk-white);
}

.billbord__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.billbord__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.billbord__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(2, 20, 47, 0.82) 0%,
    rgba(2, 20, 47, 0.55) 45%,
    rgba(2, 20, 47, 0.2) 100%
  );
}

.billbord__content {
  position: relative;
  z-index: 2;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  padding-top: 210px;
  padding-bottom: 48px;
}

.billbord .title-hero {
  margin-bottom: 24px;
  color: var(--ktk-white);
}

.billbord__accent {
  color: var(--ktk-orange);
}

.billbord__lead {
  max-width: 780px;
  margin-bottom: 32px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--ktk-text-light);
}

.billbord__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.billbord__form {
  margin-left: auto;
}

/* Breadcrumbs */
.breadcrumbs {
  padding: 24px 0 0;
  font-size: 14px;
  line-height: 1.4;
  color: var(--ktk-gray-text);
}

.breadcrumbs a {
  color: var(--ktk-gray-text);
}

.breadcrumbs a:hover {
  color: var(--ktk-navy);
}

.breadcrumbs__current {
  color: var(--ktk-navy);
}

/* Inner hero */
.inner-hero {
  padding: 48px 0 60px;
  background: linear-gradient(135deg, var(--ktk-navy-dark) 0%, var(--ktk-navy) 100%);
  color: var(--ktk-white);
}

.tekhnika-page .inner-hero,
.sertifikaty-page .inner-hero,
.service-page .inner-hero {
  position: relative;
  padding: 200px 0 96px;
}

.tekhnika-page .inner-hero {
  background: var(--ktk-navy) url("../img/tekhnika/tekhnika-hero.jpg") center center / cover no-repeat;
}

.inner-hero .breadcrumbs {
  padding: 0 0 32px;
  color: rgba(255, 255, 255, 0.65);
}

.inner-hero .breadcrumbs a {
  color: rgba(255, 255, 255, 0.85);
}

.inner-hero .breadcrumbs a:hover {
  color: var(--ktk-white);
}

.inner-hero .breadcrumbs__current {
  color: var(--ktk-white);
}

.tekhnika-page .inner-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, rgba(2, 20, 47, 0.9) 0%, rgba(2, 20, 47, 0.72) 42%, rgba(2, 20, 47, 0.35) 100%);
}

.tekhnika-page .inner-hero .container-main {
  position: relative;
  z-index: 1;
}

.inner-hero .title-hero {
  margin-bottom: 24px;
  color: var(--ktk-white);
}

.inner-hero .descr-lead {
  max-width: 760px;
  margin-bottom: 32px;
  color: var(--ktk-text-light);
}

.inner-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Head section */
.head-section {
  margin-bottom: 40px;
}

.head-section .title-section {
  margin-bottom: 16px;
}

.head-section .descr-section {
  max-width: 720px;
}

/* Equipment cards */
.item-equipment {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: var(--ktk-radius-card);
  background: var(--ktk-white);
  box-shadow: var(--ktk-shadow-card);
  text-decoration: none;
  color: inherit;
}

.item-equipment:hover {
  text-decoration: none;
  color: inherit;
}

.item-equipment__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.item-equipment__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.item-equipment__arrow {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--ktk-orange);
  border-radius: 10px;
  background: var(--ktk-white);
  color: var(--ktk-orange);
  font-size: 18px;
  line-height: 1;
}

.item-equipment__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.item-equipment__title {
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ktk-navy);
}

.item-equipment__text {
  flex: 1;
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ktk-navy-dark);
}

.item-equipment .link-page {
  align-self: flex-start;
  margin-top: 16px;
}

.item-equipment--plain .item-equipment__media {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ktk-gray-bg);
  color: var(--ktk-navy-stats);
  font-size: 32px;
  font-weight: 700;
}

.tekhnika-benefits .item-step {
  height: 100%;
}

.tekhnika-page .item-equipment--silhouette {
  padding: 0;
  border: none;
  background: var(--ktk-white);
  box-shadow: var(--ktk-shadow-card);
}

.tekhnika-page .item-equipment--silhouette .item-equipment__media--silhouette {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--ktk-gray-bg);
}

.tekhnika-page .item-equipment--silhouette .item-equipment__silhouette {
  display: block;
  width: 88%;
  max-width: 420px;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
  transition: opacity 0.35s ease;
}

.tekhnika-page .item-equipment--silhouette:hover .item-equipment__silhouette {
  opacity: 0.92;
}

.tekhnika-page .item-equipment--silhouette .item-equipment__text {
  margin-bottom: 0;
}

/* CTA section */
.cta-section {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--ktk-navy-dark) 0%, #0a2d5c 100%);
  color: var(--ktk-white);
}

.cta-section .title-section--sm {
  margin-bottom: 24px;
  color: var(--ktk-white);
}

.cta-section .descr-lead {
  margin-bottom: 32px;
  color: var(--ktk-text-light);
}

.cta-section .descr-lead a {
  color: var(--ktk-white);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cta-section .descr-lead a:hover {
  color: var(--ktk-orange);
}

.cta-section .list-chevron {
  margin-bottom: 12px;
}

.cta-section .list-chevron__text {
  color: var(--ktk-text-light);
}

.cta-section .list-chevron__icon {
  color: var(--ktk-orange);
  font-size: 14px;
  line-height: 1;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

.section-heading__eyebrow {
  display: block;
  margin-bottom: 8px;
  color: var(--ktk-orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.equipment-grid > [class*="col-"] {
  margin-bottom: 32px;
}

.equipment-grid > [class*="col-"]:last-child {
  margin-bottom: 0;
}

.equipment-banner {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--ktk-white);
  border: 1px solid var(--ktk-gray-border);
  border-radius: var(--ktk-radius-card);
  box-shadow: var(--ktk-shadow-card);
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.equipment-banner:hover {
  border-color: var(--ktk-navy);
  box-shadow: 0 12px 24px rgba(2, 20, 47, 0.12);
  transform: translateY(-3px);
}

.equipment-banner:focus-visible {
  outline: 2px solid var(--ktk-navy);
  outline-offset: 3px;
}

.equipment-banner__img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.equipment-banner:hover .equipment-banner__img {
  opacity: 0.97;
  transform: scale(1.015);
}

/* Stats row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 32px 0;
}

.stat-box {
  text-align: center;
  padding: 20px;
  background: var(--ktk-white);
  border: 1px solid var(--ktk-border);
  border-radius: 4px;
}

.stat-box strong {
  display: block;
  font-size: 20px;
  color: var(--ktk-green);
  margin-bottom: 4px;
}

.stat-box span { font-size: 12px; color: var(--ktk-muted); }

/* Steps */
.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.step-card {
  padding: 20px;
  border: 1px solid var(--ktk-border);
  border-radius: 4px;
  background: var(--ktk-white);
}

.step-card__num {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  background: var(--ktk-green);
  color: var(--ktk-white);
  border-radius: 50%;
  font-weight: 700;
  margin-bottom: 12px;
}

/* Benefits */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.benefit-item {
  padding: 16px;
  background: var(--ktk-white);
  border-left: 4px solid var(--ktk-green);
}

/* FAQ */
.faq-list { margin-top: 24px; }

.faq-item {
  border: 1px solid var(--ktk-border);
  border-radius: 4px;
  margin-bottom: 8px;
  overflow: hidden;
}

.faq-item summary {
  padding: 14px 16px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item__body {
  padding: 0 16px 14px;
  font-size: 14px;
  color: var(--ktk-muted);
}

/* Form */
.form-box {
  background: var(--ktk-white);
  border: 2px solid var(--ktk-green);
  padding: 24px;
  border-radius: 8px;
}

.form-box input,
.form-box textarea {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 12px;
  border: 1px solid var(--ktk-border);
  border-radius: 4px;
  font-size: 14px;
}

.form-box .btn { width: 100%; }

/* CTA band */
.cta-band {
  background: var(--ktk-green);
  color: var(--ktk-white);
  padding: 48px 0;
  text-align: center;
}

.cta-band h2 { color: var(--ktk-white); }

.cta-band .btn {
  background: var(--ktk-orange);
  border-color: var(--ktk-orange);
  margin-top: 16px;
}

/* Related links */
.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.related-links a {
  padding: 8px 14px;
  background: var(--ktk-bg-alt);
  border-radius: 4px;
  font-size: 13px;
  text-decoration: none;
}

/* Placeholder image */
.ph-img {
  background: #e8e8e8;
  border: 1px dashed #999;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ktk-muted);
  font-size: 12px;
  text-align: center;
  padding: 16px;
  border-radius: 4px;
}

/* Two columns */
.two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

/* Footer */
.site-footer {
  background: var(--ktk-navy-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 48px 0 24px;
}

.site-footer a { color: rgba(255,255,255,0.9); }

.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}

.site-footer__title {
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--ktk-white);
}

.site-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 13px;
}

.site-footer__list li { margin-bottom: 6px; }

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 12px;
}

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

.listing-card {
  border: 1px solid var(--ktk-border);
  border-radius: 4px;
  overflow: hidden;
}

.listing-card__body { padding: 16px; }

.listing-card__date { font-size: 12px; color: var(--ktk-muted); }

/* Anchor nav on section pages */
.anchor-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0;
}

.anchor-nav a {
  padding: 8px 14px;
  background: var(--ktk-bg-alt);
  border-radius: 4px;
  font-size: 13px;
  text-decoration: none;
}

.service-block {
  padding: 32px 0;
  border-bottom: 1px solid var(--ktk-border);
}

.service-block:last-child { border-bottom: none; }

/* ==========================================================================
   Certificates page
   ========================================================================== */
.sertifikaty-page .inner-hero {
  background: var(--ktk-navy) url("../img/hero-main.jpg") center center / cover no-repeat;
}

.sertifikaty-page .inner-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, rgba(2, 20, 47, 0.92) 0%, rgba(2, 20, 47, 0.78) 45%, rgba(2, 20, 47, 0.45) 100%);
}

.sertifikaty-page .inner-hero .container-main {
  position: relative;
  z-index: 1;
}

.docs-intro__content {
  max-width: none;
}

.docs-intro__content p {
  margin-bottom: 16px;
}

.docs-intro__content p:last-child {
  margin-bottom: 0;
}

.docs-intro__lead {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.6;
  color: var(--ktk-navy);
}

.certificates-grid > [class*="col-"] {
  margin-bottom: 32px;
}

.item-certificate {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: var(--ktk-radius-card);
  background: var(--ktk-white);
  box-shadow: var(--ktk-shadow-card);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.item-certificate:hover {
  box-shadow: 0 12px 24px rgba(2, 20, 47, 0.12);
  transform: translateY(-3px);
  text-decoration: none;
  color: inherit;
}

.item-certificate:focus-visible {
  outline: 2px solid var(--ktk-navy);
  outline-offset: 3px;
}

.item-certificate__preview {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  padding: 24px;
  background: var(--ktk-gray-bg);
  border-bottom: 1px solid var(--ktk-gray-border);
}

.item-certificate__preview img {
  width: 100%;
  height: 100%;
  max-height: 172px;
  object-fit: contain;
}

.item-certificate__preview--placeholder {
  flex-direction: column;
  gap: 12px;
  color: var(--ktk-navy-stats);
}

.item-certificate__preview--placeholder img {
  width: 48px;
  height: 48px;
  max-height: none;
}

.item-certificate__preview-label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.item-certificate__body {
  display: flex;
  flex: 1;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 24px;
}

.item-certificate__title {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--ktk-navy);
}

.item-certificate__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border: 1px solid var(--ktk-orange);
  border-radius: 10px;
  background: var(--ktk-white);
}

.item-certificate__btn img {
  width: 20px;
  height: 20px;
}

.docs-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.item-document {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  border-radius: var(--ktk-radius-card);
  background: var(--ktk-white);
  box-shadow: var(--ktk-shadow-card);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.item-document:hover {
  box-shadow: 0 12px 24px rgba(2, 20, 47, 0.1);
  transform: translateY(-2px);
  text-decoration: none;
  color: inherit;
}

.item-document:focus-visible {
  outline: 2px solid var(--ktk-navy);
  outline-offset: 3px;
}

.item-document__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--ktk-gray-bg);
}

.item-document__icon img {
  width: 28px;
  height: 28px;
}

.item-document__content {
  flex: 1;
  min-width: 0;
}

.item-document__title {
  margin-bottom: 4px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--ktk-navy);
}

.item-document__meta {
  font-size: 14px;
  line-height: 1.4;
  color: var(--ktk-gray-text);
}

.item-document__action {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border: 1px solid var(--ktk-orange);
  border-radius: 10px;
  background: var(--ktk-white);
}

.item-document__action img {
  width: 20px;
  height: 20px;
}

.requisites-block {
  padding: 40px;
  border-radius: var(--ktk-radius-card);
  background: var(--ktk-white);
  box-shadow: var(--ktk-shadow-card);
}

.requisites-block__title {
  margin-bottom: 24px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--ktk-navy);
}

.requisites-block__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.requisites-block__row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ktk-navy-dark);
}

.requisites-block__label {
  flex: 0 0 180px;
  color: var(--ktk-gray-text);
}

.requisites-block__value {
  flex: 1 1 240px;
  font-weight: 500;
}

.requisites-block__note {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--ktk-gray-border);
  font-size: 14px;
  line-height: 1.6;
  color: var(--ktk-gray-text);
}

.sertifikaty-benefits .item-step {
  height: 100%;
}

/* ==========================================================================
   Terminal page
   ========================================================================== */
.terminal-page .inner-hero {
  position: relative;
  padding: 88px 0 96px;
  background: var(--ktk-navy) url("../img/hero-main.jpg") center center / cover no-repeat;
}

.terminal-page .inner-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, rgba(2, 20, 47, 0.92) 0%, rgba(2, 20, 47, 0.78) 45%, rgba(2, 20, 47, 0.45) 100%);
}

.terminal-page .inner-hero .container-main {
  position: relative;
  z-index: 1;
}

.item-audience__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 64px;
  height: 64px;
}

.item-audience__icon img {
  width: 40px;
  height: 40px;
}

.item-audience__body {
  flex: 1;
  min-width: 0;
}

.item-audience .title-card {
  margin-bottom: 12px;
}

.item-audience .text-body-l {
  max-width: 420px;
}

.terminal-advantages > [class*="col-"] {
  margin-bottom: 32px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.timeline__item {
  display: flex;
  gap: 24px;
  padding: 0 0 32px 0;
}

.timeline__item:last-child {
  padding-bottom: 0;
}

.timeline__year {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-shrink: 0;
  width: 88px;
  padding-top: 4px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--ktk-orange);
}

.timeline__body {
  position: relative;
  flex: 1;
  padding-left: 24px;
  border-left: 2px solid var(--ktk-gray-border);
}

.timeline__item:last-child .timeline__body {
  border-left-color: transparent;
}

.timeline__text {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ktk-navy-dark);
}

.item-cargo {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 100%;
  padding: 20px 24px;
  border-radius: var(--ktk-radius-card);
  background: var(--ktk-white);
  box-shadow: var(--ktk-shadow-card);
}

.item-cargo__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--ktk-gray-bg);
  color: var(--ktk-navy-stats);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.terminal-page .item-cargo__icon {
  background: var(--ktk-orange);
  color: var(--ktk-white);
}

.item-cargo__title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--ktk-navy);
}

.cargo-grid > [class*="col-"] {
  margin-bottom: 24px;
}

.terminal-map-wrap {
  overflow: hidden;
  border-radius: var(--ktk-radius-card);
  background: var(--ktk-gray-bg);
}

.terminal-map-wrap #map {
  width: 100%;
  height: 428px;
  min-height: 428px;
}

.terminal-route {
  padding: 32px;
  border-radius: var(--ktk-radius-card);
  background: var(--ktk-white);
  box-shadow: var(--ktk-shadow-card);
}

.terminal-route__title {
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--ktk-navy);
}

.terminal-route__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.terminal-route__list li {
  position: relative;
  padding-left: 20px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ktk-navy-dark);
}

.terminal-route__list li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ktk-orange);
}

.terminal-contacts-card {
  height: 100%;
  padding: 32px;
  border-radius: var(--ktk-radius-card);
  background: var(--ktk-navy-dark);
  color: var(--ktk-white);
}

.terminal-contacts-card__title {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
}

.terminal-contacts-card p,
.terminal-contacts-card a {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ktk-text-light);
}

.terminal-contacts-card a {
  color: var(--ktk-white);
  font-weight: 600;
}

.terminal-contacts-card a:hover {
  color: var(--ktk-orange);
}

.terminal-contacts-card p + p {
  margin-top: 12px;
}

/* ==========================================================================
   Gallery page
   ========================================================================== */
.gallery-page .inner-hero {
  position: relative;
  padding: 88px 0 72px;
  background: var(--ktk-navy) url("../img/hero-main.jpg") center center / cover no-repeat;
}

.gallery-page .inner-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, rgba(2, 20, 47, 0.92) 0%, rgba(2, 20, 47, 0.78) 45%, rgba(2, 20, 47, 0.45) 100%);
}

.gallery-page .inner-hero .container-main {
  position: relative;
  z-index: 1;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.gallery-filters__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin: 0 12px 12px 0;
  padding: 12px 24px;
  border: 1px solid var(--ktk-gray-border);
  border-radius: var(--ktk-radius-pill);
  background: var(--ktk-white);
  color: var(--ktk-navy);
  font-family: var(--ktk-font);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.gallery-filters__btn:hover,
.gallery-filters__btn.is-active {
  border-color: var(--ktk-navy);
  background: var(--ktk-navy);
  color: var(--ktk-white);
}

.gallery-grid__col {
  margin-bottom: 24px;
}

.gallery-grid__col.is-hidden {
  display: none;
}

.item-gallery {
  display: block;
  overflow: hidden;
  border-radius: var(--ktk-radius-card);
  box-shadow: var(--ktk-shadow-card);
  text-decoration: none;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.item-gallery:hover {
  box-shadow: 0 12px 24px rgba(2, 20, 47, 0.12);
  transform: translateY(-3px);
  text-decoration: none;
}

.item-gallery:focus-visible {
  outline: 2px solid var(--ktk-navy);
  outline-offset: 3px;
}

.item-gallery__image {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--ktk-gray-bg);
}

.item-gallery__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.item-gallery:hover .item-gallery__image img {
  transform: scale(1.04);
}

/* ==========================================================================
   Service catalog page (Контейнерные операции)
   ========================================================================== */
.service-page .inner-hero {
  background: var(--ktk-navy) url("../img/hero-main.jpg") center center / cover no-repeat;
}

.service-page .inner-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, rgba(2, 20, 47, 0.92) 0%, rgba(2, 20, 47, 0.78) 45%, rgba(2, 20, 47, 0.45) 100%);
}

.service-page .inner-hero .container-main {
  position: relative;
  z-index: 1;
}

.service-page .item-audience {
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  gap: 16px;
}

.service-page .item-audience .title-card {
  font-size: 24px;
  line-height: 1.3;
}

.service-page .item-audience .text-body-l {
  max-width: none;
}

.service-promo__list {
  margin: 24px 0 32px;
}

.service-promo .title-section,
.section-copy .title-section {
  margin-bottom: 24px;
  line-height: 1.2;
}

.service-promo .text-body-l,
.section-copy .text-body-l {
  margin-bottom: 16px;
}

.service-promo .text-body,
.section-copy .text-body {
  margin-bottom: 28px;
}

.service-promo .text-body:last-child,
.section-copy .text-body:last-child {
  margin-bottom: 0;
}

.service-promo .inner-hero__actions {
  margin-top: 0;
}

.service-promo__list .list-chevron {
  margin-bottom: 12px;
}

.service-promo__list .list-chevron__icon {
  color: var(--ktk-orange);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.service-promo__actions {
  margin-top: 8px;
}

.service-promo__media {
  overflow: hidden;
  border-radius: var(--ktk-radius-card);
  box-shadow: var(--ktk-shadow-card);
}

.service-promo__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-form.form-panel {
  margin-top: 0;
}

.service-subpage__hero-media {
  margin-top: 0;
}

.service-subpage__gap-title {
  margin-top: 40px;
}

.service-subpage .equipment-intro .title-section--sm {
  margin-bottom: 16px;
}

.stats-bar--inline {
  padding: 0;
  background: transparent;
}

.stats-bar--inline .stats-bar__row {
  flex-wrap: wrap;
}

.stats-bar--inline .stats-bar__item {
  flex: 1 1 200px;
}

/* ==========================================================================
   Solution pages (Решения / ЦА)
   ========================================================================== */
.solution-page .inner-hero--agro {
  background: var(--ktk-navy) url("../img/fotogalereya/thumbs/APO_1148-Pano.jpg") center center / cover no-repeat;
}

.solution-page .inner-hero--import {
  background: var(--ktk-navy) url("../img/fotogalereya/thumbs/APO_1222.jpg") center center / cover no-repeat;
}

.solution-page .inner-hero--prom {
  background: var(--ktk-navy) url("../img/fotogalereya/thumbs/APO_1236.jpg") center center / cover no-repeat;
}

.solution-page .inner-hero--retail {
  background: var(--ktk-navy) url("../img/fotogalereya/thumbs/APO_1256.jpg") center center / cover no-repeat;
}

.solution-page .inner-hero--logistics {
  background: var(--ktk-navy) url("../img/fotogalereya/thumbs/APO_1148-Pano.jpg") center center / cover no-repeat;
}

.solution-page .inner-hero.inner-hero--compact {
  padding: 188px 0 44px;
}

.solution-page .inner-hero.inner-hero--compact::before {
  background: linear-gradient(90deg, rgba(2, 20, 47, 0.95) 0%, rgba(2, 20, 47, 0.84) 48%, rgba(2, 20, 47, 0.42) 100%);
}

.solution-page .inner-hero.inner-hero--compact .breadcrumbs {
  padding-bottom: 16px;
}

.solution-page .inner-hero.inner-hero--compact .title-hero {
  margin-bottom: 12px;
  font-size: 40px;
  line-height: 1.15;
  text-shadow: 0 2px 16px rgba(2, 20, 47, 0.45);
}

.solution-page .inner-hero.inner-hero--compact .descr-lead {
  max-width: 600px;
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 1.45;
  text-shadow: 0 1px 10px rgba(2, 20, 47, 0.4);
}

.solution-page .inner-hero.inner-hero--compact .inner-hero__row {
  align-items: flex-start;
}

.solution-page .inner-hero.inner-hero--compact .inner-hero__actions {
  gap: 12px;
}

.solution-page .inner-hero.inner-hero--compact .btn-main {
  min-height: 48px;
  padding: 12px 22px;
}

.solution-hero-form {
  margin-top: 0;
  padding: 20px 20px 18px;
}

.solution-hero-form .form-panel__title {
  margin-bottom: 12px;
  font-size: 18px;
  line-height: 1.25;
}

.solution-hero-form .form-panel__fields {
  gap: 10px;
  margin-bottom: 12px;
}

.solution-hero-form .item-form {
  margin-bottom: 0;
}

.solution-hero-form .item-form input {
  height: 48px;
  min-height: 48px;
  padding: 10px 14px;
  font-size: 16px;
}

.solution-hero-form__footer {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 0;
}

.solution-hero-form__footer .btn-main {
  width: auto;
  min-width: 148px;
  min-height: 48px;
  padding: 12px 20px;
}

.solution-hero-form__footer .checkbox {
  flex: 1 1 180px;
  max-width: none;
  margin-bottom: 0;
}

.solution-hero-form__footer .checkbox span {
  font-size: 11px;
  line-height: 1.3;
}

.solution-page .inner-hero + .stats-bar {
  padding-top: 24px;
  padding-bottom: 24px;
}

.tekhnika-page .inner-hero + .stats-bar {
  margin-top: -32px;
  position: relative;
  z-index: 2;
}

.item-cargo-type {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: var(--ktk-radius-card);
  background: var(--ktk-white);
  box-shadow: var(--ktk-shadow-card);
}

.item-cargo-type__media {
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.item-cargo-type__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.item-cargo-type:hover .item-cargo-type__media img {
  transform: scale(1.04);
}

.item-cargo-type__body {
  flex: 1;
  padding: 24px;
}

.item-cargo-type__title {
  margin-bottom: 8px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ktk-navy);
}

.item-cargo-type__text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ktk-navy-dark);
}

.solution-region-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
  margin: 24px 0 32px;
  padding: 0;
  list-style: none;
}

.solution-region-list li {
  position: relative;
  padding-left: 20px;
  font-size: 18px;
  line-height: 1.5;
  color: var(--ktk-navy-dark);
}

.solution-region-list li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ktk-orange);
}

.solution-page .item-step {
  height: 100%;
}

/* ==========================================================================
   Contacts page
   ========================================================================== */
.kontakty-page__start {
  padding-top: 40px;
}

.kontakty-page__start .breadcrumbs {
  padding: 0 0 24px;
}

.kontakty-page__start .page-hero__top .breadcrumbs {
  padding-bottom: 16px;
}

.kontakty-page__head {
  margin-bottom: 0;
}

.kontakty-page #zayavka > .container-main > .row > [class*="col-"]:first-child {
  align-self: flex-start;
}

.kontakty-page #zayavka .head-section {
  margin-bottom: 0;
}

.kontakty-page #zayavka .head-section .descr-section {
  margin-bottom: 12px;
}

.kontakty-page #zayavka .head-section .text-body {
  margin-top: 0;
  margin-bottom: 0;
}

.contact-card {
  height: 100%;
  padding: 28px 32px;
  border-radius: var(--ktk-radius-card);
  background: var(--ktk-white);
  box-shadow: var(--ktk-shadow-card);
}

.contact-card__title {
  margin-top: 0;
  margin-bottom: 40px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--ktk-navy-dark);
}

.contact-card__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-card__item {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ktk-text-body);
}

.contact-card__item:first-of-type {
  margin-bottom: 24px;
}

.contact-card__item:last-child {
  margin-bottom: 0;
}

.contact-card__label {
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ktk-navy-stats);
}

.contact-card__item a {
  font-weight: 600;
  color: var(--ktk-navy);
}

.contact-card__item a:hover {
  color: var(--ktk-orange);
}

.contact-card--accent {
  background: var(--ktk-navy-dark);
}

.contact-card--accent .contact-card__title {
  color: var(--ktk-white);
}

.contact-card--accent .contact-card__item,
.contact-card--accent .contact-card__label {
  color: rgba(255, 255, 255, 0.75);
}

.contact-card--accent .contact-card__item a {
  color: var(--ktk-white);
}

.contact-card--accent .contact-card__item a:hover {
  color: var(--ktk-orange);
}

/* Blog article (T8) */
.blog-article__date {
  display: block;
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
}

.blog-article__figure {
  margin: 0 0 32px;
}

.blog-article__figure img {
  width: 100%;
  height: auto;
  border-radius: var(--ktk-radius-card);
}

.blog-article__caption {
  margin-top: 12px;
  font-size: 14px;
  color: var(--ktk-gray-text);
}

.blog-article .title-section--sm {
  margin-top: 32px;
  margin-bottom: 16px;
}

.blog-article__h3 {
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 700;
  color: var(--ktk-navy-dark);
}

.blog-article__list {
  margin: 0 0 24px;
  padding-left: 24px;
}

.blog-article__list--ordered {
  list-style: decimal;
}

.blog-article__cta {
  margin-top: 48px;
  padding: 28px 32px;
  border-radius: var(--ktk-radius-card);
  background: var(--ktk-gray-bg);
}

.blog-page .listing-grid .listing-card {
  height: 100%;
}

/* Blog listing (T7) */
.blog-list-page .blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.blog-list-page .blog-tag {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border: 1px solid var(--ktk-gray-border);
  border-radius: var(--ktk-radius-pill);
  background: var(--ktk-white);
  color: var(--ktk-navy-dark);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.blog-list-page .blog-tag:hover {
  border-color: var(--ktk-navy);
  color: var(--ktk-navy);
}

.blog-list-page .blog-tag.is-active {
  border-color: var(--ktk-orange);
  background: var(--ktk-orange);
  color: var(--ktk-white);
}

.blog-list-page .blog-card {
  position: relative;
  height: 100%;
}

.blog-list-page .blog-card--soon {
  cursor: default;
}

.blog-list-page .blog-card--soon:hover {
  transform: none;
  box-shadow: var(--ktk-shadow-card);
}

.blog-list-page .blog-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 6px 14px;
  border-radius: var(--ktk-radius-pill);
  background: rgba(2, 20, 47, 0.75);
  color: var(--ktk-white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.blog-list-page .blog-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  font-size: 13px;
  color: var(--ktk-gray-text);
}

.blog-list-page .blog-card__category {
  font-weight: 600;
  color: var(--ktk-navy-stats);
}

.blog-list-page .blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}

.blog-list-page .blog-pagination__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 12px;
  border: 1px solid var(--ktk-gray-border);
  border-radius: 8px;
  background: var(--ktk-white);
  color: var(--ktk-navy-dark);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
}

.blog-list-page .blog-pagination__item.is-active {
  border-color: var(--ktk-navy);
  background: var(--ktk-navy);
  color: var(--ktk-white);
}

.blog-list-page .blog-pagination__item--muted {
  border-color: transparent;
  background: transparent;
  color: var(--ktk-gray-text);
  pointer-events: none;
}

.kontakty-hours {
  width: 100%;
  border-collapse: collapse;
}

.kontakty-hours th,
.kontakty-hours td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--ktk-divider);
  font-size: 16px;
  line-height: 1.4;
  text-align: left;
  vertical-align: top;
}

.kontakty-hours th {
  width: 42%;
  font-weight: 600;
  color: var(--ktk-navy-dark);
}

.kontakty-hours td {
  color: var(--ktk-text-body);
}

/* Catalog hub (uslugi/index) */
.uslugi-catalog-page .catalog-hub-nav {
  margin-bottom: 8px;
}

.uslugi-catalog-page .catalog-hub-section {
  padding: 48px 0;
  border-bottom: 1px solid var(--ktk-gray-border);
}

.uslugi-catalog-page .catalog-hub-section:last-of-type {
  border-bottom: none;
}

.uslugi-catalog-page .catalog-hub-section--alt {
  background: var(--ktk-gray-bg-alt);
}

.uslugi-catalog-page .catalog-hub-section__head {
  margin-bottom: 28px;
}

.uslugi-catalog-page .catalog-hub-section__title {
  margin-bottom: 12px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
}

.uslugi-catalog-page .catalog-hub-section__title a {
  color: var(--ktk-navy-dark);
  text-decoration: none;
}

.uslugi-catalog-page .catalog-hub-section__title a:hover {
  color: var(--ktk-orange);
}

.uslugi-catalog-page .catalog-hub-section__actions {
  margin-top: 16px;
}

.uslugi-catalog-page .catalog-subgrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.uslugi-catalog-page .catalog-subgrid a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 56px;
  padding: 16px 20px;
  border-radius: var(--ktk-radius-card);
  background: var(--ktk-white);
  box-shadow: var(--ktk-shadow-card);
  color: var(--ktk-navy-dark);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
  text-decoration: none;
  transition: color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.uslugi-catalog-page .catalog-subgrid a:hover {
  color: var(--ktk-orange);
  box-shadow: 0 8px 24px rgba(2, 20, 47, 0.12);
  transform: translateY(-2px);
}

.uslugi-catalog-page .catalog-subgrid a::after {
  flex-shrink: 0;
  content: "→";
  font-size: 18px;
  color: var(--ktk-navy-stats);
}

.uslugi-catalog-page .catalog-subgrid a:hover::after {
  color: var(--ktk-orange);
}

.uslugi-catalog-page .catalog-hub-section--alt .catalog-subgrid a {
  background: var(--ktk-white);
}

.kontakty-form-wrap .form-panel {
  max-width: none;
}
