:root {
  --blue: #082c8f;
  --mid-blue: #075cc8;
  --green: #45a832;
  --text: #0d2050;
  --muted: #30436a;
  --line: #dce4f1;
  --soft: #f4f8ff;
  --shadow: 0 12px 28px rgba(7, 37, 107, .08);
  --font-heading: Montserrat, Poppins, sans-serif;
  --font-body: Inter, Roboto, sans-serif;
  --h1-size: 44px;
  --h2-size: 32px;
  --h3-size: 24px;
  --h4-size: 20px;
  --body-size: 16px;
  --small-size: 14px;
  --caption-size: 12px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  background: #fff;
  font-family: var(--font-body);
  font-size: var(--body-size);
  font-weight: 400;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  color: var(--blue);
}

h1 {
  font-size: var(--h1-size);
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  font-size: var(--h2-size);
  font-weight: 600;
  line-height: 1.25;
}

h3 {
  font-size: var(--h3-size);
  font-weight: 600;
  line-height: 1.3;
}

h4 {
  font-size: var(--h4-size);
  font-weight: 500;
  line-height: 1.4;
}

.shell {
  width: min(100% - 88px, 1420px);
  margin-inline: auto;
}

.site-header {
  background: #fff;
  border-bottom: 1px solid #e8edf7;
  position: sticky;
  top: 0;
  z-index: 30;
}

.nav-shell {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 1 auto;
  min-width: 0;
}

.brand img { width: 292px; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #071947;
  font-size: 13px;
  font-weight: 600;
}

.main-nav > a:not(.btn) {
  min-height: 112px;
  display: grid;
  align-items: center;
  position: relative;
  white-space: nowrap;
}

.main-nav > a.active { color: var(--blue); }

.main-nav > a.active::after {
  content: "";
  width: 66px;
  height: 4px;
  border-radius: 9px;
  background: var(--mid-blue);
  position: absolute;
  left: 50%;
  top: 70%;
  transform: translateX(-50%);
}

.btn {
  border: 2px solid #c8d5ec;
  border-radius: 5px;
  min-height: 52px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--blue);
  background: #fff;
  font-weight: 600;
  font-size: var(--small-size);
  box-shadow: 0 4px 12px rgba(0, 44, 130, .08);
}

.btn-primary {
  background: linear-gradient(180deg, #0563d1 0%, #0047b4 100%);
  border-color: #004fbd;
  color: #fff;
}

.nav-cta {
  min-width: 186px;
}

.nav-cta .btn {
  width: 100%;
  min-height: 40px;
  padding: 0 18px;
  white-space: nowrap;
  line-height: 1;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  min-width: 44px;
  flex: 0 0 44px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 4px;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 3px;
  background: var(--blue);
  margin: 5px 0;
}

.hero {
  min-height: 642px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  position: relative;
  background-color: #f7f9fd;
  background-image: linear-gradient(90deg, rgba(247,250,255,.98) 0%, rgba(247,250,255,.95) 22%, rgba(247,250,255,.88) 38%, rgba(247,250,255,.64) 54%, rgba(247,250,255,.24) 74%, rgba(247,250,255,.06) 100%), url("../../images/slider/homepage-slider.png");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

.hero .shell {
  display: flex;
  align-items: center;
}

.hero-copy {
  width: 520px;
  padding: 42px 0 72px;
}

.hero h1 {
  margin: 0 0 26px;
  font-size: var(--h1-size);
  line-height: 1.2;
  font-weight: 700;
}

.hero h1 span,
.hero h2 span,
.green { color: var(--green); }

.hero h2 {
  margin: 0 0 28px;
  font-size: var(--h2-size);
  line-height: 1.25;
  color: var(--green);
  font-weight: 600;
}

.hero p {
  color: #142657;
  font-size: var(--body-size);
  margin: 0 0 30px;
  max-width: 560px;
}

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

.hero-actions .btn,
.product-actions .btn {
  min-height: 46px;
  padding-inline: 20px;
  border-width: 1px;
  box-shadow: none;
  letter-spacing: .01em;
}

.hero-actions .btn {
  background: rgba(255,255,255,.9);
}

.hero-actions .btn-primary,
.product-actions .btn-primary {
  color: #fff;
  border-color: rgba(0, 79, 189, .28);
  background: linear-gradient(180deg, rgba(5,99,209,.94) 0%, rgba(0,71,180,.92) 100%);
  box-shadow: 0 10px 20px rgba(0, 44, 130, .12);
}

.proof-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  margin-top: -86px;
  position: relative;
  z-index: 3;
}

.proof-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 12px;
  min-width: 172px;
  min-height: 74px;
  padding: 9px 14px;
  border: 1px solid rgba(220, 228, 241, .92);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 12px 26px rgba(8, 44, 143, .14);
  font-size: var(--caption-size);
  line-height: 1.4;
  font-weight: 600;
}

.proof-item img { width: 54px; }

.section { padding: 34px 0; }
.section.tight { padding: 22px 0; }
.section.tight.partnership-section { padding-top: 116px; }

.section-title {
  margin: 0 0 22px;
  text-align: center;
  color: var(--blue);
  font-size: var(--h2-size);
  line-height: 1.25;
  font-weight: 600;
}

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

.partner-strip {
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
  align-items: center;
  gap: 42px;
  max-width: 1040px;
  margin: 0 auto;
}

.partner-strip .divider,
.vertical-line {
  background: #cbd5e6;
  align-self: stretch;
  min-height: 92px;
}

.partner-strip > :not(.divider) {
  display: flex;
  justify-content: center;
  align-items: center;
}

.partner-strip > img,
.partner-strip .partner-logo-link {
  justify-self: center;
  margin-inline: auto;
}

.partner-strip img {
  display: block;
  max-height: 96px;
  object-fit: contain;
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.icon-grid.industries { grid-template-columns: repeat(8, 1fr); }

.icon-card {
  min-height: 178px;
  padding: 22px 14px 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  display: grid;
  grid-template-rows: 74px auto;
  justify-items: center;
  align-content: start;
  text-align: center;
  box-shadow: 0 5px 16px rgba(11, 49, 117, .035);
}

.icon-card img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin: 0 auto;
}

.icon-card h3 {
  margin: 12px 0 0;
  font-size: var(--small-size);
  line-height: 1.5;
  color: var(--blue);
  font-weight: 600;
  min-height: 3em;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.icon-card p {
  margin: 9px 0 0;
  color: #172b58;
  font-size: var(--small-size);
  line-height: 1.5;
  font-weight: 400;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 58px;
  align-items: center;
}

.feature-image {
  border-radius: 7px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
  color: #172b58;
  font-size: var(--body-size);
}

.check-list li {
  display: grid;
  grid-template-columns: 27px 1fr;
  align-items: center;
  gap: 12px;
}

.check-list li::before {
  content: "✓";
  width: 27px;
  height: 27px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--mid-blue);
  color: #fff;
  font-weight: 600;
  font-size: var(--small-size);
}

.check-list.green-check li::before { background: var(--green); }

.partner-feature {
  min-height: 258px;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 205px 1fr;
  background-image: linear-gradient(90deg, #fff 0%, #fff 44%, rgba(255,255,255,.62) 60%, rgba(255,255,255,.03) 100%), url("../../images/our-principal-technology-partnet.png");
  background-size: cover;
  background-position: center right;
  box-shadow: var(--shadow);
}

.partner-feature-logo {
  display: grid;
  place-items: center;
  border-right: 1px solid var(--line);
  padding: 24px;
}

.partner-feature-logo img { width: 160px; }

.partner-feature-copy {
  max-width: 560px;
  padding: 36px 20px 36px 28px;
}

.eyebrow {
  margin: 0 0 11px;
  color: var(--mid-blue);
  font-weight: 600;
  font-size: var(--small-size);
}

.partner-feature p { margin: 0 0 22px; }

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

.project-card {
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}

.project-card img {
  height: 178px;
  width: 100%;
  object-fit: cover;
}

.project-card .body {
  min-height: 132px;
  padding: 20px 22px;
  display: grid;
  grid-template-columns: 1fr 28px;
  gap: 12px;
  align-items: end;
}

.project-card h3 {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: var(--h4-size);
  line-height: 1.4;
  font-weight: 500;
}

.project-card p {
  margin: 0;
  color: #20315b;
  font-size: var(--small-size);
}

.project-card .arrow { color: var(--mid-blue); font-size: var(--h3-size); }

.center-action { display: flex; justify-content: center; margin-top: 22px; }

.network-box {
  min-height: 116px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #f3f7ff;
  display: grid;
  grid-template-columns: 115px 1fr auto auto;
  gap: 22px;
  align-items: center;
  padding: 24px 40px;
}

.network-box img { width: 82px; margin: auto; }
.network-box h2 { margin: 0 0 3px; color: var(--blue); font-size: var(--h3-size); line-height: 1.3; }
.network-box p { margin: 0; color: #1a2d5a; }

.cta-band {
  margin-top: 20px;
  color: #fff;
  background: linear-gradient(100deg, #04328f 0%, #0051b3 48%, #3aa01e 100%);
}

.cta-inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
}

.cta-inner h2 {
  margin: 0;
  font-size: var(--h2-size);
  line-height: 1.25;
  font-weight: 600;
  color: #fff;
}

.cta-inner p { margin: 4px 0 0; font-size: var(--body-size); opacity: .95; }
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: nowrap;
}
.cta-band .btn {
  min-height: 56px;
  min-width: 210px;
  padding: 0 30px;
  border-radius: 8px;
  box-shadow: none;
  white-space: nowrap;
}
.cta-actions .btn {
  min-width: 210px;
  width: 210px;
  flex: 0 0 210px;
}
.cta-band .btn:not(.btn-outline-light) {
  color: var(--blue);
  background: #fff;
  border-color: #fff;
}
.cta-band .btn-outline-light {
  color: #fff;
  background: transparent;
  border-color: rgba(255,255,255,.7);
}
.cta-band .btn-outline-light:hover,
.cta-band .btn-outline-light:focus-visible {
  background: rgba(255,255,255,.08);
}

.site-footer {
  background: #fff;
  border-top: 1px solid #e6edf8;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr .75fr 1.1fr 1.05fr 1.05fr;
  gap: 34px;
  padding: 42px 0 28px;
}

.footer-brand,
.footer-col {
  border-right: 1px solid var(--line);
  min-height: 196px;
}

.footer-col:last-child { border-right: 0; }
.footer-brand img { width: 240px; margin-bottom: 18px; }
.footer-brand p { margin: 0 0 18px; max-width: 270px; }
.footer-col h3 { margin: 0 0 14px; color: var(--blue); font-size: var(--h4-size); text-transform: uppercase; }
.footer-col a, .footer-col p { display: block; margin: 0 0 8px; color: #142657; font-size: var(--small-size); }
.contact-list p {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: start;
}
.contact-ico {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-top: 1px;
  border-radius: 50%;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
}
.contact-ico.phone { color: #0a5cc8; background: #eef5ff; }
.contact-ico.email { color: #0b6e4f; background: #edf9f3; }
.contact-ico.location { color: #0451b5; background: #edf2ff; }
.partner-stack img { width: 180px; max-height: 70px; object-fit: contain; object-position: left center; margin-bottom: 18px; }

.social-links { display: flex; gap: 14px; }
.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(180deg, #f9fbff 0%, #edf4ff 100%);
  border: 1px solid #c2d0e8;
  box-shadow: 0 4px 12px rgba(8,44,143,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  line-height: 0;
  padding: 0;
}
.social-links img {
  width: 22px;
  height: 22px;
  display: block;
  object-fit: contain;
  object-position: center;
  filter: none;
  margin: 0;
  transform: translateY(0);
}
.social-links a:hover,
.social-links a:focus-visible {
  transform: translateY(-2px);
  border-color: #8fb0de;
}

.footer-bottom {
  min-height: 56px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #172b58;
  font-size: var(--caption-size);
}
.footer-bottom p { margin: 0; }
.footer-bottom div { display: flex; gap: 24px; align-items: center; }

.values-panel {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 32px;
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 2.4fr;
  gap: 36px;
  box-shadow: var(--shadow);
}

.vision-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  align-items: center;
  border-right: 1px solid var(--line);
  padding-right: 28px;
}
.values-panel .vision-card:nth-child(2) { padding-right: 36px; }
.vision-card img { width: 62px; }
.vision-card h2,
.core-values h2 {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: var(--h4-size);
  text-transform: uppercase;
  font-weight: 500;
}
.vision-card p { margin: 0; font-size: var(--small-size); line-height: 1.5; }
.core-values h2 { text-align: center; }
.value-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.value-item {
  text-align: center;
  padding: 0 14px;
  border-left: 1px solid var(--line);
}
.value-item:first-child { border-left: 0; }
.value-item img { width: 54px; margin: 0 auto 10px; }
.value-item h3 { margin: 0 0 6px; color: var(--blue); font-size: var(--small-size); }
.value-item p { margin: 0; font-size: var(--caption-size); line-height: 1.4; font-weight: 400; }

.leadership-row {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 34px;
}

.chairman {
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: 32px;
  align-items: center;
  border-right: 1px solid var(--line);
  padding-right: 34px;
}
.portrait {
  aspect-ratio: 1 / 1.05;
  object-fit: cover;
  border-radius: 7px;
  background: #edf1f5;
}
.chairman h2, .leadership h2 { color: var(--blue); margin: 0 0 20px; font-size: var(--h4-size); text-transform: uppercase; }
.quote-mark { color: var(--green); font-size: var(--h1-size); line-height: 1.2; font-weight: 700; }
.chairman blockquote { margin: 0 0 20px; font-size: var(--body-size); line-height: 1.6; }
.person-name { margin: 0; color: var(--blue); font-size: var(--body-size); font-weight: 700; }
.person-role { margin: 3px 0 0; font-size: var(--caption-size); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.team-card {
  border: 1px solid var(--line);
  border-radius: 7px;
  overflow: hidden;
  text-align: center;
  box-shadow: var(--shadow);
}
.team-card .portrait { width: 100%; border-radius: 0; aspect-ratio: 1 / 1.13; }
.team-card .body { padding: 16px 12px 20px; min-height: 116px; }

.about-info-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.05fr .95fr;
  gap: 28px;
  align-items: stretch;
}
.partner-card,
.governance-card {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 24px;
  box-shadow: var(--shadow);
}
.partner-card h3,
.governance-card h3 {
  margin: 0 0 22px;
  color: var(--blue);
  font-size: var(--h4-size);
  text-transform: uppercase;
}
.two-partners {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.mini-partner {
  display: grid;
  grid-template-columns: 145px 1fr;
  gap: 22px;
  align-items: center;
  min-height: 205px;
  border-right: 1px solid var(--line);
}
.mini-partner:last-child { border-right: 0; }
.mini-partner img { width: 130px; }
.mini-partner p { margin: 0 0 9px; font-size: var(--caption-size); }
.mini-partner ul { margin: 0; padding-left: 18px; color: #17315f; font-size: var(--caption-size); }
.why-card { padding: 24px 8px 24px 0; }
.about-side-image img { height: 100%; width: 100%; object-fit: cover; border-radius: 7px; box-shadow: var(--shadow); }

.business-governance {
  display: grid;
  grid-template-columns: 2.45fr 1fr;
  gap: 18px;
}
.business-panel,
.governance-card {
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow);
}
.business-panel h2,
.governance-card h2 {
  margin: 0;
  padding: 18px 22px;
  color: var(--blue);
  font-size: var(--h4-size);
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
}
.business-panel .icon-grid {
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}
.business-panel .icon-card {
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  min-height: 260px;
}
.business-panel .icon-card:last-child { border-right: 0; }
.governance-card { padding: 0; }
.governance-card p { margin: 22px 28px; }
.governance-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px 16px;
  padding: 10px 28px 28px;
}
.governance-item { text-align: center; }
.governance-item img { width: 58px; margin: 0 auto 10px; }
.governance-item h3 { margin: 0; color: #243a67; font-size: var(--small-size); text-transform: none; }

.page-hero {
  --page-hero-overlay: linear-gradient(90deg, rgba(247,250,255,.98) 0%, rgba(247,250,255,.95) 24%, rgba(247,250,255,.88) 40%, rgba(247,250,255,.62) 56%, rgba(247,250,255,.2) 74%, rgba(247,250,255,.05) 100%);
  min-height: 642px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #f7f9fd;
  background-image: var(--page-hero-overlay), url("../../images/slider/homepage-slider.png");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  border-bottom: 1px solid #edf2f9;
}

.hero.home-hero {
  --page-hero-overlay: linear-gradient(90deg, rgba(247,250,255,.98) 0%, rgba(247,250,255,.95) 24%, rgba(247,250,255,.88) 40%, rgba(247,250,255,.62) 56%, rgba(247,250,255,.2) 74%, rgba(247,250,255,.05) 100%);
  background-image: var(--page-hero-overlay), url("../../images/slider/homepage-slider.png");
}

.page-hero.about-hero {
  background-image: var(--page-hero-overlay), url("../../images/core-expertise.jpg");
}

.page-hero.solutions-hero {
  background-image: var(--page-hero-overlay), url("../../images/slider/partner-slider.png");
}

.page-hero.partner-hero { background-image: var(--page-hero-overlay), url("../../images/slider/partner-slider.png"); }
.page-hero.sunset { background-image: var(--page-hero-overlay), url("../../images/slider/industry-slider.png"); }
.page-hero.career-hero { background-image: var(--page-hero-overlay), url("../../images/slider/career-slider.png"); }
.page-hero.contact-hero { background-image: var(--page-hero-overlay), url("../../images/slider/contact-slider.png"); }

.page-hero-copy {
  width: 545px;
  padding: 42px 0;
}

.page-hero h1 {
  margin: 0 0 8px;
  font-size: var(--h1-size);
  line-height: 1.2;
  font-weight: 600;
}

.page-hero h1 span,
.page-hero h2 {
  color: var(--green);
}

.page-hero h2 {
  margin: 0 0 22px;
  font-size: var(--h2-size);
  line-height: 1.25;
  font-weight: 600;
}

.page-hero p {
  margin: 0;
  max-width: 540px;
  color: #12275a;
  font-size: var(--body-size);
  line-height: 1.6;
  font-weight: 400;
}

.page-hero .hero-mini-row,
.page-hero .about-stats {
  max-width: 540px;
}

.hero-mini-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 38px;
}

.hero-mini-row span {
  min-height: 78px;
  display: grid;
  place-items: end center;
  padding: 0 12px;
  border-right: 1px solid var(--line);
  color: var(--blue);
  font-size: var(--caption-size);
  line-height: 1.35;
  text-align: center;
  font-weight: 700;
}

.hero-mini-row span:last-child { border-right: 0; }
.fade-up,
.product-category-panel {
  animation: fadeUp .28s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.compact { padding: 22px 0; }

.section-soft {
  background: linear-gradient(180deg, #f7fbff 0%, #eef5ff 100%);
}

.about-hero {
  min-height: 700px;
}

.about-hero-shell {
  display: flex;
  align-items: center;
}

.about-hero-copy {
  width: min(100%, 760px);
}

.about-hero-copy h1 {
  max-width: 620px;
}

.about-hero-copy h2 {
  max-width: 680px;
}

.about-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.about-stats span {
  padding: 10px 14px;
  border: 1px solid #cfe0f6;
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  color: var(--blue);
  font-size: var(--caption-size);
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(8,44,143,.05);
}

.about-overview-grid,
.about-alignment-grid {
  display: grid;
  grid-template-columns: minmax(0,1.25fr) minmax(320px,.75fr);
  gap: 24px;
  align-items: stretch;
}

.about-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(8,44,143,.06);
}

.about-card-large h2,
.about-card h3 {
  margin-top: 0;
  color: var(--blue);
}

.about-card-large p,
.about-identity-card p {
  color: var(--muted);
  line-height: 1.8;
}

.about-card-accent {
  color: #fff;
  background: linear-gradient(145deg, #082c8f 0%, #0f3aa8 100%);
  box-shadow: 0 16px 34px rgba(8,44,143,.18);
}

.about-card-accent .eyebrow,
.about-card-accent .check-list {
  color: #fff;
}

.about-card-accent .check-list li::before {
  color: #dfffd8;
}

.about-section-intro {
  margin-bottom: 28px;
}

.about-pill-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 24px;
}

.about-pill-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(8,44,143,.06);
}

.about-pill-card img {
  width: 54px;
  height: 54px;
  margin-bottom: 16px;
}

.about-pill-card h3,
.about-domain-card h3,
.about-partner-card h3,
.board-card .person-name {
  margin: 0 0 10px;
  color: var(--blue);
  font-family: var(--font-heading);
}

.about-pill-card p,
.about-domain-card p,
.about-partner-card p,
.board-card p {
  color: var(--muted);
  line-height: 1.78;
}

.about-domain-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 20px;
}

.about-domain-card,
.about-partner-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(8,44,143,.05);
}

.about-domain-card img,
.about-partner-card img {
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  object-fit: contain;
}

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

.about-partner-card h3 {
  font-size: var(--h4-size);
  min-height: 3em;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.about-partner-card {
  min-height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: flex-start;
}

.about-alignment-grid {
  margin-top: 24px;
  grid-template-columns: minmax(0,.95fr) minmax(0,1.05fr);
}

.about-identity-card {
  min-height: 100%;
}

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

.board-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(8,44,143,.06);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.board-card-button {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
  appearance: none;
  transition: transform .2s ease, box-shadow .2s ease;
}

.board-card-button:focus-visible {
  outline: 3px solid rgba(69,168,50,.28);
  outline-offset: 3px;
}

.board-card-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(8,44,143,.12);
}

.board-card img {
  display: block;
  width: calc(100% - 32px);
  height: auto;
  margin: 16px 16px 0;
  border-radius: 16px;
  background: linear-gradient(180deg, #eef5ff 0%, #ffffff 100%);
  box-shadow: inset 0 0 0 1px rgba(8,44,143,.06);
}

.board-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}

.board-card .person-name {
  min-height: 2.95em;
  line-height: 1.45;
}

.board-card .person-role {
  margin: 0 0 12px;
  color: var(--green);
  font-size: var(--caption-size);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  min-height: 3em;
  line-height: 1.5;
}

.board-cred {
  margin: 0 0 12px;
  color: var(--blue);
  font-weight: 700;
  min-height: 1.6em;
}

.board-card-body > p:last-child {
  margin-bottom: 0;
}

.board-modal[hidden] { display: none; }
.board-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  padding: 22px;
}
.board-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 15, 43, .62);
  backdrop-filter: blur(8px);
}
.board-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  max-height: min(88vh, 980px);
  overflow: auto;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  box-shadow: 0 24px 60px rgba(0,0,0,.28);
}
.board-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--blue);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(8,44,143,.12);
}
.board-modal-layout {
  display: grid;
  grid-template-columns: 360px minmax(0,1fr);
  gap: 0;
  align-items: start;
  min-height: 0;
}
.board-modal-portrait {
  position: sticky;
  top: 0;
  display: block;
  padding: 18px 18px 18px 18px;
  background: linear-gradient(180deg, #eef5ff 0%, #fff 100%);
}
.board-modal-portrait img {
  display: block;
  width: 100%;
  height: auto;
  max-height: calc(88vh - 36px);
  object-fit: contain;
  object-position: top center;
}
.board-modal-content {
  padding: 28px 30px 30px 30px;
  min-width: 0;
}
.board-modal-content h3 {
  margin: 0 0 8px;
  color: var(--blue);
  font-family: var(--font-heading);
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.15;
}
.board-modal-role {
  margin: 0 0 8px;
  color: var(--green);
  font-size: var(--caption-size);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.board-modal-cred {
  margin: 0 0 14px;
  color: var(--blue);
  font-weight: 700;
}
.board-modal-subtitle {
  margin: 0 0 18px;
  color: #20386e;
  font-weight: 600;
}
.board-modal-body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
  color: var(--muted);
  line-height: 1.55;
  font-size: var(--small-size);
}
.board-modal-body p { margin: 0; }
.board-modal-bullets {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.board-modal-bullets h4 {
  margin: 0 0 12px;
  color: var(--blue);
  font-family: var(--font-heading);
}
.board-modal-bullets .mini-check-list {
  display: grid;
  gap: 10px;
}
.board-modal-bullets .mini-check-list li {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

body.modal-open {
  overflow: hidden;
}

.section-title::after {
  content: "";
  display: block;
  width: 38px;
  height: 3px;
  margin: 10px auto 0;
  border-radius: 9px;
  background: var(--green);
}

.section-title.left::after { margin-left: 0; }

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

.solution-card,
.industry-card,
.project-detail-card,
.partners-panel,
.values-why-grid,
.job-list,
.culture-card,
.benefits-card,
.contact-strip,
.locations-card,
.inquiry-grid,
.process-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 4px 14px rgba(8, 44, 143, .045);
}

.solution-card {
  min-height: 100%;
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
}

.solution-head {
  min-height: 92px;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 10px 14px;
  align-items: center;
}

.round-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  grid-row: 1 / span 2;
  background: #eef5ff;
  border: 1px solid #bfd0eb;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.round-icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: none;
}

.solution-head strong { color: var(--blue); font-size: var(--small-size); }
.solution-head h3 { margin: 0; font-size: var(--h4-size); line-height: 1.4; font-weight: 500; }
.solution-head strong,
.solution-head h3 { grid-column: 2; }
.solution-photo { width: 100%; height: 184px; object-fit: cover; border-radius: 5px; margin: 10px 0 12px; }

.mini-check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  color: #132957;
  font-size: var(--caption-size);
  line-height: 1.4;
  font-weight: 400;
}

.mini-check-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 7px;
  align-items: start;
}

.mini-check-list li::before {
  content: "";
  width: 14px;
  height: 14px;
  margin-top: 1px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: inset 0 0 0 4px var(--green);
}

.text-link {
  margin-top: auto;
  padding-top: 18px;
  color: var(--mid-blue);
  font-weight: 600;
  font-size: var(--small-size);
}

.process-row {
  display: grid;
  grid-template-columns: 1fr 42px 1fr 42px 1fr 42px 1fr 42px 1fr;
  align-items: start;
  gap: 14px;
}

.process-item {
  text-align: center;
  color: #192d5a;
}

.process-item img { width: 64px; height: 64px; object-fit: contain; margin: 0 auto 8px; }
.process-item h3 { margin: 0 0 5px; font-size: var(--small-size); line-height: 1.5; font-weight: 600; }
.process-item p { margin: 0; font-size: var(--caption-size); line-height: 1.4; }
.process-arrow { color: var(--green); font-size: 36px; line-height: 1.7; text-align: center; }

.partner-wide {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 26px 24px;
}

.partner-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.partner-two article {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 24px;
  align-items: center;
  border-right: 1px solid var(--line);
  padding-right: 26px;
}

.partner-two article:last-child { border-right: 0; }
.partner-two article > img,
.partner-two .partner-logo-link {
  justify-self: center;
  margin-inline: auto;
}

.partner-two img {
  display: block;
  width: 210px;
  max-height: 112px;
  object-fit: contain;
}
.partner-two p { margin: 0 0 12px; font-size: var(--small-size); line-height: 1.5; font-weight: 400; }

.why-band {
  margin: 20px auto;
  padding: 26px 0;
  color: #fff;
  background: linear-gradient(100deg, #062c8e 0%, #0053ad 48%, #40a227 100%);
}

.why-band h2 { margin: 0 0 20px; color: #fff; font-size: var(--h2-size); line-height: 1.25; font-weight: 600; }
.why-band-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0; }
.why-band-grid article { display: grid; grid-template-columns: 54px 1fr; gap: 14px; align-items: center; min-height: 80px; padding: 0 20px; border-right: 1px solid rgba(255,255,255,.32); }
.why-band-grid article:last-child { border-right: 0; }
.why-band-grid img { width: 50px; height: 50px; object-fit: contain; filter: none; }
.why-band-grid h3 { margin: 0; color: #fff; font-size: var(--small-size); line-height: 1.5; font-weight: 600; }

.light-cta {
  min-height: 112px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f9fbff;
  display: grid;
  grid-template-columns: 98px minmax(0, 1fr) 220px 220px;
  align-items: center;
  gap: 26px;
  padding: 22px 30px;
}

.light-cta > img { width: 74px; }
.light-cta h2 { margin: 0 0 3px; font-size: var(--h2-size); line-height: 1.25; font-weight: 600; }
.light-cta p { margin: 0; font-size: var(--body-size); line-height: 1.6; font-weight: 400; }
.light-cta .btn {
  width: 100%;
  min-height: 54px;
  border-radius: 8px;
}
.light-cta .btn:last-child {
  background: #fff;
  border-color: #a9bfdf;
}

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

.industry-card { overflow: hidden; }
.industry-image { position: relative; }
.industry-image > img { width: 100%; height: 162px; object-fit: cover; }
.industry-image span {
  position: absolute;
  left: 18px;
  bottom: -28px;
  width: 62px;
  height: 62px;
  border: 4px solid #fff;
  border-radius: 50%;
  background: var(--green);
  display: grid;
  place-items: center;
}
.industry-image span img { width: 38px; height: 38px; object-fit: contain; }
.industry-body { padding: 38px 20px 22px; }
.industry-body h3 { margin: 0 0 10px; font-size: var(--h4-size); line-height: 1.4; font-weight: 500; }
.industry-body p { margin: 0 0 16px; color: #132957; font-size: var(--small-size); line-height: 1.5; font-weight: 400; }

.icon-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}

.icon-row article {
  min-height: 105px;
  display: grid;
  grid-template-rows: 58px auto;
  justify-items: center;
  align-content: start;
  text-align: center;
  padding: 12px;
  border-right: 1px solid var(--line);
}

.icon-row article:last-child { border-right: 0; }
.icon-row img { width: 58px; height: 58px; object-fit: contain; object-position: center; margin: 0 auto; }
.icon-row h3 { margin: 8px 0 0; font-size: var(--small-size); line-height: 1.5; font-weight: 600; min-height: 3em; display: flex; align-items: flex-start; justify-content: center; }

.stats-strip {
  min-height: 112px;
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  background: #fff;
  box-shadow: var(--shadow);
}

.stats-strip article {
  min-height: 82px;
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 14px;
  padding: 0 28px;
  border-right: 1px solid var(--line);
}

.stats-strip article:last-child { border-right: 0; }
.stats-strip img { width: 54px; height: 54px; object-fit: contain; }
.stats-strip article img { grid-row: 1 / span 2; }
.stats-strip strong { color: var(--blue); font-family: var(--font-heading); font-size: var(--h2-size); line-height: 1.25; font-weight: 600; }
.stats-strip span { display: block; color: #11275a; font-size: var(--caption-size); line-height: 1.4; font-weight: 400; }

.pill-row {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin: 0 0 24px;
}

.pill-row button {
  min-width: 116px;
  height: 36px;
  padding: 0 24px;
  border: 2px solid #bfd0eb;
  border-radius: 999px;
  color: var(--blue);
  background: #fff;
  font-weight: 600;
  font-size: var(--caption-size);
}

.pill-row button.active {
  color: #fff;
  border-color: var(--mid-blue);
  background: var(--mid-blue);
}

.project-detail-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; align-items: stretch; }
.project-detail-card { overflow: hidden; display: flex; flex-direction: column; min-height: 100%; }
.project-detail-card > img { width: 100%; height: 178px; object-fit: cover; }
.project-detail-body { padding: 16px 18px 20px; display: flex; flex-direction: column; flex: 1; }
.tag {
  display: inline-flex;
  padding: 2px 13px;
  border: 1px solid #99d0a2;
  border-radius: 999px;
  color: var(--green);
  background: #eff9f0;
  font-size: var(--caption-size);
  font-weight: 600;
  text-transform: uppercase;
}
.project-detail-body h3 { margin: 10px 0 6px; font-size: var(--h4-size); line-height: 1.4; font-weight: 500; }
.project-detail-body p { margin: 0 0 12px; font-size: var(--small-size); line-height: 1.5; font-weight: 400; }
.project-detail-body .place { color: #263c70; }
.project-detail-body .mini-check-list { margin-top: auto; padding-top: 6px; }

.mini-project-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 20px; align-items: stretch; }
.mini-project-grid article { border: 1px solid var(--line); border-radius: 7px; overflow: hidden; background: #fff; padding-bottom: 14px; }
.mini-project-grid img { width: 100%; height: 86px; object-fit: cover; }
.mini-project-grid span { display: inline-flex; margin: -14px 0 8px 14px; padding: 2px 10px; border-radius: 999px; color: var(--green); background: #eef9f0; border: 1px solid #b3dcb7; font-size: var(--caption-size); font-weight: 600; text-transform: uppercase; position: relative; z-index: 1; }
.mini-project-grid h3 { margin: 0 12px 7px; font-size: var(--small-size); line-height: 1.5; font-weight: 600; }
.mini-project-grid p { margin: 0 12px; font-size: var(--caption-size); line-height: 1.4; font-weight: 400; }

.process-panel { padding: 16px 24px 22px; }
.project-bottom-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 28px; align-items: stretch; }
.project-bottom h2 { margin: 0 0 18px; font-size: var(--h3-size); line-height: 1.3; font-weight: 600; }
.partner-logos-inline { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: center; }
.partner-logos-inline > img,
.partner-logos-inline .partner-logo-link {
  justify-self: center;
  margin-inline: auto;
}

.partner-logos-inline img {
  display: block;
  max-height: 90px;
  object-fit: contain;
}
.image-cta { display: grid; grid-template-columns: minmax(0, 1fr) 240px; align-items: center; gap: 22px; color: #fff; background: linear-gradient(100deg, #092a7e, #168230); padding: 28px; border-radius: 8px; }
.image-cta h2 { color: #fff; }
.image-cta p { font-weight: 600; }
.image-cta img { height: 150px; width: 100%; object-fit: cover; }
.image-cta .btn {
  width: auto;
  min-width: 220px;
  min-height: 54px;
  margin-top: 14px;
  border-radius: 8px;
  color: var(--blue);
  background: #fff;
  border-color: #fff;
}

.partners-panel { padding: 22px 18px 26px; }
.featured-partner-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.featured-partner-grid article { position: relative; border: 1px solid var(--line); border-radius: 8px; padding: 62px 28px 24px; display: grid; grid-template-columns: 230px 1fr; gap: 26px; align-items: center; }
.featured-partner-grid article > img,
.featured-partner-grid .partner-logo-link {
  justify-self: center;
  margin-inline: auto;
}

.featured-partner-grid img {
  display: block;
  width: 210px;
}
.partner-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.partner-strip .partner-logo-link,
.partner-feature-logo .partner-logo-link,
.partner-two .partner-logo-link,
.partner-logos-inline .partner-logo-link,
.partner-stack .partner-logo-link,
.featured-partner-grid .partner-logo-link {
  width: fit-content;
  max-width: 100%;
}

.partner-strip .partner-logo-link,
.partner-feature-logo .partner-logo-link,
.partner-two .partner-logo-link,
.partner-logos-inline .partner-logo-link,
.partner-stack .partner-logo-link,
.featured-partner-grid .partner-logo-link {
  justify-self: center;
  margin-inline: auto;
}

.featured-partner-grid .partner-logo-link {
  justify-self: center;
}
.featured-partner-grid p { margin: 0 0 10px; font-size: var(--small-size); line-height: 1.5; font-weight: 400; }
.partner-label { position: absolute; top: -1px; left: 50%; transform: translateX(-50%); min-width: 210px; padding: 8px 16px; border-radius: 0 0 4px 4px; color: #fff; text-align: center; font-size: var(--caption-size); font-weight: 600; text-transform: uppercase; }
.partner-label-link {
  display: block;
  text-decoration: none;
  cursor: pointer;
}
.partner-label.blue { background: var(--mid-blue); }
.partner-label.green-label { background: var(--green); }
.partner-cta {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  min-width: 0;
  padding: 0;
  color: var(--mid-blue);
  background: transparent;
  border: 0;
  box-shadow: none;
  font-size: var(--small-size);
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  justify-self: start;
  align-self: start;
}

.partner-cta:hover {
  text-decoration: underline;
}

.why-partner-grid { display: grid; grid-template-columns: 1.15fr repeat(3, 1fr); gap: 26px 34px; border: 1px solid var(--line); border-radius: 8px; padding: 30px; }
.why-partner-grid > div { grid-row: span 2; }
.why-partner-grid p { margin: 0; font-size: var(--small-size); line-height: 1.5; font-weight: 400; }
.why-partner-grid article h3 { margin: 0 0 6px; font-size: var(--small-size); line-height: 1.5; font-weight: 600; }
.why-partner-grid article h3::before { content: ""; width: 17px; height: 17px; border-radius: 50%; background: var(--green); display: inline-block; margin-right: 8px; vertical-align: -3px; }
.why-partner-grid article p { font-size: var(--small-size); line-height: 1.5; }

.commitment-grid { display: grid; grid-template-columns: 1.1fr 1.2fr .95fr; gap: 24px; border: 1px solid var(--line); border-radius: 8px; padding: 26px; }
.commitment-grid h2 { margin: 0 0 12px; font-size: var(--h3-size); line-height: 1.3; font-weight: 600; }
.commitment-grid p { margin: 0 0 18px; font-size: var(--small-size); line-height: 1.5; font-weight: 400; }
.two-col { grid-template-columns: 1fr 1fr; }
.world-map { text-align: center; }
.world-map img { max-height: 190px; margin: auto; object-fit: contain; }

.values-why-grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: 34px; padding: 22px 28px 26px; }
.values-why-grid .value-grid { grid-template-columns: repeat(5, 1fr); }
.large-list { gap: 16px; padding-top: 10px; font-size: var(--small-size); line-height: 1.5; }
.job-list { overflow: hidden; }
.job-row { display: grid; grid-template-columns: 78px 1.2fr 1.7fr 1.05fr 148px; gap: 22px; align-items: center; min-height: 112px; padding: 18px 28px; border-bottom: 1px solid var(--line); }
.job-row:last-child { border-bottom: 0; }
.job-row > img { width: 70px; height: 70px; border-radius: 8px; background: #eef8ef; padding: 12px; object-fit: contain; }
.job-row h3 { margin: 0 0 3px; font-size: var(--h4-size); line-height: 1.4; font-weight: 500; }
.job-row p { margin: 0; font-size: var(--small-size); line-height: 1.5; font-weight: 400; }
.job-row .btn { min-height: 40px; padding: 0 18px; }
.culture-benefits { display: grid; grid-template-columns: 1.12fr .88fr; gap: 20px; }
.culture-card { display: grid; grid-template-columns: 260px 1fr; gap: 34px; overflow: hidden; padding-right: 20px; }
.culture-card > img { width: 100%; height: 100%; min-height: 250px; object-fit: cover; }
.culture-card > div { padding: 24px 0; }
.culture-card p { font-weight: 600; }
.icon-row.small { grid-template-columns: repeat(4, 1fr); }
.benefits-card { padding: 22px; }
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.benefit-grid article { min-height: 112px; display: grid; place-items: center; text-align: center; padding: 14px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.benefit-grid article:nth-child(3n) { border-right: 0; }
.benefit-grid article:nth-child(n+4) { border-bottom: 0; }
.benefit-grid img { width: 48px; height: 48px; object-fit: contain; }
.benefit-grid h3 { margin: 8px 0 0; font-size: var(--small-size); line-height: 1.5; font-weight: 600; }

.contact-strip { margin-top: -1px; min-height: 130px; display: grid; grid-template-columns: repeat(5, 1fr); align-items: center; padding: 18px; }
.contact-strip article { display: grid; grid-template-columns: 70px 1fr; gap: 18px; align-items: center; min-height: 92px; padding: 0 20px; border-right: 1px solid var(--line); }
.contact-strip article:last-child { border-right: 0; }
.contact-strip span { width: 64px; height: 64px; display: grid; place-items: center; border-radius: 50%; background: #edf7ee; }
.contact-strip img { width: 36px; height: 36px; object-fit: contain; }
.contact-strip h3 { margin: 0 0 6px; font-size: var(--h4-size); line-height: 1.4; font-weight: 500; }
.contact-strip p { margin: 0; font-size: var(--small-size); line-height: 1.5; font-weight: 400; }
.contact-main-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 18px; }
.contact-form { border-radius: 12px; padding: 34px 36px; color: #fff; background: linear-gradient(145deg, #082b88, #041c65); }
.contact-form h2 { margin: 0 0 8px; color: #fff; font-size: var(--h2-size); line-height: 1.25; font-weight: 600; }
.contact-form h2::after { content: ""; display: block; width: 58px; height: 3px; background: var(--green); margin-top: 10px; }
.contact-form p { margin: 0 0 20px; color: #fff; font-size: var(--body-size); line-height: 1.6; font-weight: 400; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid input, .form-grid select, .form-grid textarea {
  width: 100%;
  min-height: 52px;
  border: 2px solid rgba(255,255,255,.35);
  border-radius: 5px;
  padding: 0 16px;
  color: #fff;
  background: transparent;
  font: inherit;
  font-weight: 400;
}
.form-grid input::placeholder, .form-grid textarea::placeholder { color: rgba(255,255,255,.85); }
.form-grid select, .form-grid textarea { grid-column: 1 / -1; }
.form-grid textarea { min-height: 132px; padding-top: 15px; resize: vertical; }
.privacy { display: flex; align-items: center; gap: 9px; margin: 18px 0 22px; font-size: var(--small-size); line-height: 1.5; font-weight: 400; }
.privacy a { color: #77c866; text-decoration: underline; }
.btn-green { width: 100%; color: #fff; border-color: var(--green); background: var(--green); }
.locations-card { display: grid; grid-template-columns: .78fr 1fr; gap: 18px; padding: 30px; background: #f8fbff; }
.locations-copy h2 { margin: 0 0 28px; font-size: var(--h2-size); line-height: 1.25; font-weight: 600; }
.locations-copy h2::after { content: ""; display: block; width: 58px; height: 3px; background: var(--green); margin-top: 10px; }
.locations-copy div { margin-bottom: 24px; padding-left: 44px; position: relative; }
.locations-copy div::before { content: ""; position: absolute; left: 0; top: 4px; width: 27px; height: 36px; border-radius: 50% 50% 50% 0; background: var(--mid-blue); transform: rotate(-45deg); }
.locations-copy h3 { margin: 0 0 8px; font-size: var(--h4-size); line-height: 1.4; font-weight: 500; }
.locations-copy p { margin: 0 0 8px; font-size: var(--small-size); line-height: 1.5; font-weight: 400; }
.sri-lanka-map {
  position: relative;
  min-height: 510px;
  border-radius: 10px;
  background: #e7f4fb;
  overflow: hidden;
}
.sri-lanka-map iframe {
  width: 100%;
  height: 100%;
  min-height: 510px;
  border: 0;
  display: block;
}
.inquiry-grid { display: grid; grid-template-columns: repeat(4, 1fr); padding: 24px 18px; }
.inquiry-grid article { display: grid; grid-template-columns: 62px 1fr; gap: 18px; padding: 10px 28px; border-right: 1px solid var(--line); }
.inquiry-grid article:last-child { border-right: 0; }
.inquiry-grid img { width: 50px; height: 50px; object-fit: contain; }
.inquiry-grid h3 { margin: 0 0 6px; font-size: var(--h4-size); line-height: 1.4; font-weight: 500; }
.inquiry-grid p { margin: 0 0 10px; font-size: var(--small-size); line-height: 1.5; font-weight: 400; }
.inquiry-grid a { color: var(--green); font-size: var(--small-size); line-height: 1.5; font-weight: 600; }

@media (max-width: 1180px) {
  .shell { width: min(100% - 40px, 1000px); }
  .nav-shell { min-height: 86px; }
  .nav-shell { gap: 16px; }
  .brand img { width: 196px; }
  .nav-toggle { display: block; }
  .main-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 86px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .main-nav.is-open { display: flex; }
  .main-nav > a:not(.btn) { min-height: 44px; padding: 0 10px; }
  .main-nav > a.active::after { display: none; }
  .nav-cta { margin-top: 10px; }
  .hero { min-height: 560px; }
  .proof-row, .icon-grid, .icon-grid.industries, .project-grid, .footer-grid, .values-panel, .leadership-row, .about-info-grid, .business-governance, .solution-card-grid, .industry-grid, .project-detail-grid, .mini-project-grid, .why-band-grid, .featured-partner-grid, .values-why-grid, .culture-benefits, .contact-main-grid, .inquiry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .partner-strip { grid-template-columns: 1fr; gap: 18px; }
  .partner-strip .divider { display: none; }
  .split, .partner-feature, .chairman, .network-box { grid-template-columns: 1fr; }
  .proof-row { margin-top: 24px; flex-wrap: wrap; }
  .proof-item { flex: 1 1 220px; }
  .core-values, .business-governance .governance-card { grid-column: 1 / -1; }
  .business-panel .icon-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-brand, .footer-col { border-right: 0; min-height: auto; }
  .process-row { grid-template-columns: repeat(5, 1fr); }
  .process-arrow { display: none; }
  .partner-two article, .featured-partner-grid article, .locations-card, .project-bottom-grid, .light-cta, .contact-strip, .commitment-grid, .why-partner-grid {
    grid-template-columns: 1fr;
  }
  .partner-two article, .contact-strip article, .inquiry-grid article { border-right: 0; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .stats-strip article { border-bottom: 1px solid var(--line); }
  .solution-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .project-detail-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mini-project-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .light-cta { grid-template-columns: 1fr 1fr; }
  .light-cta > img,
  .light-cta > div { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .career-hero {
    min-height: auto;
    align-items: flex-start;
    background-position: center right;
  }
  .career-hero .page-hero-copy {
    width: 100%;
    max-width: 100%;
    padding: 28px 0 132px;
  }
  .career-hero .hero-mini-row {
    display: none;
  }
  .values-why-grid .value-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .values-why-grid .value-item {
    padding: 18px 12px;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }
  .values-why-grid .value-item:nth-last-child(-n+1) {
    border-bottom: 0;
  }
  .values-why-grid .value-item:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  body { font-size: var(--body-size); }
  .shell { width: min(100% - 28px, 520px); }
  .nav-shell { min-height: 78px; }
  .brand { flex: 1 1 auto; }
  .brand img { width: min(172px, 100%); }
  .nav-toggle {
    width: 46px;
    height: 46px;
    min-width: 46px;
    flex-basis: 46px;
  }
  .hero {
    min-height: 560px;
    background-image: linear-gradient(180deg, rgba(247,250,255,.98) 0%, rgba(247,250,255,.93) 42%, rgba(247,250,255,.7) 70%, rgba(247,250,255,.12) 100%), url("../../images/slider/homepage-slider.png");
    background-position: center right;
  }
  .hero-copy { width: 100%; padding: 28px 0 96px; }
  .hero h1 { font-size: var(--h1-size); }
  .hero h2 { font-size: var(--h2-size); }
  .hero-actions, .footer-bottom { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .proof-row, .icon-grid, .icon-grid.industries, .project-grid, .footer-grid, .values-panel, .leadership-row, .about-info-grid, .business-governance, .team-grid, .value-grid, .two-partners, .business-panel .icon-grid, .governance-icons, .solution-card-grid, .industry-grid, .icon-row, .project-detail-grid, .mini-project-grid, .why-band-grid, .partner-two, .featured-partner-grid, .values-why-grid, .job-row, .culture-benefits, .benefit-grid, .contact-strip, .contact-main-grid, .inquiry-grid, .stats-strip {
    grid-template-columns: 1fr;
  }
  .vision-card, .mini-partner {
    grid-template-columns: 72px 1fr;
    border-right: 0;
    padding-right: 0;
  }
  .business-panel .icon-card { border-right: 0; border-bottom: 1px solid var(--line); }
  .network-box { padding: 24px; }
  .cta-inner {
    grid-template-columns: 1fr;
    padding: 24px 0;
  }
  .cta-actions {
    justify-content: stretch;
    flex-wrap: wrap;
  }
  .cta-actions .btn {
    width: 100%;
    flex: 1 1 100%;
  }
  .page-hero:not(.about-hero):not(.solutions-hero):not(.partner-hero):not(.sunset):not(.career-hero):not(.contact-hero):not(.product-catalogue-hero) {
    min-height: 560px;
    background-image: linear-gradient(180deg, rgba(247,250,255,.98) 0%, rgba(247,250,255,.93) 42%, rgba(247,250,255,.7) 70%, rgba(247,250,255,.12) 100%), url("../../images/slider/homepage-slider.png");
    background-position: center right;
  }
  .page-hero-copy { width: 100%; padding: 28px 0 96px; }
  .page-hero h1 { font-size: var(--h1-size); }
  .page-hero h2 { font-size: var(--h2-size); }
  .hero-mini-row { grid-template-columns: repeat(2, 1fr); }
  .hero-mini-row span { border-bottom: 1px solid var(--line); }
  .solution-photo, .project-detail-card > img { height: 210px; }
  .process-row { grid-template-columns: 1fr; gap: 22px; }
  .partner-wide, .partners-panel, .why-partner-grid, .commitment-grid, .values-why-grid, .contact-form, .locations-card { padding: 22px; }
  .light-cta, .project-bottom-grid, .image-cta, .culture-card, .featured-partner-grid article, .partner-two article {
    grid-template-columns: 1fr;
  }
  .featured-partner-grid .partner-logo-link,
  .featured-partner-grid img { margin-inline: auto; }
  .featured-partner-grid .partner-cta {
    margin-inline: 0;
  }
  .solution-card-grid,
  .project-detail-grid,
  .mini-project-grid { grid-template-columns: 1fr; }
  .solution-head { grid-template-columns: 58px 1fr; }
  .stats-strip { margin-top: 18px; }
  .values-why-grid { gap: 22px; padding: 20px; }
  .values-why-grid .value-grid {
    grid-template-columns: 1fr;
  }
  .values-why-grid .value-item,
  .values-why-grid .value-item:last-child:nth-child(odd) {
    grid-column: auto;
    border-bottom: 1px solid var(--line);
  }
  .values-why-grid .value-item:last-child {
    border-bottom: 0;
  }
  .job-row {
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: start;
    padding: 20px;
  }
  .job-row > img {
    width: 64px;
    height: 64px;
  }
  .job-row .btn {
    width: 100%;
  }
  .culture-card {
    padding-right: 0;
  }
  .culture-card > img {
    min-height: 220px;
  }
  .culture-card > div {
    padding: 20px;
  }
  .icon-row.small,
  .benefit-grid {
    grid-template-columns: 1fr 1fr;
  }
  .icon-row.small article {
    min-height: 96px;
    padding: 10px 8px;
  }
  .icon-row.small img,
  .benefit-grid img {
    width: 42px;
    height: 42px;
  }
  .benefit-grid article:nth-child(3n) {
    border-right: 1px solid var(--line);
  }
  .benefit-grid article:nth-child(2n) {
    border-right: 0;
  }
  .benefit-grid article:nth-child(n+4) {
    border-bottom: 1px solid var(--line);
  }
  .benefit-grid article:nth-last-child(-n+2) {
    border-bottom: 0;
  }
  .stats-strip article, .contact-strip article, .inquiry-grid article { border-right: 0; border-bottom: 1px solid var(--line); }
  .stats-strip article:last-child, .contact-strip article:last-child, .inquiry-grid article:last-child { border-bottom: 0; }
  .form-grid { grid-template-columns: 1fr; }
  .sri-lanka-map,
  .sri-lanka-map iframe { min-height: 390px; }
}

/* Product catalogue and product detail pages */
.product-catalogue-hero { background-image: var(--page-hero-overlay), url("../../images/slider/products-slider.png"); }
.eyebrow { margin: 0 0 9px; color: var(--green); font-size: var(--caption-size); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow.light { color: #dfffd8; }
.product-catalogue-hero h1 span { color: var(--green); }
.catalogue-highlights { display: flex; gap: 26px; margin-top: 30px; color: var(--muted); font-size: var(--small-size); }
.catalogue-highlights span { padding-left: 16px; border-left: 3px solid var(--green); }
.catalogue-highlights strong { display: block; color: var(--blue); font-family: var(--font-heading); }
.product-tabs-shell { display: grid; gap: 28px; }
.product-tabbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
  box-shadow: 0 8px 24px rgba(8,44,143,.05);
}
.product-tab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border: 1px solid #c6d4ea;
  border-radius: 999px;
  background: #fff;
  color: var(--blue);
  font-size: var(--small-size);
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.product-tab span {
  max-width: 220px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.product-tab strong {
  display: inline-grid;
  place-items: center;
  min-width: 30px;
  height: 30px;
  padding: 0 8px;
  border-radius: 999px;
  background: #edf4ff;
  color: var(--mid-blue);
  font-size: var(--caption-size);
  font-weight: 800;
}
.product-tab:hover,
.product-tab:focus-visible {
  transform: translateY(-1px);
  border-color: #9db5dc;
}
.product-tab.is-active {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  box-shadow: 0 10px 20px rgba(8,44,143,.18);
}
.product-tab.is-active strong {
  background: rgba(255,255,255,.16);
  color: #fff;
}
.product-category-panel {
  display: grid;
  gap: 22px;
  animation: fadeUp .28s ease;
}
.product-category-panel[hidden] { display: none !important; }
.category-panel-copy {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
}
.category-panel-copy h3 {
  margin: 0;
  color: var(--blue);
  font-family: var(--font-heading);
  font-size: 28px;
}
.category-panel-copy p {
  margin: 0;
  color: var(--muted);
}
.section-intro { display: grid; grid-template-columns: 1fr minmax(320px, 580px); gap: 50px; align-items: end; margin-bottom: 34px; }
.section-intro h2 { margin-bottom: 0; }
.section-intro > p { margin: 0 0 4px; color: var(--muted); }
.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.product-card { min-width: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 8px; background: #fff; box-shadow: 0 4px 14px rgba(8,44,143,.045); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.product-card:hover { transform: translateY(-5px); border-color: #bfd0eb; box-shadow: var(--shadow); }
.product-card-image { position: relative; display: block; height: 250px; overflow: hidden; background: var(--soft); }
.product-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.product-card:hover .product-card-image img { transform: scale(1.035); }
.product-number { position: absolute; top: 16px; left: 16px; padding: 6px 10px; border-radius: 4px; color: #fff; background: rgba(8,44,143,.9); font-size: var(--caption-size); font-weight: 700; backdrop-filter: blur(6px); }
.product-card-body { min-height: 300px; padding: 24px; display: flex; flex-direction: column; }
.product-category, .related-product-grid article > p { margin: 0 0 8px; color: var(--green); font-size: var(--caption-size); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.product-card h3 { margin: 0 0 12px; font-size: var(--h4-size); }
.product-card h3 a:hover, .related-product-grid h3 a:hover { color: var(--mid-blue); }
.product-card-body > p:not(.product-category) { margin: 0 0 20px; color: var(--muted); font-size: var(--small-size); }
.product-card .text-link { margin-top: auto; }
.breadcrumb { display: flex; align-items: center; gap: 10px; min-height: 54px; overflow: hidden; color: #526586; font-size: var(--caption-size); white-space: nowrap; }
.breadcrumb a { color: var(--mid-blue); font-weight: 600; }
.breadcrumb span:last-child { overflow: hidden; text-overflow: ellipsis; }
.product-hero { padding: 58px 0 68px; border-top: 1px solid #edf2f9; border-bottom: 1px solid var(--line); background: linear-gradient(145deg, #f8fbff 0%, #fff 68%); }
.product-hero-grid { display: grid; grid-template-columns: minmax(0,1.04fr) minmax(420px,.96fr); gap: 70px; align-items: center; }
.product-main-image { height: 520px; padding: 20px; display: grid; place-items: center; overflow: hidden; border: 1px solid var(--line); border-radius: 10px; background: #fff; box-shadow: var(--shadow); }
.product-main-image img { width: 100%; height: 100%; object-fit: contain; }
.product-meta { display: flex; gap: 9px; flex-wrap: wrap; margin-bottom: 18px; }
.product-meta span { padding: 6px 10px; border-radius: 4px; color: var(--blue); background: #eaf2ff; font-size: var(--caption-size); font-weight: 700; text-transform: uppercase; }
.product-meta span:last-child { color: #267718; background: #edf9ea; }
.product-hero-copy h1 { margin: 0 0 20px; font-size: 40px; }
.product-lead { margin: 0 0 26px; color: var(--muted); line-height: 1.72; }
.product-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.product-actions .btn { padding-inline: 20px; }
.hero-feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 9px 18px; margin: 26px 0 0; padding: 22px 0 0; border-top: 1px solid var(--line); list-style: none; color: #243a67; font-size: var(--small-size); }
.hero-feature-list li::before { content: "✓"; margin-right: 8px; color: var(--green); font-weight: 800; }
.product-section-nav { position: sticky; top: 112px; z-index: 20; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.96); box-shadow: 0 4px 12px rgba(8,44,143,.04); backdrop-filter: blur(10px); }
.product-section-nav .shell { min-height: 58px; display: flex; align-items: center; gap: 34px; overflow-x: auto; }
.product-section-nav a { color: #263e70; font-size: var(--small-size); font-weight: 600; white-space: nowrap; }
.product-section-nav a:hover { color: var(--mid-blue); }
.narrow-content { width: min(100% - 88px, 970px); }
.product-overview h2 { margin: 0 0 24px; }
.product-overview p:not(.eyebrow) { margin: 0 0 18px; color: var(--muted); font-size: 17px; line-height: 1.8; }
.soft-section { background: var(--soft); }
.detail-tile-grid { display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); gap: 14px; margin-top: 28px; }
.detail-tile-grid article { min-height: 132px; padding: 20px; border: 1px solid var(--line); border-radius: 7px; background: #fff; }
.detail-tile-grid span { display: grid; place-items: center; width: 30px; height: 30px; margin-bottom: 15px; border-radius: 50%; color: #fff; background: var(--green); font-weight: 800; }
.detail-tile-grid h3 { margin: 0; color: #243a67; font-family: var(--font-body); font-size: var(--small-size); line-height: 1.5; }
.product-spec-layout { display: grid; grid-template-columns: .68fr 1.32fr; gap: 70px; align-items: start; }
.spec-heading { position: sticky; top: 200px; }
.spec-heading > p:not(.eyebrow) { margin: 20px 0 24px; color: var(--muted); }
.spec-table-wrap { overflow: hidden; border: 1px solid var(--line); border-radius: 8px; box-shadow: 0 5px 18px rgba(8,44,143,.05); }
.spec-table { width: 100%; border-collapse: collapse; background: #fff; }
.spec-table th, .spec-table td { padding: 15px 20px; border-bottom: 1px solid var(--line); text-align: left; font-size: var(--small-size); }
.spec-table thead th { color: #fff; background: var(--blue); font-family: var(--font-heading); }
.spec-table tbody th { width: 43%; color: var(--blue); background: #f8fbff; font-weight: 600; }
.spec-table tr:last-child th, .spec-table tr:last-child td { border-bottom: 0; }
.two-detail-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.detail-list { display: grid; grid-template-columns: 1fr 1fr; gap: 11px 18px; margin: 26px 0 0; padding: 0; list-style: none; }
.detail-list li { position: relative; padding: 12px 14px 12px 37px; border: 1px solid var(--line); border-radius: 5px; color: #243a67; background: #fff; font-size: var(--small-size); }
.detail-list li::before { content: "→"; position: absolute; left: 13px; color: var(--mid-blue); font-weight: 800; }
.benefit-list li::before { content: "✓"; color: var(--green); }
.model-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; margin-top: 28px; }
.model-card { min-height: 155px; padding: 22px; border: 1px solid var(--line); border-top: 4px solid var(--mid-blue); border-radius: 7px; background: #fff; box-shadow: 0 4px 14px rgba(8,44,143,.045); }
.model-card h3 { margin: 0 0 14px; font-size: 18px; }
.model-card ul { margin: 0; padding-left: 18px; color: var(--muted); font-size: var(--small-size); }
.model-card li + li { margin-top: 5px; }
.supplementary-details > div:only-child { grid-column: 1 / -1; }
.product-closing { padding: 42px 0; color: #fff; background: linear-gradient(115deg,#071c5c,var(--blue)); }
.product-closing .shell { display: grid; grid-template-columns: 180px 1fr auto; gap: 38px; align-items: center; }
.product-closing img { width: 180px; padding: 10px; border-radius: 5px; background: #fff; }
.product-closing p { margin: 0; color: #eef5ff; }
.product-closing .btn { white-space: nowrap; }
.related-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 26px; }
.related-heading h2 { margin-bottom: 0; }
.related-product-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 22px; }
.related-product-grid article { overflow: hidden; padding-bottom: 22px; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.related-image { display: block; height: 210px; margin-bottom: 20px; overflow: hidden; background: var(--soft); }
.related-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.related-product-grid article:hover .related-image img { transform: scale(1.035); }
.related-product-grid article > p, .related-product-grid h3, .related-product-grid .text-link { margin-left: 20px; margin-right: 20px; }
.related-product-grid h3 { min-height: 52px; margin-top: 0; margin-bottom: 14px; font-size: 18px; }
.product-not-found { min-height: 58vh; display: grid; place-items: center; text-align: center; }
.product-not-found h1 { margin: 0 0 12px; }
.product-not-found > .shell > p:not(.eyebrow) { margin-bottom: 24px; }

@media (max-width: 1180px) {
  .product-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .product-hero-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .product-main-image { height: 390px; }
  .product-section-nav { top: 86px; }
  .detail-tile-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .product-spec-layout { gap: 40px; }
  .two-detail-columns { gap: 36px; }
  .hero,
  .page-hero,
  .about-hero,
  .product-catalogue-hero {
    min-height: auto;
  }
  .hero-copy,
  .page-hero-copy {
    width: 100%;
    max-width: 620px;
    padding-bottom: 112px;
  }
  .hero-actions {
    gap: 10px;
  }
}

@media (max-width: 900px) {
  .hero.home-hero,
  .page-hero {
    --page-hero-overlay: linear-gradient(180deg, rgba(247,250,255,.98) 0%, rgba(247,250,255,.94) 42%, rgba(247,250,255,.72) 70%, rgba(247,250,255,.16) 100%);
  }
  .product-hero-grid, .product-spec-layout { grid-template-columns: 1fr; }
  .product-main-image { height: min(48vw, 360px); }
  .spec-heading { position: static; }
  .product-closing .shell { grid-template-columns: 140px 1fr; }
  .product-closing .btn { grid-column: 2; justify-self: start; }
  .related-product-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .related-product-grid article:last-child { display: none; }
  .about-overview-grid,
  .about-alignment-grid,
  .about-pill-grid,
  .about-domain-grid,
  .about-partner-grid { grid-template-columns: 1fr; }
  .board-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .board-modal {
    padding: 10px;
  }
  .board-modal-dialog {
    max-height: 92vh;
    border-radius: 18px;
  }
  .board-modal-layout {
    grid-template-columns: 1fr;
  }
  .board-modal-portrait {
    position: static;
    min-height: 280px;
    padding: 12px;
  }
  .board-modal-portrait img { max-height: 34vh; }
  .board-modal-content {
    padding: 20px 20px 22px;
  }
  .board-modal-body {
    grid-template-columns: 1fr;
  }
  .hero.home-hero {
    min-height: auto;
    background-position: center right;
  }
  .about-hero {
    min-height: auto;
  }
  .page-hero.solutions-hero {
    min-height: auto;
  }
  .page-hero.partner-hero {
    min-height: auto;
  }
  .page-hero.sunset {
    min-height: auto;
  }
  .about-hero-copy { width: 100%; }
  .career-hero {
    min-height: auto;
    align-items: flex-start;
    background-position: center right;
  }
  .page-hero.contact-hero {
    min-height: auto;
  }
  .product-catalogue-hero {
    min-height: auto;
  }
  .career-hero .page-hero-copy {
    width: 100%;
    max-width: 100%;
    padding: 28px 0 132px;
  }
  .career-hero .hero-mini-row {
    display: none;
  }
}

@media (max-width: 720px) {
  .hero {
    min-height: 560px;
    background-image: linear-gradient(180deg, rgba(247,250,255,.98) 0%, rgba(247,250,255,.93) 42%, rgba(247,250,255,.7) 70%, rgba(247,250,255,.12) 100%), url("../../images/slider/homepage-slider.png");
    background-position: center right;
  }
  .hero-copy {
    width: 100%;
    padding: 28px 0 96px;
  }
  .hero-actions {
    margin-top: 10px;
  }
  .page-hero:not(.about-hero):not(.solutions-hero):not(.partner-hero):not(.sunset):not(.career-hero):not(.contact-hero):not(.product-catalogue-hero) {
    min-height: 560px;
    background-image: linear-gradient(180deg, rgba(247,250,255,.98) 0%, rgba(247,250,255,.93) 42%, rgba(247,250,255,.7) 70%, rgba(247,250,255,.12) 100%), url("../../images/slider/homepage-slider.png");
    background-position: center right;
  }
  .page-hero-copy {
    width: 100%;
    padding: 28px 0 96px;
  }
  .product-catalogue-hero {
    min-height: 560px;
    background-image: linear-gradient(180deg, rgba(247,250,255,.98) 0%, rgba(247,250,255,.93) 42%, rgba(247,250,255,.7) 70%, rgba(247,250,255,.12) 100%), url("../../images/slider/products-slider.png");
  }
  .catalogue-highlights { flex-direction: column; gap: 12px; }
  .product-tabbar { padding: 14px; }
  .product-tab { width: 100%; justify-content: space-between; }
  .category-panel-copy { flex-direction: column; align-items: start; }
  .section-intro, .product-grid, .two-detail-columns, .related-product-grid { grid-template-columns: 1fr; }
  .section-intro { gap: 18px; }
  .product-card-image { height: 230px; }
  .product-card-body { min-height: auto; }
  .product-hero { padding: 28px 0 44px; }
  .product-hero-copy h1 { font-size: 30px; }
  .product-main-image { height: 280px; padding: 10px; }
  .product-actions { flex-direction: column; gap: 10px; }
  .hero-feature-list { grid-template-columns: 1fr; }
  .product-section-nav .shell { gap: 22px; }
  .narrow-content { width: min(100% - 28px,520px); }
  .product-overview p:not(.eyebrow) { font-size: var(--body-size); }
  .detail-tile-grid, .model-grid { grid-template-columns: 1fr 1fr; }
  .detail-tile-grid article { min-height: 118px; padding: 16px; }
  .detail-list { grid-template-columns: 1fr; }
  .spec-table th, .spec-table td { padding: 12px; font-size: var(--caption-size); }
  .model-card { min-height: 140px; padding: 18px; }
  .product-closing .shell { grid-template-columns: 1fr; gap: 20px; }
  .product-closing .btn { grid-column: auto; justify-self: stretch; }
  .related-heading { align-items: flex-start; flex-direction: column; }
  .related-product-grid article:last-child { display: block; }
  .supplementary-details > div:only-child { grid-column: auto; }
  .about-hero { min-height: 560px; }
  .about-card,
  .about-pill-card,
  .about-domain-card,
  .about-partner-card,
  .board-card-body { padding: 20px; }
  .about-stats { gap: 10px; }
  .about-stats span { width: 100%; justify-content: center; text-align: center; }
  .board-card img {
    width: calc(100% - 24px);
    margin: 12px 12px 0;
    border-radius: 14px;
  }
}

@media (max-width: 430px) {
  .detail-tile-grid, .model-grid { grid-template-columns: 1fr; }
  .product-main-image { height: 250px; }
  .about-hero { min-height: 480px; }
  .board-grid { grid-template-columns: 1fr; }
  .board-modal-portrait { min-height: 220px; }
  .board-modal-portrait img { max-height: 30vh; }
  .board-card img {
    width: calc(100% - 20px);
    margin: 10px 10px 0;
  }
}

.site-alert { margin-top: 18px; padding: 12px 15px; border-radius: 6px; }
.site-alert.success { color: #246b18; background: #edf8ea; }
.site-alert.error { color: #9d2319; background: #fff0ef; }

.submission-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(15, 40, 90, .06);
}

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

.submission-grid label,
.submission-card label {
  display: grid;
  gap: 8px;
  color: var(--dark-blue);
  font-weight: 600;
}

.submission-grid input,
.submission-grid textarea,
.submission-grid select,
.submission-card input,
.submission-card textarea,
.submission-card select {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid #cfd9e8;
  border-radius: 6px;
  color: var(--dark-blue);
  background: #fff;
  font: inherit;
}

.submission-grid textarea,
.submission-card textarea {
  min-height: 110px;
  resize: vertical;
}

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

.submission-sections {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.submission-sections .eyebrow {
  margin-bottom: 14px;
}

@media (max-width: 720px) {
  .submission-card,
  .submission-grid {
    padding-left: 0;
    padding-right: 0;
  }

  .submission-card {
    border: 0;
    box-shadow: none;
    padding: 0;
  }

  .submission-grid {
    grid-template-columns: 1fr;
  }

  .submission-grid .full {
    grid-column: auto;
  }
}
