/* ===== Design Tokens ===== */
:root {
  --navy: #0E2A47;
  --navy-light: #17385E;
  --green: #4F7A2E;
  --green-dark: #3E6224;
  --amber: #C7511F;
  --white: #FFFFFF;
  --bg-soft: #F6F8FA;
  --charcoal: #22282F;
  --grey-text: #55606B;
  --border: #D8DEE4;

  --font-display: 'IBM Plex Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;

  --max-width: 1200px;
  --radius: 6px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.25;
  font-weight: 600;
}

h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: 1.25rem; }

p { color: var(--grey-text); }

a { text-decoration: none; color: inherit; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section--soft {
  background: var(--bg-soft);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  display: block;
  margin-bottom: 12px;
}

.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}

.section-head p {
  margin-top: 12px;
  font-size: 1.05rem;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  border: 1.5px solid transparent;
  cursor: pointer;
}

.btn--primary {
  background: var(--navy);
  color: var(--white);
}
.btn--primary:hover { background: var(--navy-light); }

.btn--outline {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn--outline:hover { background: var(--navy); color: var(--white); }

/* ===== Navbar ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.nav-logo img { height: 38px; }

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--navy);
  font-weight: 500;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--green);
  transition: width 0.2s ease;
}
.nav-links a:hover::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 20px; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; }

@media (max-width: 860px) {
  .nav-links {
    position: fixed;
    top: 76px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-150%);
    transition: transform 0.25s ease;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-toggle { display: block; }
  .nav-cta .btn { display: none; }
}

/* ===== Hero ===== */
.hero {
  padding: 100px 0 70px;
  background:
    linear-gradient(180deg, rgba(14,42,71,0.02), transparent),
    var(--white);
}

.hero-content { max-width: 760px; }

.hero h1 { margin-bottom: 20px; }

.hero p.lead {
  font-size: 1.15rem;
  margin-bottom: 32px;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.cert-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}

.cert-badge--img {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 20px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.cert-badge--img img {
  height: 56px;
  width: auto;
  max-width: 90px;
  object-fit: contain;
}

.cert-badge--img:hover {
  box-shadow: 0 8px 20px rgba(14,42,71,0.1);
  transform: translateY(-2px);
}

/* Highlight UL specifically — bigger still since it's the featured one */
.cert-badge--featured {
  border-color: var(--amber);
  background: #FFF7F2;
  position: relative;
  padding: 16px 22px 16px 20px;
}

.cert-badge--featured img {
  height: 64px;
  max-width: 100px;
}

.cert-badge--featured::before {
  content: 'CERTIFIED';
  position: absolute;
  top: -10px;
  left: 16px;
  background: var(--amber);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  padding: 3px 9px;
  border-radius: 3px;
}

.cert-badge--featured span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  white-space: nowrap;
}

@media (max-width: 620px) {
  .cert-badge--img img { height: 46px; max-width: 74px; }
  .cert-badge--featured img { height: 52px; max-width: 82px; }
}

/* ===== Pillars / Cards Grid ===== */
.grid {
  display: grid;
  gap: 24px;
}

.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

@media (max-width: 960px) {
  .grid--4, .grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .grid--4, .grid--3, .grid--2 { grid-template-columns: 1fr; }
}

.pillar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.pillar-card:hover {
  box-shadow: 0 8px 24px rgba(14,42,71,0.08);
  transform: translateY(-3px);
}

.pillar-card h3 { margin-bottom: 10px; font-size: 1.05rem; }
.pillar-card p { font-size: 0.92rem; }

.pillar-icon {
  width: 42px; height: 42px;
  margin-bottom: 16px;
  color: var(--green);
}

/* ===== Product Teaser Cards ===== */
.product-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.product-card:hover {
  box-shadow: 0 10px 28px rgba(14,42,71,0.1);
  transform: translateY(-3px);
}

.product-card__img {
  aspect-ratio: 4/3;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-text);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  border-bottom: 1px solid var(--border);
}
.product-card__img img { width: 100%; height: 100%; object-fit: cover; }

.product-card__body { padding: 18px 20px 20px; }
.product-card__body h3 { font-size: 1rem; margin-bottom: 6px; }
.product-card__body p { font-size: 0.88rem; margin-bottom: 14px; }

.spec-strip {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.03em;
  color: var(--green-dark);
  border-top: 1px dashed var(--border);
  padding-top: 10px;
  text-transform: uppercase;
}

/* ===== Industries Strip ===== */
.industry-chip {
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 10px 20px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--navy);
  background: var(--white);
  white-space: nowrap;
}

.industries-track {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ===== Logo Marquee ===== */
.marquee-wrap {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.marquee {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: scroll-left 30s linear infinite;
  align-items: center;
}

.marquee span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--grey-text);
  opacity: 0.75;
}

@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee { animation: none; overflow-x: auto; }
}

/* ===== CTA Band ===== */
.cta-band {
  background: var(--navy);
  color: var(--white);
  padding: 64px 0;
  text-align: center;
}
.cta-band h2 { color: var(--white); margin-bottom: 12px; }
.cta-band p { color: #C7D2DD; margin-bottom: 28px; }
.cta-band .btn--primary { background: var(--green); }
.cta-band .btn--primary:hover { background: var(--green-dark); }
.cta-band .btn--outline { border-color: var(--white); color: var(--white); }
.cta-band .btn--outline:hover { background: var(--white); color: var(--navy); }

/* ===== Footer ===== */
.footer {
  background: var(--navy);
  color: #C7D2DD;
  padding: 56px 0 24px;
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
.footer h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 16px;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 20px;
  text-align: center;
  font-size: 0.8rem;
  color: #8FA0B3;
}

/* ===== Scroll reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* ===== Page Header (sub-pages) ===== */
.page-header {
  padding: 64px 0 48px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
}
.page-header .eyebrow { margin-bottom: 14px; }
.page-header p { max-width: 620px; margin-top: 14px; font-size: 1.05rem; }

/* ===== Vision / Mission ===== */
.vm-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
}
.vm-card h3 {
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: #8FD16A;
}
.vm-card p { color: #D7E0E8; font-size: 1.05rem; line-height: 1.7; }

.mission-list {
  list-style: none;
  margin-top: 8px;
}
.mission-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 14px;
  color: var(--grey-text);
}
.mission-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 2px;
}

/* ===== Timeline ===== */
.timeline {
  position: relative;
  margin-top: 20px;
  padding-left: 32px;
  border-left: 2px solid var(--border);
}
.timeline-item {
  position: relative;
  padding-bottom: 40px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -39px; top: 4px;
  width: 14px; height: 14px;
  background: var(--white);
  border: 3px solid var(--green);
  border-radius: 50%;
}
.timeline-year {
  font-family: var(--font-mono);
  color: var(--green-dark);
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 6px;
}
.timeline-item h3 { font-size: 1.05rem; margin-bottom: 6px; }
.timeline-item p { font-size: 0.92rem; max-width: 560px; }

/* ===== Positioning List ===== */
.position-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.position-item:last-child { border-bottom: none; }
.position-item h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.position-item h3::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
}
.position-item p { font-size: 0.95rem; max-width: 700px; }

/* ===== Process Steps (numbered - real sequence) ===== */
.process-step {
  display: flex;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.process-step:last-child { border-bottom: none; }
.process-num {
  font-family: var(--font-mono);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--border);
  min-width: 50px;
  line-height: 1;
}
.process-step:hover .process-num { color: var(--green); transition: color 0.2s ease; }
.process-body h3 { margin-bottom: 6px; }
.process-body p { font-size: 0.95rem; max-width: 620px; }

/* ===== Capability rows ===== */
.capability-item {
  padding: 20px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.capability-item h3 { font-size: 1rem; margin-bottom: 6px; }
.capability-item p { font-size: 0.9rem; }


/* ===== Category Sub-Nav ===== */
.cat-nav {
  position: sticky;
  top: 76px; /* height of main navbar */
  z-index: 90;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: thin;
}

.cat-nav::-webkit-scrollbar { height: 4px; }
.cat-nav::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }

.cat-nav-inner {
  display: inline-flex;
  gap: 4px;
  padding: 14px 24px;
}

.cat-nav a {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--grey-text);
  padding: 8px 16px;
  border-radius: 100px;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.cat-nav a:hover {
  background: var(--bg-soft);
  color: var(--navy);
}

.cat-nav a.active {
  background: var(--navy);
  color: var(--white);
}

/* ===== Category Sections ===== */
.cat-section {
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
  scroll-margin-top: 140px; /* accounts for navbar + cat-nav sticky height */
}
.cat-section:last-of-type { border-bottom: none; }

.cat-section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 12px;
}

.cat-section-head h2 { margin-bottom: 6px; }
.cat-section-head p { font-size: 0.95rem; max-width: 560px; }

.cat-index {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--border);
}

/* Catalog intro */
.catalog-intro {
  padding: 56px 0 32px;
  text-align: left;
}
.catalog-intro h1 { margin-bottom: 14px; }
.catalog-intro p { max-width: 640px; font-size: 1.05rem; }

/* Small product grid variant (denser catalog use) */
.grid--catalog {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 960px) {
  .grid--catalog { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .grid--catalog { grid-template-columns: 1fr; }
}

/* ===== Industry Detail Cards ===== */
.industry-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.industry-card:hover {
  box-shadow: 0 10px 28px rgba(14,42,71,0.08);
  transform: translateY(-3px);
}

.industry-num {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  color: var(--border);
  min-width: 44px;
  line-height: 1;
  flex-shrink: 0;
}
.industry-card:hover .industry-num { color: var(--green); transition: color 0.2s ease; }

.industry-card h3 { margin-bottom: 8px; }
.industry-card p { font-size: 0.92rem; }

.industry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 760px) {
  .industry-grid { grid-template-columns: 1fr; }
}

/* ===== Contact Page ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
}
@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-info-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
}
.contact-info-card h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 24px;
}
.contact-info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-item svg { flex-shrink: 0; margin-top: 3px; color: #8FD16A; }
.contact-info-item .label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8FD16A;
  margin-bottom: 4px;
}
.contact-info-item p, .contact-info-item a {
  color: #D7E0E8;
  font-size: 0.95rem;
  line-height: 1.5;
}
.contact-info-item a:hover { color: var(--white); }

/* Form */
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
}

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color 0.2s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-note {
  font-size: 0.8rem;
  color: var(--grey-text);
  margin-top: 14px;
}

.form-status {
  margin-top: 16px;
  font-size: 0.9rem;
  display: none;
}
.form-status.success { color: var(--green-dark); display: block; }
.form-status.error { color: var(--amber); display: block; }

/* Map placeholder */
.map-embed {
  width: 100%;
  height: 320px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  margin-top: 40px;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* ===== Partner Brand Strip ===== */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
@media (max-width: 900px) {
  .partner-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 560px) {
  .partner-grid { grid-template-columns: repeat(2, 1fr); }
}

.partner-chip {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 84px;
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.partner-chip:hover {
  box-shadow: 0 8px 20px rgba(14,42,71,0.08);
  transform: translateY(-2px);
  border-color: var(--green);
}
.partner-chip img {
  max-height: 40px;
  max-width: 100%;
  object-fit: contain;
}
/* Fallback text style if using names instead of logos */
.partner-chip span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--grey-text);
  letter-spacing: 0.02em;
  text-align: center;
}

/* ===== Enquire Link on Product Cards ===== */
.product-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
}

.enquire-link {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green-dark);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s ease;
}
.enquire-link:hover { gap: 8px; color: var(--navy); }
.enquire-link svg { width: 14px; height: 14px; }

/* ===== Product Detail Modal ===== */
.product-card__actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
}

.view-details-link {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--navy);
  border: 1px solid var(--border);
  padding: 7px 14px;
  border-radius: 100px;
  transition: all 0.2s ease;
  cursor: pointer;
  background: none;
}
.view-details-link:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(14,42,71,0.55);
  backdrop-filter: blur(2px);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.open { display: flex; }

.modal-box {
  background: var(--white);
  border-radius: 10px;
  max-width: 640px;
  width: 100%;
  max-height: 86vh;
  overflow-y: auto;
  position: relative;
  animation: modal-in 0.25s ease;
}
@keyframes modal-in {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--navy);
  z-index: 2;
}
.modal-close:hover { background: var(--border); }

.modal-image {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-text);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  border-bottom: 1px solid var(--border);
}
.modal-image img { width: 100%; height: 100%; object-fit: cover; }

.modal-body { padding: 28px 32px 32px; }

.modal-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
  display: block;
  margin-bottom: 8px;
}

.modal-body h2 { font-size: 1.4rem; margin-bottom: 12px; }
.modal-body > p.modal-desc { font-size: 0.98rem; margin-bottom: 24px; }

.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
}
.spec-table tr { border-bottom: 1px solid var(--border); }
.spec-table tr:last-child { border-bottom: none; }
.spec-table td {
  padding: 12px 0;
  font-size: 0.9rem;
  vertical-align: top;
}
.spec-table td:first-child {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--grey-text);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  width: 40%;
  padding-right: 16px;
}
.spec-table td:last-child { color: var(--charcoal); font-weight: 500; }

.modal-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 560px) {
  .modal-body { padding: 24px 20px 28px; }
}

/* ===== Facility Section ===== */
.facility-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 860px) {
  .facility-grid { grid-template-columns: 1fr; }
}

.facility-photo {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.facility-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.facility-list {
  list-style: none;
}
.facility-list li {
  display: flex;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.facility-list li:last-child { border-bottom: none; }
.facility-list li svg {
  flex-shrink: 0;
  color: var(--green);
  margin-top: 2px;
}
.facility-list h3 { font-size: 1rem; margin-bottom: 4px; }
.facility-list p { font-size: 0.92rem; }

/* Two-photo layout variant */
.facility-photos-stack {
  display: grid;
  gap: 16px;
}
.facility-photos-stack .facility-photo:first-child {
  aspect-ratio: 4/3;
}
.facility-photos-stack .facility-photo:last-child {
  aspect-ratio: 16/9;
}

/* ===== Industry Photo Cards ===== */
.industry-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}
@media (max-width: 960px) {
  .industry-photo-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .industry-photo-grid { grid-template-columns: 1fr; }
}

.industry-photo-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.industry-photo-card:hover {
  box-shadow: 0 10px 28px rgba(14,42,71,0.1);
  transform: translateY(-3px);
}
.industry-photo-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.industry-photo-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.industry-photo-card__body {
  padding: 20px 22px 24px;
}
.industry-photo-card__body h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.industry-photo-card__body p {
  font-size: 0.9rem;
}

/* Divider between photo section and compact list */
.additional-sectors-head {
  margin-bottom: 24px;
}
.additional-sectors-head .eyebrow { margin-bottom: 8px; }

/* ===== Hero v2 ===== */
.hero {
  padding: 64px 0 0;
  overflow: hidden;
  position: relative;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--border) 1px, transparent 1px);
  background-size: 22px 22px;
  -webkit-mask-image: linear-gradient(180deg, black, transparent 70%);
  mask-image: linear-gradient(180deg, black, transparent 70%);
  opacity: 0.6;
  z-index: 0;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  padding-bottom: 60px;
}
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; padding-bottom: 40px; }
}

.hero-content h1 { margin-bottom: 18px; }

.hero-content p.lead {
  font-size: 1.12rem;
  margin-bottom: 30px;
  max-width: 540px;
}

.hero-actions { margin-bottom: 36px; }

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.hero-stat {
  border-left: 2px solid var(--green);
  padding-left: 14px;
}
.hero-stat .num {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  color: var(--navy);
  font-weight: 600;
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}
.hero-stat .label {
  font-size: 0.82rem;
  color: var(--grey-text);
}

/* Visual side */
.hero-visual {
  position: relative;
}
.hero-visual-main {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px rgba(14,42,71,0.12);
  aspect-ratio: 4/3.1;
}
.hero-visual-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-inset-card {
  position: absolute;
  bottom: -28px;
  left: -28px;
  width: 46%;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 16px 36px rgba(14,42,71,0.16);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.hero-inset-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.hero-inset-card__label {
  padding: 10px 14px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--green-dark);
  border-top: 1px solid var(--border);
}

@media (max-width: 960px) {
  .hero-inset-card { display: none; }
}

/* Cert strip sits below the grid, full width */
.hero-certs-row {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 24px 0;
}

.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}