:root {
  --primary: #0b4f71;
  --primary-dark: #07364d;
  --deep-navy: #08263a;
  --near-black: #0b1520;
  --gold: #f2a900;
  --bg-gray: #f3f6f8;
  --text-dark: #14202b;
  --text-mid: #4b5b68;
  --white: #ffffff;
  --line: #d5e0e7;
  --shadow: 0 18px 40px rgba(13, 27, 42, 0.14);
  --heading: "Sora", Arial, sans-serif;
  --body: "Sora", Arial, sans-serif;
  --ui: "Titillium Web", Arial, sans-serif;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 30px;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  color: var(--white);
  background: var(--near-black);
  transition: opacity .45s ease, visibility .45s ease;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.is-loading {
  overflow: hidden;
}

.page-loader__mark {
  width: 58px;
  height: 58px;
  animation: loaderPulse 1.2s ease-in-out infinite;
}

.page-loader__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.page-loader__name {
  font-family: var(--heading);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 4px;
}

.page-loader__line {
  width: 110px;
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, .2);
}

.page-loader__line::after {
  content: "";
  display: block;
  width: 45%;
  height: 100%;
  background: var(--gold);
  animation: loaderProgress 1.1s ease-in-out infinite;
}

@keyframes loaderPulse {
  50% { transform: scale(.88); opacity: .7; }
}

@keyframes loaderProgress {
  from { transform: translateX(-100%); }
  to { transform: translateX(330%); }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text-dark);
  background: var(--white);
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.7;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(1200px, calc(100% - 48px));
  margin-inline: auto;
}

.topbar {
  color: rgba(255, 255, 255, 0.72);
  background: var(--near-black);
  font-family: var(--ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.topbar__inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbar__contact,
.topbar__social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.topbar a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: color 180ms ease;
}

.topbar a:hover,
.footer a:hover {
  color: var(--gold);
}

.social-square {
  width: 28px;
  height: 28px;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 300ms ease, border-color 300ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 32px rgba(13, 27, 42, 0.14);
  border-bottom-color: rgba(213, 224, 231, 0.6);
}

/* Large & desktop screens â€” extra bottom spacing when scrolled */
@media (min-width: 1024px) {
  .site-header.is-scrolled {
    padding-bottom: 80px;
  }
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 28px;
  padding-block: 10px;
  transition: min-height 300ms ease, padding-block 300ms ease;
}

.site-header.is-scrolled .nav {
  min-height: 62px;
  padding-block: 6px;
}



.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.brand-mark {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: transparent;
  clip-path: none;
  transition: width 300ms ease, height 300ms ease;
}

.site-header.is-scrolled .brand-mark {
  width: 50px;
  height: 50px;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
}

.brand-text {
  display: grid;
  line-height: 1;
}

.brand-text strong,
.footer-brand strong {
  color: var(--near-black);
  font-family: var(--heading);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

.brand-text small {
  margin-top: 5px;
  color: var(--deep-navy);
  font-family: var(--ui);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.menu {
  margin-left: auto;
  display: flex;
  align-items: stretch;
  gap: 18px;
}

.menu-item {
  position: relative;
  display: flex;
  align-items: center;
}

.menu-link {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 78px;
  padding-block: 10px;
  color: var(--text-dark);
  font-family: var(--ui);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: min-height 300ms ease, color 180ms ease;
}

.site-header.is-scrolled .menu-link {
  min-height: 62px;
}

.menu-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 200ms ease, bottom 300ms ease;
}

.site-header.is-scrolled .menu-link::after {
  bottom: 10px;
}

.menu-link:hover::after,
.menu-link.is-active::after {
  transform: scaleX(1);
}

.dropdown {
  position: absolute;
  top: 100%;
  left: -18px;
  min-width: 240px;
  display: grid;
  padding: 14px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  background: var(--white);
  border-top: 3px solid var(--primary);
  box-shadow: var(--shadow);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.menu-item:hover .dropdown,
.menu-item:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  padding: 10px 18px;
  color: var(--text-mid);
  font-family: var(--ui);
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.dropdown a:hover {
  color: var(--primary);
  background: var(--bg-gray);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 24px;
  border: 2px solid transparent;
  color: var(--white);
  background: var(--primary);
  font-family: var(--ui);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.1px;
  line-height: 1.1;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--primary-dark);
  box-shadow: 0 14px 30px rgba(0, 71, 171, 0.25);
}

.btn--outline {
  color: var(--white);
  border-color: var(--white);
  background: transparent;
}

.btn--outline:hover {
  color: var(--near-black);
  background: var(--white);
}

.btn--gold {
  color: var(--near-black);
  background: var(--gold);
  animation: pulseCta 2s ease 3;
}

.btn--gold:hover {
  color: var(--near-black);
  background: #f4c72a;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 44px;
  margin-left: auto;
  border: 1px solid var(--line);
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--near-black);
}

.grid-bg {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 45%, rgba(0, 71, 171, 0.42), transparent 26%),
    linear-gradient(135deg, rgba(13, 27, 42, 0.96) 0%, rgba(0, 47, 108, 0.9) 54%, rgba(10, 61, 122, 0.82) 100%),
    var(--page-image, linear-gradient(135deg, var(--near-black), var(--deep-navy)));
  background-position: center;
  background-size: auto, auto, cover;
}

.grid-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.stripe-bg {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.stripe-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.12;
  background: repeating-linear-gradient(135deg, var(--white) 0 2px, transparent 2px 16px);
}

.hero {
  min-height: 620px;
  display: grid;
  align-items: center;
  padding: 86px 0;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: center;
  gap: 70px;
}

.eyebrow,
.section-label {
  position: relative;
  margin: 0 0 16px;
  padding-left: 42px;
  color: var(--gold);
  font-family: var(--ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.section-label {
  color: var(--primary);
}

.eyebrow::before,
.section-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 30px;
  height: 3px;
  background: var(--gold);
  transform: translateY(-50%);
}

.section-label::before {
  width: 3px;
  height: 24px;
  background: var(--gold);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--heading);
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.12;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  color: var(--white);
  font-size: clamp(42px, 6vw, 58px);
}

h1 .gold {
  color: var(--gold);
}

h2 {
  color: var(--text-dark);
  font-size: clamp(31px, 4vw, 44px);
}

h3 {
  color: var(--text-dark);
  font-size: 22px;
}

h4 {
  color: var(--text-dark);
  font-size: 18px;
}

.hero p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-stats {
  display: grid;
  gap: 18px;
}

.hero-stat {
  padding: 24px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.hero-stat strong {
  display: block;
  color: var(--gold);
  font-family: var(--heading);
  font-size: 36px;
  line-height: 1;
}

.hero-stat span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.stats-strip {
  color: var(--white);
  background: var(--deep-navy);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat {
  min-height: 126px;
  display: grid;
  place-items: center;
  align-content: center;
  padding: 24px;
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.stat:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.stat strong {
  color: var(--gold);
  font-family: var(--heading);
  font-size: 44px;
  line-height: 1;
}

.stat span {
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.section {
  padding: 90px 0;
}

.section--gray {
  background: var(--bg-gray);
}

.section--dark {
  color: var(--white);
  background: var(--near-black);
}

.section--dark h2,
.section--dark h3 {
  color: var(--white);
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading .section-label {
  display: inline-flex;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 62px;
  align-items: center;
}

.split--reverse > :first-child {
  order: 2;
}

.content p,
.card p,
.service-card p,
.timeline p,
.industry-card p,
.project-card p,
.career-card p,
.contact-card p,
.team-card p,
.testimonial-card p,
.spec-table {
  color: var(--text-mid);
}

.blue-placeholder {
  min-height: 430px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.7);
  background:
    linear-gradient(135deg, rgba(13, 27, 42, 0.95), rgba(0, 71, 171, 0.72)),
    repeating-linear-gradient(135deg, transparent 0 11px, rgba(255, 255, 255, 0.08) 11px 12px);
}

.blue-placeholder i {
  color: rgba(232, 176, 0, 0.88);
  font-size: 78px;
}

.asset-panel {
  background: var(--near-black);
}

.asset-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
}

.asset-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(13, 27, 42, 0.4), rgba(0, 47, 108, 0.16)),
    repeating-linear-gradient(135deg, transparent 0 12px, rgba(255, 255, 255, 0.06) 12px 13px);
}

.asset-panel i,
.asset-panel .est-badge {
  z-index: 1;
}

.machinery-panel {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.machinery-slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
}

.asset-panel .machinery-slide {
  opacity: 0;
  transform: scale(1.04);
  transition:
    opacity 700ms ease,
    transform 1400ms ease;
}

.asset-panel .machinery-slide.is-active {
  opacity: 0.86;
  transform: scale(1);
}

.est-badge {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 128px;
  height: 128px;
  display: grid;
  place-items: center;
  align-content: center;
  color: var(--near-black);
  background: var(--gold);
  text-align: center;
}

.est-badge strong {
  display: block;
  font-family: var(--heading);
  font-size: 35px;
  line-height: 1;
}

.est-badge span {
  font-family: var(--ui);
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.feature-grid,
.card-grid,
.team-grid,
.testimonial-grid,
.client-grid,
.benefit-grid,
.contact-grid {
  display: grid;
  gap: 24px;
}

.feature-grid {
  grid-template-columns: repeat(2, 1fr);
  margin: 30px 0;
}

.feature-card,
.card,
.service-card,
.industry-card,
.career-card,
.contact-card,
.team-card,
.testimonial-card,
.client-logo,
.mission-card {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(13, 27, 42, 0.06);
}

.feature-card {
  padding: 20px;
  border-left: 4px solid var(--primary);
  background: var(--bg-gray);
}

.feature-card h4 {
  display: flex;
  gap: 9px;
  align-items: center;
}

.feature-card p {
  margin: 8px 0 0;
  color: var(--text-mid);
}

.card-grid--3,
.team-grid,
.testimonial-grid,
.contact-grid {
  grid-template-columns: repeat(3, 1fr);
}

.card-grid--4,
.client-grid,
.benefit-grid {
  grid-template-columns: repeat(4, 1fr);
}

.service-card,
.industry-card,
.career-card,
.contact-card,
.mission-card {
  padding: 30px;
  border-top: 4px solid transparent;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card:hover,
.industry-card:hover,
.career-card:hover,
.mission-card:hover {
  transform: translateY(-6px);
  border-top-color: var(--primary);
  box-shadow: var(--shadow);
}

.hex-icon {
  width: 64px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: var(--primary);
  background: rgba(0, 71, 171, 0.1);
  clip-path: polygon(10% 0%, 90% 0%, 100% 50%, 90% 100%, 10% 100%, 0% 50%);
  transition: color 180ms ease, background 180ms ease;
}

.hex-icon i {
  font-size: 24px;
}

.service-card:hover .hex-icon,
.industry-card:hover .hex-icon,
.career-card:hover .hex-icon,
.contact-card:hover .hex-icon {
  color: var(--white);
  background: var(--primary);
}

.why-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.why-panel {
  min-height: 640px;
  padding: 90px max(48px, calc((100vw - 1200px) / 2)) 90px 70px;
}

.why-panel--dark {
  position: relative;
  color: var(--white);
  background: linear-gradient(135deg, var(--deep-navy), var(--near-black));
}

.why-panel--dark::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background: repeating-linear-gradient(135deg, var(--white) 0 2px, transparent 2px 15px);
}

.quote-mark {
  position: relative;
  color: rgba(232, 176, 0, 0.3);
  font-family: Georgia, serif;
  font-size: 120px;
  line-height: 0.8;
}

.pull-quote {
  position: relative;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--heading);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.2;
  text-transform: uppercase;
}

.badge-row {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}

.badge-row span {
  padding: 10px 14px;
  border: 1px solid rgba(232, 176, 0, 0.7);
  color: var(--gold);
  font-family: var(--ui);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.why-list {
  display: grid;
  gap: 24px;
  margin-top: 34px;
}

.why-item {
  position: relative;
  padding-left: 74px;
}

.why-item strong {
  position: absolute;
  left: 0;
  top: -10px;
  color: rgba(0, 71, 171, 0.16);
  font-family: var(--heading);
  font-size: 58px;
}

.why-item p {
  margin: 8px 0 0;
  color: var(--text-mid);
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 34px;
}

.filter-tabs button {
  min-height: 42px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  background: transparent;
  font-family: var(--ui);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.filter-tabs button.is-active,
.filter-tabs button:hover {
  color: var(--white);
  border-color: var(--primary);
  background: var(--primary);
}

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

.project-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--deep-navy), var(--near-black));
}

.project-card[hidden] {
  display: none;
}

.project-card__visual {
  min-height: 280px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.18);
  background:
    radial-gradient(circle at 30% 30%, rgba(0, 71, 171, 0.46), transparent 38%),
    linear-gradient(135deg, var(--deep-navy), var(--near-black));
}

.project-card__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
  transition: transform 220ms ease, opacity 220ms ease;
}

.project-card__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 27, 42, 0.05), rgba(13, 27, 42, 0.55));
}

.project-card__visual i {
  position: relative;
  z-index: 1;
  font-size: 82px;
}

.project-card:hover .project-card__visual img {
  opacity: 0.95;
  transform: scale(1.06);
}

.project-card__body {
  position: absolute;
  inset: auto 0 0;
  padding: 24px;
  color: var(--white);
  background: rgba(13, 27, 42, 0.94);
  transform: translateY(68%);
  transition: transform 220ms ease;
}

.project-card:hover .project-card__body {
  transform: translateY(0);
}

.project-card small {
  color: var(--gold);
  font-family: var(--ui);
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.project-card h3 {
  margin-top: 6px;
  color: var(--white);
}

.project-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

.cta-band {
  color: var(--white);
  background: var(--primary);
}

.cta-band__inner {
  min-height: 142px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 26px 0;
}

.cta-band h2 {
  color: var(--white);
}

.cta-band p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.75);
}

.cta-band .btn {
  width: auto;
  min-width: 190px;
  white-space: nowrap;
}

.team-card {
  overflow: hidden;
}

.team-photo {
  min-height: 240px;
  display: grid;
  place-items: center;
  position: relative;
  color: rgba(255, 255, 255, 0.82);
  background: linear-gradient(135deg, var(--deep-navy), var(--primary));
}

.team-photo strong {
  font-family: var(--heading);
  font-size: 56px;
}

.team-social {
  position: absolute;
  inset: auto 0 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  opacity: 0;
  transform: translateY(16px);
  background: rgba(13, 27, 42, 0.78);
  transition: opacity 180ms ease, transform 180ms ease;
}

.team-card:hover .team-social {
  opacity: 1;
  transform: translateY(0);
}

.team-card__body {
  padding: 24px;
}

.team-card__body p {
  margin-bottom: 0;
}

.testimonial-card {
  padding: 30px;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.testimonial-card .quote-icon {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 54px;
  line-height: 1;
}

.testimonial-card p {
  color: rgba(255, 255, 255, 0.78);
}

.testimonial-card h4 {
  color: var(--white);
}

.testimonial-card span {
  color: var(--gold);
  font-family: var(--ui);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.client-grid {
  margin-top: 30px;
}

.client-logo {
  min-height: 70px;
  display: grid;
  place-items: center;
  padding: 16px;
  color: var(--deep-navy);
  font-family: var(--heading);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-align: center;
}

.page-hero {
  min-height: 340px;
  display: grid;
  align-items: center;
  padding: 72px 0;
}

.breadcrumb {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--ui);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

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

.mission-card {
  padding: 30px;
}

.timeline {
  position: relative;
  display: grid;
  gap: 20px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 102px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--primary);
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 34px;
}

.timeline-year {
  color: var(--gold);
  font-family: var(--heading);
  font-size: 28px;
}

.timeline-card {
  padding: 22px;
  background: var(--white);
  border-left: 4px solid var(--primary);
  box-shadow: 0 8px 24px rgba(13, 27, 42, 0.06);
}

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

.facility-card {
  padding: 28px;
  border: 2px solid var(--primary);
  background: var(--white);
  text-align: center;
}

.facility-card strong {
  display: block;
  color: var(--primary);
  font-family: var(--heading);
  font-size: 34px;
}

.service-detail {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: center;
}

.service-detail:nth-child(even) .blue-placeholder {
  order: 2;
}

.spec-table {
  width: 100%;
  margin-top: 24px;
  border-collapse: collapse;
  background: var(--white);
}

.spec-table th,
.spec-table td {
  padding: 13px 15px;
  border: 1px solid var(--line);
  text-align: left;
}

.spec-table th {
  width: 34%;
  color: var(--near-black);
  background: var(--bg-gray);
  font-family: var(--ui);
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.component-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 22px;
  padding: 0;
  list-style: none;
}

.component-list li {
  padding: 12px 14px;
  border-left: 3px solid var(--primary);
  background: var(--bg-gray);
  color: var(--text-mid);
}

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

.industry-card {
  border-top: 4px solid var(--primary);
  background-image: linear-gradient(var(--white), var(--white)), linear-gradient(90deg, var(--primary), var(--gold));
  background-origin: border-box;
}

.meta-block {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.meta-block strong {
  display: block;
  margin-bottom: 8px;
  color: var(--near-black);
  font-family: var(--ui);
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.careers-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(13, 27, 42, 0.06);
}

.careers-table th,
.careers-table td {
  padding: 15px;
  border: 1px solid var(--line);
  text-align: left;
}

.careers-table th {
  color: var(--white);
  background: var(--deep-navy);
  font-family: var(--ui);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.form-card {
  padding: 34px;
  background: var(--white);
  border-top: 4px solid var(--primary);
  box-shadow: var(--shadow);
}

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

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

label {
  display: grid;
  gap: 7px;
  color: var(--near-black);
  font-family: var(--ui);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  background: var(--bg-gray);
  color: var(--text-dark);
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 71, 171, 0.12);
}

.form-message {
  min-height: 22px;
  margin: 14px 0 0;
  color: var(--primary);
  font-weight: 700;
}

.botcheck {
  display: none !important;
}

.contact-card {
  border-left: 4px solid var(--primary);
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 42px;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 18px;
}

.map-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  margin-top: 46px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.map-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 18px;
  padding: clamp(26px, 4vw, 46px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(0, 71, 171, 0.9), rgba(8, 47, 104, 0.98)),
    repeating-linear-gradient(135deg, transparent 0 14px, rgba(255, 255, 255, 0.08) 14px 15px);
}

.map-card__body h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.08;
}

.map-card__body p:not(.section-label) {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.map-frame {
  min-height: 420px;
  background: var(--bg-gray);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.footer {
  color: rgba(255, 255, 255, 0.72);
  background: var(--near-black);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1.1fr 1.25fr;
  gap: 38px;
  padding: 70px 0;
}

.footer-brand {
  color: var(--white);
}

.footer-brand .brand-mark {
  width: 48px;
  height: 48px;
}

.footer-brand strong {
  color: var(--white);
}

.footer h3 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 20px;
}

.footer p {
  margin: 14px 0 0;
}

.footer a {
  display: block;
  margin-top: 10px;
  transition: color 180ms ease, background 180ms ease;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social a {
  width: auto;
  min-width: 148px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 16px;
  margin: 0;
  border: 1px solid rgba(37, 211, 102, 0.55);
  border-radius: 999px;
  background: rgba(37, 211, 102, 0.12);
}

.footer-social a::after {
  content: "WhatsApp";
  font: 700 13px var(--ui);
}

.footer-social a:hover {
  color: var(--white);
  background: #25d366;
}

.footer__bottom {
  background: #050b13;
}

.footer__bottom .container {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.footer__bottom p,
.footer__bottom a {
  margin: 0;
  font-size: 13px;
}

.footer__bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.reveal {
  --reveal-delay: 0ms;
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 750ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 750ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--left {
  transform: translateX(-40px);
}

.reveal--right {
  transform: translateX(40px);
}

.reveal--scale {
  transform: scale(0.92);
}

.reveal--left.is-visible,
.reveal--right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal--scale.is-visible {
  opacity: 1;
  transform: scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal--left,
  .reveal--right,
  .reveal--scale {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

html { scroll-behavior: smooth; }

.hero-carousel {
  position: relative;
  height: 100vh;
  min-height: 680px;
  overflow: hidden;
  color: var(--white);
  background: var(--near-black);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  background-image: linear-gradient(90deg, rgba(4, 13, 23, .88) 0%, rgba(4, 13, 23, .53) 50%, rgba(4, 13, 23, .16) 100%), var(--slide-image);
  background-position: center;
  background-size: cover;
  transform: scale(1.06);
  transition: opacity .8s ease, visibility .8s ease, transform 7s ease;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.12), transparent 55%, rgba(0,0,0,.45));
  pointer-events: none;
}

.hero-slide.is-active { opacity: 1; visibility: visible; transform: scale(1); z-index: 2; }
.hero-slide.is-leaving { opacity: 0; visibility: visible; transform: scale(.99); z-index: 1; }

.hero-slide__content { position: relative; z-index: 3; padding-bottom: 4vh; }
.hero-slide__content > * { opacity: 0; transform: translateY(34px); }
.hero-slide.is-active .hero-slide__content > * { animation: heroEnter .8s cubic-bezier(.22,.61,.36,1) forwards; }
.hero-slide.is-active .hero-slide__content > :nth-child(2) { animation-delay: .12s; }
.hero-slide.is-active .hero-slide__content > :nth-child(3) { animation-delay: .22s; }
.hero-slide.is-active .hero-slide__content > :nth-child(4) { animation-delay: .32s; }

.hero-slide h1, .hero-slide h2 {
  max-width: 920px;
  margin: 0;
  color: var(--white);
  font-size: clamp(54px, 7.5vw, 112px);
  line-height: .93;
  letter-spacing: -.02em;
  text-transform: uppercase;
}

.hero-slide p:not(.eyebrow) { max-width: 620px; margin: 28px 0; color: rgba(255,255,255,.78); font-size: clamp(16px, 1.4vw, 20px); }
.hero-link { display: inline-flex; align-items: center; gap: 20px; padding-bottom: 9px; color: var(--white); border-bottom: 2px solid var(--gold); font-family: var(--ui); font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; }
.hero-link span { color: var(--gold); font-size: 22px; transition: transform .25s ease; }
.hero-link:hover span { transform: translate(4px, -4px); }

.hero-carousel__controls { position: absolute; right: 5vw; bottom: 54px; z-index: 5; display: flex; align-items: center; gap: 18px; }
.hero-arrow { width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.45); color: var(--white); background: rgba(0,0,0,.16); font-size: 20px; cursor: pointer; transition: .25s ease; }
.hero-arrow:hover { color: var(--near-black); border-color: var(--gold); background: var(--gold); }
.hero-dots { display: flex; gap: 8px; }
.hero-dots button { width: 30px; height: 3px; padding: 0; border: 0; background: rgba(255,255,255,.35); cursor: pointer; transition: .3s ease; }
.hero-dots button.is-active { width: 58px; background: var(--gold); }
.hero-counter { min-width: 58px; font-family: var(--ui); letter-spacing: 1px; }
.hero-progress { position: absolute; left: 0; right: 0; bottom: 0; z-index: 6; height: 3px; background: rgba(255,255,255,.15); }
.hero-progress span { display: block; width: 0; height: 100%; background: var(--gold); }
.hero-progress span.is-running { animation: heroProgress 6.5s linear forwards; }
.hero-scroll { position: absolute; left: 5vw; bottom: 44px; z-index: 5; display: flex; align-items: center; gap: 14px; color: rgba(255,255,255,.75); font-family: var(--ui); font-size: 12px; letter-spacing: 1.8px; text-transform: uppercase; }
.hero-scroll i { width: 1px; height: 38px; background: var(--gold); animation: scrollPulse 1.8s ease-in-out infinite; }

.company-intro { padding: clamp(90px, 12vw, 170px) 0; background: #f7f7f4; }
.company-intro__grid { display: grid; grid-template-columns: .35fr 1fr; gap: clamp(40px, 8vw, 130px); align-items: start; }
.company-intro h2 { max-width: 800px; font-size: clamp(30px, 4vw, 52px); line-height: 1.16; text-transform: none; }

@keyframes heroEnter { to { opacity: 1; transform: translateY(0); } }
@keyframes heroProgress { to { width: 100%; } }
@keyframes scrollPulse { 50% { transform: scaleY(.45); transform-origin: top; } }

@media (max-width: 768px) {
  .hero-carousel { height: calc(100svh - 72px); min-height: 620px; }
  .hero-slide { background-position: 62% center; }
  .hero-slide__content { padding: 0 16px 120px; }
  .hero-slide h1, .hero-slide h2 { font-size: clamp(46px, 14vw, 68px); }
  .hero-carousel__controls { right: 24px; bottom: 32px; }
  .hero-counter, .hero-scroll { display: none; }
  .hero-arrow { width: 42px; height: 42px; }
  .hero-dots button { width: 18px; }
  .hero-dots button.is-active { width: 34px; }
  .company-intro__grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* Amber-inspired global design language */
body { color: #333; font-size: 16px; line-height: 1.65; }
.topbar { display: none; }
.container { width: min(100% - 64px, 1200px); }

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 50;
  height: 88px;
  color: var(--white);
  background: linear-gradient(180deg, rgba(5, 12, 20, .64), transparent);
  border: 0;
  transition: height .35s ease, background .35s ease, box-shadow .35s ease, transform .35s ease;
}

.site-header.is-scrolled {
  position: fixed;
  height: 84px;
  color: var(--near-black);
  background: rgba(255,255,255,.96);
  box-shadow: 0 8px 30px rgba(5,18,34,.1);
  backdrop-filter: blur(14px);
  animation: headerDown .35s ease both;
}

.nav { min-height: 100%; gap: 30px; }
.brand { margin-right: auto; }
.brand-mark { width: 48px; height: 48px; }
.brand-text strong { color: var(--white); font-family: var(--heading); font-size: 23px; font-weight: 700; letter-spacing: -.5px; }
.brand-text small { color: rgba(255,255,255,.78); font-family: var(--heading); font-size: 10px; letter-spacing: 3px; }
.site-header.is-scrolled .brand-text strong { color: var(--near-black); }
.site-header.is-scrolled .brand-text small { color: var(--text-mid); }
.menu { gap: 4px; }
.menu-link { min-height: 88px; padding: 0 13px; color: var(--white); font-family: var(--heading); font-size: 13px; font-weight: 500; letter-spacing: 0; text-transform: capitalize; }
.menu-link::after { bottom: 20px; height: 2px; background: var(--gold); }
.site-header.is-scrolled { height: 68px; }
.site-header.is-scrolled .brand-mark { width: 40px; height: 40px; }
.site-header.is-scrolled .menu-link { min-height: 68px; color: var(--near-black); }
.site-header.is-scrolled .menu-link::after { bottom: 17px; }
.nav-cta { display: none; }
.dropdown { min-width: 245px; padding: 15px 0; border: 0; background: rgba(255,255,255,.98); box-shadow: 0 18px 44px rgba(5,18,34,.16); }
.dropdown a { padding: 10px 24px; font-family: var(--heading); font-size: 13px; font-weight: 400; }
.menu-item {
  position: relative;
}

.menu-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.menu-link i {
  margin-left: 2px;
  font-size: .78em;
  line-height: 1;
}

.dropdown {
  top: calc(100% - 1px);
}

.dropdown a {
  display: flex;
  align-items: center;
  min-height: 42px;
  white-space: nowrap;
}

h1, h2, h3, h4 { font-family: var(--heading); text-transform: none; letter-spacing: -.025em; }
h1 { font-size: clamp(44px, 5vw, 64px); font-weight: 600; line-height: 1.18; }
h2 { font-size: clamp(34px, 4vw, 50px); font-weight: 600; line-height: 1.2; }
h3 { font-size: 22px; font-weight: 600; line-height: 1.35; }
p { font-weight: 300; }
.section { padding: clamp(80px, 8vw, 120px) 0; }
.section-heading { max-width: 820px; margin-bottom: 60px; }
.section-label, .eyebrow { padding-left: 0; font-family: var(--heading); font-size: 13px; font-weight: 500; letter-spacing: 1.5px; }
.section-label::before, .eyebrow::before { display: none; }
.btn { min-height: 48px; padding: 13px 26px; border-radius: 999px !important; font-family: var(--ui); font-size: 14px; letter-spacing: .4px; }

.page-hero {
  min-height: 540px;
  padding: 185px 0 90px;
  background-position: center;
  background-size: cover;
}
.page-hero.grid-bg::before { background: linear-gradient(90deg, rgba(4,13,23,.87), rgba(4,13,23,.25)); }
.page-hero h1 { max-width: 850px; color: var(--white); font-size: clamp(46px, 5vw, 68px); font-weight: 600; line-height: 1.12; }
.breadcrumb { margin-top: 22px; font-family: var(--heading); font-size: 13px; font-weight: 400; letter-spacing: .2px; text-transform: none; }

.service-card, .industry-card, .career-card, .contact-card, .mission-card, .feature-card, .testimonial-card, .team-card {
  border-color: #e9e9e9;
  box-shadow: none;
  transition: transform .45s cubic-bezier(.22,.61,.36,1), box-shadow .45s ease, border-color .45s ease;
}
.service-card:hover, .industry-card:hover, .career-card:hover, .mission-card:hover { transform: translateY(-10px); box-shadow: 0 24px 55px rgba(13,27,42,.11); }
.card-grid, .project-grid, .team-grid, .testimonial-grid { gap: 30px; }
.stats-strip { background: #082f68; }
.footer { background: #062656; }
.footer__bottom { background: #041b3d; }
.footer h3 { font-family: var(--heading); font-size: 18px; font-weight: 600; }
.footer a, .footer p { font-size: 14px; font-weight: 300; }

.hero-slide h1, .hero-slide h2 { max-width: 760px; font-size: clamp(48px, 4.2vw, 64px); font-weight: 600; line-height: 1.2; letter-spacing: -.025em; text-transform: none; }
.hero-slide__content { padding-bottom: 0; }
.hero-slide p:not(.eyebrow) { font-weight: 300; line-height: 1.6; }
.hero-link { padding: 12px 25px; border: 0; border-radius: 999px !important; color: var(--near-black); background: var(--gold); font-family: var(--ui); font-size: 14px; letter-spacing: .3px; }
.hero-link span { color: inherit; }

/* Keep interface copy in a consistent capitalized style. */
.section-label,
.eyebrow,
.menu-link,
.btn,
.hero-link,
.footer h3,
.stat span,
.badge-row span,
.filter-tabs button,
.breadcrumb,
.client-logo,
.project-card__body small,
.feature-card h4,
.team-card h4,
.why-item strong,
.footer__bottom p,
.footer__bottom nav {
  text-transform: capitalize;
}

@keyframes headerDown { from { transform: translateY(-100%); } to { transform: translateY(0); } }

@media (max-width: 1024px) {
  .menu-link { padding-inline: 10px; font-size: 13px; }
  .brand-mark { width: 48px; height: 48px; }
}

@media (max-width: 768px) {
  .container { width: min(100% - 36px, 1336px); }

  /* Sticky white header on mobile â€” works on all pages, not just hero */
  .site-header,
  .site-header.is-scrolled {
    position: sticky;
    height: auto;
    background: var(--white);
    box-shadow: none;
    animation: none;
    border-bottom: 1px solid var(--line);
  }

  .site-header.is-scrolled {
    box-shadow: 0 4px 20px rgba(13, 27, 42, 0.12);
    border-bottom-color: rgba(213, 224, 231, 0.6);
  }

  .nav { min-height: 64px; padding-block: 6px; }
  .site-header.is-scrolled .nav { min-height: 56px; padding-block: 4px; }

  .brand-mark { width: 38px; height: 38px; }
  .site-header.is-scrolled .brand-mark { width: 34px; height: 34px; }

  .brand-text strong,
  .site-header.is-scrolled .brand-text strong { color: var(--near-black); font-size: 20px; }
  .brand-text small,
  .site-header.is-scrolled .brand-text small { color: var(--text-mid); }

  .nav-toggle span { background: var(--near-black); }

  .menu { top: 64px; padding: 18px 24px 28px; background: rgba(255,255,255,.98); }
  .menu-link, .site-header.is-scrolled .menu-link { min-height: auto; padding: 13px 0; color: var(--near-black); font-size: 15px; }
  .dropdown { padding: 0 0 10px 14px; box-shadow: none; }
  .page-hero { min-height: 420px; padding: 80px 0 60px; }
  .page-hero h1 { font-size: clamp(40px, 12vw, 54px); }
  .hero-slide h1, .hero-slide h2 { font-size: clamp(42px, 12vw, 56px); }
  .section { padding: 72px 0; }
}

@keyframes pulseCta {
  0% {
    box-shadow: 0 0 0 0 rgba(232, 176, 0, 0.55);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(232, 176, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(232, 176, 0, 0);
  }
}

@media (max-width: 1024px) {
  .nav-cta {
    display: none;
  }

  .menu {
    gap: 8px;
  }

  .hero__grid,
  .split,
  .why-split,
  .service-detail,
  .contact-page-grid,
  .map-card {
    grid-template-columns: 1fr;
  }

  .why-panel {
    min-height: auto;
    padding: 70px 48px;
  }

  .card-grid--3,
  .team-grid,
  .testimonial-grid,
  .project-grid,
  .industry-grid,
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .card-grid--4,
  .client-grid,
  .benefit-grid,
  .facility-grid,
  .footer__grid,
  .mission-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-detail:nth-child(even) .blue-placeholder {
    order: 0;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(100% - 32px, 1200px);
  }

  .topbar__inner,
  .topbar__contact {
    justify-content: center;
    flex-wrap: wrap;
    padding-block: 7px;
    text-align: center;
  }

  .topbar__social {
    display: none;
  }

  .nav {
    min-height: 68px;
  }

  .nav-toggle {
    display: block;
  }

  .menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 68px;
    display: none;
    max-height: calc(100vh - 72px);
    overflow: auto;
    padding: 10px 24px 20px;
    background: var(--white);
    border-top: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .menu.is-open {
    display: grid;
    gap: 0;
  }

  .menu-item {
    display: grid;
  }

  .menu-link {
    min-height: auto;
    padding: 13px 0;
  }

  .menu-link::after {
    bottom: 4px;
  }

  .dropdown {
    position: static;
    min-width: 0;
    display: grid;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding: 0 0 8px 14px;
    border-top: 0;
    box-shadow: none;
  }

  .dropdown a {
    padding: 7px 0;
  }

  .hero,
  .section {
    padding: 68px 0;
  }

  .stats-grid,
  .feature-grid,
  .card-grid--3,
  .card-grid--4,
  .team-grid,
  .testimonial-grid,
  .project-grid,
  .industry-grid,
  .contact-grid,
  .client-grid,
  .benefit-grid,
  .facility-grid,
  .footer__grid,
  .mission-grid,
  .component-list,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    left: 72px;
  }

  .timeline-item {
    grid-template-columns: 64px 1fr;
    gap: 24px;
  }

  .cta-band__inner,
  .footer__bottom .container {
    align-items: flex-start;
    flex-direction: column;
  }

  .actions,
  .btn {
    width: 100%;
  }

  .blue-placeholder {
    min-height: 300px;
  }

  .map-card {
    margin-top: 34px;
    border-radius: 24px;
  }

  .map-card__body {
    padding: 28px;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 340px;
  }
}

/* Capacity-first homepage */
.capacity-hero {
  position: relative;
  min-height: calc(100svh - 112px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--near-black);
}

.capacity-hero__media,
.capacity-hero__media::after {
  position: absolute;
  inset: 0;
}

.capacity-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .58;
  filter: saturate(.92) contrast(1.05);
}

.capacity-hero__media::after {
  content: "";
  background:
    linear-gradient(90deg, rgba(6, 20, 31, .96) 0%, rgba(6, 20, 31, .76) 45%, rgba(6, 20, 31, .36) 100%),
    linear-gradient(180deg, rgba(6, 20, 31, .2), rgba(6, 20, 31, .84));
}

.capacity-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .72fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
  padding: clamp(70px, 9vw, 120px) 0;
}

.capacity-hero__content h1 {
  max-width: 850px;
  margin: 18px 0 24px;
  color: var(--white);
  font-size: clamp(42px, 6vw, 82px);
  line-height: .98;
}

.capacity-hero__content p:not(.section-label) {
  max-width: 700px;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(16px, 1.25vw, 20px);
}

.capacity-hero__actions,
.final-capacity-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn--ghost-light {
  color: var(--white);
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .34);
}

.btn--ghost-light:hover {
  color: var(--near-black);
  background: var(--white);
  border-color: var(--white);
}

.capacity-dashboard {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--radius-xl);
  background: rgba(6, 20, 31, .72);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .32);
  backdrop-filter: blur(16px);
}

.capacity-dashboard__top,
.capacity-metric {
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .08);
}

.capacity-dashboard__top {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px;
  color: rgba(255, 255, 255, .7);
  font-family: var(--ui);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.capacity-dashboard__top strong {
  color: var(--gold);
}

.capacity-metric {
  min-height: 148px;
  padding: 18px;
}

.capacity-metric--wide {
  grid-column: 1 / -1;
}

.capacity-metric span,
.capacity-metric small {
  display: block;
  color: rgba(255, 255, 255, .72);
}

.capacity-metric span {
  font-family: var(--ui);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .9px;
}

.capacity-metric strong {
  display: block;
  margin: 8px 0 4px;
  color: var(--white);
  font-family: var(--heading);
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
}

.capacity-metric small {
  font-size: 13px;
}

.capacity-overview .section-heading p:not(.section-label) {
  max-width: 780px;
  margin: 14px auto 0;
  color: var(--text-mid);
}

.capacity-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow);
}

.capacity-table {
  width: 100%;
  min-width: 880px;
  border-collapse: collapse;
}

.capacity-table th,
.capacity-table td {
  padding: 20px 22px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.capacity-table th {
  color: var(--white);
  background: var(--primary-dark);
  font-family: var(--ui);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .8px;
}

.capacity-table td {
  color: var(--text-dark);
  vertical-align: top;
}

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

.capacity-table td span {
  display: block;
  max-width: 260px;
  margin-top: 5px;
  color: var(--text-mid);
  font-size: 13px;
}

.capacity-table mark {
  display: inline-flex;
  padding: 6px 10px;
  color: var(--primary-dark);
  border-radius: 999px;
  background: rgba(242, 169, 0, .18);
  font: 700 12px var(--ui);
  text-transform: uppercase;
  letter-spacing: .6px;
}

.machinery-capacity__grid,
.assurance-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.machine-card,
.assurance-item,
.capacity-form {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.machine-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
}

.machine-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.machine-card div {
  padding: 20px;
}

.machine-card i,
.assurance-item i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  color: var(--near-black);
  border-radius: 50%;
  background: var(--gold);
}

.machine-card h3,
.assurance-item h3 {
  margin: 0 0 8px;
  color: var(--text-dark);
}

.machine-card p,
.assurance-item p {
  margin: 0;
  color: var(--text-mid);
}

.production-capability__grid,
.capacity-enquiry__grid,
.final-capacity-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.capability-list {
  display: grid;
  gap: 8px;
  margin-top: 26px;
}

.capability-list span,
.enquiry-promise span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-dark);
  font-weight: 600;
}

.capability-list i,
.enquiry-promise i {
  color: var(--gold);
}

.production-visual {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.production-visual img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}

.production-visual__note {
  position: absolute;
  right: 22px;
  bottom: 22px;
  min-width: 190px;
  padding: 18px;
  color: var(--white);
  border-radius: var(--radius-lg);
  background: rgba(6, 20, 31, .86);
  backdrop-filter: blur(10px);
}

.production-visual__note strong {
  display: block;
  color: var(--gold);
  font: 700 46px/1 var(--heading);
}

.capacity-enquiry .section-label,
.capacity-enquiry h2,
.capacity-enquiry p {
  color: var(--white);
}

.capacity-enquiry__intro p:not(.section-label) {
  color: rgba(255, 255, 255, .72);
}

.enquiry-promise {
  display: grid;
  gap: 8px;
  margin-top: 26px;
}

.enquiry-promise span {
  color: rgba(255, 255, 255, .86);
}

.capacity-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, .12);
  background: var(--white);
}

.capacity-form label {
  display: grid;
  gap: 8px;
  color: var(--text-dark);
  font: 700 13px var(--ui);
  text-transform: uppercase;
  letter-spacing: .7px;
}

.capacity-form input {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--text-dark);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg-gray);
}

.capacity-form input:focus {
  outline: 2px solid rgba(242, 169, 0, .38);
  border-color: var(--gold);
}

.capacity-form .full {
  grid-column: 1 / -1;
}

.quality-assurance {
  background: var(--white);
}

.assurance-item {
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--white);
}

.final-capacity-cta {
  padding: clamp(72px, 8vw, 110px) 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 54, 77, .96), rgba(11, 21, 32, .96)),
    url("assets/Images/Quality Control Area.webp") center/cover;
}

.final-capacity-cta h2 {
  max-width: 760px;
  margin: 12px 0;
  color: var(--white);
  font-size: clamp(34px, 4.5vw, 64px);
}

.final-capacity-cta p:not(.section-label) {
  max-width: 680px;
  color: rgba(255, 255, 255, .76);
}

.final-capacity-cta__actions {
  justify-content: flex-end;
  align-self: end;
}

@media (max-width: 1080px) {
  .capacity-hero__grid,
  .production-capability__grid,
  .capacity-enquiry__grid,
  .final-capacity-cta__inner {
    grid-template-columns: 1fr;
  }

  .machinery-capacity__grid,
  .assurance-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .capacity-dashboard {
    max-width: 680px;
  }

  .final-capacity-cta__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .capacity-hero {
    min-height: auto;
  }

  .capacity-hero__grid {
    padding: 58px 0;
  }

  .capacity-dashboard,
  .capacity-form {
    grid-template-columns: 1fr;
  }

  .capacity-metric--wide,
  .capacity-form .full {
    grid-column: auto;
  }

  .machinery-capacity__grid,
  .assurance-grid {
    grid-template-columns: 1fr;
  }

  .production-visual,
  .production-visual img {
    min-height: 340px;
  }

  .capacity-hero__actions .btn,
  .final-capacity-cta__actions .btn {
    width: 100%;
  }
}

/* Mobile-first responsive repair and machinery catalogue */
body {
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

.capacity-hero-carousel {
  min-height: 100svh;
}

.capacity-hero-carousel .hero-slide {
  background-position: center;
}

.capacity-snapshot__grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .72fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.machine-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--primary);
  font: 700 14px var(--ui);
}

.machine-card a::after {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.capacity-index {
  padding-bottom: clamp(40px, 5vw, 70px);
}

.capacity-index__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.capacity-index__grid a {
  position: relative;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 18px 18px 20px;
  color: var(--primary-dark);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(243, 246, 248, .92));
  box-shadow: 0 12px 26px rgba(13, 27, 42, .07);
  font-weight: 700;
  line-height: 1.25;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.capacity-index__grid a::after {
  content: "\f061";
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--near-black);
  border-radius: 50%;
  background: var(--gold);
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 13px;
}

.capacity-index__grid a:hover {
  color: var(--white);
  border-color: var(--primary);
  background: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(13, 27, 42, .14);
}

.machine-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  margin-top: 24px;
  padding: 13px 22px;
  color: var(--near-black);
  border-radius: 999px;
  background: var(--gold);
  font: 700 14px var(--ui);
}

.machine-cta::after {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 13px;
}

.machine-detail {
  overflow: hidden;
}

.machine-detail__grid {
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
}

.machine-detail:nth-of-type(even) .machine-gallery {
  order: 2;
}

.machine-gallery {
  position: relative;
  min-height: clamp(320px, 42vw, 560px);
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--near-black);
  box-shadow: var(--shadow);
}

.machine-gallery .machinery-slider {
  border-radius: inherit;
}

.machine-gallery .machinery-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 700ms ease, transform 1400ms ease;
}

.machine-gallery .machinery-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.machine-gallery::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(180deg, transparent, rgba(6, 20, 31, .56));
  pointer-events: none;
}

.machine-detail__content > p:not(.section-label) {
  max-width: 720px;
  color: var(--text-mid);
  font-size: clamp(15px, 1.2vw, 18px);
}

.machine-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 26px;
}

.machine-facts span {
  min-height: 112px;
  padding: 16px;
  color: var(--text-mid);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.machine-facts strong {
  display: block;
  margin-bottom: 6px;
  color: var(--primary-dark);
  font-family: var(--ui);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .8px;
}

@media (min-width: 1400px) {
  .container {
    width: min(1280px, calc(100% - 96px));
  }

  .hero-slide h1,
  .hero-slide h2 {
    max-width: 900px;
  }
}

@media (max-width: 1180px) {
  .capacity-snapshot__grid,
  .machine-detail__grid {
    grid-template-columns: 1fr;
  }

  .machine-detail:nth-of-type(even) .machine-gallery {
    order: 0;
  }

  .machine-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  h1 {
    font-size: clamp(38px, 10vw, 58px);
    line-height: 1.05;
  }

  h2 {
    font-size: clamp(30px, 7vw, 44px);
    line-height: 1.12;
  }

  .hero-carousel,
  .capacity-hero-carousel {
    height: auto;
    min-height: 100svh;
  }

  .hero-slide {
    min-height: 100svh;
    padding-top: 78px;
    background-position: 58% center;
  }

  .hero-slide__content {
    padding: 120px 0 150px;
  }

  .hero-slide h1,
  .hero-slide h2 {
    max-width: 100%;
    font-size: clamp(38px, 11vw, 60px);
    line-height: 1.02;
  }

  .hero-carousel__controls {
    left: 24px;
    right: 24px;
    bottom: 28px;
    justify-content: space-between;
  }

  .hero-dots {
    flex: 1;
    justify-content: center;
  }

  .hero-scroll,
  .hero-counter {
    display: none;
  }

  .page-hero {
    min-height: 420px;
    padding-top: 138px;
  }

  .capacity-dashboard {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .capacity-metric--wide {
    grid-column: auto;
  }

  .machine-facts {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1200px);
  }

  body {
    font-size: 15px;
    line-height: 1.6;
  }

  .site-header,
  .site-header.is-scrolled {
    height: 64px;
  }

  .nav {
    min-height: 64px;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark,
  .site-header.is-scrolled .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-text strong,
  .site-header.is-scrolled .brand-text strong {
    font-size: 18px;
  }

  .brand-text small,
  .site-header.is-scrolled .brand-text small {
    font-size: 8px;
    letter-spacing: 2px;
  }

  .menu {
    top: 64px;
    max-height: calc(100svh - 64px);
  }

  .section {
    padding: 56px 0;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .section-label,
  .eyebrow {
    font-size: 11px;
    letter-spacing: 1px;
  }

  .hero-slide {
    padding-top: 64px;
  }

  .hero-slide__content {
    padding: 104px 0 132px;
  }

  .hero-slide p:not(.eyebrow) {
    margin: 18px 0;
    font-size: 15px;
  }

  .hero-link,
  .btn {
    width: 100%;
    justify-content: center;
    min-height: 46px;
    padding-inline: 18px;
    text-align: center;
  }

  .hero-carousel__controls {
    gap: 10px;
  }

  .hero-arrow {
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
  }

  .hero-dots button {
    width: 18px;
  }

  .hero-dots button.is-active {
    width: 30px;
  }

  .capacity-table {
    min-width: 760px;
  }

  .capacity-table th,
  .capacity-table td {
    padding: 14px;
    font-size: 13px;
  }

  .machine-gallery {
    min-height: 300px;
  }

  .machine-card img {
    aspect-ratio: 16 / 11;
  }

  .capacity-form {
    padding: 18px;
  }

  .footer__grid {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .cta-band__inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 42px 0;
  }

  .cta-band .btn,
  .machine-cta {
    width: 100%;
  }

  .capacity-index__grid {
    grid-template-columns: 1fr;
  }
}

@media (orientation: landscape) and (max-height: 560px) {
  .hero-carousel,
  .capacity-hero-carousel,
  .hero-slide {
    min-height: 620px;
  }

  .hero-slide__content {
    padding: 110px 0 96px;
  }
}

/* Final responsive polish */
.site-header .nav-toggle span {
  background: currentColor;
}

.site-header.is-scrolled .nav-toggle {
  color: var(--near-black);
}

@media (max-width: 768px) {
  .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
  }

  .brand {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-width: 0;
    max-width: calc(100% - 56px);
  }

  .brand-divider {
    height: 18px;
    margin: 0 2px;
  }

  .make-in-india-inline img {
    height: 20px;
    width: auto;
  }

  .site-header,
  .site-header.is-scrolled {
    color: var(--white);
  }

  .site-header.is-scrolled .nav-toggle,
  .menu.is-open ~ .nav-toggle {
    color: var(--white);
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 50%;
    background: rgba(6, 20, 31, .22);
    margin-left: auto;
    flex-shrink: 0;
  }

  .nav-toggle span {
    width: 18px;
    margin: 3px auto;
  }
}

.capacity-hero-carousel .hero-slide__content {
  max-width: 880px;
}

.capacity-hero-carousel .hero-slide h1,
.capacity-hero-carousel .hero-slide h2 {
  font-size: clamp(38px, 5vw, 74px);
  line-height: 1.05;
}

.capacity-hero-carousel .hero-slide p:not(.eyebrow) {
  max-width: 700px;
  font-size: clamp(16px, 1.35vw, 21px);
}

@media (max-width: 900px) {
  .capacity-hero-carousel .hero-slide {
    align-items: end;
    min-height: 100svh;
    background-position: center;
  }

  .capacity-hero-carousel .hero-slide__content {
    padding: 120px 0 126px;
  }

  .capacity-hero-carousel .hero-slide h1,
  .capacity-hero-carousel .hero-slide h2 {
    font-size: clamp(34px, 10.5vw, 54px);
    line-height: 1.08;
  }

  .capacity-hero-carousel .hero-slide p:not(.eyebrow) {
    font-size: clamp(14px, 4vw, 17px);
  }
}

@media (max-width: 560px) {
  .capacity-hero-carousel .hero-slide__content {
    padding: 96px 0 112px;
  }

  .capacity-hero-carousel .hero-slide h1,
  .capacity-hero-carousel .hero-slide h2 {
    font-size: clamp(31px, 10vw, 44px);
  }

  .hero-carousel__controls {
    left: 14px;
    right: 14px;
    bottom: 18px;
  }
}

@media (max-width: 700px) {
  .capacity-overview .section-heading {
    text-align: left;
  }

  .capacity-table-wrap {
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .capacity-table,
  .capacity-table thead,
  .capacity-table tbody,
  .capacity-table tr,
  .capacity-table th,
  .capacity-table td {
    display: block;
    width: 100%;
    min-width: 0;
  }

  .capacity-table thead {
    display: none;
  }

  .capacity-table tr {
    margin-bottom: 16px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: 0 14px 30px rgba(13, 27, 42, .08);
  }

  .capacity-table td {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 8px;
    padding: 14px 16px;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
  }

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

  .capacity-table td::before {
    color: var(--primary-dark);
    font: 700 12px var(--ui);
    letter-spacing: .5px;
    text-transform: uppercase;
  }

  .capacity-table td:nth-child(1)::before { content: "Machine"; }
  .capacity-table td:nth-child(2)::before { content: "Precision"; }
  .capacity-table td:nth-child(3)::before { content: "Capacity"; }
  .capacity-table td:nth-child(4)::before { content: "Turnaround"; }
}

.product-gallery-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f6f8fa 100%);
}

.product-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 24px);
}

.product-card {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  padding: 0;
  border: 1px solid rgba(8, 38, 58, .09);
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: 0 18px 42px rgba(8, 38, 58, .08);
  text-align: left;
  isolation: isolate;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.product-card img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  transition: transform .5s ease, filter .5s ease;
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 52%, rgba(6, 20, 31, .5) 100%);
  opacity: .72;
  pointer-events: none;
}

.product-card span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 8px 14px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  background: rgba(6, 20, 31, .52);
  backdrop-filter: blur(10px);
  font: 700 12px var(--ui);
  letter-spacing: .6px;
  text-transform: uppercase;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(242, 169, 0, .36);
  box-shadow: 0 24px 58px rgba(8, 38, 58, .14);
}

.product-card:hover img {
  transform: scale(1.035);
  filter: saturate(1.04) contrast(1.03);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(5, 12, 20, .88);
}

.lightbox[hidden] {
  display: none;
}

.lightbox figure {
  width: min(100%, 980px);
  margin: 0;
}

.lightbox img {
  width: 100%;
  max-height: 78svh;
  object-fit: contain;
  border-radius: var(--radius-lg);
  background: var(--white);
}

.lightbox figcaption {
  margin-top: 12px;
  color: var(--white);
  text-align: center;
  font: 700 15px var(--ui);
}

.lightbox__close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
}

.lightbox-open {
  overflow: hidden;
}

/* Product gallery â€” responsive breakpoints */
@media (max-width: 479px) {
  .product-gallery {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .product-card,
  .product-card img { min-height: 240px; }
}

@media (min-width: 480px) and (max-width: 767px) {
  .product-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .product-card,
  .product-card img { min-height: 260px; }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .product-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .product-card,
  .product-card img { min-height: 280px; }
}

@media (min-width: 1024px) {
  .product-gallery {
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
  }
}

/* Requested responsive refinements */
@media (min-width: 901px) {
  .capacity-hero-carousel .hero-slide {
    align-items: center;
  }

  .capacity-hero-carousel .hero-slide__content {
    width: min(920px, calc(100% - 128px));
    max-width: 920px;
    margin-left: clamp(64px, 8vw, 150px);
    margin-right: auto;
    padding: 72px 0 48px;
    text-align: left;
  }

  .capacity-hero-carousel .hero-slide h1,
  .capacity-hero-carousel .hero-slide h2,
  .capacity-hero-carousel .hero-slide p:not(.eyebrow) {
    margin-left: 0;
    margin-right: auto;
    text-align: left;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    border: 0 !important;
    box-shadow: none;
    background: rgba(6, 20, 31, .38);
  }

  .nav-toggle:focus-visible {
    outline: 2px solid rgba(242, 169, 0, .9);
    outline-offset: 4px;
  }

  .careers-table {
    display: block;
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .careers-table thead {
    display: none;
  }

  .careers-table tbody,
  .careers-table tr,
  .careers-table td {
    display: block;
    width: 100%;
  }

  .careers-table tr {
    margin-bottom: 16px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: 0 14px 30px rgba(13, 27, 42, .08);
  }

  .careers-table td {
    display: grid;
    grid-template-columns: 118px 1fr;
    gap: 8px;
    padding: 14px 16px;
    border: 0;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
  }

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

  .careers-table td::before {
    color: var(--primary-dark);
    font: 700 12px var(--ui);
    letter-spacing: .5px;
    text-transform: uppercase;
  }

  .careers-table td:nth-child(1)::before { content: "Role"; }
  .careers-table td:nth-child(2)::before { content: "Department"; }
  .careers-table td:nth-child(3)::before { content: "Experience"; }
  .careers-table td:nth-child(4)::before { content: "Location"; }

  .form-card {
    padding: clamp(22px, 6vw, 34px);
    border-radius: var(--radius-lg);
  }

  .manufacturing-hero {
    min-height: clamp(390px, 74svh, 520px);
    padding: 132px 0 58px;
  }

  .manufacturing-hero h1 {
    max-width: 720px;
    font-size: clamp(32px, 9vw, 52px);
    line-height: 1.12;
  }
}

@media (max-width: 560px) {
  .nav-toggle {
    width: 42px;
    height: 42px;
    background: rgba(6, 20, 31, .46);
  }

  .nav-toggle span {
    width: 19px;
  }

  .capacity-hero-carousel .hero-slide {
    min-height: 100svh;
    align-items: end;
  }

  .capacity-hero-carousel .hero-slide__content {
    width: min(100% - 28px, 1200px);
    margin-inline: auto;
    padding: 96px 0 112px;
  }

  .capacity-hero-carousel .hero-slide h1,
  .capacity-hero-carousel .hero-slide h2 {
    font-size: clamp(30px, 9.6vw, 42px);
    line-height: 1.08;
  }

  .capacity-hero-carousel .hero-slide p:not(.eyebrow) {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.55;
  }

  .careers-table td {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .benefit-grid {
    gap: 16px;
  }

  .career-card {
    padding: 22px;
    border-radius: var(--radius-lg);
  }

  .career-card h3 {
    font-size: 19px;
  }

  .career-card p {
    font-size: 14px;
  }

  .manufacturing-hero {
    min-height: 430px;
    padding: 116px 0 50px;
    background-position: 58% center;
  }

  .manufacturing-hero h1 {
    font-size: clamp(29px, 9vw, 38px);
    line-height: 1.1;
  }

  .manufacturing-hero .breadcrumb {
    max-width: 32ch;
    font-size: 13px;
  }
}

@media (orientation: landscape) and (max-height: 560px) {
  .manufacturing-hero {
    min-height: 360px;
    padding: 104px 0 42px;
  }

  .manufacturing-hero h1 {
    font-size: clamp(30px, 6vw, 44px);
  }
}
.authority-highlight {
  color: var(--text-dark);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(243, 246, 248, .96)),
    repeating-linear-gradient(135deg, transparent 0 18px, rgba(11, 79, 113, .06) 18px 19px);
  border-block: 1px solid var(--line);
}

.authority-highlight__grid {
  display: grid;
  grid-template-columns: minmax(110px, .16fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: center;
}

.authority-highlight__mark {
  width: clamp(96px, 10vw, 140px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  color: var(--near-black);
  border-radius: var(--radius-lg);
  background: var(--gold);
  box-shadow: 0 16px 38px rgba(13, 27, 42, .12);
}

.authority-highlight__mark i {
  font-size: clamp(28px, 3vw, 40px);
}

.authority-highlight__mark span {
  font: 700 clamp(20px, 2.6vw, 34px)/1 var(--heading);
  letter-spacing: 1px;
}

.authority-highlight h2 {
  max-width: 820px;
  color: var(--text-dark);
  font-size: clamp(26px, 3vw, 42px);
  text-transform: none;
}

.authority-highlight__content > p:not(.section-label) {
  max-width: 820px;
  color: var(--text-mid);
  font-size: clamp(15px, 1.05vw, 17px);
}

.authority-highlight__points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.authority-highlight__points span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  color: var(--primary-dark);
  border: 1px solid rgba(11, 79, 113, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  font-size: 14px;
}

.authority-highlight__points i {
  color: var(--gold);
}

@media (max-width: 720px) {
  .authority-highlight__grid {
    grid-template-columns: 1fr;
  }

  .authority-highlight__mark {
    width: 112px;
    border-radius: 24px;
  }

  .authority-highlight__points {
    display: grid;
  }

  .authority-highlight__points span {
    border-radius: var(--radius-md);
  }
}



.footer-credit {
  color: rgba(255, 255, 255, .62);
}

.footer-credit a {
  color: var(--gold);
  font-weight: 700;
}

.footer-credit a:hover {
  color: var(--white);
}

@media (max-width: 768px) {
  .footer-credit {
    margin-top: 2px;
  }
}

.legal-card {
  padding: clamp(26px, 4vw, 54px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: 0 18px 42px rgba(8, 38, 58, .08);
}

.legal-card h2,
.legal-card h3 {
  text-transform: none;
}

.legal-card h3 {
  margin-top: 28px;
  font-size: 22px;
}

.legal-card p {
  color: var(--text-mid);
}

.legal-card a {
  color: var(--primary);
  font-weight: 700;
}

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 28px;
}

.sitemap-grid div {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg-gray);
}

.sitemap-grid a {
  color: var(--text-dark);
}

@media (max-width: 820px) {
  .sitemap-grid {
    grid-template-columns: 1fr;
  }
}
/* Footer legal row polish */
.footer__bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: nowrap;
}

.footer__bottom nav {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
}

.footer__bottom p,
.footer__bottom a,
.footer-credit {
  white-space: nowrap;
  line-height: 1.4;
}

@media (max-width: 980px) {
  .footer__bottom .container {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .footer__bottom .container,
  .footer__bottom nav {
    flex-direction: column;
    white-space: normal;
  }

  .footer__bottom p,
  .footer__bottom a,
  .footer-credit {
    white-space: normal;
  }
}


/* Sitemap tree and final footer polish */
.sitemap-tree {
  margin-top: 30px;
  overflow-x: auto;
}

.sitemap-tree ul {
  position: relative;
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 28px;
  list-style: none;
}

.sitemap-tree > ul {
  padding-left: 0;
}

.sitemap-tree ul ul {
  margin-top: 8px;
  margin-left: 10px;
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.sitemap-tree li {
  position: relative;
  min-width: 240px;
}

.sitemap-tree ul ul li::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 18px;
  width: 20px;
  height: 1px;
  background: var(--line);
}

.sitemap-tree a,
.sitemap-tree span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 13px;
  color: var(--text-dark);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 8px 18px rgba(8, 38, 58, .06);
  font-weight: 700;
}

.sitemap-tree > ul > li > a,
.sitemap-tree > ul > li > span {
  color: var(--white);
  border-color: rgba(11, 79, 113, .16);
  background: var(--primary);
}

.sitemap-tree a:hover {
  color: var(--near-black);
  border-color: var(--gold);
  background: var(--gold);
}

.footer__bottom .container {
  min-height: 52px;
  display: grid !important;
  grid-template-columns: minmax(0, auto) auto minmax(0, auto);
  align-items: center !important;
  justify-content: center;
  gap: 12px 18px;
  text-align: center;
}

.footer__bottom nav {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 0;
  white-space: nowrap;
}

.footer__bottom nav a {
  display: inline-flex;
  align-items: center;
}

.footer__bottom nav a + a::before {
  content: "|";
  margin: 0 10px;
  color: rgba(255, 255, 255, .28);
  font-weight: 300;
}

.footer__bottom p,
.footer__bottom a,
.footer-credit {
  margin: 0;
  white-space: nowrap;
  line-height: 1.4;
}

.footer-credit {
  color: rgba(255, 255, 255, .68);
}

.footer-credit a {
  color: var(--gold);
}

@media (max-width: 1100px) {
  .footer__bottom .container {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 560px) {
  .footer__bottom nav {
    flex-wrap: wrap;
    white-space: normal;
  }

  .footer__bottom p,
  .footer__bottom a,
  .footer-credit {
    white-space: normal;
  }

  .sitemap-tree li {
    min-width: 220px;
  }
}

/* Keep developer credit in one line */
.footer-credit {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 4px;
  white-space: nowrap !important;
}

.footer-credit a {
  display: inline-flex;
  white-space: nowrap !important;
}

@media (max-width: 560px) {
  .footer-credit {
    font-size: 12px !important;
    white-space: nowrap !important;
  }
}

/* Data-structure sitemap diagram */
.data-tree {
  --tree-line: rgba(11, 79, 113, .22);
  margin-top: 34px;
  max-width: 100%;
  overflow-x: clip;
  padding: 8px 0 18px;
}

.data-tree a,
.data-tree span {
  color: inherit;
}

.data-tree__node,
.data-tree__children a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  max-width: 100%;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(8, 38, 58, .08);
  color: var(--text-dark);
  font-weight: 700;
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
}

.data-tree__root {
  position: relative;
  display: flex;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 62px;
  color: var(--white);
  border-color: var(--primary);
  background: var(--primary);
}

.data-tree__root::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 1px;
  height: 34px;
  background: var(--tree-line);
}

.data-tree__level {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(150px, 100%), 1fr));
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  width: 100%;
  min-width: 0;
}

.data-tree__level::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: -28px;
  height: 1px;
  background: var(--tree-line);
}

.data-tree__branch {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 28px;
  min-width: 0;
  width: 100%;
}

.data-tree__branch::before {
  content: "";
  position: absolute;
  top: -28px;
  left: 50%;
  width: 1px;
  height: 28px;
  background: var(--tree-line);
}

.data-tree__branch--wide {
  grid-column: span 2;
}

.data-tree__children {
  position: relative;
  display: grid;
  gap: 10px;
  justify-items: stretch;
  width: 100%;
}

.data-tree__children::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 100%;
  width: 1px;
  height: 28px;
  background: var(--tree-line);
}

.data-tree__children--grid {
  grid-template-columns: repeat(auto-fit, minmax(min(150px, 100%), 1fr));
  align-items: start;
}

.data-tree__children a {
  min-height: 36px;
  width: 100%;
  padding: 8px 12px;
  color: var(--primary-dark);
  background: var(--bg-gray);
  font-size: 13px;
}

.data-tree__node:hover,
.data-tree__children a:hover {
  color: var(--near-black);
  border-color: var(--gold);
  background: var(--gold);
}

@media (max-width: 900px) {
  .data-tree {
    overflow-x: visible;
  }

  .data-tree__root {
    margin-bottom: 24px;
  }

  .data-tree__root::after,
  .data-tree__level::before,
  .data-tree__branch::before,
  .data-tree__children::before {
    display: none;
  }

  .data-tree__level {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .data-tree__branch--wide {
    grid-column: auto;
  }

  .data-tree__children--grid {
    grid-template-columns: 1fr;
  }
}

/* Capability Modal Styles */
.capability-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}

.capability-modal[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
}

.capability-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 20, 31, .84);
  backdrop-filter: blur(10px);
}

.capability-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 640px);
  max-height: 90vh;
  overflow-y: auto;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid rgba(242, 169, 0, .4);
  border-radius: var(--radius-xl, 16px);
  background: var(--near-black, #081a26);
  color: var(--white, #ffffff);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .65);
  transform: translateY(20px) scale(.96);
  transition: transform .3s ease;
}

.capability-modal[aria-hidden="false"] .capability-modal__dialog {
  transform: translateY(0) scale(1);
}

.capability-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  color: var(--white, #fff);
  font-size: 22px;
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s;
}

.capability-modal__close:hover {
  background: var(--gold, #f2a900);
  border-color: var(--gold, #f2a900);
  color: #000;
}

.capability-modal__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  padding: 4px 12px;
  border-radius: 50px;
  background: rgba(242, 169, 0, .15);
  color: var(--gold, #f2a900);
  font: 700 12px var(--ui, sans-serif);
  letter-spacing: .5px;
  text-transform: uppercase;
}

.capability-modal__header h3 {
  margin: 0 0 8px;
  color: var(--white, #fff);
  font-size: clamp(22px, 3vw, 28px);
}

.capability-modal__header p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, .74);
  font-size: 14px;
  line-height: 1.55;
}

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

.capability-modal__grid label {
  display: grid;
  gap: 6px;
  color: rgba(255, 255, 255, .88);
  font: 700 12px var(--ui, sans-serif);
  text-transform: uppercase;
  letter-spacing: .5px;
}

.capability-modal__grid input,
.capability-modal__grid select,
.capability-modal__grid textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: var(--radius-sm, 6px);
  background: rgba(255, 255, 255, .05);
  color: #fff;
  font-size: 14px;
}

.capability-modal__grid select option {
  background: #0d2333;
  color: #fff;
}

.capability-modal__grid input:focus,
.capability-modal__grid select:focus,
.capability-modal__grid textarea:focus {
  outline: 2px solid var(--gold, #f2a900);
  border-color: var(--gold, #f2a900);
}

.capability-modal__grid .full {
  grid-column: 1 / -1;
}

@media (max-width: 560px) {
  .capability-modal__grid {
    grid-template-columns: 1fr;
  }
}

/* Authority Highlight Section - Mockup Layout Matching */
.authority-highlight {
  background-color: #f7fafc;
  padding: 60px 0;
}

.authority-highlight__grid {
  display: flex;
  align-items: center;
  gap: 48px;
}

.authority-highlight__mark {
  flex-shrink: 0;
  width: 140px;
  height: 140px;
  border-radius: 22px;
  background: linear-gradient(135deg, #f2a900 0%, #e09b00 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #081a26;
  box-shadow: 0 14px 32px rgba(242, 169, 0, 0.28);
}

.authority-highlight__mark i {
  font-size: 32px;
  color: #081a26;
}

.authority-highlight__mark span {
  font: 800 24px var(--font-heading, "Outfit", sans-serif);
  letter-spacing: 0.5px;
  color: #081a26;
  line-height: 1;
}

.authority-highlight__content {
  flex: 1;
}

.authority-highlight__content .section-label {
  color: #2b5b84;
  font-weight: 700;
  font-size: 13px;
  text-transform: capitalize;
  letter-spacing: 0.3px;
  margin-bottom: 8px;
}

.authority-highlight__content h2 {
  font-size: clamp(24px, 3.2vw, 36px);
  font-weight: 800;
  color: #0d1b2a;
  line-height: 1.25;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.authority-highlight__desc {
  font-size: 15px;
  line-height: 1.6;
  color: #4a5568;
  margin-bottom: 24px;
  max-width: 820px;
}

.authority-highlight__points {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
}

.capability-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 50px;
  border: 1px solid #cbd5e1;
  background: #ffffff;
  color: #1e293b;
  font-size: 13.5px;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.capability-pill:hover {
  border-color: #94a3b8;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.capability-pill i {
  color: #f2a900;
  font-size: 13px;
}

.capability-pill-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: 50px;
  border: none;
  background: #f2a900;
  color: #000000;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(242, 169, 0, 0.35);
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.capability-pill-btn:hover {
  background: #e5a000;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(242, 169, 0, 0.45);
}

@media (max-width: 860px) {
  .authority-highlight__grid {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}

/* Firearm Manufacturing Section (Minimal & Attractive) */
.firearms-section {
  position: relative;
  background: linear-gradient(135deg, #071926 0%, #0c2333 100%);
  color: #ffffff;
  padding: 80px 0;
  overflow: hidden;
}

.firearms-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at 70% 50%, rgba(242, 169, 0, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.firearms-section__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.firearms-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 50px;
  background: rgba(242, 169, 0, 0.15);
  border: 1px solid rgba(242, 169, 0, 0.3);
  color: #f2a900;
  font: 700 12px var(--ui, sans-serif);
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.firearms-section__content h2 {
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.4px;
}

.firearms-section__content p {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 28px;
  max-width: 620px;
}

.firearms-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 14px;
  margin-bottom: 32px;
}

.firearms-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(4px);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.firearms-feature:hover {
  transform: translateY(-2px);
  border-color: rgba(242, 169, 0, 0.4);
}

.firearms-feature i {
  color: #f2a900;
  font-size: 18px;
}

.firearms-feature span {
  font-size: 13.5px;
  font-weight: 600;
  color: #ffffff;
}

.firearms-action .btn--firearms {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 50px;
  box-shadow: 0 6px 20px rgba(242, 169, 0, 0.35);
  transition: all 0.25s ease;
}

.firearms-action .btn--firearms:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(242, 169, 0, 0.45);
}

.firearms-action .btn--firearms i {
  transition: transform 0.25s ease;
}

.firearms-action .btn--firearms:hover i {
  transform: translateX(4px);
}

.firearms-section__visual {
  position: relative;
}

.firearms-image-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(242, 169, 0, 0.3);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.5);
  aspect-ratio: 4 / 3;
}

.firearms-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.firearms-image-card:hover img {
  transform: scale(1.04);
}

.firearms-visual-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 50px;
  background: rgba(8, 26, 38, 0.88);
  border: 1px solid rgba(242, 169, 0, 0.4);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.firearms-visual-badge i {
  color: #f2a900;
  font-size: 15px;
}

@media (max-width: 900px) {
  .firearms-section__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* Manufacturing Portal Divisions Grid */
.manufacturing-divisions {
  padding: 80px 0;
  background: var(--section-gray, #f7fafc);
}

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

.division-card {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.division-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.12);
}

.division-card--dark {
  background: linear-gradient(135deg, #071926 0%, #0c2333 100%);
  color: #ffffff;
  border-color: rgba(242, 169, 0, 0.3);
}

.division-card__image {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
}

.division-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.division-card:hover .division-card__image img {
  transform: scale(1.05);
}

.division-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 50px;
  background: rgba(8, 26, 38, 0.82);
  color: #ffffff;
  font: 700 12px var(--ui, sans-serif);
  backdrop-filter: blur(6px);
}

.division-badge--gold {
  background: rgba(242, 169, 0, 0.9);
  color: #000000;
}

.division-card__body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.division-card__body h2 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 12px;
  color: inherit;
}

.division-card__body p {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.85;
  margin-bottom: 24px;
}

.division-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.division-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
}

.division-features li i {
  color: #f2a900;
}

.division-card__body .btn {
  margin-top: auto;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
}

@media (max-width: 860px) {
  .divisions-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* About Page Quote Box & Integrated Capability Cards */
.about-quote-box {
  background: linear-gradient(135deg, #071926 0%, #0c2333 100%);
  border: 1px solid rgba(242, 169, 0, 0.35);
  border-radius: 20px;
  padding: clamp(32px, 4vw, 48px);
  color: #ffffff;
  text-align: center;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.15);
}

.about-quote-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 50px;
  background: rgba(242, 169, 0, 0.15);
  color: #f2a900;
  font: 700 12px var(--ui, sans-serif);
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.about-quote-box h2 {
  font-size: clamp(22px, 3.2vw, 34px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.about-quote-box p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  line-height: 1.6;
}

.capabilities-tags-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.capability-tag-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.capability-tag-card:hover {
  transform: translateY(-3px);
  border-color: #f2a900;
  box-shadow: 0 8px 24px rgba(242, 169, 0, 0.12);
}

.capability-tag-card i {
  color: #f2a900;
  font-size: 20px;
  flex-shrink: 0;
}

.capability-tag-card span {
  font-size: 14px;
  font-weight: 700;
  color: #1e293b;
}

/* Made In India Side-by-Side Brand Badge */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
}

.brand-divider {
  width: 1px;
  height: 26px;
  background: rgba(0, 0, 0, 0.18);
  margin: 0 4px;
  flex-shrink: 0;
}

.make-in-india-inline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.make-in-india-inline img {
  height: 26px;
  width: auto;
  object-fit: contain;
}

.make-in-india-inline .mii-text {
  font-family: var(--ui, sans-serif);
  font-size: 10px;
  font-weight: 700;
  color: var(--gold, #f2a900);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
}

@media (max-width: 1080px) {
  .make-in-india-inline .mii-text {
    display: none;
  }
}

@media (max-width: 640px) {
  .brand {
    gap: 6px;
  }
  .brand-divider {
    height: 20px;
    margin: 0 2px;
  }
  .make-in-india-inline img {
    height: 22px;
  }
}

@media (max-width: 400px) {
  .brand {
    gap: 4px;
  }
  .brand-divider {
    height: 18px;
    margin: 0 1px;
  }
  .make-in-india-inline img {
    height: 19px;
  }
}

/* About Page Infrastructure Visual Showcase */
.about-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 36px;
}

.about-gallery-card {
  position: relative;
  height: 280px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.about-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-gallery-card:hover img {
  transform: scale(1.06);
}

.about-gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 40px 24px 20px;
  background: linear-gradient(to top, rgba(7, 25, 38, 0.95) 0%, rgba(7, 25, 38, 0.65) 60%, rgba(7, 25, 38, 0) 100%);
  color: #ffffff;
  box-sizing: border-box;
  z-index: 2;
}

.about-gallery-caption strong {
  display: block;
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
  line-height: 1.3;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.about-gallery-caption span {
  font-size: 13px;
  color: #f2a900;
  font-weight: 600;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

@media (max-width: 768px) {
  .about-gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* =============================================================
   DEFMIL TECHNOLOGY â€” COMPREHENSIVE RESPONSIVE DESIGN SYSTEM
   Breakpoints:
     xs : <480px   (Small phones)
     sm : 480â€“767px (Large phones, small landscape)
     md : 768â€“1023px (Tablets, large landscape)
     lg : 1024â€“1279px (Small laptops)
     xl : 1280â€“1535px (Desktops)
     2xl: â‰¥1536px  (Large screens / 4K)
   ============================================================= */

/* â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”
   EXTRA SMALL (< 480px)
â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€” */
@media (max-width: 479px) {
  .container {
    width: min(100% - 24px, 1200px);
  }

  /* Typography */
  h1 { font-size: clamp(32px, 9vw, 42px); }
  h2 { font-size: clamp(24px, 7vw, 32px); }
  h3 { font-size: 18px; }
  h4 { font-size: 15px; }

  /* Topbar */
  .topbar { display: none; }

  /* Header */
  .site-header,
  .site-header.is-scrolled { height: 60px; }
  .nav { min-height: 60px; }
  .brand-mark,
  .site-header.is-scrolled .brand-mark { width: 34px; height: 34px; }
  .brand-text strong { font-size: 16px; }
  .brand-text small { font-size: 7px; letter-spacing: 1.5px; }

  /* Sections */
  .section { padding: 52px 0; }
  .section-heading { margin-bottom: 28px; }
  .section-heading p { font-size: 14px; }

  /* Hero */
  .hero { padding: 60px 0; min-height: auto; }
  .hero__grid { grid-template-columns: 1fr; gap: 32px; }
  .hero p { font-size: 14px; }
  .page-hero { min-height: 380px; padding: 100px 0 60px; }
  .page-hero h1 { font-size: clamp(28px, 10vw, 40px); }

  /* Buttons */
  .btn { padding: 11px 18px; font-size: 13px; min-height: 44px; }
  .actions { flex-direction: column; gap: 10px; }
  .actions .btn { width: 100%; text-align: center; }

  /* Stats strip */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat { min-height: 96px; padding: 16px; }
  .stat strong { font-size: 32px; }
  .stat span { font-size: 9px; letter-spacing: 1px; }

  /* Cards */
  .card-grid--3,
  .card-grid--4,
  .team-grid,
  .testimonial-grid,
  .project-grid,
  .industry-grid,
  .contact-grid,
  .client-grid,
  .benefit-grid,
  .facility-grid,
  .mission-grid { grid-template-columns: 1fr; gap: 16px; }

  .feature-grid { grid-template-columns: 1fr; }
  .split,
  .why-split { grid-template-columns: 1fr; gap: 28px; }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr; gap: 24px; }
  .footer { padding: 48px 0 0; }
  .footer__bottom .container { flex-direction: column; align-items: center; text-align: center; gap: 10px; }

  /* Why section */
  .why-panel { min-height: auto; padding: 48px 24px; }

  /* Manufacturing split */
  .mfg-split { grid-template-columns: 1fr !important; }
  .mfg-side { min-height: 260px !important; }

  /* Product gallery */
  .product-gallery { grid-template-columns: 1fr; }
  .product-card { min-height: 240px; }
  .product-card img { min-height: 240px; }

  /* About gallery */
  .about-gallery-grid { grid-template-columns: 1fr; }
  .about-gallery-card { height: 220px; }

  /* Machine detail */
  .machine-facts { grid-template-columns: 1fr; }
  .machine-detail__grid { grid-template-columns: 1fr; gap: 24px; }

  /* Contact */
  .contact-page-grid { grid-template-columns: 1fr; gap: 24px; }

  /* Lightbox */
  .lightbox-close { top: 10px; right: 10px; font-size: 28px; }
}

/* â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”
   SMALL PHONES (480px â€“ 767px)
â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€” */
@media (min-width: 480px) and (max-width: 767px) {
  .container { width: min(100% - 32px, 1200px); }

  h1 { font-size: clamp(34px, 8vw, 46px); }
  h2 { font-size: clamp(26px, 6vw, 36px); }

  .section { padding: 60px 0; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat strong { font-size: 36px; }

  .card-grid--3,
  .team-grid,
  .testimonial-grid,
  .project-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 18px; }

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

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

  .footer__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer__bottom .container { flex-direction: column; text-align: center; gap: 10px; }

  .mfg-split { grid-template-columns: 1fr !important; }
  .mfg-side { min-height: 280px !important; }

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

  .about-gallery-grid { grid-template-columns: 1fr; }
  .about-gallery-card { height: 240px; }

  .hero { padding: 68px 0; }
  .hero__grid { grid-template-columns: 1fr; gap: 36px; }
}

/* â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”
   LANDSCAPE PHONES (max-height: 500px + landscape)
â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€” */
@media (max-height: 500px) and (orientation: landscape) {
  .site-header,
  .site-header.is-scrolled { height: 54px; }
  .nav { min-height: 54px; }

  .hero-slide { min-height: 100svh; padding-top: 60px; }
  .hero-slide__content { padding: 70px 0 80px; }
  .hero-slide h1,
  .hero-slide h2 { font-size: clamp(28px, 6vw, 42px); }

  .page-hero { min-height: 300px; padding: 90px 0 48px; }
  .page-hero h1 { font-size: clamp(26px, 6vw, 38px); }

  .menu { max-height: calc(100svh - 54px); overflow-y: auto; }

  .hero__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .hero { min-height: auto; padding: 48px 0; }

  .section { padding: 48px 0; }

  .mfg-split { grid-template-columns: 1fr 1fr !important; }
  .mfg-side { min-height: 220px !important; }
}

/* â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”
   TABLETS (768px â€“ 1023px)
â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€” */
@media (min-width: 768px) and (max-width: 1023px) {
  .container { width: min(100% - 40px, 1200px); }

  h1 { font-size: clamp(38px, 6vw, 52px); }
  h2 { font-size: clamp(28px, 4.5vw, 40px); }

  .section { padding: 72px 0; }

  /* Header */
  .site-header { position: sticky; height: 72px; background: var(--white); }
  .nav { min-height: 72px; gap: 18px; }
  .brand-mark { width: 44px; height: 44px; }
  .brand-text strong { font-size: 20px; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat strong { font-size: 38px; }

  /* Cards grids */
  .card-grid--3,
  .team-grid,
  .testimonial-grid,
  .project-grid,
  .contact-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

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

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

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

  /* Hero */
  .hero { min-height: auto; padding: 80px 0; }
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }

  /* Split layouts */
  .split,
  .why-split { grid-template-columns: 1fr; gap: 40px; }
  .split--reverse > :first-child { order: 0; }
  .why-panel { min-height: auto; padding: 60px 48px; }

  /* Footer */
  .footer__grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .footer__bottom .container { flex-direction: column; align-items: center; gap: 10px; text-align: center; }

  /* Capacity page */
  .capacity-snapshot__grid,
  .machine-detail__grid { grid-template-columns: 1fr; gap: 32px; }
  .machine-facts { grid-template-columns: repeat(3, 1fr); }

  /* Manufacturing split */
  .mfg-split { grid-template-columns: 1fr !important; }
  .mfg-side { min-height: 320px !important; }

  /* Product gallery */
  .product-gallery { grid-template-columns: repeat(2, 1fr); }

  /* About gallery */
  .about-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .about-gallery-card { height: 260px; }
  .about-gallery-caption strong { font-size: 15px; }

  /* Contact */
  .contact-page-grid { grid-template-columns: 1fr; }

  /* Page hero */
  .page-hero { min-height: 440px; padding: 140px 0 80px; }
}

/* â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”
   SMALL LAPTOPS (1024px â€“ 1279px)
â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€” */
@media (min-width: 1024px) and (max-width: 1279px) {
  .container { width: min(100% - 48px, 1200px); }

  h1 { font-size: clamp(40px, 5vw, 56px); }

  .section { padding: 80px 0; }

  /* Cards grids */
  .card-grid--3,
  .team-grid,
  .testimonial-grid,
  .project-grid { grid-template-columns: repeat(3, 1fr); }

  .card-grid--4,
  .client-grid { grid-template-columns: repeat(3, 1fr); }

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

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

  /* Footer */
  .footer__grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }

  /* Hero */
  .hero__grid { gap: 48px; }

  /* Manufacturing split */
  .mfg-split { grid-template-columns: 1fr 1fr !important; }
  .mfg-side { min-height: 380px !important; }

  /* About gallery */
  .about-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .about-gallery-card { height: 270px; }

  /* Machine detail */
  .machine-detail__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .machine-facts { grid-template-columns: repeat(3, 1fr); }

  /* Capacity snapshot */
  .capacity-snapshot__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

/* â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”
   STANDARD DESKTOPS (1280px â€“ 1535px)
â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€” */
@media (min-width: 1280px) and (max-width: 1535px) {
  .container { width: min(1240px, calc(100% - 56px)); }

  .section { padding: 90px 0; }

  .card-grid--4,
  .client-grid,
  .benefit-grid { grid-template-columns: repeat(4, 1fr); }

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

  /* Footer */
  .footer__grid { grid-template-columns: 1.6fr 1fr 1.2fr 1.4fr; gap: 40px; }

  /* About gallery */
  .about-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .about-gallery-card { height: 290px; }

  /* Machine detail */
  .machine-detail__grid { grid-template-columns: 1fr 1fr; gap: 60px; }
}

/* â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”
   LARGE SCREENS / 4K (â‰¥ 1536px)
â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€” */
@media (min-width: 1536px) {
  .container { width: min(1400px, calc(100% - 80px)); }

  body { font-size: 16px; }

  h1 { font-size: clamp(56px, 5.5vw, 80px); }
  h2 { font-size: clamp(40px, 3.5vw, 54px); }

  .section { padding: 110px 0; }

  .site-header { height: 88px; }
  .nav { min-height: 88px; gap: 36px; }
  .brand-mark { width: 68px; height: 68px; }
  .brand-text strong { font-size: 30px; }
  .brand-text small { font-size: 10px; }

  .menu { gap: 24px; }
  .menu-link { font-size: 15px; min-height: 88px; }

  .hero { padding: 110px 0; min-height: 720px; }
  .hero__grid { gap: 90px; }

  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .stat strong { font-size: 52px; }

  .card-grid--3,
  .team-grid,
  .project-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; }

  .card-grid--4,
  .client-grid,
  .benefit-grid { grid-template-columns: repeat(4, 1fr); gap: 28px; }

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

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

  .footer__grid { grid-template-columns: 1.8fr 1fr 1.2fr 1.5fr; gap: 56px; }

  .about-gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .about-gallery-card { height: 340px; }
  .about-gallery-caption strong { font-size: 20px; }
  .about-gallery-caption span { font-size: 15px; }

  .machine-detail__grid { grid-template-columns: 1fr 1fr; gap: 80px; }
  .machine-facts { grid-template-columns: repeat(3, 1fr); gap: 20px; }

  .product-gallery { grid-template-columns: repeat(4, 1fr); gap: 28px; }
  .product-card { min-height: 380px; }

  .mfg-split { grid-template-columns: 1fr 1fr !important; }
  .mfg-side { min-height: 500px !important; }
}

/* â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”
   UNIVERSAL OVERFLOW GUARD
â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€” */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

img, video, canvas, iframe {
  max-width: 100%;
}

/* â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”
   RESPONSIVE TOPBAR
â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€” */
@media (max-width: 600px) {
  .topbar { display: none; }
}

/* â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”
   RESPONSIVE NAV CTA BUTTON
â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€” */
@media (max-width: 1100px) {
  .nav-cta { display: none !important; }
}

/* â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”
   RESPONSIVE TABLE WRAPPER
â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€” */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”
   RESPONSIVE CONTACT FORM
â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€” */
@media (max-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr !important;
  }
  .form-grid .full {
    grid-column: 1 !important;
  }
}

/* â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”
   RESPONSIVE MANUFACTURING PAGE
â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€” */
@media (max-width: 767px) {
  .mfg-split {
    flex-direction: column !important;
  }
  .mfg-side {
    width: 100% !important;
    min-height: 260px !important;
  }
  .mfg-content-inner {
    padding: 32px 24px !important;
  }
}

/* â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”
   RESPONSIVE PRODUCT GALLERY (canonical rules â€” 4 col desktop)
â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€” */
@media (max-width: 479px) {
  .product-gallery { grid-template-columns: 1fr; gap: 14px; }
  .product-card, .product-card img { min-height: 240px; }
}

@media (min-width: 480px) and (max-width: 767px) {
  .product-gallery { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .product-card, .product-card img { min-height: 260px; }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .product-gallery { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .product-card, .product-card img { min-height: 280px; }
}

@media (min-width: 1024px) {
  .product-gallery { grid-template-columns: repeat(4, 1fr); gap: 22px; }
}

/* â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”
   RESPONSIVE HERO CAROUSEL
â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€” */
@media (max-width: 479px) {
  .hero-carousel__controls {
    left: 12px;
    right: 12px;
    bottom: 16px;
  }
  .hero-carousel-btn {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
  .hero-scroll,
  .hero-counter { display: none; }
}

@media (min-width: 480px) and (max-width: 767px) {
  .hero-carousel__controls {
    left: 16px;
    right: 16px;
    bottom: 20px;
  }
}

/* â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”
   RESPONSIVE PAGE HERO
â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€” */
@media (max-width: 479px) {
  .page-hero {
    min-height: 320px;
    padding: 90px 0 52px;
  }
  .page-hero h1 { font-size: clamp(26px, 9vw, 38px); }
  .page-hero .breadcrumb { font-size: 13px; }
}

/* â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”
   RESPONSIVE MACHINE DETAIL
â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€” */
@media (max-width: 767px) {
  .machine-gallery {
    position: relative;
    min-height: 260px;
    border-radius: 14px;
    overflow: hidden;
  }
  .machine-detail__content {
    padding: 0;
  }
  .machine-facts {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”
   RESPONSIVE FOOTER
â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€” */
@media (max-width: 479px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-brand { margin-bottom: 8px; }
  .footer h3 { font-size: 14px; margin-bottom: 10px; }
  .footer a, .footer p { font-size: 13px; }
  .footer__bottom { padding: 16px 0; }
  .footer__bottom p, .footer__bottom nav { font-size: 11px; }
}

@media (min-width: 480px) and (max-width: 767px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (min-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1.5fr 1fr 1.2fr 1.3fr;
    gap: 40px;
  }
}

/* â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”
   RESPONSIVE ABOUT GALLERY CAPTION
â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€” */
@media (max-width: 479px) {
  .about-gallery-caption { padding: 28px 16px 14px; }
  .about-gallery-caption strong { font-size: 14px; }
  .about-gallery-caption span { font-size: 11px; }
}

/* â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”
   RESPONSIVE CONTACT PAGE
â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€” */
@media (max-width: 1023px) {
  .contact-page-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .map-card { border-radius: 18px; }
}

/* â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”
   RESPONSIVE LEGAL PAGES
â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€” */
@media (max-width: 767px) {
  .legal-card {
    padding: 28px 20px !important;
  }
  .legal-card h2 { font-size: clamp(20px, 5vw, 28px); }
  .legal-card h3 { font-size: 16px; }
  .legal-card p,
  .legal-card li { font-size: 14px; }
}

/* â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”
   RESPONSIVE DATA TREE (Sitemap)
â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€” */
@media (max-width: 767px) {
  .data-tree {
    flex-direction: column !important;
    align-items: flex-start;
    gap: 12px;
  }
  .data-tree__branch {
    width: 100%;
  }
  .data-tree__children--grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”
   RESPONSIVE CAPACITY OVERVIEW TABLE
â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€” */
@media (max-width: 639px) {
  .capacity-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .capacity-table {
    min-width: 560px;
  }
}
/* Desktop hero top spacing fix */
.topbar {
  display: none !important;
  height: 0 !important;
  min-height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
}

.site-header {
  top: 0 !important;
  margin-top: 0 !important;
}

main,
.hero-carousel,
.capacity-hero-carousel {
  margin-top: 0 !important;
}

@media (min-width: 901px) {
  .site-header {
    position: absolute;
    inset: 0 0 auto 0 !important;
  }

  .hero-carousel,
  .capacity-hero-carousel {
    height: 100vh;
    min-height: 680px;
  }
}
/* Mobile transparent hero navigation */
@media (max-width: 768px) {
  .site-header,
  .site-header.is-scrolled {
    position: fixed !important;
    inset: 0 0 auto 0 !important;
    height: 72px !important;
    color: var(--white) !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    animation: none !important;
  }

  .site-header.is-scrolled,
  .site-header:has(.menu.is-open) {
    background: rgba(5, 12, 20, .18) !important;
    backdrop-filter: blur(10px) !important;
  }

  .nav,
  .site-header.is-scrolled .nav {
    min-height: 72px !important;
    padding-block: 8px !important;
  }

  .brand-text strong,
  .site-header.is-scrolled .brand-text strong {
    color: var(--white) !important;
  }

  .brand-text small,
  .site-header.is-scrolled .brand-text small {
    color: rgba(255, 255, 255, .78) !important;
  }

  .brand-divider {
    background: rgba(255, 255, 255, .34) !important;
  }

  .nav-toggle,
  .site-header.is-scrolled .nav-toggle {
    width: 44px !important;
    height: 44px !important;
    color: var(--white) !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .nav-toggle span,
  .site-header .nav-toggle span,
  .site-header.is-scrolled .nav-toggle span {
    background: var(--white) !important;
  }

  .menu {
    position: absolute !important;
    top: 72px !important;
    left: 12px !important;
    right: 12px !important;
    max-height: calc(100svh - 84px) !important;
    padding: 18px 22px 24px !important;
    border: 1px solid rgba(255, 255, 255, .16) !important;
    border-radius: 18px !important;
    background: rgba(5, 12, 20, .76) !important;
    box-shadow: 0 24px 56px rgba(0, 0, 0, .28) !important;
    backdrop-filter: blur(18px) !important;
  }

  .menu.is-open {
    display: grid !important;
  }

  .menu-link,
  .site-header.is-scrolled .menu-link {
    color: var(--white) !important;
    border-bottom: 1px solid rgba(255, 255, 255, .08) !important;
  }

  .menu-link i {
    color: rgba(255, 255, 255, .9) !important;
  }

  .dropdown {
    background: transparent !important;
    border: 0 !important;
  }

  .dropdown a {
    color: rgba(255, 255, 255, .74) !important;
  }

  .dropdown a:hover {
    color: var(--gold) !important;
    background: transparent !important;
  }

  .hero-slide {
    padding-top: 72px !important;
  }
}

@media (max-width: 479px) {
  .site-header,
  .site-header.is-scrolled {
    height: 64px !important;
  }

  .nav,
  .site-header.is-scrolled .nav {
    min-height: 64px !important;
  }

  .menu {
    top: 64px !important;
    max-height: calc(100svh - 76px) !important;
  }

  .hero-slide {
    padding-top: 64px !important;
  }
}
/* Footer bottom alignment polish */
.footer__bottom .container {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px 18px !important;
  flex-wrap: wrap !important;
  text-align: center !important;
}

.footer__bottom p,
.footer__bottom nav,
.footer-credit {
  margin: 0 !important;
}

.footer__bottom nav {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0 !important;
  flex-wrap: wrap !important;
  line-height: 1.4 !important;
}

.footer__bottom nav a {
  display: inline-flex !important;
  align-items: center !important;
  white-space: nowrap !important;
}

.footer__bottom nav a + a::before {
  content: "|" !important;
  margin: 0 9px !important;
  color: rgba(255, 255, 255, .45) !important;
}

.footer-credit {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 4px !important;
  white-space: nowrap !important;
}

@media (max-width: 767px) {
  .footer__bottom {
    padding: 14px 0 16px !important;
  }

  .footer__bottom .container {
    width: min(100% - 28px, 1200px) !important;
    display: grid !important;
    justify-items: center !important;
    gap: 7px !important;
  }

  .footer__bottom p,
  .footer__bottom a,
  .footer-credit {
    font-size: 11px !important;
    line-height: 1.35 !important;
  }

  .footer__bottom nav {
    gap: 0 !important;
    max-width: 100% !important;
  }

  .footer__bottom nav a + a::before {
    margin: 0 7px !important;
  }

  .footer-credit {
    max-width: 100% !important;
    white-space: normal !important;
    flex-wrap: wrap !important;
  }
}
/* Global top flush fix */
html,
body {
  margin: 0 !important;
  padding: 0 !important;
  background: #06141f !important;
}

body > .topbar,
.topbar {
  display: none !important;
  height: 0 !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}

body > .site-header,
body > .page-loader + .site-header,
.site-header,
.site-header.is-scrolled {
  top: 0 !important;
  margin-top: 0 !important;
}

body > main,
main {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

body > main > .hero-carousel:first-child,
body > main > .capacity-hero-carousel:first-child,
.hero-carousel:first-child,
.capacity-hero-carousel:first-child {
  margin-top: -30px !important;
  top: 0 !important;
}

@media (min-width: 769px) {
  body > .site-header,
  body > .page-loader + .site-header,
  .site-header:not(.is-scrolled) {
    position: absolute !important;
    inset: 0 0 auto 0 !important;
  }
}

@media (max-width: 768px) {
  body > .site-header,
  body > .page-loader + .site-header,
  .site-header,
  .site-header.is-scrolled {
    position: fixed !important;
    inset: 0 0 auto 0 !important;
  }
}
/* Smart scroll header */
.site-header {
  will-change: transform;
  transition: transform .32s ease, height .35s ease, background .35s ease, box-shadow .35s ease, backdrop-filter .35s ease !important;
}

.site-header.is-scrolled {
  animation: none !important;
}

.site-header.is-hidden {
  transform: translateY(-110%) !important;
  pointer-events: none;
}

.site-header:has(.menu.is-open) {
  transform: translateY(0) !important;
  pointer-events: auto;
}

@media (max-width: 768px) {
  .site-header.is-hidden {
    transform: translateY(-112%) !important;
  }
}
/* Our Capacity palette refinement */
.capacity-page {
  color: #0a1a29;
  background: #eef4f7 !important;
}

.capacity-page main {
  overflow: hidden;
  background: linear-gradient(180deg, #eef4f7 0%, #f8fafb 48%, #eef4f7 100%);
}

.capacity-page .page-hero.grid-bg {
  border-bottom: 4px solid #f2a900;
  background-color: #06141f;
}

.capacity-page .page-hero.grid-bg::before {
  background:
    linear-gradient(90deg, rgba(4, 13, 23, .92) 0%, rgba(7, 48, 76, .72) 48%, rgba(4, 13, 23, .38) 100%),
    linear-gradient(180deg, rgba(4, 13, 23, .1), rgba(4, 13, 23, .48));
}

.capacity-page .capacity-index {
  position: relative;
  padding-top: clamp(56px, 6vw, 86px);
  color: #ffffff;
  background:
    radial-gradient(circle at 12% 0%, rgba(242, 169, 0, .16), transparent 34%),
    linear-gradient(135deg, #06141f 0%, #07304c 54%, #06141f 100%);
}

.capacity-page .capacity-index::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(242, 169, 0, .65), transparent);
}

.capacity-page .capacity-index .section-heading h2,
.capacity-page .capacity-index .section-heading p {
  color: #ffffff;
}

.capacity-page .capacity-index .section-label,
.capacity-page .machine-detail .section-label {
  color: #f2a900;
}

.capacity-page .capacity-index__grid a {
  min-height: 62px;
  color: #071a2b;
  border-color: rgba(255, 255, 255, .22);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(238, 244, 247, .96));
  box-shadow: 0 14px 34px rgba(0, 0, 0, .16);
}

.capacity-page .capacity-index__grid a:hover {
  color: #ffffff;
  border-color: rgba(242, 169, 0, .72);
  background: #0b4f71;
}

.capacity-page .machine-detail,
.capacity-page .machine-detail.section--gray {
  position: relative;
  padding-block: clamp(58px, 7vw, 98px);
  background: linear-gradient(180deg, #f7fafb 0%, #edf4f7 100%) !important;
}

.capacity-page .machine-detail:nth-of-type(2n) {
  background: #ffffff !important;
}

.capacity-page .machine-detail::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(11, 79, 113, .055), transparent 34%, rgba(242, 169, 0, .045)),
    repeating-linear-gradient(135deg, rgba(11, 79, 113, .035) 0 1px, transparent 1px 18px);
}

.capacity-page .machine-detail__grid {
  position: relative;
  z-index: 1;
}

.capacity-page .machine-gallery {
  border: 1px solid rgba(11, 79, 113, .18);
  background: #06141f;
  box-shadow: 0 22px 54px rgba(6, 20, 31, .16);
}

.capacity-page .machine-gallery::after {
  background: linear-gradient(180deg, transparent, rgba(6, 20, 31, .34));
}

.capacity-page .machine-detail__content {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(11, 79, 113, .12);
  border-radius: 22px;
  background: rgba(255, 255, 255, .84);
  box-shadow: 0 18px 46px rgba(6, 20, 31, .08);
  backdrop-filter: blur(8px);
}

.capacity-page .machine-detail h2 {
  color: #071a2b;
}

.capacity-page .machine-detail__content > p:not(.section-label) {
  color: #425564;
}

.capacity-page .machine-facts span {
  color: #425564;
  border-color: rgba(11, 79, 113, .12);
  background: linear-gradient(180deg, #ffffff 0%, #f4f8fa 100%);
  box-shadow: 0 10px 26px rgba(6, 20, 31, .055);
}

.capacity-page .machine-facts strong {
  color: #0b4f71;
}

.capacity-page .machine-cta {
  color: #06141f;
  background: #f2a900;
  box-shadow: 0 12px 28px rgba(242, 169, 0, .25);
}

.capacity-page .machine-cta:hover {
  color: #ffffff;
  background: #0b4f71;
}

.capacity-page .reveal {
  opacity: 1;
  transform: none;
}

@media (max-width: 767px) {
  .capacity-page .capacity-index {
    padding-top: 44px;
  }

  .capacity-page .capacity-index__grid a {
    min-height: 54px;
    border-radius: 14px;
  }

  .capacity-page .machine-detail__content {
    padding: 20px;
    border-radius: 18px;
  }
}
/* Responsive header repair */
@media (max-width: 1100px) {
  body > .site-header,
  body > .page-loader + .site-header,
  .site-header,
  .site-header.is-scrolled {
    position: fixed !important;
    inset: 0 0 auto 0 !important;
    height: 72px !important;
    color: #ffffff !important;
    background: rgba(5, 12, 20, .18) !important;
    border: 0 !important;
    box-shadow: none !important;
    backdrop-filter: blur(10px) !important;
    transform: translateY(0);
  }

  .site-header.is-scrolled {
    background: rgba(5, 12, 20, .72) !important;
    box-shadow: 0 12px 28px rgba(5, 12, 20, .18) !important;
  }

  .nav,
  .site-header.is-scrolled .nav {
    width: min(100% - 36px, 1200px) !important;
    min-height: 72px !important;
    padding-block: 8px !important;
    gap: 12px !important;
  }

  .brand {
    min-width: 0 !important;
    max-width: calc(100% - 58px) !important;
    margin-right: 0 !important;
    gap: 10px !important;
  }

  .brand-mark,
  .site-header.is-scrolled .brand-mark {
    width: 40px !important;
    height: 40px !important;
    flex: 0 0 40px !important;
  }

  .brand-text {
    display: grid !important;
    min-width: 0 !important;
  }

  .brand-text strong,
  .site-header.is-scrolled .brand-text strong {
    color: #ffffff !important;
    font-size: clamp(18px, 2.6vw, 22px) !important;
    line-height: 1 !important;
    white-space: nowrap !important;
  }

  .brand-text small,
  .site-header.is-scrolled .brand-text small {
    color: rgba(255, 255, 255, .78) !important;
    font-size: 8px !important;
    letter-spacing: 2px !important;
    white-space: nowrap !important;
  }

  .brand-divider {
    display: block !important;
    width: 1px !important;
    height: 24px !important;
    margin-inline: 2px !important;
    background: rgba(255, 255, 255, .22) !important;
  }

  .make-in-india-inline {
    display: inline-flex !important;
    flex: 0 0 auto !important;
  }

  .make-in-india-inline img {
    height: 21px !important;
  }

  .make-in-india-inline .mii-text {
    display: none !important;
  }

  .nav-toggle,
  .site-header.is-scrolled .nav-toggle {
    display: block !important;
    width: 44px !important;
    height: 44px !important;
    margin-left: auto !important;
    color: #ffffff !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, .14) !important;
    box-shadow: none !important;
  }

  .nav-toggle span,
  .site-header .nav-toggle span,
  .site-header.is-scrolled .nav-toggle span {
    width: 21px !important;
    height: 2px !important;
    background: #ffffff !important;
  }

  .menu {
    position: absolute !important;
    top: 72px !important;
    left: 18px !important;
    right: 18px !important;
    display: none !important;
    max-height: calc(100svh - 92px) !important;
    margin: 0 !important;
    padding: 18px 20px 22px !important;
    overflow-y: auto !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, .12) !important;
    border-radius: 18px !important;
    background: rgba(5, 12, 20, .88) !important;
    box-shadow: 0 22px 46px rgba(0, 0, 0, .24) !important;
    backdrop-filter: blur(18px) !important;
  }

  .menu.is-open {
    display: grid !important;
    gap: 0 !important;
  }

  .menu-item {
    display: grid !important;
  }

  .menu-link,
  .site-header.is-scrolled .menu-link {
    min-height: auto !important;
    padding: 13px 0 !important;
    color: #ffffff !important;
    border-bottom: 1px solid rgba(255, 255, 255, .08) !important;
    font-size: 15px !important;
    line-height: 1.35 !important;
  }

  .menu-link::after {
    display: none !important;
  }

  .menu-link i {
    color: rgba(255, 255, 255, .9) !important;
  }

  .dropdown {
    position: static !important;
    min-width: 0 !important;
    padding: 2px 0 10px 14px !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .dropdown a {
    min-height: 36px !important;
    padding: 8px 0 !important;
    color: rgba(255, 255, 255, .74) !important;
    font-size: 13px !important;
    white-space: normal !important;
  }

  .nav-cta {
    display: none !important;
  }
}

@media (max-width: 480px) {
  body > .site-header,
  body > .page-loader + .site-header,
  .site-header,
  .site-header.is-scrolled {
    height: 64px !important;
  }

  .nav,
  .site-header.is-scrolled .nav {
    width: min(100% - 28px, 1200px) !important;
    min-height: 64px !important;
    gap: 8px !important;
  }

  .brand {
    gap: 7px !important;
    max-width: calc(100% - 50px) !important;
  }

  .brand-mark,
  .site-header.is-scrolled .brand-mark {
    width: 34px !important;
    height: 34px !important;
    flex-basis: 34px !important;
  }

  .brand-text strong,
  .site-header.is-scrolled .brand-text strong {
    font-size: 16px !important;
  }

  .brand-text small,
  .site-header.is-scrolled .brand-text small {
    font-size: 7px !important;
    letter-spacing: 1.4px !important;
  }

  .brand-divider {
    height: 20px !important;
  }

  .make-in-india-inline img {
    height: 17px !important;
  }

  .nav-toggle,
  .site-header.is-scrolled .nav-toggle {
    width: 40px !important;
    height: 40px !important;
  }

  .menu {
    top: 64px !important;
    left: 12px !important;
    right: 12px !important;
    max-height: calc(100svh - 80px) !important;
    border-radius: 14px !important;
  }
}
/* About page palette refinement */
.about-page {
  color: #0a1a29;
  background: #eef4f7 !important;
}

.about-page main {
  overflow: hidden;
  background: linear-gradient(180deg, #eef4f7 0%, #f9fbfc 48%, #eef4f7 100%);
}

.about-page .page-hero.grid-bg {
  border-bottom: 4px solid #f2a900;
  background-color: #06141f;
}

.about-page .page-hero.grid-bg::before {
  background:
    linear-gradient(90deg, rgba(4, 13, 23, .92) 0%, rgba(7, 48, 76, .72) 50%, rgba(4, 13, 23, .42) 100%),
    linear-gradient(180deg, rgba(4, 13, 23, .06), rgba(4, 13, 23, .44));
}

.about-page main > .section {
  position: relative;
  color: #0a1a29;
  background: linear-gradient(180deg, #ffffff 0%, #f3f8fa 100%) !important;
}

.about-page main > .section.section--gray {
  background: linear-gradient(180deg, #eef4f7 0%, #f8fbfc 100%) !important;
}

.about-page main > .section:nth-of-type(4),
.about-page main > .section:nth-of-type(6) {
  color: #ffffff;
  background:
    radial-gradient(circle at 12% 0%, rgba(242, 169, 0, .14), transparent 34%),
    linear-gradient(135deg, #06141f 0%, #07304c 56%, #06141f 100%) !important;
}

.about-page main > .section:nth-of-type(8) {
  color: #ffffff;
  background: linear-gradient(135deg, #06141f 0%, #0b4f71 100%) !important;
}

.about-page main > .section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(11, 79, 113, .045), transparent 36%, rgba(242, 169, 0, .04)),
    repeating-linear-gradient(135deg, rgba(11, 79, 113, .028) 0 1px, transparent 1px 18px);
}

.about-page main > .section:nth-of-type(4)::before,
.about-page main > .section:nth-of-type(6)::before,
.about-page main > .section:nth-of-type(8)::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .045), transparent 42%, rgba(242, 169, 0, .055)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, .04) 0 1px, transparent 1px 18px);
}

.about-page main > .section > .container {
  position: relative;
  z-index: 1;
}

.about-page .section-heading h2,
.about-page .content h2,
.about-page .mission-card h3,
.about-page .facility-card strong {
  color: #071a2b;
}

.about-page .section-heading p,
.about-page .content p,
.about-page .mission-card p,
.about-page .facility-card span {
  color: #425564;
}

.about-page .content strong,
.about-page .section-label,
.about-page .eyebrow {
  color: #f2a900;
}

.about-page main > .section:nth-of-type(4) .section-heading h2,
.about-page main > .section:nth-of-type(6) .section-heading h2,
.about-page main > .section:nth-of-type(8) .facility-card strong {
  color: #ffffff;
}

.about-page main > .section:nth-of-type(4) .section-heading p,
.about-page main > .section:nth-of-type(6) .section-heading p {
  color: rgba(255, 255, 255, .76);
}

.about-page .content {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(11, 79, 113, .12);
  border-radius: 22px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 18px 46px rgba(6, 20, 31, .08);
  backdrop-filter: blur(8px);
}

.about-page .asset-panel,
.about-page .about-gallery-card {
  border: 1px solid rgba(11, 79, 113, .18);
  box-shadow: 0 22px 54px rgba(6, 20, 31, .16);
}

.about-page .about-quote-box {
  background:
    linear-gradient(135deg, rgba(6, 20, 31, .96), rgba(11, 79, 113, .94));
  border-color: rgba(242, 169, 0, .42);
  box-shadow: 0 22px 54px rgba(6, 20, 31, .2);
}

.about-page .about-quote-badge {
  color: #06141f;
  background: #f2a900;
}

.about-page .capability-tag-card,
.about-page .mission-card,
.about-page .facility-card {
  border: 1px solid rgba(11, 79, 113, .12);
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f4f8fa 100%);
  box-shadow: 0 12px 30px rgba(6, 20, 31, .075);
}

.about-page .capability-tag-card span {
  color: #071a2b;
}

.about-page .capability-tag-card i,
.about-page .hex-icon i {
  color: #0b4f71;
}

.about-page .hex-icon {
  background: rgba(11, 79, 113, .1);
}

.about-page .about-gallery-caption {
  background: linear-gradient(180deg, transparent 0%, rgba(6, 20, 31, .9) 82%);
}

.about-page .facility-card {
  border-color: rgba(242, 169, 0, .32);
}

.about-page main > .section:nth-of-type(8) .facility-card {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .18);
  box-shadow: none;
}

.about-page main > .section:nth-of-type(8) .facility-card span {
  color: rgba(255, 255, 255, .78);
}

.about-page .reveal {
  opacity: 1;
  transform: none;
}

@media (max-width: 767px) {
  .about-page .content {
    padding: 20px;
    border-radius: 18px;
  }

  .about-page .about-quote-box {
    border-radius: 18px;
  }
}
/* Product pages palette refinement */
.product-page {
  color: #0a1a29;
  background: #eef4f7 !important;
}

.product-page main {
  overflow: hidden;
  background: linear-gradient(180deg, #eef4f7 0%, #f9fbfc 46%, #eef4f7 100%);
}

.product-page .page-hero.grid-bg {
  border-bottom: 4px solid #f2a900;
  background-color: #06141f;
}

.product-page .page-hero.grid-bg::before {
  background:
    linear-gradient(90deg, rgba(4, 13, 23, .94) 0%, rgba(7, 48, 76, .74) 50%, rgba(4, 13, 23, .42) 100%),
    linear-gradient(180deg, rgba(4, 13, 23, .08), rgba(4, 13, 23, .44));
}

.product-page main > .section {
  position: relative;
  padding-block: clamp(70px, 8vw, 112px);
  color: #0a1a29;
  background:
    linear-gradient(180deg, #ffffff 0%, #f3f8fa 100%) !important;
}

.product-page main > .section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 8% 0%, rgba(242, 169, 0, .09), transparent 30%),
    linear-gradient(90deg, rgba(11, 79, 113, .045), transparent 36%, rgba(242, 169, 0, .035)),
    repeating-linear-gradient(135deg, rgba(11, 79, 113, .026) 0 1px, transparent 1px 18px);
}

.product-page main > .section > .container {
  position: relative;
  z-index: 1;
}

.product-page .section-heading {
  max-width: 860px;
  margin-inline: auto;
}

.product-page .section-heading .section-label,
.product-page .eyebrow {
  color: #f2a900;
}

.product-page .section-heading h2 {
  color: #071a2b;
}

.product-page .section-heading p {
  color: #425564;
}

.product-page .product-gallery {
  align-items: stretch;
}

.product-page .product-card {
  isolation: isolate;
  border: 1px solid rgba(11, 79, 113, .14);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(6, 20, 31, .1);
}

.product-page .product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 48%, rgba(6, 20, 31, .22) 100%);
}

.product-page .product-card::after {
  z-index: 2;
  background: linear-gradient(180deg, transparent 54%, rgba(6, 20, 31, .2));
}

.product-page .product-card img {
  background: #ffffff;
}

.product-page .product-card span {
  z-index: 3;
  color: #ffffff;
  background: rgba(6, 20, 31, .66);
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: 0 10px 24px rgba(6, 20, 31, .16);
}

.product-page .product-card:hover {
  border-color: rgba(242, 169, 0, .58);
  box-shadow: 0 28px 64px rgba(6, 20, 31, .16);
}

.product-page .product-card:focus-visible {
  outline: 3px solid rgba(242, 169, 0, .5);
  outline-offset: 4px;
}

.product-page .reveal {
  opacity: 1;
  transform: none;
}

.factory-products-page main > .section::before {
  background:
    radial-gradient(circle at 8% 0%, rgba(242, 169, 0, .1), transparent 30%),
    linear-gradient(90deg, rgba(11, 79, 113, .05), transparent 36%, rgba(242, 169, 0, .04));
}

.firearm-products-page main > .section {
  background:
    linear-gradient(180deg, #f8fbfc 0%, #edf4f7 100%) !important;
}

.firearm-products-page main > .section::before {
  background:
    radial-gradient(circle at 8% 0%, rgba(242, 169, 0, .12), transparent 32%),
    linear-gradient(90deg, rgba(6, 20, 31, .055), transparent 38%, rgba(11, 79, 113, .055)),
    repeating-linear-gradient(135deg, rgba(11, 79, 113, .03) 0 1px, transparent 1px 18px);
}

.firearm-products-page .section-heading {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(11, 79, 113, .12);
  border-radius: 22px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 18px 46px rgba(6, 20, 31, .08);
  backdrop-filter: blur(8px);
}

@media (max-width: 767px) {
  .product-page main > .section {
    padding-block: 54px;
  }

  .product-page .section-heading {
    text-align: left;
    margin-bottom: 32px;
  }

  .firearm-products-page .section-heading {
    padding: 20px;
    border-radius: 18px;
  }

  .product-page .product-card {
    border-radius: 18px;
  }
}
/* Footer bottom nav inline fix */
.footer__bottom nav {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0 !important;
  flex-wrap: wrap !important;
  line-height: 1.4 !important;
  flex-direction: row !important;
}
/* Scroll to top button */
.scroll-top-btn {
  position: fixed;
  right: clamp(16px, 2vw, 28px);
  bottom: clamp(18px, 2.4vw, 32px);
  z-index: 80;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #06141f;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  background: #f2a900;
  box-shadow: 0 16px 36px rgba(6, 20, 31, .22);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px) scale(.96);
  transition: opacity .24s ease, visibility .24s ease, transform .24s ease, background .2s ease, color .2s ease;
}

.scroll-top-btn.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.scroll-top-btn:hover,
.scroll-top-btn:focus-visible {
  color: #ffffff;
  background: #0b4f71;
  transform: translateY(-2px) scale(1);
}

.scroll-top-btn:focus-visible {
  outline: 3px solid rgba(242, 169, 0, .42);
  outline-offset: 4px;
}

.scroll-top-btn i {
  font-size: 16px;
  line-height: 1;
}

@media (max-width: 480px) {
  .scroll-top-btn {
    right: 14px;
    bottom: 14px;
    width: 44px;
    height: 44px;
  }
}
/* Contrast refinements for capability CTA and navigation dropdowns */
.capability-pill-btn i {
  color: #061b33 !important;
}

.capability-pill-btn:hover i,
.capability-pill-btn:focus-visible i {
  color: #061b33 !important;
}

.dropdown a:hover,
.dropdown a:focus-visible {
  color: #ffffff !important;
  background: #0b4f7a !important;
}

@media (max-width: 1023px) {
  .dropdown a:hover,
  .dropdown a:focus-visible {
    color: #f2a900 !important;
    background: rgba(242, 169, 0, 0.12) !important;
  }
}


/* Custom 404 page */
.not-found-page {
  background: #06141f;
}

.not-found-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: clamp(110px, 12vw, 150px) 0 clamp(64px, 8vw, 96px);
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(6, 20, 31, .96) 0%, rgba(6, 20, 31, .84) 48%, rgba(11, 79, 113, .54) 100%),
    url("https://ik.imagekit.io/ari07rsa2/DFML/Hero%20section/Hero%20section/Image_1.png?tr=f-auto,q-80,pr-true") center / cover no-repeat;
  overflow: hidden;
}

.not-found-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .55fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
}

.not-found-hero__content h1 {
  max-width: 820px;
  margin: 0 0 22px;
  font-size: clamp(42px, 6vw, 84px);
  line-height: 1.04;
  letter-spacing: 0;
  color: #ffffff;
}

.not-found-hero__content p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(16px, 1.55vw, 22px);
  line-height: 1.7;
}

.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.not-found-panel {
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 28px;
  padding: clamp(24px, 3.2vw, 36px);
  background: rgba(255, 255, 255, .10);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .34);
  backdrop-filter: blur(14px);
}

.not-found-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 82px;
  margin-bottom: 22px;
  border-radius: 24px;
  color: #06141f;
  background: #f2a900;
  font-weight: 800;
  font-size: 22px;
  font-family: "Titillium Web", sans-serif;
}

.not-found-panel h2 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(22px, 2vw, 30px);
}

.not-found-panel a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 50px;
  padding: 12px 0;
  color: rgba(255, 255, 255, .82);
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-weight: 700;
}

.not-found-panel a:hover,
.not-found-panel a:focus-visible {
  color: #f2a900;
}

.not-found-panel i {
  width: 22px;
  color: #f2a900;
}

@media (max-width: 767px) {
  .not-found-hero {
    min-height: 100svh;
    padding: 96px 0 46px;
    align-items: flex-end;
  }

  .not-found-hero__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .not-found-hero__content h1 {
    font-size: clamp(36px, 12vw, 52px);
  }

  .not-found-actions,
  .not-found-actions .btn {
    width: 100%;
  }

  .not-found-actions .btn {
    justify-content: center;
  }

  .not-found-panel {
    border-radius: 22px;
    padding: 22px;
  }
}
