/* ==========================================
   ОБЩИЕ СТИЛИ И СБРОС
   ========================================== */
:root {
  --bg-main: #f9f8ed;         /* Пастельно-песочный фон страницы */
  --bg-yellow: #ffd700;       /* Фирменный желтый акцент */
  --bg-card: #ffffff;         /* Чистый белый для карточек */

  --platform-color: #d6141f;          /* Фирменный красный 1С */
  
  --text-primary: #0f1e36;    /* Глубокий темно-синий для читаемости */
  --text-muted: #5a6474;      /* Серый для описаний */
  
  --accent-red: #ffab00;      /* Красный 1С */
  --accent-red-hover: #f3a914;
  
  --border-color: rgba(0, 0, 0, 0.08);
  --shadow-light: 0 10px 30px rgba(48, 18, 18, 0.05);
  --shadow-hover: 0 15px 35px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================
   КАСТОМНЫЙ СКРОЛЛБАР ПОД ДИЗАЙН
   ========================================== */

/* Плавная прокрутка */
html {
  scroll-behavior: smooth;
  /* Для Firefox: задаем толщину и цвета (бегунок / дорожка) */
  scrollbar-width: auto; 
  scrollbar-color: var(--text-primary) var(--bg-main);
}

/* --- Для WebKit (Chrome, Edge, Safari, Opera) --- */

/* Ширина полосы прокрутки */
::-webkit-scrollbar {
  width: 12px;
}

/* Дорожка (фон), по которой ездит ползунок */
::-webkit-scrollbar-track {
  background-color: var(--bg-main);
  border-left: 1px solid var(--border-color);
}

/* Сам ползунок (бегунок) */
::-webkit-scrollbar-thumb {
  background-color: var(--text-primary); /* Темно-синий под ваш текст */
  border-radius: 6px;
  /* Внутренний отступ от краев дорожки */
  border: 2px solid var(--bg-main); 
  transition: var(--transition);
}

/* При наведении на ползунок */
::-webkit-scrollbar-thumb:hover {
  background-color: var(--accent-red); /* Фирменный красный 1С */
}

/* При нажатии на ползунок */
::-webkit-scrollbar-thumb:active {
  background-color: var(--bg-yellow); /* Желтый акцент */
}

/* Убираем стандартные стрелки системного скроллбара */
::-webkit-scrollbar-button {
  display: none;
  width: 0;
  height: 0;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* 1. Настройка структуры страницы через Flexbox для прижатия футера */
html, body {
  height: 100%;
  margin: 0;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.5;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.main-body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.5;
  overflow-x: hidden;
  display: block;
}

.over {
  overflow: hidden;
}

main {
  flex: 1;
}

/* ----------------------------------------------------
   КНОПКА НАВЕРХ
---------------------------------------------------- */
.back-to-top {
  position: fixed;
  bottom: 50px;
  right: 30px;
  z-index: 999;
}

.button-top {
  width: 50px;
  height: 50px;
  cursor: pointer;
  border-radius: 50%;
  background-color: var(--accent-red);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(217, 20, 36, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  border: none;
}

.button-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ==========================================
   ИНТЕРАКТИВНОСТЬ И ЭФФЕКТЫ (HOVER & CURSOR)
   ========================================== */
.feature,
.info-card,
.advantages__item,
.p-tile,
.c-feature,
.c-service,
.c-contact,
.s1c__item,
.s1c__benefit,
.s1c-card,
.b-item,
.its-s-card,
.its-f-item,
.edu-feature-item,
.edu-info-card,
.edu-f-item,
.service-card,
.why-item {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
  cursor: pointer;
}

.feature:hover,
.info-card:hover,
.advantages__item:hover,
.p-tile:hover,
.c-feature:hover,
.c-service:hover,
.s1c__item:hover,
.s1c__benefit:hover,
.s1c-card:hover,
.b-item:hover,
.its-s-card:hover,
.its-f-item:hover,
.edu-feature-item:hover,
.edu-info-card:hover,
.edu-f-item:hover,
.service-card:hover,
.why-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.c-contact:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.2);
}

/* Анимированная кнопка с бликом */
.shiny-btn {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.shiny-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: all 0.6s ease;
}

.shiny-btn:hover::before {
  left: 100%;
}

.shiny-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.4);
}

/* Пульсация */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.03); }
  100% { transform: scale(1); }
}

.pulse-badge, .pulse-ring {
  animation: pulse 3s infinite ease-in-out;
}

/* ==========================================
   SECT 1: HERO
   ========================================== */
.hero {
  position: relative;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 60px 20px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 115px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__wrapper {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-1c {
  background: var(--platform-color);
  color: #fff;
  font-weight: 900;
  font-size: 28px;
  padding: 2px 12px;
  border-radius: 4px;
}

.logo-sub {
  font-weight: 700;
  font-size: 30px;
}

.hero__title {
  font-size: 42px;
  font-weight: 900;
  color: #0f172a;
  margin-top: 10px;
}

.hero__country {
  font-size: 22px;
  font-weight: 800;
  color: #2563eb;
  margin: 10px 0 20px;
}

.hero__badges {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.badge {
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.badge--red {
  background: #fee2e2;
}

.badge--dark {
  background: #0f172a;
  color: #fff;
}

.badge__icon {
  width: 16px;
  height: 16px;
}

.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 30px;
}

.feature {
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #e2e8f0;
}

.feature__icon {
  width: 36px;
  height: 36px;
  color: #2563eb;
  flex-shrink: 0;
}

.feature__text {
  font-weight: 600;
  font-size: 14px;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.info-card {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.info-card--main {
  display: flex;
  gap: 15px;
}

.info-card__icon {
  width: 40px;
  height: 40px;
  color: #ffab00;
  flex-shrink: 0;
}

.info-card__title {
  font-size: 14px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
}

.info-card__list li {
  font-size: 12px;
  color: #64748b;
  position: relative;
  padding-left: 12px;
  margin-bottom: 4px;
}

.info-card__list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #2563eb;
}

/* 3D Коробка */
.product-box-wrapper {
  position: relative;
  perspective: 1000px;
  display: flex;
  justify-content: center;
}

.css-box {
  width: 260px;
  height: 340px;
  position: relative;
  transform-style: preserve-3d;
  transform: rotateY(-20deg) rotateX(10deg);
  transition: transform 0.5s ease;
}

.css-box:hover {
  transform: rotateY(-10deg) rotateX(5deg);
}

.css-box__front {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #ffd600 0%, #ffab00 100%);
  border-radius: 8px;
  padding: 30px 20px;
  box-shadow: inset 0 0 15px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 2px solid #e6a100;
}

.css-box__logo {
  font-size: 48px;
  font-weight: 900;
  color: var(--platform-color);
}

.css-box__title {
  font-size: 20px;
  font-weight: 900;
  color: #0f172a;
}

.css-box__subtitle {
  font-size: 14px;
  font-weight: 700;
  color: #2563eb;
}

.css-box__ver {
  font-size: 36px;
  font-weight: 900;
  color: var(--platform-color);
}

.css-box__tag {
  background: #0f172a;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  text-align: center;
}

.css-box__side {
  position: absolute;
  top: 0;
  right: -30px;
  width: 30px;
  height: 100%;
  background: #d99b00;
  transform: rotateY(90deg);
  transform-origin: left;
  border-radius: 0 4px 4px 0;
}

.css-box__top {
  position: absolute;
  top: -30px;
  left: 0;
  width: 100%;
  height: 30px;
  background: #ffe047;
  transform: rotateX(90deg);
  transform-origin: bottom;
  border-radius: 4px 4px 0 0;
}

.box-badge {
  position: absolute;
  top: -15px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: #ffab00;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 18px;
  border: 3px solid #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.advantages {
  max-width: 1200px;
  margin: 40px auto 0;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
}

.advantages__item {
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 12px;
  border: 1px solid #e2e8f0;
}

.adv-icon {
  width: 24px;
  height: 24px;
  color: #ffab00;
  flex-shrink: 0;
}

/* ==========================================
   SECT 2: PROCUREMENT
   ========================================== */
.procurement {
  background: #0d2346;
  color: #fff;
  padding: 60px 20px;
  position: relative;
}

.procurement__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.procurement__container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.procurement__header {
  text-align: center;
  margin-bottom: 40px;
}

.procurement__brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffd600;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 15px;
}

.p-logo-1c {
  color: var(--platform-color);
  font-weight: 900;
  font-size: 20px;
}

.p-cart-icon svg {
  width: 20px;
  height: 20px;
}

.procurement__title {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: 2px;
  color: #ffd600;
}

.procurement__subtitle {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 1px;
}

.procurement__body {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 40px;
}

.procurement__box-wrapper {
  position: relative;
  perspective: 800px;
}

.box-83 {
  width: 220px;
  height: 280px;
  position: relative;
  transform-style: preserve-3d;
  transform: rotateY(-25deg) rotateX(10deg);
  margin: 0 auto;
}

.box-83__front {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #ffd600 0%, #e6a100 100%);
  border-radius: 6px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.box-83__brand {
  font-size: 10px;
  font-weight: 800;
  color: #0d2346;
}

.box-83__logo {
  font-size: 40px;
  font-weight: 900;
  color: var(--platform-color);
  text-align: center;
}

.box-83__version {
  font-size: 32px;
  font-weight: 900;
  color: var(--platform-color);
  text-align: right;
}

.box-83__side {
  position: absolute;
  top: 0;
  right: -25px;
  width: 25px;
  height: 100%;
  background: #b37d00;
  transform: rotateY(90deg);
  transform-origin: left;
}

.box-83__top {
  position: absolute;
  top: -25px;
  left: 0;
  width: 100%;
  height: 25px;
  background: #ffea75;
  transform: rotateX(90deg);
  transform-origin: bottom;
}

.badge-83 {
  position: absolute;
  top: -10px;
  right: 20px;
  background: #ffab00;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 16px;
  border: 2px solid #fff;
}

.ib-brand {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
  background: rgba(255, 255, 255, 0.05);
  padding: 15px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ib-brand__shield svg {
  width: 36px;
  height: 36px;
}

.ib-brand__logo {
  font-size: 28px;
  font-weight: 900;
  color: #ffd600;
}

.ib-brand__text {
  display: flex;
  flex-direction: column;
}

.ib-brand__text span {
  font-size: 12px;
  letter-spacing: 2px;
  color: #94a3b8;
}

.ib-brand__text strong {
  font-size: 18px;
  letter-spacing: 1px;
  color: #fff;
}

.procurement__tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.p-tile {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 20px 10px;
  border-radius: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.p-tile__icon svg {
  width: 28px;
  height: 28px;
  color: #ffd600;
}

.p-tile span {
  font-size: 11px;
  font-weight: 700;
}

.p-tile--red {
  background: #ffab00;
  border-color: #ef4444;
}

.p-tile__ver {
  font-size: 24px;
  font-weight: 900;
}

.procurement__franchise {
  text-align: center;
  margin-bottom: 40px;
}

.franchise-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #ffab00;
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 800;
  font-size: 16px;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
}

.franchise-btn__seal svg {
  width: 20px;
  height: 20px;
}

.procurement__footer {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 30px;
}

.p-footer__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  color: #cbd5e1;
}

.p-footer__item svg {
  width: 20px;
  height: 20px;
  color: #ffd600;
  flex-shrink: 0;
}

/* ==========================================
   SECT 3: CONSULTATION
   ========================================== */
.consultation {
  background: #1e293b;
  color: #fff;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}

.consultation__container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.consultation__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.05);
  padding: 20px 30px;
  border-radius: 12px;
  margin-bottom: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.c-partner {
  display: flex;
  align-items: center;
  gap: 15px;
}

.c-partner__logo-mark {
  background: #ffd600;
  color: #0d2346;
  font-weight: 900;
  font-size: 20px;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-partner__text {
  display: flex;
  flex-direction: column;
}

.c-partner__text strong {
  font-size: 14px;
  color: #fff;
}

.c-partner__text span {
  font-size: 10px;
  color: #94a3b8;
}

.c-partner-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

.c-partner__logo-1c {
  color: var(--platform-color);
  font-weight: 900;
  font-size: 24px;
}

.consultation__body {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}

.consultation__title {
  font-size: 32px;
  font-weight: 900;
  color: #ffd600;
}

.consultation__subtitle {
  font-size: 24px;
  font-weight: 800;
}

.consultation__line {
  width: 60px;
  height: 4px;
  background: #ffab00;
  margin: 15px 0 25px;
}

.c-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.c-feature {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.c-feature__icon svg {
  width: 24px;
  height: 24px;
  color: #ffd600;
}

.c-feature__text {
  display: flex;
  flex-direction: column;
}

.c-feature__text strong {
  font-size: 13px;
}

.c-feature__text span {
  font-size: 11px;
  color: #94a3b8;
}

/* Clipboard 3D */
.clipboard-wrapper {
  position: relative;
  width: 240px;
  margin: 0 auto;
}

.clipboard {
  background: #2563eb;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  position: relative;
}

.clipboard__clip {
  width: 80px;
  height: 20px;
  background: #94a3b8;
  margin: -25px auto 10px;
  border-radius: 4px;
  position: relative;
}

.clipboard__paper {
  background: #fff;
  border-radius: 6px;
  padding: 20px 15px;
  color: #0f172a;
}

.paper-title {
  font-weight: 900;
  font-size: 16px;
  text-align: center;
  color: #2563eb;
}

.paper-line {
  height: 4px;
  background: #e2e8f0;
  margin: 8px 0;
  border-radius: 2px;
}

.paper-line--short {
  width: 60%;
  margin: 6px auto;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

.check-box {
  color: #16a34a;
  font-weight: 900;
}

.check-line {
  height: 4px;
  background: #cbd5e1;
  flex-grow: 1;
  border-radius: 2px;
}

.coin-1c {
  position: absolute;
  bottom: -15px;
  right: -15px;
  width: 50px;
  height: 50px;
  background: #ffd600;
  color: #ffab00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  border: 3px solid #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.consultation__services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-bottom: 30px;
}

.c-service {
  background: #2563eb;
  padding: 15px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.c-service__icon svg {
  width: 24px;
  height: 24px;
  color: #fff;
}

.c-service__text {
  display: flex;
  flex-direction: column;
}

.c-service__text strong {
  font-size: 12px;
}

.c-service__text span {
  font-size: 10px;
  opacity: 0.8;
}

.consultation__contacts {
  display: flex;
  justify-content: space-around;
  background: rgba(255,255,255,0.05);
  padding: 15px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
  gap: 15px;
}

.c-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 13px;
  padding: 5px 10px;
  border-radius: 6px;
}

.c-contact__icon svg {
  width: 18px;
  height: 18px;
  color: #ffd600;
}

/* ==========================================
   SECT 4: SERVICES 1C
   ========================================== */
.services-1c {
  padding: 60px 20px;
  background: #fff;
}

.s1c__container {
  max-width: 1200px;
  margin: 0 auto;
}

.s1c__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.s1c__logo-1c {
  font-size: 36px;
  font-weight: 900;
  color: var(--platform-color);
}

.s1c__header-title {
  text-align: center;
}

.s1c__header-title h2 {
  font-size: 18px;
  color: #64748b;
  letter-spacing: 1px;
}

.s1c__header-title h1 {
  font-size: 28px;
  font-weight: 900;
  color: #0f172a;
}

.s1c__badge-bar {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #2563eb;
  margin-top: 5px;
}

.s1c__brand-ib {
  display: flex;
  align-items: center;
  gap: 8px;
}

.s1c__ib-logo {
  background: #ffd600;
  color: #0f172a;
  font-weight: 900;
  padding: 4px 8px;
  border-radius: 4px;
}

.s1c__ib-text {
  display: flex;
  flex-direction: column;
  font-size: 10px;
  line-height: 1.1;
}

.s1c__intro-card {
  background: #0d2346;
  color: #fff;
  padding: 20px;
  border-radius: 8px;
  font-size: 14px;
  text-align: center;
  margin-bottom: 40px;
}

.s1c__main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.s1c__list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.s1c__item {
  display: flex;
  gap: 15px;
  padding: 15px;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.s1c__item-icon svg {
  width: 32px;
  height: 32px;
  color: #ffab00;
}

.s1c__item-content h3 {
  font-size: 14px;
  font-weight: 800;
  color: #0f172a;
}

.s1c__item-content p {
  font-size: 12px;
  color: #64748b;
}

/* Monitor Mockup */
.s1c-monitor {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
}

.s1c-monitor__screen {
  background: #0f172a;
  border: 8px solid #334155;
  border-radius: 8px 8px 0 0;
  height: 200px;
  padding: 5px;
}

.s1c-app {
  background: #fff;
  height: 100%;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
}

.s1c-app__topbar {
  background: #e2e8f0;
  padding: 2px 8px;
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  font-weight: 700;
}

.s1c-app__body {
  display: flex;
  flex-grow: 1;
}

.s1c-app__sidebar {
  width: 80px;
  background: #f1f5f9;
  border-right: 1px solid #e2e8f0;
  padding: 5px;
}

.s1c-app__menu-item {
  font-size: 8px;
  padding: 3px;
  margin-bottom: 2px;
  border-radius: 2px;
}

.s1c-app__menu-item.active {
  background: #ffab00;
  color: #fff;
}

.s1c-monitor__stand {
  width: 60px;
  height: 20px;
  background: #64748b;
  margin: 0 auto;
}

.s1c-monitor__base {
  width: 120px;
  height: 6px;
  background: #475569;
  margin: 0 auto;
  border-radius: 3px 3px 0 0;
}

.s1c-folders {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.s1c-folder {
  background: #ffd600;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 6px;
}

.s1c-folder__dot {
  width: 6px;
  height: 6px;
  background: #0f172a;
  border-radius: 50%;
}

.s1c-box-3d {
  background: #ffab00;
  color: #fff;
  padding: 10px;
  border-radius: 6px;
  text-align: center;
  margin-top: 15px;
  font-weight: 900;
}

.s1c__quality-badge {
  margin-top: 20px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  padding: 12px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.s1c__qb-icon svg {
  width: 24px;
  height: 24px;
  color: #2563eb;
}

.s1c__qb-text {
  font-size: 11px;
}

.s1c__benefits {
  background: #ffd600;
  padding: 20px;
  border-radius: 8px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 15px;
}

.s1c__benefit {
  display: flex;
  align-items: center;
  gap: 10px;
}

.s1c__benefit-icon svg {
  width: 24px;
  height: 24px;
  color: #0f172a;
}

.s1c__benefit-text {
  display: flex;
  flex-direction: column;
  font-size: 11px;
  color: #0f172a;
}

.s1c__benefit-divider {
  width: 1px;
  height: 30px;
  background: rgba(0,0,0,0.1);
}

.s1c__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #e2e8f0;
  padding-top: 20px;
  flex-wrap: wrap;
  gap: 20px;
}

.s1c__footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ib-mark {
  background: #0f172a;
  color: #ffd600;
  font-weight: 900;
  padding: 4px 8px;
  border-radius: 4px;
}

.ib-text {
  display: flex;
  flex-direction: column;
  font-size: 10px;
}

.s1c__footer-info {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.fi-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
}

.fi-item svg {
  width: 16px;
  height: 16px;
  color: #ffab00;
}

.s1c__cta-btn {
  background: #ffab00;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 12px;
}

/* ==========================================
   SECT 5: SOLUTIONS 1C
   ========================================== */
.solutions-1c {
  background: #f8fafc;
  padding: 60px 20px;
  position: relative;
}

@media (max-width: 768px) {
  .solutions-1c {
    padding-top: 95px;
  }
}

.s-flag {
  position: absolute;
  top: 0;
  right: 40px;
  background: #ffab00;
  color: #fff;
  padding: 15px 10px;
  border-radius: 0 0 8px 8px;
  text-align: center;
  font-size: 10px;
  font-weight: 800;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  z-index: 10;
}

@media (max-width: 768px) {
  .s-flag {
    right: 30%;
    left: 30%;
  }
}

.s-flag svg {
  width: 20px;
  height: 20px;
}

.s1c-container {
  max-width: 1200px;
  margin: 0 auto;
}

.s1c-header {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
}

.s1c-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 10px 15px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.s1c-brand__logo {
  background: #ffd600;
  font-weight: 900;
  padding: 4px 8px;
  border-radius: 4px;
}

.s1c-brand__text {
  display: flex;
  flex-direction: column;
  font-size: 10px;
}

.s1c-title-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.s1c-logo-1c {
  font-size: 32px;
  font-weight: 900;
  color: var(--platform-color);
}

.s1c-titles h2 {
  font-size: 24px;
  font-weight: 900;
}

.s1c-titles p {
  font-size: 12px;
  color: #64748b;
  font-weight: 700;
}

.s1c-badge-pill {
  display: inline-flex;
  gap: 8px;
  background: #e0f2fe;
  color: #0369a1;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 800;
  margin-top: 5px;
}

.s1c-products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.s1c-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  border: 1px solid #e2e8f0;
  display: flex;
  gap: 20px;
}

.s1c-box-wrapper {
  position: relative;
  width: 120px;
  flex-shrink: 0;
}

.s1c-box {
  background: #ffd600;
  border-radius: 6px;
  padding: 10px;
  height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #e6a100;
}

.s1c-box__brand {
  font-size: 8px;
  font-weight: 900;
}

.s1c-box__sub {
  font-size: 7px;
}

.s1c-box__red-tag {
  background: #ffab00;
  color: #fff;
  font-size: 6px;
  padding: 2px;
  text-align: center;
  font-weight: 800;
}

.s1c-box__logo {
  font-size: 20px;
  font-weight: 900;
  color: var(--platform-color);
}

.s1c-box__ver {
  font-size: 14px;
  font-weight: 900;
  color: var(--platform-color);
}

.s1c-box__bottom {
  font-size: 5px;
  background: #0f172a;
  color: #fff;
  padding: 2px;
  text-align: center;
}

.s1c-box-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #ffab00;
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 10px;
  border: 2px solid #fff;
}

.s1c-box-badge--user {
  background: #2563eb;
}

.s1c-box-badge--user svg {
  width: 14px;
  height: 14px;
}

.s1c-card__content h3 {
  font-size: 18px;
  font-weight: 900;
}

.s1c-card__sub {
  font-size: 12px;
  color: #2563eb;
  font-weight: 700;
}

.s1c-card__red-badge {
  display: inline-block;
  background: #fee2e2;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 4px;
  margin: 5px 0;
}

.s1c-card__delivery, .s1c-card__delivery-dark {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: #64748b;
  margin-bottom: 15px;
}

.s1c-feature-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.s1c-feature-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
}

.f-icon svg {
  width: 16px;
  height: 16px;
  color: #ffab00;
}

.f-icon--arrow svg {
  color: #2563eb;
}

.s1c-addons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.s1c-addons__left {
  background: #0f172a;
  color: #fff;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  gap: 15px;
}

.add-plus-icon {
  font-size: 32px;
  font-weight: 900;
  color: #ffd600;
}

.add-content h4 {
  font-size: 14px;
  color: #ffd600;
  margin-bottom: 10px;
}

.add-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  font-size: 11px;
}

.add-item .check {
  color: #16a34a;
  font-weight: 900;
}

.s1c-addons__right {
  border: 2px dashed #cbd5e1;
  border-radius: 12px;
  padding: 20px;
  background: #fff;
}

.kit-title {
  font-weight: 900;
  font-size: 12px;
  color: #2563eb;
  margin-bottom: 10px;
}

.kit-body {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
}

.mini-box {
  background: var(--bg-yellow);
  font-weight: 900;
  padding: 4px 8px;
  border-radius: 4px;
  color: var(--platform-color);
}

.s1c-benefits-bar {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 30px;
}

.b-head {
  text-align: center;
  font-weight: 900;
  font-size: 14px;
  margin-bottom: 15px;
}

.b-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}

.b-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
}

.b-item svg {
  width: 24px;
  height: 24px;
  color: #2563eb;
}

.s1c-footer-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0d2346;
  color: #fff;
  padding: 20px 30px;
  border-radius: 12px;
  flex-wrap: wrap;
  gap: 20px;
}

.f-trust {
  display: flex;
  align-items: center;
  gap: 12px;
}

.f-trust__icon {
  background: #16a34a;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.f-trust__text {
  display: flex;
  flex-direction: column;
  font-size: 12px;
}

.f-franchise {
  display: flex;
  align-items: center;
  gap: 10px;
}

.f-franchise__seal svg {
  width: 24px;
  height: 24px;
  color: #ffd600;
}

.f-franchise__text {
  display: flex;
  flex-direction: column;
  font-size: 11px;
}

/* ==========================================
   SECT 6: ITS 1C
   ========================================== */
.its-1c {
  background: #fff;
  padding: 60px 20px;
}

.its-container {
  max-width: 1200px;
  margin: 0 auto;
}

.its-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.its-header__main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.its-logo {
  display: flex;
  align-items: stretch;
  gap: 5px;
}

.logo-its {
  background: #ffd600;
  font-weight: 900;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 20px;
  display: flex;
  align-items: center;
}

.its-title-text h2 {
  font-size: 18px;
  font-weight: 900;
  color: #0f172a;
}

.its-header__partners {
  display: flex;
  gap: 20px;
}

.its-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.its-brand__logo {
  background: #ffd600;
  font-weight: 900;
  padding: 4px 8px;
  border-radius: 4px;
}

.its-brand__text {
  display: flex;
  flex-direction: column;
  font-size: 10px;
}

.its-franchise {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
}

.f-1c {
  background: var(--platform-color);
  color: #fff;
  font-weight: 900;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 16px;
}

.its-tagline {
  background: #ffd600;
  text-align: center;
  padding: 10px;
  font-weight: 900;
  font-size: 16px;
  border-radius: 6px;
  margin-bottom: 30px;
  color: #0f172a;
}

.its-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.its-services-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.its-s-card {
  padding: 15px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid #e2e8f0;
}

.its-s-card--yellow { background: #fefce8; border-color: #fef08a; }
.its-s-card--blue { background: #f0f9ff; border-color: #bae6fd; }
.its-s-card--green { background: #f0fdf4; border-color: #bbf7d0; }
.its-s-card--purple { background: #faf5ff; border-color: #e9d5ff; }
.its-s-card--pink { background: #fdf2f8; border-color: #fbcfe8; }

.its-s-card__icon svg {
  width: 24px;
  height: 24px;
  color: #0f172a;
}

.its-s-card__content h3 {
  font-size: 13px;
  font-weight: 800;
}

.its-s-card__content p {
  font-size: 11px;
  color: #64748b;
}

/* Diagram box */
.its-diagram-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px;
  position: relative;
}

.its-diagram-title {
  text-align: center;
  font-weight: 900;
  font-size: 14px;
  margin-bottom: 20px;
}

.its-diagram {
  position: relative;
  height: 260px;
}

.its-lines-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.diagram-line {
  stroke: #cbd5e1;
  stroke-width: 2;
  stroke-dasharray: 4;
}

.its-node-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: #ffd600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  border: 3px solid #fff;
}

.nc-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nc-1c { font-weight: 900; color: var(--platform-color); font-size: 16px; }
.nc-text { font-weight: 900; color: #0f172a; font-size: 12px; }

.its-node {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 9px;
  font-weight: 800;
  background: #fff;
  padding: 6px 10px;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.n-icon svg { width: 14px; height: 14px; color: #2563eb; }

.n-top-left { top: 10px; left: 10px; }
.n-top-right { top: 10px; right: 10px; }
.n-mid-left { top: 110px; left: 0; }
.n-mid-right { top: 110px; right: 0; }
.n-bottom { bottom: 10px; left: 50%; transform: translateX(-50%); }

@media (max-width: 600px) {
	
	.its-diagram {
		height: auto;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 15px;
	}
	
	.its-node-center {
		display: none;
	}
	
	.n-top-left {
		position: static;
	}
	
	.n-top-right {
		position: static;
	}
	
	.n-mid-left {
		position: static;
	}
	
	.n-mid-right {
		position: static;
	}
	
	.n-bottom {
		transform: none;
		position: static;
	}
	
	.its-lines-svg {
		display: none;
	}
	
}

.its-footer-bar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: #0d2346;
  color: #fff;
  padding: 20px;
  border-radius: 12px;
  flex-wrap: wrap;
  gap: 15px;
}

@media (max-width: 768px) {
  .its-footer-bar {
    justify-content: flex-start;
  }
}

.its-f-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.its-f-icon svg { width: 24px; height: 24px; color: #ffd600; }

.its-f-text { display: flex; flex-direction: column; font-size: 11px; }

.its-f-divider { width: 1px; height: 30px; background: rgba(255,255,255,0.1); }

/* ==========================================
   SECT 7: EDU 1C
   ========================================== */
.edu-1c {
  background: #f8fafc;
  padding: 60px 20px;
}

.edu-container {
  max-width: 1200px;
  margin: 0 auto;
}

.edu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.edu-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.edu-brand__logo {
  background: #ffd600;
  font-weight: 900;
  padding: 4px 8px;
  border-radius: 4px;
}

.edu-brand__text {
  display: flex;
  flex-direction: column;
  font-size: 10px;
}

.edu-title-group {
  text-align: center;
}

.edu-main-title {
  font-size: 24px;
  font-weight: 900;
}

.text-red { color: #ffab00; }
.text-blue { color: #2563eb; }

.edu-subtitle-badge {
  background: #e2e8f0;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 10px;
  border-radius: 10px;
  margin-top: 5px;
}

.edu-franchise {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
}

.edu-course-banner {
  background: #0d2346;
  color: #fff;
  text-align: center;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 30px;
}

.edu-course-title {
  font-size: 28px;
  font-weight: 900;
}

.edu-course-tag {
  color: #ffd600;
  font-weight: 800;
  font-size: 14px;
  margin-top: 5px;
}

.edu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.edu-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.edu-feature-item {
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid #e2e8f0;
}

.edu-feature-icon svg {
  width: 28px;
  height: 28px;
  color: #ffab00;
}

.edu-feature-text h4 {
  font-size: 13px;
  font-weight: 800;
}

.edu-feature-text p {
  font-size: 11px;
  color: #64748b;
}

.edu-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.edu-duration-badge {
  background: #ffd600;
  padding: 15px 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  margin-bottom: 20px;
}

.edu-duration-badge span { font-size: 10px; font-weight: 800; display: block; }
.edu-duration-badge strong { font-size: 32px; font-weight: 900; color: var(--platform-color); display: block; line-height: 1; }
.edu-duration-badge small { font-size: 12px; font-weight: 800; display: block; }
.edu-duration-badge em { font-size: 9px; font-style: normal; color: var(--platform-color); }

.mock-laptop {
  width: 220px;
  background: #0f172a;
  border-radius: 8px;
  padding: 10px;
  color: #fff;
  text-align: center;
}

.laptop-screen {
  background: #1e293b;
  height: 100px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.laptop-logo { font-size: 20px; font-weight: 900; color: var(--platform-color); }
.laptop-text { font-size: 10px; font-weight: 700; }

.laptop-base {
  height: 8px;
  background: #475569;
  border-radius: 0 0 4px 4px;
  margin-top: 4px;
}

.edu-middle-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-bottom: 40px;
}

.edu-info-card {
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  display: flex;
  gap: 12px;
  align-items: center;
}

.edu-info-icon svg { width: 24px; height: 24px; }
.icon-yellow svg { color: #eab308; }
.icon-blue svg { color: #2563eb; }
.icon-gold svg { color: #d97706; }

.edu-info-content { display: flex; flex-direction: column; }
.edu-info-label { font-size: 9px; font-weight: 800; color: #64748b; }
.edu-info-val { font-size: 13px; font-weight: 900; }
.edu-info-sub { font-size: 8px; color: #94a3b8; }

.edu-contacts-box {
  background: #0d2346;
  color: #fff;
  padding: 15px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contacts-title { font-size: 9px; color: #ffd600; font-weight: 800; }

.contact-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
}

.contact-link svg { width: 14px; height: 14px; color: #ffd600; }

.contacts-schedule { font-size: 8px; color: #94a3b8; display: flex; flex-direction: column; }

.edu-footer-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 15px 25px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  flex-wrap: wrap;
  gap: 15px;
}

.edu-f-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
}

.edu-f-icon svg { width: 18px; height: 18px; color: #ffab00; }
.edu-f-divider { width: 1px; height: 20px; background: #e2e8f0; }

.edu-cta-button {
  background: #ffab00;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cta-icon svg { width: 20px; height: 20px; }
.cta-text { display: flex; flex-direction: column; font-size: 11px; }

/* ==========================================
   SECT 8: SERVICES BLOCK
   ========================================== */
.services-block {
  background: #0d2346;
  color: #fff;
  padding: 60px 20px;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-header {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 40px;
  align-items: center;
  margin-bottom: 50px;
}

.services-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.brand-logo {
  background: #ffd600;
  color: #0d2346;
  font-weight: 900;
  font-size: 20px;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-text { display: flex; flex-direction: column; }
.brand-text strong { font-size: 16px; color: #fff; }
.brand-text small { font-size: 10px; color: #94a3b8; }

.services-title {
  font-size: 32px;
  font-weight: 900;
}

.text-yellow { color: #ffd600; }

.services-badge {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  margin: 10px 0 15px;
}

.services-desc {
  font-size: 14px;
  color: #cbd5e1;
  max-width: 600px;
}

.mockup-laptop {
  background: #1e293b;
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.1);
}

.mockup-screen {
  background: #0f172a;
  height: 120px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #334155;
}

.mockup-screen-content strong { color: #ffd600; font-size: 12px; }

.mockup-keyboard {
  height: 8px;
  background: #475569;
  border-radius: 0 0 6px 6px;
  margin-top: 8px;
}

.partner-badge {
  background: #ffd600;
  color: #0d2346;
  padding: 15px;
  border-radius: 50%;
  width: 170px;
  height: 170px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: -40px auto 0;
  position: relative;
  z-index: 2;
  border: 4px solid #0d2346;
}

.stars { color: #ffab00; font-size: 10px; }
.partner-badge strong { font-size: 10px; font-weight: 900; line-height: 1.1; margin: 4px 0; }
.partner-badge span { font-size: 8px; font-weight: 700; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 25px 20px;
  display: block;
  text-decoration: none;
  color: inherit;
  scroll-margin-top: 110px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

a.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 214, 0, 0.4);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.services-block--page a.service-card:hover {
  box-shadow: 0 12px 30px rgba(15, 30, 54, 0.1);
}

.card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  position: relative;
}

.icon-box {
  width: 36px;
  height: 36px;
  background: #ffd600;
  color: #0d2346;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 14px;
  flex-shrink: 0;
}

.icon-box svg { width: 20px; height: 20px; }

.card-num {
  position: absolute;
  top: -10px;
  right: 0;
  font-size: 24px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.1);
}

.card-head h3 {
  font-size: 14px;
  font-weight: 800;
  color: #fff;
}

.service-card ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-card li {
  font-size: 12px;
  color: #cbd5e1;
  position: relative;
  padding-left: 12px;
}

.service-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #ffd600;
}

.why-us-block {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px;
}

.why-us-title {
  text-align: center;
  font-size: 20px;
  font-weight: 900;
  color: #ffd600;
  margin-bottom: 25px;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.why-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  padding: 15px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
}

.why-icon svg {
  width: 24px;
  height: 24px;
  color: #ffd600;
}

/* Превью услуг на главной: кнопка перехода на полную страницу услуг */
.services-more {
  text-align: center;
  margin: -20px 0 50px;
}

.services-more__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffd600;
  color: #0d2346;
  font-weight: 800;
  font-size: 14px;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.services-more__btn::after {
  content: "→";
}

.services-more__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 214, 0, 0.25);
}

/* Полная страница услуг: вступительный текст и CTA внизу */
.services-desc--page {
  max-width: 700px;
  margin: 0 auto 40px;
  text-align: center;
  font-size: 15px;
}

.services-page-cta {
  text-align: center;
  margin-top: 40px;
  padding-top: 35px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.services-page-cta p {
  color: #cbd5e1;
  font-size: 15px;
  margin-bottom: 16px;
}

/* Отдельная страница «Услуги»: тот же блок, но под светлый фон страницы,
   а не тёмный фон, как на превью на главной. */
.services-block--page {
  background: var(--bg-light, #f9f8ed);
  color: #111827;
  padding: 50px 20px 70px;
}

.services-block--page .services-desc--page {
  color: #4b5563;
}

.services-block--page .service-card {
  background: #ffffff;
  border: 1px solid rgba(15, 30, 54, 0.08);
  box-shadow: 0 4px 16px rgba(15, 30, 54, 0.05);
}

.services-block--page .card-head h3 {
  color: #111827;
}

.services-block--page .card-num {
  color: rgba(15, 30, 54, 0.08);
}

.services-block--page .service-card li {
  color: #4b5563;
}

.services-block--page .why-us-block {
  background: #ffffff;
  border: 1px solid rgba(15, 30, 54, 0.08);
}

.services-block--page .why-us-title {
  color: #d97706;
}

.services-block--page .why-item {
  background: rgba(15, 30, 54, 0.03);
  color: #111827;
}

.services-block--page .services-page-cta {
  border-top: 1px solid rgba(15, 30, 54, 0.1);
}

.services-block--page .services-page-cta p {
  color: #4b5563;
}

/* ==========================================
   АДАПТИВНОСТЬ (MEDIA QUERIES)
   ========================================== */

/* Планшеты и ноутбуки (<= 992px) */
@media (max-width: 992px) {
  .hero__wrapper,
  .procurement__body,
  .consultation__body,
  .s1c__main,
  .s1c-products,
  .s1c-addons,
  .its-grid,
  .edu-grid,
  .services-header {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero__right,
  .procurement__box-wrapper,
  .consultation__right,
  .s1c__workspace,
  .edu-visual,
  .services-header__right {
    order: -1;
    margin: 0 auto;
  }

  .advantages {
    grid-template-columns: repeat(2, 1fr);
  }

  .procurement__tiles {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid,
  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .edu-middle-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .b-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Смартфоны (<= 768px) */
@media (max-width: 768px) {
  .hero__title { font-size: 28px; }
  .procurement__title { font-size: 28px; }
  .consultation__title { font-size: 24px; }
  .services-title { font-size: 24px; }

  .features,
  .info-grid,
  .advantages,
  .consultation__services,
  .s1c__benefits,
  .b-list,
  .its-footer-bar,
  .edu-middle-bar,
  .why-us-grid {
    grid-template-columns: 1fr;
  }

  .procurement__footer {
    grid-template-columns: repeat(2, 1fr);
  }

  .consultation__header,
  .its-header,
  .edu-header,
  .s1c-header,
  .s1c__header {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .c-partner-divider,
  .s1c__benefit-divider,
  .its-f-divider,
  .edu-f-divider {
    display: none;
  }

  .s1c-card {
    flex-direction: column;
    align-items: center;
  }

  .s1c-addons__left {
    flex-direction: column;
  }

  .add-grid {
    grid-template-columns: 1fr;
  }

  .s1c-footer-bar,
  .s1c__footer,
  .edu-footer-bar {
    flex-direction: column;
    text-align: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* Маленькие смартфоны (<= 576px) */
@media (max-width: 576px) {
  .procurement__tiles {
    grid-template-columns: 1fr;
  }

  .procurement__footer {
    grid-template-columns: 1fr;
  }

  .css-box {
    transform: scale(0.85);
  }

  .box-83 {
    transform: scale(0.85);
  }
}

/* КНОПКА «НАВЕРХ» */
#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background-color: var(--accent-red);
  color: #ffffff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(217, 20, 36, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 999;
}

#scrollTopBtn svg {
  width: 24px;
  height: 24px;
}

#scrollTopBtn:hover {
  background-color: var(--accent-red-hover);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(217, 20, 36, 0.4);
}

#scrollTopBtn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ==========================================================================
   ШАПКА САЙТА (HEADER) И АДАПТИВ (БУРГЕР-МЕНЮ)
   ========================================================================== */

/* Фиксированная шапка */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(249, 248, 237, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-light);
  transition: var(--transition);
}

.header__container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* 1. Левый блок: Логотип + Название */
.header__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header__logo-link {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__logo {
  height: 32px;
  width: auto;
  object-fit: contain;
  display: block;
}

.header__company-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

/* 2. Центральный блок: Навигационное меню */
.header__nav {
  display: flex;
  align-items: center;
}

.header__menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header__menu-link {
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 4px 0;
  transition: var(--transition);
}

.header__menu-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 3px;
  background-color: var(--bg-yellow);
  border-radius: 2px;
  transition: var(--transition);
}

.header__menu-link:hover {
  color: var(--accent-red);
}

.header__menu-link:hover::after {
  width: 100%;
}

/* 3. Правый блок: Язык + Консультация + Бургер */
.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Кнопка переключения языка */
.header__lang {
  position: relative;
  display: inline-block;
}

.header__lang-btn {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 7px 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-primary);
  outline: none;
  transition: var(--transition);
}

.header__lang-btn:hover {
  border-color: var(--accent-red);
  color: var(--accent-red);
}

.header__lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  width: 100%;
  min-width: 65px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  box-shadow: var(--shadow-hover);
  list-style: none;
  margin: 0;
  padding: 4px 0;
  z-index: 100;
}

.header__lang.is-open .header__lang-dropdown {
  display: block;
}

.header__lang.is-open .header__lang-icon {
  transform: rotate(180deg);
  transition: transform 0.2s ease;
}

.header__lang-option {
  width: 100%;
  background: none;
  border: none;
  padding: 6px 0;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  transition: var(--transition);
}

.header__lang-option:hover,
.header__lang-option.active {
  color: var(--accent-red);
  background-color: var(--bg-main);
}

/* Кнопка "Консультация" */
.header__consult-btn {
  background-color: var(--accent-red);
  color: #ffffff;
  border: none;
  outline: none;
  border-radius: 8px;
  padding: 9px 20px;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(217, 20, 36, 0.2);
  transition: var(--transition);
	white-space: nowrap;
	text-align: center;
}

.header__consult-btn:hover {
  background-color: var(--accent-red-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(217, 20, 36, 0.3);
}

.header__consult-btn:active {
  transform: translateY(0);
}

/* 4. Бургер-кнопка (скрыта на ПК) */
.header__burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.header__burger span {
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* Анимация крестика для бургера при открытии */
.header__burger.is-active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.header__burger.is-active span:nth-child(2) {
  opacity: 0;
}
.header__burger.is-active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}


/* ==========================================================================
   АДАПТИВ (МОБИЛЬНАЯ ВЕРСИЯ)
   ========================================================================== */
@media (max-width: 992px) {

  .header__burger {
    display: flex; /* Показываем бургер */
  }

  /* Выпадающее мобильное меню */
  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--bg-card);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
    padding: 80px 24px 30px 24px;
    transition: right 0.3s ease-in-out;
    z-index: 999;
    flex-direction: column;
    align-items: flex-start;
  }

  .header__nav.is-open {
    right: 0;
    overflow: auto;
  }

  .header__menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
  }

  .header__menu-link {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .header__container {
    padding: 10px 16px;
  }
  
  .header__consult-btn {
    padding: 7px 12px;
    font-size: 0.8rem;
  }
  
  .header__lang-btn {
    padding: 6px 10px;
  }

  .header__company-name {
    display: none;
  }
}

.contacts-section {
  padding: 40px 0 80px 0;
}

.contacts-status {
  display: inline-flex;
  align-items: center;
  background-color: rgba(40, 167, 69, 0.1);
  color: #28a745;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
}

.status-dot {
  width: 8px;
  height: 8px;
  background-color: #28a745;
  border-radius: 50%;
  margin-right: 8px;
  animation: pulse 2s infinite;
}

.contacts-subtitle {
  color: #6c757d;
  font-size: 16px;
  margin-bottom: 40px;
}

.contacts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.contact-card {
  background: #ffffff;
  border: 1px solid rgba(15, 30, 54, 0.08);
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.contact-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

/* Цвета иконки под бренд */
.phone-icon { background: #fff8e6; color: #ffd700; }
.telegram-icon { background: #eef6fc; color: #0088cc; }
.whatsapp-icon { background: #eef9f2; color: #25d366; }
.office-icon { background: #fdf0f2; color: #d91424; }

.contact-card__type {
  font-size: 12px;
  font-weight: 700;
  color: #6c757d;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.contact-card__value {
  font-size: 18px;
  font-weight: 800;
  color: #0f1e36;
  margin-bottom: 8px;
}

.contact-card__desc {
  font-size: 13px;
  color: #6c757d;
}

@keyframes pulse {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

/* ==========================================
   ПОДВАЛ СAЙТА (FLEXBOX ВЕРСИЯ)
   ========================================== */

.footer {
  background-color: var(--bg-card);
  border-top: 1px solid var(--border-color);
  color: var(--text-primary);
  padding-top: 48px;
  padding-bottom: 24px;
}

.footer__container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
}

/* Контейнер колонок на Flexbox */
.footer__row {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer__col {
  flex: 1 1 200px; /* Колонки гибкие, минимальная ширина 200px */
}

.footer__col--about {
  flex: 1.3 1 260px; /* Первая колонка с логотипом чуть шире */
}

/* Описание и логотип */
.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  font-size: 18px;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.footer__logo .logo__icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer__logo .logo__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer__logo .logo__highlight {
  color: var(--accent-red);
}

.footer__description {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 280px;
}

/* Заголовки колонок */
.footer__title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-primary);
  margin-bottom: 20px;
}

/* Списки */
.footer__list,
.footer__contacts {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color var(--transition);
}

.footer__link:hover {
  color: var(--accent-red);
}

/* Иконки контактов */
.footer__contacts li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-muted);
}

.contact-icon {
  width: 18px;
  height: 18px;
  color: var(--accent-red);
  flex-shrink: 0;
}

/* Нижняя полоса */
.footer__bottom {
  width: 100%;
  border-top: 1px solid var(--border-color);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--text-muted);
}

.footer__copyright,
.footer__info {
  margin: 0;
}

/* ==========================================
   АДАПТИВНОСТЬ
   ========================================== */

@media (max-width: 768px) {
  .footer__row {
    gap: 32px;
  }

  .footer__col {
    flex: 1 1 40%; /* По 2 колонки в ряд на планшетах */
  }

  .footer__col--about {
    flex: 1 1 100%; /* Описание во всю ширину сверху */
  }
}

@media (max-width: 480px) {
  .footer {
    padding-top: 36px;
  }

  .footer__col {
    flex: 1 1 100%; /* На мобилках всё строго в 1 колонку */
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* Секция шапки страницы на всю ширину */
.page-header-section {
  width: 100%;
  background-color: var(--bg-light, #f9f8ed); /* Использует вашу общую световую палитру */
  padding: 30px 0;
  border-bottom: 1px solid rgba(15, 30, 54, 0.08);
  margin-top: 80px; /* Отступ под фиксированную шапку сайта */
}

/* Общий центрирующий контейнер (если он у вас уже есть под другим классом, можно использовать его) */
.page-header-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Стили для хлебных крошек */
.breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0 0 12px 0;
  font-size: 14px;
}

.breadcrumbs__item:not(:last-child):after {
  content: "/";
  margin: 0 8px;
  color: #6c757d;
}

.breadcrumbs__link {
  color: #0f1e36;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs__link:hover {
  color: #d91424; /* Ваш акцентный цвет */
}

.breadcrumbs__current {
  color: #6c757d;
}

/* Стили для H1 */
.page-title {
  font-size: 32px;
  font-weight: 800;
  color: #0f1e36;
  margin: 0;
  letter-spacing: -0.5px;
}

@media (max-width: 768px) {
  .page-header-section {
    padding: 20px 0;
    margin-top: 70px;
  }
  .page-title {
    font-size: 26px;
  }
}

/* ==========================================
   МОДАЛЬНОЕ ОКНО (АДАПТИВ И ГИБКИЙ СКРОЛЛ)
   ========================================== */

body.modal-open {
  overflow: hidden;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
  overflow-x: hidden;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  -webkit-overflow-scrolling: touch;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
}

/* Фиксированный фон, который перекрывает весь viewport */
.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 30, 54, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1;
}

.modal__window {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 520px;
  margin: auto; /* Авто-центрирование по вертикали при скролле */
  background-color: var(--bg-card);
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(20px) scale(0.95);
  transition: var(--transition);
  border: 1px solid var(--border-color);
  box-sizing: border-box;
}

.modal.is-open .modal__window {
  transform: translateY(0) scale(1);
}

.modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: transparent;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

@media (max-width: 480px) {
	
	.modal__close {
		top: 5px;
		right: 5px;
	}
}

.modal__close:hover {
  background-color: var(--bg-main);
  color: var(--text-primary);
}

.modal__close svg {
  width: 20px;
  height: 20px;
}

.modal__header {
  margin-bottom: 24px;
}

.modal__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.2;
}

.modal__subtitle {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.4;
}

.modal__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  background-color: var(--bg-main);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 15px;
  color: var(--text-primary);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  box-sizing: border-box;
}

.form-input:focus {
  border-color: var(--accent-red);
  box-shadow: 0 0 0 3px rgba(217, 20, 36, 0.1);
  background-color: #ffffff;
}

/* Исправленный Селект со стрелкой */
.form-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

/* Текстовое поле */
.form-textarea {
  resize: none;
  min-height: 90px;
  max-height: 220px;
  overflow-y: auto;
  line-height: 1.5;
  scrollbar-width: thin;
  scrollbar-color: var(--border-color) transparent;
}

.form-textarea::-webkit-scrollbar {
  width: 4px;
}

.form-textarea::-webkit-scrollbar-thumb {
  background-color: var(--border-color);
  border-radius: 4px;
}

.modal__submit-btn {
  width: 100%;
  padding: 14px;
  margin-top: 8px;
  background-color: var(--accent-red);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.modal__submit-btn:hover {
  background-color: var(--accent-red-hover);
  box-shadow: 0 6px 16px rgba(217, 20, 36, 0.25);
}

.modal__submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-status {
  font-size: 14px;
  text-align: center;
  padding: 8px;
  border-radius: 6px;
  display: none;
}

.form-status.success {
  display: block;
  background-color: rgba(40, 167, 69, 0.1);
  color: #28a745;
}

.form-status.error {
  display: block;
  background-color: rgba(217, 20, 36, 0.1);
  color: var(--accent-red);
}

/* Мобильная адаптивность */
@media (max-width: 576px) {
  .modal {
    padding: 12px;
  }

  .modal__window {
    padding: 24px 20px;
    border-radius: 12px;
  }

  .modal__title {
    font-size: 20px;
  }
}

.feedback-benefits-section {
  padding: 40px 0 80px 0;
}

.feedback-benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 992px) {
  .feedback-benefits-grid {
    grid-template-columns: 1fr;
  }
}

.section-title {
  font-size: 32px;
  font-weight: 800;
  color: #0f1e36;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  color: #6c757d;
  font-size: 16px;
  margin-bottom: 30px;
}

/* Карточка формы */
.feedback-card {
  background: #ffffff;
  border: 1px solid rgba(15, 30, 54, 0.08);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 576px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-group {
  margin-bottom: 20px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  background-color: #fcfcfc;
  border: 1px solid rgba(15, 30, 54, 0.12);
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #0f1e36;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: #ffd700;
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.15);
}

.form-textarea {
  resize: vertical;
}

.submit-btn {
  width: 100%;
  background-color: #1a56db; /* Ваш синий цвет кнопки */
  color: #ffffff;
  border: none;
  border-radius: 12px;
  padding: 16px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background-color 0.2s ease, transform 0.1s ease;
  box-shadow: 0 4px 12px rgba(26, 86, 219, 0.25);
}

.submit-btn:hover {
  background-color: #1446be;
}

.submit-btn:active {
  transform: scale(0.98);
}

.form-note {
  text-align: center;
  font-size: 13px;
  color: #6c757d;
  margin-top: 16px;
}

/* Колонка преимуществ */
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
}

.benefit-item {
  background: #ffffff;
  border: 1px solid rgba(15, 30, 54, 0.08);
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.benefit-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fast-icon { background: #fff8e6; color: #ffd700; }
.reliable-icon { background: #eef6fc; color: #1a56db; }
.transparent-icon { background: #fdf0f2; color: #d91424; }
.risk-icon { background: #eef9f2; color: #25d366; }

.benefit-name {
  font-size: 16px;
  font-weight: 700;
  color: #0f1e36;
  margin-bottom: 2px;
}

.benefit-desc {
  font-size: 13px;
  color: #6c757d;
}

/* Блок расписания */
.schedule-box {
  background: #ffffff;
  border: 1px solid rgba(15, 30, 54, 0.08);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.schedule-title {
  font-size: 15px;
  font-weight: 700;
  color: #0f1e36;
  margin-bottom: 14px;
}

.schedule-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #6c757d;
  padding: 8px 0;
  border-bottom: 1px solid rgba(15, 30, 54, 0.05);
}

.schedule-row:last-of-type {
  border-bottom: none;
  margin-bottom: 14px;
}

.schedule-time {
  font-weight: 600;
  color: #0f1e36;
}

.schedule-off {
  color: #6c757d;
}

.schedule-online-status {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  color: #28a745;
  border-top: 1px solid rgba(15, 30, 54, 0.05);
  padding-top: 14px;
}

.contacts-map-section {
  max-width: 1200px;
  margin: 0px auto;
  width: 100%;
  margin-bottom: 40px;
}

.map-container {
  width: 100%;
  height: 450px;
  border-radius: 12px;
  overflow: hidden;
  background-color: #f9f9f9; /* Светлый фон-заглушка пока грузится карта */
  border: 1px solid #eaeaea;
}

/* Адаптивность для телефонов */
@media (max-width: 768px) {
  .map-container {
      height: 350px;
  }
}

.s1c__cta-btn.shiny-btn {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    user-select: none;
}

/* Основной контейнер секции */
.s1c-hero-section {
    padding: 40px 0px;
    color: #222222;
}

.s1c-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* Колонки (замена гридов через flex с адаптивным flex-basis) */
.s1c-hero-content,
.s1c-hero-code {
    flex: 1 1 500px;
    min-width: 300px;
}

/* Типографика и бейдж */
.s1c-badge {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: #2563eb;
    margin-bottom: 16px;
}

.s1c-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
    color: #111827;
}

.accent-blue {
    color: #2563eb;
}

.accent-gold {
    color: #d97706;
}

.s1c-hero-desc {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 30px;
}

/* Кнопки */
.s1c-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

/* Статистика */
.s1c-hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.stat-item .stat-number {
    font-family: 'Syne', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: #d97706;
    display: block;
}

.stat-item .stat-text {
    font-size: 0.85rem;
    color: #6b7280;
    margin-top: 2px;
}

/* Блок кода (светлое оформление) */
.code-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.code-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 14px;
    margin-bottom: 16px;
    border-bottom: 1px solid #e2e8f0;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.dot.red { background-color: #ef4444; }
.dot.yellow { background-color: #f59e0b; }
.dot.green { background-color: #10b981; }

.code-filename {
    font-size: 0.85rem;
    color: #64748b;
    margin-left: 8px;
}

.code-body {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #0f172a;
    overflow-x: auto;
}

.code-line.comment { color: #94a3b8; }
.keyword { color: #db2777; font-weight: bold; }
.func { color: #2563eb; }
.variable { color: #0f172a; }
.string { color: #b45309; }

.indent-1 { padding-left: 20px; }
.indent-2 { padding-left: 40px; }

.cursor {
    animation: blink 1s infinite;
    color: #d97706;
    font-weight: bold;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Мобильная адаптивность */
@media (max-width: 768px) {
    .s1c-hero-section {
        padding: 40px 15px;
    }
    .s1c-hero-actions {
        flex-direction: column;
    }
    .s1c-hero-stats {
        gap: 20px;
        justify-content: space-between;
    }
}

@media (max-width: 480px) {
    .s1c-hero-content,
    .s1c-hero-code {
        min-width: 0;
        flex-basis: 100%;
    }
}

.site-services-section {
    padding: 40px 0px;
    position: relative;
    z-index: 10;
}

.site-services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.site-services-header {
    text-align: center;
    margin-bottom: 60px;
}

.site-services-subtitle {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: #2563eb;
    margin-bottom: 12px;
}

.site-services-title {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 900;
    color: #111827;
}

.site-accent-color {
    color: #d97706;
}

/* Сетка карточек на Flexbox */
.site-services-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.service-item-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 30px;
    flex: 1 1 calc(33.333% - 32px);
    min-width: 280px;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.service-card-featured {
    background: rgba(245, 158, 11, 0.04);
    border-color: rgba(245, 158, 11, 0.2);
}

/* Иконки */
.service-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-inline-svg {
    width: 22px;
    height: 22px;
}

.service-theme-blue { background-color: rgba(37, 99, 235, 0.1); color: #2563eb; }
.service-theme-amber { background-color: rgba(217, 119, 6, 0.1); color: #d97706; }
.service-theme-amber-strong { background-color: rgba(217, 119, 6, 0.18); color: #d97706; }
.service-theme-emerald { background-color: rgba(16, 185, 129, 0.1); color: #10b981; }
.service-theme-purple { background-color: rgba(147, 51, 234, 0.1); color: #9333ea; }
.service-theme-rose { background-color: rgba(244, 63, 94, 0.1); color: #f43f5e; }

/* Тексты */
.service-item-heading {
    font-size: 1.25rem;
    font-weight: 900;
    color: #111827;
    margin-bottom: 12px;
}

.service-item-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Теги */
.service-tags-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-badge {
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 50px;
    font-weight: 500;
}

.service-badge-blue { background-color: rgba(37, 99, 235, 0.08); color: #2563eb; }
.service-badge-amber { background-color: rgba(217, 119, 6, 0.08); color: #d97706; }
.service-badge-emerald { background-color: rgba(16, 185, 129, 0.08); color: #059669; }
.service-badge-purple { background-color: rgba(147, 51, 234, 0.08); color: #7e22ce; }
.service-badge-rose { background-color: rgba(244, 63, 94, 0.08); color: #e11d48; }

.service-action-btn {
    width: 100%;
    justify-content: center;
    font-size: 0.9rem;
    padding: 10px 20px;
    margin-top: 10px;
}

/* Адаптив */
@media (max-width: 900px) {
    .service-item-card {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 600px) {
    .service-item-card {
        flex: 1 1 100%;
    }
    .site-services-section {
        padding: 50px 15px;
    }
}

.site-integration-section {
    padding: 40px 0px;
    position: relative;
    z-index: 10;
}

.site-divider {
    height: 1px;
    background-color: #e2e8f0;
    margin-bottom: 0;
}

.site-integration-container {
    max-width: 900px;
    margin: 0 auto;
    padding-top: 80px;
}

.site-integration-header {
    text-align: center;
    margin-bottom: 60px;
}

.site-integration-title {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 900;
    color: #111827;
}

.site-accent-color {
    color: #d97706;
}

.site-integration-subtitle {
    font-size: 1rem;
    color: #4b5563;
    margin-top: 12px;
}

/* Сетка карточек на Flexbox (по 4 в ряд на ПК, по 2 на мобилках) */
.site-integration-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.site-integration-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px 16px;
    text-align: center;
    flex: 1 1 calc(25% - 16px);
    min-width: 180px;
    max-width: 210px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.site-integration-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border-color: rgba(217, 119, 6, 0.3);
}

/* Иконки */
.site-integration-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px auto;
}

.integration-svg {
    width: 24px;
    height: 24px;
}

/* Цветовые темы иконок */
.integration-theme-amber { background-color: rgba(217, 119, 6, 0.1); color: #d97706; }
.integration-theme-blue { background-color: rgba(37, 99, 235, 0.1); color: #2563eb; }
.integration-theme-emerald { background-color: rgba(16, 185, 129, 0.1); color: #10b981; }
.integration-theme-purple { background-color: rgba(147, 51, 234, 0.1); color: #9333ea; }
.integration-theme-rose { background-color: rgba(244, 63, 94, 0.1); color: #f43f5e; }

/* Тексты карточек */
.site-integration-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
}

.site-integration-desc {
    font-size: 0.75rem;
    color: #6b7280;
    line-height: 1.4;
}

/* Адаптивность */
@media (max-width: 800px) {
    .site-integration-card {
        flex: 1 1 calc(50% - 12px);
        max-width: none;
    }
}

@media (max-width: 480px) {
    .site-integration-card {
        flex: 1 1 100%;
    }
    .site-integration-section {
        padding: 50px 15px;
    }
}

/* Стили секции Hero страницы курсов */
.site-courses-hero {
    position: relative;
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 24px;
    padding-right: 24px;
    overflow: hidden;
}

.site-courses-orb {
    position: absolute;
    width: 500px;
    height: 500px;
    background-color: rgba(244, 63, 94, 0.08);
    top: -10%;
    right: -10%;
    border-radius: 50%;
    pointer-events: none;
}

.site-courses-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.site-courses-badge {
    color: #fb7185;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-size: 0.875rem;
    display: inline-block;
}

.site-courses-title {
    font-size: 3rem;
    font-weight: 900;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .site-courses-title {
        font-size: 4.5rem;
    }
}

.site-courses-title-muted {
    color: #9ca3af;
}

.site-courses-desc {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 42rem;
    margin: 0 auto 2.5rem auto;
    line-height: 1.6;
}

.site-courses-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.site-courses-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #374151;
}

.site-courses-feature-icon {
    color: #34d399;
}

.site-courses-btn {
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Адаптив для секции Hero курсов */
@media (max-width: 768px) {
    .site-courses-hero {
        padding-top: 120px;
        padding-bottom: 40px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .site-courses-title {
        font-size: 2.5rem;
        margin-top: 0.75rem;
        margin-bottom: 1rem;
    }

    .site-courses-desc {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .site-courses-features {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 2rem;
    }

    .site-courses-orb {
        width: 300px;
        height: 300px;
        top: -5%;
        right: -10%;
    }
}

/* Секция списка курсов */
.site-courses-section {
    padding: 40px 0px;
    position: relative;
    z-index: 10;
}

.site-courses-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.site-courses-section-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 4rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .site-courses-section-title {
        font-size: 3rem;
    }
}

.site-courses-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .site-courses-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Карточки курсов */
.course-card {
    background: #ffffff;
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    border: 1px solid #f3f4f6;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.course-card:hover {
    transform: translateY(-5px);
}

.course-card.featured {
    border-color: #f59e0b;
}

.site-card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: #f59e0b;
    color: #0f172a;
    font-size: 0.75rem;
    font-weight: 900;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    z-index: 2;
}

.site-card-line {
    height: 8px;
    width: 100%;
}

.site-card-line-amber {
    background: linear-gradient(to right, #f59e0b, #b45309);
}

.site-card-line-blue {
    background: linear-gradient(to right, #3b82f6, #1d4ed8);
}

.site-card-line-rose {
    background: linear-gradient(to right, #f43f5e, #be123c);
}

.site-card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.site-card-icon-box {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.site-icon-amber {
    background-color: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.site-icon-blue {
    background-color: rgba(59, 130, 246, 0.1);
    color: #60a5fa;
}

.site-icon-rose {
    background-color: rgba(244, 63, 94, 0.1);
    color: #fb7185;
}

.site-card-title {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.site-card-meta {
    color: #9ca3af;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.site-card-desc {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.site-card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.site-card-list-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #374151;
}

.site-list-icon-amber { color: #f59e0b; }
.site-list-icon-blue { color: #60a5fa; }
.site-list-icon-rose { color: #fb7185; }

.site-card-footer {
    border-top: 1px solid #f3f4f6;
    padding-top: 1.5rem;
    margin-top: auto;
}

.site-card-price-label {
    font-size: 0.75rem;
    color: #9ca3af;
    margin-bottom: 0.25rem;
}

.site-card-price {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.site-card-price-unit {
    color: #9ca3af;
    font-size: 1rem;
    font-weight: 400;
}

.site-card-btn {
    width: 100%;
    justify-content: center;
    font-size: 0.875rem;
}

.site-card-svg {
    width: 28px;
    height: 28px;
    stroke-width: 2;
}

.site-list-check {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* Мобильный адаптив для карточек */
@media (max-width: 768px) {
    .site-courses-section {
        padding: 40px 16px;
    }
    .site-card-content {
        padding: 1.5rem;
    }
}

/* Секция "Почему наши курсы работают" */
.site-why-section {
    padding: 40px 0px;
    position: relative;
    z-index: 10;
}

.site-why-container {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 80px;
}

.site-why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .site-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.site-why-title {
    font-size: 2.25rem;
    font-weight: 900;
    margin-bottom: 2rem;
    line-height: 1.2;
    color: #111827;
}

@media (min-width: 768px) {
    .site-why-title {
        font-size: 3rem;
    }
}

.site-why-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.site-why-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.site-why-number {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f172a;
    font-weight: 900;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.site-why-item-title {
    font-weight: 900;
    margin-bottom: 0.25rem;
    color: #111827;
}

.site-why-item-desc {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Правая карточка результатов */
.site-stats-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
}

.site-stats-title {
    font-weight: 900;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #111827;
}

.site-stats-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.site-stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-stat-label {
    font-size: 0.875rem;
    color: #6b7280;
}

.site-stat-value {
    font-weight: 900;
}

.text-amber { color: #f59e0b; }
.text-emerald { color: #10b981; }
.text-blue { color: #3b82f6; }

.site-progress-track {
    height: 6px;
    background-color: #f3f4f6;
    border-radius: 9999px;
    overflow: hidden;
    margin-top: -0.5rem;
    margin-bottom: 0.5rem;
}

.site-progress-bar {
    height: 100%;
    border-radius: 9999px;
}

.bg-amber { background-color: #f59e0b; }
.bg-emerald { background-color: #10b981; }
.bg-blue { background-color: #3b82f6; }

/* Блок набора */
.site-batch-box {
    background-color: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 1rem;
    padding: 1rem;
    margin-bottom: 1rem;
}

.site-batch-heading {
    color: #d97706;
    font-weight: 900;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.site-batch-text {
    color: #6b7280;
    font-size: 0.75rem;
}

.site-batch-highlight {
    color: #111827;
    font-weight: 700;
}

.site-stats-btn {
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
}

/* Секция FAQ */
.site-faq-section {
    padding: 40px 0px;
    position: relative;
    z-index: 10;
}

.site-faq-container {
    max-width: 1024px; /* max-w-3xl */
    margin: 0 auto;
}

.site-faq-title {
    font-size: 2.25rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 3rem;
    color: #111827;
}

@media (min-width: 768px) {
    .site-faq-title {
        font-size: 2.5rem;
    }
}

.site-faq-list {
    display: flex;
    flex-direction: column;
}

.site-faq-item {
    padding: 20px 0;
    cursor: pointer;
    border-bottom: 1px solid #f3f4f6;
}

.site-faq-question-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.site-faq-question {
    font-weight: 700;
    color: #111827;
}

.site-faq-icon {
    width: 20px;
    height: 20px;
    color: #f59e0b;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.site-faq-item.is-open .site-faq-icon {
    transform: rotate(-180deg);
}

/* Класс для открытого состояния аккордеона (если управляется через JS класс .active) */
.site-faq-item.active .site-faq-icon {
    transform: rotate(180deg);
}

.site-faq-answer-text {
    color: #6b7280;
    font-size: 0.875rem;
    padding-top: 0.75rem;
    line-height: 1.5;
}

.site-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.c_accountant_individual {
  background-color: var(--accent-red);
  color: #ffffff;
  border: none;
  outline: none;
  border-radius: 8px;
  padding: 9px 20px;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(217, 20, 36, 0.2);
  transition: var(--transition);
  white-space: nowrap;
}

.c_accountant_individual:hover {
  background-color: var(--accent-red-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(217, 20, 36, 0.3);
}

.c_accountant {
  background-color: var(--accent-red);
  color: #ffffff;
  border: none;
  outline: none;
  border-radius: 8px;
  padding: 9px 20px;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(217, 20, 36, 0.2);
  transition: var(--transition);
  white-space: nowrap;
}

.c_accountant:hover {
  background-color: var(--accent-red-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(217, 20, 36, 0.3);
}

.c_glavbuh_pro {
  background-color: var(--accent-red);
  color: #ffffff;
  border: none;
  outline: none;
  border-radius: 8px;
  padding: 9px 20px;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(217, 20, 36, 0.2);
  transition: var(--transition);
  white-space: nowrap;
}

.c_glavbuh_pro:hover {
  background-color: var(--accent-red-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(217, 20, 36, 0.3);
}

.free_lesson__btn {
  background-color: var(--accent-red);
  color: #ffffff;
  border: none;
  outline: none;
  border-radius: 8px;
  padding: 9px 20px;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(217, 20, 36, 0.2);
  transition: var(--transition);
  white-space: nowrap;
}

.free_lesson__btn:hover {
  background-color: var(--accent-red-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(217, 20, 36, 0.3);
}

.booking-button {
  background-color: var(--accent-red);
  color: #ffffff;
  border: none;
  outline: none;
  border-radius: 8px;
  padding: 9px 20px;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(217, 20, 36, 0.2);
  transition: var(--transition);
  white-space: nowrap;
}

.booking-button:hover {
  background-color: var(--accent-red-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(217, 20, 36, 0.3);
}

/* ==========================================
   СЕКЦИЯ: ОТЗЫВЫ КЛИЕНТОВ (ГЛАВНАЯ СТРАНИЦА)
   ========================================== */
.reviews-section {
  background: #f8fafc;
  padding: 80px 20px;
}

.reviews-container {
  max-width: 1200px;
  margin: 0 auto;
}

.reviews-slider {
  max-width: 900px;
  margin: 0 auto;
}

.reviews-header {
  text-align: center;
  margin-bottom: 45px;
}

.reviews-title {
  font-size: 32px;
  font-weight: 900;
  color: #111827;
}

.reviews-title .text-accent {
  color: #d97706;
}

.reviews-subtitle {
  max-width: 650px;
  margin: 12px auto 0;
  color: #6b7280;
  font-size: 15px;
  line-height: 1.6;
}

.reviews-slider {
  display: flex;
  align-items: center;
  gap: 16px;
}

.reviews-track-wrapper {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
}

.reviews-track {
  display: flex;
  transition: transform 0.45s ease;
}

.review-card {
  flex: 0 0 100%;
  min-width: 0;
  box-sizing: border-box;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.review-card__stars {
  color: #f59e0b;
  font-size: 18px;
  letter-spacing: 3px;
  margin-bottom: 18px;
}

.review-card__text {
  font-size: 17px;
  line-height: 1.7;
  color: #374151;
  max-width: 620px;
  margin: 0 auto 26px;
  font-style: italic;
}

.review-card__author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.review-card__avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #0d2346;
  color: #ffd600;
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-card__meta {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.review-card__meta strong {
  font-size: 14px;
  color: #111827;
}

.review-card__meta span {
  font-size: 12px;
  color: #6b7280;
}

.reviews-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #e2e8f0;
  background: #fff;
  color: #0d2346;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.reviews-arrow svg {
  width: 20px;
  height: 20px;
}

.reviews-arrow:hover {
  background: #0d2346;
  color: #ffd600;
  transform: translateY(-1px);
}

.reviews-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
}

.reviews-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d1d5db;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.2s ease;
}

.reviews-dot.is-active {
  width: 22px;
  border-radius: 4px;
  background: #d97706;
}

@media (max-width: 768px) {
  .reviews-section {
    padding: 50px 15px;
  }

  .reviews-title {
    font-size: 24px;
  }

  .review-card {
    padding: 26px 20px;
  }

  .review-card__text {
    font-size: 15px;
  }

  .reviews-arrow {
    width: 36px;
    height: 36px;
  }

  .reviews-slider {
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .reviews-arrow {
    display: none;
  }
}

.c-contact__icon {
    font-size: 0;
}