:root {
  --font-body: "Inter", "Segoe UI", sans-serif;
  --font-heading: "Playfair Display", Georgia, serif;
  --color-navy: #0b1f3a;
  --color-navy-2: #071526;
  --color-text: #1c2430;
  --color-muted: #5c6675;
  --color-gold: #c49a6c;
  --color-gold-2: #d4a574;
  --color-line: #e4e8ee;
  --color-bg: #f4f7fb;
  --color-white: #ffffff;
  --shadow: 0 18px 50px rgba(7, 28, 52, .1);
  --container: 1200px;
  --page-gutter: 64px;
  --phi: 1.6180339887;
  --space-1: 1rem;
  --space-2: calc(var(--space-1) * var(--phi));
  --space-3: calc(var(--space-2) * var(--phi));
  --space-4: calc(var(--space-3) * var(--phi));
  --space-5: calc(var(--space-4) * var(--phi));
  --space-section: var(--space-5);
  --hero-height: clamp(28rem, calc(100svh / var(--phi)), 42rem);
  --hero-pad-y: var(--space-4);
  --header-h: 92px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.65;
  background: var(--color-white);
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body.nav-open { overflow: hidden; }
img, svg, video { height: auto; }
:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container {
  width: min(var(--container), calc(100% - (var(--page-gutter) * 2)));
  margin-inline: auto;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--color-gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--font-heading); line-height: 1.15; color: var(--color-navy); }
h1 { font-size: clamp(2.4rem, 4.8vw, 3.6rem); margin-bottom: 22px; }
h1 span { color: var(--color-gold-2); }
h2 { font-size: clamp(1.85rem, 3vw, 2.6rem); margin-bottom: 14px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--color-navy); color: var(--color-white); }
.btn-primary:hover { background: #132a4a; }
.btn-light {
  border-color: var(--color-navy);
  background: rgba(255,255,255,.78);
  color: var(--color-navy);
}
.btn-light:hover {
  background: #fff;
  border-color: var(--color-navy);
  color: var(--color-navy);
}
.page-hero .btn-light,
.about-cta .btn-light,
.assurance-cta .btn-light,
.dark-band .btn-light {
  border-color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.1);
  color: #fff;
}
.page-hero .btn-light:hover,
.about-cta .btn-light:hover,
.assurance-cta .btn-light:hover,
.dark-band .btn-light:hover {
  background: #fff;
  color: var(--color-navy);
}
.btn-outline {
  border-color: var(--color-gold);
  color: var(--color-navy);
  min-height: 44px;
}
.btn-outline:hover { background: var(--color-gold); color: #fff; }
.btn-gold { background: var(--color-gold); color: #fff; }
.btn-gold:hover { background: #a87f52; }

/* Shared site header — aligned with the approved homepage design */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(11, 31, 58, 0.06);
}
.utility-bar {
  border-bottom: 1px solid var(--color-line);
  background: #fafbfc;
}
.utility-bar__inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.25rem;
  min-height: 36px;
  font-size: 0.75rem;
  color: var(--color-muted);
}
.utility-bar a:hover,
.lang-btn:hover { color: var(--color-navy); }
.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 0;
  background: transparent;
  color: var(--color-muted);
  font: inherit;
  cursor: pointer;
  padding: 0;
}
.lang-btn svg { width: 14px; height: 14px; }
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
  position: relative;
}
.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  z-index: 2;
}
.brand img {
  width: 158px;
  height: auto;
  object-fit: contain;
}
.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  flex: 1;
  gap: 0.15rem 1.15rem;
}
.main-nav a {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-navy);
  padding: 0.35rem 0;
  position: relative;
}
.main-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--color-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.main-nav a:not(.btn):hover::after,
.main-nav a.active:not(.btn)::after { transform: scaleX(1); }
.main-nav a.active { color: var(--color-gold); }
.nav-cta-mobile { display: none; }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  z-index: 2;
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-line);
  background: #fff;
  border-radius: 4px;
  padding: 11px 10px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  position: relative;
  z-index: 2;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--color-navy);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
.nav-backdrop { display: none; }
.btn--outline {
  background: transparent;
  border: 1px solid var(--color-gold);
  color: var(--color-navy);
  min-height: 42px;
  padding: 0 1.1rem;
}
.btn--outline:hover { background: var(--color-gold); color: #fff; }

.hero {
  position: relative;
  min-height: var(--hero-height);
  overflow: hidden;
  background: linear-gradient(90deg, #fff 0%, #fff 43%, rgba(255,255,255,.72) 55%, rgba(255,255,255,0) 73%), url("Images/Home-Hero-section.webp") right center / cover no-repeat;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 560px) 1fr;
  align-items: center;
  min-height: var(--hero-height);
  padding: var(--hero-pad-y) 0;
}
.hero-copy { padding: 0; max-width: 560px; }
.hero-text { max-width: 520px; font-weight: 600; color: #25344a; margin: 0; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.hero-art { min-height: 0; }
.trust-row {
  position: relative;
  left: auto;
  bottom: auto;
  transform: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin: 0 auto 40px;
  padding-top: 28px;
  border-top: 1px solid var(--color-line);
}
.trust-row div, .stats-grid div {
  display: flex;
  align-items: center;
  gap: 14px;
}
.trust-row div:not(:last-child), .stats-grid div:not(:last-child) { border-right: 1px solid var(--color-line); padding-right: 26px; }
.trust-row img, .stats-grid img, .service-card img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  object-position: center;
}
.trust-row span { font-size: 12px; font-weight: 800; line-height: 1.25; }

.section { padding: var(--space-section) 0; }
.section-heading.container { text-align: center; }
.section-heading .section-intro,
.section-heading > p:not(.eyebrow) {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.portfolio-card,
.assurance-card,
.why-choose-grid article {
  border-radius: 4px;
}
.section-heading { text-align: center; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  margin-top: 42px;
}
.service-card {
  min-width: 0;
  padding: 0 18px;
  text-align: center;
  border-left: 1px solid var(--color-line);
}
.service-card:first-child { border-left: 0; }
.service-card img { width: 52px; height: 52px; margin: 0 auto 18px; }
.service-card h3 { min-height: 46px; font-size: 14px; line-height: 1.25; color: var(--color-navy); }
.service-card p { min-height: 116px; color: var(--color-muted); font-size: 12px; line-height: 1.65; }
.service-card a, .platform-card a { color: var(--color-gold); font-size: 12px; font-weight: 800; }

.digital {
  padding: 54px 0;
  color: white;
  background: var(--color-navy-2);
}
.digital-grid {
  display: grid;
  grid-template-columns: .86fr 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}
.digital h2, .digital h3 { color: white; }
.digital-copy { padding: 18px 22px 18px 0; }
.digital-copy p:not(.eyebrow) { color: #d5dde9; }
.platform-card {
  position: relative;
  min-height: 320px;
  padding: 36px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.25);
  background: #071d36;
}
.platform-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .48; }
.platform-card div { position: relative; max-width: 260px; }
.platform-card h3 { margin-bottom: 0; font-size: 44px; line-height: 1; font-family: var(--font-body); }
.platform-card strong { display: block; margin: 8px 0 28px; color: var(--color-gold-2); font-size: 18px; line-height: 1.35; }
.platform-card p { color: #e5ebf4; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 28px;
}
.stats-grid strong { display: block; font-size: 30px; color: var(--color-navy); line-height: 1; }
.stats-grid span { display: block; max-width: 130px; font-size: 13px; font-weight: 700; line-height: 1.35; }

.industries { background: #f4f5f7; }
.industry-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
  margin-top: 30px;
}
.industry-grid article {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  background: var(--color-navy);
}
.industry-grid img { width: 100%; height: 100%; object-fit: cover; }
.industry-grid article::after { content: ""; position: absolute; inset: 38% 0 0; background: linear-gradient(transparent, rgba(2,19,38,.96)); }
.industry-grid h3 {
  position: absolute;
  left: 18px;
  right: 12px;
  bottom: 18px;
  z-index: 1;
  margin: 0;
  color: white;
  font-size: 15px;
  line-height: 1.3;
}
.more-card { display: grid; place-items: center; text-align: center; }
.more-card::after { display: none; }
.more-card span { width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; color: white; font-size: 34px; line-height: 42px; }
.more-card h3 { position: static; font-family: var(--font-heading); font-size: 24px; }

.footer {
  padding: 48px 0 18px;
  color: #d7e0ec;
  background: var(--color-navy-2);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr) 1.25fr;
  gap: 34px;
}
.brand-invert { color: white; }
.footer .brand img {
  width: 230px;
  height: 72px;
  object-fit: cover;
  object-position: center;
}
.footer h4 { margin: 0 0 16px; color: white; font-size: 13px; text-transform: uppercase; }
.footer a, .footer p { display: block; margin: 0 0 9px; color: #d7e0ec; font-size: 13px; line-height: 1.55; }
.social { display: flex; gap: 12px; margin-top: 22px; }
.social a { display: grid; place-items: center; width: 32px; height: 32px; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; }
.newsletter input {
  width: 100%;
  height: 48px;
  margin: 8px 0 12px;
  padding: 0 16px;
  color: white;
  border: 1px solid rgba(255,255,255,.25);
  background: transparent;
}
.newsletter .btn { width: 100%; border: 0; cursor: pointer; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.12);
}

.about-hero {
  min-height: var(--hero-height);
  color: var(--color-navy);
  background:
    linear-gradient(90deg, #f7f9fc 0%, rgba(247,249,252,.96) 42%, rgba(247,249,252,.55) 62%, rgba(247,249,252,0) 78%),
    url("Images/about2-hero-section.webp") right center / cover no-repeat;
}
.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 560px) 1fr;
  align-items: center;
  min-height: var(--hero-height);
  padding: var(--hero-pad-y) 0;
}
.about-hero-copy {
  padding: 0;
  max-width: 560px;
  width: 100%;
}
.breadcrumb {
  margin: 0 0 20px;
  color: var(--color-navy);
  font-size: 14px;
  font-weight: 600;
}
.breadcrumb span { padding: 0 10px; }
.about-hero h1 {
  margin: 0 0 16px;
  color: var(--color-navy);
  font-size: clamp(2.6rem, 4.5vw, 3.75rem);
}
.title-line,
.mini-line {
  display: block;
  width: 42px;
  height: 3px;
  margin: 0 0 18px;
  background: var(--color-gold-2);
}
.mini-line { width: 34px; height: 2px; }
.centered { margin-inline: auto; }
.about-hero h2 {
  max-width: 520px;
  margin: 0 0 20px;
  color: var(--color-navy);
  font-family: var(--font-body);
  font-size: clamp(1.15rem, 1.6vw, 1.35rem);
  line-height: 1.5;
  font-weight: 600;
}
.about-hero-copy > p:last-child {
  max-width: 520px;
  margin: 0;
  color: #27384f;
  font-size: 1.05rem;
  line-height: 1.7;
}
.about-panel-section {
  background: #f5f7fb;
}
.about-values-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: -42px;
  padding: 44px 54px;
  position: relative;
  z-index: 2;
  background: white;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.about-values-panel article {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 24px;
  padding: 0 42px;
  border-left: 1px solid var(--color-line);
}
.about-values-panel article:first-child {
  padding-left: 0;
  border-left: 0;
}
.about-values-panel img,
.commitment-list img,
.why-grid img,
.governance-list img,
.cta-grid > img {
  width: 62px;
  height: 62px;
  object-fit: cover;
  object-position: center;
}
.about-values-panel h3,
.commitment-content h2,
.why-about h2,
.governance h2,
.about-cta h2 {
  color: var(--color-navy);
  font-family: var(--font-heading);
}
.about-values-panel h3 {
  margin-bottom: 16px;
  font-size: 28px;
}
.about-values-panel p,
.about-values-panel li {
  color: #26364c;
  font-size: 15px;
  font-weight: 600;
}
.about-values-panel ul {
  margin: 0;
  padding-left: 18px;
  list-style: none;
}
.about-values-panel li {
  position: relative;
  margin-bottom: 8px;
}
.about-values-panel li::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-gold-2);
}
.about-commitment {
  position: relative;
  overflow: hidden;
  padding: 70px 0 58px;
  background: #f5f7fb;
}
.commitment-wrap {
  display: grid;
  grid-template-columns: minmax(0, 555px) minmax(520px, 1fr);
  gap: 42px;
  align-items: center;
  min-height: 420px;
}
.commitment-content {
  position: relative;
  z-index: 1;
}
.commitment-content h2 { margin-bottom: 10px; font-size: 30px; }
.lead {
  max-width: 485px;
  margin-bottom: 0;
  color: #26364c;
  font-weight: 600;
  line-height: 1.55;
}
.commitment-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px 30px;
  margin-top: 34px;
}
.commitment-list article {
  display: flex;
  gap: 15px;
  align-items: start;
  min-width: 0;
}
.commitment-list img {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  object-fit: cover;
  object-position: center;
}
.commitment-list strong,
.why-grid h3 {
  display: block;
  color: var(--color-navy);
  font-size: 14px;
  font-weight: 800;
}
.commitment-list span,
.why-grid p {
  color: #33445c;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.55;
}
.commitment-visual {
  align-self: stretch;
  min-height: 390px;
  background: url("Images/about2-2nd-ng.webp") center / cover no-repeat;
  mask-image: linear-gradient(90deg, transparent 0%, #000 13%, #000 100%);
}
.why-about {
  background: white;
  padding-top: 44px;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin-top: 30px;
}
.why-grid article {
  min-height: 154px;
  padding: 0 28px;
  text-align: center;
  border-left: 1px solid var(--color-line);
}
.why-grid article:first-child { border-left: 0; }
.why-grid img { margin: 0 auto 16px; }
.governance {
  display: grid;
  grid-template-columns: 1fr 1fr .95fr;
  align-items: stretch;
  margin-bottom: 44px;
  overflow: hidden;
  color: var(--color-navy);
  background: white;
  border-radius: 8px;
  box-shadow: 0 10px 34px rgba(7, 28, 52, .08);
}
.governance > img {
  width: 100%;
  height: 100%;
  min-height: 270px;
  object-fit: cover;
}
.governance-copy {
  padding: 46px 48px;
}
.governance h2 { color: var(--color-navy); font-size: 32px; }
.governance-copy p { color: #33445c; }
.dark-outline {
  color: var(--color-navy);
  border-color: var(--color-gold);
}
.governance-list {
  padding: 38px 44px;
  border-left: 1px solid var(--color-line);
}
.governance-list p {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-line);
  color: var(--color-navy);
  font-weight: 700;
}
.governance-list img {
  width: 34px;
  height: 34px;
}
.about-cta {
  padding: 56px 0 34px;
  color: white;
  background:
    linear-gradient(90deg, rgba(2,19,38,.96), rgba(2,19,38,.88)),
    url("Images/Home-Hero-section2.webp") center / cover no-repeat;
}
.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}
.about-cta h2 {
  margin: 0;
  max-width: 650px;
  color: white;
  font-size: 32px;
}
.cta-grid div {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

@media (max-width: 1100px) {
  :root { --header-h: 72px; }
  .nav-cta-desktop { display: none; }
  .nav-toggle { display: inline-flex; }
  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 60;
    width: min(86vw, 340px);
    height: 100dvh;
    margin: 0;
    display: flex;
    flex-direction: column;
    flex: none;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: calc(var(--header-h) + 36px + 1rem) 1.25rem 1.5rem;
    background: #fff;
    border-left: 1px solid var(--color-line);
    box-shadow: -18px 0 40px rgba(11, 31, 58, .16);
    transform: translateX(105%);
    visibility: hidden;
    transition: transform .28s ease, visibility .28s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    font-size: 0.9rem;
  }
  .main-nav.is-open {
    transform: translateX(0);
    visibility: visible;
  }
  .main-nav a:not(.btn) {
    display: block;
    padding: 0.95rem 0.15rem;
    border-bottom: 1px solid var(--color-line);
    white-space: normal;
  }
  .main-nav a:not(.btn)::after { display: none; }
  .nav-cta-mobile {
    display: inline-flex;
    width: 100%;
    margin-top: 1.25rem;
  }
  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 55;
    background: rgba(7, 21, 38, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
  }
  .nav-backdrop.is-visible { opacity: 1; pointer-events: auto; }
  .service-grid { grid-template-columns: repeat(3, 1fr); gap: 30px 0; }
  .service-card:nth-child(3n+1) { border-left: 0; }
  .digital-grid { grid-template-columns: 1fr; }
  .digital-copy { padding-right: 0; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 26px; }
  .stats-grid div { border-right: 0 !important; padding-right: 0 !important; }
  .industry-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .about-hero {
    background:
      linear-gradient(90deg, #f7f9fc 0%, rgba(247,249,252,.92) 58%, rgba(247,249,252,.28) 100%),
      url("Images/about2-hero-section.webp") right center / cover no-repeat;
  }
  .about-values-panel,
  .commitment-wrap,
  .governance,
  .cta-grid {
    grid-template-columns: 1fr;
  }
  .commitment-wrap {
    gap: 26px;
    min-height: 0;
  }
  .commitment-visual {
    min-height: 360px;
    mask-image: linear-gradient(180deg, #000 0%, #000 100%);
    background-size: cover;
  }
  .about-values-panel article {
    padding: 26px 0;
    border-left: 0;
    border-top: 1px solid var(--color-line);
  }
  .about-values-panel article:first-child { border-top: 0; padding-top: 0; }
  .why-grid { grid-template-columns: repeat(3, 1fr); gap: 30px 0; }
  .why-grid article:nth-child(3n+1) { border-left: 0; }
  .governance-list { border-left: 0; }
}

@media (max-width: 760px) {
  :root {
    --space-section: var(--space-4);
    --hero-height: clamp(24rem, calc(100svh / var(--phi)), 36rem);
    --hero-pad-y: var(--space-3);
    --hero-pad-y: 64px;
    --page-gutter: 20px;
    --header-h: 72px;
  }
  .utility-bar__inner {
    gap: 0.85rem;
    font-size: 0.7rem;
    min-height: 32px;
  }
  .brand img { width: 132px; height: auto; }
  .navbar { min-height: var(--header-h); }
  .page-hero-inner,
  .page-hero > .container,
  .about-hero-grid,
  .hero-grid {
    min-height: 0;
    padding-top: var(--hero-pad-y);
    padding-bottom: var(--hero-pad-y);
  }
  .page-hero-inner > .breadcrumb,
  .page-hero-inner > .eyebrow,
  .page-hero-inner > h1,
  .page-hero-inner > .page-hero-lead,
  .page-hero-inner > .hero-actions,
  .page-hero h1 {
    max-width: none;
  }
  .page-hero-pillars,
  .capability-grid,
  .feature-icon-grid,
  .stats-band,
  .process-steps,
  .solution-cards,
  .pillar-grid,
  .trust-row {
    grid-template-columns: 1fr 1fr;
  }
  .hero {
    min-height: 0;
    background: linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.92) 55%, rgba(255,255,255,.2) 100%), url("Images/Home-Hero-section.webp") right bottom / cover no-repeat;
  }
  .hero-grid { display: block; min-height: 0; }
  .hero-copy { padding: 0; max-width: none; }
  .trust-row {
    margin: 0 auto 32px;
  }
  h1 { font-size: 42px; }
  .hero-actions, .footer-bottom { flex-direction: column; }
  .btn { width: 100%; }
  .trust-row {
    position: static;
    transform: none;
    grid-template-columns: repeat(2, 1fr);
    padding-bottom: 28px;
    gap: 18px;
  }
  .trust-row div { border-right: 0 !important; padding-right: 0 !important; }
  .service-grid, .stats-grid, .industry-grid, .footer-grid { grid-template-columns: 1fr; }
  .service-card { border-left: 0; border-top: 1px solid var(--color-line); padding: 24px 0 0; }
  .service-card:first-child { border-top: 0; }
  .service-card h3, .service-card p { min-height: auto; }
  .platform-card { min-height: 330px; padding: 28px; }
  .industry-grid article { min-height: 230px; }
  .about-hero {
    background:
      linear-gradient(180deg, rgba(247,249,252,.98), rgba(247,249,252,.88)),
      url("Images/about2-hero-section.webp") center / cover no-repeat;
  }
  .about-hero-grid {
    display: block;
    min-height: 0;
    padding-top: var(--hero-pad-y);
    padding-bottom: var(--hero-pad-y);
  }
  .about-hero-copy { padding: 0; max-width: none; }
  .about-values-panel { padding: 28px; }
  .about-values-panel article { grid-template-columns: 1fr; gap: 12px; }
  .commitment-list, .why-grid { grid-template-columns: 1fr; }
  .about-commitment {
    padding: 48px 0;
  }
  .commitment-wrap {
    gap: 18px;
  }
  .commitment-visual {
    min-height: 260px;
    background-size: 135% auto;
  }
  .why-grid article {
    border-left: 0;
    border-top: 1px solid var(--color-line);
    padding-top: 24px;
  }
  .why-grid article:first-child { border-top: 0; }
  .governance-copy, .governance-list { padding: 28px; }
  .about-cta h2 { font-size: 28px; }
  .value-bar-grid,
  .portfolio-grid,
  .assurance-services,
  .solutions-grid,
  .approach-grid,
  .support-grid,
  .why-choose-grid,
  .feature-icon-grid,
  .capability-grid,
  .pillar-grid,
  .solution-cards {
    grid-template-columns: 1fr;
  }
  .page-hero-pillars {
    grid-template-columns: 1fr 1fr;
    margin-top: 36px;
    gap: 20px;
  }
  .page-hero h1 { font-size: clamp(2rem, 8vw, 2.5rem); }
  .portfolio-card,
  .assurance-card { padding: 24px; }
}

/* ===== Inner page heroes — same container as page content ===== */
.page-hero {
  position: relative;
  width: 100%;
  min-height: var(--hero-height);
  color: #fff;
  display: block;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(7, 21, 38, .92) 0%, rgba(7, 21, 38, .78) 46%, rgba(7, 21, 38, .4) 100%);
  z-index: 1;
}
.page-hero--services {
  background: #071526 url("Images/services=hero-section-bg.webp") right center / cover no-repeat;
}
.page-hero--assurance {
  background: #071526 url("Images/67b83185-2f1f-487b-8e0f-5a9cdf2adc6a.webp") center / cover no-repeat;
}
.page-hero--digital {
  background: #071526 url("Images/c81a0d29-8790-4487-a93a-7d1b13165548.webp") center / cover no-repeat;
}
.page-hero--product {
  background: #071526 url("Images/61698733-a129-4699-8144-defc99daa126.webp") center / cover no-repeat;
}
.page-hero--iris {
  background: #071526 url("Images/4cdbd193-67fc-487a-a176-7f9c32d463c4.webp") center / cover no-repeat;
}
.page-hero--promise {
  background: #071526 url("Images/da8cb691-25f2-4fab-a852-b4e5868071b1.webp") center / cover no-repeat;
}
.page-hero-inner,
.page-hero > .container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: var(--hero-height);
  padding-top: var(--hero-pad-y);
  padding-bottom: var(--hero-pad-y);
  box-sizing: border-box;
}
.page-hero-inner > .breadcrumb,
.page-hero-inner > .eyebrow,
.page-hero-inner > h1,
.page-hero-inner > .page-hero-lead,
.page-hero-inner > .hero-actions,
.page-hero-copy {
  max-width: 620px;
  width: 100%;
}
.breadcrumb.light,
.page-hero .eyebrow { color: var(--color-gold-2); }
.breadcrumb.light {
  margin: 0 0 16px;
  font-weight: 600;
}
.page-hero .eyebrow { margin: 0 0 14px; }
.page-hero h1 {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1.15;
  max-width: 620px;
}
.page-hero h1 span { color: var(--color-gold-2); }
.page-hero-lead {
  margin: 0 0 28px;
  color: #e8eef6;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.7;
}
.page-hero .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 0;
}
.page-hero-pillars {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px 32px;
  width: 100%;
  max-width: none;
  margin: 48px 0 0;
  padding: 28px 0 0;
  border-top: 1px solid rgba(255,255,255,.2);
}
.page-hero-pillars div {
  display: grid;
  gap: 8px;
  align-content: start;
}
.page-hero-pillars img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 50%;
}
.page-hero-pillars strong {
  color: #fff;
  font-size: 0.92rem;
  line-height: 1.3;
}
.page-hero-pillars span {
  color: #c7d2e0;
  font-size: 0.82rem;
  line-height: 1.45;
}
.section-intro {
  max-width: 720px;
  margin: 10px auto 0;
  color: var(--color-muted);
  font-weight: 600;
}
.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

/* Services portfolio */
.portfolio { background: #f7f9fc; }
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 36px;
}
.portfolio-card,
.assurance-card {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--color-line);
  box-shadow: 0 10px 28px rgba(7, 28, 52, .05);
}
.portfolio-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.portfolio-card-top img,
.assurance-card > img,
.solutions-grid img,
.approach-grid img,
.why-choose-grid img,
.feature-icon-grid img {
  width: 52px;
  height: 52px;
  object-fit: cover;
}
.portfolio-card-top span,
.approach-grid span {
  color: var(--color-gold);
  font-size: 22px;
  font-weight: 800;
}
.portfolio-card h3,
.assurance-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
  color: var(--color-navy);
}
.portfolio-card p,
.assurance-card p {
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 600;
}
.portfolio-card ul,
.assurance-card ul {
  margin: 16px 0 18px;
  padding-left: 18px;
  color: #2c3d54;
  font-size: 13px;
  font-weight: 600;
}
.portfolio-card li,
.assurance-card li { margin-bottom: 6px; }
.portfolio-card a,
.assurance-card a {
  color: var(--color-gold);
  font-size: 12px;
  font-weight: 800;
}

/* Assurance */
.value-bar {
  background: #fff;
  border-bottom: 1px solid var(--color-line);
}
.value-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.value-bar-grid article {
  padding: 28px 24px;
  border-left: 1px solid var(--color-line);
}
.value-bar-grid article:first-child { border-left: 0; }
.value-bar-grid img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  margin-bottom: 12px;
}
.value-bar-grid h3 {
  margin: 0 0 8px;
  font-size: 15px;
  color: var(--color-navy);
}
.value-bar-grid p {
  margin: 0;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 600;
}
.assurance-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 36px;
}
.solutions-depth { background: #f5f7fb; }
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 34px;
  text-align: center;
}
.solutions-grid article,
.feature-icon-grid article,
.approach-grid article {
  padding: 18px 12px;
}
.solutions-grid img,
.feature-icon-grid img,
.approach-grid img {
  margin: 0 auto 14px;
}
.solutions-grid h3,
.feature-icon-grid h3,
.approach-grid h3,
.why-choose-grid h3 {
  margin: 0 0 8px;
  font-size: 16px;
  color: var(--color-navy);
}
.solutions-grid p,
.feature-icon-grid p,
.approach-grid p,
.why-choose-grid p {
  margin: 0;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 600;
}
.approach-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-top: 34px;
  text-align: center;
}
.approach-grid span {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}
.industries-support { background: #f7f9fc; }
.support-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 30px;
}
.support-grid article,
.support-more {
  display: grid;
  place-items: center;
  min-height: 96px;
  padding: 16px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-navy);
  background: #fff;
  border: 1px solid var(--color-line);
}
.support-more {
  color: var(--color-gold);
  background: var(--color-navy);
}
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 34px;
}
.why-choose-grid:has(> :nth-child(4):last-child) {
  grid-template-columns: repeat(4, 1fr);
}
.solution-cards:has(> :nth-child(4):last-child),
.solution-cards:has(> :nth-child(4)) {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.stats-band:has(> :nth-child(5)) {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.capability-grid:has(> :nth-child(10):last-child) {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.why-choose-grid article {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--color-line);
}
.why-choose-grid img { margin-bottom: 14px; }
.assurance-cta {
  background:
    linear-gradient(90deg, rgba(2,19,38,.94), rgba(2,19,38,.78)),
    url("Images/51ebadb4-d0ad-4636-a99e-e18ca1234eeb.webp") center / cover no-repeat;
}

/* Digital / product pages */
.feature-icon-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  margin-top: 34px;
  text-align: center;
}
.feature-icon-grid .icon-dot,
.capability-grid .icon-dot,
.pillar-grid .icon-dot,
.why-choose-grid .icon-dot,
.solution-cards .icon-dot,
.process-steps .icon-dot {
  position: relative;
  width: 68px;
  height: 68px;
  margin: 0 auto 16px;
  border-radius: 50%;
  border: 1px solid rgba(196, 154, 108, .55);
  background:
    radial-gradient(circle at 30% 28%, rgba(255,255,255,.18), transparent 42%),
    linear-gradient(160deg, #163258 0%, #0b1f3a 55%, #071526 100%);
  box-shadow: 0 10px 24px rgba(7, 21, 38, .14);
}
.feature-icon-grid .icon-dot::after,
.capability-grid .icon-dot::after,
.pillar-grid .icon-dot::after,
.why-choose-grid .icon-dot::after,
.solution-cards .icon-dot::after,
.process-steps .icon-dot::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  border: 2px solid var(--color-gold);
  background: transparent;
}
.feature-icon-grid article,
.capability-grid article,
.pillar-grid article,
.solution-cards article,
.why-choose-grid article {
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.feature-icon-grid article:hover,
.capability-grid article:hover,
.pillar-grid article:hover,
.solution-cards article:hover,
.why-choose-grid article:hover,
.portfolio-card:hover,
.assurance-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(7, 28, 52, .1);
  border-color: rgba(196, 154, 108, .45);
}
.capability-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}
.solution-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}
.soft-band .solution-cards {
  margin-top: 22px;
}
.text-link {
  color: var(--color-gold);
  font-weight: 800;
  font-size: 12px;
}
.hero-actions--center { justify-content: center; }
.soft-band .digital-grid {
  margin-top: 34px;
}
.soft-band .digital-copy {
  color: var(--color-navy);
  padding-right: 12px;
}
.soft-band .digital-copy h2 { color: var(--color-navy); }
.soft-band .digital-copy p { color: var(--color-muted); }
.page-hero--promise .page-hero-inner h2 {
  margin: 0 0 18px;
  max-width: 820px;
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 3.4vw, 2.6rem);
}
.capability-grid article,
.pillar-grid article,
.solution-cards article,
.split-panel,
.stats-band,
.process-steps article,
.feature-icon-grid article {
  padding: 28px 22px;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: 4px;
}
.feature-icon-grid article {
  background: #fff;
  box-shadow: 0 8px 24px rgba(7, 28, 52, .04);
}
.capability-grid h3,
.pillar-grid h3,
.solution-cards h3,
.process-steps h3 {
  margin: 0 0 8px;
  color: var(--color-navy);
  font-size: 18px;
}
.capability-grid p,
.pillar-grid p,
.solution-cards p,
.process-steps p,
.split-panel p,
.split-panel li {
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 600;
}
.product-split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items: center;
  margin-top: 34px;
}
.product-split img {
  width: 100%;
  border: 1px solid var(--color-line);
  background: #0b1f3a;
}
.product-split ul {
  margin: 16px 0 22px;
  padding-left: 18px;
  color: #2c3d54;
  font-weight: 600;
}
.product-split li { margin-bottom: 8px; }
.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 34px;
  padding: 0;
  border: 0;
  background: transparent;
}
.stats-band article {
  padding: 28px 20px;
  text-align: center;
  color: #fff;
  background: var(--color-navy-2);
}
.stats-band strong {
  display: block;
  margin-bottom: 8px;
  font-size: 32px;
  color: var(--color-gold-2);
}
.stats-band span {
  font-size: 13px;
  font-weight: 700;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 34px;
}
.process-steps article { text-align: center; }
.process-steps span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 12px;
  border-radius: 50%;
  color: #fff;
  background: var(--color-navy);
  font-weight: 800;
  font-size: 13px;
}
.soft-band { background: #f5f7fb; }
.dark-band {
  padding: 56px 0;
  color: #fff;
  background: var(--color-navy-2);
}
.dark-band h2,
.dark-band h3 { color: #fff; }
.dark-band p { color: #d5dde9; }
.inline-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 28px 0;
}
.inline-cta h2 {
  margin: 0;
  max-width: 640px;
  font-size: 28px;
}
.two-col-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 34px;
}
.panel-dark {
  color: #fff;
  background: var(--color-navy);
}
.panel-dark h3,
.panel-soft h3 { margin-top: 0; }
.panel-soft { background: #eef7f0; }
.panel-dark p,
.panel-dark li { color: #d9e2ef; }
.page-mock {
  margin-top: 28px;
  border: 1px solid var(--color-line);
  background: #071c34;
}
.page-mock img {
  width: 100%;
  opacity: .95;
}
.error-page {
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 80px 20px;
  background:
    radial-gradient(circle at 20% 20%, rgba(200,151,67,.12), transparent 40%),
    linear-gradient(180deg, #f7f9fc, #fff);
}
.error-page h1 {
  margin-bottom: 12px;
  font-size: clamp(48px, 8vw, 84px);
}
.error-page p {
  max-width: 460px;
  margin: 0 auto 28px;
  color: var(--color-muted);
  font-weight: 600;
}

@media (max-width: 1100px) {
  .page-hero-pillars,
  .value-bar-grid,
  .portfolio-grid,
  .assurance-services,
  .why-choose-grid,
  .feature-icon-grid,
  .stats-band,
  .process-steps,
  .solution-cards,
  .capability-grid,
  .two-col-panels,
  .product-split {
    grid-template-columns: 1fr 1fr;
  }
  .solutions-grid,
  .approach-grid,
  .support-grid,
  .pillar-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  :root {
    --page-gutter: 32px;
    --hero-pad-y: 80px;
  }
  .page-hero-inner,
  .page-hero > .container {
    padding-top: var(--hero-pad-y);
    padding-bottom: var(--hero-pad-y);
  }
  .page-hero-inner > .breadcrumb,
  .page-hero-inner > .eyebrow,
  .page-hero-inner > h1,
  .page-hero-inner > .page-hero-lead,
  .page-hero-inner > .hero-actions {
    max-width: 100%;
  }
  .value-bar-grid article {
    border-left: 0;
    border-top: 1px solid var(--color-line);
  }
}

.breadcrumb a { color: inherit; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.35); }
.breadcrumb a:hover { border-bottom-color: var(--color-gold-2); color: var(--color-gold-2); }
.breadcrumb:not(.light) a { border-bottom-color: rgba(11,31,58,.25); }
.breadcrumb:not(.light) a:hover { color: var(--color-navy); border-bottom-color: var(--color-gold); }
.related-links-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-2);
}
.related-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: calc(var(--space-4) * var(--phi));
  padding: var(--space-2);
  border: 1px solid var(--color-line);
  background: var(--color-white);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--color-navy);
  transition: border-color .2s ease, transform .2s ease, color .2s ease;
}
.related-link:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  transform: translateY(-2px);
}
@media (max-width: 900px) {
  .related-links-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .related-links-grid { grid-template-columns: 1fr; }
}

/* Industries page */
.industry-grid--page {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.industry-grid--page article { min-height: calc(var(--space-5) * var(--phi)); }
.industry-icon-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-2);
  margin-top: var(--space-3);
}
.industry-icon-grid article {
  padding: var(--space-2);
  background: #fff;
  border: 1px solid var(--color-line);
  text-align: left;
}
.industry-icon-grid img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin-bottom: 14px;
}
.industry-icon-grid h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  color: var(--color-navy);
}
.industry-icon-grid p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.9rem;
}
.industries-extra { margin-top: var(--space-3); }

/* Contact page */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-2);
  margin-top: var(--space-3);
}
.contact-cards article {
  padding: var(--space-2);
  background: #fff;
  border: 1px solid var(--color-line);
}
.contact-cards img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 14px;
}
.contact-cards h3 {
  margin: 0 0 10px;
  color: var(--color-navy);
}
.contact-cards p {
  margin: 0 0 8px;
  color: var(--color-muted);
  font-size: 0.95rem;
}
.contact-cards a { color: var(--color-navy); font-weight: 600; }
.contact-cards a:hover { color: var(--color-gold); }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-4);
  align-items: start;
}
.contact-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--color-navy);
}
.contact-copy > p { color: var(--color-muted); max-width: 36rem; }
.contact-points {
  margin: var(--space-2) 0;
  padding-left: 1.1rem;
  color: var(--color-navy);
}
.contact-points li { margin-bottom: 0.55rem; font-weight: 600; }
.contact-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}
.contact-quick-links a {
  color: var(--color-gold);
  font-weight: 700;
  font-size: 0.9rem;
}
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: var(--space-3);
  background: #fff;
  border: 1px solid var(--color-line);
}
.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-navy);
}
.contact-form__full { grid-column: 1 / -1; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--color-line);
  background: #f8fafc;
  font: inherit;
  text-transform: none;
  letter-spacing: normal;
  font-weight: 500;
  color: var(--color-text);
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form .btn { grid-column: 1 / -1; width: fit-content; }
.contact-form__note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--color-muted);
  font-size: 0.88rem;
  text-transform: none;
  letter-spacing: normal;
  font-weight: 500;
}
@media (max-width: 1000px) {
  .industry-grid--page,
  .industry-icon-grid,
  .contact-cards { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: var(--space-3); }
}
@media (max-width: 560px) {
  .industry-grid--page,
  .industry-icon-grid,
  .contact-cards,
  .contact-form { grid-template-columns: 1fr; }
  .contact-form .btn { width: 100%; }
}
