/* ========================================================================
   HOME PAGE – FAITHFUL PIXEL-MATCH TO REFERENCE SCREENSHOT
   ======================================================================== */

/* ─────────────────────────────────────────────
   HERO  (centered, above dark photo frame)
   ───────────────────────────────────────────── */
.home-hero {
  background: url('../assets/header-section.png') center/contain no-repeat,
              linear-gradient(180deg, #eef2ff 0%, #fff 100%);
  padding: 60px 24px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-size: cover;
  margin:0 25px;
}

.home-hero__bg {
  width: 100%;
  max-width: 1109px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.home-hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin: 0 auto;
  padding: 0 154px;
}

.home-hero__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.home-hero__title {
  --min-font-size: 28; --max-font-size: 48; font-size: var(--interpolate);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.96px;
  color: #27272a;
}

.home-hero__title-accent {
  color: #0b1795;
  display: block;
}

.home-hero__subtitle {
  --min-font-size: 18; --max-font-size: 24; font-size: var(--interpolate);
  color: #3f3f46;
  font-weight: 600;
  line-height: 1.5;
  max-width: 686px;
  margin-left: 2px;
}

.home-hero__actions {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

.home-hero__btn-outline {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  padding: 12px 9px;
  border: 1px solid #0b1795;
  color: #0b1795;
  font-size: 16px;
  font-weight: 700;
  border-radius: 9999px;
  background: #f9fafb;
  cursor: pointer;
  text-transform: uppercase;
  transition: filter 0.2s;
}

.home-hero__btn-primary {
  min-height: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 27px 12px 24px;
  background-color: #0b1795;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border-radius: 9999px;
  border: 1px solid #0b1795;
  cursor: pointer;
  text-transform: uppercase;
  transition: filter 0.2s;
}

.home-hero__btn-icon {
  margin-top: 5px;
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

/* hero image frame */
.home-hero__image {
  width: 100%;
}

.home-hero__img-wrap {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 1083px;
  height: 370px;
  background: url('../assets/header-container1.png') center/cover no-repeat;
  border: 1px solid #e4e4e7;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  overflow: hidden;
}

.home-hero__img-wrap img { display: none; }


/* ─────────────────────────────────────────────
   WHO WE ARE
   ───────────────────────────────────────────── */
.home-about {
  background: #fff;
  padding: 96px 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-top: 1px solid #e4e4e7;
}

.home-about__inner {
  width: 100%;
  max-width: 1280px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.home-about__left {
  margin-right: 309px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  text-align: left;
}

.home-about__title {
  --min-font-size: 24; --max-font-size: 40; font-size: var(--interpolate);
  font-weight: 700;
  color: transparent;
  background: linear-gradient(135deg, #0b1795, #1e40af);
  -webkit-background-clip: text; background-clip: text;
  line-height: 1.3;
  align-self: stretch;
  margin-right: 10px;
}

.home-about__lead {
  color: #3f3f46;
  --min-font-size: 16; --max-font-size: 18; font-size: var(--interpolate);
  font-weight: 500; line-height: 1.625;
}

.home-about__points {
  margin-top: 9px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  color: #3f3f46;
  --min-font-size: 16; --max-font-size: 18; font-size: var(--interpolate);
  font-weight: 500; line-height: 1.625;
  padding-right: 90px;
}

.home-about__point {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.home-about__bar {
  width: 4px; height: 88px;
  flex-shrink: 0;
  background: linear-gradient(180deg, #0b1795 0%, #4f56d8 100%);
  border-radius: 9999px;
}

/* stats row */
.home-stats {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.home-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  background: #fff;
    padding: 40px 20px;
    border: 1px solid #e4e4e7;
    border-radius: 12px;
}

.home-stat__num {
  color: #0b1795;
  font-size: 52px; font-weight: 700;
  line-height: 1; letter-spacing: -1.3px;
}

.home-stat__line {
  opacity: 0.4;
  width: 48px; height: 2px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, #0b1795 50%, rgba(0,0,0,0) 100%);
}

.home-stat__label {
  color: #3f3f46;
  font-size: 18px; font-weight: 600; line-height: 1.25;
}

/* value cards */
.home-values {
  margin-top: 9px;
  display: flex;
  flex-direction: grid;
  gap: 16px;
}

.home-value {
  width: 100%;
  min-height: 161px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  padding: 0 24px;
  border: 1px solid #e4e4e7;
  border-radius: 12px;
}

.home-value__circle {
  margin-top: 0;
  width: 48px; height: 48px;
  flex-shrink: 0;
  background: linear-gradient(180deg, #eef2ff 0%, #dbeafe 100%);
  padding: 12px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

.home-value--featured .home-value__circle {
  background: linear-gradient(180deg, #0b1795 0%, #1e40af 100%);
  padding: 13px;
  box-shadow: 0 1px 2px -1px rgba(0,0,0,0.1), 0 1px 3px 0 rgba(0,0,0,0.1);
}

.home-value__circle--lg { /* unused now but kept */ }

.home-value__icon { width: 24px; height: 24px; }

.home-value__text {
  margin-top: 2px;
  display: flex; flex-direction: column;
  align-items: flex-start; gap: 8px; flex-grow: 1; text-align: left;
}

.home-value__title { color: #0b1795; font-size: 20px; font-weight: 700; line-height: 1.25; }
.home-value__desc  { color: #71717a; font-size: 16px; font-weight: 500; line-height: 1.625; }

.home-about__right {
  display: flex; flex-direction: column; gap: 17px;
}


/* ─────────────────────────────────────────────
   WHAT WE DO  (light grey, 3 photo cards)
   ───────────────────────────────────────────── */
.home-services {
  background: #f8f9fb;
  padding: 96px 120px;
  display: flex; flex-direction: column;
  align-items: center; gap: 65px;
  text-align: left;
}

.home-services__header {
  width: 100%; max-width: 685px;
  align-self: flex-start;
  display: flex; flex-direction: column;
  align-items: flex-start; gap: 24px;
}

.home-services__title {
  --min-font-size: 24; --max-font-size: 40; font-size: var(--interpolate);
  font-weight: 700;
  color: transparent;
  background: linear-gradient(135deg, #0b1795, #1e40af);
  -webkit-background-clip: text; background-clip: text;
  line-height: 1.3; align-self: stretch;
}

.home-services__subtitle {
  color: #3f3f46;
  --min-font-size: 16; --max-font-size: 20; font-size: var(--interpolate);
  font-weight: 600; line-height: 1.5;
}

.home-services__cards {
  width: 100%; 
  /* max-width: 1109px; */
  display: flex; 
  align-items: flex-start; gap: 32px;
}

.home-service-card {
  box-shadow: 0 4px 16px 0 rgba(0,0,0,0.04);
  width: 100%; min-height: 394px; flex: 1;
  display: flex; flex-direction: column; gap: 23px;
  background: #fff;
  border: 1px solid #e4e4e7; border-radius: 16px;
  overflow: hidden; text-align: left;
}

.home-service-card__icon-wrap {
  width: 100%;
  padding: 136px 16px 16px;
  background-size: cover, auto auto;
  background-position: center, top left;
  background-repeat: no-repeat, no-repeat;
}

.home-service-card:nth-child(1) .home-service-card__icon-wrap {
  background-image: url('../assets/card-container/card-container1.png'), linear-gradient(180deg, #f3f4f6 0%, #e5e7eb 100%);
}
.home-service-card:nth-child(2) .home-service-card__icon-wrap {
  background-image: url('../assets/card-container/card-container2.png'), linear-gradient(180deg, #f3f4f6 0%, #e5e7eb 100%);
}
.home-service-card:nth-child(3) .home-service-card__icon-wrap {
  background-image: url('../assets/card-container/card-container3.png'), linear-gradient(180deg, #f3f4f6 0%, #e5e7eb 100%);
}

.home-service-card__icon-bg {
  box-shadow: 0 4px 6px -4px rgba(0,0,0,0.1), 0 10px 15px -3px rgba(0,0,0,0.1);
  width: 48px; background-color: #0b1795; padding: 12px; border-radius: 8px;
}

.home-service-card__icon { height: 24px; width: auto; }

.home-service-card__title {
  color: #0b1795; font-size: 22px; font-weight: 700; line-height: 1.25;
  padding: 0 24px;
}

.home-service-card__text {
  color: #71717a; font-size: 16px; font-weight: 500; line-height: 1.625;
  padding: 0 24px 24px;
}

.home-services__link {
  margin-top: 15px;
  box-shadow: 0 4px 12px 0 rgba(11,23,149,0.15);
  display: flex; align-items: center; justify-content: center; gap: 14px;
  color: #0b1795; font-size: 18px; font-weight: 700; line-height: 1.5;
  padding: 16px 35px 16px 0;
  border: 2px solid #0b1795; border-radius: 9999px;
  background: #fff; min-width: 240px; transition: filter 0.2s;
}
.home-services__link span { margin-left: 35px; }
.home-services__link-icon { margin-top: 7px; width: 13px; height: 13px; flex-shrink: 0; }


/* ─────────────────────────────────────────────
   INDUSTRIES  (white, icon grid)
   ───────────────────────────────────────────── */
.home-industries {
  background: #fff;
  padding: 72px 120px;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
}

.home-industries__header {
  width: 100%; 
  /* max-width: 1109px; */
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 16px; text-align: left;
}

.home-industries__title {
  --min-font-size: 24; --max-font-size: 40; font-size: var(--interpolate);
  font-weight: 700;
  color: transparent;
  background: linear-gradient(135deg, #0b1795, #1e40af);
  -webkit-background-clip: text; background-clip: text;
  line-height: 1.3; align-self: stretch; max-width: 800px;
}

.home-industries__subtitle {
  color: #3f3f46;
  --min-font-size: 16; --max-font-size: 20; font-size: var(--interpolate);
  font-weight: 600; line-height: 1.5; max-width: 780px;
}

.home-industries__grid {
  margin-top: 49px;
  width: 100%; 
  /* max-width: 1109px; */
  display: flex; flex-wrap: wrap; gap: 20px;
  color: #3f3f46; font-size: 16px; font-weight: 600; line-height: 1.25;
}

.home-industry-card {
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.04);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  background: #fff; padding: 24px 9px 0;
  border: 1px solid #e4e4e7; border-radius: 12px;
  width: calc(25% - 16px); text-align: center;
  font-size: 15px; font-weight: 600; color: #3f3f46;
}

.home-industry-card__icon {
  width: 56px; height: 56px;
  background: linear-gradient(180deg, #eef2ff 0%, #dbeafe 100%);
  padding: 14px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

.home-industry-card__svg { height: 28px; width: auto; }
.home-industry-card p { padding-bottom: 16px; align-self: stretch; }

.home-industries__btn-wrap {
  margin-top: 20px; width: 100%; max-width: 1109px;
  display: flex; justify-content: center;
}


/* ─────────────────────────────────────────────
   OUR APPROACH  (dark blue bg, 4 cards)
   ───────────────────────────────────────────── */
.home-approach {
  background: linear-gradient(180deg, #0b1795 0%, #070f5e 100%);
  padding: 96px 120px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 65px;
}

.home-approach__header {
  display: flex; flex-direction: column; align-items: flex-start; gap: 24px;
  width: 100%; max-width: 648px;
}

.home-approach .btn-pill {
  color: #fff !important;
  background-color: rgba(255,255,255,0.2) !important;
  border: none !important;
}

.home-approach__title {
  --min-font-size: 24; --max-font-size: 40; font-size: var(--interpolate);
  font-weight: 700; color: #fff; line-height: 1.3; align-self: stretch;
}

.home-approach__subtitle {
  --min-font-size: 16; --max-font-size: 20; font-size: var(--interpolate);
  color: #dbeafe; font-weight: 600; line-height: 1.5; align-self: stretch;
}

.home-approach__steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  align-self: stretch; width: 100%; max-width: 1280px;
}

.home-approach-step {
  display: flex; flex-direction: column; gap: 20px;
  background: rgba(255,255,255,0.1);
  padding: 23px 24px 25px;
  border: 1px solid rgba(255,255,255,0.2); border-radius: 20px;
}

.home-approach-step__num-row {
  display: flex; align-items: flex-start; justify-content: space-between;
  color: transparent;
  font-size: 36px; font-weight: 700; line-height: 1;
}

.home-approach-step__num {
  color: transparent;
  background: linear-gradient(135deg, rgba(255,255,255,0.8), rgba(255,255,255,0.3));
  -webkit-background-clip: text; background-clip: text;
  font-size: 36px; font-weight: 700;
}

.home-approach-step__icon {
  box-shadow: 0 4px 12px 0 rgba(0,0,0,0.1);
  width: 44px; flex-shrink: 0;
  background: rgba(255,255,255,0.2); padding: 11px; border-radius: 10px;
  margin-top: 1px;
}

.home-approach-step__icon object { height: 22px; width: auto; pointer-events: none; }
.home-approach-step__connector { display: none; }

.home-approach-step__title {
  color: #fff; font-size: 20px; font-weight: 700; line-height: 1.25;
}

.home-approach-step__desc {
  color: #dbeafe; font-size: 15px; font-weight: 500; line-height: 1.625;
}


/* ─────────────────────────────────────────────
   COMPREHENSIVE CAPABILITIES (light grey)
   ───────────────────────────────────────────── */
.home-capabilities {
  background: #f8f9fb;
  padding: 96px 120px;
  display: flex; flex-direction: column; align-items: center; gap: 64px;
  text-align: center;
}

.home-capabilities__header {
  width: 100%;
   /* max-width: 857px; */
  display: flex; flex-direction: column; align-items: center; gap: 24px;
}

.home-capabilities__title {
  --min-font-size: 24; --max-font-size: 40; font-size: var(--interpolate);
  font-weight: 700; color: transparent;
  background: linear-gradient(135deg, #0b1795, #1e40af);
  -webkit-background-clip: text; background-clip: text;
  line-height: 1.3;
}

.home-capabilities__subtitle {
  color: #3f3f46;
  --min-font-size: 18; --max-font-size: 24; font-size: var(--interpolate);
  font-weight: 600; line-height: 1.5;
}

.home-capabilities__grid {
  width: 100%; 
  /* max-width: 1109px; */
  display: flex; flex-direction: column; gap: 20px;
}

.home-capabilities__row-top,
.home-capabilities__row-bottom {
  display: flex; align-items: flex-start; gap: 20px;
}

/* System Impl card (special) */
.home-cap-card--system {
  box-shadow: 0 1px 2px -1px rgba(0,0,0,0.1), 0 1px 3px 0 rgba(0,0,0,0.1);
  width: 100%; min-height: 178px; flex: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
  background: #fff; padding: 0 8px;
  border: 1px solid #e4e4e7; border-radius: 20px;
  font-size: 16px; font-weight: 700; color: #27272a; line-height: 1.25;
}

.home-cap-card--system .home-cap-card__icon-box {
  box-shadow: 0 1px 2px -1px rgba(0,0,0,0.1), 0 1px 3px 0 rgba(0,0,0,0.1);
  width: 64px;
  display: flex; flex-direction: column; gap: 3px;
  background: linear-gradient(180deg, #eef2ff 0%, #dbeafe 100%);
  padding: 17px; border-radius: 14px;
}

.home-cap-card--system .bar-group {
  padding: 3px; border: 3px solid #0b1795; border-radius: 3px;
}

.home-cap-card--system .bar-line {
  width: 3px; height: 0; border-top: 3px solid #0b1795; border-radius: 2.67px;
}

/* Standard top-row cards */
.home-cap-card {
  box-shadow: 0 4px 16px 0 rgba(0,0,0,0.04);
  width: 100%; min-height: 178px; flex: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
  background: #fff; padding: 0 8px;
  border: 1px solid #e4e4e7; border-radius: 20px;
  font-size: 16px; font-weight: 700; color: #27272a; line-height: 1.25;
  transition: box-shadow 0.2s, transform 0.2s;
}

.home-cap-card:hover { box-shadow: 0 8px 24px rgba(11,23,149,0.1); transform: translateY(-2px); }

.home-cap-card__icon {
  background: linear-gradient(180deg, #eef2ff 0%, #dbeafe 100%);
  padding: 12px; border-radius: 12px;
}

.home-cap-card__svg { height: 32px; width: auto; }

/* Bottom-row cards slightly taller */
.home-cap-card--lg {
  min-height: 198px; padding-left: 29px; padding-right: 28px;
}

.home-cap-card--lg .home-cap-card__icon { margin-top: -10px; }

.home-cap-card p { font-size: 16px; font-weight: 700; color: #27272a; }


/* ─────────────────────────────────────────────
   WHY CHOOSE SYNAPSE  (white, list + stat)
   ───────────────────────────────────────────── */
.home-why {
  background: #fff;
  padding: 96px 104px 96px 120px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 65px;
}

.home-why__inner {
  width: 100%; max-width: 1280px;
  display: flex; align-items: flex-start; gap: 64px;
  align-self: center; padding-right: 16px;
}

.home-why__left {
  container: header-container20 / inline-size;
  width: 100%; flex: 1; flex-grow: 1;
  display: flex; flex-direction: column; gap: 16px; align-items: flex-start;
  color: #27272a; font-size: 18px; font-weight: 700; line-height: 1.25;
}

.home-why__title {
  --min-font-size: 24; --max-font-size: 40; font-size: var(--interpolate);
  font-weight: 700; color: transparent;
  background: linear-gradient(135deg, #0b1795, #1e40af);
  -webkit-background-clip: text; background-clip: text;
  line-height: 1.3; align-self: stretch;
}

.home-why__subtitle {
  color: #3f3f46;
  --min-font-size: 16; --max-font-size: 20; font-size: var(--interpolate);
  font-weight: 600; line-height: 1.5;
}

.home-why__reasons {
  width: 100%; display: flex; flex-direction: column; gap: 16px;
}

.home-why__reason {
  display: flex; align-items: center; gap: 16px;
  background: #fff; padding: 20px;
  border: 1px solid #e4e4e7; border-radius: 16px;
  font-size: 18px; font-weight: 700; color: #27272a;
}

.home-why__reason-icon {
  box-shadow: 0 1px 2px -1px rgba(0,0,0,0.1), 0 1px 3px 0 rgba(0,0,0,0.1);
  width: 48px; height: 48px; flex-shrink: 0;
  background: linear-gradient(180deg, #0b1795 0%, #1e40af 100%);
  padding: 12px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}

.home-why__reason-icon--dot { padding: 13px; }

.home-why__dot-outer {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
}

.home-why__dot-mid {
  width: 14px; height: 14px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
}

.home-why__dot-inner {
  width: 6px; height: 6px; border-radius: 50%; border: 2px solid #fff;
}

.home-why__svg { height: 24px; width: auto; }

/* Right col: photo card + stat overlay */
.home-why__right {
  position: relative; margin-top: 30px; flex-grow: 1;
}

.home-why__img-card {
  box-shadow: 0 16px 48px 0 rgba(0,0,0,0.12);
  width: 100%;
  background: url('../assets/header-container2.png') center/cover no-repeat;
  padding: 159px 32px 32px;
  border-radius: 24px; overflow: hidden;
}

.home-why__stat-card {
  box-shadow: 0 20px 60px 0 rgba(0,0,0,0.2);
  width: 230px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 8px;
  background: #fff; padding: 31px 32px 33px;
  border: 1px solid #e4e4e7; border-radius: 20px;
}

.home-why__stat-num {
  width: 164px; color: transparent;
  background: linear-gradient(135deg, #0b1795, #1e40af);
  -webkit-background-clip: text; background-clip: text;
  font-size: 60px; font-weight: 700; line-height: 1;
}

.home-why__stat-label {
  align-self: stretch; color: #27272a;
  font-size: 19px; font-weight: 600; line-height: 1.25; text-align: center;
}

.home-why__blob {
  position: absolute; filter: blur(40px); border-radius: 50%;
}

.home-why__blob--1 {
  z-index: 1; top: -16px; right: 16px; opacity: 0.5;
  width: 96px; height: 96px;
  background: linear-gradient(180deg, #eef2ff 0%, #dbeafe 100%);
}

.home-why__blob--2 {
  z-index: 2; bottom: 30px; left: -16px; opacity: 0.4;
  width: 128px; height: 128px;
  background: linear-gradient(180deg, #bfdbfe 0%, #93c5fd 100%);
}


/* ─────────────────────────────────────────────
   CTA BANNER
   ───────────────────────────────────────────── */
.home-cta {
  position: relative; z-index: 3;
  background: #fff; padding: 21px 120px;
  border-top: 2px solid #0b1795;
  display: flex; flex-direction: column; align-items: center;
}

.home-cta__inner {
  width: 100%; max-width: 1280px;
  display: flex; align-items: center;
  justify-content: space-between; padding-bottom: 1px;
}

.home-cta__text {
  width: 646px; flex-shrink: 0;
  display: flex; flex-direction: column; align-items: flex-start; gap: 7px; text-align: left;
}

.home-cta__label {
  display: flex; justify-content: center;
  color: #64748b; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.32px;
  padding: 1px 11px 3px; border: 1px solid #cbd5e1; border-radius: 9999px;
  background: #fff; align-self: flex-start;
}

.home-cta__title {
  margin-top: 1px; align-self: stretch;
  color: #0b1795; font-size: 28px; font-weight: 700; line-height: 1.2;
}

.home-cta__desc {
  color: #475569; font-size: 14px; font-weight: 600; line-height: 1.625;
}

.home-cta__btn {
  box-shadow: 0 1px 2px -1px rgba(0,0,0,0.1), 0 1px 3px 0 rgba(0,0,0,0.1);
  margin-top: 1px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  color: #0b1795; font-size: 15px; font-weight: 700; line-height: 1.5;
  background: #fff; padding: 9px 31px 11px 28px;
  border: 2px solid #0b1795; border-radius: 10px;
  transition: filter 0.2s; white-space: nowrap;
}

.home-cta__btn-icon {
  margin-top: 7px; width: 11px; height: 11px; flex-shrink: 0;
}


/* ════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════ */

@media (max-width: 1280px) {
  .home-hero, .home-about, .home-services, .home-why, .home-approach, .home-cta { padding-left: 48px; padding-right: 48px; }
  .home-hero { padding: 60px 48px 0; }
  .home-why { padding: 96px 48px; }
  .home-cta { padding: 21px 48px; }
  .home-industries { padding: 72px 48px; }
  .home-capabilities { padding: 96px 48px; }
  .home-about__left { margin-right: 0; }
  .home-about__points { padding-right: 0; }
}

@media (max-width: 1024px) {
  .home-hero__content { padding: 0 48px; }
  .home-about__inner { flex-direction: column; }
  .home-services__cards { gap: 20px; }
  .home-approach__steps { grid-template-columns: repeat(2, 1fr); }
  .home-capabilities__row-top,
  .home-capabilities__row-bottom { flex-wrap: wrap; }
  .home-cap-card, .home-cap-card--system { min-width: calc(33.33% - 14px); flex: none; }
  .home-why__inner { flex-direction: column; }
  .home-why__right { width: 100%; margin-top: 0; }
  .home-industry-card { width: calc(25% - 15px); }
}

@media (max-width: 768px) {
  .home-hero { padding: 48px 24px 0; }
  .home-hero__content { padding: 0 24px; }
  .home-hero__img-wrap { height: 220px; }
  .home-about, .home-services, .home-why, .home-approach { padding: 64px 24px; }
  .home-cta { padding: 24px; }
  .home-cta__inner { flex-direction: column; gap: 24px; align-items: flex-start; }
  .home-cta__text { width: 100%; }
  .home-services__cards { flex-direction: column; }
  .home-stats { flex-wrap: wrap; gap: 16px; }
  .home-stat { min-width: calc(50% - 8px); }
  .home-stat__num { font-size: 36px; }
  .home-approach__steps { grid-template-columns: 1fr 1fr; gap: 12px; }
  .home-industry-card { width: calc(33.33% - 14px); }
  .home-cap-card, .home-cap-card--system { min-width: calc(50% - 10px); }
  .home-why__img-card { padding-top: 80px; }
  .home-industries { padding: 64px 24px; }
  .home-capabilities { padding: 64px 24px; }
  .home-values{
       flex-direction: column;
  }
}

@media (max-width: 480px) {
  .home-hero__content { padding: 0 16px; }
  .home-hero__actions { flex-direction: column; width: 100%; }
  .home-hero__btn-outline, .home-hero__btn-primary { justify-content: center; width: 100%; }
  .home-stat__num { font-size: 28px; }
  .home-industry-card { width: calc(50% - 10px); }
  .home-cap-card, .home-cap-card--system { min-width: calc(50% - 6px); }
  .home-services__link { width: 100%; min-width: 0; justify-content: center; }
  .home-approach__steps { grid-template-columns: 1fr; }
  .home-about, .home-services, .home-why, .home-approach { padding: 48px 20px; }
}
