:root {
  --primary-color: #3b71fe;
  --text-dark: #1d253c;
  --text-gray: #6b7280;
  --bg-light: #f4f7fe;
  --white: #ffffff;
  --green: #27ae60;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.5;
  color: var(--text-dark);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1 {
  font-size: 56px;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 24px;
}

h2 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 122%;
  color: #0f172a;
}

p {
  color: var(--text-gray);
  font-size: clamp(14px, 1.5vw, 16px);
}

/* Buttons */
.btn {
  padding: 14px 28px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(59, 113, 254, 0.3);
}

.btn-primary:hover {
  background-color: #2a5cdb;
  transform: translateY(-1px);
}

/* Top Bar */
.top-bar {
  padding: 12px 0;
  border-bottom: 1px solid #e5e7eb;
  font-size: 13px;
  color: var(--text-gray);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-info {
  display: flex;
  gap: 24px;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.socials {
  display: flex;
  gap: 8px;
}

.social-icon {
  width: 24px;
  height: 24px;
  background: #eee; /* Место под иконку */
  border-radius: 4px;
}

.top-phone {
  font-weight: 700;
  color: var(--text-dark);
  text-decoration: none;
}

.top-email {
  color: var(--primary-color);
  text-decoration: none;
}

/* Header */
.header {
  padding: 20px 0;
  margin-bottom: 40px;
  transition: all 0.3s ease;
  background: #fff;
  position: relative;
  z-index: 1000;
}

.header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 12px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 0;
}

.top-bar {
  transition: all 0.3s ease;
}

.top-bar-hidden {
  margin-top: -50px;
  opacity: 0;
  pointer-events: none;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background-color: var(--green);
  border-radius: 8px;
  /* Место под SVG логотип */
}

.logo-text b {
  display: block;
  font-size: 18px;
  line-height: 1;
}

.logo-text span {
  font-size: 12px;
  color: var(--text-gray);
}

.menu {
  display: flex;
  list-style: none;
  gap: 32px;
}

.mobile-menu-header,
.mobile-menu-footer {
  display: none;
}

.menu a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 15px;
  transition: var(--transition);
}

.menu a:hover,
.menu a.active {
  color: var(--primary-color);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.burger span {
  width: 100%;
  height: 2px;
  background-color: var(--text-dark);
  transition: var(--transition);
}

@media (max-width: 1024px) {
  .burger {
    display: flex;
  }

  .menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 360px;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    margin: 0;
    padding: 100px 40px 40px;
    overflow-y: auto;
  }

  .menu.active {
    right: 0;
  }

  .mobile-menu-header,
  .mobile-menu-footer {
    display: block;
    width: 100%;
  }

  .mobile-menu-header {
    margin-bottom: 40px;
  }
  .mobile-menu-header img {
    height: 32px;
  }

  .menu li {
    width: 100%;
    border-bottom: 1px solid #f3f4f6;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
  }

  .menu.active li {
    opacity: 1;
    transform: translateX(0);
  }

  .menu li:nth-child(2) {
    transition-delay: 0.1s;
  }
  .menu li:nth-child(3) {
    transition-delay: 0.15s;
  }
  .menu li:nth-child(4) {
    transition-delay: 0.2s;
  }
  .menu li:nth-child(5) {
    transition-delay: 0.25s;
  }
  .menu li:nth-child(6) {
    transition-delay: 0.3s;
  }
  .menu li:nth-child(7) {
    transition-delay: 0.35s;
  }

  .menu li a {
    display: block;
    padding: 18px 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    width: 100%;
    text-decoration: none;
  }

  .mobile-menu-footer {
    margin-top: auto;
    padding-top: 40px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .mobile-phone {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
  }

  .mobile-email {
    font-size: 16px;
    color: var(--primary-color);
    text-decoration: none;
  }

  .burger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .burger.active span:nth-child(2) {
    opacity: 0;
  }

  .burger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .header .btn-primary {
    display: none;
  }
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 999;
}

.menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Hero */
.hero {
  margin-bottom: 80px;
}

.hero .container-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero-list {
  list-style: none;
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 500;
}

.hero-list-icon {
  width: 24px;
  height: 24px;
  background: var(--bg-light);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Место под иконку */
}

.hero-reviews {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.review-avatars {
  display: flex;
}

.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--white);
  margin-left: -8px;
  background: #ddd;
}

.avatar:first-child {
  margin-left: 0;
}

.review-info {
  font-size: 13px;
}

.stars {
  color: #f2c94c;
  margin-bottom: 2px;
}

/* Hero Image Side */
.hero-image-block {
  position: relative;
  background: var(--bg-light);
  border-radius: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-main-img {
  max-width: 100%;
  height: auto;
  /* Место под картинку техники */
}

.badge {
  position: absolute;
  background: var(--white);
  padding: 10px 16px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
}

.badge-eco {
  top: 30px;
  left: 20px;
}

.badge-time {
  bottom: 30px;
  right: 20px;
}

.badge-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

/* Features Bar */
.features-bar {
  background: var(--bg-light);
  padding: 30px 0;
  margin-bottom: 80px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.features-bar .features-grid {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 767px) {
  .features-bar .features-grid {
    grid-template-columns: 1fr;
  }
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-text b {
  display: block;
  font-size: 16px;
}

.feature-text span {
  font-size: 13px;
  color: var(--text-gray);
}

/* B2B Section */
.b2b-section {
  margin-bottom: 80px;
}

.text-blue {
  color: #3b71fe;
}

.text-blue-light {
  color: #60a5fa;
}

.mt-16 {
  margin-top: 16px;
}

.mb-12 {
  margin-bottom: 12px;
}

/* Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 17, 41, 0.8);
  backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  overflow: auto;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: #fff;
  width: 100%;
  max-width: 480px;
  border-radius: 32px;
  padding: 48px;
  position: relative;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.modal-overlay.active .modal-container {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: #f5f8fd;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #667085;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: #eef2ff;
  color: #3b71fe;
}

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #101828;
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  background: #f9fafb;
  border: 1px solid #f2f4f7;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 14px;
  color: #101828;
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: #3b71fe;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(59, 113, 254, 0.1);
}

.form-note {
  font-size: 11px;
  color: #98a2b3;
  text-align: center;
  line-height: 1.4;
}

.form-note a {
  color: #3b71fe;
  text-decoration: none;
}

@media (max-width: 500px) {
  .modal-container {
    padding: 32px 24px;
    border-radius: 24px;
    margin: 20px;
  }
}

/* Geo Info Section */
.geo-info-card {
  background: #fff;
  border: 1px solid #f2f4f7;
  border-radius: 24px;
  padding: 40px;
  display: flex;
  gap: 32px;
  align-items: flex-start;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.02);
}

.geo-icon-box {
  width: 64px;
  height: 64px;
  background: #f5f8fd;
  color: #3b71fe;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.geo-title {
  font-size: 20px;
  font-weight: 700;
  color: #101828;
  margin-bottom: 12px;
}

.geo-desc {
  font-size: 14px;
  color: #667085;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 900px;
}

.geo-features {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.geo-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #101828;
}

@media (max-width: 768px) {
  .geo-info-card {
    flex-direction: column;
    padding: 24px;
    gap: 20px;
  }
  .geo-features {
    flex-direction: column;
    gap: 12px;
  }
}
.importance-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 40px;
  align-items: center;
}

.importance-image-box img {
  box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.05);
}

.importance-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.importance-feature-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.importance-feature-item:hover {
  background: #f5f8fd;
}

.feature-icon-circle {
  width: 44px;
  height: 44px;
  background: #f5f8fd;
  color: #3b71fe;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.importance-feature-item:hover .feature-icon-circle {
  background: #3b71fe;
  color: #fff;
}

.feature-text h4 {
  font-size: 16px;
  font-weight: 700;
  color: #101828;
  margin-bottom: 4px;
}

.feature-text p {
  font-size: 13px;
  color: #667085;
  margin: 0;
}

@media (max-width: 992px) {
  .importance-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .importance-image-box {
    order: 2;
  }
}
.buyback-options .options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
}

.option-card {
  background: #fff;
  border-radius: 32px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  border: 1px solid #f2f4f7;
  transition: all 0.3s ease;
  position: relative;
}

.option-card.featured {
  border: 2px solid #3b71fe;
  box-shadow: 0px 12px 32px rgba(59, 113, 254, 0.1);
  transform: scale(1.02);
  z-index: 2;
}

.option-badge {
  position: absolute;
  top: 24px;
  left: 40px;
  background: #3b71fe;
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.option-icon-box {
  width: 56px;
  height: 56px;
  background: #f5f8fd;
  color: #3b71fe;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.option-card.featured .option-icon-box {
  margin-top: 24px;
}

.option-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #101828;
}

.option-subtitle {
  font-size: 14px;
  color: #667085;
  margin-bottom: 24px;
  min-height: 42px;
}

.option-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  border-top: 1px solid #f2f4f7;
  padding-top: 24px;
  flex-grow: 1;
}

.option-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
  color: #475467;
}

.option-features li span {
  color: #10b981;
  font-weight: bold;
}

@media (max-width: 1100px) {
  .buyback-options .options-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  .option-card.featured {
    transform: none;
  }
}
.pricing-factors-section {
  background-color: #051129;
  background-image: url("../img/factors-bg.png");
  background-size: cover;
  background-position: center;
}

.factors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.factor-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 32px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.factor-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.factor-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.factor-icon-box {
  width: 44px;
  height: 44px;
  background: #3b71fe;
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(59, 113, 254, 0.3);
}

.factor-number {
  font-size: 24px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.05);
  letter-spacing: 1px;
}

.factor-card h3 {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.factor-card p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 24px;
  min-height: 42px;
}

.factor-influence {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.influence-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.3);
}

.influence-value {
  font-size: 12px;
  font-weight: 700;
}

.factor-progress {
  height: 6px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  border-radius: 10px;
}

.bar-green {
  background: #10b981;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

.bar-blue {
  background: #3b71fe;
  box-shadow: 0 0 10px rgba(59, 113, 254, 0.5);
}

.bar-blue-light {
  background: #60a5fa;
  box-shadow: 0 0 10px rgba(96, 165, 250, 0.5);
}

@media (max-width: 1024px) {
  .factors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .factors-grid {
    grid-template-columns: 1fr;
  }
  .factor-card {
    padding: 24px;
  }
}

.justify-center {
  justify-content: center;
}

.tag-blue {
  background: rgba(59, 113, 254, 0.1);
  color: #3b71fe;
}

.tag-green {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}

.btn-green {
  background-color: #10b981;
  color: #fff;
}

.btn-green:hover {
  background-color: #059669;
}

.btn-outline-white {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.section-tag {
  display: inline-block;
  background: #eef2ff;
  color: var(--primary-color);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.section-title {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 16px;
}

.section-desc {
  max-width: 600px;
  margin-bottom: 40px;
}

.b2b-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.b2b-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  border: 1px solid #f0f0f0;
}

.b2b-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.b2b-card-img {
  height: 200px;
  background: #e5e7eb; /* Заглушка под фото */
  position: relative;
}

.b2b-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.b2b-card-content {
  padding: 24px;
}

.b2b-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.b2b-card-icon {
  width: 32px;
  height: 32px;
  background: var(--bg-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.b2b-card h3 {
  font-size: 18px;
  font-weight: 700;
}

.b2b-card p {
  font-size: 14px;
  line-height: 1.5;
}

/* B2B CTA Banner */
.b2b-cta {
  background: var(--primary-color);
  border-radius: 16px;
  padding: 32px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--white);
}

.b2b-cta-text h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.b2b-cta-text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.btn-white {
  background: var(--white);
  color: var(--primary-color);
}

.btn-white:hover {
  background: #f8faff;
}

/* Buyback Section */
.buyback-section {
  background-color: var(--bg-light);
  padding: 80px 0;
  margin-bottom: 80px;
}

.buyback-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.buyback-card {
  background: var(--white);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  border: 1px solid transparent;
}

.buyback-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(59, 113, 254, 0.1);
}

.buyback-card-img {
  width: 100%;
  height: 160px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  background: #eee;
}

.buyback-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.buyback-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.buyback-card p {
  font-size: 13px;
  color: var(--text-gray);
  margin-bottom: 16px;
  flex-grow: 1;
}

.buyback-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.buyback-link:hover {
  gap: 8px;
}

/* Process Section */
.process-section {
  background: radial-gradient(circle at top right, #1e293b, #0f172a);
  color: var(--white);
  padding: 80px 0;
  margin-bottom: 80px;
  position: relative;
  overflow: hidden;
  background: url("../img/process-bg.jpg") center / cover no-repeat;
}

/* Заглушка под паттерн дорожек */
.process-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.process-steps {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
  margin-bottom: 60px;
  position: relative;
}

/* Линия между шагами */
.process-steps::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 1;
}

.step-item {
  position: relative;
  z-index: 2;
  flex: 1;
  text-align: left;
  padding-right: 20px;
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 20px;
  box-shadow: 0 0 20px rgba(59, 113, 254, 0.6);
}

.step-item h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.step-item p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.process-divider {
  text-align: center;
  margin-bottom: 60px;
}

.divider-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Logistics Block */
.logistics-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.logistics-content h2 {
  font-size: 36px;
  margin-bottom: 24px;
  line-height: 1.2;
  color: var(--white);
}

.logistics-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0;
}

.log-feat-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px;
  border-radius: 12px;
}

.log-feat-card b {
  display: block;
  color: var(--green);
  font-size: 16px;
  margin-bottom: 4px;
}

.log-feat-card span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.btn-green {
  background: var(--green);
  color: var(--white);
}

.btn-green:hover {
  background: #219150;
}

/* Documents Section */
.docs-section {
  padding: 80px 0;
  margin-bottom: 80px;
}

.docs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.doc-card {
  background: var(--bg-light);
  padding: 32px 24px;
  border-radius: 20px;
  transition: var(--transition);
}

.doc-card:hover {
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transform: translateY(-5px);
}

.doc-icon {
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.doc-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

.doc-card p {
  font-size: 13px;
  line-height: 1.5;
}

/* Stats Section */
.stats-section {
  background: #0a0f1a url("../img/bg-dark.jpg") no-repeat center center/cover;
  color: var(--white);
  padding: 100px 0;
  text-align: center;
  position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-value {
  font-size: 72px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 20px;
  text-shadow: 0 0 30px rgba(59, 113, 254, 0.4);
}

.stat-line {
  width: 40px;
  height: 3px;
  margin-bottom: 16px;
  border-radius: 2px;
}

.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: lowercase;
}

/* Why Us Section */
.why-section {
  padding: 80px 0;
  margin-bottom: 80px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 24px;
}

.why-item {
  display: flex;
  flex-direction: column;
}

.why-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.why-item h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.why-item p {
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.5;
}

/* Services Section */
.services-section {
  background-color: var(--bg-light);
  padding: 80px 0;
  margin-bottom: 80px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.service-img {
  height: 200px;
  background: #eee;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-content p {
  font-size: 13px;
  color: var(--text-gray);
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Prices Section */
.prices-section {
  padding: 80px 0;
  margin-bottom: 80px;
}

.prices-card {
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  padding: 20px 40px;
  margin: 0 auto;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #f0f0f0;
}

.price-row:last-child {
  border-bottom: none;
}

.price-name {
  font-weight: 600;
  font-size: 16px;
}

.price-value {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 16px;
}

.price-note {
  text-align: center;
  margin-top: 24px;
  font-size: 12px;
  color: var(--text-gray);
}

/* Licenses Section */
.licenses-section {
  margin-bottom: 80px;
}

.licenses-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.license-card {
  background: var(--white);
  border-radius: 20px;
  padding: 20px;
  transition: var(--transition);
}

.license-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.license-preview {
  width: 100%;
  height: 180px;
  background: #eef2ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.license-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}

.license-card p {
  font-size: 12px;
  color: var(--text-gray);
  margin-bottom: 16px;
}

.license-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Eco Section */
.eco-section {
  background: url("http://ecoskupka.santpl3b.beget.tech/wp-content/uploads/2026/07/section·dark.jpg")
    center / cover no-repeat;
  color: var(--white);
  padding: 80px 0;
  margin-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.eco-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.eco-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 32px;
  transition: var(--transition);
}

.eco-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
}

.eco-icon {
  width: 48px;
  height: 48px;
  background: var(--green);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 0 20px rgba(39, 174, 96, 0.4);
}

.eco-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.eco-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

/* Clients Section */
.clients-section {
  padding: 80px 0;
  margin-bottom: 80px;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.client-card {
  background: var(--white);
  border-radius: 12px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.client-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.client-card img {
  max-width: 100%;
  max-height: 100%;
  filter: grayscale(1);
  opacity: 0.6;
  transition: var(--transition);
}

.client-card:hover img {
  filter: grayscale(0);
  opacity: 1;
}

/* Reviews Section */
.reviews-section {
  background-color: var(--bg-light);
  padding: 80px 0;
  margin-bottom: 80px;
}

.reviews-platforms {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.platform-card {
  background: var(--white);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.platform-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.platform-logo {
  width: 40px;
  height: 40px;
  background: #ffebe7;
  border-radius: 8px;
  display: grid;
  place-items: center;
}

.platform-text b {
  display: block;
  font-size: 15px;
}

.platform-text span {
  font-size: 12px;
  color: var(--text-gray);
}

.platform-rating {
  text-align: right;
}

.rating-value {
  font-size: 24px;
  font-weight: 800;
  display: block;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.review-card {
  background: var(--white);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.review-author {
  display: flex;
  gap: 12px;
}

.author-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #eee;
}

.author-name b {
  display: block;
  font-size: 14px;
}

.author-name span {
  font-size: 12px;
  color: var(--text-gray);
}

.review-tag {
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
}

.review-text {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 16px;
  flex-grow: 1;
}

.review-footer {
  font-size: 11px;
  color: var(--text-gray);
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  margin-bottom: 80px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
}

.faq-item {
  background: var(--white);
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  margin-bottom: 0;
  transition: all 0.3s ease;
  overflow: hidden;
}

.faq-item.active {
  border-color: #f0f0f0;
}

.faq-header {
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-question {
  font-weight: 500;
  font-size: 14px;
  color: #1d253c;
}

.faq-icon {
  width: auto;
  height: auto;
  background: transparent;
  color: #d0d5dd;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 300;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: transparent;
  color: #d0d5dd;
}

.faq-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.faq-item.active .faq-body {
  grid-template-rows: 1fr;
}

.faq-content {
  overflow: hidden;
}

.faq-answer {
  padding: 0 24px 16px;
  font-size: 14px;
  color: #667085;
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  background: #0a0f1a url("../img/cta-bg.jpg") no-repeat center center/cover;
  color: var(--white);
  padding: 100px 0;
  text-align: center;
}

.cta-box {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px;
  margin-top: 40px;
}

.cta-note {
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* About Text Section */
.about-text-section {
  background-color: var(--bg-light);
  padding: 80px 0;
}

.about-text-content {
  max-width: 1000px;
}

.about-text-content p {
  margin-bottom: 24px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-dark);
  opacity: 0.8;
}

.about-text-content p:last-child {
  margin-bottom: 0;
}

/* Footer */
.footer {
  background-color: #0a0f1a;
  color: var(--white);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-logo-block p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 20px;
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 24px;
}

.footer-menu {
  list-style: none;
}

.footer-menu li {
  margin-bottom: 12px;
}

.footer-menu a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  transition: var(--transition);
}

.footer-menu a:hover {
  color: var(--white);
}

.footer-contacts {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-contacts p {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-contacts a {
  color: var(--white);
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 40px;
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}

/* Breadcrumbs */
.breadcrumbs {
  padding: 20px 0;
  font-size: 13px;
  color: var(--text-gray);
}

.breadcrumbs a {
  text-decoration: none;
  color: var(--text-gray);
  transition: var(--transition);
}

.breadcrumbs a:hover {
  color: var(--primary-color);
}

.breadcrumbs span {
  color: var(--text-dark);
  font-weight: 500;
}

/* Catalog Hero */
.catalog-hero {
  padding: 60px 0 80px;
  background: url("../img/eco-pagehero.jpg") center / cover no-repeat;
  position: relative;
  overflow: hidden;
}

.catalog-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(59, 113, 254, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 113, 254, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.catalog-hero h1 {
  margin-bottom: 20px;
}

.catalog-hero-desc {
  max-width: 600px;
  margin-bottom: 32px;
  font-size: 18px;
  color: var(--text-gray);
}

/* Pricing Factors */
.factors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.factor-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 24px;
  position: relative;
}

.factor-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.factor-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(59, 113, 254, 0.4);
}

.factor-number {
  font-size: 24px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.1);
}

.factor-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.factor-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
}

.factor-influence {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  margin-bottom: 8px;
  text-transform: lowercase;
}

.influence-label {
  color: rgba(255, 255, 255, 0.4);
}
.influence-value {
  font-weight: 700;
}

.factor-progress {
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  border-radius: 2px;
}

/* Pricing Options */
.options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.option-card {
  background: var(--white);
  border: 1px solid #f0f0f0;
  border-radius: 24px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}

.option-card.featured {
  border: 2px solid var(--primary-color);
  box-shadow: 0 20px 40px rgba(59, 113, 254, 0.1);
  transform: scale(1.05);
  z-index: 2;
}

.option-tag {
  position: absolute;
  top: -12px;
  left: 32px;
  background: var(--primary-color);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.option-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--primary-color);
}

.option-card.featured .option-icon {
  background: var(--primary-color);
  color: var(--white);
}

.option-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.option-card p {
  font-size: 14px;
  color: var(--text-gray);
  margin-bottom: 24px;
}

.option-list {
  list-style: none;
  margin-bottom: 32px;
  flex-grow: 1;
}

.option-list li {
  font-size: 13px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.option-list li::before {
  content: "✓";
  color: var(--green);
  font-weight: 700;
}

.btn-outline {
  background: transparent;
  border: 1px solid #e5e7eb;
  color: var(--text-dark);
}

.btn-outline:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

/* Importance List */
.importance-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.importance-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.importance-item {
  display: flex;
  gap: 20px;
}

.importance-icon {
  width: 40px;
  height: 40px;
  background: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary-color);
}

.importance-text h4 {
  font-size: 16px;
  margin-bottom: 4px;
}

.importance-text p {
  font-size: 13px;
  color: var(--text-gray);
}

/* Service Steps Grid */
.service-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.service-step-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.service-step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.step-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.step-card-icon {
  width: 40px;
  height: 40px;
  background: var(--bg-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
}

.step-card-number {
  font-size: 24px;
  font-weight: 800;
  color: #f0f0f0;
}

.service-step-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-step-card p {
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.5;
}

/* Adaptive Service Steps */
@media (max-width: 1024px) {
  .service-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .service-steps-grid {
    grid-template-columns: 1fr;
  }
}

/* Why Category Cards */
.why-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.why-cat-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.why-cat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.why-cat-card.blue::before {
  background: var(--primary-color);
}
.why-cat-card.green::before {
  background: var(--green);
}

.why-cat-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--white);
}

.why-cat-card.blue .why-cat-icon {
  background: var(--primary-color);
}
.why-cat-card.green .why-cat-icon {
  background: var(--green);
}

.why-cat-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.why-cat-card p {
  font-size: 12px;
  color: var(--text-gray);
}

/* Adaptive Why Category */
@media (max-width: 1024px) {
  .why-cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .why-cat-grid {
    grid-template-columns: 1fr;
  }
}

/* Adaptive Importance */
@media (max-width: 992px) {
  .importance-block {
    grid-template-columns: 1fr;
  }
  .importance-block img {
    order: -1;
  }
}

/* Adaptive Options */
@media (max-width: 1024px) {
  .options-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .option-card.featured {
    transform: none;
  }
}

/* Adaptive Factors */
@media (max-width: 1024px) {
  .factors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .factors-grid {
    grid-template-columns: 1fr;
  }
}

/* Adaptive Catalog */
@media (max-width: 768px) {
  .catalog-hero {
    padding: 40px 0 60px;
  }
}

/* Adaptive Footer */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Adaptive CTA & About */
@media (max-width: 768px) {
  .cta-section {
    padding: 60px 20px;
  }
  .cta-box {
    padding: 30px 20px;
  }
}

/* Adaptive Reviews & FAQ */
@media (max-width: 1024px) {
  .reviews-platforms,
  .reviews-grid,
  .faq-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .reviews-platforms,
  .reviews-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

/* Adaptive Eco & Clients */
@media (max-width: 1024px) {
  .eco-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .eco-grid {
    grid-template-columns: 1fr;
  }
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Adaptive Prices & Licenses */
@media (max-width: 992px) {
  .licenses-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .prices-card {
    padding: 10px 20px;
  }
  .price-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

@media (max-width: 576px) {
  .licenses-grid {
    grid-template-columns: 1fr;
  }
}

/* Adaptive Why & Services */
@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* Adaptive Docs & Stats */
@media (max-width: 1024px) {
  .docs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-value {
    font-size: 56px;
  }
}

@media (max-width: 576px) {
  .docs-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* Adaptive Process */
@media (max-width: 992px) {
  .process-steps {
    flex-wrap: wrap;
    gap: 40px;
  }
  .step-item {
    flex: 0 0 calc(50% - 20px);
  }
  .process-steps::after {
    display: none;
  }
  .logistics-block {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .step-item {
    flex: 0 0 100%;
  }
  .logistics-features {
    grid-template-columns: 1fr;
  }
}

/* Adaptive Buyback */
@media (max-width: 1200px) {
  .buyback-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .buyback-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .buyback-grid {
    grid-template-columns: 1fr;
  }
}

/* Adaptive B2B */
@media (max-width: 1024px) {
  .b2b-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .section-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .b2b-grid {
    grid-template-columns: 1fr;
  }
  .b2b-cta {
    flex-direction: column;
    text-align: center;
    gap: 24px;
    padding: 30px 20px;
  }
}

/* Adaptive */
@media (max-width: 1024px) {
  h1 {
    font-size: 40px;
  }
  .hero .container {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }
  .hero-image-block {
    order: -1;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* About Page Specific Styles */
.grid {
  display: grid;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.gap-60 {
  gap: 60px;
}

.gap-16 {
  gap: 16px;
}

.align-center {
  align-items: center;
}

.flex {
  display: flex;
}

.py-80 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.mb-24 {
  margin-bottom: 24px;
}

.mb-32 {
  margin-bottom: 32px;
}

.mb-48 {
  margin-bottom: 48px;
}

.mb-60 {
  margin-bottom: 60px;
}

.text-white {
  color: #fff;
}

.opacity-60 {
  opacity: 0.6;
}

.section-tag {
  display: inline-block;
  padding: 6px 12px;
  background-color: #eef2ff;
  color: #3b71fe;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #101828;
}

.about-hero h1 {
  font-size: 48px;
  line-height: 1.2;
  color: #101828;
}

.about-hero p {
  font-size: 18px;
  line-height: 1.6;
}

.hero-image-container {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
}

.hero-main-img {
  width: 100%;
  display: block;
  border-radius: 32px;
}

.hero-badge {
  position: absolute;
  background: #fff;
  padding: 10px 16px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.08);
  font-weight: 600;
  font-size: 14px;
}

.badge-top {
  top: 24px;
  left: 24px;
}

.badge-bottom {
  bottom: 24px;
  right: 24px;
}

.badge-icon {
  width: 24px;
  height: 24px;
  background: #3b71fe;
  color: #fff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-bottom .badge-icon {
  background: #10b981;
}

.about-who .who-text {
  max-width: 800px;
  font-size: 16px;
  line-height: 1.7;
  color: #475467;
}

.feature-card {
  background: #fff;
  padding: 32px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.05);
}

.feature-icon-box {
  width: 48px;
  height: 48px;
  background: #3b71fe;
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 4px 12px rgba(59, 113, 254, 0.3);
}

.feature-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #101828;
}

.feature-content p {
  font-size: 14px;
  color: #667085;
  margin: 0;
}

@media (max-width: 992px) {
  .about-hero h1 {
    font-size: 36px;
  }
  .gap-60 {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .py-80 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .section-title {
    font-size: 28px;
  }
  .hero-badge {
    padding: 8px 12px;
    font-size: 12px;
  }
}

/* Team Section */
.team-section .team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  padding: 12px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-img-wrapper {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 16px;
}

.team-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-info h3 {
  font-size: 18px;
  font-weight: 700;
  color: #101828;
  margin-bottom: 4px;
  padding: 0 8px;
}

.team-info p {
  font-size: 13px;
  color: #3b71fe;
  font-weight: 500;
  margin: 0;
  padding: 0 8px 8px;
}

@media (max-width: 1024px) {
  .team-section .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .team-section .team-grid {
    grid-template-columns: 1fr;
  }
}

/* History Section */
.history-section {
  background-color: #051129;
  background-image: url("../img/history-bg.png"); /* Если есть фон с линиями */
  background-size: cover;
  background-position: center;
  position: relative;
}

.history-timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  position: relative;
}

.history-timeline::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 1;
}

.history-item {
  position: relative;
  z-index: 2;
}

.history-year {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  margin-bottom: 24px;
  position: relative;
}

.history-year::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: inherit;
  border-radius: 50%;
  box-shadow: 0 0 15px inherit;
}

.year-blue {
  background: #3b71fe;
  box-shadow: 0 0 15px rgba(59, 113, 254, 0.5);
}

.year-green {
  background: #10b981;
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.5);
}

.history-content h4 {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
}

.history-content p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .history-timeline {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 20px;
  }
  .history-timeline::before {
    display: none;
  }
}

@media (max-width: 600px) {
  .history-timeline {
    grid-template-columns: 1fr;
  }
}

.about-hero .container {
  grid-template-columns: 1fr;
}

.bg-light {
  background: #f5f8fd;
}

.section-title.text-white {
  color: #fff;
}

.justify-center {
  justify-content: center;
}

.cta-section .section-title {
  margin-bottom: 16px;
}

.cta-section p {
  margin-bottom: 16px;
}

/* Stats Section */
.stats-section {
  background-color: #051129;
  position: relative;
  overflow: hidden;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-value {
  font-size: clamp(40px, 4vw, 64px);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 16px;
  position: relative;
}

.value-blue {
  color: #fff;
  text-shadow: 0 0 20px rgba(59, 113, 254, 0.8);
}

.value-green {
  color: #fff;
  text-shadow: 0 0 20px rgba(16, 185, 129, 0.8);
}

.stat-line {
  width: 40px;
  height: 2px;
  margin-bottom: 16px;
}

.line-blue {
  background: #3b71fe;
}

.line-green {
  background: #10b981;
}

.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

/* CTA Section */
.cta-section {
  background-color: #051129;
  background-image: url("../img/cta-bg.jpg");
  background-size: cover;
  background-position: center;
}

@media (max-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 24px;
  }
}

.w-100 {
  width: 100%;
}

.mx-8 {
  margin-left: 8px;
  margin-right: 8px;
}

.py-20 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.py-60 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.max-w-600 {
  max-width: 600px;
}

.z-2 {
  z-index: 2;
}

/* Contacts Page */
.grid-contacts {
  grid-template-columns: 1fr 400px;
  gap: 20px;
}

.hero-bg-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-image: url("../img/contacts-pattern.svg");
  background-repeat: no-repeat;
  background-position: right center;
  opacity: 0.1;
  z-index: -1;
}

.contact-method-card {
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  display: flex;
  gap: 20px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.03);
  border: 1px solid #f2f4f7;
}

.method-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-blue {
  background: #3b71fe;
  color: #fff;
}

.icon-green {
  background: #10b981;
  color: #fff;
}

.method-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: #98a2b3;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.method-value {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #101828;
  text-decoration: none;
  margin-bottom: 4px;
}

.method-desc {
  font-size: 12px;
  color: #667085;
  margin: 0;
}

.form-card {
  background: #fff;
  padding: 40px;
  border-radius: 32px;
  box-shadow: 0px 12px 32px rgba(0, 0, 0, 0.06);
  border: 1px solid #f2f4f7;
}

.form-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.form-features {
  list-style: none;
  padding: 0;
}

.form-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
  color: #475467;
}

.feature-icon {
  width: 24px;
  height: 24px;
  background: #ecfdf3;
  color: #10b981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@media (max-width: 1100px) {
  .grid-contacts {
    grid-template-columns: 1fr;
  }
  .contacts-form-block {
    order: -1;
  }
}

.h-100 {
  height: 100%;
}

.object-cover {
  object-fit: cover;
}

.rounded-32 {
  border-radius: 32px;
}

.mb-8 {
  margin-bottom: 8px;
}

.gap-x-60 {
  column-gap: 60px;
}

.gap-y-32 {
  row-gap: 32px;
}

/* Map Section */
.map-container-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.map-image-box {
  width: 100%;
  height: 500px;
  border-radius: 32px;
  overflow: hidden;
}

.map-info-card {
  position: absolute;
  right: 40px;
  background: #fff;
  padding: 40px;
  border-radius: 24px;
  width: 380px;
  box-shadow: 0px 12px 32px rgba(0, 0, 0, 0.08);
}

.map-card-icon {
  width: 40px;
  height: 40px;
  background: #3b71fe;
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.map-info-card h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 24px;
}

.map-details {
  list-style: none;
  padding: 0;
  margin-bottom: 32px;
}

.map-details li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 13px;
  color: #475467;
}

.map-details li svg {
  color: #3b71fe;
  flex-shrink: 0;
}

/* Requisites Section */
.requisites-card {
  background: #fff;
  padding: 48px;
  border-radius: 32px;
  border: 1px solid #f2f4f7;
}

.req-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: #98a2b3;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.req-value {
  font-size: 15px;
  font-weight: 600;
  color: #101828;
  padding-bottom: 12px;
  border-bottom: 1px solid #f2f4f7;
}

@media (max-width: 1024px) {
  .map-container-wrapper {
    flex-direction: column;
    gap: 24px;
  }
  .map-image-box {
    height: 350px;
  }
  .map-info-card {
    position: static;
    width: 100%;
    padding: 30px;
  }
}

.gap-12 {
  gap: 12px;
}

.flex-wrap {
  flex-wrap: wrap;
}

/* Blog Page */
.filter-btn {
  padding: 8px 20px;
  background: #fff;
  border: 1px solid #f2f4f7;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #475467;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: #3b71fe;
  color: #fff;
  border-color: #3b71fe;
}

.featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0px 12px 32px rgba(0, 0, 0, 0.04);
}

.featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-content {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
}

.post-tag {
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
}

.tag-blue-light {
  background: #eef2ff;
  color: #3b71fe;
}

.tag-green-light {
  background: #ecfdf3;
  color: #10b981;
}

.post-date {
  font-size: 12px;
  color: #98a2b3;
}

.post-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  color: #10b981;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.post-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease;
}

.post-card:hover {
  transform: translateY(-5px);
}

.post-img {
  height: 200px;
}

.post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.post-body h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 12px;
  color: #101828;
}

.read-more {
  font-size: 14px;
  font-weight: 700;
  color: #3b71fe;
  text-decoration: none;
}

.page-num,
.page-arrow {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 10px;
  text-decoration: none;
  color: #475467;
  font-weight: 600;
  border: 1px solid #f2f4f7;
  transition: all 0.3s ease;
}

.page-num.active,
.page-num:hover {
  background: #3b71fe;
  color: #fff;
  border-color: #3b71fe;
}

@media (max-width: 1024px) {
  .featured-card {
    grid-template-columns: 1fr;
  }
  .featured-content {
    padding: 40px;
  }
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

.gap-24 {
  gap: 24px;
}

.mb-40 {
  margin-bottom: 40px;
}

.blog-hero {
  margin-bottom: 60px;
  background: url("../img/eco-pagehero.jpg") center / cover no-repeat;
}

.blog-content {
  margin-bottom: 60px;
}

.gap-8 {
  gap: 8px;
}

.mb-16 {
  margin-bottom: 16px;
}

/* Custom Why Us Cards for Single Product */
.why-card {
  background: #fff;
  border-radius: 24px;
  padding: 32px 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.why-card-line {
  width: 32px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 2px;
  margin-bottom: 24px;
}

.why-card.border-green .why-card-line {
  background: var(--green);
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.why-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: var(--primary-color);
  color: #fff;
  box-shadow: 0 8px 20px rgba(59, 113, 254, 0.35);
}

.why-card.border-green .why-card-icon {
  background: var(--green);
  color: #fff;
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.35);
}
.why-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #101828;
}

.why-card p {
  font-size: 14px;
  color: #667085;
  line-height: 1.5;
}

.text-center {
  text-align: center;
  margin: auto;
}

@media (max-width: 767px) {
  .hero-product-grid {
    grid-template-columns: 1fr;
  }
}

/* Single Article Styles */
.max-w-800 {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.article-hero {
  text-align: left;
}

.article-category {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 16px;
}

.article-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  color: #101828;
  letter-spacing: -0.02em;
  max-width: 800px;
}
.article-meta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  font-size: 14px;
  color: #667085;
  flex-wrap: wrap;
}
.author-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.author-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}

.author-name {
  font-weight: 600;
  color: #344054;
}

.meta-separator {
  color: #d0d5dd;
}

.article-main-image-wrapper {
  width: 100%;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
}

.article-main-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 500px;
}

.article-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  align-items: start;
}

.article-grid.no-sidebar {
  grid-template-columns: 1fr;
  max-width: 800px;
  margin: 0 auto;
}

.article-content-col {
  min-width: 0;
}

.article-entry-content {
  font-size: 16px;
  line-height: 1.7;
  color: #475467;
}

.article-entry-content p {
  margin-bottom: 24px;
}

.article-entry-content h2.article-h2 {
  font-size: 24px;
  font-weight: 700;
  color: #101828;
  margin-top: 48px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  scroll-margin-top: 100px; /* Отступ сверху при скролле к якорю */
}

.h2-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #eff4ff;
  color: #2f6bff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 8px;
  flex-shrink: 0;
}

.article-entry-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: #101828;
  margin-top: 32px;
  margin-bottom: 16px;
}

.article-entry-content ul,
.article-entry-content ol {
  margin-bottom: 24px;
  padding-left: 24px;
}

.article-entry-content li {
  margin-bottom: 8px;
}

.article-entry-content blockquote {
  background: #eff4ff;
  border-radius: 16px;
  padding: 20px 24px;
  margin: 32px 0;
  border-left: none;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  position: relative;
}

.article-entry-content blockquote::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-color: #2f6bff;
  flex-shrink: 0;
  border-radius: 6px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m21.73 18-8-14a2 2 0 0 0-3.48 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3Z'/%3E%3Cline x1='12' y1='9' x2='12' y2='13'/%3E%3Cline x1='12' y1='17' x2='12.01' y2='17'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
}

.article-entry-content blockquote p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #1d2939;
  font-weight: 500;
}

/* Sidebar & Table of Contents */
.sticky-sidebar {
  position: sticky;
  top: 100px;
}

.toc-card {
  background: #f8f9fc;
  border-radius: 24px;
  padding: 24px;
  border: 1px solid #f2f4f7;
}

.toc-title {
  font-size: 12px;
  font-weight: 800;
  color: #667085;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.toc-link {
  display: flex;
  gap: 10px;
  text-decoration: none;
  color: #475467;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 500;
  transition: color 0.2s ease;
}

.toc-link:hover {
  color: #2f6bff;
}

.toc-number {
  font-weight: 700;
  color: #2f6bff;
  flex-shrink: 0;
}

.toc-text {
  min-width: 0;
}

@media (max-width: 1024px) {
  .article-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .article-sidebar-col {
    order: -1; /* На планшетах и мобильных содержание показываем перед статьей */
  }

  .sticky-sidebar {
    position: static;
  }
}

@media (max-width: 767px) {
  .article-title {
    font-size: 28px;
  }

  .article-hero {
    padding-top: 24px;
  }

  .article-main-image-wrapper {
    border-radius: 16px;
  }
}

.serv-main {
  background: #000;
}

.serv-list {
  margin-bottom: 60px;
}

.serv-list-label {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 12px;
  color: #2f6bff;
  margin-bottom: 22px;
  background: rgba(47, 107, 255, 0.12);
  max-width: fit-content;
  border-radius: 99px;
  padding: 8px 14px;
}

.serv-list .title__section {
  margin-bottom: 22px;
}

.serv-list-desc {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 161%;
  color: #59697f;
  margin-bottom: 35px;
  max-width: 460px;
}

.serv-list-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}

.serv-list-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 10px 26px 0 rgba(30, 58, 138, 0.06);
  background: var(--brand-bg);
  border: 1px solid #e6ebf2;
  border-radius: 18px;
  padding: 28px;
  transition: 0.3s ease;
  .icon {
    border-radius: 12px;
    width: 54px;
    height: 54px;
    background: #f1f4f9;
    display: grid;
    place-items: center;
  }

  .title {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 19px;
    color: #0f172a;
  }
  .desc {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    color: #59697f;
  }
  .bottom {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
  }

  .label {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 13px;
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 99px;
    padding: 7px 12px;
  }

  .link {
    position: absolute;
    z-index: 1;
    inset: 0;
  }

  span {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 14px;
    color: #2f6bff;
    display: flex;
    align-items: center;
    gap: 5px;
  }

  @media (any-hover: hover) {
    &:hover {
      transform: translateY(-5px);
    }
  }
}

.serv-futures {
  background: #f5f8fd;
  padding-block: 60px;
}

.serv-futures-label {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 12px;
  color: #2f6bff;
  margin-bottom: 22px;
  background: rgba(47, 107, 255, 0.12);
  max-width: fit-content;
  border-radius: 99px;
  padding: 8px 14px;
}

.serv-futures .title__section {
  margin-bottom: 22px;
}

.serv-futures-desc {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 161%;
  color: #59697f;
  margin-bottom: 35px;
  max-width: 460px;
}

.serv-futures-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.serv-futurs-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid #e6ebf2;
  border-radius: 16px;
  padding: 26px;
  padding-top: 35px;
  position: relative;
  box-shadow: 0 10px 28px 0 rgba(30, 58, 138, 0.06);
  background: var(--brand-bg);

  &:before {
    content: "";
    position: absolute;
    left: 28px;
    top: 20px;
    width: 30px;
    height: 4px;
    border-radius: 10px;
    background: #2f6bff;
  }
  .icon {
    border-radius: 12px;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    box-shadow: 0 0 20px 0 rgba(47, 107, 255, 0.5);
    background: #2f6bff;
  }

  .title {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 17px;
    color: #0f172a;
  }
  .desc {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 13px;
    color: #59697f;
  }

  &:nth-child(even) {
    .icon {
      box-shadow: 0 0 20px 0 rgba(16, 185, 129, 0.5);
      background: #10b981;
    }

    &:before {
      background: #10b981;
    }
  }
}
