

/* Start:/bitrix/templates/ittrust_2026/styles.css?177728454475840*/
/* ============================================================
   IT TRUST — единые стили для всех страниц сайта
   Разделы:
     1. RESET & VARIABLES
     2. BASE (body, container, headings)
     3. HEADER (шапка)
     4. URGENCY BAR (красная полоса на странице маркировки)
     5. BUTTONS (.btn и модификаторы)
     6. HERO (общий для всех страниц)
     7. SECTIONS (общие отступы, лейблы, описания)
     8. REVEAL (анимация появления)
     9. LEAD FORM (общая форма заявки + CTA-блок)
    10. FOOTER (подвал)
    11. PAGE: index (главная)
    12. PAGE: podderzhka-1s
    13. PAGE: tarify
    14. PAGE: markirovka
    15. PAGE: kedo
    16. PAGE: kontakty
    17. MEDIA QUERIES (адаптив)
   ============================================================ */


/* ============================================================
   1. RESET & VARIABLES
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green: #5C7A3E;
  --green-light: #7BA05B;
  --green-pale: #EEF3E8;
  --green-accent: #8DB86A;
  --yellow: #F5C842;
  --red: #E53E3E;
  --dark: #141A10;
  --dark2: #2B3323;
  --gray: #6B7560;
  --gray-light: #F4F5F2;
  --border: #DDE0D8;
  --white: #FFFFFF;
  --radius: 16px;
}

html { scroll-behavior: smooth; }


/* ============================================================
   2. BASE
   ============================================================ */

body {
  font-family: 'Manrope', sans-serif;
  background: var(--white);
  color: var(--dark);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

h1 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--dark);
  margin-bottom: 20px;
}
h1 em { color: var(--green); font-style: normal; }

h2 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--dark);
  margin-bottom: 16px;
}


/* ============================================================
   3. HEADER
   ============================================================ */

header {
  position: sticky;
  top: 0;
  z-index: 250;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--dark);
  flex-shrink: 0;
}
.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--green);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: 'Unbounded', sans-serif;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; gap: 2px; }
.logo-name {
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.3px;
  line-height: 1;
}
.logo-sub {
  font-size: 10px;
  color: var(--gray);
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
}
.header-nav { display: flex; gap: 4px; flex: 1; }
.header-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 8px;
  transition: all 0.2s;
  white-space: nowrap;
}
.header-nav a:hover,
.header-nav a.active { color: var(--dark); background: var(--gray-light); }
.header-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.header-phone {
  font-weight: 700;
  font-size: 15px;
  color: var(--dark);
  text-decoration: none;
  white-space: nowrap;
}


/* Бургер-кнопка (скрыта на десктопе) */
.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: 8px;
  flex-shrink: 0;
  z-index: 201;
}
.burger-btn span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--dark);
  border-radius: 3px;
  transition: transform 0.28s ease, opacity 0.2s ease;
  transform-origin: center;
}
/* Крестик при открытом меню */
.burger-btn.is-active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger-btn.is-active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger-btn.is-active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Мобильное меню-оверлей — ФИНАЛЬНАЯ ВЕРСИЯ для Safari iOS */
.mobile-nav {
  /* НЕ используем display:none — Safari не анимирует переход из none */
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9999;
  background: rgba(20,26,16,0.55);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.25s ease, visibility 0.25s ease;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.mobile-nav.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav-inner {
  position: absolute;
  top: 0;
  right: 0;
  width: min(340px, 90vw);
  height: 100%;
  background: var(--white);
  padding: 100px 28px 40px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: -4px 0 32px rgba(0,0,0,0.12);
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  /* Создаём свой stacking context для панели */
  will-change: transform;
}

.mobile-nav.is-open .mobile-nav-inner {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.mobile-nav-inner a {
  font-size: 17px;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 10px;
  transition: background 0.15s;
}
.mobile-nav-inner a:hover,
.mobile-nav-inner a.active {
  background: var(--gray-light);
  color: var(--green);
}
.mobile-nav-contacts {
  margin-top: auto;
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mobile-nav-contacts .btn { justify-content: center; }
body.menu-open { overflow: hidden; }
/* ============================================================
   4. URGENCY BAR (показывается только на /markirovka/)
   ============================================================ */

.urgency-bar { background: var(--red); padding: 10px 0; text-align: center; }
.urgency-bar p { color: white; font-size: 14px; font-weight: 600; }
.urgency-bar span {
  background: rgba(255,255,255,0.2);
  padding: 2px 10px;
  border-radius: 100px;
  margin: 0 4px;
}


/* ============================================================
   5. BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: all 0.2s;
  font-family: 'Manrope', sans-serif;
  white-space: nowrap;
}
.btn-primary { background: var(--green); color: white; }
.btn-primary:hover { background: var(--dark2); }
.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--green); color: var(--green); }
.btn-lg { padding: 14px 28px; font-size: 16px; border-radius: 12px; }
.btn-yellow { background: var(--yellow); color: var(--dark); }
.btn-yellow:hover { background: #e8b800; }
.btn-red { background: var(--red); color: white; }
.btn-red:hover { background: #c53030; }


/* ============================================================
   6. HERO
   ============================================================ */

.hero {
  padding: 64px 0 56px;
  background: linear-gradient(155deg, #F9FAF7 0%, #fff 55%);
  overflow: hidden;
  position: relative;
}
.hero::after {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(92,122,62,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  align-items: center;
}
.breadcrumb { font-size: 13px; color: var(--gray); margin-bottom: 16px; }
.breadcrumb a { color: var(--green); text-decoration: none; }
.hero-desc {
  font-size: 17px;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 500px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-proof { display: flex; gap: 24px; flex-wrap: wrap; }
.proof-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray);
}
.proof-dot {
  width: 8px;
  height: 8px;
  background: var(--green-accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Бейджи в hero */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-pale);
  border: 1px solid rgba(92,122,62,0.25);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 20px;
}
.hero-badge::before { content: '✓'; }

.deadline-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFF0F0;
  border: 1px solid rgba(229,62,62,0.3);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 20px;
}
.deadline-badge::before { content: '⏰'; }


/* ============================================================
   7. SECTIONS
   ============================================================ */

section { padding: 72px 0; }

.section-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--green);
  margin-bottom: 12px;
}
.section-desc {
  font-size: 16px;
  color: var(--gray);
  max-width: 540px;
  line-height: 1.65;
}


/* ============================================================
   8. REVEAL (анимация появления при скролле)
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.visible { opacity: 1; transform: none; }


/* ============================================================
   9. LEAD FORM + CTA
   ============================================================ */

.cta-section { background: var(--green); padding: 72px 0; }
.cta-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 48px;
  align-items: start;
}
.cta-section h2 { color: white; }
.cta-section .section-label { color: rgba(255,255,255,0.7); }
.cta-desc {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  margin-top: 12px;
  max-width: 520px;
}
.cta-contacts { display: flex; flex-direction: column; gap: 10px; margin-top: 28px; }
.cta-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
}
.cta-contact:hover { opacity: 0.8; }

.lead-form { background: var(--white); border-radius: 20px; padding: 32px; }
.lead-form-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 6px;
}
.lead-form-sub { font-size: 14px; color: var(--gray); margin-bottom: 24px; }

.form-row { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-row label { font-size: 13px; font-weight: 600; color: var(--dark); }
.form-row input,
.form-row textarea {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  color: var(--dark);
  transition: border-color 0.2s;
  resize: vertical;
}
.form-row input:focus,
.form-row textarea:focus { outline: none; border-color: var(--green); }
.form-row textarea { min-height: 90px; font-family: 'Manrope', sans-serif; }

.form-submit {
  width: 100%;
  background: var(--green);
  color: white;
  padding: 14px;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Manrope', sans-serif;
  transition: background 0.2s;
}
.form-submit:hover { background: var(--dark2); }

.form-consent {
  font-size: 11px;
  color: var(--gray);
  margin-top: 12px;
  line-height: 1.5;
  text-align: center;
}
.form-consent a { color: var(--green); text-decoration: none; }

.form-success {
  display: none;
  background: var(--green-pale);
  border: 1.5px solid var(--green);
  border-radius: 10px;
  padding: 16px;
  text-align: center;
  font-size: 14px;
  color: var(--dark);
  margin-bottom: 16px;
}
.form-success.visible { display: block; }


/* ============================================================
   10. FOOTER
   ============================================================ */

footer {
  background: var(--dark2);
  padding: 48px 0 32px;
  color: rgba(255,255,255,0.5);
}
.footer-inner { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}
.footer-logo {
  font-size: 18px;
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
  font-family: 'Unbounded', sans-serif;
}
.footer-desc { font-size: 13px; line-height: 1.6; }
.footer-col-title {
  font-size: 13px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-links a:hover { color: white; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  flex-wrap: wrap;
  gap: 8px;
}


/* ============================================================
   11. PAGE: INDEX (главная)
   ============================================================ */

/* HERO — двухколоночный контент */
.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero-content {
  display: flex;
  flex-direction: column;
}

h1 span { color: var(--green); }

.hero-tags { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-tag {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray);
}
.hero-tag::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--green-accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* HERO DIAGRAM — правая карточка со схемой «рабочий контур» */
.hero-diagram {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.07);
  position: relative;
}
.diagram-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}
.diagram-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 20px 0;
}
.diagram-hub {
  width: 80px;
  height: 80px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 18px;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 12px rgba(92,122,62,0.12);
  animation: hub-pulse 2.4s ease-in-out infinite;
}
@keyframes hub-pulse {
  0%   { box-shadow: 0 0 0 12px rgba(92,122,62,0.18); }
  50%  { box-shadow: 0 0 0 24px rgba(92,122,62,0.05); }
  100% { box-shadow: 0 0 0 12px rgba(92,122,62,0.18); }
}
.diagram-nodes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 16px;
  width: 100%;
}
.d-node {
  background: var(--gray-light);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  text-align: center;
}
.d-node.active {
  background: var(--green-pale);
  border-color: rgba(92,122,62,0.3);
  color: var(--green);
}
.diagram-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 16px;
}
.d-stat {
  background: var(--gray-light);
  border-radius: 12px;
  padding: 12px;
  text-align: center;
}
.d-stat-val {
  font-family: 'Unbounded', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
}
.d-stat-label {
  font-size: 11px;
  color: var(--gray);
  font-weight: 500;
  margin-top: 2px;
}
.d-stat.highlight { background: var(--green); }
.d-stat.highlight .d-stat-val,
.d-stat.highlight .d-stat-label { color: white; }

/* Переопределяем hero-inner именно для главной (двухколоночный) */
.hero .hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
}

/* TRUST BAR — тёмная полоса с преимуществами */
.trust-bar { background: var(--dark); padding: 16px 0; }
.trust-bar-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
}
.trust-bar .trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
}
.trust-bar .trust-item::before {
  content: '✓';
  color: var(--green-accent);
  font-weight: 700;
  flex-shrink: 0;
}

/* PAIN POINTS — боли клиентов */
.pain-section { background: var(--gray-light); }
.pain-intro { margin-bottom: 48px; }
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.pain-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.pain-card:hover {
  border-color: var(--green);
  box-shadow: 0 4px 20px rgba(92,122,62,0.1);
}
.pain-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 22px;
}
.pain-icon.red { background: #FEF0EE; }
.pain-icon.orange { background: #FEF5E7; }
.pain-icon.blue { background: #EEF3FE; }
.pain-icon.yellow { background: #FEFBE7; }
.pain-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.pain-card p { font-size: 14px; color: var(--gray); line-height: 1.6; }

/* SERVICES — 4 карточки с зелёной полосой слева и номерами */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.services-grid .service-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.25s;
  display: block;
  text-decoration: none;
  color: inherit;
  gap: 0;
  flex-direction: column;
}
.services-grid .service-card:hover {
  border-color: var(--green);
  background: var(--green-pale);
  transform: none;
  box-shadow: none;
}
.services-grid .service-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--green);
  border-radius: 4px 0 0 4px;
}
.service-num {
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}
.services-grid .service-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.services-grid .service-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

/* VERTICALS — тёмная секция «где мы сильны» */
.verticals-section { background: var(--dark); }
.verticals-section h2,
.verticals-section .section-label { color: white; }
.verticals-section .section-label { color: var(--green-accent); }
.verticals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.vertical-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.25s;
}
.vertical-card:hover {
  background: rgba(92,122,62,0.15);
  border-color: rgba(92,122,62,0.4);
}
.vertical-emoji { font-size: 32px; margin-bottom: 16px; }
.vertical-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}
.vertical-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* WHY US */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  margin-top: 48px;
  align-items: start;
}
.why-left { display: flex; flex-direction: column; gap: 24px; }
.why-item { display: flex; gap: 16px; }
.why-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  margin-top: 6px;
}
.why-item h3 { font-size: 17px; font-weight: 700; margin-bottom: 4px; }
.why-item p { font-size: 14px; color: var(--gray); line-height: 1.6; }
.why-right {
  background: var(--gray-light);
  border-radius: 20px;
  padding: 32px;
  border: 1.5px solid var(--border);
}
.why-right-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}
.why-metrics { display: flex; flex-direction: column; gap: 16px; }
.why-metric {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  gap: 16px;
}
.why-metric:last-child { border: none; padding-bottom: 0; }
.why-metric-label {
  font-size: 14px;
  color: var(--gray);
  flex-shrink: 0;
}
.why-metric-val {
  font-family: 'Unbounded', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  text-align: right;
  line-height: 1.3;
}
.why-metric-val span {
  font-size: 12px;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  color: var(--green);
  margin-left: 4px;
  display: block;
  margin-top: 2px;
}

/* CASES — кейсы */
.cases-section { background: var(--gray-light); }
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.case-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.25s;
}
.case-card:hover {
  border-color: var(--green);
  box-shadow: 0 8px 32px rgba(0,0,0,0.07);
}
.case-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-pale);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: fit-content;
}
.case-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--dark);
}
.case-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
  flex: 1;
}
.case-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}
.case-link:hover { color: var(--dark2); }

/* PROCESS — горизонтальные шаги */
.process-steps {
  display: flex;
  gap: 0;
  margin-top: 48px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 28px;
  right: 28px;
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.process-steps .step {
  flex: 1;
  position: relative;
  z-index: 1;
  padding: 0 12px;
  text-align: center;
}
.process-steps .step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Unbounded', sans-serif;
  font-size: 18px;
  font-weight: 800;
  margin: 0 auto 16px;
  border: 2px solid var(--border);
  background: var(--white);
  transition: all 0.2s;
}
.process-steps .step:nth-child(1) .step-num {
  background: var(--green);
  color: white;
  border-color: var(--green);
}
.process-steps .step:nth-child(2) .step-num,
.process-steps .step:nth-child(3) .step-num {
  background: var(--green-pale);
  color: var(--green);
  border-color: rgba(92,122,62,0.3);
}
.process-steps .step:nth-child(4) .step-num,
.process-steps .step:nth-child(5) .step-num {
  background: var(--gray-light);
  color: var(--gray);
}
.process-steps .step h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}
.process-steps .step p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.5;
}

/* TARIFFS — 3 тарифа на главной */
.tariffs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.tariffs-grid .tariff-card {
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
  background: var(--white);
}
.tariffs-grid .tariff-card:hover {
  border-color: var(--green);
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}
.tariffs-grid .tariff-card.featured {
  background: var(--green);
  border-color: var(--green);
  color: white;
  transform: none;
}
.tariffs-grid .tariff-card.featured p { color: rgba(255,255,255,0.85); }
.tariffs-grid .tariff-card.featured .tariff-name { color: white; }
.tariffs-grid .tariff-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--yellow);
  color: var(--dark);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  left: auto;
  transform: none;
}
.tariff-name {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  font-family: 'Unbounded', sans-serif;
}
.tariffs-grid .tariff-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}
.tariff-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.tariff-feat {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--dark);
  line-height: 1.5;
}
.tariffs-grid .tariff-card.featured .tariff-feat { color: rgba(255,255,255,0.9); }
.feat-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green-pale);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--green);
  margin-top: 1px;
}
.tariffs-grid .tariff-card.featured .feat-check {
  background: rgba(255,255,255,0.2);
  color: white;
}

/* CTA на главной — тёмный фон (отличается от зелёного в других разделах).
   Идентифицируем главную по тому, что CTA идёт после секции .pain-section
   (блок болей есть только на главной). */
body:has(.pain-section) .cta-section {
  background: var(--dark);
}
body:has(.pain-section) .cta-section .section-label {
  color: var(--green-accent);
}
body:has(.pain-section) .cta-section .cta-desc {
  color: rgba(255,255,255,0.55);
}
body:has(.pain-section) .cta-section .cta-contact:hover {
  color: var(--green-accent);
  opacity: 1;
}

/* CASES — карусель (главная страница) */
/* Старые .cases-grid, .case-card, .case-badge, .case-link сохранены выше —
   они используются на /podderzhka-1s/ и других страницах.
   Здесь добавляем только новые классы карусели. */

.cases-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 48px;
  /* Ограничиваем stacking context карусели — фикс перекрытия mobile-nav на iOS Safari */
  isolation: isolate;
  z-index: 1;
}
.cases-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 8px 4px 20px;
  scrollbar-width: none;
  flex: 1;
  min-width: 0;
  /* Явно ограничиваем z-index на iOS Safari */
  position: relative;
  z-index: 1;
}.cases-carousel::-webkit-scrollbar { display: none; }

/* Карточка внутри карусели */
.case-card--carousel {
  flex: 0 0 340px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  padding: 20px;
  gap: 0;
}
.case-card--featured {
  flex: 0 0 400px;
  border-top: 3px solid var(--green);
}

/* Превью-изображение */
.case-card__preview {
  width: 100%;
  height: 160px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 14px;
  background: var(--gray-light);
  border: 1px solid var(--border);
  flex-shrink: 0;
  position: relative;
}
.case-card__preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.35s ease;
}
.case-card--carousel:hover .case-card__preview img {
  transform: scale(1.03);
}
.case-card__preview-label {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: rgba(20,26,16,0.72);
  backdrop-filter: blur(4px);
  color: rgba(255,255,255,0.9);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 6px;
  letter-spacing: 0.2px;
  pointer-events: none;
}

/* Шапка карточки: логотип + бейдж */
.case-card-carousel__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.case-card__logo {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--gray-light);
  border: 1px solid var(--border);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.case-card__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.case-card__logo-letter {
  font-size: 14px;
  font-weight: 800;
  color: var(--green);
  font-family: 'Unbounded', sans-serif;
  line-height: 1;
  display: none;
}

/* Список работ */
.case-card-carousel__list {
  list-style: none;
  padding: 0;
  margin: 6px 0 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}
.case-card-carousel__list li {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 7px;
}
.case-card-carousel__list li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 12px;
  margin-top: 1px;
}

/* Кнопки «назад / вперёд» */
.carousel-btn {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  color: var(--dark);
  align-self: center;
}
.carousel-btn:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

/* Точки-индикаторы */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.carousel-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.carousel-dot.active {
  background: var(--green);
  transform: scale(1.4);
}

/* WHY-METRICS — двухстрочные значения (крупное слово + описание) */
.why-metric-val {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  line-height: 1.3;
  gap: 2px;
}
.why-metric-val > span {
  font-size: 12px;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  color: var(--green);
  margin-left: 0;
  display: block;
}

/* ============================================================
   12. PAGE: PODDERZHKA-1S
   ============================================================ */

/* HERO — двухколоночный hero с SLA-карточкой */
.hero .hero-inner:has(.sla-card) {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: center;
}
.hero-content { display: flex; flex-direction: column; }

/* SLA CARD — тёмная карточка в hero */
.sla-card {
  background: var(--dark);
  border-radius: 20px;
  padding: 28px;
  color: white;
}
.sla-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--green-accent);
  margin-bottom: 20px;
}
.sla-metrics { display: flex; flex-direction: column; gap: 16px; margin-bottom: 20px; }
.sla-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  gap: 12px;
}
.sla-row:last-child { border: none; padding-bottom: 0; }
.sla-label { font-size: 13px; color: rgba(255,255,255,0.5); }
.sla-val {
  font-family: 'Unbounded', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: white;
  text-align: right;
  line-height: 1.25;
}
.sla-val > span {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--green-accent);
  margin-top: 2px;
}
.sla-note {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  text-align: center;
  margin-top: 4px;
}

/* INCLUDED SECTION — что входит в поддержку */
.included-section { background: var(--gray-light); }
.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.included-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all 0.2s;
}
.included-card:hover {
  border-color: var(--green);
  box-shadow: 0 4px 20px rgba(92,122,62,0.1);
}
.included-icon {
  font-size: 28px;
  margin-bottom: 12px;
  background: none;
  width: auto;
  height: auto;
  border-radius: 0;
  padding: 0;
}
.included-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.included-card ul {
  list-style: none;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0;
}
.included-card li {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.55;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding-left: 0;
  position: static;
}
.included-card li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  position: static;
}

/* TARIFFS на странице podderzhka-1s (3 карточки, средняя — тёмная) */
body:has(.sla-card) .tariffs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.tariff {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.25s;
  position: relative;
}
.tariff:hover {
  border-color: var(--green);
  box-shadow: 0 8px 32px rgba(0,0,0,0.07);
}
.tariff.popular {
  background: var(--dark);
  border-color: var(--dark);
  color: white;
}
.tariff.popular .tariff-name { color: white; }
.tariff.popular .tariff-desc { color: rgba(255,255,255,0.6); }
.tariff.popular .tariff-feat { color: rgba(255,255,255,0.85); }
.tariff.popular .feat-check {
  background: rgba(255,255,255,0.15);
  color: white;
}
.tariff.popular .btn-outline {
  border-color: rgba(255,255,255,0.35);
  color: white;
}
.tariff.popular .btn-outline:hover {
  border-color: white;
  background: white;
  color: var(--dark);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: var(--dark);
  padding: 4px 16px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.tariff .tariff-name {
  font-family: 'Unbounded', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--dark);
}
.tariff-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}
.tariff-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.tariff-feat {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--dark);
  line-height: 1.5;
}
.feat-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green-pale);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* WHO SECTION на podderzhka-1s — тёмная (переопределяет .who-section маркировки) */
body:has(.sla-card) .who-section { background: var(--dark); }
body:has(.sla-card) .who-section h2,
body:has(.sla-card) .who-section .section-label { color: white; }
body:has(.sla-card) .who-section .section-label { color: var(--green-accent); }
body:has(.sla-card) .who-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 24px;
  transition: all 0.2s;
}
body:has(.sla-card) .who-card:hover {
  background: rgba(92,122,62,0.15);
  border-color: rgba(92,122,62,0.4);
  box-shadow: none;
}
body:has(.sla-card) .who-card h3 { color: white; }
body:has(.sla-card) .who-card p { color: rgba(255,255,255,0.5); }

/* CASES SECTION на podderzhka-1s */
.cases-section { background: var(--gray-light); }
body:has(.sla-card) .cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
body:has(.sla-card) .case-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.2s;
}
body:has(.sla-card) .case-card:hover {
  border-color: var(--green);
  box-shadow: 0 4px 20px rgba(92,122,62,0.1);
}
.case-tag {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  width: fit-content;
}
body:has(.sla-card) .case-card h3 {
  font-family: 'Unbounded', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--dark);
}
body:has(.sla-card) .case-card p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.55;
  flex: 1;
}
.case-result {
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  padding-top: 0;
  border-top: none;
}


/* ============================================================
   13. PAGE: TARIFY
   ============================================================ */

/* HERO PILLS */
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gray-light);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
}
.hero-pill::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--green-accent);
  border-radius: 50%;
}

/* PACKAGE SECTION — светло-оливковый фон */
.package-section {
  background: var(--gray-light);
  color: white;
}
.package-section h2 { color: black; }
.package-section .section-label { color: #C8D4AF; }
.package-section .section-desc { color: var(--green-accent); }

/* Сетка 5 карточек */
.package-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 32px;
}

/* Карточка пакета — белая по умолчанию */
.package-card {
  background: var(--white);
  border: none;
  border-radius: 18px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  min-height: 280px;
}
.package-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

/* Популярный — чёрный */
.package-card.popular {
  background: var(--dark);
  color: white;
}

/* Плашка «Популярный» — жёлтая, сверху карточки */
.pop-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: var(--dark);
  font-size: 11px;
  font-weight: 800;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.3px;
}

/* Цифра часов — крупная */
.pkg-hours {
  font-family: 'Unbounded', sans-serif;
  font-size: 54px;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
  letter-spacing: -2px;
}
.package-card.popular .pkg-hours { color: white; }

.pkg-hours-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray);
  margin-top: 6px;
}
.package-card.popular .pkg-hours-label { color: rgba(255,255,255,0.55); }

/* Тонкий разделитель */
.pkg-divider {
  height: 1px;
  background: var(--border);
  margin: 0;
}
.package-card.popular .pkg-divider { background: rgba(255,255,255,0.12); }

/* Цена */
.pkg-price {
  font-family: 'Unbounded', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.1;
  letter-spacing: -1px;
}
.package-card.popular .pkg-price { color: white; }

.pkg-price-label {
  font-size: 12px;
  color: var(--gray);
  margin-top: 4px;
  font-weight: 500;
}
.package-card.popular .pkg-price-label { color: rgba(255,255,255,0.55); }

/* Ставка за час — серым */
.pkg-rate {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray);
}
.package-card.popular .pkg-rate { color: rgba(255,255,255,0.7); }

/* «Перенос часов — да/нет» — снизу, с цветным маркером */
.pkg-transfer {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray);
  margin-top: auto;
  font-weight: 500;
}
.package-card.popular .pkg-transfer { color: rgba(255,255,255,0.6); }

.transfer-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.transfer-dot.yes { background: var(--green-accent); }
.transfer-dot.no {
  background: transparent;
  border: 1.5px solid var(--border);
}
.package-card.popular .transfer-dot.no {
  border-color: rgba(255,255,255,0.25);
}

/* ===== НИЖНИЙ РЯД — Фичи пакетов (3 карточки) ===== */
.pkg-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.pkg-feat {
  background: var(--white);
  border: none;
  border-radius: 16px;
  padding: 24px 26px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.pkg-feat-icon {
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.pkg-feat h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
  line-height: 1.3;
}

.pkg-feat p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.55;
  margin: 0;
}

/* ===== Адаптив ===== */
@media (max-width: 1100px) {
  .package-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .package-grid { grid-template-columns: repeat(2, 1fr); }
  .pkg-features { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .package-grid { grid-template-columns: 1fr; }
  .pkg-hours { font-size: 42px; }
  .pkg-price { font-size: 22px; }
}


/* PACKAGE FEATURES */
.pkg-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.pkg-feat {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.pkg-feat-icon {
  width: 42px;
  height: 42px;
  background: var(--green-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.pkg-feat h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.pkg-feat p { font-size: 13px; color: var(--gray); line-height: 1.5; }

/* ROLES GRID — почасовые ставки */
.roles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 40px;
}
.role-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  transition: all 0.2s;
}
.role-card:hover {
  border-color: var(--green);
  box-shadow: 0 4px 16px rgba(92,122,62,0.08);
}
.role-card.highlight {
  border-color: var(--green);
  background: var(--green-pale);
}
.role-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}
.role-icon {
  width: 36px;
  height: 36px;
  background: rgba(92,122,62,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.role-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
}
.role-price {
  font-family: 'Unbounded', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: var(--green);
  white-space: nowrap;
  flex-shrink: 0;
}

/* COEFFICIENTS — коэффициенты за нерабочее время */
.coefficients-section { background: var(--dark); }
.coefficients-section h2,
.coefficients-section .section-label { color: white; }
.coefficients-section .section-label { color: var(--green-accent); }
.coefficients-section .section-desc { color: rgba(255,255,255,0.5); }
.coeff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.coeff-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.2s;
}
.coeff-card:hover {
  background: rgba(92,122,62,0.15);
  border-color: rgba(92,122,62,0.4);
}
.coeff-multiplier {
  font-family: 'Unbounded', sans-serif;
  font-size: 40px;
  font-weight: 900;
  color: var(--green-accent);
  line-height: 1;
  margin-bottom: 14px;
}
.coeff-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}
.coeff-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-bottom: 16px;
}
.coeff-example {
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}
.coeff-example strong { color: var(--yellow); font-family: 'Unbounded', sans-serif; font-weight: 800; }

/* CALLOUT — жёлтый info-блок */
.callout {
  background: #FEFBE7;
  border: 1.5px solid rgba(245,200,66,0.4);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.callout-icon {
  width: 42px;
  height: 42px;
  background: var(--yellow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.callout-text {
  font-size: 14px;
  color: var(--dark);
  line-height: 1.65;
}
.callout-text strong { display: block; font-weight: 800; margin-bottom: 4px; font-size: 15px; }


/* ============================================================
   14. PAGE: MARKIROVKA
   ============================================================ */

/* Переопределяем service-card для страницы маркировки —
   убираем влияние стилей с главной (зелёный кант, вертикальная раскладка) */
.services-grid-2col .service-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: flex-start;
  transition: all 0.2s;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: visible;
}
.services-grid-2col .service-card::before { display: none; }
.services-grid-2col .service-card:hover {
  border-color: var(--green);
  background: var(--green-pale);
  transform: none;
  box-shadow: none;
}
.services-grid-2col .service-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
}
.services-grid-2col .service-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.55;
  margin-bottom: 0;
}
.services-grid-2col .service-icon {
  width: 48px;
  height: 48px;
  background: var(--green-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  margin-bottom: 0;
}

/* DEADLINE CARD (правая колонка hero — календарь дедлайнов) */
.deadline-card {
  background: var(--white);
  border: 2px solid var(--red);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 8px 40px rgba(229,62,62,0.1);
  display: flex;
  flex-direction: column;
}
.dc-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--red);
  margin-bottom: 12px;
  flex-shrink: 0;
}
.deadline-list {
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  max-height: 390px;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
  padding-right: 4px;
}
.deadline-list::-webkit-scrollbar { width: 4px; }
.deadline-list::-webkit-scrollbar-track { background: transparent; }
.deadline-list::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }

.dl-year-label {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray);
  padding: 8px 0 4px;
  border-bottom: 2px solid var(--border);
  margin-bottom: 2px;
}
.dl-item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.dl-item:last-child { border: none; }
.dl-date {
  font-family: 'Unbounded', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.4;
  padding-top: 2px;
}
.dl-date.passed { color: var(--gray); text-decoration: line-through; }
.dl-date.soon { color: var(--red); }
.dl-text { font-size: 12px; color: var(--dark); line-height: 1.5; }
.dl-text strong { display: block; font-weight: 700; margin-bottom: 2px; font-size: 13px; }
.dl-tag {
  display: inline-block;
  background: #FFF0F0;
  color: var(--red);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  margin-top: 3px;
}
.dl-tag.ok { background: var(--green-pale); color: var(--green); }
.dl-tag.warn { background: #FEF5E7; color: #92600A; }

/* COUNTDOWN TIMER — обратный отсчёт до ближайшего дедлайна */
.countdown { margin-top: 20px; padding-top: 20px; border-top: 2px solid var(--border); }
.countdown-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--red);
  margin-bottom: 10px;
  text-align: center;
}
.countdown-target {
  font-size: 12px;
  color: var(--gray);
  text-align: center;
  margin-bottom: 14px;
  font-weight: 600;
  line-height: 1.45;
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}
.countdown-target strong { color: var(--dark); display: block; font-weight: 800; }
.countdown-target.switching { opacity: 0; }
.countdown-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.cd-cell {
  background: var(--gray-light);
  border-radius: 10px;
  padding: 10px 4px;
  text-align: center;
  transition: background 0.2s;
}
.cd-cell.pulse { background: #FFF0F0; }
.cd-val {
  font-family: 'Unbounded', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.cd-cell.pulse .cd-val { color: var(--red); }
.cd-unit {
  font-size: 10px;
  font-weight: 600;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}
.countdown-expired {
  text-align: center;
  padding: 16px;
  background: var(--green-pale);
  border-radius: 10px;
  color: var(--green);
  font-weight: 700;
  font-size: 14px;
}

/* WHO NEEDS — кому нужна маркировка */
.who-section { background: var(--gray-light); }
.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.who-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all 0.2s;
}
.who-card:hover {
  border-color: var(--green);
  box-shadow: 0 4px 20px rgba(92,122,62,0.1);
}
.who-emoji { font-size: 28px; margin-bottom: 12px; }
.who-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.who-card p { font-size: 13px; color: var(--gray); line-height: 1.55; }

/* SERVICES-GRID-2COL — двухколоночная сетка для /markirovka/ */
.services-grid-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 40px;
}

/* HOW IT WORKS (тёмная секция — для /markirovka/) */
.how-section { background: var(--dark); }
.how-section h2,
.how-section .section-label { color: white; }
.how-section .section-label { color: var(--green-accent); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.step-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
  transition: all 0.2s;
}
.step-card:hover {
  background: rgba(92,122,62,0.15);
  border-color: rgba(92,122,62,0.4);
}
.step-arrow {
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.2);
  font-size: 20px;
  z-index: 1;
}
.step-card:last-child .step-arrow { display: none; }
.step-n {
  font-family: 'Unbounded', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--green-accent);
  margin-bottom: 12px;
}
.step-card h4 { font-size: 15px; font-weight: 700; color: white; margin-bottom: 8px; }
.step-card p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.55; }

/* FAQ — карточки вопросов-ответов (неаккордеон, для /markirovka/) */
.faq-section { background: var(--gray-light); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
}
.faq-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.faq-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.faq-card p { font-size: 14px; color: var(--gray); line-height: 1.6; }


/* ============================================================
   15. PAGE: KEDO
   ============================================================ */

/* Фон секции «Что это такое» */
.what-section { background: var(--gray-light); }

/* DIAGRAM «до / после» (правая карточка hero) */
.diagram {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.06);
}
.d-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gray);
  margin-bottom: 16px;
  text-align: center;
}
.d-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.d-side { border-radius: 12px; padding: 18px; }
.d-side.old { background: #FEF0EE; border: 1px solid #F5B5B0; }
.d-side.new { background: var(--green-pale); border: 1px solid rgba(92,122,62,0.25); }
.d-side-label {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.d-side.old .d-side-label { color: #C53030; }
.d-side.new .d-side-label { color: var(--green); }
.d-side ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.d-side li {
  font-size: 12px;
  line-height: 1.45;
  display: flex;
  gap: 6px;
  align-items: flex-start;
}
.d-side.old li::before { content: '✗'; color: #C53030; font-weight: 700; flex-shrink: 0; }
.d-side.new li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.d-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 0;
  color: var(--gray);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  gap: 10px;
}
.d-arrow-line { height: 1px; background: var(--border); flex: 1; }

/* BENEFITS — три карточки с цифрами */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.benefit-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.2s;
}
.benefit-card:hover {
  border-color: var(--green);
  box-shadow: 0 4px 20px rgba(92,122,62,0.1);
}
.benefit-num {
  font-family: 'Unbounded', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  margin-bottom: 6px;
}
.benefit-num span {
  font-size: 14px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  color: var(--gray);
  margin-left: 4px;
  vertical-align: top;
}
.benefit-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.benefit-card p { font-size: 14px; color: var(--gray); line-height: 1.55; }

/* WHAT-GRID — "Что это такое" (4 карточки с иконками) */
.what-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.what-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: all 0.2s;
}
.what-card:hover {
  border-color: var(--green);
  box-shadow: 0 4px 20px rgba(92,122,62,0.1);
}
.what-card.accent {
  background: var(--green);
  border-color: var(--green);
  color: white;
}
.what-card.accent h3,
.what-card.accent p { color: white; }
.what-card.accent p { color: rgba(255,255,255,0.85); }
.what-icon {
  width: 48px;
  height: 48px;
  background: var(--green-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.what-card.accent .what-icon { background: rgba(255,255,255,0.2); }
.what-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.what-card p { font-size: 14px; color: var(--gray); line-height: 1.55; }

/* FOR YOU — кому подходит (6 карточек) */
.for-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.for-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.2s;
}
.for-card:hover { border-color: var(--green); background: var(--green-pale); }
.for-icon { font-size: 28px; margin-bottom: 14px; }
.for-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.for-card p { font-size: 14px; color: var(--gray); line-height: 1.55; }

/* DOCS — список документов (тёмная секция) */
.docs-section { background: var(--dark); }
.docs-section h2,
.docs-section .section-label { color: white; }
.docs-section .section-label { color: var(--green-accent); }
.docs-section .section-desc { color: rgba(255,255,255,0.5); }
.docs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 40px;
}
.doc-pill {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 13px;
  font-weight: 600;
  color: white;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s;
}
.doc-pill:hover {
  background: rgba(92,122,62,0.2);
  border-color: rgba(92,122,62,0.4);
}
.doc-pill::before { content: '📄'; font-size: 16px; }

/* HOW IT WORKS (светлый вариант — для /kedo/) */
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.how-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  transition: all 0.2s;
}
.how-card:hover { border-color: var(--green); background: var(--green-pale); }
.how-arrow {
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--border);
  font-size: 20px;
  z-index: 1;
}
.how-card:last-child .how-arrow { display: none; }
.how-n {
  font-family: 'Unbounded', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--green);
  margin-bottom: 10px;
}
.how-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.how-card p { font-size: 13px; color: var(--gray); line-height: 1.55; }

/* ECONOMY — сколько экономит бизнес */
.economy-section { background: var(--gray-light); }
.economy-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 40px;
}
.economy-list { display: flex; flex-direction: column; gap: 18px; }
.eco-item { display: flex; gap: 14px; align-items: flex-start; }
.eco-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  margin-top: 7px;
}
.eco-item h4 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.eco-item p { font-size: 14px; color: var(--gray); line-height: 1.55; }
.economy-card {
  background: var(--green);
  border-radius: 20px;
  padding: 36px;
  color: white;
}
.economy-card-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}
.economy-rows { display: flex; flex-direction: column; gap: 14px; }
.economy-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.economy-row:last-child { border: none; padding-bottom: 0; }
.economy-row-label { font-size: 14px; color: rgba(255,255,255,0.8); }
.economy-row-val {
  font-family: 'Unbounded', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: white;
}

/* FAQ-АККОРДЕОН (раскрывающиеся вопросы) */
.faq-list {
  margin-top: 40px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.faq-item:last-child { border: none; }
.faq-q {
  width: 100%;
  background: var(--white);
  border: none;
  cursor: pointer;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  text-align: left;
  font-family: 'Manrope', sans-serif;
  transition: background 0.2s;
}
.faq-q:hover { background: var(--gray-light); }
.faq-q-text { font-size: 15px; font-weight: 600; color: var(--dark); }
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--green);
  flex-shrink: 0;
  transition: all 0.2s;
}
.faq-a {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s;
  font-size: 14px;
  color: var(--gray);
  line-height: 1.65;
}
.faq-item.open .faq-a { max-height: 400px; padding: 0 24px 20px; }
.faq-item.open .faq-icon { background: var(--green); color: white; transform: rotate(45deg); }

/* ============================================================
   16. PAGE: KONTAKTY
   ============================================================ */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.contact-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: all 0.2s;
  text-decoration: none;
  color: inherit;
}
.contact-card:hover {
  border-color: var(--green);
  box-shadow: 0 4px 20px rgba(92,122,62,0.1);
}
.contact-card.accent {
  background: var(--green);
  border-color: var(--green);
  color: white;
}
.contact-card.accent .contact-icon { background: rgba(255,255,255,0.2); }
.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--green-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.contact-body { flex: 1; min-width: 0; }
.contact-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gray);
  margin-bottom: 6px;
}
.contact-card.accent .contact-label { color: rgba(255,255,255,0.7); }
.contact-value {
  font-size: 20px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 6px;
  display: block;
  word-break: break-word;
}
.contact-card.accent .contact-value { color: white; }
.contact-card:hover .contact-value { color: var(--green); }
.contact-card.accent:hover .contact-value { color: var(--yellow); }
.contact-value.small { font-size: 16px; word-break: break-all; }
.contact-note { font-size: 13px; color: var(--gray); line-height: 1.5; }
.contact-card.accent .contact-note { color: rgba(255,255,255,0.8); }

/* SCHEDULE + ADDRESS */
.info-section { background: var(--gray-light); }
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.info-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
}
.info-card h3 {
  font-family: 'Unbounded', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 20px;
}
.schedule-list { display: flex; flex-direction: column; gap: 12px; }
.schedule-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  gap: 12px;
}
.schedule-row:last-child { border: none; padding-bottom: 0; }
.schedule-label { font-size: 14px; color: var(--gray); font-weight: 500; }
.schedule-value { font-size: 15px; font-weight: 700; color: var(--dark); text-align: right; }
.schedule-badge {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 6px;
  margin-left: 8px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.address-block { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.address-icon {
  width: 40px;
  height: 40px;
  background: var(--green-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.address-body h4 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.address-body p { font-size: 14px; color: var(--gray); line-height: 1.55; }
.metro-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.metro-item { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--dark); }
.metro-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.metro-dot.red { background: #E42518; }
.metro-dot.orange { background: #EF7F1A; }
.metro-dot.green { background: #43B02A; }
.metro-dot.grey { background: #A1A2A3; }
.metro-dot.lime { background: #BED12A; }
.metro-name { font-weight: 600; }
.metro-walk { color: var(--gray); font-size: 12px; }
.address-map-link {
  margin-top: auto;
  padding-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  align-self: flex-start;
}
.address-map-link:hover { color: var(--dark2); }
.address-map-link::after { content: '→'; transition: transform 0.2s; }
.address-map-link:hover::after { transform: translateX(3px); }

/* REQUISITES */
.req-card {
  background: var(--dark);
  border-radius: 20px;
  padding: 40px;
  color: white;
}
.req-card h2 { color: white; }
.req-card .section-label { color: var(--green-accent); }
.req-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 40px;
  margin-top: 28px;
}
.req-row { border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 14px; }
.req-row.full { grid-column: 1 / -1; }
.req-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}
.req-value {
  font-size: 15px;
  font-weight: 700;
  color: white;
  font-family: 'Manrope', sans-serif;
  line-height: 1.45;
}
.req-value.mono { font-variant-numeric: tabular-nums; letter-spacing: 0.3px; }
.req-copy { margin-top: 28px; display: flex; gap: 10px; flex-wrap: wrap; }
.req-btn {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Manrope', sans-serif;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.req-btn:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.35);
}
.req-btn.copied { background: var(--green); border-color: var(--green); }


/* ============================================================
   17. MEDIA QUERIES
   ============================================================ */

@media (max-width: 1100px) {
  .tariff-card.featured { transform: none; }
}

@media (max-width: 900px) {
  .hero-inner,
  .hero .hero-inner,
  .cta-inner,
  .economy-wrap,
  .info-grid,
  .req-grid,
  .contact-grid,
  .why-grid { grid-template-columns: 1fr; }

  .deadline-card,
  .diagram,
  .hero-diagram { display: none; }

  .req-row.full { grid-column: auto; }

  .services-grid,
  .trust-grid,
  .steps-grid,
  .pricing-teaser,
  .tariff-grid,
  .tariffs-grid,
  .pain-grid,
  .verticals-grid,
  .cases-grid,
  .who-grid,
  .benefits-grid,
  .for-grid,
  .how-grid,
  .docs-grid { grid-template-columns: 1fr 1fr; }

  .services-grid-2col,
  .faq-grid,
  .what-grid { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr; }

  .header-nav { display: none; }
  .header-right { display: none; }
  .burger-btn { display: flex; margin-left: auto; }
  .mobile-nav { display: block; }

  .process-steps { flex-direction: column; gap: 24px; }
  .process-steps::before { display: none; }

  .compare-table { overflow-x: auto; }
  .compare-table table { min-width: 600px; }
  .hero .hero-inner:has(.sla-card) { grid-template-columns: 1fr; }
  .sla-card { display: none; }

  .included-grid,
  .pkg-features,
  .roles-grid,
  .coeff-grid,
  .package-grid { grid-template-columns: 1fr 1fr; }

  #tariffs .tariffs-grid { grid-template-columns: 1fr; }
  .package-card.popular { transform: none; }

/* Карусель кейсов — адаптив */
  .case-card--carousel { flex: 0 0 300px; }
  .case-card--featured { flex: 0 0 330px; }
  .case-card__preview { height: 130px; }
}

@media (max-width: 540px) {
  section { padding: 56px 0; }

  .services-grid,
  .trust-grid,
  .steps-grid,
  .pricing-teaser,
  .tariff-grid,
  .tariffs-grid,
  .pain-grid,
  .verticals-grid,
  .cases-grid,
  .who-grid,
  .benefits-grid,
  .for-grid,
  .how-grid,
  .docs-grid { grid-template-columns: 1fr; }

  .hero { padding: 48px 0 40px; }
  .req-card { padding: 28px; }
  .lead-form { padding: 24px; }
  
  .included-grid,
  .pkg-features,
  .roles-grid,
  .coeff-grid,
  .package-grid { grid-template-columns: 1fr; }

/* Карусель кейсов — мобильный */
  .case-card--carousel,
  .case-card--featured { flex: 0 0 calc(100vw - 64px); }
  .carousel-btn { display: none; }
  .cases-carousel-wrapper { gap: 0; }
  .case-card__preview { height: 120px; }
}
/* End */
/* /bitrix/templates/ittrust_2026/styles.css?177728454475840 */
