:root {
  --ink: #122033;
  --muted: #607086;
  --line: #d8e1eb;
  --soft-line: #e9eef5;
  --paper: #ffffff;
  --field: #f7fafc;
  --wash: #f3f7fb;
  --navy: #0f2747;
  --navy-2: #173b66;
  --amber: #c98226;
  --green: #2c7a62;
  --shadow: 0 18px 45px rgba(15, 39, 71, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--soft-line);
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(100% - 32px, var(--max));
  min-height: 72px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: var(--navy);
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(15, 39, 71, 0.18);
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #34445a;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--navy);
}

.nav-links .button-primary[aria-current="page"],
.nav-links .button-primary:hover {
  color: #fff;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--navy);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #fff;
  background: var(--navy);
}

.button-primary:hover {
  background: var(--navy-2);
}

.button-secondary {
  color: var(--navy);
  background: #fff;
}

.button-light {
  color: var(--navy);
  background: #fff;
  border-color: #fff;
}

.section {
  padding: 86px 0;
}

.section-soft {
  background: var(--wash);
}

.wrap {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  align-items: center;
  gap: 58px;
}

.hero {
  padding: 72px 0 44px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.94) 46%, rgba(255,255,255,0.7) 100%),
    var(--wash);
}

.hero h1,
.page-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 6vw, 70px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero p,
.page-hero p,
.section-lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 19px;
}

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

.hero-media {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  margin-top: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.trust-item {
  min-height: 96px;
  padding: 20px;
  background: #fff;
}

.trust-item strong {
  display: block;
  font-size: 15px;
}

.trust-item span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.section-head h2,
.section-title {
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.06;
  letter-spacing: 0;
}

.section-head p {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.2;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.card-link {
  display: inline-block;
  margin-top: 20px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.icon-box {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  place-items: center;
  color: var(--navy);
  background: #eef4fa;
  border-radius: 8px;
  font-weight: 900;
}

.industry-list,
.proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.industry-list li,
.proof-list li {
  padding: 10px 13px;
  color: #284057;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  font-size: 14px;
  font-weight: 700;
}

.process {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.process li {
  counter-increment: step;
  min-height: 138px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  list-style: none;
}

.process li::before {
  content: "0" counter(step);
  display: block;
  margin-bottom: 18px;
  color: var(--amber);
  font-weight: 900;
}

.cta-band {
  padding: 44px;
  color: #fff;
  background: var(--navy);
  border-radius: var(--radius);
}

.cta-band h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
}

.cta-band p {
  max-width: 720px;
  margin: 16px 0 26px;
  color: #c8d6e5;
}

.page-hero {
  padding: 82px 0;
  background: linear-gradient(135deg, #f7fafc 0%, #eef4fa 100%);
}

.case-card {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.case-card + .case-card {
  margin-top: 20px;
}

.case-label {
  color: var(--amber);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.case-card h2 {
  margin: 10px 0 16px;
  font-size: 30px;
  line-height: 1.12;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.case-grid h3 {
  margin: 0 0 8px;
  font-size: 15px;
}

.case-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.rfq-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 24px;
  align-items: start;
}

.checklist {
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.checklist li {
  padding: 12px 0;
  border-bottom: 1px solid var(--soft-line);
  color: #33455d;
  font-weight: 700;
}

.form-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.field-full {
  grid-column: 1 / -1;
}

label {
  display: block;
  margin-bottom: 7px;
  color: #263950;
  font-size: 13px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--field);
  font: inherit;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.hint {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 18px 0 22px;
  color: var(--muted);
  font-size: 13px;
}

.consent input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
}

.hidden-field {
  position: absolute;
  left: -9999px;
}

.site-footer {
  color: #c8d6e5;
  background: #0d1e33;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr;
  gap: 36px;
  padding: 54px 0;
}

.site-footer h2,
.site-footer h3,
.site-footer strong {
  color: #fff;
}

.site-footer a {
  color: #fff;
  text-decoration: none;
}

.footer-list {
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
}

.footer-list li {
  margin: 8px 0;
}

.footer-bottom {
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: #91a4bc;
  font-size: 13px;
}

@media (max-width: 920px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }

  .nav-links {
    width: 100%;
    flex-wrap: wrap;
    gap: 14px;
  }

  .split,
  .rfq-layout,
  .case-card {
    grid-template-columns: 1fr;
  }

  .trust-strip,
  .grid-3,
  .grid-2,
  .process,
  .case-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    padding-top: 44px;
  }
}

@media (max-width: 640px) {
  .section,
  .page-hero {
    padding: 58px 0;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 40px;
  }

  .section-head {
    display: block;
  }

  .section-head p {
    margin-top: 14px;
  }

  .trust-strip,
  .grid-3,
  .grid-2,
  .process,
  .case-grid,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta-band {
    padding: 30px 22px;
  }

  .form-card,
  .card,
  .case-card {
    padding: 22px;
  }
}

/* Home page visual rebuild based on the supplied reference mockup. */
.home-page {
  --home-blue: #0b376d;
  --home-navy: #082b58;
  --home-deep: #031f45;
  --home-text: #102447;
  --home-muted: #5d7190;
  --home-line: #dbe8f5;
  --home-glow: 0 18px 55px rgba(14, 63, 112, 0.20);
  --home-max: 1250px;
  color: var(--home-text);
  background: #eef7ff;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif;
}

.home-page a {
  text-decoration: none;
}

.home-wrap {
  width: min(100% - 76px, var(--home-max));
  margin: 0 auto;
}

.home-hero-shell {
  padding: 36px 0 42px;
  background: radial-gradient(circle at 50% 0%, #f8fcff 0%, #edf7ff 42%, #e8f4ff 100%);
}

.home-hero-card {
  position: relative;
  overflow: hidden;
  width: min(100% - 72px, 1240px);
  min-height: 860px;
  margin: 0 auto;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.65);
  border-radius: 30px;
  box-shadow: 0 24px 60px rgba(12, 55, 105, 0.23);
}

.home-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.home-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 36, 76, 0.72) 0%, rgba(8, 43, 88, 0.55) 38%, rgba(8, 43, 88, 0.12) 78%),
    linear-gradient(180deg, rgba(15, 58, 105, 0.18) 0%, rgba(4, 24, 53, 0.56) 100%);
}

.home-nav {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 34px 0;
}

.home-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
}

.home-logo-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  flex: 0 0 48px;
  color: transparent;
  border: 0;
  border-radius: 0;
  background: url("../img/logo-yh-transparent.webp") center / contain no-repeat;
  font-size: 0;
  filter: drop-shadow(0 2px 8px rgba(0, 36, 82, 0.16));
}

.home-logo-mark i {
  display: none;
}

.home-logo strong {
  display: block;
  color: inherit;
  font-size: 17px;
  line-height: 1.05;
}

.home-logo small {
  display: block;
  margin-top: 4px;
  color: rgba(255,255,255,0.82);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
}

.home-menu {
  display: flex;
  align-items: center;
  gap: 30px;
  color: rgba(255,255,255,0.88);
  font-size: 13px;
  font-weight: 800;
}

.home-menu a {
  position: relative;
  color: inherit;
  padding: 10px 0;
}

.home-menu a:hover {
  color: #fff;
}

.home-menu a:not(.home-nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: currentColor;
  border-radius: 999px;
  content: "";
  opacity: 0;
  transform: scaleX(0.15);
  transition: opacity 180ms ease, transform 180ms ease;
}

.home-menu a:not(.home-nav-cta):hover::after,
.home-menu a:not(.home-nav-cta)[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.home-nav-cta {
  min-width: 150px;
  padding: 16px 22px;
  color: #fff !important;
  background: #06356f;
  border-radius: 9px;
  text-align: center;
  box-shadow: 0 12px 24px rgba(2, 24, 54, 0.22);
}

.home-menu .home-nav-cta {
  padding: 16px 22px;
}

.home-hero-content {
  position: relative;
  z-index: 2;
  width: min(710px, 62%);
  padding: 116px 0 0 58px;
}

.home-hero-content h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(48px, 5.05vw, 66px);
  line-height: 0.98;
  letter-spacing: 0;
  text-shadow: 0 10px 24px rgba(0,0,0,0.18);
}

.home-hero-content p {
  max-width: 500px;
  margin: 26px 0 20px;
  color: rgba(255,255,255,0.94);
  font-size: 19px;
  font-weight: 650;
  line-height: 1.35;
}

.home-hero-content > strong {
  display: block;
  margin-top: 18px;
  color: #fff;
  font-size: 18px;
}

.home-hero-actions {
  display: flex;
  gap: 18px;
  margin-top: 36px;
}

.home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.home-btn-primary {
  color: #fff;
  background: var(--home-navy);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 12px 24px rgba(4, 31, 69, 0.20);
}

.home-btn-ghost {
  color: #fff;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.72);
  backdrop-filter: blur(8px);
}

.home-btn-outline {
  color: var(--home-navy);
  border: 1px solid #174977;
  background: #fff;
}

.home-btn-light {
  color: var(--home-navy);
  background: #fff;
  border: 1px solid #fff;
  min-width: 244px;
}

.home-stats {
  position: absolute;
  right: 54px;
  bottom: 58px;
  left: 54px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.home-stats div {
  display: grid;
  grid-template-columns: 44px 1fr;
  column-gap: 12px;
  align-items: center;
  color: #fff;
}

.home-stats i {
  grid-row: span 2;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.72);
  border-radius: 50%;
  font-size: 20px;
}

.home-stats strong {
  font-size: 38px;
  line-height: 0.92;
}

.home-stats span {
  color: rgba(255,255,255,0.86);
  font-size: 13px;
  font-weight: 800;
}

.home-section {
  padding: 46px 0;
  background: #fafdff;
}

.home-about {
  padding-top: 62px;
}

.home-two-col {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 88px;
}

.home-copy {
  max-width: 440px;
}

.home-kicker {
  display: block;
  margin-bottom: 14px;
  color: #1b78d0;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
}

.home-copy h2,
.home-center-head h2,
.home-final-card h2 {
  margin: 0;
  color: var(--home-text);
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.08;
  letter-spacing: 0;
}

.home-copy p {
  margin: 22px 0 0;
  color: #334967;
  font-size: 15px;
  font-weight: 650;
}

.home-copy .home-btn {
  margin-top: 28px;
}

.home-image-frame {
  overflow: hidden;
  border-radius: 18px;
  box-shadow: var(--home-glow);
}

.home-image-frame img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.home-center-head {
  text-align: center;
}

.home-services {
  padding-top: 40px;
  border-top: 1px solid rgba(20, 72, 116, 0.08);
}

.home-service-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin-top: 26px;
  border-top: 1px solid var(--home-line);
  border-bottom: 1px solid var(--home-line);
}

.home-service-grid article {
  min-height: 188px;
  padding: 24px 18px 20px;
  text-align: center;
  border-right: 1px solid var(--home-line);
}

.home-service-grid article:last-child {
  border-right: 0;
}

.home-service-grid i {
  color: #315f9c;
  font-size: 43px;
}

.home-service-grid h3 {
  margin: 18px 0 10px;
  color: #17345b;
  font-size: 14px;
}

.home-service-grid p {
  margin: 0;
  color: #3f526c;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.4;
}

.home-strength {
  margin-top: 38px;
  padding: 34px 0 0;
  border-top: 1px solid rgba(20, 72, 116, 0.08);
}

.home-strength-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
  text-align: center;
}

.home-strength-head .home-kicker {
  margin: 0;
}

.home-strength-head h2 {
  max-width: 650px;
  margin: 0;
  color: var(--home-text);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.1;
  letter-spacing: 0;
}

.home-strength-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.home-strength-grid article {
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  gap: 16px;
  min-height: 92px;
  padding: 20px 22px;
  background: #fff;
  border: 1px solid var(--home-line);
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(16, 65, 112, 0.06);
}

.home-strength-grid i {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #0d65c5;
  background: #eaf3fc;
  border-radius: 8px;
  font-size: 22px;
}

.home-strength-grid span {
  color: #17345b;
  font-size: 15px;
  font-weight: 850;
  line-height: 1.34;
}

.home-industries {
  padding-top: 34px;
}

.home-industry-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.home-industry-grid a {
  display: block;
  color: var(--home-text);
  text-align: center;
}

.home-industry-grid img {
  width: 100%;
  aspect-ratio: 1.32 / 1;
  object-fit: cover;
  border-radius: 9px;
  box-shadow: 0 10px 18px rgba(12, 51, 94, 0.12);
}

.home-industry-grid strong {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.2;
}

.home-industries .home-btn {
  margin: 34px auto 0;
}

.home-why {
  background: linear-gradient(180deg, #fafdff 0%, #f4faff 100%);
}

.home-why .home-two-col {
  grid-template-columns: 0.75fr 1.25fr;
}

.home-check-list {
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.home-check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 14px 0;
  color: #263e5d;
  font-size: 14px;
  font-weight: 760;
}

.home-check-list i {
  display: grid;
  width: 23px;
  height: 23px;
  flex: 0 0 23px;
  place-items: center;
  color: #fff;
  background: var(--home-navy);
  border-radius: 50%;
  font-size: 11px;
}

.home-process {
  border-top: 1px solid rgba(20, 72, 116, 0.08);
}

.home-process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.home-process-line::before {
  position: absolute;
  top: 42px;
  right: 8%;
  left: 8%;
  height: 1px;
  border-top: 2px dotted #9eb8d5;
  content: "";
}

.home-process-line li {
  position: relative;
  text-align: center;
}

.home-process-line span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 86px;
  height: 86px;
  margin: 0 auto 16px;
  place-items: center;
  color: #1e78d8;
  background: #fafdff;
  border: 2px solid #9eb8d5;
  border-radius: 50%;
  font-size: 34px;
}

.home-process-line b {
  display: block;
  margin-bottom: 12px;
  color: var(--home-navy);
}

.home-process-line strong {
  display: block;
  color: #17345b;
  font-size: 14px;
}

.home-process-line p {
  max-width: 150px;
  margin: 8px auto 0;
  color: #536986;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.35;
}

.home-cases {
  padding-top: 34px;
}

.home-case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.home-case-grid article {
  display: grid;
  grid-template-columns: 158px 1fr;
  gap: 16px;
  min-height: 204px;
  padding: 14px;
  border: 1px solid var(--home-line);
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(18, 64, 112, 0.08);
}

.home-case-grid img {
  width: 100%;
  height: 100%;
  min-height: 176px;
  object-fit: cover;
  border-radius: 10px;
}

.home-case-grid span {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 4px 9px;
  color: #1d6ec6;
  border: 1px solid #aad0f0;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
}

.home-case-grid h3 {
  margin: 0;
  color: #17345b;
  font-size: 18px;
  line-height: 1.1;
}

.home-case-grid p {
  margin: 10px 0 12px;
  color: #536986;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.4;
}

.home-case-grid a {
  color: var(--home-navy);
  font-size: 12px;
  font-weight: 900;
}

.home-final-cta {
  padding: 10px 0 16px;
  background: #fafdff;
}

.home-final-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 140px;
  padding: 26px 58px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(5, 36, 83, 0.98), rgba(7, 57, 112, 0.78)),
    url("../img/home/hero-logistics.webp") center 64% / cover no-repeat;
  border-radius: 16px;
  box-shadow: var(--home-glow);
}

.home-final-card h2,
.home-final-card p {
  color: #fff;
}

.home-final-card p {
  margin: 8px 0 0;
  font-size: 17px;
  font-weight: 720;
}

.home-footer {
  color: #d5e6f7;
  background: radial-gradient(circle at 10% 20%, #0b4383 0%, #052b59 34%, #021b3d 100%);
}

.home-footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr 0.86fr 1.1fr;
  gap: 62px;
  padding: 54px 0 40px;
}

.home-footer .home-logo {
  color: #fff;
}

.home-footer p {
  margin: 24px 0 0;
  color: #d5e6f7;
  font-size: 14px;
  line-height: 1.55;
}

.home-footer h3 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 16px;
}

.home-footer-grid > div > a:not(.home-logo) {
  display: block;
  margin: 10px 0;
  color: #d5e6f7;
  font-size: 14px;
}

.home-socials {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}

.home-socials a {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  color: #fff;
  background: #1c72c7;
  border-radius: 50%;
  font-size: 13px;
}

.home-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0 34px;
  color: #b6cde6;
  font-size: 13px;
}

.home-footer-bottom a {
  margin-left: 42px;
  color: #d5e6f7;
}

@media (max-width: 1100px) {
  .home-menu {
    gap: 16px;
  }

  .home-hero-content {
    width: 70%;
  }

  .home-service-grid,
  .home-industry-grid,
  .home-strength-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .home-service-grid article:nth-child(3) {
    border-right: 0;
  }

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

@media (max-width: 860px) {
  .home-wrap,
  .home-hero-card {
    width: min(100% - 28px, var(--home-max));
  }

  .home-hero-card {
    min-height: 920px;
  }

  .home-nav,
  .home-menu {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-menu {
    width: 100%;
    gap: 12px;
  }

  .home-nav-cta {
    min-width: 0;
  }

  .home-hero-content {
    width: auto;
    padding: 70px 24px 0;
  }

  .home-hero-content h1 {
    font-size: 48px;
  }

  .home-stats {
    right: 24px;
    left: 24px;
    grid-template-columns: 1fr 1fr;
  }

  .home-two-col,
  .home-why .home-two-col {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .home-copy {
    max-width: none;
  }

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

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

  .home-process-line::before {
    display: none;
  }

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

@media (max-width: 620px) {
  .home-hero-shell {
    padding-top: 14px;
  }

  .home-hero-card {
    min-height: 980px;
    border-radius: 20px;
  }

  .home-hero-content h1 {
    font-size: 38px;
  }

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

  .home-hero-actions,
  .home-final-card,
  .home-footer-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .home-stats,
  .home-service-grid,
  .home-industry-grid,
  .home-strength-grid,
  .home-footer-grid {
    grid-template-columns: 1fr;
  }

  .home-service-grid article,
  .home-service-grid article:nth-child(3) {
    border-right: 0;
    border-bottom: 1px solid var(--home-line);
  }

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

  .home-final-card {
    padding: 28px 24px;
  }

  .home-footer-bottom a {
    margin: 0 22px 0 0;
  }
}

.industries-page {
  background: linear-gradient(180deg, #eef8ff 0%, #f9fdff 100%);
}

.industries-page .home-wrap {
  width: min(100% - 42px, 1360px);
}

.industries-page::before {
  position: fixed;
  inset: 18px;
  z-index: -1;
  border: 1px solid rgba(172, 205, 232, 0.78);
  border-radius: 28px;
  background: rgba(255,255,255,0.36);
  box-shadow: inset 0 0 80px rgba(122, 178, 221, 0.12);
  content: "";
}

.ind-hero {
  padding: 26px 0 42px;
}

.ind-hero-card {
  position: relative;
  overflow: hidden;
  min-height: 680px;
  color: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 48px rgba(10, 47, 88, 0.22);
}

.ind-hero-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.ind-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 35, 78, 0.62) 0%, rgba(5, 35, 78, 0.42) 44%, rgba(5, 35, 78, 0.04) 82%);
}

.ind-hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  padding: 110px 0 0 66px;
}

.ind-hero-content h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(50px, 4.2vw, 62px);
  line-height: 1.06;
  letter-spacing: 0;
}

.ind-hero-content p {
  max-width: 670px;
  margin: 32px 0 0;
  color: #fff;
  font-size: 21px;
  font-weight: 650;
  line-height: 1.55;
}

.ind-section {
  padding: 36px 0;
}

.ind-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.ind-grid article {
  overflow: hidden;
  border: 1px solid #d8e7f3;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(15, 61, 111, 0.10);
}

.ind-grid img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
}

.ind-grid div {
  padding: 24px 20px 22px;
}

.ind-grid article > div > i {
  color: #1261bd;
  font-size: 34px;
}

.ind-grid h3 {
  margin: 14px 0 14px;
  color: #0f2b57;
  font-size: 18px;
  line-height: 1.18;
}

.ind-grid p {
  min-height: 66px;
  margin: 0;
  color: #2e4668;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.45;
}

.ind-grid a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  color: #0a3f85;
  font-size: 14px;
  font-weight: 900;
}

.ind-grid a i {
  font-size: 14px;
}

.ind-support {
  padding-top: 10px;
}

.ind-support-panel {
  padding: 34px 18px 42px;
  border-radius: 14px;
  background: rgba(244,250,255,0.94);
}

.ind-support-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.ind-support-grid article {
  min-height: 230px;
  padding: 28px 16px 22px;
  text-align: center;
  border: 1px solid #d8e7f3;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(15, 61, 111, 0.08);
}

.ind-support-grid i {
  color: #0a3f85;
  font-size: 52px;
}

.ind-support-grid h3 {
  margin: 20px 0 16px;
  color: #0f2b57;
  font-size: 16px;
  line-height: 1.15;
}

.ind-support-grid p {
  margin: 0;
  color: #2f4a6e;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.4;
}

.ind-final {
  padding: 0 0 34px;
}

.ind-final-card {
  min-height: 190px;
  padding: 42px 68px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(4, 35, 82, 0.98) 0%, rgba(5, 46, 96, 0.86) 44%, rgba(7, 67, 128, 0.35) 100%),
    url("../img/industries/hero-industries.webp") center 88% / cover no-repeat;
  border-radius: 14px;
  box-shadow: 0 18px 36px rgba(8, 48, 95, 0.18);
}

.ind-final-card h2 {
  max-width: 620px;
  margin: 0;
  color: #fff;
  font-size: 32px;
  line-height: 1.15;
}

.ind-final-card p {
  max-width: 520px;
  margin: 14px 0 24px;
  color: #fff;
  font-size: 17px;
  font-weight: 650;
  line-height: 1.45;
}

@media (max-width: 1100px) {
  .ind-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .ind-support-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 860px) {
  .ind-hero-card {
    min-height: 640px;
  }

  .ind-hero-content {
    padding: 72px 24px 0;
  }

  .ind-hero-content h1 {
    font-size: 42px;
  }

  .ind-hero-content p {
    font-size: 17px;
  }

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

  .ind-support-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .industries-page::before {
    inset: 8px;
    border-radius: 18px;
  }

  .ind-grid,
  .ind-support-grid {
    grid-template-columns: 1fr;
  }

  .ind-final-card {
    padding: 28px 22px;
  }
}

.case-page {
  background: linear-gradient(180deg, #eaf7ff 0%, #f8fcff 48%, #ffffff 100%);
}

.case-page .home-wrap {
  width: min(100% - 120px, 900px);
}

.case-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 4;
  padding: 32px 0 0;
  background: transparent;
}

.case-header .cap-nav {
  width: min(100% - 86px, 1150px);
  color: #fff;
}

.case-header .home-logo,
.case-header .home-menu a {
  color: #fff;
  text-shadow: 0 1px 10px rgba(0, 38, 86, 0.24);
}

.case-header .home-logo-mark {
  color: transparent;
}

.case-header .home-logo small {
  color: rgba(255, 255, 255, 0.88);
}

.case-header .home-menu a::after {
  background: #fff;
}

.case-header .home-nav-cta {
  color: #fff;
  background: #052b61;
  box-shadow: 0 12px 24px rgba(2, 34, 78, 0.28);
  text-shadow: none;
}

.case-hero {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  margin-top: 0;
  padding-top: 104px;
  background:
    linear-gradient(180deg, rgba(3, 37, 82, 0.46) 0%, rgba(3, 37, 82, 0.24) 72px, rgba(3, 37, 82, 0) 170px),
    linear-gradient(90deg, rgba(235, 248, 255, 0.98) 0%, rgba(235, 248, 255, 0.84) 34%, rgba(235, 248, 255, 0.32) 58%, rgba(235, 248, 255, 0.06) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 72%, rgba(230, 246, 255, 0.78) 100%),
    url("../img/case-studies/hero-port-truck.webp") center center / cover no-repeat;
  border-bottom: 1px solid rgba(132, 179, 215, 0.36);
}

.case-hero::before {
  content: none;
}

.case-hero::after {
  content: none;
}

.case-hero-inner {
  position: relative;
  z-index: 1;
  min-height: 396px;
  display: flex;
  align-items: center;
}

.case-hero-copy {
  max-width: 510px;
  padding: 6px 0 0;
}

.case-pill {
  display: inline-flex;
  align-items: center;
  height: 18px;
  padding: 0 8px;
  color: #fff;
  background: #8cc9ff;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.case-hero h1 {
  margin: 18px 0 14px;
  color: #102447;
  font-size: clamp(36px, 4.35vw, 45px);
  line-height: 1.08;
  letter-spacing: 0;
}

.case-hero p {
  max-width: 500px;
  margin: 0 0 30px;
  color: #172d50;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.48;
}

.case-section {
  padding: 40px 0 24px;
}

.case-study-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.study-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid #d8e7f3;
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(16, 65, 112, 0.11);
}

.study-card > img {
  display: block;
  width: 100%;
  height: 150px;
  max-width: none;
  object-fit: cover;
}

.study-body {
  padding: 10px 12px 12px;
}

.study-body > span {
  display: inline-flex;
  align-items: center;
  height: 19px;
  padding: 0 7px;
  margin-bottom: 7px;
  color: #0f5fb1;
  background: #ddecff;
  border-radius: 5px;
  font-size: 10px;
  font-weight: 800;
}

.study-body h2 {
  min-height: 36px;
  margin: 0 0 8px;
  color: #12284c;
  font-size: 16px;
  line-height: 1.14;
}

.study-body ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.study-body li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 7px;
  margin: 6px 0;
}

.study-body li i {
  color: #0b4f9c;
  font-size: 15px;
  line-height: 1;
}

.study-body li p {
  margin: 0;
  color: #2f4669;
  font-size: 9px;
  font-weight: 650;
  line-height: 1.28;
}

.study-body li strong {
  color: #102447;
  font-weight: 900;
}

.study-body > a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 8px;
  padding-top: 11px;
  color: #0b3e80;
  border-top: 1px solid #d9e6f2;
  font-size: 11px;
  font-weight: 900;
  text-decoration: none;
}

.study-body > a i {
  font-size: 12px;
}

.case-note {
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
  padding: 14px 48px;
  border: 1px solid #b9d8f1;
  border-radius: 16px;
  background: rgba(244, 251, 255, 0.92);
}

.case-note div {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #1475d6;
  background: #dcebff;
  border-radius: 50%;
  font-size: 31px;
}

.case-note p {
  margin: 0;
  color: #17345b;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.6;
}

.case-final {
  padding: 0 0 22px;
}

.case-final-card {
  display: grid;
  grid-template-columns: 62px 1fr auto;
  align-items: center;
  gap: 20px;
  min-height: 112px;
  padding: 20px 44px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(3, 31, 69, 1) 0%, rgba(5, 43, 89, 0.96) 46%, rgba(4, 43, 91, 0.62) 100%),
    url("../img/case-studies/global-cta-map.webp") right center / cover no-repeat;
  border-radius: 14px;
  box-shadow: 0 16px 30px rgba(6, 45, 92, 0.20);
}

.case-final-icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  color: #d8ecff;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  font-size: 23px;
}

.case-final-card h2,
.case-final-card p {
  margin: 0;
  color: #fff;
}

.case-final-card h2 {
  font-size: 26px;
  line-height: 1.1;
}

.case-final-card p {
  margin-top: 5px;
  font-size: 15px;
  font-weight: 650;
}

.case-final-card .home-btn {
  min-height: 48px;
  padding: 13px 30px;
}

.case-page .home-footer-grid {
  padding: 26px 0 20px;
}

.case-page .home-footer p {
  margin-top: 11px;
  font-size: 11px;
  line-height: 1.42;
}

.case-page .home-footer-grid > div > a:not(.home-logo) {
  margin: 5px 0;
  font-size: 11px;
}

.case-page .home-footer h3 {
  margin-bottom: 9px;
  font-size: 13px;
}

.case-page .home-socials {
  margin-top: 12px;
}

.case-page .home-footer-bottom {
  padding: 12px 0 14px;
  font-size: 10px;
}

@media (max-width: 860px) {
  .case-page .home-wrap {
    width: min(100% - 42px, 900px);
  }

  .case-header {
    padding-top: 22px;
  }

  .case-header .cap-nav {
    width: min(100% - 42px, 1150px);
  }

  .case-hero {
    min-height: 650px;
    padding-top: 128px;
    background:
      linear-gradient(180deg, rgba(3, 37, 82, 0.44) 0%, rgba(3, 37, 82, 0.22) 86px, rgba(3, 37, 82, 0) 190px),
      linear-gradient(180deg, rgba(235, 248, 255, 0.98) 0%, rgba(235, 248, 255, 0.82) 46%, rgba(235, 248, 255, 0.24) 100%),
      linear-gradient(90deg, rgba(235, 248, 255, 0.95) 0%, rgba(235, 248, 255, 0.46) 58%, rgba(235, 248, 255, 0.12) 100%),
      url("../img/case-studies/hero-port-truck.webp") center top / cover no-repeat;
  }

  .case-hero-inner {
    min-height: 522px;
  }

  .case-hero-copy {
    padding-top: 10px;
  }

  .case-hero h1 {
    font-size: 40px;
  }

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

  .case-study-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .case-note,
  .case-final-card {
    grid-template-columns: 1fr;
    padding: 28px;
  }
}

@media (max-width: 620px) {
  .case-hero {
    min-height: 680px;
    padding-top: 154px;
    background:
      linear-gradient(180deg, rgba(3, 37, 82, 0.48) 0%, rgba(3, 37, 82, 0.24) 118px, rgba(3, 37, 82, 0) 230px),
      linear-gradient(180deg, rgba(235, 248, 255, 0.98) 0%, rgba(235, 248, 255, 0.86) 56%, rgba(235, 248, 255, 0.20) 100%),
      url("../img/case-studies/hero-port-truck.webp") center bottom / cover no-repeat;
  }

  .case-hero-inner {
    min-height: 526px;
  }

  .case-section {
    padding-top: 38px;
  }

  .case-study-grid {
    grid-template-columns: 1fr;
  }

  .study-card > img {
    height: 200px;
  }

  .case-final-card h2 {
    font-size: 28px;
  }

  .case-final-card p {
    font-size: 16px;
  }
}

.capabilities-page {
  min-height: 100vh;
  background: radial-gradient(circle at 50% 0%, #f7fcff 0%, #eaf6ff 48%, #f9fdff 100%);
}

.cap-header {
  padding: 32px 0 18px;
}

.cap-nav {
  width: min(100% - 76px, var(--home-max));
  margin: 0 auto;
  padding: 0;
  color: var(--home-text);
}

.cap-nav .home-logo-mark {
  color: transparent;
}

.cap-nav .home-logo small {
  color: #24466d;
}

.cap-menu {
  color: #163459;
  font-size: 16px;
}

.cap-menu a:hover,
.cap-menu a[aria-current="page"] {
  color: var(--home-navy);
}

.cap-menu .home-nav-cta {
  color: #fff;
}

.cap-hero {
  padding: 34px 0 36px;
}

.cap-hero-card {
  position: relative;
  overflow: hidden;
  min-height: 540px;
  color: #fff;
  border-radius: 24px;
  box-shadow: 0 24px 54px rgba(10, 47, 88, 0.22);
}

.cap-hero-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.cap-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 31, 69, 0.90) 0%, rgba(4, 31, 69, 0.72) 42%, rgba(4, 31, 69, 0.20) 78%),
    linear-gradient(180deg, rgba(4, 31, 69, 0.18), rgba(4, 31, 69, 0.32));
}

.cap-hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
  padding: 82px 0 0 60px;
}

.cap-hero-content h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(44px, 4.45vw, 64px);
  line-height: 1.05;
  letter-spacing: 0;
}

.cap-hero-content p {
  max-width: 700px;
  margin: 30px 0 0;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.55;
}

.cap-hero .home-btn-ghost {
  background: rgba(255,255,255,0.06);
}

.cap-section {
  padding: 34px 0;
}

.cap-core {
  padding-top: 8px;
}

.cap-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 28px;
}

.cap-card-grid article {
  min-height: 242px;
  padding: 44px 30px 30px;
  text-align: center;
  border: 1px solid #dce9f5;
  border-radius: 14px;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 16px 32px rgba(20, 76, 126, 0.12);
}

.cap-card-grid i {
  color: #0a2d64;
  font-size: 66px;
  line-height: 1;
  -webkit-text-stroke: 0.4px currentColor;
}

.cap-card-grid h3 {
  margin: 32px 0 14px;
  color: #0f2b57;
  font-size: 20px;
  line-height: 1.15;
}

.cap-card-grid p {
  max-width: 300px;
  margin: 0 auto;
  color: #2c4364;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.45;
}

.cap-process {
  padding-top: 8px;
}

.cap-process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 18px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.cap-process-line::before {
  position: absolute;
  top: 27px;
  right: 5%;
  left: 5%;
  height: 2px;
  border-top: 3px dotted #99b8d8;
  content: "";
}

.cap-process-line li {
  position: relative;
  text-align: center;
}

.cap-process-line b {
  position: relative;
  z-index: 1;
  display: grid;
  width: 52px;
  height: 52px;
  margin: 0 auto 22px;
  place-items: center;
  color: #fff;
  background: #2f80e7;
  border: 4px solid #dbeaf9;
  border-radius: 50%;
  font-size: 24px;
  box-shadow: 0 4px 12px rgba(24, 92, 174, 0.22);
}

.cap-process-line i {
  display: block;
  height: 38px;
  color: #0a2d64;
  font-size: 32px;
}

.cap-process-line strong {
  display: block;
  min-height: 42px;
  margin-top: 8px;
  color: #0f2b57;
  font-size: 14px;
  line-height: 1.12;
}

.cap-process-line p {
  margin: 8px 0 0;
  color: #2f4a6e;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.35;
}

.cap-complex {
  padding: 34px 34px 42px;
  color: #fff;
  background: linear-gradient(135deg, #063169 0%, #082a58 50%, #073d7c 100%);
  border-radius: 20px;
  box-shadow: 0 20px 42px rgba(5, 45, 93, 0.22);
}

.cap-complex h2 {
  margin: 0 0 28px;
  color: #fff;
  font-size: clamp(28px, 4vw, 40px);
  text-align: center;
}

.cap-complex-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.cap-complex-grid article {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  overflow: hidden;
  min-height: 238px;
  border: 1px solid rgba(255,255,255,0.42);
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
}

.cap-complex-grid img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.cap-complex-grid div {
  padding: 26px 22px;
}

.cap-complex-grid i {
  color: #fff;
  font-size: 36px;
}

.cap-complex-grid h3 {
  margin: 16px 0 12px;
  color: #fff;
  font-size: 25px;
  line-height: 1.1;
}

.cap-complex-grid p {
  margin: 0;
  color: #d7e7f8;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.42;
}

.cap-final {
  padding: 24px 0 36px;
}

.cap-final-card {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 130px;
  padding: 24px 62px;
  color: #fff;
  background: linear-gradient(90deg, #07336d, #021f4b);
  border-radius: 18px;
  box-shadow: 0 18px 34px rgba(6, 45, 92, 0.18);
}

.cap-final-icon {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  color: #0a2d64;
  background: #cfe4f7;
  border-radius: 50%;
  font-size: 36px;
}

.cap-final-card h2,
.cap-final-card p {
  margin: 0;
  color: #fff;
}

.cap-final-card h2 {
  font-size: 31px;
  line-height: 1.15;
}

.cap-final-card p {
  margin-top: 7px;
  font-size: 17px;
  font-weight: 650;
}

@media (max-width: 1100px) {
  .cap-menu {
    font-size: 14px;
  }

  .cap-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cap-process-line {
    grid-template-columns: repeat(4, 1fr);
    row-gap: 36px;
  }

  .cap-process-line::before {
    display: none;
  }

  .cap-complex-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .cap-nav {
    width: min(100% - 28px, var(--home-max));
  }

  .cap-hero-card {
    min-height: 620px;
  }

  .cap-hero-content {
    padding: 60px 24px 0;
  }

  .cap-hero-content h1 {
    font-size: 42px;
  }

  .cap-hero-content p {
    font-size: 17px;
  }

  .cap-final-card {
    grid-template-columns: 1fr;
    padding: 28px;
  }
}

@media (max-width: 620px) {
  .cap-header {
    padding-top: 18px;
  }

  .cap-card-grid,
  .cap-process-line {
    grid-template-columns: 1fr;
  }

  .cap-card-grid article {
    min-height: 0;
  }

  .cap-complex {
    padding: 26px 16px;
  }

  .cap-complex-grid article {
    grid-template-columns: 1fr;
  }

  .cap-complex-grid img {
    height: 190px;
  }
}
