.home-redesign {
  --home-dark: #171d28;
  --home-ink: #142527;
  --home-muted: #5c6472;
  --home-border: #e4e8ed;
  --home-red: #fe4040;
  --home-orange: #fb8404;
  overflow: hidden;
}

.home-redesign h1,
.home-redesign h2,
.home-redesign h3 {
  font-family: "Raleway", sans-serif;
}

.home-hero {
  position: relative;
  min-height: 620px;
  color: #fff;
  background: #0b111a;
}

.home-hero__image,
.home-hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.home-hero__image {
  object-fit: cover;
  object-position: center;
}

.home-hero__overlay {
  background: linear-gradient(90deg, rgba(7, 14, 24, 0.98) 0%, rgba(7, 14, 24, 0.93) 38%, rgba(7, 14, 24, 0.25) 72%, rgba(7, 14, 24, 0.08) 100%);
}

.home-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 620px;
  align-items: center;
}

.home-hero__content {
  max-width: 690px;
  padding: 75px 0;
}

.home-hero h1 {
  margin: 0 0 26px;
  color: #fff;
  font-size: clamp(48px, 5.2vw, 76px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.home-hero h1 span {
  color: var(--home-red);
}

.home-hero p {
  max-width: 620px;
  margin: 0 0 34px;
  color: #e2e7ee;
  font-size: 18px;
  line-height: 1.75;
}

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

.home-btn {
  display: inline-flex;
  gap: 14px;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: 1px solid transparent;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

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

.home-btn--primary {
  background: linear-gradient(135deg, var(--home-red), var(--home-orange));
  box-shadow: 0 14px 30px rgba(254, 64, 64, 0.22);
}

.home-btn--outline {
  border-color: rgba(255, 255, 255, 0.75);
  background: rgba(10, 16, 25, 0.35);
}

.home-btn--outline:hover {
  color: var(--home-dark);
  background: #fff;
}

.home-text-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--home-red);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.home-text-link:hover {
  color: var(--home-orange);
}

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

.home-section-heading h2 {
  margin: 0 0 9px;
  color: var(--home-ink);
  font-size: clamp(31px, 3.4vw, 46px);
  font-weight: 800;
  line-height: 1.12;
}

.home-section-heading p {
  max-width: 760px;
  margin: 0;
  color: var(--home-muted);
  font-size: 16px;
  line-height: 1.7;
}

.home-section-heading--center {
  text-align: center;
}

.home-section-heading--center p {
  margin-inline: auto;
}

.home-section-heading--line {
  display: flex;
  gap: 30px;
  align-items: end;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid #dfe3e8;
}

.home-section-heading--line h2 {
  position: relative;
  padding-left: 18px;
}

.home-section-heading--line h2::before {
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 0;
  width: 5px;
  background: linear-gradient(var(--home-red), var(--home-orange));
  content: "";
}

.home-strength {
  position: relative;
  overflow: hidden;
  padding: 76px 0 82px;
  background:
    radial-gradient(circle at 8% 20%, rgba(254, 64, 64, 0.13), transparent 24%),
    radial-gradient(circle at 92% 85%, rgba(251, 132, 4, 0.12), transparent 26%),
    linear-gradient(135deg, #111923, #1c2735);
}

.home-strength::before {
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  mask-image: linear-gradient(90deg, #000, transparent 40%, transparent 60%, #000);
}

.home-strength .container {
  position: relative;
  z-index: 1;
}

.home-strength .home-section-heading {
  align-items: center;
  max-width: 780px;
  margin: 0 auto 38px;
  text-align: center;
}

.home-strength .home-section-heading h2 {
  color: #fff;
  font-size: clamp(36px, 3.5vw, 50px);
  line-height: 1.1;
}

.home-strength .home-section-heading h2::after {
  display: block;
  width: 70px;
  height: 4px;
  margin: 20px auto 0;
  background: linear-gradient(90deg, var(--home-red), var(--home-orange));
  content: "";
}

.home-strength .home-section-heading p {
  max-width: 650px;
  margin-inline: auto;
  color: #bdc7d4;
  font-size: 15px;
  line-height: 1.7;
}

.home-strength__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  grid-template-rows: repeat(2, 235px);
  gap: 18px;
  counter-reset: capability;
}

.home-strength__grid article {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 235px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.065);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
  counter-increment: capability;
  transition: transform 0.3s ease, border-color 0.3s ease,
    background-color 0.3s ease;
}

.home-strength__grid .home-strength__automation {
  grid-row: 1 / span 2;
  min-height: 488px;
}

.home-strength__grid article::before {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, var(--home-red), var(--home-orange));
  content: "0" counter(capability);
  font-size: 10px;
  font-weight: 800;
}

.home-strength__grid article:hover {
  border-color: rgba(251, 132, 4, 0.6);
  transform: translateY(-6px);
}

.home-strength__grid article > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.home-strength__grid article:hover > img {
  transform: scale(1.06);
}

.home-strength__grid article::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(10, 18, 28, 0.04) 20%,
    rgba(10, 18, 28, 0.82) 68%,
    rgba(10, 18, 28, 0.97) 100%
  );
  content: "";
}

.home-strength__grid article > div {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-start;
  padding: 22px;
}

.home-strength__grid i {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 9px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9px;
  color: #fff;
  background: rgba(254, 64, 64, 0.18);
  font-size: 14px;
}

.home-strength__grid h3 {
  margin: 0 0 7px;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
}

.home-strength__grid p {
  margin: 0;
  color: #d3dbe5;
  font-size: 13px;
  line-height: 1.55;
}

.home-strength__automation h3 {
  font-size: 28px;
}

.home-strength__automation p {
  max-width: 380px;
  font-size: 14px;
}

.home-catalog {
  padding: 88px 0;
}

.home-showcase-tabs {
  padding-top: 72px;
  background: #f4f6f8;
}

.home-showcase-tabs > .container {
  position: relative;
  z-index: 3;
  padding-top: 0;
  padding-bottom: 34px;
}

.home-showcase-tabs__intro {
  width: min(850px, 100%);
  margin: 0 auto 30px;
  text-align: center;
}

.home-showcase-tabs__intro h2 {
  margin: 0 0 10px;
  color: var(--home-dark);
  font-size: clamp(31px, 3vw, 44px);
  font-weight: 800;
  line-height: 1.12;
}

.home-showcase-tabs__intro h2::after {
  display: block;
  width: 62px;
  height: 4px;
  margin: 17px auto 0;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--home-red), var(--home-orange));
  content: "";
}

.home-showcase-tabs__intro p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--home-muted);
  font-size: 15px;
  line-height: 1.65;
}

.home-showcase-tabs__nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 7px;
  border: 1px solid #e2e7ec;
  border-radius: 12px;
  background: #f4f6f8;
  box-shadow: 0 14px 35px rgba(19, 27, 39, 0.08);
}

.home-showcase-tabs__button {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 78px;
  padding: 15px 24px;
  border: 0;
  border-radius: 8px;
  color: var(--home-dark);
  background: transparent;
  text-align: left;
  transition: color 0.25s ease, background-color 0.25s ease,
    box-shadow 0.25s ease;
}

.home-showcase-tabs__button > i {
  display: grid;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 8px;
  color: var(--home-red);
  background: #fff;
  box-shadow: 0 6px 16px rgba(19, 27, 39, 0.08);
  font-size: 18px;
}

.home-showcase-tabs__button span {
  font-size: 19px;
  font-weight: 800;
  line-height: 1.15;
}

.home-showcase-tabs__button small {
  display: block;
  margin-top: 5px;
  color: var(--home-muted);
  font-size: 12px;
  font-weight: 500;
}

.home-showcase-tabs__button.active {
  color: #fff;
  background: linear-gradient(135deg, #151e2a, #222f3e);
  box-shadow: 0 10px 24px rgba(19, 27, 39, 0.2);
}

.home-showcase-tabs__button.active > i {
  color: #fff;
  background: linear-gradient(135deg, var(--home-red), var(--home-orange));
}

.home-showcase-tabs__button.active small {
  color: #cbd2dc;
}

.home-showcase-tabs__button:focus-visible {
  outline: 3px solid rgba(254, 64, 64, 0.35);
  outline-offset: 3px;
}

.home-showcase-tabs__panel {
  display: none;
}

.home-showcase-tabs__panel.active {
  display: block;
  animation: home-tab-reveal 0.35s ease both;
}

@keyframes home-tab-reveal {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.home-catalog--automation {
  position: relative;
  color: #fff;
  background:
    radial-gradient(circle at 90% 5%, rgba(251, 132, 4, 0.13), transparent 24%),
    radial-gradient(circle at 5% 95%, rgba(254, 64, 64, 0.1), transparent 25%),
    linear-gradient(135deg, #131b27 0%, #1b2533 100%);
}

.home-catalog--automation::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1200px, 88%);
  height: 4px;
  background: linear-gradient(90deg, var(--home-red), var(--home-orange));
  content: "";
  transform: translateX(-50%);
}

.home-catalog--automation .home-section-heading {
  border-bottom-color: rgba(255, 255, 255, 0.15);
}

.home-catalog--automation .home-section-heading h2 {
  color: #fff;
}

.home-catalog--automation .home-section-heading p {
  color: #c7ced8;
}

.home-catalog--automation .home-text-link {
  color: #ff9c72;
}

.home-catalog--automation .home-text-link:hover {
  color: #fff;
}

.home-catalog--controls {
  background:
    linear-gradient(rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.94)),
    linear-gradient(90deg, transparent 49.8%, #e7ebef 50%, transparent 50.2%);
  background-size: auto, 38px 38px;
}

.home-catalog__automation-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.home-catalog-card {
  overflow: hidden;
  border: 0;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-catalog-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 45px rgba(0, 0, 0, 0.28);
}

.home-catalog-card__media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #dde2e6;
}

.home-catalog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.home-catalog-card:hover .home-catalog-card__media img {
  transform: scale(1.04);
}

.home-catalog-card__media span {
  position: absolute;
  top: 14px;
  left: 14px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 7px;
  color: #fff;
  background: linear-gradient(135deg, var(--home-red), var(--home-orange));
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  font-size: 11px;
  font-weight: 800;
}

.home-catalog-card__body {
  position: relative;
  min-height: 180px;
  padding: 22px 21px 20px;
}

.home-catalog-card__body::before {
  position: absolute;
  top: 0;
  left: 21px;
  width: 42px;
  height: 3px;
  background: linear-gradient(90deg, var(--home-red), var(--home-orange));
  content: "";
}

.home-catalog-card h3 {
  margin: 0 0 10px;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.25;
}

.home-catalog-card h3 a {
  color: var(--home-dark);
  text-decoration: none;
}

.home-catalog-card p {
  display: -webkit-box;
  min-height: 66px;
  margin: 0 0 16px;
  overflow: hidden;
  color: var(--home-muted);
  font-size: 13px;
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.home-control-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.home-control-card {
  display: grid;
  overflow: hidden;
  grid-template-columns: 42% 1fr;
  min-height: 215px;
  border: 1px solid #e2e7ec;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(19, 27, 39, 0.07);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.home-control-card:hover {
  border-color: rgba(254, 64, 64, 0.4);
  box-shadow: 0 20px 38px rgba(23, 29, 40, 0.14);
  transform: translateY(-6px);
}

.home-control-card__media {
  display: block;
  overflow: hidden;
  background: #eef1f4;
}

.home-control-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.home-control-card:hover .home-control-card__media img {
  transform: scale(1.05);
}

.home-control-card__body {
  position: relative;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding: 25px 24px 22px;
}

.home-control-card__body::before {
  position: absolute;
  top: 0;
  left: 24px;
  width: 42px;
  height: 3px;
  background: linear-gradient(90deg, var(--home-red), var(--home-orange));
  content: "";
}

.home-control-card__body > span {
  margin-bottom: 8px;
  color: var(--home-red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.home-control-card h3 {
  margin: 0 0 9px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
}

.home-control-card h3 a {
  color: var(--home-dark);
  text-decoration: none;
}

.home-control-card p {
  display: -webkit-box;
  margin: 0 0 18px;
  overflow: hidden;
  color: var(--home-muted);
  font-size: 13px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.home-control-card__body > a:last-child {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-top: auto;
  border-radius: 50%;
  color: var(--home-red);
  background: #fff1ed;
  font-size: 12px;
  transition: color 0.25s ease, background-color 0.25s ease,
    transform 0.25s ease;
}

.home-control-card:hover .home-control-card__body > a:last-child {
  color: #fff;
  background: var(--home-red);
  transform: translateX(4px);
}

.home-projects {
  padding: 88px 0;
  background: #f4f6f8;
}

.home-projects__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid #dfe4e9;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(19, 27, 39, 0.08);
}

.home-project-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 210px;
  border-bottom: 1px solid #e3e7eb;
  background: #fff;
  transition: background-color 0.25s ease, box-shadow 0.25s ease,
    transform 0.25s ease;
}

.home-project-card:nth-child(odd) {
  border-right: 1px solid #e3e7eb;
}

.home-project-card:hover {
  position: relative;
  z-index: 2;
  background: #fbfcfd;
  box-shadow: 0 14px 34px rgba(19, 27, 39, 0.13);
  transform: translateY(-3px);
}

.home-project-card__media {
  display: block;
  overflow: hidden;
  margin: 18px 0 18px 18px;
  border-radius: 7px;
  background: #e9edf1;
}

.home-project-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.home-project-card:hover .home-project-card__media img {
  transform: scale(1.05);
}

.home-project-card__body {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding: 25px 24px;
}

.home-project-card__body > span {
  margin-bottom: 7px;
  color: var(--home-red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-project-card__body > span i {
  margin-right: 5px;
}

.home-project-card h3 {
  margin: 0 0 9px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
}

.home-project-card h3 a {
  color: var(--home-dark);
  text-decoration: none;
}

.home-project-card p {
  display: -webkit-box;
  margin: 0 0 15px;
  overflow: hidden;
  color: var(--home-muted);
  font-size: 13px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.home-project-card .home-text-link {
  margin-top: auto;
}

/* Unified tab catalogue design */
.home-showcase-tabs .home-catalog--automation,
.home-showcase-tabs .home-catalog--controls {
  padding-top: 38px;
  color: var(--home-dark);
  background: #f4f6f8;
}

.home-showcase-tabs .home-projects {
  padding-top: 38px;
}

.home-showcase-tabs .home-catalog--automation::before {
  display: none;
}

.home-showcase-tabs .home-catalog--automation .home-section-heading,
.home-showcase-tabs .home-catalog--controls .home-section-heading {
  border-bottom-color: #dfe4e9;
}

.home-showcase-tabs .home-catalog--automation .home-section-heading h2,
.home-showcase-tabs .home-catalog--controls .home-section-heading h2 {
  color: var(--home-dark);
}

.home-showcase-tabs .home-catalog--automation .home-section-heading p,
.home-showcase-tabs .home-catalog--controls .home-section-heading p {
  color: var(--home-muted);
}

.home-showcase-tabs .home-catalog--automation .home-text-link,
.home-showcase-tabs .home-catalog--controls .home-text-link {
  color: var(--home-red);
}

.home-showcase-tabs .home-catalog__automation-grid,
.home-showcase-tabs .home-control-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid #dfe4e9;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(19, 27, 39, 0.08);
}

.home-showcase-tabs .home-catalog-card,
.home-showcase-tabs .home-control-card {
  display: grid;
  grid-template-columns: 165px 1fr;
  min-height: 0;
  height: 190px;
  overflow: hidden;
  border: 0;
  border-bottom: 1px solid #e3e7eb;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
  transition: background-color 0.25s ease, box-shadow 0.25s ease,
    transform 0.25s ease;
}

.home-showcase-tabs .home-catalog-card:nth-child(odd),
.home-showcase-tabs .home-control-card:nth-child(odd) {
  border-right: 1px solid #e3e7eb;
}

.home-showcase-tabs .home-catalog-card:hover,
.home-showcase-tabs .home-control-card:hover {
  position: relative;
  z-index: 2;
  background: #fbfcfd;
  box-shadow: 0 14px 34px rgba(19, 27, 39, 0.13);
  transform: translateY(-3px);
}

.home-showcase-tabs .home-catalog-card__media,
.home-showcase-tabs .home-control-card__media {
  aspect-ratio: auto;
  margin: 14px 0 14px 14px;
  border-radius: 7px;
}

.home-showcase-tabs .home-catalog-card__media span {
  top: 9px;
  left: 9px;
  width: 30px;
  height: 30px;
  border-width: 1px;
  border-radius: 6px;
}

.home-showcase-tabs .home-catalog-card__body,
.home-showcase-tabs .home-control-card__body {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  min-height: 0;
  padding: 21px 22px;
}

.home-showcase-tabs .home-catalog-card__body::before,
.home-showcase-tabs .home-control-card__body::before {
  display: none;
}

.home-showcase-tabs .home-catalog-card h3,
.home-showcase-tabs .home-control-card h3 {
  margin: 0 0 9px;
  font-size: 18px;
  line-height: 1.25;
}

.home-showcase-tabs .home-catalog-card p,
.home-showcase-tabs .home-control-card p {
  display: -webkit-box;
  min-height: 0;
  margin: 0 0 12px;
  overflow: hidden;
  color: var(--home-muted);
  font-size: 13px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.home-showcase-tabs .home-catalog-card .home-text-link,
.home-showcase-tabs .home-control-card__body > a:last-child {
  display: inline-flex;
  width: auto;
  height: auto;
  align-items: center;
  gap: 9px;
  margin-top: 4px;
  border-radius: 0;
  color: var(--home-red);
  background: transparent;
  font-size: 12px;
  font-weight: 800;
}

.home-showcase-tabs
  .home-control-card:hover
  .home-control-card__body
  > a:last-child {
  color: var(--home-red);
  background: transparent;
  transform: none;
}

.home-showcase-tabs .home-control-card__body > span {
  margin-bottom: 7px;
}

.home-about {
  position: relative;
  display: flex;
  min-height: 680px;
  align-items: center;
  padding: 90px 0;
  background:
    radial-gradient(circle at 5% 10%, rgba(254, 64, 64, 0.14), transparent 25%),
    radial-gradient(circle at 95% 90%, rgba(251, 132, 4, 0.12), transparent 25%),
    linear-gradient(135deg, #0d1723, #1d2c3d);
}

.home-about::after {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  pointer-events: none;
  mask-image: linear-gradient(90deg, #000, transparent 72%);
}

.home-about .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
  gap: 38px;
  align-items: center;
}

.home-about__content {
  width: 100%;
  padding: 48px 50px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 4px solid var(--home-orange);
  border-radius: 0 12px 12px 0;
  background: rgba(13, 24, 38, 0.76);
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(7px);
}

.home-about h2 {
  margin: 0 0 22px;
  color: #fff;
  font-size: clamp(38px, 4vw, 54px);
  font-weight: 800;
  line-height: 1.08;
}

.home-about p {
  margin: 0 0 16px;
  color: #d2dae5;
  font-size: 15px;
  line-height: 1.72;
}

.home-about .home-about__lead {
  color: #fff;
  font-size: 18px;
  line-height: 1.65;
}

.home-about p strong {
  color: #ff935f;
  font-weight: 800;
}

.home-about__commitment {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 24px 0 8px;
  padding: 16px 18px;
  border-left: 3px solid var(--home-orange);
  color: #fff;
  background: rgba(255, 255, 255, 0.075);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}

.home-about__commitment i {
  margin-top: 3px;
  color: #48d597;
}

.home-about .home-btn {
  margin-top: 18px;
}

.home-about__building {
  position: relative;
  overflow: hidden;
  height: 650px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  background: #1d2c3d;
  box-shadow: 0 28px 65px rgba(0, 0, 0, 0.35);
}

.home-about__building::after {
  position: absolute;
  inset: auto 0 0;
  height: 35%;
  background: linear-gradient(transparent, rgba(8, 15, 24, 0.86));
  content: "";
}

.home-about__building img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.home-about__building:hover img {
  transform: scale(1.025);
}

.home-about__building > div {
  position: absolute;
  right: 24px;
  bottom: 22px;
  left: 24px;
  z-index: 2;
  display: flex;
  gap: 10px;
  align-items: center;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.home-about__building > div i {
  color: var(--home-orange);
}

.home-team-strength {
  position: relative;
  overflow: hidden;
  padding: 88px 0;
  background: #fff;
}

.home-team-strength::before {
  position: absolute;
  top: -90px;
  right: -90px;
  width: 290px;
  height: 290px;
  border: 50px solid rgba(251, 132, 4, 0.06);
  border-radius: 50%;
  content: "";
}

.home-team-strength__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(360px, 0.65fr);
  gap: 24px;
}

.home-team-strength blockquote {
  position: relative;
  display: flex;
  min-height: 235px;
  align-items: center;
  margin: 0;
  padding: 48px 52px 48px 105px;
  overflow: hidden;
  border-radius: 10px;
  color: #fff;
  background:
    radial-gradient(circle at 100% 0%, rgba(251, 132, 4, 0.17), transparent 35%),
    linear-gradient(135deg, #131d29, #243347);
  box-shadow: 0 20px 45px rgba(19, 29, 41, 0.15);
}

.home-team-strength blockquote::after {
  position: absolute;
  bottom: -55px;
  left: -35px;
  width: 160px;
  height: 160px;
  border: 28px solid rgba(255, 255, 255, 0.045);
  border-radius: 50%;
  content: "";
}

.home-team-strength blockquote > i {
  position: absolute;
  top: 48px;
  left: 45px;
  color: var(--home-orange);
  font-size: 37px;
}

.home-team-strength blockquote p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(22px, 2.1vw, 31px);
  font-weight: 700;
  line-height: 1.45;
}

.home-team-strength__numbers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.home-team-strength__numbers article {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  min-height: 235px;
  padding: 25px 18px;
  border: 1px solid #e2e7ec;
  border-radius: 10px;
  background: #f6f8fa;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-team-strength__numbers article:hover {
  box-shadow: 0 16px 32px rgba(19, 29, 41, 0.11);
  transform: translateY(-5px);
}

.home-team-strength__numbers i {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 15px;
  border-radius: 9px;
  color: #fff;
  background: linear-gradient(135deg, var(--home-red), var(--home-orange));
  font-size: 18px;
}

.home-team-strength__numbers strong {
  color: var(--home-dark);
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
}

.home-team-strength__numbers span {
  margin-top: 8px;
  color: var(--home-muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.home-team-strength__statement {
  margin: 22px 0 0;
  padding: 18px 22px;
  border-left: 4px solid var(--home-orange);
  color: var(--home-dark);
  background: #fff4d4;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.5;
}

.home-why-choose {
  position: relative;
  overflow: hidden;
  padding: 85px 0 95px;
  color: var(--home-dark);
  background:
    radial-gradient(circle at 10% 15%, rgba(52, 108, 181, 0.05), transparent 30%),
    radial-gradient(circle at 90% 85%, rgba(251, 132, 4, 0.06), transparent 30%),
    #f4f7fb;
}

.home-why-choose::before {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 36px 36px;
  content: "";
  mask-image: radial-gradient(circle at center, #000 60%, transparent 95%);
}

.home-why-choose .container {
  position: relative;
  z-index: 1;
}

.home-why-choose__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.home-why-choose__tag {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 14px;
  padding: 6px 16px;
  border: 1px solid rgba(251, 132, 4, 0.35);
  border-radius: 20px;
  color: #d96b00;
  background: rgba(251, 132, 4, 0.1);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.home-why-choose__header h2 {
  margin: 0 0 14px;
  color: #101923;
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 800;
  line-height: 1.15;
}

.home-why-choose__header p {
  margin: 0;
  color: #4a5568;
  font-size: 16px;
  line-height: 1.6;
}

.home-why-choose__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 26px;
}

.home-why-choose__card {
  position: relative;
  display: flex;
  height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(16, 25, 35, 0.06);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.home-why-choose__media {
  position: relative;
  width: 100%;
  height: 195px;
  overflow: visible;
  background: #edf2f7;
}

.home-why-choose__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-why-choose__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 25, 35, 0.05) 0%, rgba(16, 25, 35, 0.45) 100%);
  content: "";
}

.home-why-choose__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: #ffffff;
  background: rgba(16, 25, 35, 0.85);
  font-size: 11px;
  font-weight: 800;
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
}

.home-why-choose__icon {
  position: absolute;
  bottom: -22px;
  left: 24px;
  z-index: 3;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 3px solid #ffffff;
  border-radius: 12px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--home-red), var(--home-orange));
  box-shadow: 0 8px 20px rgba(251, 132, 4, 0.35);
  font-size: 18px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-why-choose__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 34px 24px 26px;
  text-align: left;
}

.home-why-choose__content h3 {
  margin: 0 0 10px;
  color: #1a202c;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.home-why-choose__content p {
  margin: 0;
  color: #4a5568;
  font-size: 14px;
  line-height: 1.65;
}

/* Hover Animations */
.home-why-choose__card:hover {
  border-color: rgba(251, 132, 4, 0.5);
  box-shadow: 0 22px 48px rgba(16, 25, 35, 0.14);
  transform: translateY(-6px);
}

.home-why-choose__card:hover .home-why-choose__badge {
  border-color: transparent;
  color: #ffffff;
  background: var(--home-orange);
}

.home-why-choose__card:hover .home-why-choose__icon {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 12px 26px rgba(251, 132, 4, 0.45);
}

.home-training {
  position: relative;
  overflow: hidden;
  padding: 90px 0;
  background: #fff;
}

.home-training::before {
  position: absolute;
  right: -90px;
  bottom: -120px;
  width: 350px;
  height: 350px;
  border: 55px solid rgba(251, 132, 4, 0.055);
  border-radius: 50%;
  content: "";
}

.home-training__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
  gap: 22px;
}

.home-training__course {
  position: relative;
  display: flex;
  min-height: 410px;
  flex-direction: column;
  padding: 38px;
  overflow: hidden;
  border-radius: 12px;
  color: #fff;
  background:
    radial-gradient(circle at 100% 0%, rgba(251, 132, 4, 0.2), transparent 30%),
    linear-gradient(145deg, #17243a, #263c5d);
  box-shadow: 0 22px 50px rgba(22, 36, 58, 0.22);
}

.home-training__course--design {
  background:
    radial-gradient(circle at 100% 0%, rgba(254, 64, 64, 0.2), transparent 31%),
    linear-gradient(145deg, #192538, #31445f);
}

.home-training__number {
  position: absolute;
  top: 28px;
  right: 30px;
  color: rgba(255, 255, 255, 0.12);
  font-size: 58px;
  font-weight: 800;
  line-height: 1;
}

.home-training__content {
  position: relative;
  z-index: 1;
}

.home-training__content > i {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 9px;
  color: #fff;
  background: linear-gradient(135deg, var(--home-red), var(--home-orange));
  font-size: 20px;
}

.home-training h3 {
  max-width: 540px;
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(25px, 2.5vw, 34px);
  font-weight: 800;
  line-height: 1.18;
}

.home-training__content p {
  max-width: 600px;
  margin: 0 0 20px;
  color: #d0d9e5;
  font-size: 14px;
  line-height: 1.65;
}

.home-training__content ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 25px;
  padding: 0;
  list-style: none;
}

.home-training__content li {
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 5px;
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  font-size: 11px;
  font-weight: 700;
}

.home-training__logos {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: auto;
}

.home-training__course--design .home-training__logos {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-training__logos > div {
  display: grid;
  min-height: 76px;
  place-items: center;
  padding: 12px;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
}

.home-training__logos img {
  max-width: 100%;
  max-height: 48px;
  object-fit: contain;
}

.home-trading {
  position: relative;
  overflow: hidden;
  padding: 85px 0 95px;
  color: #fff;
  background:
    radial-gradient(circle at 10% 15%, rgba(0, 210, 255, 0.12), transparent 30%),
    radial-gradient(circle at 90% 85%, rgba(251, 132, 4, 0.14), transparent 30%),
    linear-gradient(135deg, #0b131f 0%, #152232 100%);
}

.home-trading::before {
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 36px 36px;
  content: "";
  mask-image: radial-gradient(circle at center, #000 50%, transparent 90%);
}

.home-trading .container {
  position: relative;
  z-index: 1;
}

.home-trading__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 45px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.home-trading__header-main {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.home-trading__tag {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 12px;
  padding: 6px 14px;
  border: 1px solid rgba(251, 132, 4, 0.35);
  border-radius: 20px;
  color: var(--home-orange);
  background: rgba(251, 132, 4, 0.08);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.home-trading__header h2 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 800;
  line-height: 1.15;
}

.home-trading__header p {
  margin: 0;
  color: #a8b8cc;
  font-size: 15px;
  line-height: 1.6;
}

.home-trading__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
}

.home-trading__tile {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 18px 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.02) 100%);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.home-trading__number {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(15, 25, 38, 0.7);
  font-size: 11px;
  font-weight: 800;
  transition: all 0.3s ease;
}

.home-trading__visual {
  display: flex;
  width: 100%;
  height: 140px;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
}

.home-trading__visual img {
  max-width: 100%;
  max-height: 115px;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.home-trading__details {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  margin-top: 18px;
  text-align: center;
}

.home-trading__details strong {
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
  transition: color 0.3s ease;
}

.home-trading__subtitle {
  margin-top: 4px;
  color: #9cb1c9;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
}

/* Brand Accent Glows & Hover States */
.home-trading__tile:hover {
  transform: translateY(-8px) scale(1.02);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.home-trading__tile:hover .home-trading__visual img {
  transform: scale(1.08);
}

.home-trading__tile:hover .home-trading__number {
  color: #fff;
  border-color: transparent;
  background: var(--home-orange);
}

.home-trading__tile--siemens:hover {
  border-color: rgba(0, 210, 255, 0.6);
  box-shadow: 0 20px 40px rgba(0, 210, 255, 0.2);
}

.home-trading__tile--rockwell:hover {
  border-color: rgba(255, 77, 77, 0.6);
  box-shadow: 0 20px 40px rgba(255, 77, 77, 0.2);
}

.home-trading__tile--mitsubishi:hover {
  border-color: rgba(255, 51, 68, 0.6);
  box-shadow: 0 20px 40px rgba(255, 51, 68, 0.2);
}

.home-trading__tile--omron:hover {
  border-color: rgba(51, 136, 255, 0.6);
  box-shadow: 0 20px 40px rgba(51, 136, 255, 0.2);
}

.home-trading__tile--schneider:hover {
  border-color: rgba(0, 230, 118, 0.6);
  box-shadow: 0 20px 40px rgba(0, 230, 118, 0.2);
}

/* Responsive Media Queries */
@media (max-width: 1200px) {
  .home-trading__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .home-trading__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .home-trading__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .home-trading__tile {
    padding: 20px 14px 18px;
  }
}

@media (max-width: 480px) {
  .home-trading__grid {
    grid-template-columns: 1fr;
  }
}

.home-proof {
  padding: 30px 0;
  color: #fff;
  background: linear-gradient(100deg, #111925, #1e2734);
}

.home-proof__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.home-proof__grid > div {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 12px;
  align-items: center;
  justify-content: center;
  padding: 10px 45px;
}

.home-proof__grid > div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.home-proof i {
  color: var(--home-orange);
  font-size: 35px;
}

.home-proof strong {
  color: var(--home-red);
  font-size: 31px;
}

.home-proof span {
  font-size: 16px;
}

.home-industries {
  padding: 80px 0;
  background: #fff;
}

.home-industries__layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 70px;
}

.home-industries__intro {
  padding-right: 50px;
  border-right: 1px solid var(--home-border);
}

.home-industries h2,
.home-faq-contact h2 {
  margin: 0 0 16px;
  color: var(--home-dark);
  font-size: clamp(31px, 3vw, 42px);
  font-weight: 800;
}

.home-industries__intro p {
  margin-bottom: 25px;
  color: var(--home-muted);
  font-size: 16px;
  line-height: 1.7;
}

.home-industries__links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 42px;
}

.home-industries__links a {
  display: grid;
  grid-template-columns: 35px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 16px 8px;
  border-bottom: 1px solid var(--home-border);
  color: var(--home-dark);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}

.home-industries__links a i:first-child {
  color: var(--home-red);
}

.home-industries__links a i:last-child {
  font-size: 11px;
}

.home-industries__links a:hover {
  color: var(--home-red);
}

.home-clients {
  position: relative;
  overflow: hidden;
  padding: 48px 0;
  border-block: 1px solid #e2e7ec;
  background:
    radial-gradient(circle at 5% 50%, rgba(254, 64, 64, 0.08), transparent 23%),
    radial-gradient(circle at 95% 50%, rgba(251, 132, 4, 0.09), transparent 23%),
    #f6f8fa;
}

.home-clients .container {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 42px;
  align-items: center;
}

.home-clients p {
  margin: 0;
  padding-left: 18px;
  border-left: 4px solid var(--home-red);
  color: var(--home-dark);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.45;
}

.home-clients__carousel {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  gap: 10px;
  align-items: center;
}

.home-clients__viewport {
  overflow: hidden;
}

.home-clients__track {
  display: flex;
  gap: 12px;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.home-clients img {
  flex: 0 0 calc((100% - 36px) / 4);
  width: 100%;
  height: 92px;
  padding: 17px 16px;
  border: 1px solid #e0e5ea;
  border-top: 3px solid var(--home-red);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 9px 24px rgba(19, 29, 41, 0.07);
  object-fit: contain;
  filter: none;
  mix-blend-mode: normal;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-clients img:nth-child(6n + 2),
.home-clients img:nth-child(6n + 5) {
  border-top-color: var(--home-orange);
}

.home-clients img:nth-child(6n + 3) {
  border-top-color: #346cb5;
}

.home-clients img:nth-child(6n + 4) {
  border-top-color: #4e9d58;
}

.home-clients img:nth-child(6n) {
  border-top-color: #8756a9;
}

.home-clients img:hover {
  box-shadow: 0 16px 30px rgba(19, 29, 41, 0.14);
  transform: translateY(-5px);
}

.home-clients__control {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid #dce2e8;
  border-radius: 50%;
  color: var(--home-dark);
  background: #fff;
  box-shadow: 0 8px 20px rgba(19, 29, 41, 0.09);
  font-size: 12px;
  transition: color 0.25s ease, background-color 0.25s ease,
    transform 0.25s ease;
}

.home-clients__control:hover:not(:disabled) {
  color: #fff;
  background: var(--home-red);
  transform: scale(1.07);
}

.home-clients__control:disabled {
  cursor: default;
  opacity: 0.35;
}

.home-clients__control:focus-visible {
  outline: 3px solid rgba(254, 64, 64, 0.3);
  outline-offset: 3px;
}

.home-faq-contact {
  padding: 96px 0;
  background: #fff;
}

.home-faq-contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.23fr) minmax(390px, 0.77fr);
  gap: clamp(48px, 6vw, 92px);
  align-items: stretch;
}

.home-faq > h2 {
  max-width: 650px;
  margin-bottom: 38px;
  font-size: clamp(38px, 4.2vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.home-faq-contact .accordion-item {
  overflow: hidden;
  margin-bottom: 15px;
  border: 1px solid #e3e6eb;
  border-radius: 12px;
  background: #fff;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.home-faq-contact .accordion-item:has(.accordion-button:not(.collapsed)) {
  border-color: var(--home-orange);
  box-shadow: 0 12px 34px rgba(22, 30, 43, 0.06);
}

.home-faq-contact .accordion-button {
  gap: 18px;
  min-height: 82px;
  padding: 17px 24px;
  color: var(--home-dark);
  background: transparent;
  box-shadow: none;
  font-family: "Raleway", sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
}

.home-faq-contact .accordion-button:not(.collapsed) {
  color: var(--home-dark);
  background: transparent;
}

.home-faq-contact .accordion-button::after {
  flex: 0 0 auto;
  margin-left: auto;
}

.home-faq__number {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  place-items: center;
  border-radius: 50%;
  color: var(--home-dark);
  background: #f0f1f3;
  font-family: "Rubik", sans-serif;
  font-size: 15px;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease;
}

.accordion-button:not(.collapsed) .home-faq__number {
  color: #fff;
  background: linear-gradient(135deg, var(--home-red), var(--home-orange));
}

.home-faq-contact .accordion-body {
  padding: 4px 86px 28px;
  color: var(--home-muted);
  font-size: 16px;
  line-height: 1.75;
}

.home-contact-card {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 100%;
  overflow: hidden;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(42px, 5vw, 68px);
  border-radius: 16px;
  color: #fff;
  background-color: #121c2b;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 34px 34px;
  box-shadow: 0 24px 65px rgba(18, 28, 43, 0.14);
}

.home-contact-card::after {
  position: absolute;
  z-index: -1;
  right: -92px;
  bottom: -92px;
  width: 310px;
  height: 310px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  box-shadow:
    0 0 0 35px rgba(255, 255, 255, 0.025),
    0 0 0 70px rgba(255, 255, 255, 0.02);
  content: "";
}

.home-contact-card__icon {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  margin-bottom: 36px;
  border-radius: 15px;
  color: #fff;
  background: linear-gradient(135deg, var(--home-red), var(--home-orange));
  box-shadow: 0 14px 30px rgba(254, 93, 32, 0.24);
  font-size: 23px;
}

.home-contact-card h2 {
  max-width: 420px;
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(31px, 3vw, 45px);
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.home-contact-card p {
  max-width: 420px;
  margin: 0 0 30px;
  color: #d4dae3;
  font-size: 16px;
  line-height: 1.65;
}

.home-contact-card .home-btn {
  min-width: 170px;
  justify-content: center;
}

.home-redesign + .main-footer .footer-widget--about {
  margin-top: 0;
}

.home-redesign + .main-footer .footer-widget--about::before,
.home-redesign + .main-footer .footer-widget--about::after {
  height: 100%;
}

@media (max-width: 1399px) {
  .home-control-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1199px) {
  .home-hero,
  .home-hero__inner {
    min-height: 560px;
  }

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

  .home-strength__grid {
    grid-template-rows: none;
  }

  .home-strength__grid .home-strength__automation {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 320px;
  }

  .home-strength .container {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .home-strength .home-section-heading {
    align-items: center;
    text-align: center;
  }

  .home-strength .home-section-heading p {
    max-width: 720px;
  }

  .home-strength .home-section-heading h2::after {
    margin-right: auto;
    margin-left: auto;
  }

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

  .home-project-card {
    grid-template-columns: 135px 1fr;
  }

  .home-about {
    min-height: 620px;
  }

  .home-about__content {
    width: 100%;
    padding: 38px 34px;
  }

  .home-about .container {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .home-about__building {
    width: min(520px, 100%);
    margin: 0 auto;
  }

  .home-team-strength__layout {
    grid-template-columns: 1fr;
  }

  .home-team-strength__numbers article {
    min-height: 180px;
  }

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

  .home-why-choose .container {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .home-why-choose .home-section-heading {
    position: static;
    align-items: center;
    padding-top: 0;
    text-align: center;
  }

  .home-why-choose .home-section-heading h2::after {
    margin-right: auto;
    margin-left: auto;
  }

  .home-why-choose .home-section-heading p {
    max-width: 720px;
  }

  .home-training__grid {
    grid-template-columns: 1fr;
  }

  .home-training__course {
    min-height: 380px;
  }

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

  .home-trading__tile {
    grid-column: auto;
  }

  .home-trading__tile:nth-child(5) {
    width: calc(50% - 9px);
    grid-column: 1 / -1;
  }

  .home-clients .container {
    grid-template-columns: 220px 1fr;
    gap: 25px;
  }

  .home-clients__track img {
    flex-basis: calc((100% - 24px) / 3);
  }

  .home-industries__layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .home-industries__intro {
    padding-right: 0;
    border-right: 0;
  }

  .home-faq-contact__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .home-hero,
  .home-hero__inner {
    min-height: 620px;
  }

  .home-hero__image {
    object-position: 65% center;
  }

  .home-hero__overlay {
    background: rgba(7, 14, 24, 0.88);
  }

  .home-hero h1 {
    font-size: clamp(39px, 12vw, 54px);
  }

  .home-hero p {
    font-size: 16px;
  }

  .home-hero__actions,
  .home-hero__actions .home-btn {
    width: 100%;
  }

  .home-strength,
  .home-catalog,
  .home-projects,
  .home-industries,
  .home-team-strength,
  .home-why-choose,
  .home-training,
  .home-trading,
  .home-faq-contact {
    padding: 62px 0;
  }

  .home-showcase-tabs > .container {
    padding-top: 0;
    padding-bottom: 24px;
  }

  .home-showcase-tabs {
    padding-top: 52px;
  }

  .home-showcase-tabs .home-catalog--automation,
  .home-showcase-tabs .home-catalog--controls,
  .home-showcase-tabs .home-projects {
    padding-top: 24px;
  }

  .home-showcase-tabs__intro {
    margin-bottom: 20px;
  }

  .home-showcase-tabs__intro h2 {
    font-size: 27px;
  }

  .home-showcase-tabs__intro p {
    font-size: 13px;
  }

  .home-showcase-tabs__nav {
    gap: 6px;
    padding: 5px;
  }

  .home-showcase-tabs__button {
    justify-content: center;
    min-height: 58px;
    padding: 10px 8px;
    text-align: center;
  }

  .home-showcase-tabs__button > i {
    display: none;
  }

  .home-showcase-tabs__button span {
    font-size: 13px;
  }

  .home-showcase-tabs__button small {
    display: none;
  }

  .home-section-heading--line {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-strength__grid,
  .home-catalog__automation-grid,
  .home-control-grid,
  .home-industries__links {
    grid-template-columns: 1fr;
  }

  .home-strength .container {
    gap: 30px;
  }

  .home-strength__grid article {
    display: block;
    min-height: 250px;
  }

  .home-strength__grid .home-strength__automation {
    grid-column: auto;
    grid-row: auto;
    min-height: 300px;
  }

  .home-strength__grid article > img {
    width: 100%;
    height: 100%;
    min-height: 0;
  }

  .home-strength__grid article > div {
    padding: 20px;
  }

  .home-strength__grid h3 {
    font-size: 19px;
  }

  .home-strength__grid p {
    font-size: 12px;
  }

  .home-control-card {
    grid-template-columns: 42% 1fr;
  }

  .home-showcase-tabs .home-catalog__automation-grid,
  .home-showcase-tabs .home-control-grid {
    grid-template-columns: 1fr;
  }

  .home-showcase-tabs .home-catalog-card,
  .home-showcase-tabs .home-control-card {
    grid-template-columns: 120px 1fr;
    min-height: 190px;
    border-right: 0;
  }

  .home-showcase-tabs .home-catalog-card:nth-child(odd),
  .home-showcase-tabs .home-control-card:nth-child(odd) {
    border-right: 0;
  }

  .home-showcase-tabs .home-catalog-card__media,
  .home-showcase-tabs .home-control-card__media {
    margin: 12px 0 12px 12px;
  }

  .home-showcase-tabs .home-catalog-card__body,
  .home-showcase-tabs .home-control-card__body {
    min-height: 190px;
    padding: 18px 15px;
  }

  .home-showcase-tabs .home-catalog-card h3,
  .home-showcase-tabs .home-control-card h3 {
    font-size: 15px;
  }

  .home-showcase-tabs .home-catalog-card p,
  .home-showcase-tabs .home-control-card p {
    font-size: 11px;
  }

  .home-projects__grid {
    grid-template-columns: 1fr;
  }

  .home-project-card {
    grid-template-columns: 120px 1fr;
    min-height: 190px;
    border-right: 0;
  }

  .home-project-card:nth-child(odd) {
    border-right: 0;
  }

  .home-project-card__media {
    margin: 12px 0 12px 12px;
  }

  .home-project-card__body {
    padding: 18px 15px;
  }

  .home-project-card h3 {
    font-size: 15px;
  }

  .home-project-card p {
    font-size: 11px;
  }

  .home-about__content {
    padding: 34px 24px;
    border-left-width: 3px;
    border-radius: 0 9px 9px 0;
  }

  .home-about {
    min-height: 0;
    padding: 62px 0;
  }

  .home-about .container {
    grid-template-columns: 1fr;
  }

  .home-about__building {
    width: 100%;
    height: 520px;
  }

  .home-about .home-about__lead {
    font-size: 16px;
  }

  .home-about p {
    font-size: 13px;
  }

  .home-about__commitment {
    font-size: 13px;
  }

  .home-team-strength blockquote {
    min-height: 0;
    padding: 75px 24px 34px;
  }

  .home-team-strength blockquote > i {
    top: 28px;
    left: 24px;
    font-size: 29px;
  }

  .home-team-strength blockquote p {
    font-size: 20px;
  }

  .home-team-strength__numbers article {
    min-height: 155px;
    padding: 20px 10px;
  }

  .home-team-strength__numbers strong {
    font-size: 32px;
  }

  .home-team-strength__statement {
    font-size: 14px;
  }

  .home-why-choose__grid {
    grid-template-columns: 1fr;
  }

  .home-why-choose__grid article {
    min-height: 345px;
    padding: 0;
  }

  .home-why-choose__media {
    height: 210px;
  }

  .home-why-choose__content {
    min-height: 0;
    padding: 38px 22px 24px;
  }

  .home-training__course {
    min-height: 0;
    padding: 30px 23px;
  }

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

  .home-training__logos > div {
    min-height: 68px;
  }

  .home-training__number {
    top: 22px;
    right: 22px;
    font-size: 45px;
  }

  .home-trading__header {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-trading__grid {
    grid-template-columns: 1fr;
  }

  .home-trading__tile,
  .home-trading__tile:nth-child(4),
  .home-trading__tile:nth-child(5) {
    width: 100%;
    min-height: 150px;
    grid-column: auto;
    padding: 14px 48px 14px 14px;
  }

  .home-trading__tile img {
    width: auto;
    height: auto;
    max-width: 110px;
    max-height: 78px;
  }

  .home-trading__grid article {
    display: grid;
    grid-template-columns: 135px 1fr;
  }

  .home-trading__media {
    height: auto;
    min-height: 190px;
    padding: 20px 12px;
    border-right: 3px solid var(--home-red);
    border-bottom: 0;
  }

  .home-trading__grid article:nth-child(even) .home-trading__media {
    border-right-color: var(--home-orange);
    border-bottom: 0;
  }

  .home-trading__content {
    min-height: 190px;
    padding: 23px 18px;
  }

  .home-proof__grid {
    grid-template-columns: 1fr;
  }

  .home-proof__grid > div {
    justify-content: flex-start;
    padding: 18px 25px;
  }

  .home-proof__grid > div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 0;
  }

  .home-clients .container {
    grid-template-columns: 1fr;
  }

  .home-clients__carousel {
    grid-template-columns: 34px minmax(0, 1fr) 34px;
    gap: 7px;
  }

  .home-clients__control {
    width: 34px;
    height: 34px;
  }

  .home-clients__track img {
    flex-basis: calc((100% - 12px) / 2);
  }

  .home-clients img {
    height: 76px;
    padding: 13px 10px;
  }


  .home-contact-card {
    padding: 30px;
    min-height: 520px;
  }

  .home-faq > h2 {
    margin-bottom: 28px;
    font-size: 38px;
  }

  .home-faq-contact .accordion-button {
    gap: 13px;
    min-height: 74px;
    padding: 13px 15px;
    font-size: 15px;
  }

  .home-faq__number {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
    font-size: 13px;
  }

  .home-faq-contact .accordion-body {
    padding: 2px 56px 22px 68px;
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-redesign * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
