:root {
  --brand-accent: #e95149;
  --brand-accent-dark: #cf3f38;
  --brand-ink: #111920;
  --brand-ink-soft: #1b252d;
  --brand-text: #1b252d;
  --brand-muted: #66727c;
  --brand-surface: #ffffff;
  --brand-surface-soft: #f4f6f7;
  --brand-line: #e3e8eb;
  --brand-radius-sm: 10px;
  --brand-radius: 18px;
  --brand-radius-lg: 28px;
  --brand-shadow-sm: 0 10px 30px rgba(17, 25, 32, 0.07);
  --brand-shadow: 0 24px 60px rgba(17, 25, 32, 0.12);
  --brand-container: 1200px;
  --brand-font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

body,
#mainCarousel *,
.achievements *,
.products *,
.about *,
.advantages *,
.partners *,
.consultation-banner * {
  font-family: var(--brand-font) !important;
}

body {
  color: var(--brand-text);
  background: var(--brand-surface-soft);
}

body :focus-visible {
  outline: 3px solid rgba(233, 81, 73, 0.55);
  outline-offset: 4px;
}

.button {
  min-height: 52px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: var(--brand-radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  color: #fff;
  transform: translateY(-2px);
}

.button-primary {
  background: var(--brand-accent);
  box-shadow: 0 12px 26px rgba(233, 81, 73, 0.28);
}

.button-primary:hover {
  background: var(--brand-accent-dark);
  box-shadow: 0 16px 32px rgba(233, 81, 73, 0.34);
}

.button-secondary {
  background: transparent;
  border-color: var(--brand-line);
  color: var(--brand-text);
}

.button-secondary:hover {
  border-color: var(--brand-accent);
  color: var(--brand-accent);
}

.button-on-dark {
  border-color: rgba(255, 255, 255, 0.42);
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.button-on-dark:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.14);
}

/* Первый экран */
#mainCarousel {
  position: relative;
  height: max(720px, 100svh);
  min-height: 720px;
  overflow: hidden;
  background: var(--brand-ink);
}

#mainCarousel .carousel-inner,
#mainCarousel .carousel-item {
  height: 100%;
}

#mainCarousel .carousel-inner {
  position: relative;
}

#mainCarousel .carousel-item {
  position: relative;
  display: none;
}

#mainCarousel .carousel-item.active {
  display: block;
}

#mainCarousel .carousel-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 15, 20, 0.92) 0%, rgba(8, 15, 20, 0.72) 48%, rgba(8, 15, 20, 0.28) 78%, rgba(8, 15, 20, 0.2) 100%),
    linear-gradient(0deg, rgba(8, 15, 20, 0.42) 0%, transparent 42%);
  z-index: 1;
}

#mainCarousel .carousel-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.72) contrast(1.08) brightness(0.82);
  transform: scale(1.015);
}

.carousel-caption.custom-caption {
  top: 52%;
  left: 50%;
  width: calc(100% - 40px);
  max-width: var(--brand-container);
  padding: 0;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.hero-eyebrow,
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  color: var(--brand-accent);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-eyebrow::before,
.section-eyebrow::before {
  content: '';
  width: 26px;
  height: 2px;
  border-radius: 3px;
  background: currentColor;
}

.hero-eyebrow {
  color: #ff7972;
}

.hero-title {
  max-width: 820px !important;
  margin: 0 0 24px !important;
  color: #fff;
  font-size: clamp(46px, 5vw, 68px) !important;
  font-weight: 700 !important;
  line-height: 1.06 !important;
  letter-spacing: -0.045em !important;
  text-wrap: balance;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.22);
}

.hero-description {
  max-width: 690px !important;
  margin: 0 !important;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px !important;
  font-weight: 500;
  line-height: 1.65 !important;
  letter-spacing: 0 !important;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-proof {
  width: min(760px, 100%);
  margin-top: 44px;
  padding: 18px 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-proof span {
  min-width: 0;
  padding: 0 22px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-proof span:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-proof strong {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}

.hero-proof small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 500;
}

.custom-indicators {
  bottom: 28px;
  gap: 9px;
}

.custom-indicators .dot {
  width: 28px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.34);
  transition: width 180ms ease, background 180ms ease;
}

.custom-indicators .dot.active {
  width: 48px;
  background: var(--brand-accent);
}

@media (prefers-reduced-motion: no-preference) {
  .carousel-item.active .hero-eyebrow,
  .carousel-item.active .hero-title,
  .carousel-item.active .hero-description,
  .carousel-item.active .hero-actions,
  .carousel-item.active .hero-proof {
    animation: hero-content-in 620ms cubic-bezier(.2, .8, .2, 1) both;
  }

  .carousel-item.active .hero-title {
    animation-delay: 70ms;
  }

  .carousel-item.active .hero-description {
    animation-delay: 130ms;
  }

  .carousel-item.active .hero-actions {
    animation-delay: 190ms;
  }

  .carousel-item.active .hero-proof {
    animation-delay: 250ms;
  }
}

@keyframes hero-content-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#video-progress {
  height: 2px;
  background: var(--brand-accent);
}

/* Заголовки секций */
.section-heading {
  max-width: 760px;
  margin: 0 auto 54px;
  text-align: center;
}

.section-heading .section-title,
.achievements .section-title,
.products .section-title {
  margin: 0 0 20px !important;
  color: var(--brand-ink);
  font-size: clamp(34px, 4.2vw, 52px) !important;
  font-weight: 700 !important;
  line-height: 1.12;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.section-heading .section-title::after {
  display: none;
}

.section-lead,
.products-intro {
  max-width: 680px;
  margin: 0 auto;
  color: var(--brand-muted);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.7;
}

/* Блок доверия */
.achievements {
  padding: 118px 20px;
  background: var(--brand-surface-soft);
  border: 0;
}

.achievements-container {
  max-width: var(--brand-container);
  padding: 0;
}

.achievements-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 0;
}

.achievement-item {
  min-height: 330px;
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  background: var(--brand-surface);
  border: 1px solid var(--brand-line);
  border-radius: var(--brand-radius);
  box-shadow: 0 1px 0 rgba(17, 25, 32, 0.02);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.achievement-item:hover {
  transform: translateY(-6px);
  border-color: rgba(233, 81, 73, 0.28);
  box-shadow: var(--brand-shadow-sm);
}

.achievement-icon {
  width: 54px;
  height: 54px;
  margin: 0 0 32px;
  display: grid;
  place-items: center;
  color: var(--brand-accent);
  background: rgba(233, 81, 73, 0.09);
  border-radius: 15px;
}

.achievement-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.achievement-kicker {
  margin-bottom: 12px;
  color: var(--brand-accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.achievement-title {
  margin: 0 0 14px !important;
  color: var(--brand-ink);
  font-size: 20px !important;
  font-weight: 700;
  line-height: 1.35;
}

.achievement-description {
  margin: auto 0 0;
  color: var(--brand-muted) !important;
  font-size: 14px !important;
  font-weight: 500;
  line-height: 1.65 !important;
}

/* Продукция */
.products {
  max-width: none;
  padding: 118px max(20px, calc((100vw - var(--brand-container)) / 2));
  background: var(--brand-surface);
  text-align: center;
}

.products .product-categories {
  margin: 0 0 42px;
  gap: 10px;
}

.products .category-btn {
  min-height: 46px;
  padding: 11px 18px !important;
  color: var(--brand-muted);
  font-size: 13px !important;
  font-weight: 700 !important;
  border: 1px solid var(--brand-line) !important;
  border-radius: 99px !important;
  background: #fff;
  box-shadow: none;
}

.products .category-btn:hover {
  color: var(--brand-accent);
  border-color: rgba(233, 81, 73, 0.38) !important;
  background: rgba(233, 81, 73, 0.04) !important;
  transform: none;
  box-shadow: none;
}

.products .category-btn.active {
  color: #fff;
  border-color: var(--brand-ink) !important;
  background: var(--brand-ink);
  box-shadow: none;
}

.products .arrow-btn {
  width: 46px !important;
  height: 46px !important;
  border: 1px solid var(--brand-line);
  border-radius: 50%;
}

.products .arrow-btn img {
  width: 18px !important;
  height: 18px !important;
}

.products .product-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin: 0;
}

.products .product-grid.is-loading {
  opacity: 1;
}

.products-load-state,
.products .loading-message {
  grid-column: 1 / -1;
  width: min(640px, 100%);
  margin: 0 auto 24px;
  padding: 14px 18px;
  color: var(--brand-muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  background: #fff8f7;
  border: 1px solid rgba(233, 81, 73, 0.22);
  border-radius: var(--brand-radius-sm);
}

.products-load-state button {
  margin-left: 8px;
  padding: 5px 9px;
  color: var(--brand-accent-dark);
  font-weight: 800;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  cursor: pointer;
}

.products .product-card {
  height: 430px;
  background: var(--brand-surface-soft);
  border: 1px solid var(--brand-line);
  border-radius: var(--brand-radius);
  box-shadow: none;
}

.products .product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(233, 81, 73, 0.22);
  box-shadow: var(--brand-shadow-sm);
}

.products .product-image-container,
.products .product-card__image-link {
  width: 48%;
  height: 100%;
  display: block;
  overflow: hidden;
  flex: 0 0 48%;
  background: #e9edef;
}

.products .product-image {
  transition: transform 500ms cubic-bezier(.2, .8, .2, 1);
}

.products .product-card:hover .product-image {
  transform: scale(1.035);
}

.products .product-info {
  width: 52%;
  padding: 30px;
  align-items: flex-start;
  justify-content: flex-start;
}

.product-category {
  margin-bottom: 18px;
  color: var(--brand-accent);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-align: left;
  text-transform: uppercase;
}

.products .product-name {
  margin: 0 0 16px !important;
  color: var(--brand-ink);
  font-size: 22px !important;
  line-height: 1.32 !important;
  letter-spacing: -0.025em;
  text-align: left;
}

.product-name a {
  color: inherit;
  transition: color 180ms ease;
}

.product-name a:hover {
  color: var(--brand-accent);
}

.products .product-description {
  margin: 0 0 22px;
  color: var(--brand-muted) !important;
  font-size: 14px !important;
  font-weight: 500;
  line-height: 1.65 !important;
  text-align: left;
  -webkit-line-clamp: 4;
}

.product-card-actions {
  width: 100%;
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 16px;
}

.products .product-details-btn {
  min-height: 44px;
  padding: 11px 18px !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px !important;
  border-radius: 9px;
  background: var(--brand-accent);
}

.product-request-link {
  color: var(--brand-ink);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
  text-decoration: underline;
  text-decoration-color: rgba(17, 25, 32, 0.25);
  text-underline-offset: 4px;
}

.product-request-link:hover {
  color: var(--brand-accent);
  text-decoration-color: currentColor;
}

.products .all-products-btn {
  min-height: 52px;
  margin-top: 42px;
  padding: 14px 24px !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-ink);
  font-size: 14px !important;
  font-weight: 800;
  border: 1px solid var(--brand-ink);
  border-radius: var(--brand-radius-sm);
  background: transparent;
}

.products .all-products-btn:hover {
  color: #fff;
  background: var(--brand-ink);
}

/* О компании */
.about {
  max-width: none;
  margin: 0;
  padding: 118px max(20px, calc((100vw - var(--brand-container)) / 2));
  color: #fff;
  background:
    radial-gradient(circle at 88% 22%, rgba(233, 81, 73, 0.2), transparent 30%),
    var(--brand-ink);
  border: 0;
}

.about .section-title {
  margin: 0 0 42px !important;
  color: #fff;
  font-size: clamp(34px, 4vw, 50px) !important;
  text-align: left;
  letter-spacing: -0.04em;
}

.about .section-title::after {
  display: none;
}

.about-content-row {
  align-items: center;
  gap: 80px;
}

.about-text p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px !important;
  font-weight: 500;
  line-height: 1.8 !important;
}

.about-text strong {
  color: #fff;
}

.about-certificate {
  flex-basis: 330px;
}

.certificate {
  border: 10px solid rgba(255, 255, 255, 0.94);
  border-radius: 14px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.32);
  transform: rotate(1.5deg);
}

.about-more-btn {
  min-height: 50px;
  padding: 13px 22px !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px !important;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--brand-radius-sm);
  background: rgba(255, 255, 255, 0.08);
}

.about-more-btn:hover {
  color: #fff;
  border-color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

/* Преимущества */
.advantages {
  padding: 118px 20px;
  background: var(--brand-surface-soft);
}

.advantages-container {
  max-width: var(--brand-container);
}

.advantages .section-title {
  margin-bottom: 54px !important;
  color: var(--brand-ink);
  font-size: clamp(34px, 4vw, 50px) !important;
  letter-spacing: -0.04em;
}

.advantages-grid {
  gap: 16px;
}

.advantage-item {
  padding: 30px;
  background: #fff;
  border: 1px solid var(--brand-line);
  border-radius: var(--brand-radius);
}

.advantage-title {
  color: var(--brand-ink) !important;
  font-size: 19px !important;
}

.advantage-description {
  color: var(--brand-muted) !important;
  font-size: 14px !important;
  line-height: 1.7 !important;
}

/* Финальный призыв */
.consultation-banner {
  padding: 72px 20px 80px;
  background: var(--brand-surface-soft);
}

.consultation-banner__inner {
  max-width: var(--brand-container);
  margin: 0 auto;
  padding: 52px 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(233, 81, 73, 0.1), transparent 52%),
    var(--brand-ink-soft);
  border-radius: var(--brand-radius-lg);
  box-shadow: var(--brand-shadow-sm);
}

.consultation-banner .section-eyebrow {
  margin-bottom: 14px;
}

.consultation-banner h2 {
  max-width: 720px;
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.consultation-banner p {
  max-width: 640px;
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 15px;
  line-height: 1.65;
}

.consultation-banner__actions {
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
}

.consultation-phone {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
}

.consultation-phone:hover {
  color: #ff7972;
}

/* Партнёры */
.partners {
  padding: 106px 0;
  background: var(--brand-surface-soft);
}

.partners .section-title {
  margin-bottom: 50px !important;
  color: var(--brand-ink);
  font-size: clamp(32px, 4vw, 48px) !important;
  letter-spacing: -0.04em;
}

.partners .section-title::after {
  display: none;
}

.partners-logos img {
  filter: grayscale(1);
  opacity: 0.68;
  transition: filter 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.partner-item:hover img {
  filter: grayscale(0);
  opacity: 1;
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .hero-title {
    font-size: clamp(42px, 6.4vw, 58px) !important;
  }

  .achievements-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .achievement-item {
    min-height: 280px;
  }

  .products .product-card {
    height: 470px;
  }

  .products .product-info {
    padding: 24px;
  }
}

@media (max-width: 768px) {
  #mainCarousel {
    height: 100svh;
    min-height: 720px;
  }

  #mainCarousel .carousel-item::after {
    background:
      linear-gradient(90deg, rgba(8, 15, 20, 0.9), rgba(8, 15, 20, 0.58)),
      linear-gradient(0deg, rgba(8, 15, 20, 0.66), transparent 55%);
  }

  #mainCarousel .carousel-item video {
    object-position: 58% center;
  }

  .carousel-caption.custom-caption {
    top: 53%;
    width: calc(100% - 40px);
  }

  .hero-eyebrow {
    margin-bottom: 16px;
    font-size: 10px;
  }

  .hero-title {
    margin-bottom: 18px !important;
    font-size: clamp(34px, 10vw, 44px) !important;
    line-height: 1.08 !important;
  }

  .hero-description {
    font-size: 15px !important;
    line-height: 1.58 !important;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .hero-actions .button {
    flex: 1 1 160px;
    min-height: 48px;
    padding: 12px 16px;
    font-size: 13px;
  }

  .hero-proof {
    margin-top: 30px;
    padding: 14px 0;
  }

  .hero-proof span {
    padding: 0 10px;
  }

  .hero-proof strong {
    font-size: 11px;
  }

  .hero-proof small {
    font-size: 9px;
    line-height: 1.35;
  }

  .custom-indicators {
    bottom: 18px;
  }

  .achievements,
  .products,
  .about,
  .advantages {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-eyebrow {
    margin-bottom: 16px;
    font-size: 10px;
  }

  .section-heading .section-title,
  .achievements .section-title,
  .products .section-title,
  .about .section-title,
  .advantages .section-title,
  .partners .section-title {
    font-size: 32px !important;
    line-height: 1.18;
  }

  .section-lead,
  .products-intro {
    font-size: 15px;
  }

  .achievements-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .achievement-item {
    min-height: 0;
    padding: 24px;
  }

  .achievement-icon {
    margin-bottom: 22px;
  }

  .products .product-categories {
    margin-right: -20px;
    margin-left: -20px;
    padding-right: 20px;
    padding-left: 20px;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .products .product-categories::-webkit-scrollbar {
    display: none;
  }

  .products .category-btn,
  .products .arrow-btn {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .products .product-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .products .product-card {
    height: auto;
    flex-direction: column;
  }

  .products .product-image-container,
  .products .product-card__image-link {
    width: 100%;
    height: 240px;
    flex-basis: 240px;
  }

  .products .product-info {
    width: 100%;
    min-height: 300px;
    padding: 24px;
  }

  .about-content-row {
    gap: 44px;
  }

  .about .section-title {
    text-align: center;
  }

  .certificate {
    max-width: 290px;
  }

  .consultation-banner {
    padding: 54px 16px 62px;
  }

  .consultation-banner__inner {
    padding: 36px 26px;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    border-radius: 22px;
  }

  .consultation-banner__actions {
    width: 100%;
    min-width: 0;
  }

  .partners {
    padding-top: 82px;
    padding-bottom: 82px;
  }
}

@media (max-width: 480px) {
  .carousel-caption.custom-caption {
    top: 52%;
  }

  .hero-title {
    font-size: 34px !important;
  }

  .hero-proof span:nth-child(3) {
    padding-right: 0;
  }

  .products .product-name {
    font-size: 20px !important;
  }

  .product-card-actions {
    justify-content: space-between;
  }

  .about-content-row {
    margin-bottom: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Сдержанная промышленная подача: меньше шаблонных карточек и декора. */
:root {
  --brand-radius-sm: 6px;
  --brand-radius: 8px;
  --brand-radius-lg: 10px;
  --brand-shadow-sm: 0 8px 20px rgba(17, 25, 32, 0.06);
  --brand-shadow: 0 16px 36px rgba(17, 25, 32, 0.1);
}

.button {
  border-radius: 5px;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button:hover {
  transform: none;
}

.button-primary,
.button-primary:hover {
  box-shadow: none;
}

.section-heading {
  max-width: 820px;
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.section-heading .section-eyebrow,
.consultation-banner .section-eyebrow {
  display: none;
}

.section-heading .section-title {
  max-width: 760px;
  text-align: left;
}

.section-lead,
.products-intro {
  margin-left: 0;
  text-align: left;
}

.achievement-item {
  min-height: 280px;
  padding: 28px 24px;
  background: transparent;
  border: 0;
  border-left: 1px solid #d7dde0;
  border-radius: 0;
  box-shadow: none;
}

.achievement-item:first-child {
  border-left: 3px solid var(--brand-accent);
}

.achievement-item:hover {
  transform: none;
  border-color: #d7dde0;
  box-shadow: none;
}

.achievement-item:first-child:hover {
  border-color: var(--brand-accent);
}

.achievement-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 26px;
  background: transparent;
  border: 1px solid rgba(233, 81, 73, 0.42);
  border-radius: 4px;
}

.achievement-icon svg {
  width: 23px;
  height: 23px;
}

.products {
  text-align: left;
}

.products .product-categories {
  justify-content: flex-start;
}

.products .category-btn,
.products .arrow-btn {
  border-radius: 4px !important;
}

.products .product-card {
  border-radius: 6px;
}

.products .product-card:hover {
  transform: none;
  box-shadow: none;
}

.products .product-image,
.products .product-card:hover .product-image {
  transform: none;
}

.products .all-products-btn {
  border-radius: 5px;
}

.about {
  background: var(--brand-ink);
}

.certificate {
  border-width: 7px;
  border-radius: 4px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
  transform: none;
}

.advantages .section-title {
  text-align: left;
}

.advantages .section-title::after {
  display: none;
}

.advantages-grid {
  gap: 0;
  border-top: 1px solid #d7dde0;
  border-bottom: 1px solid #d7dde0;
}

.advantage-item {
  padding: 32px 26px;
  border: 0;
  border-left: 1px solid #d7dde0;
  border-radius: 0;
}

.advantage-item:first-child {
  border-left: 3px solid var(--brand-accent);
}

.partners {
  padding-top: 92px;
  padding-bottom: 92px;
}

.partners .section-title {
  width: min(1200px, calc(100% - 40px));
  margin-right: auto;
  margin-left: auto;
  text-align: left;
}

.partners-logos {
  gap: 0 !important;
}

.partners-row {
  gap: 0 !important;
}

.partner-item {
  min-width: 220px;
  min-height: 120px;
  padding: 24px 34px;
  border-left: 1px solid #d7dde0;
}

.partner-item:first-child {
  border-left-color: var(--brand-accent);
}

.blurred-circle1,
.blurred-circle2,
.blurred-circle3,
.blurred-circle4,
.blurred-circle5 {
  display: none !important;
}

.partner-item:hover img {
  transform: none;
}

.consultation-banner__inner {
  padding: 48px 54px;
  background: var(--brand-ink-soft);
  border-left: 4px solid var(--brand-accent);
  border-radius: 6px;
  box-shadow: none;
}

@media (max-width: 768px) {
  .section-heading {
    text-align: left;
  }

  .achievements-grid {
    gap: 0;
    border-top: 1px solid #d7dde0;
    border-bottom: 1px solid #d7dde0;
  }

  .achievement-item,
  .achievement-item:first-child {
    padding: 26px 20px;
    border-left: 3px solid var(--brand-accent);
    border-bottom: 1px solid #d7dde0;
  }

  .achievement-item:last-child {
    border-bottom: 0;
  }

  .about .section-title,
  .advantages .section-title,
  .partners .section-title {
    text-align: left;
  }

  .advantages-grid {
    border-bottom: 0;
  }

  .advantage-item,
  .advantage-item:first-child {
    border-left: 3px solid var(--brand-accent);
    border-bottom: 1px solid #d7dde0;
  }

  .consultation-banner__inner {
    padding: 34px 24px;
    border-radius: 5px;
  }
}
