﻿:root {
  --bg: #ffffff;
  --bg-soft: #f5f7fa;
  --bg-muted: #eef2f6;
  --surface: #ffffff;
  --surface-soft: #f8fafc;
  --line: rgba(11, 31, 58, 0.10);
  --line-strong: rgba(11, 31, 58, 0.18);
  --ink: #0b1729;
  --ink-muted: #4a5b70;
  --ink-soft: #6a7b90;
  --navy: #0b1f3a;
  --navy-strong: #08142b;
  --navy-soft: #102b4d;
  --navy-accent: #183a66;
  --blue: #1e6ce8;
  --blue-strong: #1552c4;
  --blue-soft: #e6efff;
  --sky: #3a8ef0;
  --accent: #1e6ce8;
  --accent-strong: #1552c4;
  --accent-soft: #e6efff;
  --gold: #1e6ce8;
  --gold-soft: #e6efff;
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --shadow-sm: 0 16px 30px rgba(9, 20, 39, 0.05);
  --shadow-md: 0 24px 56px rgba(9, 20, 39, 0.08);
  --shadow-lg: 0 36px 80px rgba(9, 20, 39, 0.12);
  --max-width: 1240px;
  --header-height: 84px;
  --font-ui: "Inter", "Segoe UI", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: "Inter", "Segoe UI", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-micro: "Inter", "Segoe UI", -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.nav-open,
body.popup-open {
  overflow: hidden;
}

body.page-ready {
  opacity: 1;
}

::selection {
  background: rgba(30, 108, 232, 0.28);
  color: var(--navy-strong);
}

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

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

main {
  min-height: 60vh;
}

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

.section {
  position: relative;
  padding: clamp(5.2rem, 8vw, 7.4rem) 0;
}

.section.surface-white {
  background: #ffffff;
}

.section.surface-soft {
  background: linear-gradient(180deg, #f7f9fb 0%, #f2f5f8 100%);
}

.section.surface-navy {
  background: linear-gradient(180deg, #0b1f3a 0%, #102b4d 100%);
  color: #eaf1f9;
}

.section.surface-ink {
  background: linear-gradient(160deg, #08142b 0%, #0b1f3a 100%);
  color: #eaf1f9;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-micro);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.kicker::before {
  content: "";
  width: 42px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
}

.section-head {
  display: grid;
  gap: 1rem;
  max-width: 920px;
  margin-bottom: 3rem;
}

.section-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 4.5vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  font-weight: 780;
  max-width: 14ch;
  text-wrap: balance;
}

.section-copy {
  margin: 0;
  max-width: 760px;
  color: var(--ink-muted);
  font-size: clamp(1rem, 1.45vw, 1.08rem);
  line-height: 1.84;
}

.section.surface-navy .kicker,
.section.surface-ink .kicker,
.section.surface-navy .section-copy,
.section.surface-ink .section-copy {
  color: rgba(231, 239, 248, 0.78);
}

.btn-row,
.hero-actions,
.nav-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 1.35rem;
  border-radius: 14px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn.primary {
  background: var(--navy);
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(11, 31, 58, 0.22);
}

.btn.primary:hover {
  background: var(--navy-soft);
  box-shadow: 0 20px 42px rgba(11, 31, 58, 0.28);
}

.btn.accent {
  background: #ffffff;
  color: var(--navy);
  border-color: rgba(30, 108, 232, 0.45);
}

.btn.accent:hover {
  background: #f4f8ff;
  border-color: rgba(30, 108, 232, 0.85);
  color: var(--blue-strong);
}

.btn.solid-navy {
  background: var(--navy);
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(11, 31, 58, 0.18);
}

.btn.solid-navy:hover {
  background: var(--navy-soft);
}

.btn.ghost {
  background: transparent;
  color: var(--navy);
  border-color: rgba(11, 31, 58, 0.14);
}

.btn.ghost.dark {
  background: #ffffff;
  color: var(--navy);
  border-color: rgba(11, 31, 58, 0.12);
}

.btn.ghost.dark:hover,
.btn.ghost:hover {
  border-color: rgba(11, 31, 58, 0.26);
  background: #f7f9fb;
}

.metric {
  display: grid;
  gap: 0.35rem;
  padding: 1.12rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(223, 232, 244, 0.18);
}

.metric-value {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.15rem);
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 780;
}

.metric-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.panel,
.card,
.feature-block,
.market-card,
.evidence-item,
.matrix-cell,
.assurance-card,
.ops-card,
.depth-card,
.insight-card,
.resource-card {
  border-radius: 22px;
  border: 1px solid rgba(11, 31, 58, 0.10);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.card-grid {
  display: grid;
  gap: 1rem;
}

.card-grid.cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.card,
.depth-card,
.resource-card,
.insight-card,
.matrix-cell,
.assurance-card,
.ops-card,
.market-card,
.evidence-item {
  padding: 1.4rem;
  display: grid;
  gap: 0.75rem;
}

.card-label {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.4rem;
  min-height: 28px;
  padding: 0 0.68rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.card-title {
  margin: 0;
  font-size: 1.22rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
  font-weight: 760;
  color: var(--ink);
}

.card-copy,
.depth-card p,
.resource-card p,
.insight-card p,
.market-card p,
.assurance-card p,
.ops-card p,
.matrix-cell span,
.evidence-item p,
.feature-block p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.95rem;
  line-height: 1.74;
}

.feature-split {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 1.5rem;
  align-items: stretch;
}

.feature-block {
  padding: clamp(1.5rem, 2.5vw, 2rem);
  gap: 0.9rem;
}

.feature-block h3 {
  margin: 0;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.media-feature {
  position: relative;
  min-height: 360px;
  overflow: hidden;
}

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

.media-feature:hover img {
  transform: scale(1.03);
}

.media-caption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 0.65rem 0.8rem;
  border-radius: 12px;
  background: rgba(8, 20, 43, 0.78);
  color: rgba(240, 245, 252, 0.92);
  font-size: 0.82rem;
}

.data-list,
.card-list,
.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.data-list li {
  padding: 1rem 1.05rem;
  border-radius: 18px;
  border: 1px solid rgba(11, 31, 58, 0.10);
  background: #f8fafc;
  display: grid;
  gap: 0.25rem;
}

.data-list strong,
.card-list strong {
  font-size: 0.93rem;
}

.data-list span {
  color: var(--ink-muted);
  font-size: 0.9rem;
}

.card-list li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--ink-muted);
}

.card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--gold);
}

.evidence-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.evidence-item strong {
  font-family: var(--font-display);
  font-size: 1.32rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.evidence-item span {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.market-grid,
.matrix,
.assurance-grid,
.ops-grid,
.depth-grid,
.resource-grid,
.insight-grid {
  display: grid;
  gap: 1rem;
}

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

.matrix,
.assurance-grid,
.ops-grid,
.depth-grid,
.resource-grid,
.insight-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.banner {
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 28px;
  border: 1px solid rgba(221, 229, 241, 0.16);
  background: linear-gradient(145deg, #08142b 0%, #0b1f3a 52%, #163867 100%);
  color: #edf3fb;
  box-shadow: var(--shadow-lg);
  display: grid;
  gap: 1rem;
}

.banner h3 {
  margin: 0;
  font-size: clamp(1.6rem, 2.5vw, 2.15rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.banner p {
  margin: 0;
  max-width: 720px;
  color: rgba(231, 239, 248, 0.82);
}

.document-shell {
  display: grid;
  gap: 1.25rem;
  padding: clamp(1.25rem, 2.2vw, 1.75rem);
  border-radius: 28px;
  border: 1px solid rgba(11, 31, 58, 0.10);
  background: #ffffff;
  box-shadow: var(--shadow-md);
}

.document-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.document-meta {
  display: grid;
  gap: 0.22rem;
}

.document-meta strong {
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.document-meta span {
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.document-viewer-wrap {
  min-height: 960px;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(11, 31, 58, 0.10);
  background: #f3f6fa;
}

.document-viewer {
  width: 100%;
  min-height: 960px;
  border: 0;
  background: #ffffff;
}

.form-grid {
  display: grid;
  gap: 1rem;
}

.form-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field {
  display: grid;
  gap: 0.5rem;
}

.field label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 54px;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(11, 31, 58, 0.14);
  background: #f8fafc;
  color: var(--ink);
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.field textarea {
  min-height: 156px;
  resize: vertical;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: rgba(11, 31, 58, 0.22);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  background: #ffffff;
  border-color: rgba(11, 31, 58, 0.28);
  box-shadow: 0 0 0 4px rgba(11, 31, 58, 0.08);
}

.help-text {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.site-header-top {
  position: sticky;
  top: 0;
  z-index: 80;
  background: linear-gradient(180deg, #08142b 0%, #0b1f3a 100%);
  color: rgba(231, 239, 248, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header-top .container {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.74rem;
}

.topline-left,
.topline-right {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.site-header {
  position: sticky;
  top: 36px;
  z-index: 79;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid rgba(11, 31, 58, 0.08);
  transition: box-shadow 0.22s ease, background-color 0.22s ease, border-color 0.22s ease;
}

.site-header.scrolled {
  box-shadow: 0 18px 38px rgba(9, 20, 39, 0.08);
}

.site-header .container {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: 280px 1fr;
  align-items: center;
  gap: 1.5rem;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  min-width: 0;
}

.brand-mark {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  flex: 0 0 auto;
  display: block;
  box-shadow: 0 8px 22px rgba(11, 31, 58, 0.18);
}

.site-footer .brand-mark {
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
}

.brand-text {
  display: grid;
  gap: 0.12rem;
  min-width: 0;
}

.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 780;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.brand-text span {
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.2rem;
}

.nav-link {
  position: relative;
  padding: 0.35rem 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink-muted);
  transition: color 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.55rem;
  height: 2px;
  border-radius: 999px;
  background: transparent;
  transition: background 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--ink);
}

.nav-link.active::after,
.nav-link:hover::after {
  background: var(--gold);
}

.nav-mobile-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(11, 31, 58, 0.12);
  background: #ffffff;
  color: var(--navy);
  cursor: pointer;
}

.nav-mobile-menu {
  display: none;
}

.nav-mobile-menu.open {
  display: grid;
}

.nav-mobile-head,
.nav-mobile-block {
  display: grid;
  gap: 0.8rem;
}

.nav-mobile-head {
  grid-template-columns: 1fr auto;
  align-items: start;
}

.nav-mobile-head-copy {
  display: grid;
  gap: 0.2rem;
}

.nav-mobile-head strong {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.nav-mobile-head span,
.nav-mobile-group-title {
  color: var(--ink-soft);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}

.nav-mobile-close {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(11, 31, 58, 0.12);
  background: #ffffff;
  color: var(--navy);
  font-size: 1.35rem;
  cursor: pointer;
}

.nav-mobile-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 56px;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(11, 31, 58, 0.10);
  background: #ffffff;
  color: var(--ink);
  font-weight: 700;
}

.nav-mobile-menu a.active {
  border-color: rgba(30, 108, 232, 0.55);
  background: #f4f8ff;
  color: var(--blue-strong);
}

.nav-mobile-link-arrow {
  color: var(--ink-soft);
}

.site-footer {
  background: linear-gradient(180deg, #08142b 0%, #0b1f3a 100%);
  color: rgba(231, 239, 248, 0.84);
  padding: 3.2rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 1.5rem;
}

.footer-brand {
  display: grid;
  gap: 1rem;
}

.footer-brand p {
  margin: 0;
  max-width: 520px;
  color: rgba(231, 239, 248, 0.72);
}

.footer-col {
  display: grid;
  gap: 0.85rem;
}

.footer-col h4 {
  margin: 0;
  color: #ffffff;
  font-size: 0.92rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links li,
.footer-links a,
.footer-links span {
  color: rgba(231, 239, 248, 0.72);
  font-size: 0.94rem;
}

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

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  color: rgba(231, 239, 248, 0.6);
  font-size: 0.82rem;
}

.toast-wrap {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 120;
  display: grid;
  gap: 0.65rem;
}

.toast {
  min-width: 240px;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  color: #ffffff;
  background: var(--navy);
  box-shadow: var(--shadow-md);
}

.toast.success {
  background: #0f5132;
}

.toast.error {
  background: #7f1d1d;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.9s cubic-bezier(0.2, 0.7, 0.15, 1),
    transform 0.9s cubic-bezier(0.2, 0.7, 0.15, 1),
    filter 0.9s cubic-bezier(0.2, 0.7, 0.15, 1),
    clip-path 0.9s cubic-bezier(0.2, 0.7, 0.15, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

[data-reveal="left"] {
  transform: translateX(-48px);
}

[data-reveal="right"] {
  transform: translateX(48px);
}

[data-reveal="zoom"] {
  transform: scale(0.94);
  filter: saturate(0.6);
}

[data-reveal="mask"] {
  clip-path: inset(12% 8% 12% 8% round 18px);
  transform: scale(1.02);
}

[data-reveal].is-visible,
body:not(.reveal-enabled) [data-reveal] {
  opacity: 1;
  transform: none;
  filter: none;
  clip-path: inset(0 0 0 0 round 0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 1140px) {
  .site-header .container {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    padding: 0.85rem 0;
  }

  .nav-wrap {
    justify-content: space-between;
  }

  .hero-actions .btn,
  .nav-actions .btn {
    min-height: 50px;
  }

  .feature-split,
  .footer-grid,
  .market-grid,
  .matrix,
  .assurance-grid,
  .ops-grid,
  .depth-grid,
  .resource-grid,
  .insight-grid,
  .evidence-strip,
  .card-grid.cols-3,
  .card-grid.cols-2,
  .form-grid.two {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 980px) {
  .container {
    width: min(var(--max-width), calc(100% - 32px));
  }

  .site-header-top .container {
    justify-content: center;
  }

  .topline-right {
    display: none;
  }

  .site-header {
    top: 36px;
  }

  .site-header .container {
    grid-template-columns: 1fr auto;
    gap: 1rem;
    min-height: 78px;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .nav-mobile-toggle {
    display: inline-flex;
  }

  .nav-mobile-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 16px;
    right: 16px;
    z-index: 95;
    padding: 1rem;
    border-radius: 22px;
    border: 1px solid rgba(11, 31, 58, 0.10);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-lg);
    gap: 1rem;
  }

  .footer-grid,
  .feature-split,
  .market-grid,
  .matrix,
  .assurance-grid,
  .ops-grid,
  .depth-grid,
  .resource-grid,
  .insight-grid,
  .evidence-strip,
  .card-grid.cols-3,
  .card-grid.cols-2,
  .form-grid.two {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 4.4rem 0;
  }

  .section-title {
    max-width: none;
    font-size: clamp(2rem, 9vw, 3rem);
  }
}

@media (max-width: 640px) {
  .site-header-top .container {
    min-height: 32px;
    font-size: 0.68rem;
  }

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

  .brand-text strong {
    font-size: 0.98rem;
  }

  .brand-text span {
    font-size: 0.72rem;
  }

  .btn {
    width: 100%;
  }

  .btn-row,
  .hero-actions {
    display: grid;
  }

  .metric {
    padding: 1rem 0.95rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ======================================================================
   PEGASUS-INSPIRED PUBLIC THEME
   ====================================================================== */

:root {
  --pg-navy: #0b2b4f;
  --pg-navy-deep: #08213d;
  --pg-blue: #2f86c6;
  --pg-blue-soft: #d8ebf8;
  --pg-ink: #0f2643;
  --pg-ink-soft: #5c6f84;
  --pg-surface: #f7f8fa;
  --pg-white: #ffffff;
  --pg-shadow: 0 18px 38px rgba(8, 33, 61, 0.12);
  --pg-shadow-soft: 0 16px 40px rgba(8, 33, 61, 0.08);
}

body {
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  color: var(--pg-ink);
  background: #ffffff;
}

.pg-utility {
  background: #ffffff;
  border-bottom: 1px solid rgba(15, 38, 67, 0.08);
}

.pg-utility-inner {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0.5rem 0;
}

.pg-utility-left,
.pg-utility-right {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.pg-utility-button,
.pg-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 1.15rem;
  border: 2px solid var(--pg-navy);
  background: var(--pg-navy);
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 5px 5px 0 #7cb2de;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.pg-utility-button:hover,
.pg-button:hover {
  transform: translate(-1px, -1px);
  box-shadow: 7px 7px 0 #7cb2de;
}

.pg-utility-contact {
  color: var(--pg-ink);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.pg-utility-pill {
  padding: 0.26rem 0.62rem;
  border-radius: 999px;
  background: var(--pg-surface);
  border: 1px solid rgba(15, 38, 67, 0.08);
  color: var(--pg-ink-soft);
  font-size: 0.72rem;
  font-weight: 600;
}

.pg-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(15, 38, 67, 0.08);
}

.pg-header-inner {
  min-height: 86px;
  display: grid;
  grid-template-columns: 200px 1fr auto;
  align-items: center;
  gap: 2rem;
}

.pg-brand {
  display: inline-flex;
  align-items: center;
}

.pg-brand-wordmark,
.pg-footer-logo {
  display: block;
  width: min(100%, 172px);
  height: auto;
}

.pg-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.7rem;
  flex-wrap: wrap;
}

.pg-nav-link {
  position: relative;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--pg-ink);
  padding: 0.2rem 0;
}

.pg-nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.38rem;
  height: 2px;
  background: transparent;
  transition: background-color 0.18s ease;
}

.pg-nav-link:hover,
.pg-nav-link.active {
  color: var(--pg-blue);
}

.pg-nav-link:hover::after,
.pg-nav-link.active::after {
  background: var(--pg-blue);
}

.pg-header-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.pg-button {
  min-height: 46px;
  padding-inline: 1.25rem;
}

.pg-button--ghost {
  background: #ffffff;
  color: var(--pg-navy);
}

.pg-button--nav {
  font-size: 0.74rem;
}

.pg-nav-toggle {
  display: none;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(15, 38, 67, 0.12);
  background: #ffffff;
  border-radius: 0;
  padding: 0.7rem;
  cursor: pointer;
}

.pg-nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--pg-navy);
}

.pg-mobile-panel {
  display: none;
}

.pg-mobile-panel.open {
  display: grid;
}

.pg-mobile-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 16px;
  right: 16px;
  padding: 1rem;
  background: #ffffff;
  border: 1px solid rgba(15, 38, 67, 0.08);
  box-shadow: var(--pg-shadow);
  gap: 1rem;
}

.pg-mobile-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.pg-mobile-head strong {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pg-ink-soft);
}

.pg-mobile-head span {
  color: var(--pg-ink-soft);
  font-size: 0.86rem;
}

.pg-mobile-close {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(15, 38, 67, 0.12);
  background: #ffffff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.pg-mobile-links,
.pg-mobile-actions {
  display: grid;
  gap: 0.7rem;
}

.pg-mobile-link {
  padding: 0.9rem 1rem;
  border: 1px solid rgba(15, 38, 67, 0.08);
  background: var(--pg-surface);
  color: var(--pg-ink);
  font-weight: 700;
}

.pg-mobile-link.active {
  color: var(--pg-blue);
  border-color: rgba(47, 134, 198, 0.34);
  background: #eef6fc;
}

.pg-main {
  overflow: clip;
}

.pg-section,
.pg-section-soft,
.pg-section-plain {
  position: relative;
  padding: clamp(5rem, 8vw, 7rem) 0;
}

.pg-section-soft {
  background: var(--pg-surface);
}

.pg-section-plain {
  background: #ffffff;
}

.pg-kicker {
  margin: 0 0 0.9rem;
  color: var(--pg-blue);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pg-title {
  margin: 0;
  color: var(--pg-ink);
  font-size: clamp(2.4rem, 5.6vw, 4.9rem);
  line-height: 0.94;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.pg-outline {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--pg-navy);
}

.pg-fill {
  display: block;
  color: var(--pg-blue);
}

.pg-lead {
  margin: 1.2rem 0 0;
  max-width: 780px;
  color: var(--pg-ink-soft);
  font-size: 1.02rem;
  line-height: 1.85;
}

.pg-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.9rem;
}

.pg-grid-2,
.pg-grid-3,
.pg-grid-4 {
  display: grid;
  gap: 1.6rem;
}

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

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

.pg-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pg-card,
.pg-panel,
.pg-location-card,
.pg-stat-card {
  background: #ffffff;
  border: 1px solid rgba(15, 38, 67, 0.08);
  box-shadow: var(--pg-shadow-soft);
}

.pg-card,
.pg-panel,
.pg-location-card {
  padding: 1.5rem;
}

.pg-card h3,
.pg-panel h3,
.pg-location-card h3 {
  margin: 0;
  color: var(--pg-ink);
  font-size: 1.46rem;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.pg-card p,
.pg-panel p,
.pg-location-card p,
.pg-copy {
  margin: 0;
  color: var(--pg-ink-soft);
  font-size: 0.98rem;
  line-height: 1.84;
}

.pg-stack {
  display: grid;
  gap: 1rem;
}

.pg-media-card {
  position: relative;
  overflow: visible;
  box-shadow: var(--pg-shadow);
}

.pg-media-card img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

.pg-media-card::after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  right: -28px;
  bottom: -28px;
  background-image: radial-gradient(circle, var(--pg-blue) 0 2px, transparent 2px);
  background-size: 14px 14px;
  opacity: 0.9;
  z-index: -1;
}

.pg-caption-card {
  position: absolute;
  right: 24px;
  bottom: -24px;
  background: #ffffff;
  padding: 0.95rem 1.2rem;
  box-shadow: var(--pg-shadow);
}

.pg-caption-card strong {
  display: block;
  color: var(--pg-ink);
  font-size: 0.92rem;
  line-height: 1.2;
}

.pg-caption-card span {
  color: var(--pg-ink-soft);
  font-size: 0.82rem;
}

.pg-logo-strip {
  padding: 2rem 0 3.5rem;
}

.pg-logo-label {
  margin: 0 0 1.1rem;
  color: var(--pg-ink-soft);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pg-logo-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: center;
}

.pg-logo-chip {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(15, 38, 67, 0.28);
  font-size: clamp(1.1rem, 2vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
}

.pg-slant-band {
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 12%, 100% 0, 100% 88%, 0 100%);
}

.pg-slant-band img,
.pg-photo-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pg-photo-banner {
  position: relative;
  min-height: 420px;
  clip-path: polygon(0 14%, 100% 0, 100% 86%, 0 100%);
  overflow: hidden;
  color: #ffffff;
}

.pg-photo-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 33, 61, 0.78) 0%, rgba(8, 33, 61, 0.42) 55%, rgba(8, 33, 61, 0.3) 100%);
}

.pg-photo-banner-content {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2rem;
}

.pg-photo-banner-content h2 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(2.8rem, 7vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.pg-photo-banner-content p {
  margin: 1rem auto 0;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.86);
}

.pg-stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.6rem;
}

.pg-stat-card {
  padding: 1.8rem 1.2rem;
  text-align: center;
}

.pg-stat-card strong {
  display: block;
  color: #8bc2ec;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1;
}

.pg-stat-card span {
  display: block;
  margin-top: 0.7rem;
  color: var(--pg-navy);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
}

.pg-dual-copy {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  gap: 2rem;
  align-items: start;
}

.pg-display-word {
  margin: 0;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--pg-navy);
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.pg-display-word + .pg-display-fill {
  margin-top: 0.35rem;
}

.pg-display-fill {
  margin: 0;
  color: var(--pg-navy);
  font-size: clamp(2.2rem, 5.8vw, 4.6rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.pg-value-list,
.pg-detail-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.pg-value-list li,
.pg-detail-list li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--pg-ink-soft);
  line-height: 1.75;
}

.pg-value-list li::before,
.pg-detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.74rem;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--pg-blue);
}

.pg-form-band {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(8, 33, 61, 0.94), rgba(11, 43, 79, 0.92)),
    url("../images/hero-network.svg") center/cover no-repeat;
  color: #ffffff;
  clip-path: polygon(0 14%, 100% 0, 100% 86%, 0 100%);
}

.pg-form-band .container {
  padding: clamp(6rem, 9vw, 8rem) 0;
}

.pg-form-shell {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.pg-form-shell h2 {
  margin: 0;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.pg-form-shell p {
  margin: 1rem auto 0;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.82);
}

.pg-form-grid {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.8rem;
  text-align: left;
}

.pg-form-grid.pg-form-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pg-field {
  display: grid;
  gap: 0.4rem;
}

.pg-field label {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  font-weight: 600;
}

.pg-field input,
.pg-field select,
.pg-field textarea {
  width: 100%;
  min-height: 54px;
  padding: 0.95rem 1rem;
  border: 0;
  background: #ffffff;
  color: var(--pg-ink);
  font: inherit;
}

.pg-field textarea {
  min-height: 132px;
  resize: vertical;
}

.pg-form-submit {
  justify-self: center;
  min-width: 220px;
  margin-top: 0.75rem;
}

.pg-help {
  margin: 0.8rem 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
}

.pg-footer {
  padding: 4rem 0 2.2rem;
  background: #ffffff;
}

.pg-footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr 0.85fr;
  gap: 1.6rem;
}

.pg-footer-brand {
  display: grid;
  gap: 1.1rem;
}

.pg-footer-address {
  display: grid;
  gap: 0.22rem;
}

.pg-footer-address strong,
.pg-footer-col h4 {
  color: var(--pg-navy);
  font-size: 0.98rem;
  font-weight: 800;
}

.pg-footer-address span,
.pg-footer-address a,
.pg-footer-col a,
.pg-footer-col span {
  color: var(--pg-ink);
  font-size: 0.98rem;
  line-height: 1.68;
}

.pg-footer-col {
  display: grid;
  align-content: start;
  gap: 0.36rem;
}

.pg-footer-support {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.8rem;
}

.pg-support-item {
  border-top: 1px solid rgba(15, 38, 67, 0.12);
  padding-top: 1rem;
}

.pg-support-item small {
  display: block;
  color: var(--pg-navy);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pg-support-item strong {
  display: block;
  margin-top: 0.45rem;
  color: var(--pg-blue);
  font-size: 1.08rem;
  line-height: 1.4;
}

.pg-footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(15, 38, 67, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--pg-ink);
  font-size: 0.95rem;
}

@media (max-width: 1180px) {
  .pg-header-inner {
    grid-template-columns: 180px 1fr auto;
    gap: 1rem;
  }

  .pg-nav {
    gap: 1rem;
  }

  .pg-footer-grid,
  .pg-footer-support,
  .pg-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .pg-utility-right,
  .pg-nav,
  .pg-header-actions .pg-button--nav {
    display: none;
  }

  .pg-header-inner {
    grid-template-columns: 1fr auto;
    min-height: 78px;
  }

  .pg-nav-toggle {
    display: inline-block;
  }

  .pg-dual-copy,
  .pg-grid-2,
  .pg-grid-3,
  .pg-grid-4,
  .pg-logo-list,
  .pg-stat-row,
  .pg-footer-grid,
  .pg-footer-support,
  .pg-form-grid.pg-form-grid--two {
    grid-template-columns: 1fr;
  }

  .pg-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .pg-utility-inner {
    min-height: 56px;
  }

  .pg-utility-left {
    gap: 0.55rem;
  }

  .pg-utility-button,
  .pg-button {
    width: 100%;
    box-shadow: 4px 4px 0 #7cb2de;
  }

  .pg-brand-wordmark,
  .pg-footer-logo {
    width: 148px;
  }

  .pg-mobile-panel {
    left: 12px;
    right: 12px;
  }

  .pg-form-band .container {
    padding: 5rem 0;
  }
}

/* ======================================================================
   PEGASUS-INSPIRED PUBLIC THEME V2
   ====================================================================== */

:root {
  --pg-utility-height: 72px;
  --pg-header-height: 86px;
}

body {
  overflow-x: hidden;
}

.pg-utility {
  position: sticky;
  top: 0;
  z-index: 97;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
}

.pg-utility-inner {
  min-height: var(--pg-utility-height);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
}

.pg-utility-meta {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.pg-utility-copy {
  color: var(--pg-ink-soft);
  font-family: "Space Mono", "Courier New", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pg-utility-sep {
  width: 1px;
  height: 24px;
  background: rgba(15, 38, 67, 0.12);
}

.pg-utility-right,
.pg-utility-actions,
.pg-flag-strip {
  display: flex;
  align-items: center;
}

.pg-utility-right {
  justify-content: flex-end;
  gap: 0.9rem;
}

.pg-utility-actions {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.7rem;
}

.pg-utility-button,
.pg-button {
  min-height: 40px;
  padding: 0 1rem;
  border-width: 1px;
  border-color: rgba(11, 43, 79, 0.96);
  box-shadow: 4px 4px 0 rgba(124, 178, 222, 0.9);
  font-family: "Syncopate", "Poppins", "Segoe UI", Arial, sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

.pg-utility-button:hover,
.pg-button:hover {
  box-shadow: 6px 6px 0 rgba(124, 178, 222, 0.95);
}

.pg-button {
  min-height: 44px;
  padding-inline: 1.15rem;
}

.pg-button--ghost {
  background: #ffffff;
  color: var(--pg-navy);
  border-color: rgba(11, 43, 79, 0.2);
  box-shadow: none;
}

.pg-button--ghost:hover {
  background: #f3f8fc;
  box-shadow: none;
}

.pg-utility-contact {
  font-family: "Space Mono", "Courier New", monospace;
  font-size: 0.84rem;
}

.pg-flag-strip {
  gap: 0.42rem;
  flex-wrap: wrap;
}

.pg-flag-chip {
  position: relative;
  width: 42px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(11, 43, 79, 0.12);
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(8, 33, 61, 0.08);
}

.pg-flag-chip span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-family: "Space Mono", "Courier New", monospace;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.32);
}

.pg-flag-chip--sa {
  background: #0b8c4a;
}

.pg-flag-chip--ae {
  background:
    linear-gradient(90deg, #d62828 0 22%, transparent 22%),
    linear-gradient(180deg, #009a49 0 33%, #ffffff 33% 66%, #000000 66%);
}

.pg-flag-chip--kw {
  background:
    linear-gradient(180deg, #009b49 0 33%, #ffffff 33% 66%, #ce1126 66%);
}

.pg-flag-chip--kw::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 14px;
  background: #000000;
  clip-path: polygon(0 0, 100% 18%, 100% 82%, 0 100%);
}

.pg-flag-chip--qa {
  background: linear-gradient(90deg, #ffffff 0 28%, #8a1538 28%);
}

.pg-flag-chip--qa span,
.pg-flag-chip--bh span {
  color: #fdfdfd;
}

.pg-flag-chip--bh {
  background: linear-gradient(90deg, #ffffff 0 28%, #ce1126 28%);
}

.pg-flag-chip--om {
  background:
    linear-gradient(90deg, #c8102e 0 26%, transparent 26%),
    linear-gradient(180deg, #ffffff 0 33%, #c8102e 33% 66%, #007a3d 66%);
}

.pg-header {
  top: var(--pg-utility-height);
  z-index: 96;
  box-shadow: 0 16px 36px rgba(8, 33, 61, 0.04);
}

.pg-header.scrolled {
  box-shadow: 0 18px 42px rgba(8, 33, 61, 0.12);
}

.pg-header-inner {
  min-height: var(--pg-header-height);
  grid-template-columns: 88px 1fr auto;
  gap: 1.4rem;
}

.pg-nav {
  gap: 1.45rem;
}

.pg-nav-link {
  font-size: 0.94rem;
  letter-spacing: -0.01em;
}

.pg-brand-wordmark,
.pg-footer-logo {
  width: min(100%, 182px);
}

.pg-kicker,
.pg-logo-label {
  font-family: "Syncopate", "Poppins", "Segoe UI", Arial, sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.13em;
}

.pg-title {
  letter-spacing: -0.07em;
}

.pg-copy,
.pg-lead,
.pg-card p,
.pg-panel p,
.pg-location-card p {
  max-width: 72ch;
}

.pg-logo-strip {
  padding: 1.5rem 0 2.4rem;
}

.pg-marquee {
  display: flex;
  gap: 1rem;
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent 0, #000000 8%, #000000 92%, transparent 100%);
}

.pg-marquee-track {
  display: flex;
  gap: 1rem;
  min-width: max-content;
  flex: 0 0 auto;
  animation: pg-marquee-run var(--pg-marquee-speed, 28s) linear infinite;
}

.pg-marquee--reverse .pg-marquee-track {
  animation-direction: reverse;
}

.pg-marquee:hover .pg-marquee-track {
  animation-play-state: paused;
}

.pg-marquee-item {
  width: clamp(180px, 16vw, 244px);
  min-height: 84px;
  padding: 1rem 1.1rem;
  display: grid;
  place-items: center;
  text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, #f2f7fb 100%);
  border: 1px solid rgba(47, 134, 198, 0.18);
  box-shadow: 0 18px 34px rgba(8, 33, 61, 0.06);
  color: var(--pg-blue);
  font-size: clamp(1rem, 1.55vw, 1.48rem);
  font-weight: 700;
  line-height: 1.18;
}

.pg-marquee-item:nth-child(3n) {
  background: linear-gradient(180deg, #f5fbff 0%, #e8f3fb 100%);
  color: #226d9f;
}

@keyframes pg-marquee-run {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(calc(-100% - 1rem), 0, 0); }
}

.pg-parallax-wrap {
  perspective: 1200px;
  transform-style: preserve-3d;
}

[data-parallax] {
  transform:
    translate3d(0, var(--parallax-shift, 0px), 0)
    scale(var(--parallax-scale, 1.04))
    rotateX(var(--parallax-tilt, 0deg));
  transform-origin: center;
  will-change: transform;
}

.pg-media-card img,
.pg-service-image img,
.pg-photo-banner img,
.pg-service-band img {
  transition: transform 0.18s linear;
}

.pg-photo-banner,
.pg-service-band,
.pg-form-band {
  clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
}

.pg-photo-banner {
  min-height: clamp(380px, 44vw, 560px);
}

.pg-photo-banner::after {
  background:
    linear-gradient(90deg, rgba(8, 33, 61, 0.82) 0%, rgba(8, 33, 61, 0.56) 52%, rgba(8, 33, 61, 0.28) 100%),
    radial-gradient(circle at 84% 16%, rgba(47, 134, 198, 0.25), transparent 28%);
}

.pg-photo-banner-content {
  place-items: stretch;
  align-content: end;
  text-align: left;
  padding: clamp(2rem, 4vw, 4rem);
}

.pg-photo-banner-content h2,
.pg-service-band-content h2,
.pg-form-shell h2 {
  max-width: 760px;
}

.pg-service-band {
  min-height: 400px;
}

.pg-service-band::after {
  background:
    linear-gradient(90deg, rgba(8, 33, 61, 0.78) 0%, rgba(47, 134, 198, 0.42) 100%);
}

.pg-service-band-content {
  padding: clamp(2rem, 4vw, 4rem);
}

.pg-form-band {
  background:
    linear-gradient(135deg, rgba(8, 33, 61, 0.96), rgba(11, 43, 79, 0.92)),
    radial-gradient(circle at 85% 18%, rgba(47, 134, 198, 0.22), transparent 24%),
    url("../images/hero-network.svg") center/cover no-repeat;
}

.pg-form-band .container {
  padding: clamp(5.2rem, 8vw, 7rem) 0;
}

.pg-form-shell {
  max-width: 780px;
}

.pg-help {
  max-width: none;
}

.pg-support-item strong {
  font-size: 1rem;
}

@media (prefers-reduced-motion: reduce) {
  .pg-marquee-track {
    animation: none;
  }

  [data-parallax] {
    transform: none !important;
  }
}

@media (max-width: 1180px) {
  .pg-utility-inner {
    grid-template-columns: 1fr;
  }

  .pg-utility-meta,
  .pg-utility-right,
  .pg-utility-actions {
    justify-content: center;
  }
}

@media (max-width: 980px) {
  .pg-utility {
    display: none;
  }

  .pg-header {
    top: 0;
  }

  .pg-header-inner {
    grid-template-columns: 1fr auto;
  }

  .pg-marquee {
    mask-image: none;
  }

  .pg-marquee-item {
    width: clamp(180px, 52vw, 240px);
  }

  .pg-photo-banner,
  .pg-service-band,
  .pg-form-band {
    clip-path: polygon(0 3%, 100% 0, 100% 97%, 0 100%);
  }
}

@media (max-width: 640px) {
  .pg-button,
  .pg-utility-button {
    font-size: 0.64rem;
    letter-spacing: 0.06em;
  }

  .pg-photo-banner-content,
  .pg-service-band-content {
    padding: 1.5rem;
  }

  .pg-marquee-item {
    width: 168px;
    min-height: 72px;
    font-size: 0.96rem;
  }
}

.pg-shell {
  height: calc(var(--pg-utility-height) + var(--pg-header-height));
}

.pg-shell-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 97;
}

.pg-utility,
.pg-header {
  position: static;
}

@media (max-width: 980px) {
  .pg-shell {
    height: var(--pg-header-height);
  }
}

/* ======================================================================
   V3 SHARED LAYOUT + MOTION REFINEMENTS
   ====================================================================== */

.pg-utility-inner {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.pg-utility-left,
.pg-utility-right {
  display: flex;
  align-items: center;
}

.pg-utility-left {
  justify-content: flex-start;
}

.pg-utility-right {
  justify-content: flex-end;
  gap: 0.75rem;
}

.pg-utility-actions--left {
  justify-content: flex-start;
}

.pg-utility-actions--right {
  justify-content: flex-end;
}

.pg-brand,
.pg-footer-lockup,
.cap-sheet-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.pg-brand-wordmark,
.pg-footer-logo {
  display: none !important;
}

.pg-brand-mark,
.pg-footer-mark,
.cap-brand-mark {
  position: relative;
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  border: 1px solid rgba(11, 43, 79, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(232, 241, 249, 0.98) 100%);
  box-shadow: 4px 4px 0 rgba(124, 178, 222, 0.9);
  overflow: hidden;
}

.pg-brand-mark::before,
.pg-footer-mark::before,
.cap-brand-mark::before,
.pg-brand-mark::after,
.pg-footer-mark::after,
.cap-brand-mark::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.pg-brand-mark::before,
.pg-footer-mark::before,
.cap-brand-mark::before {
  inset: 8px;
  border: 1px solid rgba(11, 43, 79, 0.14);
}

.pg-brand-mark::after,
.pg-footer-mark::after,
.cap-brand-mark::after {
  inset: 0;
  background:
    linear-gradient(132deg, transparent 0 30%, rgba(11, 43, 79, 0.88) 30% 36%, transparent 36% 58%, rgba(30, 108, 232, 0.58) 58% 64%, transparent 64% 100%);
}

.pg-brand-mark-core,
.pg-footer-mark-core,
.cap-brand-mark-core {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 58%, rgba(11, 43, 79, 0.08) 58% 100%),
    linear-gradient(180deg, transparent 0 64%, rgba(11, 43, 79, 0.08) 64% 100%);
}

.pg-brand-copy,
.pg-footer-copy,
.cap-brand-copy {
  display: grid;
  gap: 0.08rem;
}

.pg-brand-copy strong,
.pg-footer-copy strong,
.cap-brand-copy strong {
  color: var(--pg-navy);
  font-family: "Syncopate", "Poppins", "Segoe UI", Arial, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pg-brand-copy small,
.pg-footer-copy small,
.cap-brand-copy small {
  color: var(--pg-ink-soft);
  font-family: "Space Mono", "Courier New", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.pg-flag-chip {
  width: 36px;
  height: 36px;
  border-radius: 0;
  border: 1px solid rgba(11, 43, 79, 0.18);
  box-shadow: 4px 4px 0 rgba(124, 178, 222, 0.86);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pg-flag-chip:hover {
  transform: translate(-1px, -1px);
  box-shadow: 6px 6px 0 rgba(124, 178, 222, 0.96);
}

.pg-flag-chip::after,
.pg-flag-gloss {
  position: absolute;
  inset: 0;
  content: "";
}

.pg-flag-chip::after {
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.26) 0%, transparent 42%),
    linear-gradient(180deg, transparent 0 74%, rgba(0, 0, 0, 0.12) 100%);
}

.pg-flag-gloss {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, transparent 44%);
}

.pg-logo-strip {
  padding: 1rem 0 1.65rem;
}

.pg-marquee {
  position: relative;
  padding: 0.4rem 0;
}

.pg-marquee::after {
  content: "";
  position: absolute;
  top: 0.2rem;
  bottom: 0.2rem;
  left: 50%;
  width: clamp(120px, 15vw, 180px);
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(11, 43, 79, 0.08), transparent 70%);
  pointer-events: none;
}

.pg-marquee-item {
  width: clamp(186px, 14vw, 214px);
  min-height: 72px;
  padding: 0.85rem 1rem;
  background: linear-gradient(180deg, #ffffff 0%, #eef5fb 100%);
  border: 1px solid rgba(124, 178, 222, 0.34);
  box-shadow: 0 14px 30px rgba(8, 33, 61, 0.06);
  color: #4b5f77;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    color 0.2s ease;
}

.pg-marquee-item.is-near {
  color: #1e6ce8;
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 18px 36px rgba(8, 33, 61, 0.1);
}

.pg-marquee-item.is-focus {
  color: #ffffff;
  background: linear-gradient(180deg, #0b2b4f 0%, #08213d 100%);
  border-color: rgba(124, 178, 222, 0.48);
  transform: translateY(-8px) scale(1.08);
  box-shadow: 0 26px 44px rgba(8, 33, 61, 0.2);
}

.pg-photo-banner,
.pg-service-band,
.pg-form-band {
  clip-path: polygon(0 2%, 100% 0, 100% 98%, 0 100%);
}

.pg-photo-banner {
  min-height: clamp(250px, 25vw, 320px);
}

.pg-service-band {
  min-height: clamp(240px, 24vw, 300px);
}

.pg-form-band .container {
  padding: clamp(3.6rem, 6vw, 4.8rem) 0;
}

.pg-photo-banner-content,
.pg-service-band-content {
  align-content: center;
}

.pg-photo-banner-content h2,
.pg-service-band-content h2,
.pg-form-shell h2 {
  max-width: 680px;
}

.pg-photo-banner-content p,
.pg-service-band-content p,
.pg-form-shell p {
  max-width: 620px;
}

.pg-footer-support {
  gap: 0.85rem;
}

.pg-support-item strong {
  color: var(--pg-navy);
}

@media (max-width: 1260px) {
  .pg-utility-inner {
    grid-template-columns: 1fr;
  }

  .pg-utility-left,
  .pg-utility-right,
  .pg-utility-actions--left,
  .pg-utility-actions--right {
    justify-content: center;
  }
}

@media (max-width: 980px) {
  .pg-photo-banner,
  .pg-service-band,
  .pg-form-band {
    clip-path: polygon(0 1%, 100% 0, 100% 99%, 0 100%);
  }
}

@media (max-width: 640px) {
  .pg-marquee-item {
    width: 160px;
    min-height: 64px;
  }

  .pg-brand-mark,
  .pg-footer-mark,
  .cap-brand-mark {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }
}

/* ======================================================================
   V4 FLAG, LOGO PLACEHOLDER, AND IMAGE SCALE CORRECTIONS
   ====================================================================== */

.pg-brand-placeholder,
.pg-footer-placeholder,
.cap-brand-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 0.55rem;
  border: 1px dashed rgba(11, 43, 79, 0.28);
  color: var(--pg-ink-soft);
  font-family: "Space Mono", "Courier New", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.74);
}

.pg-footer-placeholder,
.cap-brand-placeholder {
  background: rgba(255, 255, 255, 0.9);
}

.pg-brand-mark,
.pg-footer-mark,
.cap-brand-mark,
.pg-brand-mark-core,
.pg-footer-mark-core,
.cap-brand-mark-core,
.pg-brand-copy,
.pg-footer-copy,
.cap-brand-copy {
  display: none !important;
}

.pg-header-inner {
  grid-template-columns: 76px 1fr auto;
}

.pg-flag-chip {
  width: 34px;
  height: 22px;
  border-radius: 2px;
  background: #ffffff;
  border: 1px solid rgba(11, 43, 79, 0.16);
  box-shadow: 4px 4px 0 rgba(124, 178, 222, 0.86);
}

.pg-flag-chip img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pg-flag-gloss {
  z-index: 2;
}

.pg-logo-strip {
  padding: 0.75rem 0 1.25rem;
}

.pg-media-card {
  overflow: hidden;
}

.pg-media-card img {
  min-height: 210px;
}

.pg-home-solution {
  min-height: 228px;
}

.pg-photo-banner,
.pg-service-band {
  position: relative;
  overflow: hidden;
}

.pg-photo-banner img,
.pg-service-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pg-photo-banner {
  min-height: clamp(150px, 16vw, 220px);
}

.pg-service-band {
  min-height: clamp(160px, 17vw, 230px);
}

.pg-photo-banner-content,
.pg-service-band-content {
  align-content: end;
}

.pg-photo-banner-content h2,
.pg-service-band-content h2 {
  max-width: 560px;
  font-size: clamp(1.9rem, 3.6vw, 3.2rem);
  line-height: 0.98;
}

.pg-photo-banner-content p,
.pg-service-band-content p {
  max-width: 520px;
  font-size: 0.94rem;
  line-height: 1.6;
}

.pg-form-band .container {
  padding: clamp(2.9rem, 5vw, 4rem) 0;
}

@media (max-width: 980px) {
  .pg-header-inner {
    grid-template-columns: 1fr auto;
  }

  .pg-photo-banner {
    min-height: 180px;
  }

  .pg-service-band {
    min-height: 190px;
  }
}

@media (max-width: 640px) {
  .pg-brand-placeholder,
  .pg-footer-placeholder,
  .cap-brand-placeholder {
    font-size: 0.56rem;
    letter-spacing: 0.12em;
  }

  .pg-flag-chip {
    width: 30px;
    height: 20px;
    box-shadow: 3px 3px 0 rgba(124, 178, 222, 0.84);
  }

  .pg-home-solution {
    min-height: 206px;
  }
}

/* ======================================================================
   V5 OPERATIONAL RESET
   ====================================================================== */

.pg-brand-placeholder,
.pg-footer-placeholder,
.cap-brand-placeholder {
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--pg-ink-soft);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
}

.pg-utility-button,
.pg-button {
  min-height: 42px;
  padding: 0 1rem;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

.pg-button--ghost {
  background: #ffffff;
  border-color: rgba(11, 43, 79, 0.24);
  color: var(--pg-navy);
}

.pg-header-inner {
  grid-template-columns: 70px 1fr auto;
  gap: 1.2rem;
}

.pg-flag-chip {
  width: 38px;
  height: 26px;
  border-radius: 2px;
  border: 1px solid rgba(11, 43, 79, 0.16);
  box-shadow: 4px 4px 0 rgba(124, 178, 222, 0.86);
}

.pg-photo-banner {
  min-height: clamp(300px, 28vw, 380px);
}

.pg-service-band {
  min-height: clamp(290px, 26vw, 360px);
}

.pg-photo-banner-content,
.pg-service-band-content {
  align-content: end;
  padding: clamp(2.2rem, 4vw, 3.2rem);
}

.pg-photo-banner-content h2,
.pg-service-band-content h2 {
  max-width: 680px;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 0.98;
}

.pg-photo-banner-content p,
.pg-service-band-content p {
  max-width: 560px;
  font-size: 0.98rem;
  line-height: 1.66;
}

.pg-media-card img {
  min-height: 360px;
  object-fit: cover;
}

.pg-footer-bottom {
  color: var(--pg-ink-soft);
  font-size: 0.88rem;
}

.pg-mobile-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: auto;
  left: auto;
  width: min(420px, 100vw);
  height: 100vh;
  max-height: 100vh;
  padding: 1.25rem;
  background: #ffffff;
  border-left: 1px solid rgba(15, 38, 67, 0.08);
  box-shadow: -24px 0 48px rgba(8, 33, 61, 0.16);
  gap: 1.2rem;
  z-index: 120;
  overflow-y: auto;
  isolation: isolate;
}

.pg-mobile-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #ffffff;
  z-index: -1;
}

.pg-mobile-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.pg-mobile-brand-label {
  color: var(--pg-ink-soft);
  font-family: "Space Mono", "Courier New", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pg-mobile-close {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: var(--pg-ink-soft);
  font-size: 2rem;
}

.pg-mobile-panel-body {
  display: grid;
  align-content: start;
  gap: 1rem;
}

.pg-mobile-links,
.pg-mobile-actions {
  display: grid;
  gap: 0.85rem;
}

.pg-mobile-link {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 56px;
  padding: 1rem 1.1rem;
  background: #2a86c8;
  border: 1px solid #2a86c8;
  color: #ffffff;
  font-weight: 600;
  box-shadow: 4px 4px 0 rgba(124, 178, 222, 0.88);
}

.pg-mobile-link::after {
  content: "›";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  opacity: 0.9;
}

.pg-mobile-link.active {
  background: var(--pg-navy);
  border-color: var(--pg-navy);
  color: #ffffff;
}

.pg-mobile-actions .pg-button,
.pg-mobile-actions .pg-button--ghost {
  width: 100%;
}

.pg-mobile-flag-block {
  display: grid;
  gap: 0.55rem;
  padding-top: 0.3rem;
}

.pg-mobile-label {
  color: var(--pg-ink-soft);
  font-family: "Space Mono", "Courier New", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pg-mobile-flag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

@media (max-width: 980px) {
  .pg-header-inner {
    grid-template-columns: 1fr auto;
    min-height: 78px;
  }

  .pg-photo-banner {
    min-height: 260px;
  }

  .pg-service-band {
    min-height: 250px;
  }

  .pg-media-card img {
    min-height: 300px;
  }
}

@media (max-width: 640px) {
  .pg-photo-banner {
    min-height: 220px;
  }

  .pg-service-band {
    min-height: 210px;
  }

  .pg-photo-banner-content,
  .pg-service-band-content {
    padding: 1.5rem;
  }

  .pg-photo-banner-content h2,
  .pg-service-band-content h2 {
    font-size: clamp(1.9rem, 8vw, 2.5rem);
  }

  .pg-media-card img {
    min-height: 240px;
  }

  .pg-mobile-panel {
    width: 100vw;
    padding: 1rem;
  }
}

/* ======================================================================
   V6 HERO / LOOP / IMAGE REBALANCE
   ====================================================================== */

.pg-brand-placeholder,
.pg-footer-placeholder,
.cap-brand-placeholder {
  color: rgba(11, 43, 79, 0.72);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
}

.pg-flag-chip {
  width: 34px;
  height: 22px;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 4px 4px 0 rgba(124, 178, 222, 0.82);
}

.pg-flag-chip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pg-marquee {
  gap: 1.15rem;
  padding: 0.6rem 0;
}

.pg-marquee::after {
  width: clamp(136px, 16vw, 196px);
  background: radial-gradient(circle, rgba(11, 43, 79, 0.1) 0%, rgba(11, 43, 79, 0.04) 42%, transparent 72%);
}

.pg-marquee-track {
  gap: 1.15rem;
}

.pg-marquee-item {
  width: clamp(190px, 14.5vw, 228px);
  min-height: 78px;
  padding: 0.95rem 1.05rem;
  background: linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%);
  border: 1px solid rgba(124, 178, 222, 0.28);
  box-shadow: 0 16px 32px rgba(8, 33, 61, 0.05);
  color: #6a7b90;
  font-size: clamp(1rem, 1.35vw, 1.34rem);
}

.pg-marquee-item.is-near {
  color: var(--pg-blue);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 18px 34px rgba(8, 33, 61, 0.08);
}

.pg-marquee-item.is-focus {
  color: #ffffff;
  background: linear-gradient(180deg, #0d2b4d 0%, #081e36 100%);
  border-color: rgba(124, 178, 222, 0.52);
  transform: translateY(-6px) scale(1.045);
  box-shadow: 0 24px 40px rgba(8, 33, 61, 0.16);
}

.pg-media-card {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.pg-media-card img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.pg-photo-banner {
  min-height: clamp(420px, 36vw, 560px);
}

.pg-service-band {
  min-height: clamp(380px, 34vw, 500px);
}

.pg-photo-banner-content,
.pg-service-band-content {
  align-content: end;
  padding: clamp(2.4rem, 5vw, 4rem);
}

.pg-photo-banner-content h2,
.pg-service-band-content h2 {
  max-width: 680px;
}

.pg-photo-banner-content p,
.pg-service-band-content p {
  max-width: 560px;
}

.pg-mobile-link {
  min-height: 58px;
  box-shadow: 4px 4px 0 rgba(124, 178, 222, 0.88);
}

@media (max-width: 980px) {
  .pg-photo-banner {
    min-height: 320px;
  }

  .pg-service-band {
    min-height: 300px;
  }

  .pg-marquee-item {
    width: 182px;
  }
}

@media (max-width: 640px) {
  .pg-brand-placeholder,
  .pg-footer-placeholder,
  .cap-brand-placeholder {
    font-size: 0.54rem;
  }

  .pg-photo-banner {
    min-height: 280px;
  }

  .pg-service-band {
    min-height: 260px;
  }

  .pg-marquee-item {
    width: 162px;
    min-height: 66px;
    font-size: 0.94rem;
  }
}

/* ======================================================================
   V7 MOTION / MOBILE / MEDIA POLISH
   ====================================================================== */

.pg-marquee {
  position: relative;
  isolation: isolate;
  gap: 1.35rem;
  padding: 0.85rem 0;
  mask-image: none;
  -webkit-mask-image: none;
}

.pg-marquee::before,
.pg-marquee::after {
  display: none;
}

.pg-marquee-track {
  gap: 1.3rem;
  will-change: transform;
  transform: translateZ(0);
}

.pg-marquee-item {
  --marquee-focus: 0;
  position: relative;
  z-index: 1;
  width: clamp(196px, 14.5vw, 236px);
  min-height: 82px;
  padding: 0.95rem 1.1rem;
  border: 1px solid rgba(124, 178, 222, 0.24);
  box-shadow: 0 14px 28px rgba(8, 33, 61, 0.05);
  color: #7b8ca2;
  opacity: calc(0.7 + (var(--marquee-focus) * 0.3));
  transform:
    translateY(calc(var(--marquee-focus) * -5px))
    scale(calc(0.985 + (var(--marquee-focus) * 0.035)));
  transition:
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 620ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 420ms ease,
    border-color 420ms ease,
    color 340ms ease,
    opacity 340ms ease;
  backface-visibility: hidden;
}

.pg-marquee-item.is-near {
  z-index: 2;
  color: #256fa6;
  box-shadow: 0 16px 30px rgba(8, 33, 61, 0.08);
}

.pg-marquee-item.is-focus {
  z-index: 4;
  color: #ffffff;
  background: linear-gradient(180deg, #12345a 0%, #081e36 100%);
  border-color: rgba(124, 178, 222, 0.56);
  box-shadow: 0 20px 34px rgba(8, 33, 61, 0.14);
}

.pg-photo-banner,
.pg-service-band {
  position: relative;
  perspective: 1600px;
  transform-style: preserve-3d;
}

.pg-photo-banner::before,
.pg-service-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 50%, rgba(30, 108, 232, 0.22), transparent 28%),
    radial-gradient(circle at 82% 40%, rgba(124, 178, 222, 0.18), transparent 32%);
  mix-blend-mode: screen;
}

.pg-photo-banner::after,
.pg-service-band::after {
  z-index: 2;
}

.pg-service-band::after {
  background:
    linear-gradient(90deg, rgba(8, 33, 61, 0.92) 0%, rgba(8, 33, 61, 0.76) 50%, rgba(11, 43, 79, 0.46) 100%),
    radial-gradient(circle at 56% 50%, rgba(47, 134, 198, 0.22), transparent 28%);
}

.pg-photo-banner img,
.pg-service-band img {
  transform:
    translate3d(0, var(--parallax-shift, 0px), 0)
    scale(var(--parallax-scale, 1.08))
    rotateX(var(--parallax-tilt, 0deg));
  transform-origin: center center;
  will-change: transform;
  transition: transform 110ms linear, filter 260ms ease;
  filter: saturate(0.96) brightness(0.88) contrast(1.08);
}

.pg-photo-banner-content,
.pg-service-band-content {
  position: relative;
  z-index: 3;
}

.pg-mobile-panel.open {
  animation: pg-mobile-panel-in 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes pg-mobile-panel-in {
  from {
    opacity: 0;
    transform: translate3d(32px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (max-width: 980px) {
  :root {
    --pg-utility-height: 0px;
  }

  .pg-utility {
    display: none;
  }

  .pg-header {
    top: 0;
  }

  .pg-mobile-panel {
    width: 100vw;
    border-left: 0;
    box-shadow: none;
    padding: 1.25rem 1.25rem 2rem;
  }

  .pg-mobile-head {
    margin-bottom: 0.35rem;
  }

  .pg-mobile-brand-label {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
  }

  .pg-mobile-links,
  .pg-mobile-actions {
    gap: 0.95rem;
  }

  .pg-mobile-link {
    min-height: 62px;
    padding: 1rem 1.1rem;
    font-size: 0.98rem;
    letter-spacing: 0.02em;
    box-shadow: 5px 5px 0 rgba(124, 178, 222, 0.9);
  }

  .pg-mobile-actions {
    margin-top: 0.35rem;
  }

  .pg-mobile-actions .pg-button,
  .pg-mobile-actions .pg-button--ghost {
    min-height: 48px;
  }

  .pg-mobile-flag-block {
    margin-top: 0.25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(15, 38, 67, 0.08);
  }

  .pg-photo-banner {
    min-height: 340px;
  }

  .pg-service-band {
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  .pg-marquee {
    gap: 1rem;
    padding: 0.65rem 0;
  }

  .pg-marquee-item {
    width: 170px;
    min-height: 68px;
    font-size: 0.98rem;
  }

  .pg-mobile-panel {
    padding: 1rem 1rem 1.75rem;
  }

  .pg-mobile-link {
    min-height: 58px;
    font-size: 0.94rem;
  }

  .pg-photo-banner {
    min-height: 300px;
  }

  .pg-service-band {
    min-height: 280px;
  }
}

.pg-origin-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 40px;
}

.pg-flag-chip--origin {
  width: 36px;
  height: 24px;
}

.pg-origin-label {
  color: var(--pg-ink-soft);
  font-family: "Space Mono", "Courier New", monospace;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pg-service-band-content h2,
.pg-photo-banner-content h2 {
  color: #ffffff;
  text-shadow: 0 10px 30px rgba(6, 18, 42, 0.26);
}

.pg-service-band-content p,
.pg-photo-banner-content p {
  color: rgba(255, 255, 255, 0.88);
}

.pg-logo-strip {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfe 100%);
}

.pg-logo-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 48%, rgba(47, 134, 198, 0.1), transparent 34%),
    linear-gradient(90deg, transparent 0, rgba(227, 240, 249, 0.24) 28%, rgba(213, 232, 245, 0.32) 50%, rgba(227, 240, 249, 0.24) 72%, transparent 100%);
  pointer-events: none;
}

.pg-logo-strip .container {
  position: relative;
  z-index: 1;
}

@media (max-width: 640px) {
  .pg-logo-strip::before {
    background: radial-gradient(ellipse at 50% 48%, rgba(47, 134, 198, 0.12), transparent 42%);
  }
}

@media (max-width: 980px) {
  .pg-origin-chip {
    margin-bottom: 0.35rem;
  }
}

/* ======================================================================
   V10 LAYOUT STABILITY / TYPE COLLISION HARDENING
   ====================================================================== */

.section-title,
.pg-title,
.pg-card h3,
.pg-panel h3,
.pg-location-card h3,
.pg-copy,
.pg-lead,
.pg-card p,
.pg-panel p,
.pg-location-card p,
.pg-value-list li,
.pg-detail-list li {
  overflow-wrap: anywhere;
}

.section-title,
.pg-title,
.pg-card h3,
.pg-panel h3,
.pg-location-card h3 {
  text-wrap: balance;
}

.pg-copy,
.pg-lead,
.pg-card p,
.pg-panel p,
.pg-location-card p,
.pg-value-list li,
.pg-detail-list li {
  text-wrap: pretty;
}

.section-title {
  line-height: 1.01;
  letter-spacing: -0.04em;
}

.pg-title {
  max-width: 12ch;
  line-height: 0.99;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.pg-card h3,
.pg-panel h3,
.pg-location-card h3 {
  line-height: 1.12;
}

@media (max-width: 980px) {
  .pg-kicker,
  .pg-logo-label {
    letter-spacing: 0.11em;
  }

  .pg-title {
    max-width: 10.8ch;
    font-size: clamp(2rem, 7.1vw, 3.1rem);
    line-height: 1.02;
    letter-spacing: -0.046em;
  }

  .section-title {
    font-size: clamp(1.95rem, 7vw, 2.95rem);
    line-height: 1.03;
  }

  .pg-card h3,
  .pg-panel h3,
  .pg-location-card h3 {
    font-size: clamp(1.18rem, 3vw, 1.34rem);
    line-height: 1.16;
  }
}

@media (max-width: 640px) {
  .pg-kicker,
  .pg-logo-label {
    font-size: 0.72rem;
    letter-spacing: 0.09em;
  }

  .pg-title {
    max-width: 11ch;
    font-size: clamp(1.78rem, 9vw, 2.34rem);
    line-height: 1.05;
    letter-spacing: -0.038em;
  }

  .section-title {
    font-size: clamp(1.78rem, 8.8vw, 2.28rem);
    line-height: 1.05;
    letter-spacing: -0.036em;
  }

  .pg-copy,
  .pg-lead,
  .pg-card p,
  .pg-panel p,
  .pg-location-card p,
  .pg-value-list li,
  .pg-detail-list li {
    font-size: 0.95rem;
    line-height: 1.72;
  }

  .pg-button-row {
    gap: 0.75rem;
    margin-top: 1.4rem;
  }

  .pg-card,
  .pg-panel,
  .pg-location-card {
    padding: 1.2rem;
  }

  .pg-card h3,
  .pg-panel h3,
  .pg-location-card h3 {
    font-size: 1.08rem;
    line-height: 1.18;
  }
}

/* ======================================================================
   V11 FINAL SPACING / CTA / MARQUEE HARDENING
   ====================================================================== */

.pg-title,
.pg-form-shell h2,
.pg-photo-banner-content h2,
.pg-service-band-content h2 {
  word-break: normal;
  hyphens: none;
}

.pg-title--wide {
  max-width: none;
  line-height: 1.03;
  letter-spacing: -0.042em;
}

.pg-kicker--light {
  color: rgba(255, 255, 255, 0.82);
}

.pg-photo-banner-content--panel {
  place-items: start;
  align-content: end;
}

.pg-photo-banner-copy-card {
  max-width: min(640px, 100%);
  padding: 1.1rem 1.15rem;
  background: rgba(8, 28, 52, 0.48);
  border: 1px solid rgba(124, 178, 222, 0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 18px 34px rgba(6, 18, 42, 0.18);
}

.pg-photo-banner-copy-card .pg-kicker {
  margin-bottom: 0.7rem;
}

.pg-photo-banner-copy-card h2 {
  max-width: 12ch;
}

.pg-photo-banner-copy-card p {
  max-width: 48ch;
  margin-top: 0.75rem;
  font-size: 1rem;
  line-height: 1.7;
}

.pg-form-title--tight {
  max-width: 15ch;
}

.pg-form-shell h2 {
  line-height: 1.02;
  letter-spacing: -0.046em;
}

.pg-photo-banner-content p,
.pg-service-band-content p,
.pg-form-shell p {
  text-wrap: pretty;
  overflow-wrap: anywhere;
}

.pg-marquee-item {
  transition:
    transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.38s ease;
}

.pg-marquee-item.is-near {
  transform:
    translateY(calc(var(--marquee-focus) * -3px))
    scale(calc(1 + (var(--marquee-focus) * 0.018)));
}

.pg-marquee-item.is-focus {
  transform: translateY(-6px) scale(1.04);
}

@media (max-width: 980px) {
  .pg-photo-banner-content h2,
  .pg-service-band-content h2,
  .pg-form-shell h2 {
    max-width: 12.5ch;
    font-size: clamp(1.92rem, 5.9vw, 2.8rem);
    line-height: 1.05;
    letter-spacing: -0.035em;
  }

  .pg-photo-banner-content p,
  .pg-service-band-content p,
  .pg-form-shell p {
    font-size: 0.98rem;
    line-height: 1.68;
  }
}

@media (max-width: 640px) {
  .pg-title--wide {
    line-height: 1.08;
    letter-spacing: -0.03em;
  }

  .pg-photo-banner-content h2,
  .pg-service-band-content h2,
  .pg-form-shell h2 {
    max-width: 11.8ch;
    font-size: clamp(1.66rem, 7.2vw, 2.08rem);
    line-height: 1.08;
    letter-spacing: -0.028em;
  }

  .pg-photo-banner-copy-card {
    padding: 0.95rem 1rem;
  }

  .pg-photo-banner-copy-card p,
  .pg-service-band-content p,
  .pg-form-shell p {
    font-size: 0.94rem;
    line-height: 1.68;
  }
}

/* ======================================================================
   V12 PHASE 1 POSITIONING + MARQUEE CLEANUP
   ====================================================================== */

.pg-logo-strip {
  background: #ffffff;
}

.pg-logo-strip::before {
  background: none;
}

.pg-marquee-item,
.pg-marquee-item:nth-child(3n) {
  opacity: 1;
  transform: translateY(0) scale(1);
  background: #ffffff;
  border-color: rgba(11, 43, 79, 0.1);
  box-shadow: 0 14px 28px rgba(8, 33, 61, 0.05);
  color: #6d7f96;
}

.pg-marquee-item.is-near {
  color: #6d7f96;
  transform: translateY(-2px) scale(1.015);
  box-shadow: 0 18px 30px rgba(8, 33, 61, 0.07);
}

.pg-marquee-item.is-focus {
  color: #ffffff;
  background: linear-gradient(180deg, #12345a 0%, #081e36 100%);
  border-color: rgba(124, 178, 222, 0.56);
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 20px 34px rgba(8, 33, 61, 0.14);
}

@media (max-width: 640px) {
  .pg-logo-strip::before {
    background: none;
  }
}

/* ======================================================================
   V13 REAL BRAND ASSETS
   ====================================================================== */

.pg-brand-placeholder,
.pg-footer-placeholder,
.cap-brand-placeholder,
.pg-mobile-brand-label {
  display: none !important;
}

.pg-brand,
.pg-footer-lockup,
.pg-mobile-brand,
.cap-sheet-brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.pg-brand-wordmark,
.pg-footer-wordmark,
.pg-mobile-brand-wordmark,
.cap-brand-logo {
  display: block !important;
  width: 100%;
  height: auto;
}

.pg-header-inner {
  grid-template-columns: minmax(220px, 248px) 1fr auto;
  gap: 1.7rem;
}

.pg-brand-wordmark {
  max-width: 232px;
}

.pg-footer-lockup {
  width: fit-content;
}

.pg-footer-wordmark {
  max-width: 258px;
}

.pg-mobile-brand {
  max-width: 180px;
}

.pg-mobile-brand-wordmark {
  max-width: 180px;
}

.cap-brand-logo {
  max-width: 236px;
}

@media (max-width: 980px) {
  .pg-header-inner {
    grid-template-columns: minmax(170px, 214px) 1fr auto;
    gap: 1rem;
  }

  .pg-brand-wordmark {
    max-width: 198px;
  }
}

@media (max-width: 640px) {
  .pg-header-inner {
    grid-template-columns: minmax(140px, 172px) auto;
    gap: 0.85rem;
  }

  .pg-brand-wordmark,
  .pg-mobile-brand-wordmark {
    max-width: 164px;
  }

  .pg-footer-wordmark {
    max-width: 220px;
  }

  .cap-brand-logo {
    max-width: 188px;
  }
}

/* ======================================================================
   V14 MOBILE HEADER + SECTION SPACING HARDENING
   ====================================================================== */

.pg-header-actions {
  justify-self: end;
}

.pg-nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 980px) {
  .pg-header-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 74px;
    gap: 0.9rem;
  }

  .pg-brand {
    min-width: 0;
    max-width: 180px;
  }

  .pg-header-actions {
    margin-left: auto;
  }

  .pg-section,
  .pg-section-soft,
  .pg-section-plain {
    padding: 3.75rem 0;
  }

  .pg-logo-strip {
    padding: 1rem 0 1.6rem;
  }

  .pg-photo-banner,
  .pg-service-band,
  .pg-form-band {
    clip-path: none;
  }

  .pg-photo-banner {
    min-height: 260px;
  }

  .pg-service-band {
    min-height: 240px;
  }

  .pg-form-band .container {
    padding: 3.6rem 0;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--max-width), calc(100% - 24px));
  }

  .pg-header-inner {
    min-height: 70px;
    gap: 0.7rem;
  }

  .pg-brand {
    max-width: 156px;
  }

  .pg-brand-wordmark {
    max-width: 156px;
  }

  .pg-nav-toggle {
    width: 46px;
    height: 46px;
    padding: 0.55rem;
  }

  .pg-mobile-panel {
    padding: 0.95rem 0.9rem 1.4rem;
  }

  .pg-mobile-brand,
  .pg-mobile-brand-wordmark {
    max-width: 152px;
  }

  .pg-section,
  .pg-section-soft,
  .pg-section-plain {
    padding: 3.15rem 0;
  }

  .pg-photo-banner {
    min-height: 220px;
  }

  .pg-service-band {
    min-height: 210px;
  }

  .pg-photo-banner-content,
  .pg-service-band-content {
    padding: 1.25rem;
  }

  .pg-photo-banner-content h2,
  .pg-service-band-content h2,
  .pg-form-shell h2 {
    max-width: 12.4ch;
    font-size: clamp(1.48rem, 7vw, 1.9rem);
    line-height: 1.1;
    letter-spacing: -0.022em;
  }

  .pg-photo-banner-copy-card {
    padding: 0.85rem 0.95rem;
  }

  .pg-form-band .container {
    padding: 3.15rem 0;
  }
}

/* ======================================================================
   V15 FINAL MOBILE / HEADER / GRID STABILITY
   ====================================================================== */

.pg-stack,
.pg-panel,
.pg-card,
.pg-mini-grid,
.pg-about-overview > *,
.pg-about-leadership > *,
.pg-contact-layout > *,
.pg-region-grid > *,
.pg-inner-hero-grid > *,
.pg-service-row > *,
.pg-split-intro > *,
.pg-home-regions > *,
.pg-form-shell,
.pg-button-row,
.pg-header-actions {
  min-width: 0;
}

.pg-panel,
.pg-card,
.pg-form-shell,
.pg-button,
.pg-mobile-link,
.pg-office-list span,
.pg-office-list a,
.pg-value-list li,
.pg-detail-list li,
.pg-copy,
.pg-lead {
  overflow-wrap: anywhere;
}

.pg-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.pg-nav-toggle {
  position: relative;
  z-index: 4;
  flex: 0 0 auto;
}

.pg-mobile-panel[hidden] {
  display: none !important;
}

.pg-mobile-panel.open {
  display: grid !important;
}

@media (max-width: 980px) {
  .pg-header-inner {
    grid-template-columns: minmax(0, 1fr) 48px;
    align-items: center;
  }

  .pg-brand {
    max-width: 148px;
  }

  .pg-brand-wordmark {
    max-width: 148px;
  }

  .pg-header-actions {
    width: 48px;
    min-width: 48px;
  }

  .pg-nav-toggle {
    display: inline-flex !important;
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    padding: 0.55rem;
    margin-left: auto;
  }

  .pg-inner-hero-grid,
  .pg-about-overview,
  .pg-about-leadership,
  .pg-contact-layout,
  .pg-region-grid,
  .pg-mini-grid,
  .pg-split-intro,
  .pg-home-regions,
  .pg-service-row,
  .pg-service-row.reverse {
    grid-template-columns: 1fr !important;
    gap: 1.35rem;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--max-width), calc(100% - 20px));
  }

  .pg-header-inner {
    grid-template-columns: minmax(0, 1fr) 46px;
    min-height: 68px;
  }

  .pg-brand {
    max-width: 136px;
  }

  .pg-brand-wordmark {
    max-width: 136px;
  }

  .pg-header-actions {
    width: 46px;
    min-width: 46px;
  }

  .pg-nav-toggle {
    width: 46px;
    height: 46px;
    min-width: 46px;
    min-height: 46px;
    padding: 0.5rem;
  }

  .pg-mobile-panel {
    left: 0;
    right: 0;
    width: 100vw;
    max-width: 100vw;
    padding: 0.95rem 0.9rem 1.35rem;
  }

  .pg-mobile-links,
  .pg-mobile-actions {
    gap: 0.8rem;
  }

  .pg-mobile-link {
    min-height: 54px;
    padding: 0.9rem 0.95rem;
    font-size: 0.9rem;
  }
}

/* ======================================================================
   V16 BRAND + MOBILE HEADER HARD RESET
   ====================================================================== */

.pg-nav-toggle {
  display: none !important;
  flex-direction: column !important;
}

.pg-nav-toggle span {
  width: 22px !important;
  flex: 0 0 2px;
  margin: 4px 0 !important;
}

.pg-brand,
.pg-mobile-brand {
  min-width: 0;
}

.pg-brand-wordmark,
.pg-mobile-brand-wordmark,
.pg-footer-wordmark,
.cap-brand-logo {
  display: block !important;
  width: 100%;
  height: auto;
}

.pg-brand {
  width: clamp(196px, 18vw, 250px);
  max-width: none !important;
}

.pg-mobile-brand {
  width: min(220px, 62vw);
}

.pg-brand-wordmark {
  max-width: none !important;
}

.pg-header-actions {
  justify-self: end;
}

.pg-panel,
.pg-card,
.pg-form-shell,
.pg-detail-list,
.pg-value-list,
.pg-office-list,
.pg-copy,
.pg-lead,
.pg-title {
  overflow-wrap: anywhere;
}

@media (min-width: 981px) {
  .pg-nav-toggle {
    display: none !important;
  }
}

@media (max-width: 980px) {
  .pg-main,
  .pg-section,
  .pg-section-soft,
  .pg-section-plain,
  .pg-inner-hero-panel,
  .pg-panel,
  .pg-card,
  .pg-mini-grid {
    max-width: 100% !important;
  }

  .pg-inner-hero-panel,
  .pg-panel,
  .pg-card {
    width: 100% !important;
  }

  .pg-header-inner {
    grid-template-columns: minmax(0, 1fr) 52px !important;
    min-height: 74px !important;
    gap: 0.75rem !important;
  }

  .pg-brand {
    width: clamp(154px, 46vw, 186px) !important;
  }

  .pg-header-actions {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    width: 52px !important;
    min-width: 52px !important;
  }

  .pg-header-actions .pg-button--nav {
    display: none !important;
  }

  .pg-nav-toggle {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 52px !important;
    height: 52px !important;
    min-width: 52px !important;
    min-height: 52px !important;
    margin: 0 !important;
    padding: 0.55rem !important;
    border: 1px solid rgba(15, 38, 67, 0.16) !important;
    background: #ffffff !important;
    box-shadow: none !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}

@media (max-width: 640px) {
  .pg-header-inner {
    grid-template-columns: minmax(0, 1fr) 48px !important;
    min-height: 70px !important;
  }

  .pg-brand {
    width: clamp(148px, 49vw, 176px) !important;
  }

  .pg-header-actions {
    width: 48px !important;
    min-width: 48px !important;
  }

  .pg-nav-toggle {
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    min-height: 48px !important;
  }
}

/* ======================================================================
   V17 APPROVED LOGO + HEADER VISIBILITY FIX
   ====================================================================== */

.pg-brand,
.pg-mobile-brand,
.pg-footer-lockup,
.cap-sheet-brand {
  background: transparent !important;
}

.pg-brand-wordmark,
.pg-mobile-brand-wordmark,
.pg-footer-wordmark,
.cap-brand-logo {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  opacity: 1 !important;
  filter: none !important;
  mix-blend-mode: normal !important;
}

.pg-brand {
  width: clamp(238px, 19vw, 318px) !important;
}

.pg-footer-lockup {
  width: min(320px, 100%) !important;
}

.pg-mobile-brand {
  width: min(228px, 64vw) !important;
}

.pg-mobile-close {
  color: var(--pg-navy) !important;
  background: #ffffff !important;
  border: 1px solid rgba(15, 38, 67, 0.12) !important;
}

.pg-nav-toggle {
  display: none !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  background: #ffffff !important;
  border: 1px solid rgba(15, 38, 67, 0.14) !important;
  box-shadow: none !important;
}

.pg-nav-toggle span {
  display: block !important;
  width: 22px !important;
  height: 2px !important;
  flex: 0 0 2px !important;
  margin: 4px 0 !important;
  border-radius: 999px !important;
  align-self: center !important;
  background: var(--pg-navy) !important;
  opacity: 1 !important;
}

.pg-mobile-panel {
  z-index: 40 !important;
}

.pg-mobile-panel.open {
  display: grid !important;
}

@media (min-width: 981px) {
  .pg-nav-toggle {
    display: none !important;
  }
}

@media (max-width: 980px) {
  .pg-header-actions {
    width: 52px !important;
    min-width: 52px !important;
    justify-self: end !important;
  }

  .pg-header-actions .pg-button--nav {
    display: none !important;
  }

  .pg-nav-toggle {
    display: inline-flex !important;
    width: 52px !important;
    height: 52px !important;
    min-width: 52px !important;
    min-height: 52px !important;
    padding: 0.65rem !important;
  }

  .pg-brand {
    width: clamp(168px, 48vw, 214px) !important;
  }
}

@media (max-width: 640px) {
  .pg-header-inner {
    grid-template-columns: minmax(0, 1fr) 48px !important;
  }

  .pg-header-actions {
    width: 48px !important;
    min-width: 48px !important;
  }

  .pg-nav-toggle {
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    min-height: 48px !important;
  }

  .pg-brand {
    width: clamp(156px, 50vw, 192px) !important;
  }
}

/* ======================================================================
   V18 FINAL LOGO / HEADER / MOBILE STABILITY
   ====================================================================== */

.pg-brand,
.pg-mobile-brand,
.pg-footer-lockup,
.cap-sheet-brand {
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.pg-brand-wordmark,
.pg-mobile-brand-wordmark,
.pg-footer-wordmark,
.cap-brand-logo {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  max-width: 100% !important;
  object-fit: contain !important;
  object-position: left center !important;
  background: transparent !important;
}

.pg-brand {
  width: clamp(232px, 18vw, 296px) !important;
}

.pg-mobile-brand {
  width: min(220px, 64vw) !important;
}

.pg-footer-lockup {
  width: min(286px, 100%) !important;
}

.cap-sheet-brand {
  width: min(260px, 100%) !important;
}

.pg-nav-toggle {
  display: none !important;
  background: #ffffff !important;
  border: 1px solid rgba(15, 38, 67, 0.16) !important;
  box-shadow: none !important;
}

.pg-nav-toggle span {
  background: var(--pg-navy) !important;
}

.pg-form-submit {
  justify-self: start !important;
  width: auto !important;
  max-width: 100% !important;
  white-space: nowrap !important;
}

@media (min-width: 981px) {
  .pg-nav-toggle {
    display: none !important;
  }
}

@media (max-width: 980px) {
  .pg-header-actions {
    width: 52px !important;
    min-width: 52px !important;
  }

  .pg-header-actions .pg-button--nav {
    display: none !important;
  }

  .pg-nav-toggle {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 52px !important;
    height: 52px !important;
    min-width: 52px !important;
    min-height: 52px !important;
    padding: 0.65rem !important;
  }

  .pg-brand {
    width: clamp(176px, 50vw, 214px) !important;
  }

  .pg-footer-lockup {
    width: min(250px, 100%) !important;
  }
}

@media (max-width: 640px) {
  .pg-header-inner {
    grid-template-columns: minmax(0, 1fr) 48px !important;
  }

  .pg-brand {
    width: clamp(164px, 54vw, 188px) !important;
  }

  .pg-mobile-brand {
    width: min(184px, 70vw) !important;
  }

  .pg-header-actions {
    width: 48px !important;
    min-width: 48px !important;
  }

  .pg-nav-toggle {
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    min-height: 48px !important;
  }

  .pg-form-submit {
    width: 100% !important;
    white-space: normal !important;
  }
}

/* ======================================================================
   V19 FINAL LOGO / CONTACT / MOBILE BUTTON HARDENING
   ====================================================================== */

.pg-brand,
.pg-mobile-brand,
.pg-footer-lockup,
.cap-sheet-brand,
.pg-brand-wordmark,
.pg-mobile-brand-wordmark,
.pg-footer-wordmark,
.cap-brand-logo {
  background: transparent !important;
  box-shadow: none !important;
  filter: none !important;
  opacity: 1 !important;
}

.pg-brand-wordmark,
.pg-mobile-brand-wordmark,
.pg-footer-wordmark,
.cap-brand-logo {
  image-rendering: auto !important;
  object-fit: contain !important;
  object-position: left center !important;
}

.pg-nav-toggle,
.pg-mobile-close {
  color: #0b2b4f !important;
}

.pg-nav-toggle span {
  background: #0b2b4f !important;
}

.pg-form-submit {
  min-height: 54px !important;
  line-height: 1.15 !important;
}

@media (max-width: 980px) {
  .pg-header-actions {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
}

/* ======================================================================
   V20 FINAL BRAND / MOBILE MENU / HEADER LOCK
   ====================================================================== */

.pg-header .pg-brand,
.pg-header .pg-mobile-brand,
.pg-footer .pg-footer-lockup,
.cap-sheet-brand {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  isolation: isolate !important;
}

.pg-header .pg-brand-wordmark,
.pg-header .pg-mobile-brand-wordmark,
.pg-footer .pg-footer-wordmark,
.cap-sheet-brand .cap-brand-logo {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  max-width: 100% !important;
  object-fit: contain !important;
  object-position: left center !important;
  background: transparent !important;
  filter: none !important;
  opacity: 1 !important;
  mix-blend-mode: normal !important;
}

.pg-header .pg-brand {
  width: clamp(228px, 18vw, 294px) !important;
}

.pg-footer .pg-footer-lockup {
  width: min(278px, 100%) !important;
}

.pg-nav-toggle,
.pg-mobile-close {
  color: #0b2b4f !important;
  background: #ffffff !important;
  border: 1px solid rgba(11, 43, 79, 0.16) !important;
  box-shadow: none !important;
}

.pg-nav-toggle {
  display: none !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 5px !important;
}

.pg-nav-toggle span {
  display: block !important;
  width: 22px !important;
  height: 2.5px !important;
  margin: 0 !important;
  border-radius: 999px !important;
  background: #0b2b4f !important;
  opacity: 1 !important;
}

@media (max-width: 980px) {
  .pg-nav-toggle {
    display: inline-flex !important;
  }
}

/* ======================================================================
   V21 FINAL LOGO / NAV TOGGLE LOCK
   ====================================================================== */

.pg-header .pg-brand-wordmark,
.pg-header .pg-mobile-brand-wordmark,
.pg-footer .pg-footer-wordmark,
.cap-sheet-brand .cap-brand-logo {
  background: transparent !important;
  box-shadow: none !important;
  image-rendering: auto !important;
}

@media (min-width: 981px) {
  .pg-nav-toggle {
    display: none !important;
  }
}
