/* ============================================================
   UNIFIED — Concept 6 design system
   ============================================================ */

:root {
  --navy: #0D2B49;
  --navy-light: #1F578F;
  --teal: #00BACB;
  --teal-dark: #007680;
  --red: #C52032;
  --gray-100: #F6F8FA;
  --gray-200: #E5E8EE;
  --gray-500: #7a8499;
  --gray-700: #3a4660;
  --text: #0D2B49;
  --body: #2c3e5a;
  --t-fast: 200ms ease;
  --t: 350ms ease;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: #fff; color: var(--text); }
html { scroll-padding-top: 150px; } /* keep anchor targets clear of the sticky header */
body {
  font-family: 'Manrope', system-ui, -apple-system, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(150%) blur(8px);
  border-bottom: 1px solid var(--gray-200);
  padding: 22px 0;
}
.site-header .nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; padding: 10px 0; }
.brand img { height: 88px; width: auto; display: block; }
@media (max-width: 720px) { .brand img { height: 60px; } }

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--gray-700);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 6px 0;
  transition: color var(--t-fast);
}
.nav-links a:hover { color: var(--teal); }
.nav-links a.active { color: var(--navy); position: relative; }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -3px;
  height: 2px;
  background: var(--teal);
}

.nav-cta {
  background: var(--navy) !important;
  color: #fff !important;
  padding: 10px 20px !important;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  transition: background var(--t-fast);
}
.nav-cta:hover { background: var(--teal) !important; }
.nav-cta::after { display: none !important; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px 0; }

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    padding: 16px 32px 24px;
    gap: 4px;
    border-bottom: 1px solid var(--gray-200);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity var(--t-fast), transform var(--t-fast), visibility var(--t-fast);
  }
  .nav-links.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav-links a { padding: 12px 8px; border-radius: 6px; }
  .nav-links a:hover { background: var(--gray-100); }
  .nav-links a.active::after { display: none; }
  .nav-cta { text-align: center; margin-top: 8px; }
}

/* HERO */
.hero {
  position: relative;
  min-height: clamp(380px, 52vh, 540px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('../img/interior-bg.jpg');
  background-size: cover;
  background-position: center;
  animation: hero-kenburns 26s ease-in-out infinite alternate;
}
@keyframes hero-kenburns {
  from { transform: scaleX(-1) scale(1.02) translateX(0); }
  to   { transform: scaleX(-1) scale(1.14) translateX(-3%); }
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(255,255,255,0.65) 0%, rgba(255,255,255,0.25) 38%, rgba(245,247,250,0.92) 100%);
  pointer-events: none;
}
.hero .container {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 72px;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--teal-dark);
  margin-bottom: 28px;
  background: rgba(255, 255, 255, 0.85);
  padding: 8px 14px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--teal);
  border-radius: 50%;
}
.hero h1 {
  font-weight: 800;
  font-size: clamp(2.8rem, 7vw, 5.4rem);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin: 0 0 28px;
  max-width: 920px;
}
.hero h1 .accent { color: var(--teal); }
.hero-body { max-width: 720px; }
.hero-body p {
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0 0 18px;
  color: var(--body);
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: #fff;
  padding: 14px 24px;
  border-radius: 6px;
  font-weight: 700;
  margin-top: 16px;
  transition: background var(--t-fast);
}
.hero-cta:hover { background: var(--teal); }

/* CLIENT MARQUEE */
.marquee-section {
  padding: 36px 0;
  background: var(--gray-100);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  margin-top: 20px;
}
.marquee-head {
  text-align: center;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray-500);
  font-weight: 700;
  margin-bottom: 22px;
}
.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.marquee-track {
  display: flex;
  gap: 100px;
  width: max-content;
  animation: marquee-scroll 130s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee-scroll { to { transform: translateX(-50%); } }
.marquee-cell {
  height: 90px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}
.marquee-cell img {
  max-height: 90px;
  max-width: 255px;
  object-fit: contain;
  filter: saturate(0.8);
}

/* WHAT WE DO */
.wwd { padding: clamp(64px, 10vh, 120px) 0; }
.wwd-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 52px;
  align-items: end;
}
@media (max-width: 880px) { .wwd-head { grid-template-columns: 1fr; } }
.wwd-head .label {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal-dark);
  font-weight: 700;
  margin-bottom: 14px;
}
.wwd-head h2 {
  font-weight: 800;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin: 0;
}
.wwd-head p {
  font-size: 1.02rem;
  color: var(--gray-700);
  margin: 0;
  line-height: 1.6;
}
.wwd-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 880px) { .wwd-grid { grid-template-columns: 1fr; } }
.wwd-card {
  background: var(--gray-100);
  border-radius: 16px;
  padding: 32px 28px;
  transition: background var(--t), transform var(--t), box-shadow var(--t);
  position: relative;
  overflow: hidden;
}
.wwd-card:hover {
  transform: translateY(-4px);
  background: #fff;
  box-shadow: 0 18px 32px rgba(13, 43, 73, 0.08);
}
.wwd-card .marker {
  width: 32px;
  height: 4px;
  background: var(--teal);
  margin-bottom: 22px;
  border-radius: 2px;
}
.wwd-card h3 {
  font-weight: 800;
  font-size: 1.15rem;
  margin: 0 0 10px;
  color: var(--navy);
}
.wwd-card p {
  font-size: 0.92rem;
  color: var(--gray-700);
  line-height: 1.55;
  margin: 0;
}

/* FOOTER */
.site-footer {
  position: relative;
  background: var(--navy) url('../img/Unified_Footer_BG.jpg') right center / cover no-repeat;
  color: rgba(255, 255, 255, 0.78);
  padding: 56px 0 28px;
  margin-top: 80px;
  isolation: isolate;
}
.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13,43,73,0.95) 0%, rgba(13,43,73,0.80) 55%, rgba(13,43,73,0.35) 100%);
  z-index: 0;
  pointer-events: none;
}
.site-footer .container { position: relative; z-index: 1; }
.site-footer .footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
@media (max-width: 880px) { .site-footer .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 540px) { .site-footer .footer-inner { grid-template-columns: 1fr; } }
.site-footer .footer-brand img {
  height: 56px;
  width: auto;
  margin-bottom: 18px;
}
.site-footer .footer-brand p {
  margin: 0 0 18px;
  max-width: 320px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.92rem;
}
.site-footer h5 {
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 16px;
  font-weight: 700;
}
.site-footer ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.site-footer ul a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  transition: color var(--t-fast);
}
.site-footer ul a:hover { color: var(--teal); }
.site-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}
.site-footer .footer-bottom a:hover { color: #fff; }
.site-footer .footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.site-footer .footer-legal a { color: rgba(255, 255, 255, 0.5); transition: color var(--t-fast); }
@media (max-width: 560px) {
  .site-footer .footer-legal { gap: 14px; }
}

.footer-socials { display: flex; gap: 12px; margin-top: 6px; }
.footer-socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
  transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast);
}
.footer-socials a:hover {
  background: var(--teal);
  color: #fff;
  transform: translateY(-2px);
}
.footer-socials a svg { width: 16px; height: 16px; fill: currentColor; }

/* STUB PAGE PLACEHOLDER */
.page-stub {
  min-height: 50vh;
  padding: clamp(56px, 8vh, 96px) 0;
  background: #fff;
}
.page-stub .eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal-dark);
  font-weight: 700;
  margin-bottom: 14px;
  display: block;
}
.page-stub h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin: 0 0 18px;
}
.page-stub .placeholder-note {
  display: inline-block;
  margin-top: 16px;
  padding: 8px 14px;
  background: var(--gray-100);
  border: 1px dashed var(--gray-200);
  border-radius: 6px;
  font-size: 0.85rem;
  color: var(--gray-500);
}

/* ============================================================
   PAGE HERO — used on all sub-pages (industries, customers,
   about, contact). Lighter than the home hero — no Ken Burns.
   ============================================================ */
.page-hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(380px, 52vh, 540px);
  display: flex;
  align-items: flex-end;
  border-bottom: 1px solid var(--gray-200);
  color: var(--navy);
}
.page-hero .container {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 72px;
  width: 100%;
}
.page-hero .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('../img/interior-bg.jpg');
  background-size: cover;
  background-position: center;
  animation: hero-kenburns 26s ease-in-out infinite alternate;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0.5) 38%, rgba(245,247,250,0.92) 100%);
  pointer-events: none;
}
.page-hero .container {
  position: relative;
  z-index: 2;
}
.page-hero h1 {
  font-weight: 800;
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin: 0 0 24px;
  max-width: 920px;
}
.page-hero h1 .accent { color: var(--teal); }
.page-hero p.lead {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--body);
  max-width: 760px;
  margin: 0;
}

/* ============================================================
   STANDARD SECTION
   ============================================================ */
.section {
  padding: clamp(56px, 9vh, 96px) 0;
}
.section-head {
  max-width: 760px;
  margin-bottom: 48px;
}
.section-head .label {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal-dark);
  font-weight: 700;
  margin-bottom: 14px;
}
.section-head h2 {
  font-weight: 800;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 0 0 16px;
}
.section-head p {
  font-size: 1.02rem;
  color: var(--gray-700);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   INDUSTRIES GRID
   ============================================================ */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 880px) { .industries-grid { grid-template-columns: 1fr; } }
.industry-card {
  background: var(--gray-100);
  border-radius: 16px;
  padding: 32px 28px;
  transition: background var(--t), transform var(--t), box-shadow var(--t);
}
.industry-card:hover {
  transform: translateY(-4px);
  background: #fff;
  box-shadow: 0 18px 32px rgba(13, 43, 73, 0.08);
}
.industry-card .marker {
  width: 32px;
  height: 4px;
  background: var(--teal);
  margin-bottom: 22px;
  border-radius: 2px;
}
.industry-card h3 {
  font-weight: 800;
  font-size: 1.18rem;
  margin: 0 0 10px;
  color: var(--navy);
}
.industry-card p {
  font-size: 0.94rem;
  color: var(--gray-700);
  line-height: 1.55;
  margin: 0;
}

/* ============================================================
   VALUES — used on About page
   ============================================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 880px) { .values-grid { grid-template-columns: 1fr; } }
.value-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 28px 26px;
  transition: background var(--t), transform var(--t), box-shadow var(--t);
}
.value-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 24px rgba(13, 43, 73, 0.08);
  border-color: var(--teal);
}
.value-card .marker {
  width: 32px;
  height: 4px;
  background: var(--teal);
  margin-bottom: 22px;
  border-radius: 2px;
}
.value-card h3 {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--navy);
  margin: 0 0 10px;
}
.value-card p {
  font-size: 0.94rem;
  color: var(--gray-700);
  line-height: 1.55;
  margin: 0;
}

/* ============================================================
   CTA STRIP — closing call-to-action at the bottom of pages
   ============================================================ */
.cta-strip {
  background: var(--navy);
  color: #fff;
  padding: clamp(56px, 8vh, 96px) 0;
  text-align: center;
}
.cta-strip h2 {
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 18px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.cta-strip p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 620px;
  margin: 0 auto 32px;
  line-height: 1.6;
}
.btn-primary {
  display: inline-block;
  background: var(--teal);
  color: #fff;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background var(--t-fast), transform var(--t-fast);
}
.btn-primary:hover { background: #fff; color: var(--navy); transform: translateY(-2px); }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
  padding: 13px 26px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background var(--t-fast), color var(--t-fast);
}
.btn-ghost:hover { background: var(--navy); color: #fff; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-info-item .label {
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal-dark);
  font-weight: 700;
  margin-bottom: 8px;
}
.contact-info-item .value {
  font-size: 1.05rem;
  color: var(--navy);
  line-height: 1.5;
}
.contact-info-item .value a {
  color: var(--navy);
  border-bottom: 1px solid var(--gray-200);
  transition: border-color var(--t-fast), color var(--t-fast);
}
.contact-info-item .value a:hover { color: var(--teal); border-color: var(--teal); }

.contact-form {
  background: var(--gray-100);
  border-radius: 16px;
  padding: 36px 32px;
}
.contact-form .field {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}
.contact-form label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 11px 14px;
  font: inherit;
  color: var(--navy);
  transition: border-color var(--t-fast);
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--teal);
}
.contact-form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 600px) { .contact-form .row { grid-template-columns: 1fr; } }
.contact-form button {
  background: var(--navy);
  color: #fff;
  border: 0;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background var(--t-fast);
}
.contact-form button:hover { background: var(--teal); }
.contact-form button:disabled { opacity: 0.6; cursor: wait; }
.contact-form .form-status {
  margin-top: 14px;
  font-size: 0.95rem;
  line-height: 1.5;
  min-height: 1.4em;
}
.contact-form .form-status.success { color: var(--teal-dark); font-weight: 600; }
.contact-form .form-status.error   { color: #b3261e; font-weight: 600; }
.contact-form .recaptcha-notice {
  margin-top: 14px;
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--gray-500);
}
.contact-form .recaptcha-notice a {
  color: var(--teal-dark);
  text-decoration: underline;
}
.contact-form .recaptcha-notice a:hover { color: var(--teal); }

/* ============================================================
   SOLUTIONS PAGE — tile grid with longer body copy + soft CTA
   ============================================================ */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 980px) { .solutions-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .solutions-grid { grid-template-columns: 1fr; } }
.solution-card {
  background: var(--gray-100);
  border-radius: 16px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  transition: background var(--t), transform var(--t), box-shadow var(--t);
}
.solution-card:hover {
  transform: translateY(-4px);
  background: #fff;
  box-shadow: 0 18px 32px rgba(13, 43, 73, 0.08);
}
.solution-card .marker {
  width: 32px;
  height: 4px;
  background: var(--teal);
  margin-bottom: 22px;
  border-radius: 2px;
}
.solution-card h3 {
  font-weight: 800;
  font-size: 1.3rem;
  margin: 0 0 14px;
  color: var(--navy);
}
.solution-card p {
  font-size: 0.96rem;
  color: var(--gray-700);
  line-height: 1.6;
  margin: 0 0 22px;
}
.solution-card .card-cta {
  margin-top: auto;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--teal-dark);
  transition: color var(--t-fast), transform var(--t-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.solution-card .card-cta:hover { color: var(--teal); transform: translateX(3px); }

/* ============================================================
   CUSTOMERS PAGE — responsive logo grid (replaces marquee)
   ============================================================ */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 28px;
  align-items: center;
  justify-items: center;
}
@media (max-width: 1100px) { .logo-grid { grid-template-columns: repeat(5, 1fr); } }
@media (max-width: 880px)  { .logo-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; } }
@media (max-width: 640px)  { .logo-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
@media (max-width: 420px)  { .logo-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
.logo-grid-cell {
  width: 100%;
  aspect-ratio: 3 / 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  transition: transform var(--t-fast), filter var(--t-fast);
}
.logo-grid-cell:hover { transform: translateY(-3px); }
.logo-grid-cell img {
  max-width: 100%;
  max-height: 130px;
  object-fit: contain;
  filter: saturate(0.85);
  transition: filter var(--t-fast);
}
.logo-grid-cell:hover img { filter: saturate(1); }

/* ============================================================
   SOLUTIONS MODAL — opened by the "Learn more →" link on each
   solution card. Same shell used for all six solutions; content
   is injected via JS from a per-solution data object.
   ============================================================ */
.solutions-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(13, 43, 73, 0.62);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.solutions-modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.solutions-modal {
  background: #fff;
  border-radius: 16px;
  width: 100%;
  max-width: 960px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  position: relative;
  box-shadow: 0 30px 60px rgba(0,0,0,0.30);
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(.2,.7,.2,1), opacity 0.3s ease;
}
.solutions-modal-overlay.is-open .solutions-modal {
  transform: translateY(0);
  opacity: 1;
}
.solutions-modal-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gray-100);
  color: var(--navy);
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast);
  z-index: 2;
}
.solutions-modal-close:hover {
  background: var(--navy);
  color: #fff;
  transform: rotate(90deg);
}
.solutions-modal-close svg { width: 18px; height: 18px; }

.solutions-modal-header {
  padding: 48px 48px 24px;
}
@media (max-width: 600px) { .solutions-modal-header { padding: 36px 24px 16px; } }
.solutions-modal-header .label {
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal-dark);
  font-weight: 700;
  margin-bottom: 14px;
}
.solutions-modal-header h2 {
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 0 0 18px;
}
.solutions-modal-header p {
  font-size: 1.02rem;
  color: var(--gray-700);
  line-height: 1.6;
  margin: 0;
  max-width: 680px;
}

.solutions-modal-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 16px 48px 32px;
}
@media (max-width: 720px) {
  .solutions-modal-cards { grid-template-columns: 1fr; padding: 16px 24px 24px; }
}
.solutions-modal-card {
  background: var(--gray-100);
  border-radius: 12px;
  padding: 24px 22px;
}
.solutions-modal-card .marker {
  width: 28px;
  height: 3px;
  background: var(--teal);
  margin-bottom: 16px;
  border-radius: 2px;
}
.solutions-modal-card h3 {
  font-weight: 800;
  font-size: 1.04rem;
  color: var(--navy);
  margin: 0 0 8px;
}
.solutions-modal-card p {
  font-size: 0.92rem;
  color: var(--gray-700);
  line-height: 1.55;
  margin: 0;
}

.solutions-modal-footer {
  padding: 24px 48px 40px;
  display: flex;
  justify-content: flex-end;
  border-top: 1px solid var(--gray-200);
  margin-top: 16px;
}
@media (max-width: 600px) { .solutions-modal-footer { padding: 24px 24px 32px; justify-content: stretch; } }
.solutions-modal-footer .btn-primary {
  background: var(--navy);
  color: #fff;
  padding: 12px 22px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.92rem;
  transition: background var(--t-fast);
}
.solutions-modal-footer .btn-primary:hover { background: var(--teal); }
@media (max-width: 600px) { .solutions-modal-footer .btn-primary { width: 100%; text-align: center; } }

/* Locks body scroll while modal is open */
body.modal-open { overflow: hidden; }


/* ============================================================
   ABOUT — OUR STORY SECTION (new)
   ============================================================ */
.our-story {
  padding: clamp(64px, 9vh, 120px) 0;
  background: #fff;
}
.our-story .label {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal-dark);
  font-weight: 700;
  margin-bottom: 14px;
  text-align: left;
}
.our-story h2 {
  font-weight: 800;
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 0 0 32px;
  max-width: 760px;
  text-align: left;
}
.our-story .story-body { max-width: 760px; }
.our-story p {
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--body);
  margin: 0 0 22px;
  text-align: left;
}
.our-story p:last-child { font-weight: 700; color: var(--navy); margin-bottom: 0; }

/* ============================================================
   ABOUT — LEADERSHIP TEAM (new)
   ============================================================ */
.team-section {
  position: relative;
  padding: clamp(64px, 9vh, 120px) 0;
  background: var(--navy) url('../img/Unified_Footer_BG.jpg') right center / cover no-repeat;
  color: #fff;
  isolation: isolate;
}
.team-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13,43,73,0.95) 0%, rgba(13,43,73,0.85) 50%, rgba(13,43,73,0.55) 100%);
  z-index: 0;
}
.team-section .container { position: relative; z-index: 1; }
.team-section .label {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 700;
  margin-bottom: 14px;
}
.team-section h2 {
  font-weight: 800;
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 52px;
  max-width: 760px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .team-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; } }
.team-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 28px 26px 30px;
  text-align: left;
  transition: background var(--t), transform var(--t), border-color var(--t);
  position: relative;
}
.team-card:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--teal);
  transform: translateY(-4px);
}
.team-card .marker {
  width: 32px;
  height: 4px;
  background: var(--teal);
  margin-bottom: 22px;
  border-radius: 2px;
}
.team-card h3 {
  color: #fff;
  font-weight: 800;
  font-size: 1.25rem;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.team-card .role {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
}

/* ============================================================
   MODAL — PDF DOWNLOAD BUTTON
   ============================================================ */
.solutions-modal-footer { gap: 12px; }
.solutions-modal-footer .btn-ghost {
  background: #fff;
  color: var(--navy);
  border: 1.5px solid var(--navy);
  padding: 11px 22px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background var(--t-fast), color var(--t-fast);
}
.solutions-modal-footer .btn-ghost:hover { background: var(--navy); color: #fff; }
.solutions-modal-footer .btn-ghost svg { width: 16px; height: 16px; }
@media (max-width: 600px) {
  .solutions-modal-footer { flex-direction: column; align-items: stretch; }
  .solutions-modal-footer .btn-ghost { justify-content: center; }
}
