@charset "UTF-8";
:root {
  --graphite: #111417;
  --deep-graphite: #1b2025;
  --steel: #66717b;
  --silver: #c9ced2;
  --white: #ffffff;
  --off-white: #f4f6f7;
  --blue: #1261a0;
  --deep-blue: #0a3154;
  --blue-light: #2784c6;
  --bronze: #a8794b;
  --border-light: rgba(17, 20, 23, 0.12);
  --border-dark: rgba(255, 255, 255, 0.13);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  --radius: 2px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--graphite);
  background: var(--white);
  font-family: "Inter", sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand,
.eyebrow,
.btn,
.product-number,
.principle-number,
.footer-title,
.display-number {
  font-family: "Montserrat", sans-serif;
}

h1,
h2,
h3,
h4 {
  line-height: 1.08;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1320px;
}

.section-pad {
  padding: 110px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 1px;
  background: currentColor;
}

.eyebrow-light {
  color: #72b7e5;
}

.dark-eyebrow {
  color: #6eb3e1;
}

.section-title {
  margin: 16px 0 0;
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 800;
  line-height: 1.3;
}

.section-copy {
  max-width: 650px;
  color: #66717b;
  font-size: 1.05rem;
}

/* Brand mark */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.brand-mark {
  width: 43px;
  height: 43px;
  flex: 0 0 43px;
  position: relative;
  display: grid;
  place-items: center;
}

.brand-mark svg {
  width: 100%;
  height: 100%;
  display: block;
}

.brand-text {
  line-height: 0.92;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-text span {
  display: block;
  font-size: 0.67rem;
  letter-spacing: 0.19em;
  margin-top: 5px;
  color: #b8c0c7;
  font-weight: 600;
}

/* Header */
.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  transition: 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header.scrolled {
  background: rgba(17, 20, 23, 0.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.18);
}

.navbar {
  min-height: 84px;
}

.navbar .nav-link {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 12px !important;
  transition: 0.2s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus,
.navbar .nav-link.active {
  color: #fff;
}

.navbar .nav-link.active::after {
  content: "";
  display: block;
  height: 2px;
  margin: 8px 0 -10px;
  background: var(--blue-light);
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.3);
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  filter: invert(1);
}

.dropdown-menu {
  border: 1px solid var(--border-light);
  border-radius: 2px;
  padding: 10px;
  box-shadow: var(--shadow);
}

.dropdown-item {
  font-size: 0.82rem;
  font-weight: 600;
  padding: 10px 12px;
  border-radius: 2px;
}

.dropdown-item:hover {
  background: var(--off-white);
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.3);
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  filter: invert(1);
}

.btn-brand {
  border: 1px solid var(--blue);
  background: var(--blue);
  color: #fff;
  border-radius: 2px;
  padding: 13px 20px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: 0.25s ease;
}

.btn-brand:hover {
  background: var(--blue-light);
  border-color: var(--blue-light);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-light-custom {
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: transparent;
  color: #fff;
  border-radius: 2px;
  padding: 13px 20px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: 0.25s ease;
}

.btn-outline-light-custom:hover {
  border-color: #fff;
  background: #fff;
  color: var(--graphite);
  transform: translateY(-2px);
}

.btn-outline-dark-custom {
  border: 1px solid var(--graphite);
  background: transparent;
  color: var(--graphite);
  border-radius: 2px;
  padding: 13px 20px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: 0.25s ease;
}

.btn-outline-dark-custom:hover {
  background: var(--graphite);
  color: #fff;
  transform: translateY(-2px);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, rgba(8, 11, 13, 0.94) 0%, rgba(8, 11, 13, 0.78) 42%, rgba(8, 11, 13, 0.3) 100%), url("https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?auto=format&fit=crop&w=2200&q=85") center/cover no-repeat;
  color: #fff;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.28));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 95px;
  padding-bottom: 80px;
}

.hero .eyebrow {
  color: #72b7e5;
}

.hero h1 {
  max-width: 850px;
  margin: 20px 0;
  font-size: clamp(3rem, 7vw, 6.8rem);
  font-weight: 800;
  letter-spacing: -0.065em;
}

.hero h1 em {
  color: #7cb9df;
  font-style: normal;
}

.hero-lead {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  margin-bottom: 30px;
}

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

.hero-spec {
  position: relative;
  z-index: 3;
  margin-left: auto;
  max-width: 390px;
  padding: 28px;
  background: rgba(17, 20, 23, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(15px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.spec-label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8aa0af;
}

.hero-spec h3 {
  font-size: 1.2rem;
  margin: 8px 0 20px;
}

.spec-row {
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.spec-row:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.spec-name {
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.spec-value {
  color: #78b9e1;
  font-size: 0.76rem;
  font-weight: 700;
  text-align: right;
}

.hero-bottom {
  position: absolute;
  z-index: 3;
  left: 0;
  bottom: 25px;
  width: 100%;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* Intro */
.intro-number {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(5rem, 10vw, 10rem);
  font-weight: 800;
  line-height: 0.8;
  color: #edf0f2;
  letter-spacing: -0.08em;
}

.intro h2 {
  font-size: clamp(2.1rem, 4vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  margin: 8px 0 24px;
}

.intro p {
  max-width: 720px;
  color: #66717b;
  font-size: 1.05rem;
}

.metric {
  border-top: 1px solid var(--border-light);
  padding-top: 22px;
  margin-top: 38px;
}

.metric strong {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}

.metric span {
  color: var(--steel);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

/* Products */
.products {
  background: var(--graphite);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.products .products::before {
  content: "AIA";
  position: absolute;
  right: -30px;
  top: 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 19rem;
  line-height: 1;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.025);
  pointer-events: none;
}
.products .products .section-copy {
  color: #9da7ae;
}
.products .product-card {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #1a1f23;
  transition: transform 0.35s ease, border-color 0.35s ease;
}
.products .product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(72, 148, 202, 0.65);
}
.products .product-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.58;
  transition: transform 0.6s ease, opacity 0.4s ease;
}
.products .product-card:hover img {
  transform: scale(1.06);
  opacity: 0.68;
}
.products .product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 12, 14, 0.12) 15%, rgba(10, 12, 14, 0.94) 88%);
}
.products .product-number {
  position: absolute;
  z-index: 2;
  top: 22px;
  left: 24px;
  color: rgba(255, 255, 255, 0.58);
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}
.products .product-content {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 25px;
}
.products .product-content h3 {
  font-size: 1.65rem;
  font-weight: 800;
  margin-bottom: 7px;
}
.products .product-content p {
  color: #9eabb4;
  font-size: 0.84rem;
  margin: 0 0 20px;
}
.products .product-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #7fc0e7;
  font-size: 0.72rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.products .product-link span {
  transition: transform 0.2s ease;
}
.products .product-card:hover .product-link span {
  transform: translateX(5px);
}

/* Why */
.why {
  background: var(--off-white);
}
.why .why-card {
  height: 100%;
  padding: 30px;
  border-top: 2px solid var(--graphite);
  background: #fff;
  transition: 0.25s ease;
}
.why .why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(17, 20, 23, 0.08);
}
.why .why-number {
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  color: var(--blue);
  font-weight: 800;
  letter-spacing: 0.15em;
}
.why .why-card h3 {
  margin: 38px 0 12px;
  font-size: 1.2rem;
  font-weight: 800;
}
.why .why-card p {
  color: var(--steel);
  font-size: 0.9rem;
  margin: 0;
}

/* Technical */
.technical {
  background: var(--deep-blue);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.technical::after {
  content: "";
  position: absolute;
  right: -10%;
  top: -25%;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(255, 255, 255, 0.025), 0 0 0 180px rgba(255, 255, 255, 0.02);
}

.technical .section-copy {
  color: #a8bac7;
}

.technical-panel {
  position: relative;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.14);
}

.tech-item {
  padding: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.tech-item:last-child {
  border-bottom: 0;
}

.tech-product {
  color: #74b9e3;
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.tech-table {
  width: 100%;
  font-size: 0.86rem;
}

.tech-table td {
  padding: 6px 0;
  color: #b5c2ca;
}

.tech-table td:last-child {
  text-align: right;
  color: #fff;
  font-weight: 600;
}

/* Global */
.global {
  position: relative;
  background: #f7f8f9;
  overflow: hidden;
}

.world-grid {
  position: relative;
  min-height: 420px;
  border: 1px solid var(--border-light);
  background: linear-gradient(rgba(18, 97, 160, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(18, 97, 160, 0.04) 1px, transparent 1px);
  background-size: 36px 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.world-grid::before {
  content: "";
  width: 82%;
  height: 62%;
  border: 1px dashed rgba(18, 97, 160, 0.3);
  border-radius: 50%;
  transform: rotate(-10deg);
}

.route {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  transform-origin: left center;
}

.route.one {
  width: 40%;
  left: 23%;
  top: 48%;
  transform: rotate(-12deg);
}

.route.two {
  width: 31%;
  left: 39%;
  top: 51%;
  transform: rotate(17deg);
}

.route.three {
  width: 26%;
  left: 49%;
  top: 48%;
  transform: rotate(-3deg);
}

.route-dot {
  position: absolute;
  width: 9px;
  height: 9px;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(18, 97, 160, 0.09);
}

.dot-a {
  left: 22%;
  top: 49%;
}

.dot-b {
  left: 50%;
  top: 42%;
}

.dot-c {
  left: 67%;
  top: 54%;
}

.global-stat {
  border-top: 1px solid var(--border-light);
  padding-top: 20px;
  margin-top: 30px;
}

.global-stat strong {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 1.15rem;
}

.global-stat span {
  color: var(--steel);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

/* Industries */
.industries-list {
  border-top: 1px solid var(--border-light);
}

.industry-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 25px 0;
  border-bottom: 1px solid var(--border-light);
  transition: 0.25s ease;
}

.industry-row:hover {
  padding-left: 12px;
  padding-right: 12px;
  background: var(--off-white);
}

.industry-index {
  color: var(--blue);
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.industry-name {
  flex: 1;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.15rem, 2.3vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.025em;
}

.industry-arrow {
  font-size: 1.4rem;
  color: var(--steel);
}

/* CTA */
.cta {
  background: linear-gradient(110deg, rgba(10, 49, 84, 0.97), rgba(17, 20, 23, 0.96)), url("https://images.unsplash.com/photo-1504328345606-18bbc8c9d7d1?auto=format&fit=crop&w=2000&q=80") center/cover;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  right: -130px;
  top: -150px;
  box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.025), 0 0 0 140px rgba(255, 255, 255, 0.015);
}

.cta h2 {
  position: relative;
  z-index: 2;
  max-width: 850px;
  font-size: clamp(2.2rem, 1.6667rem + 2.6667vw, 4rem);
  font-weight: 800;
  margin: 15px 0 25px;
}

.cta p {
  position: relative;
  z-index: 2;
  max-width: 650px;
  color: #b9c6cf;
  font-size: 1.02rem;
}

.cta .hero-actions {
  position: relative;
  z-index: 2;
}

/* Footer */
.footer {
  background: #0b0e10;
  color: #fff;
  padding: 75px 0 25px;
}

.footer .brand-text {
  font-size: 1.05rem;
}

.footer-tagline {
  color: #8f9aa2;
  max-width: 350px;
  font-size: 0.9rem;
  margin-top: 22px;
}

.footer-title {
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7db7da;
  margin-bottom: 18px;
}

.footer-links a {
  display: block;
  color: #9ba5ac;
  font-size: 0.84rem;
  margin-bottom: 9px;
  transition: 0.2s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #68737b;
  font-size: 0.72rem;
}

.footer-bottom a {
  color: #8b969e;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* About hero */
.about-hero {
  min-height: 68vh;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(90deg, rgba(8, 11, 13, 0.94) 0%, rgba(8, 11, 13, 0.73) 50%, rgba(8, 11, 13, 0.26) 100%), url("https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?auto=format&fit=crop&w=2200&q=85") center/cover no-repeat;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 155px;
  padding-bottom: 100px;
}

.about-hero h1 {
  max-width: 850px;
  margin: 18px 0 22px;
  font-size: clamp(3.1rem, 7vw, 6.6rem);
  font-weight: 800;
  letter-spacing: -0.065em;
}

.about-hero h1 em {
  color: #78b9e1;
  font-style: normal;
}

.about-hero-lead {
  max-width: 650px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.64);
  font-family: "Montserrat", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-meta strong {
  color: #fff;
  margin-right: 7px;
}

/* Who we are */
.story-image {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  background: #dfe4e7;
}

.story-image img {
  width: 100%;
  height: 100%;
  min-height: 510px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.story-image-caption {
  position: absolute;
  left: 22px;
  bottom: 22px;
  padding: 12px 15px;
  color: #fff;
  background: rgba(17, 20, 23, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  font-family: "Montserrat", sans-serif;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.story-content {
  padding: 20px 0 20px 20px;
}

.story-content h2 {
  margin: 14px 0 25px;
  font-size: clamp(2.3rem, 4vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.05em;
}

.story-content p {
  max-width: 690px;
  color: var(--steel);
  font-size: 1rem;
}

.story-highlight {
  margin-top: 32px;
  padding: 22px;
  border-left: 3px solid var(--blue);
  background: var(--off-white);
}

.story-highlight strong {
  display: block;
  margin-bottom: 5px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.story-highlight span {
  color: var(--steel);
  font-size: 0.88rem;
}

/* Supply portfolio */
.portfolio {
  background: var(--graphite);
  color: #fff;
}
.portfolio .section-copy {
  color: #9da7ae;
}
.portfolio .portfolio-list {
  margin-top: 55px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}
.portfolio .portfolio-item {
  display: grid;
  grid-template-columns: 75px 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  transition: 0.25s ease;
}
.portfolio .portfolio-item:hover {
  padding-left: 16px;
  padding-right: 16px;
  background: rgba(255, 255, 255, 0.025);
}
.portfolio .product-sequence {
  color: #6fb4df;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}
.portfolio .portfolio-item h3 {
  margin: 0 0 6px;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.035em;
}
.portfolio .portfolio-item p {
  margin: 0;
  color: #89969f;
  font-size: 0.88rem;
}
.portfolio .portfolio-spec {
  color: #7ebde5;
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-align: right;
  text-transform: uppercase;
}
.portfolio .portfolio-arrow {
  color: #fff;
  font-size: 1.4rem;
  transition: transform 0.2s ease;
}
.portfolio .portfolio-item:hover .portfolio-arrow {
  transform: translateX(5px);
}

/* Approach */
.approach {
  background: var(--off-white);
}

.principle-card {
  height: 100%;
  padding: 32px;
  background: #fff;
  border-top: 2px solid var(--graphite);
  transition: 0.25s ease;
}

.principle-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(17, 20, 23, 0.08);
}

.principle-number {
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.principle-card h3 {
  margin: 42px 0 12px;
  font-size: 1.2rem;
  font-weight: 800;
}

.principle-card p {
  margin: 0;
  color: var(--steel);
  font-size: 0.88rem;
}

/* Australian foundation */
.foundation {
  background: #fff;
}

.foundation-image {
  min-height: 560px;
  overflow: hidden;
}

.foundation-image img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.foundation-content {
  padding: 30px 0 30px 40px;
}

.foundation-content h2 {
  margin: 15px 0 25px;
  max-width: 650px;
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.055em;
}

.foundation-content p {
  max-width: 620px;
  color: var(--steel);
  font-size: 1rem;
}

.foundation-statement {
  margin: 35px 0;
  padding: 25px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.foundation-statement strong {
  display: block;
  margin-bottom: 7px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.foundation-statement span {
  color: var(--steel);
  font-size: 0.88rem;
}

/* Australia India */
.export {
  background: #f7f9fa;
  overflow: hidden;
}

.export-copy h2 {
  margin: 15px 0 22px;
  font-size: clamp(2.4rem, 4.5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.06em;
}

.export-copy p {
  max-width: 570px;
  color: var(--steel);
}

.export-note {
  margin-top: 25px;
  padding: 20px;
  background: #fff;
  border-left: 3px solid var(--blue);
}

.export-note small {
  display: block;
  margin-bottom: 7px;
  color: var(--blue);
  font-family: "Montserrat", sans-serif;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.export-note strong {
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
}

.map-wrap {
  min-height: 420px;
  border: 1px solid var(--border-light);
  background: #fff;
  overflow: hidden;
}

.map-wrap img {
  display: block;
  width: 100%;
  height: 420px;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Why work */
.why-work {
  background: var(--deep-blue);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.why-work::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  right: -180px;
  top: -230px;
  box-shadow: 0 0 0 90px rgba(255, 255, 255, 0.018), 0 0 0 180px rgba(255, 255, 255, 0.012);
}
.why-work .section-copy {
  color: #a9bac6;
}
.why-work .why-item {
  position: relative;
  z-index: 1;
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}
.why-work .why-item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}
.why-work .why-item-number {
  color: #72b7e5;
  font-family: "Montserrat", sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}
.why-work .why-item h3 {
  margin: 12px 0 8px;
  font-size: 1.25rem;
  font-weight: 800;
}
.why-work .why-item p {
  max-width: 500px;
  margin: 0;
  color: #a7b5be;
  font-size: 0.88rem;
}

/* Vision */
.vision h2 {
  max-width: 820px;
  margin: 16px 0 24px;
  font-size: clamp(2.4rem, 4.5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.06em;
}

.vision p {
  max-width: 760px;
  color: var(--steel);
  font-size: 1.02rem;
}

.vision-word {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 35px;
}

.vision-word span {
  padding: 11px 16px;
  border: 1px solid var(--border-light);
  background: var(--off-white);
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

/* Hero */
.products-hero {
  min-height: 68vh;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(90deg, rgba(8, 11, 13, 0.95) 0%, rgba(8, 11, 13, 0.72) 52%, rgba(8, 11, 13, 0.25) 100%), url("https://images.unsplash.com/photo-1504328345606-18bbc8c9d7d1?auto=format&fit=crop&w=2200&q=85") center/cover no-repeat;
}
.products-hero .products-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 155px;
  padding-bottom: 95px;
}
.products-hero h1 {
  max-width: 900px;
  margin: 18px 0 22px;
  font-size: clamp(3.1rem, 7vw, 6.5rem);
  font-weight: 800;
  letter-spacing: -0.065em;
}
.products-hero h1 em {
  color: #78b9e1;
  font-style: normal;
}
.products-hero .hero-lead {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  margin-bottom: 30px;
}
.products-hero .hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.64);
  font-family: "Montserrat", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.products-hero .hero-meta strong {
  color: #fff;
  margin-right: 7px;
}

/* Portfolio intro */
.portfolio-intro {
  background: #fff;
}

.portfolio-intro-box {
  padding: 30px 0;
}

.portfolio-intro-box h2 {
  max-width: 800px;
  margin: 16px 0 20px;
  font-size: clamp(2.4rem, 4.5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.055em;
}

.portfolio-intro-box p {
  max-width: 760px;
  color: var(--steel);
  font-size: 1.02rem;
}

/* Main product cards */
.products-grid {
  background: var(--off-white);
}

.product-card {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  background: #1a1f23;
  color: #fff;
  border: 1px solid rgba(17, 20, 23, 0.1);
  transition: 0.35s ease;
}

.product-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 25px 55px rgba(17, 20, 23, 0.14);
}

.product-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.58;
  transition: transform 0.6s ease, opacity 0.4s ease;
}

.product-card:hover img {
  transform: scale(1.06);
  opacity: 0.68;
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 10, 12, 0.08) 10%, rgba(8, 10, 12, 0.93) 87%);
}

.product-number {
  position: absolute;
  z-index: 2;
  top: 26px;
  left: 28px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.product-content {
  position: absolute;
  z-index: 2;
  left: 28px;
  right: 28px;
  bottom: 30px;
}

.product-content h3 {
  margin: 0 0 9px;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.035em;
}

.product-content p {
  max-width: 480px;
  margin: 0 0 22px;
  color: #b1bbc2;
  font-size: 0.9rem;
}

.product-spec {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.product-spec span {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: #d5dde2;
  font-family: "Montserrat", sans-serif;
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #7fc0e7;
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-link span {
  transition: 0.2s ease;
}

.product-card:hover .product-link span {
  transform: translateX(5px);
}

/* Fastener range */
.fastener-range {
  background: var(--graphite);
  color: #fff;
}

.fastener-range .section-copy {
  color: #9da7ae;
}

.fastener-panel {
  margin-top: 55px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.fastener-row {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  align-items: center;
  gap: 25px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  transition: 0.25s ease;
}

.fastener-row:hover {
  padding-left: 14px;
  padding-right: 14px;
  background: rgba(255, 255, 255, 0.025);
}

.fastener-number {
  color: #72b7e5;
  font-family: "Montserrat", sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.fastener-row h3 {
  margin: 0 0 4px;
  font-size: 1.25rem;
  font-weight: 800;
}

.fastener-row p {
  margin: 0;
  color: #89969f;
  font-size: 0.84rem;
}

.fastener-tag {
  color: #7ebde5;
  font-family: "Montserrat", sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: right;
}

.fastener-arrow {
  font-size: 1.35rem;
}

/* Specifications */
.specs {
  background: #fff;
}

.spec-table-wrap {
  margin-top: 50px;
  border: 1px solid var(--border-light);
  overflow: auto;
}

.spec-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.spec-table th,
.spec-table td {
  padding: 19px 22px;
  border-bottom: 1px solid var(--border-light);
  text-align: left;
}

.spec-table th {
  background: var(--graphite);
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.spec-table td {
  font-size: 0.88rem;
  color: var(--steel);
}

.spec-table td:first-child {
  color: var(--graphite);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

.spec-table tr:last-child td {
  border-bottom: 0;
}

.spec-note {
  margin-top: 16px;
  color: #8a959c;
  font-size: 0.78rem;
}

/* Procurement */
.procurement {
  background: var(--off-white);
}

.procurement-card {
  height: 100%;
  padding: 30px;
  background: #fff;
  border-top: 2px solid var(--graphite);
  transition: 0.25s ease;
}

.procurement-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(17, 20, 23, 0.08);
}

.procurement-card .num {
  color: var(--blue);
  font-family: "Montserrat", sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.procurement-card h3 {
  margin: 35px 0 10px;
  font-size: 1.2rem;
  font-weight: 800;
}

.procurement-card p {
  margin: 0;
  color: var(--steel);
  font-size: 0.88rem;
}

.page-hero {
  min-height: 68vh;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(90deg, rgba(8, 11, 13, 0.94) 0%, rgba(8, 11, 13, 0.73) 50%, rgba(8, 11, 13, 0.26) 100%), url("https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?auto=format&fit=crop&w=2200&q=85") center/cover no-repeat;
}
.page-hero .page-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 155px;
  padding-bottom: 100px;
}
.page-hero h1 {
  max-width: 850px;
  margin: 18px 0 22px;
  font-size: clamp(3rem, 2.4074rem + 2.963vw, 5rem);
  font-weight: 800;
}
.page-hero h1 em {
  color: #78b9e1;
  font-style: normal;
}
.page-hero .page-hero-lead {
  max-width: 650px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}
.page-hero .page-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.64);
  font-family: "Montserrat", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.page-hero .page-hero-meta strong {
  display: block;
  color: #fff;
  margin-right: 7px;
}

.breadcrumb-bar {
  padding: 16px 0;
  background: #f7f8f9;
  border-bottom: 1px solid var(--border-light);
}
.breadcrumb-bar .breadcrumb {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.breadcrumb-bar .breadcrumb-item + .breadcrumb-item:before {
  color: #9aa3a9;
}
.breadcrumb-bar .breadcrumb-item a {
  color: var(--steel);
}

.products-single .product-hero {
  min-height: 68vh;
  display: flex;
  align-items: flex-end;
  background: var(--graphite);
  color: #fff;
  overflow: hidden;
}
.products-single .product-hero-inner {
  display: flex;
  align-items: center;
  padding-top: 80px;
}
.products-single .product-hero-copy {
  position: relative;
  z-index: 2;
  padding: 85px 0;
}
.products-single .product-hero h1 {
  max-width: 760px;
  margin: 17px 0 22px;
  font-size: clamp(3rem, 6.5vw, 6.2rem);
  font-weight: 800;
  letter-spacing: -0.065em;
}
.products-single .product-hero h1 em {
  color: #78b9e1;
  font-style: normal;
}
.products-single .product-lead {
  max-width: 650px;
  margin-bottom: 30px;
  color: #aeb9c0;
  font-size: 1.05rem;
}
.products-single .product-code {
  display: inline-block;
  margin-bottom: 4px;
  color: #7ebde5;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}
.products-single .hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}
.products-single .hero-fact strong {
  display: block;
  color: #fff;
  font-family: Montserrat, sans-serif;
  font-size: 0.95rem;
}
.products-single .hero-fact span {
  display: block;
  margin-top: 2px;
  color: #7f8b93;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.products-single .product-visual {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: #1b2025;
}
.products-single .product-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  opacity: 0.72;
}
.products-single .product-visual:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17, 20, 23, 0.75), rgba(17, 20, 23, 0.08) 55%, rgba(17, 20, 23, 0.18)), linear-gradient(0deg, rgba(17, 20, 23, 0.45), transparent 45%);
}
.products-single .visual-label {
  position: absolute;
  z-index: 2;
  left: 25px;
  bottom: 25px;
  padding: 12px 15px;
  color: #fff;
  background: rgba(17, 20, 23, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  font-family: Montserrat, sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.products-single .overview {
  background: #fff;
}
.products-single .overview-copy h2 {
  margin: 16px 0 24px;
  max-width: 850px;
  font-size: clamp(2.4rem, 4.5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.055em;
}
.products-single .overview-copy p {
  max-width: 760px;
  color: var(--steel);
  font-size: 1rem;
}
.products-single .overview-panel {
  margin-top: 38px;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.products-single .overview-panel-row {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-light);
}
.products-single .overview-panel-row:last-child {
  border-bottom: 0;
}
.products-single .overview-panel-row span:first-child {
  color: var(--steel);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.products-single .overview-panel-row strong {
  font-family: Montserrat, sans-serif;
  font-size: 0.86rem;
  text-align: right;
}
.products-single .features {
  background: var(--off-white);
}
.products-single .feature-card {
  height: 100%;
  padding: 32px;
  background: #fff;
  border-top: 2px solid var(--graphite);
  transition: 0.25s;
}
.products-single .feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(17, 20, 23, 0.08);
}
.products-single .feature-number {
  color: var(--blue);
  font-family: Montserrat, sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}
.products-single .feature-card h3 {
  margin: 40px 0 12px;
  font-size: 1.2rem;
  font-weight: 800;
}
.products-single .feature-card p {
  margin: 0;
  color: var(--steel);
  font-size: 0.88rem;
}
.products-single .technical {
  background: var(--deep-blue);
  color: #fff;
  overflow: hidden;
  position: relative;
}
.products-single .technical:before {
  content: "AL";
  position: absolute;
  right: -20px;
  top: -80px;
  color: rgba(255, 255, 255, 0.025);
  font-family: Montserrat, sans-serif;
  font-size: 22rem;
  font-weight: 800;
  letter-spacing: -0.1em;
  line-height: 1;
}
.products-single .technical .section-copy {
  color: #a8bac7;
}
.products-single .spec-panel {
  position: relative;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.14);
}
.products-single .spec-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 19px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}
.products-single .spec-row:last-child {
  border-bottom: 0;
}
.products-single .spec-label {
  color: #82bee2;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.products-single .spec-value {
  color: #fff;
  font-size: 0.86rem;
  font-weight: 600;
  text-align: right;
}
.products-single .technical-note {
  position: relative;
  z-index: 2;
  margin-top: 18px;
  color: #91a5b2;
  font-size: 0.76rem;
}
.products-single .applications {
  background: #fff;
}
.products-single .application-list {
  margin-top: 48px;
  border-top: 1px solid var(--border-light);
}
.products-single .application-row {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  align-items: center;
  gap: 25px;
  padding: 23px 0;
  border-bottom: 1px solid var(--border-light);
  transition: 0.25s;
}
.products-single .application-row:hover {
  padding-left: 14px;
  padding-right: 14px;
  background: var(--off-white);
}
.products-single .application-number {
  color: var(--blue);
  font-family: Montserrat, sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}
.products-single .application-row h3 {
  margin: 0 0 4px;
  font-size: 1.2rem;
  font-weight: 800;
}
.products-single .application-row p {
  margin: 0;
  color: var(--steel);
  font-size: 0.84rem;
}
.products-single .application-arrow {
  color: var(--steel);
  font-size: 1.3rem;
}
.products-single .buyer-info {
  background: var(--off-white);
}
.products-single .buyer-card {
  height: 100%;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--border-light);
}
.products-single .buyer-card h3 {
  margin: 0 0 13px;
  font-size: 1.2rem;
  font-weight: 800;
}
.products-single .buyer-card p {
  margin: 0;
  color: var(--steel);
  font-size: 0.88rem;
}
.products-single .buyer-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.products-single .buyer-list li {
  position: relative;
  padding: 9px 0 9px 18px;
  border-top: 1px solid var(--border-light);
  color: var(--steel);
  font-size: 0.84rem;
}
.products-single .buyer-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 17px;
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
}
.products-single .fastener-grid {
  background: var(--off-white);
}
.products-single .fastener-card {
  height: 100%;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
  transition: 0.25s;
}
.products-single .fastener-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(17, 20, 23, 0.08);
}
.products-single .fastener-card:after {
  content: "";
  position: absolute;
  right: -25px;
  bottom: -55px;
  width: 125px;
  height: 125px;
  border: 18px solid rgba(18, 97, 160, 0.06);
  border-radius: 50%;
}
.products-single .fastener-index {
  color: var(--blue);
  font-family: Montserrat, sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}
.products-single .fastener-card h3 {
  margin: 34px 0 11px;
  font-size: 1.3rem;
  font-weight: 800;
}
.products-single .fastener-card p {
  margin: 0;
  color: var(--steel);
  font-size: 0.87rem;
}
.products-single .fastener-type {
  display: inline-block;
  margin-top: 22px;
  padding: 6px 8px;
  background: #edf4f8;
  color: var(--blue);
  font-family: Montserrat, sans-serif;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Responsive */
@media (max-width: 991.98px) {
  .site-header {
    background: rgba(17, 20, 23, 0.96);
  }
  .navbar-collapse {
    background: var(--graphite);
    padding: 15px;
    margin-top: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  .hero {
    min-height: auto;
    padding-top: 84px;
  }
  .hero-content {
    padding-top: 80px;
    padding-bottom: 70px;
  }
  .hero-spec {
    margin: 40px 0 0;
    max-width: 100%;
  }
  .hero-bottom {
    display: none;
  }
  .section-pad {
    padding: 85px 0;
  }
  .about-hero {
    min-height: auto;
    padding-top: 84px;
  }
  .about-hero-content {
    padding-top: 80px;
    padding-bottom: 75px;
  }
  .story-content,
  .foundation-content {
    padding-left: 0;
  }
}
@media (max-width: 767.98px) {
  .portfolio-item {
    grid-template-columns: 48px 1fr;
    gap: 15px;
  }
  .portfolio-spec {
    grid-column: 2;
    text-align: left;
  }
  .portfolio-arrow {
    grid-column: 2;
    grid-row: 2;
  }
  .story-image,
  .story-image img,
  .foundation-image,
  .foundation-image img {
    min-height: 360px;
  }
  .map-wrap,
  .map-wrap img {
    min-height: 300px;
    height: 300px;
  }
}
@media (max-width: 575.98px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .navbar {
    min-height: 72px;
  }
  .brand-mark {
    width: 37px;
    height: 37px;
    flex-basis: 37px;
  }
  .brand-text {
    font-size: 0.86rem;
  }
  .hero h1,
  .about-hero h1 {
    font-size: 3rem;
  }
  .hero-actions .btn,
  .cta-actions .btn {
    width: 100%;
    text-align: center;
  }
  .section-pad {
    padding: 70px 0;
  }
  .product-card {
    min-height: 390px;
  }
  .world-grid {
    min-height: 300px;
  }
  .footer {
    padding-top: 60px;
  }
}
/* Principle */
.principle {
  background: #fff;
}

.principle-statement {
  max-width: 1050px;
  margin-top: 32px;
  font-family: Montserrat, sans-serif;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 700;
  line-height: 1.3;
}

.principle-statement span {
  color: var(--blue);
}

.principle-note {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
  color: var(--steel);
  font-size: 0.88rem;
}

/* Quality pillars */
.pillars {
  background: var(--off-white);
}

.pillar-card {
  position: relative;
  height: 100%;
  padding: 32px;
  background: #fff;
  border-top: 2px solid var(--graphite);
  transition: 0.25s;
}

.pillar-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(17, 20, 23, 0.08);
}

.pillar-index {
  color: var(--blue);
  font-family: Montserrat, sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.pillar-card h3 {
  margin: 42px 0 12px;
  font-size: 1.22rem;
  font-weight: 800;
}

.pillar-card p {
  margin: 0;
  color: var(--steel);
  font-size: 0.88rem;
}

.pillar-mark {
  position: absolute;
  right: 26px;
  top: 25px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border-light);
  border-radius: 50%;
}

.pillar-mark:before,
.pillar-mark:after {
  content: "";
  position: absolute;
  background: var(--blue);
}

.pillar-mark:before {
  width: 15px;
  height: 1px;
  left: 13px;
  top: 20px;
}

.pillar-mark:after {
  width: 1px;
  height: 15px;
  left: 20px;
  top: 13px;
}

/* Process */
.process {
  background: #fff;
}

.process-list {
  margin-top: 52px;
  border-top: 1px solid var(--border-light);
}

.process-row {
  display: grid;
  grid-template-columns: 85px 1fr 310px;
  gap: 30px;
  align-items: start;
  padding: 30px 0;
  border-bottom: 1px solid var(--border-light);
  transition: 0.25s;
}

.process-row:hover {
  padding-left: 14px;
  padding-right: 14px;
  background: var(--off-white);
}

.process-number {
  color: var(--blue);
  font-family: Montserrat, sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.process-row h3 {
  margin: 0 0 7px;
  font-size: 1.3rem;
  font-weight: 800;
}

.process-row p {
  margin: 0;
  color: var(--steel);
  font-size: 0.86rem;
}

.process-side {
  padding-left: 25px;
  border-left: 1px solid var(--border-light);
  color: var(--steel);
  font-size: 0.76rem;
}

.process-side strong {
  display: block;
  margin-bottom: 4px;
  color: var(--graphite);
  font-family: Montserrat, sans-serif;
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Standards */
.standards {
  position: relative;
  overflow: hidden;
  background: var(--deep-blue);
  color: #fff;
}

.standards:before {
  content: "✓";
  position: absolute;
  right: 30px;
  top: -90px;
  color: rgba(255, 255, 255, 0.025);
  font-family: Montserrat, sans-serif;
  font-size: 25rem;
  font-weight: 800;
  line-height: 1;
}

.standards .section-copy {
  color: #a8bac7;
}

.standard-card {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.13);
}

.standard-card h3 {
  margin: 0 0 12px;
  font-size: 1.05rem;
  font-weight: 800;
}

.standard-card p {
  margin: 0;
  color: #9db0bc;
  font-size: 0.82rem;
}

.standard-label {
  display: inline-block;
  margin-bottom: 28px;
  color: #82bee2;
  font-family: Montserrat, sans-serif;
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.standard-card ul {
  margin: 21px 0 0;
  padding: 0;
  list-style: none;
}

.standard-card li {
  position: relative;
  padding: 9px 0 9px 17px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #aab9c3;
  font-size: 0.78rem;
}

.standard-card li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 17px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #5da7d5;
}

.standard-card .product-link {
  margin-top: 25px;
}

.standards-note {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin-top: 32px;
  color: #879ca9;
  font-size: 0.76rem;
}

/* Product quality */
.product-quality {
  background: var(--off-white);
}

.quality-product-card {
  height: 100%;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--border-light);
  transition: 0.25s;
}

.quality-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(17, 20, 23, 0.07);
}

.quality-product-code {
  display: inline-block;
  padding: 6px 8px;
  background: #edf4f8;
  color: var(--blue);
  font-family: Montserrat, sans-serif;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.quality-product-card h3 {
  margin: 30px 0 10px;
  font-size: 1.18rem;
  font-weight: 800;
}

.quality-product-card p {
  margin: 0;
  color: var(--steel);
  font-size: 0.84rem;
}

.quality-product-link {
  display: inline-block;
  margin-top: 24px;
  color: var(--blue);
  font-family: Montserrat, sans-serif;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Documentation */
.documentation {
  background: #fff;
}

.document-panel {
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.document-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding: 21px 0;
  border-bottom: 1px solid var(--border-light);
}

.document-row:last-child {
  border-bottom: 0;
}

.document-row span {
  color: var(--steel);
  font-size: 0.82rem;
}

.document-row strong {
  font-family: Montserrat, sans-serif;
  font-size: 0.76rem;
  text-align: right;
}

.document-disclaimer {
  margin-top: 20px;
  color: #7d878e;
  font-size: 0.75rem;
}

@media (max-width: 991.98px) {
  .process-row {
    grid-template-columns: 70px 1fr;
  }
  .process-side {
    grid-column: 2;
    padding-left: 0;
    border-left: 0;
    padding-top: 10px;
  }
}
@media (max-width: 767.98px) {
  .document-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
  .document-row strong {
    text-align: left;
  }
}
@media (max-width: 575.98px) {
  .process-row {
    grid-template-columns: 48px 1fr;
    gap: 15px;
  }
  .process-side {
    grid-column: 2;
  }
}
.global-route {
  background: var(--off-white);
}
.global-route .route-visual {
  position: relative;
  min-height: 500px;
  background: #e9eef1;
  border: 1px solid var(--border);
  overflow: hidden;
}
.global-route .route-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(17, 20, 23, 0.18) 1px, transparent 1.4px);
  background-size: 13px 13px;
  opacity: 0.6;
}
.global-route .world {
  position: absolute;
  inset: 8% 5%;
  opacity: 0.17;
}
.global-route .world svg {
  width: 100%;
  height: 100%;
}
.global-route .route-line {
  position: absolute;
  left: 25%;
  top: 59%;
  width: 50%;
  height: 1px;
  background: var(--blue);
  transform: rotate(-10deg);
  transform-origin: left center;
  box-shadow: 0 0 12px rgba(18, 97, 160, 0.35);
}
.global-route .route-line:before {
  content: "";
  position: absolute;
  right: -1px;
  top: -4px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(18, 97, 160, 0.12);
}
.global-route .route-line:after {
  content: "";
  position: absolute;
  left: -1px;
  top: -4px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #111417;
  box-shadow: 0 0 0 5px rgba(17, 20, 23, 0.1);
}
.global-route .route-point {
  position: absolute;
  font-family: Montserrat, sans-serif;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.global-route .route-point.au {
  left: 20%;
  top: 65%;
}
.global-route .route-point.in {
  right: 20%;
  top: 46%;
  color: var(--blue);
}
.global-route .route-caption {
  position: absolute;
  left: 24px;
  bottom: 22px;
  color: var(--steel);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.global-route .route-copy {
  padding-left: 30px;
}
.global-route .route-copy h3 {
  margin: 17px 0 17px;
  font-size: 2rem;
  font-weight: 800;
}
.global-route .route-copy p {
  color: var(--steel);
  font-size: 0.9rem;
}
.global-route .route-facts {
  margin-top: 30px;
  border-top: 1px solid var(--border);
}
.global-route .route-fact {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.global-route .route-fact span {
  color: var(--steel);
  font-size: 0.78rem;
}
.global-route .route-fact strong {
  font-family: Montserrat, sans-serif;
  font-size: 0.78rem;
  text-align: right;
}

.global-products {
  background: var(--deep-blue);
  color: #fff;
  overflow: hidden;
  position: relative;
}
.global-products:before {
  content: "EXPORT";
  position: absolute;
  right: -50px;
  top: -70px;
  color: rgba(255, 255, 255, 0.025);
  font-family: Montserrat, sans-serif;
  font-size: 12rem;
  font-weight: 800;
  line-height: 1;
}
.global-products .copy {
  color: #a8bac7;
}
.global-products .global-product-card {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.13);
  transition: 0.25s;
}
.global-products .global-product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.25);
}
.global-products .global-product-code {
  color: #82bee2;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}
.global-products .global-product-card h3 {
  margin: 28px 0 10px;
  font-size: 1.15rem;
  font-weight: 800;
}
.global-products .global-product-card p {
  margin: 0;
  color: #9db0bc;
  font-size: 0.82rem;
}
.global-products .global-product-link {
  display: inline-block;
  margin-top: 23px;
  color: #82bee2;
  font-family: Montserrat, sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.global-products .global-product-note {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin-top: 30px;
  color: #879ca9;
  font-size: 0.76rem;
}

.contact-section {
  background: var(--off-white);
}

.contact-panel {
  background: #fff;
  border: 1px solid var(--border);
  padding: 38px;
}

.contact-panel h2 {
  margin: 0 0 10px;
  font-size: 2rem;
  font-weight: 800;
}

.contact-panel > p {
  color: var(--steel);
  font-size: 0.86rem;
}

.form-label {
  margin-bottom: 7px;
  font-family: Montserrat, sans-serif;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-control,
.form-select {
  min-height: 49px;
  border: 1px solid rgba(17, 20, 23, 0.18);
  border-radius: 2px;
  padding: 12px 14px;
  font-size: 0.86rem;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 0.18rem rgba(18, 97, 160, 0.1);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.form-check-input:checked {
  background-color: var(--blue);
  border-color: var(--blue);
}

.form-check-label {
  color: var(--steel);
  font-size: 0.76rem;
}

.required {
  color: var(--blue);
}

.info-panel {
  height: 100%;
  padding: 38px;
  background: var(--graphite);
  color: #fff;
}

.info-panel .eyebrow {
  color: #72b7e5;
}

.info-panel h2 {
  margin: 17px 0 17px;
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.info-panel > p {
  color: #9ca8b0;
  font-size: 0.87rem;
}

.info-block {
  padding: 21px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.info-block:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-label {
  margin-bottom: 6px;
  color: #6faed3;
  font-family: Montserrat, sans-serif;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.info-value {
  color: #e6eaec;
  font-size: 0.86rem;
}

.info-value a:hover {
  color: #78b9e1;
}

.route-chip {
  display: inline-block;
  margin-top: 22px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  color: #aeb9c0;
  font-family: Montserrat, sans-serif;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reason {
  background-color: var(--white);
}

.faq {
  background: var(--off-white);
}

.accordion-item {
  margin-bottom: 10px;
  border: 1px solid var(--border-light) !important;
  border-radius: 0 !important;
}

.accordion-button {
  padding: 22px;
  background: #fff;
  color: var(--graphite);
  font-family: Montserrat, sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  background: #fff;
  color: var(--blue);
}

.accordion-body {
  padding: 0 22px 22px;
  color: var(--steel);
  font-size: 0.84rem;
  background: #fff;
}

.resource-section {
  background: var(--off-white);
}

.resource-card {
  height: 100%;
  padding: 32px;
  background: #fff;
  border: 1px solid var(--border-light);
  transition: 0.25s;
  position: relative;
  overflow: hidden;
}

.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(17, 20, 23, 0.08);
}

.resource-card:after {
  content: "";
  position: absolute;
  right: -30px;
  top: -30px;
  width: 100px;
  height: 100px;
  border: 1px solid rgba(18, 97, 160, 0.09);
  transform: rotate(45deg);
}

.resource-card .index {
  color: var(--blue);
  font-family: Montserrat, sans-serif;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.resource-card h3 {
  margin: 43px 0 12px;
  font-size: 1.18rem;
  font-weight: 800;
}

.resource-card p {
  margin: 0;
  color: var(--steel);
  font-size: 0.84rem;
}

.resource-link {
  display: inline-block;
  margin-top: 23px;
  color: var(--blue);
  font-family: Montserrat, sans-serif;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.download-list {
  margin-top: 45px;
  border-top: 1px solid var(--border-light);
}

.download-row {
  display: grid;
  grid-template-columns: 75px 1fr auto;
  gap: 30px;
  align-items: center;
  padding: 25px 0;
  border-bottom: 1px solid var(--border-light);
}

.download-row:hover {
  background: var(--off);
  padding-left: 14px;
  padding-right: 14px;
}

.file-type {
  color: var(--blue);
  font-family: Montserrat, sans-serif;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.download-row h3 {
  margin: 0 0 5px;
  font-size: 1.02rem;
  font-weight: 800;
}

.download-row p {
  margin: 0;
  color: var(--steel);
  font-size: 0.78rem;
}

.download-btn {
  display: inline-block;
  padding: 10px 13px;
  border: 1px solid var(--border);
  font-family: Montserrat, sans-serif;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.download-btn:hover {
  background: var(--graphite);
  border-color: var(--graphite);
  color: #fff;
}

.download .disclaimer {
  padding: 25px 30px;
  border-left: 3px solid var(--blue);
  background: #f7f8f9;
  color: var(--steel);
  font-size: 0.78rem;
}

.product-section {
  background: var(--deep-blue);
  color: #fff;
  overflow: hidden;
  position: relative;
}
.product-section:before {
  content: "DATA";
  position: absolute;
  right: -30px;
  top: -90px;
  color: rgba(255, 255, 255, 0.025);
  font-family: Montserrat, sans-serif;
  font-size: 14rem;
  font-weight: 800;
  line-height: 1;
}
.product-section .section-copy {
  color: #a8bac7;
}
.product-section .quality-product-card {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 29px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.13);
  transition: 0.25s;
}
.product-section .quality-product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.27);
}
.product-section .product-code {
  color: #82bee2;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}
.product-section .quality-product-card h3 {
  margin: 25px 0 10px;
  font-size: 1.12rem;
  font-weight: 800;
}
.product-section .quality-product-card p {
  margin: 0;
  color: #9db0bc;
  font-size: 0.81rem;
}
.product-section .quality-product-link {
  display: inline-block;
  margin-top: 20px;
  color: #82bee2;
  font-family: Montserrat, sans-serif;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.guide-card {
  height: 100%;
  padding: 31px;
  border-top: 2px solid var(--graphite);
  background: #fff;
}

.guide-card .tag {
  display: inline-block;
  margin-bottom: 26px;
  padding: 6px 8px;
  background: #edf4f8;
  color: var(--blue);
  font-family: Montserrat, sans-serif;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.guide-card h3 {
  margin: 0 0 12px;
  font-size: 1.13rem;
  font-weight: 800;
}

.guide-card p {
  margin: 0;
  color: var(--steel);
  font-size: 0.84rem;
}

.guide-card ul {
  margin: 18px 0 0;
  padding-left: 17px;
  color: var(--steel);
  font-size: 0.78rem;
}

.guide-card li {
  margin-bottom: 7px;
}/*# sourceMappingURL=style.css.map */