:root {
  --navy: #0a1a3a;
  --navy2: #0d2150;
  --blue: #1a3aaa;
  --blue2: #2a55d4;
  --blue3: #3a70f0;
  --blue-lt: #5a90f8;
  --teal: #2f6f68;
  --steel: #4a6a9a;
  --ice: #c8d8f8;
  --ice2: #e4eefb;
  --white: #f8faff;
  --offwhite: #eef2fa;
  --mid: #5a6a8a;
  --dark: #0a1020;
  --gold: #c8a84a;
  --border: rgba(26,58,170,0.13);
  --border2: rgba(26,58,170,0.25);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--white);
  color: var(--dark);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ===== NAVIGATION ===== */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  backdrop-filter: blur(12px);
  border-bottom: none;
  box-shadow: none;
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

nav.over-light {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 4px 20px rgba(10, 26, 58, 0.08);
}

.nav-logo {
  cursor: pointer;
  display: flex;
  align-items: center;
}

.nav-logo img{
  height: 88px;

  filter:
    brightness(1.55)
    contrast(1.18)
    drop-shadow(0 3px 10px rgba(0,0,0,0.45));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
}

.nav-links li { position: relative; }

.nav-links a,
.nav-links button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Barlow', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.95);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.45rem 0.8rem;
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 4px;
}
nav.over-light .nav-links a,
nav.over-light .nav-links button {
  color: #0a1a3a;
}
.nav-links a:hover,
.nav-links button:hover {
  color: #ffffff;
}
nav.over-light .nav-links a:hover,
nav.over-light .nav-links button:hover {
  color: #1f4d5a; /* teal-ish, visible on white */
}
.nav-links a.active {
  color: #3fc1b7;
  font-weight: 600;
}

nav:not(.over-light) .nav-links a.active {
  color: #7fd3cc; /* brighter for dark background */
}

.nav-links button svg {
  width: 9px;
  height: 9px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  transition: transform 0.2s;
}

.nav-links li.open > button svg { transform: rotate(180deg); }

.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: #f3f4f6;
  border: 1px solid rgba(90,144,248,0.2);
  min-width: 210px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}

.nav-links li.open .dropdown { display: block; }

.dropdown a {
  display: block;
  padding: 0.6rem 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  border-bottom: 1px solid rgba(31,41,55,0.08);
  text-transform: uppercase;
  color: #1f2937;
}

.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover { background: #dbeafe; color: #1d4ed8; }

.nav-cta {
  background: #6fc2bc !important;
  color: #ffffff !important;
  border-radius: 6px;
  padding: 0.45rem 1.1rem !important;
  font-size: 0.75rem !important;
  letter-spacing: 0.1em;
  transition: all 0.2s ease !important;
}

.nav-cta:hover {
  background: #7fd3cc !important;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--blue);
  transition: 0.3s;
}

/* ===== PAGE SYSTEM ===== */

.page { display: none; }
.page.active { display: block; }

/* ===== HERO ===== */

.hero {
  min-height: 100vh;
  background: linear-gradient(
    to bottom,
    #2f6f68 0%,
    #2a6a66 15%,
    #1f4d5a 35%,
    #0a1a3a 70%
  );
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 66px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 75% 50%, rgba(26,58,170,0.25) 0%, transparent 65%),
              radial-gradient(ellipse 40% 50% at 15% 80%, rgba(58,112,240,0.1) 0%, transparent 60%);
}

.hero-lines {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: linear-gradient(rgba(90,144,248,1) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(90,144,248,1) 1px, transparent 1px);
  background-size: 50px 50px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2.5rem;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-eye {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--blue-lt);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.2rem;
}

.hero-eye::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--blue-lt);
}

.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.8rem, 5.5vw, 4.6rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: 1.4rem;
  text-transform: uppercase;
}

.hero h1 span { color: var(--blue-lt); }

.hero-sub {
  font-size: 1rem;
  color: rgba(200,216,248,0.65);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-cards { display: flex; flex-direction: column; gap: 1rem; }

.hcard {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(90,144,248,0.2);
  border-radius: 8px;
  padding: 1.4rem 1.6rem;
  backdrop-filter: blur(6px);
}

.hcard-label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-lt);
  margin-bottom: 0.35rem;
}

.hcard-val {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem;
  color: #fff;
  font-weight: 500;
}

.hcard-bar {
  margin-top: 0.7rem;
  height: 3px;
  background: rgba(255,255,255,0.07);
  border-radius: 2px;
  overflow: hidden;
}

.hcard-fill {
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--blue), var(--blue-lt));
}

/* ===== VSTRIP ===== */

.vstrip { background: var(--navy2); padding: 2.5rem; }

.vstrip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
}

.vitem { border-left: 2px solid var(--blue3); padding-left: 1.1rem; }
.vnum { font-family: 'Barlow Condensed', sans-serif; font-size: 2rem; font-weight: 500; color: var(--blue-lt); }
.vlabel { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(200,216,248,0.5); margin-top: 0.15rem; }

/* ===== SECTIONS ===== */

section {
  padding: 5rem 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.sec-eye {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue2);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0.6rem;
}

.sec-eye::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--blue2);
}

.sec-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}

.sec-sub { font-size: 0.95rem; color: var(--mid); max-width: 540px; line-height: 1.75; }
.sec-hdr { margin-bottom: 3rem; }
.divider { width: 100%; height: 1px; background: linear-gradient(90deg, transparent, var(--border), transparent); }

/* ===== BUTTONS ===== */

.btn-pri {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: #fff;
  padding: 0.8rem 1.9rem;
  border-radius: 4px;
  font-family: 'Barlow', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.15s;
}

.btn-pri:hover { background: var(--blue2); transform: translateY(-1px); }

.btn-out {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--ice);
  padding: 0.8rem 1.9rem;
  border-radius: 4px;
  font-family: 'Barlow', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid rgba(200,216,248,0.3);
  transition: border-color 0.2s, transform 0.15s;
}

.btn-out:hover { border-color: var(--ice); transform: translateY(-1px); }

/* ===== SERVICE CARDS ===== */

.svc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; }

.svc-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.8rem;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
  cursor: pointer;
}

.svc-card:hover { border-color: var(--blue2); box-shadow: 0 4px 24px rgba(26,58,170,0.1); transform: translateY(-2px); }

.svc-icon {
  width: 40px;
  height: 40px;
  border-radius: 7px;
  background: var(--ice2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}

.svc-icon svg { width: 19px; height: 19px; stroke: var(--blue2); fill: none; stroke-width: 1.8; }

.svc-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.svc-card p { font-size: 0.85rem; color: var(--mid); line-height: 1.7; }

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  color: var(--blue2);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-top: 1.1rem;
  text-decoration: none;
  font-weight: 500;
  border: none;
  background: none;
  cursor: pointer;
  font-family: 'Barlow', sans-serif;
  transition: gap 0.2s;
}

.svc-link:hover { gap: 9px; }
.svc-link svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2; }

/* ===== HOW CARDS ===== */

.how-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.25rem; }

.how-card { padding: 1.75rem; border: 1px solid var(--border); border-radius: 8px; background: #fff; }

.how-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(26,58,170,0.1);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.how-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.how-card p { font-size: 0.84rem; color: var(--mid); line-height: 1.65; }

/* ===== INDUSTRY STRIP ===== */

.ind-strip { background: var(--offwhite); padding: 4rem 2.5rem; }
.ind-inner { max-width: 1200px; margin: 0 auto; }
.ind-tags { display: flex; flex-wrap: wrap; gap: 0.65rem; margin-top: 1.75rem; }

.ind-tag {
  padding: 0.5rem 1.15rem;
  border: 1px solid rgba(26,58,170,0.2);
  border-radius: 100px;
  font-size: 0.78rem;
  color: var(--mid);
  letter-spacing: 0.04em;
  background: #fff;
  transition: all 0.2s;
  cursor: pointer;
}

.ind-tag:hover { background: var(--navy); color: var(--ice); border-color: var(--navy); }

/* ===== CTA BAND ===== */

.cta-band { background: var(--navy); padding: 5rem 2.5rem; text-align: center; }
.cta-inner { max-width: 640px; margin: 0 auto; }

.cta-band h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 1rem;
}

.cta-band p { color: rgba(200,216,248,0.6); margin-bottom: 1.75rem; font-size: 0.95rem; }

/* ===== PAGE BANNERS ===== */

.pg-banner {
  background: var(--navy);
  padding: 5.5rem 2.5rem 3.5rem;
  position: relative;
  overflow: hidden;
}

.pg-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    ellipse 65% 80% at 80% 50%,
    rgba(26,58,170,0.16) 0%,
    transparent 70%
  );
}

.pg-banner-in {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding-top: 66px;
}

.pg-eye {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue-lt);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pg-eye::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--blue-lt);
}

.pg-banner h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  max-width: 680px;
}

.pg-banner p {
  font-size: 0.95rem;
  color: rgba(200,216,248,0.6);
  margin-top: 0.9rem;
  max-width: 560px;
  line-height: 1.75;
}

.bc {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.9rem 2.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  color: var(--mid);
}

.bc a { color: var(--blue2); text-decoration: none; cursor: pointer; }

/* ===== ABOUT ===== */

.about-split { display: grid; grid-template-columns: 1fr 1.15fr; gap: 4.5rem; align-items: start; }

.about-visual {
  background: var(--navy);
  border-radius: 10px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.about-mono {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 6rem;
  font-weight: 700;
  color: rgba(90,144,248,0.08);
  line-height: 1;
  letter-spacing: -0.02em;
}

.about-visual-logo { display: flex; justify-content: center; padding: 1.5rem 0; }
.about-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem; }

.pill {
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(90,144,248,0.25);
  border-radius: 100px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ice);
  font-weight: 500;
}

.about-text h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  font-weight: 600;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.1;
  margin-bottom: 1.1rem;
}

.about-text p { font-size: 0.9rem; color: var(--mid); line-height: 1.8; margin-bottom: 0.9rem; }

.about-visual-new { border-radius: 12px; overflow: hidden; box-shadow: 0 20px 60px rgba(10,26,58,0.35); }
.about-collage-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.coastal-svg { width: 100%; height: auto; display: block; }

/* ===== VALUES ===== */

.vals-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.25rem; }

.val-card {
  background: var(--offwhite);
  border-radius: 8px;
  padding: 1.75rem;
  border-left: 3px solid var(--blue2);
}

.val-num { font-family: 'Barlow Condensed', sans-serif; font-size: 2.8rem; font-weight: 700; color: rgba(26,58,170,0.09); line-height: 1; margin-bottom: 0.4rem; }

.val-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.val-card p { font-size: 0.84rem; color: var(--mid); line-height: 1.65; }

.vals-circle-wrap { background: var(--navy); padding: 4rem 2.5rem; }
.vals-circle-inner { max-width: 1200px; margin: 0 auto; text-align: center; }

.vals-circle-inner h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 2.5rem;
}

.vals-ring { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-bottom: 1.5rem; }

.vals-ring-item {
  padding: 0.7rem 1.4rem;
  border: 1px solid rgba(90,144,248,0.3);
  border-radius: 100px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ice);
}

.vals-center { font-size: 0.85rem; color: rgba(200,216,248,0.5); font-style: italic; }

/* ===== PRINCIPLES ===== */

.prin-list { display: flex; flex-direction: column; gap: 1.1rem; }

.prin-item {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.25rem;
  align-items: start;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  transition: border-color 0.2s;
}

.prin-item:hover { border-color: var(--blue2); }
.prin-num { font-family: 'Barlow Condensed', sans-serif; font-size: 2.2rem; font-weight: 700; color: var(--blue2); line-height: 1; }

.prin-item h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--dark);
  margin-bottom: 0.4rem;
}

.prin-item p { font-size: 0.85rem; color: var(--mid); line-height: 1.65; }

/* ===== SOLUTIONS ===== */

.sol-tabs {
  display: flex;
  gap: 0.25rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0;
}

.sol-tab {
  font-family: 'Barlow', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 0.55rem 1.1rem;
  cursor: pointer;
  border: none;
  background: none;
  color: var(--mid);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  font-weight: 500;
  transition: color 0.2s, border-color 0.2s;
}

.sol-tab.active, .sol-tab:hover { color: var(--blue2); border-bottom-color: var(--blue2); }

.sol-panel { display: none; }
.sol-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }

.sol-panel h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.sol-italic { font-size: 0.88rem; font-style: italic; color: var(--blue2); margin-bottom: 1rem; }
.sol-desc { font-size: 0.9rem; color: var(--mid); line-height: 1.75; margin-bottom: 1.25rem; }
.sol-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }

.sol-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.85rem;
  color: var(--mid);
}

.sol-list li::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue2);
  flex-shrink: 0;
  margin-top: 8px;
}

.sol-vis { background: var(--navy); border-radius: 8px; padding: 2.25rem; }
.sol-vis-label { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(200,216,248,0.45); }

.sol-vis-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: #fff;
  margin: 0.35rem 0 1rem;
}

.sol-bars { display: flex; flex-direction: column; gap: 0.85rem; }
.sol-bar-item { display: flex; flex-direction: column; gap: 4px; }
.sol-bar-lbl { font-size: 0.68rem; color: rgba(200,216,248,0.5); text-transform: uppercase; letter-spacing: 0.07em; }
.sol-bar-track { height: 3px; background: rgba(255,255,255,0.07); border-radius: 2px; overflow: hidden; }
.sol-bar-fill { height: 100%; border-radius: 2px; background: linear-gradient(90deg, var(--blue), var(--blue-lt)); }

/* ===== EXEC BAND ===== */

.exec-band {
  background: linear-gradient(135deg, var(--navy2) 0%, var(--blue) 100%);
  padding: 5rem 2.5rem;
  text-align: center;
}

.exec-inner { max-width: 700px; margin: 0 auto; }

.exec-band h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.exec-band p {
  color: rgba(200,216,248,0.7);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1.75rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}

/* ===== INDUSTRIES GRID ===== */

.ind-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.1rem; }

.ind-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.75rem;
  background: #fff;
  transition: border-color 0.2s, transform 0.15s;
  cursor: pointer;
}

.ind-card:hover { border-color: var(--blue2); transform: translateY(-2px); }

.ind-icon {
  width: 44px;
  height: 44px;
  border-radius: 7px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}

.ind-icon svg { width: 20px; height: 20px; stroke: var(--blue-lt); fill: none; stroke-width: 1.5; }

.ind-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--dark);
  margin-bottom: 0.4rem;
}

.ind-card p { font-size: 0.82rem; color: var(--mid); line-height: 1.6; }

#page-industries .ind-card { text-align: center; display: flex; flex-direction: column; align-items: center; padding: 1.75rem 1rem; }
#page-industries .ind-icon { margin-bottom: 0.85rem; }
#page-industries .ind-card h3 { font-size: 0.95rem; margin-bottom: 0; }

/* ===== SUPPORT ACCORDION ===== */

.sup-grid { display: flex; flex-direction: column; gap: 0.9rem; }
.sup-item { border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }

.sup-hdr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 1.4rem;
  background: #fff;
  cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--dark);
}

.sup-hdr:hover { background: var(--offwhite); }

.sup-body { padding: 1.1rem 1.4rem; background: var(--offwhite); border-top: 1px solid var(--border); }
.sup-body p { font-size: 0.87rem; color: var(--mid); line-height: 1.7; }

/* ===== COLLABORATION ===== */

.collab-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 2.5rem; }

.collab-card { border: 1px solid var(--border); border-radius: 8px; padding: 1.75rem; background: #fff; }

.collab-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--dark);
  margin-bottom: 0.6rem;
}

.collab-card p { font-size: 0.85rem; color: var(--mid); line-height: 1.7; }

.moment-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }

.moment-card { background: var(--navy2); border-radius: 8px; padding: 1.5rem; }

.moment-card h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ice);
  margin-bottom: 0.5rem;
}

.moment-card p { font-size: 0.82rem; color: rgba(200,216,248,0.55); line-height: 1.65; }

/* ===== COLLABORATION HERO (NEW) ===== */

.collab-hero-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.collab-hero-image img {
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: contain;
  display: block;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

/* ===== CONTACT ===== */

.contact-split { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; }

.contact-info h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--dark);
  margin-bottom: 0.9rem;
}

.contact-info p { font-size: 0.9rem; color: var(--mid); line-height: 1.8; margin-bottom: 1.75rem; }

.cdet { display: flex; align-items: center; gap: 9px; font-size: 0.83rem; color: var(--mid); margin-bottom: 0.65rem; }
.cdet svg { width: 15px; height: 15px; stroke: var(--blue2); fill: none; stroke-width: 1.8; flex-shrink: 0; }
.cdet a { color: var(--blue2); text-decoration: none; }

.disco { margin-top: 2rem; padding: 1.5rem; background: var(--offwhite); border-radius: 8px; border-left: 3px solid var(--blue2); }
.disco-label { font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--blue2); font-weight: 500; margin-bottom: 0.4rem; }

.disco h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 0.4rem;
}

.disco p { font-size: 0.82rem; color: var(--mid); line-height: 1.65; }

/* ===== FORM ===== */

.cform { background: var(--offwhite); border-radius: 10px; padding: 2.25rem; }

.cform h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--dark);
  margin-bottom: 1.4rem;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; margin-bottom: 0.9rem; }
.fg { display: flex; flex-direction: column; gap: 5px; }
.fg.full { grid-column: 1 / -1; }
.fg label { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mid); font-weight: 500; }

.fg input,
.fg textarea,
.fg select {
  padding: 0.7rem 0.9rem;
  border-radius: 5px;
  border: 1px solid rgba(26,58,170,0.15);
  background: #fff;
  font-family: 'Barlow', sans-serif;
  font-size: 0.88rem;
  color: var(--dark);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.fg input:focus, .fg textarea:focus, .fg select:focus { border-color: var(--blue2); }
.fg textarea { resize: vertical; min-height: 110px; }

.form-submit {
  width: 100%;
  padding: 0.9rem;
  background: var(--navy);
  color: var(--ice);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-family: 'Barlow', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 0.9rem;
  transition: background 0.2s;
}

.form-submit:hover { background: var(--blue); }
.form-note { font-size: 0.7rem; color: var(--mid); margin-top: 0.6rem; text-align: center; }

/* ===== FOOTER ===== */

footer {
  background:
    linear-gradient(
      135deg,
      #2f6f68 0%,
      #1f5f68 28%,
      #123f4d 55%,
      #0a1a3a 100%
    );

  padding: 3.5rem 2.5rem 1.75rem;

  border-top: 1px solid rgba(127,211,204,0.18);
}

.foot-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  align-items: start;
}

.foot-logo { height: 170px; width: auto; display: block; margin-bottom: 0.9rem; }
.foot-full { font-size: 0.8rem; font-weight: 500; color: var(--ice); font-style: italic; margin-bottom: 0.35rem; }
.foot-desc { font-size: 0.8rem; color: rgba(220,240,255,0.58); line-height: 1.7; max-width: 270px; }

.foot-col h4 {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-lt);
  margin-bottom: 1rem;
  font-weight: 500;
}

.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.foot-col a { font-size: 0.8rem; color: rgba(220,240,255,0.58); text-decoration: none; transition: color 0.2s; cursor: pointer; }
.foot-col a:hover { color: var(--ice); }

.foot-logo-text { font-family: 'Barlow Condensed', sans-serif; font-size: 1.6rem; font-weight: 700; color: var(--ice); letter-spacing: 0.08em; margin-bottom: 0.5rem; }

.foot-logo-text-new {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ice);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.foot-logo-text-new span { color: var(--blue-lt); }

.nav-logo-text { font-family: 'Barlow Condensed', sans-serif; font-size: 1.5rem; font-weight: 700; color: #fff; letter-spacing: 0.06em; text-transform: uppercase; }
.nav-logo-coastal { color: var(--blue-lt); }

.foot-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(90,144,248,0.07);
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.foot-copy { font-size: 0.7rem; color: rgba(220,240,255,0.48); letter-spacing: 0.06em; }
.foot-credit { font-size: 0.7rem; color: rgba(220,240,255,0.48); }
.foot-credit span { color: var(--blue-lt); }

.foot-legal-links {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0 1rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.72rem;
}

.foot-legal-links a { color: rgba(220,240,255,0.58); text-decoration: none; cursor: pointer; transition: color 0.2s; }
.foot-legal-links a:hover { color: var(--ice); }
.foot-legal-links span { color: rgba(200,216,248,0.2); }

/* ===== LEGAL PAGES ===== */

.legal-wrap { max-width: 780px; }
.legal-date { font-size: 0.8rem; color: var(--mid); margin-bottom: 2.5rem; font-style: italic; }
.legal-section { margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid var(--border); }
.legal-section:last-child { border-bottom: none; }

.legal-h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--dark);
  margin-bottom: 0.6rem;
}

.legal-p { font-size: 0.9rem; color: var(--mid); line-height: 1.85; }

/* ===== INDUSTRY PAGES ===== */

.ind-fine-print { background: var(--navy); padding: 1.5rem 0; }
.ind-fine-print section { padding-top: 0; padding-bottom: 0; }
.ind-fine-print p { font-size: 0.78rem; color: rgba(200,216,248,0.4); line-height: 1.7; max-width: 900px; }
.ind-fine-print a { color: var(--blue-lt); text-decoration: none; cursor: pointer; }
.ind-fine-print a:hover { text-decoration: underline; }

.ind-back-bar { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; max-width: 1200px; margin: 0 auto; padding: 1rem 2.5rem; border-bottom: 1px solid var(--border); }

.ind-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: #fff;
  padding: 0.55rem 1.1rem;
  border-radius: 4px;
  font-family: 'Barlow', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.ind-back-btn:hover { background: var(--blue2); }
.ind-back-btn svg { width: 15px; height: 15px; }

.ind-back-links { display: flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; color: var(--mid); }
.ind-back-links a { color: var(--blue2); text-decoration: none; cursor: pointer; }
.ind-back-links a:hover { text-decoration: underline; }
.ind-back-current { color: var(--dark); font-weight: 500; }

.ind-banner-intro { font-size: 1rem; color: rgba(200,216,248,0.7); margin-top: 0.75rem; max-width: 600px; line-height: 1.75; }

.ind-intro-row { display: grid; grid-template-columns: 64px 1fr; gap: 2rem; align-items: center; max-width: 900px; }
.ind-intro-icon svg { width: 56px; height: 56px; }
.ind-intro-body { font-size: 1rem; color: var(--mid); line-height: 1.9; }

.ind-how-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 0.85rem; margin-bottom: 1.5rem; }

.ind-how-item { display: flex; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 1rem 1.25rem; }
.ind-how-dot { width: 8px; height: 8px; min-width: 8px; border-radius: 50%; background: var(--blue2); }
.ind-how-item span { font-size: 0.87rem; color: var(--dark); font-weight: 500; line-height: 1.5; }
.ind-solutions-link { font-size: 0.85rem; color: var(--mid); margin-top: 0.5rem; }

.ind-sit-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1rem; }
.ind-sit-card { background: var(--offwhite); border-radius: 8px; padding: 1.5rem; border-left: 3px solid var(--blue2); }
.ind-sit-icon { margin-bottom: 0.75rem; }
.ind-sit-icon svg { width: 20px; height: 20px; }
.ind-sit-card p { font-size: 0.87rem; color: var(--mid); line-height: 1.7; margin: 0; }

.ind-blog-teaser { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }

.ind-page-visual { background: var(--navy); border-radius: 10px; padding: 3rem 2rem; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.25rem; text-align: center; min-height: 280px; }
.ind-page-icon-lg svg { width: 90px; height: 90px; stroke: var(--blue-lt); fill: none; stroke-width: 0.8; }
.ind-page-tag { text-align: center; }
.ind-page-tag-label { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(200,216,248,0.45); }
.ind-page-tag-val { font-family: 'Barlow Condensed', sans-serif; font-size: 1.5rem; font-weight: 600; color: #fff; text-transform: uppercase; letter-spacing: 0.05em; margin-top: 0.3rem; }

.ind-page-intro-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 4rem; align-items: center; }

.challenge-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 0.9rem; list-style: none; }
.challenge-list li { display: flex; align-items: flex-start; gap: 10px; padding: 1.1rem 1.25rem; background: #fff; border: 1px solid var(--border); border-radius: 7px; font-size: 0.87rem; color: var(--mid); line-height: 1.6; }
.challenge-list li::before { content: "!"; display: inline-flex; align-items: center; justify-content: center; width: 20px; height: 20px; min-width: 20px; background: var(--ice2); border-radius: 50%; font-size: 0.65rem; font-weight: 700; color: var(--blue2); margin-top: 1px; }

.two-col-section { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.collab-explain { max-width: 760px; }

.ind-context-grid { display: grid; grid-template-columns: 80px 1fr; gap: 2rem; align-items: center; }
.ind-context-icon svg { width: 64px; height: 64px; }
.ind-context-p { font-size: 1.05rem; color: var(--mid); line-height: 1.9; }

.ind-pains-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 0.85rem; }
.ind-pain-item { display: flex; align-items: flex-start; gap: 12px; background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 1.1rem 1.25rem; }
.ind-pain-dot { width: 8px; height: 8px; min-width: 8px; border-radius: 50%; background: var(--blue2); margin-top: 7px; }
.ind-pain-item p { font-size: 0.88rem; color: var(--mid); line-height: 1.65; margin: 0; }

.ind-explore-row { display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: center; }
.ind-explore-btns { display: flex; flex-direction: column; gap: 0.75rem; min-width: 200px; }

.ind-teaser-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.ind-teaser-pills { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }

.ind-teaser-pill {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.15s, box-shadow 0.2s;
}

.ind-teaser-pill:hover { border-color: var(--blue2); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(26,58,170,0.1); }
.ind-teaser-pill svg { width: 18px; height: 18px; stroke: var(--blue2); flex-shrink: 0; }
.ind-teaser-pill span { font-size: 0.82rem; font-weight: 500; color: var(--dark); letter-spacing: 0.02em; }

/* ===== BLOG / INSIGHTS ===== */

.blog-preview-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; }

.blog-preview-card { background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 1.75rem; transition: border-color 0.2s, transform 0.15s; }
.blog-preview-card:hover { border-color: var(--blue2); transform: translateY(-2px); }

.blog-preview-tag { font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--blue2); font-weight: 500; margin-bottom: 0.65rem; }

.blog-preview-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--dark);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.blog-preview-card p { font-size: 0.8rem; color: var(--mid); font-style: italic; }

.blog-cat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-bottom: 0; }

.blog-cat-card { background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 2rem; }
.blog-cat-icon { width: 44px; height: 44px; background: var(--ice2); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.1rem; }
.blog-cat-icon svg { width: 22px; height: 22px; }
.blog-cat-label { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mid); margin-bottom: 0.4rem; }

.blog-cat-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--dark);
  margin-bottom: 0.65rem;
}

.blog-cat-card p { font-size: 0.85rem; color: var(--mid); line-height: 1.7; margin-bottom: 1rem; }
.blog-cat-topics { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.blog-cat-topics span { padding: 0.3rem 0.75rem; background: var(--ice2); border-radius: 100px; font-size: 0.7rem; color: var(--blue2); font-weight: 500; letter-spacing: 0.05em; }

.blog-upcoming-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.1rem; }

.blog-upcoming-item { background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 1.5rem; cursor: pointer; transition: border-color 0.2s, transform 0.15s; }
.blog-upcoming-item:hover { border-color: var(--blue2); transform: translateY(-2px); }

.blog-upcoming-cat { font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; margin-bottom: 0.6rem; padding: 0.3rem 0.65rem; border-radius: 100px; display: inline-block; }
.cat-ops { background: #e4eefb; color: var(--blue2); }
.cat-digital { background: #e0f4f1; color: #0f6e56; }
.cat-coord { background: #faeeda; color: #854f0b; }

.blog-upcoming-item h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--dark);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.blog-upcoming-item p { font-size: 0.75rem; color: var(--mid); letter-spacing: 0.06em; text-transform: uppercase; }

.blog-notify-form { display: flex; flex-direction: column; gap: 0.75rem; }

.blog-email-input {
  padding: 0.75rem 1rem;
  border-radius: 5px;
  border: 1px solid rgba(26,58,170,0.2);
  font-family: 'Barlow', sans-serif;
  font-size: 0.9rem;
  width: 100%;
  outline: none;
}

.blog-email-input:focus { border-color: var(--blue2); }

/* ===== INSIGHTS HERO — EDITORIAL ABSTRACT ===== */

.pg-banner-insights {
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(circle at 18% 28%, rgba(127,211,204,0.18), transparent 28%),
    linear-gradient(
      120deg,
      #06142e 0%,
      #0a1a3a 38%,
      #0d2150 70%,
      #06142e 100%
    );
}

.pg-banner-insights::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;

  background-image:
    linear-gradient(90deg, rgba(127,211,204,0.055) 1px, transparent 1px),
    linear-gradient(rgba(90,144,248,0.045) 1px, transparent 1px);

  background-size: 76px 76px;
  opacity: 0.65;
}

.pg-banner-insights::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;

  background:
    linear-gradient(
      115deg,
      transparent 0%,
      transparent 48%,
      rgba(127,211,204,0.10) 49%,
      rgba(90,144,248,0.08) 58%,
      transparent 59%
    ),
    linear-gradient(
      145deg,
      transparent 0%,
      transparent 64%,
      rgba(255,255,255,0.045) 65%,
      transparent 75%
    );
}

.pg-banner-insights .pg-banner-in {
  position: relative;
  z-index: 2;
}

/* ===== MOBILE MENU FIX ===== */

@media (max-width: 640px) {
  .nav-links.open {
    background: var(--navy);
  }

  .nav-links.open a,
  .nav-links.open button {
    color: #ffffff !important;
  }

  .nav-links.open a:hover,
  .nav-links.open button:hover {
    color: var(--blue-lt) !important;
  }

  .nav-links.open .nav-cta {
    color: #ffffff !important;
  }

  .hamburger span {
    background: var(--blue);
  }
}

/* ===== RESPONSIVE ===== */

@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-cards { display: none; }
  .about-split { grid-template-columns: 1fr; }
  .contact-split { grid-template-columns: 1fr; }
  .foot-inner { grid-template-columns: 1fr 1fr; }
  .sol-panel.active { grid-template-columns: 1fr; }
  .collab-cards { grid-template-columns: 1fr; }
  .moment-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .ind-page-intro-grid { grid-template-columns: 1fr; }
  .ind-page-visual { display: none; }
  .two-col-section { grid-template-columns: 1fr; gap: 2.5rem; }
  .ind-context-grid { grid-template-columns: 1fr; }
  .ind-context-icon { display: none; }
  .ind-explore-row { grid-template-columns: 1fr; }
  .ind-explore-btns { flex-direction: row; flex-wrap: wrap; }
  .ind-teaser-wrap { grid-template-columns: 1fr; }
  .ind-teaser-pills { grid-template-columns: 1fr 1fr; }
  .collab-hero-split { grid-template-columns: 1fr; }
  .collab-hero-image { display: none; }
}

@media (max-width: 768px) {
  .ind-intro-row { grid-template-columns: 1fr; }
  .ind-intro-icon { display: none; }
  .ind-blog-teaser { flex-direction: column; align-items: flex-start; }
  section > div[style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; }
}

@media (max-width: 640px) {
  nav { padding: 0 1.25rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 86px;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 0.75rem;
    gap: 0;
  }
  .nav-links.open li { width: 100%; }
  .nav-links.open .dropdown { position: static; box-shadow: none; border: none; background: rgba(255,255,255,0.03); }
  section { padding: 3rem 1.25rem; }
  .pg-banner { padding: 4.5rem 1.25rem 2.5rem; }
  .foot-inner { grid-template-columns: 1fr; }
  .cta-band, .vstrip, .ind-strip, .vals-circle-wrap, .exec-band { padding-left: 1.25rem; padding-right: 1.25rem; }
  .cform { padding: 1.5rem; }
  .ind-back-bar { padding: 1rem 1.25rem; }
  .ind-back-links { display: none; }
  .ind-teaser-pills { grid-template-columns: 1fr; }
}

/* ===== SOLUTIONS HERO — FLOWING LINES ===== */

.pg-banner-flow {
  position: relative;
  overflow: hidden;

  background:
  linear-gradient(
    145deg,
    #2f7f7a 0%,
    #2a756f 16%,
    #215f67 34%,
    #18485d 50%,
    #13395f 64%,
    #0d2954 80%,
    #0a1a3a 100%
  );
}

.pg-banner-flow::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;

  background:
    linear-gradient(
      135deg,
      rgba(90,144,248,0.20) 0%,
      rgba(90,144,248,0.12) 14%,
      rgba(90,144,248,0.04) 28%,
      transparent 42%
  ),
    linear-gradient(
    100deg,
    rgba(122,228,214,0.24) 0%,
    rgba(96,205,191,0.16) 20%,
    rgba(58,168,156,0.10) 42%,
    transparent 58%
  ),

    linear-gradient(
    180deg,
    rgba(255,255,255,0.03) 0%,
    transparent 35%
  );
}

.pg-banner-flow .flow-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  opacity: 0.78;

  filter:
    drop-shadow(0 0 5px rgba(127,211,204,0.22))
    drop-shadow(0 0 16px rgba(90,144,248,0.13));
}

.pg-banner-flow .pg-banner-in {
  position: relative;
  z-index: 3;
}

.pg-banner-flow::before {
  z-index: 0;
  opacity: 0.35;
}

.pg-banner-flow .flow-line {
  stroke-linecap: round;
  will-change: transform, opacity;
  transform-origin: center;
}

.pg-banner-flow .flow-1 {
  animation: flow-drift-a 22s ease-in-out infinite;
}

.pg-banner-flow .flow-2 {
  animation: flow-drift-b 28s ease-in-out infinite;
}

.pg-banner-flow .flow-3 {
  animation: flow-drift-a 34s ease-in-out infinite reverse;
}

.pg-banner-flow .flow-4 {
  animation: flow-drift-b 26s ease-in-out infinite reverse;
}

.pg-banner-flow .flow-5 {
  animation: flow-drift-a 38s ease-in-out infinite;
}

.pg-banner-flow .pg-eye {
  color: #1a3aaa;
}

.pg-banner-flow .pg-eye::before {
  background: #1a3aaa;
}

@keyframes flow-drift-a {
  0%, 100% {
    transform: translate3d(0, 0, 0);
    opacity: 0.55;
  }
  50% {
    transform: translate3d(-30px, -8px, 0);
    opacity: 0.9;
  }
}

@keyframes flow-drift-b {
  0%, 100% {
    transform: translate3d(0, 0, 0);
    opacity: 0.45;
  }
  50% {
    transform: translate3d(35px, 10px, 0);
    opacity: 0.8;
  }
}

@media (max-width: 640px) {
  .pg-banner-flow .flow-lines {
    opacity: 0.6;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pg-banner-flow .flow-line {
    animation: none;
  }
  .pg-banner-flow .flow-lines {
    opacity: 0.5;
  }
}

/* ===== INDUSTRIES HERO ===== */

.pg-banner-industries {
  position: relative;
  overflow: hidden;

  background:
    linear-gradient(
      135deg,
      #06142e 0%,
      #081936 52%,
      #0a1a3a 100%
    );
}

.pg-banner-industries::before {
  display: none;
}

.pg-banner-industries::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.45;

  background-image:
  linear-gradient(
    135deg,
    transparent 58%,
    rgba(88,196,185,0.12) 74%,
    rgba(52,145,136,0.20) 100%
  ),

  linear-gradient(rgba(127,211,204,0.08) 1px, transparent 1px),

  linear-gradient(90deg, rgba(90,144,248,0.07) 1px, transparent 1px);

  background-size: 72px 72px;
}

/* ===== COMPANY PAGE HERO STYLING ===== */

.pg-banner-about,
.pg-banner-values,
.pg-banner-principles {
  position: relative;
  overflow: hidden;

  background:
  linear-gradient(
    135deg,
    #123f4d 0%,
    #123f4d 14%,
    #0d2745 32%,
    #0a1a3a 58%,
    #0d2150 100%
  );

background-blend-mode: normal;
}

.pg-banner-about::before,
.pg-banner-values::before,
.pg-banner-principles::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;

  background:
  linear-gradient(
    90deg,
    rgba(88,196,185,0.38) 0%,
    rgba(70,172,164,0.24) 18%,
    rgba(52,145,136,0.14) 36%,
    rgba(20,52,64,0.04) 58%,
    transparent 78%
  ),

  repeating-linear-gradient(
    90deg,
    rgba(255,255,255,0.025) 0px,
    rgba(255,255,255,0.025) 1px,
    transparent 1px,
    transparent 90px
  );
}

.pg-banner-about .pg-banner-in,
.pg-banner-values .pg-banner-in,
.pg-banner-principles .pg-banner-in {
  position: relative;
  z-index: 2;
}

/* ===== COLLABORATION HERO ===== */

.pg-banner-collaboration {
  position: relative;
  overflow: hidden;

  background:
    linear-gradient(
      135deg,
      #06142e 0%,
      #081936 52%,
      #0a1a3a 100%
    );
}

.pg-banner-collaboration::before {
  display: none;
}

.pg-banner-collaboration::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;

  background-image:
    linear-gradient(
      135deg,
      transparent 52%,
      rgba(88,196,185,0.14) 72%,
      rgba(52,145,136,0.24) 100%
    ),

    linear-gradient(rgba(127,211,204,0.07) 1px, transparent 1px),

    linear-gradient(90deg, rgba(90,144,248,0.06) 1px, transparent 1px);

  background-size: 72px 72px;
}

.pg-banner-collaboration .pg-banner-in {
  position: relative;
  z-index: 2;
}

.pg-banner-flow .pg-banner-eye {
  color: rgba(220,240,255,0.92);
}

.pg-banner-flow .pg-banner-eye::before {
  background: rgba(220,240,255,0.92);
}

/* ===== INSIGHTS HERO ===== */

.pg-banner-insights {
  position: relative;
  overflow: hidden;

  background:
    linear-gradient(
      135deg,
      #06142e 0%,
      #081936 45%,
      #0a1a3a 100%
    );
}

.pg-banner-insights::before {
  display: none;
}

.pg-banner-insights::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.55;

  background:
    linear-gradient(
      120deg,
      transparent 42%,
      rgba(90,144,248,0.10) 64%,
      rgba(88,196,185,0.16) 100%
    ),
    repeating-linear-gradient(
      90deg,
      rgba(127,211,204,0.035) 0px,
      rgba(127,211,204,0.035) 1px,
      transparent 1px,
      transparent 110px
    );
}

.pg-banner-insights .pg-banner-in {
  position: relative;
  z-index: 2;
}

/* ===== SPOTLIGHT PAGE ===== */

.spot-cat-tag.spot-sample-tag {
  background: var(--gold) !important;
  color: var(--navy) !important;
  margin-right: 0.5rem;
}
