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

body {
    font-family: 'Raleway', system-ui, -apple-system, sans-serif;
    background: #0a0f1e;
    color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  a { color: inherit; }

  /* ── Design tokens ──────────────────────────────────────────────────── */
  :root {
    --font-base: 'Raleway', system-ui, -apple-system, sans-serif;

    /* Brand palette */
    --navy:   #0B1A33;
    --navy2:  #071120;
    --gold:   #90C53E;
    --gold-d: #3D7014;
    --light:  #F7F7F4;
    --white:  #FFFFFF;

    /* Type scale */
    --text-xs:   11px;
    --text-sm:   14px;
    --text-base: 17px;
    --text-md:   19px;
    --text-lg:   20px;
    --text-xl:   24px;
    --text-2xl:  32px;
    --text-3xl:  42px;
    --text-4xl:  54px;
    --text-stat: 56px;

    /* Weight tokens */
    --weight-normal:    400;
    --weight-medium:    500;
    --weight-semibold:  600;
    --weight-bold:      700;
    --weight-extrabold: 800;

    /* Line-height */
    --leading-tight:   1.08;
    --leading-snug:    1.25;
    --leading-normal:  1.5;
    --leading-relaxed: 1.75;

    /* Letter-spacing */
    --tracking-tight:   -0.02em;
    --tracking-normal:   0em;
    --tracking-wide:     0.04em;
    --tracking-widest:   0.14em;

    /* Spacing */
    --space-xs:  0.5rem;
    --space-sm:  1rem;
    --space-md:  1.5rem;
    --space-lg:  2.5rem;
    --space-xl:  4rem;
    --space-2xl: 6rem;
    --space-3xl: 9rem;

    /* Radii */
    --btn-radius:     6px;
    --card-radius:    16px;
    --card-radius-lg: 20px;
    --pill-radius:    50px;

    /* Shadows */
    --shadow-card:       0 2px 16px rgba(11,26,51,.07);
    --shadow-card-hover: 0 20px 56px rgba(11,26,51,.18);
    --shadow-cta:        0 4px 24px rgba(144,197,62,.3);
    --shadow-gold-glow:  0 0 28px rgba(144,197,62,.35);

    /* Semantic color tokens */
    --color-body-on-light:  #374151;
    --color-muted-on-light: #4B5563;
    --color-body-on-dark:   rgba(255,255,255,.92);
    --color-muted-on-dark:  rgba(255,255,255,.75);

    /* Prose measure */
    --measure-prose: 62ch;
  }

  /* ── Type scale utilities ──────────────────────────────────────────── */
  .gts-display { font-family: var(--font-base); font-size: var(--text-4xl); font-weight: var(--weight-extrabold); line-height: var(--leading-tight);  letter-spacing: var(--tracking-tight); overflow-wrap: break-word; word-break: break-word; }
  .gts-h1      { font-family: var(--font-base); font-size: var(--text-3xl); font-weight: var(--weight-bold);      line-height: var(--leading-tight);  letter-spacing: var(--tracking-tight); }
  .gts-h2      { font-family: var(--font-base); font-size: var(--text-2xl); font-weight: var(--weight-bold);      line-height: var(--leading-snug);   letter-spacing: var(--tracking-tight); }
  .gts-h3      { font-family: var(--font-base); font-size: var(--text-xl);  font-weight: var(--weight-semibold);  line-height: var(--leading-snug); }
  .gts-h4      { font-family: var(--font-base); font-size: var(--text-lg);  font-weight: var(--weight-semibold);  line-height: var(--leading-normal); }
  .gts-lead    { font-family: var(--font-base); font-size: var(--text-md);  font-weight: var(--weight-normal);    line-height: var(--leading-relaxed); }
  .gts-body    { font-family: var(--font-base); font-size: var(--text-base);font-weight: var(--weight-normal);    line-height: var(--leading-relaxed); }
  .gts-small   { font-family: var(--font-base); font-size: var(--text-sm);  font-weight: var(--weight-medium);    line-height: var(--leading-normal); }
  .gts-eyebrow { font-family: var(--font-base); font-size: var(--text-xs);  font-weight: var(--weight-bold);      letter-spacing: var(--tracking-widest); text-transform: uppercase; margin-bottom: 1rem; }
  .gts-stat    { font-family: var(--font-base); font-size: var(--text-stat);font-weight: var(--weight-extrabold); line-height: 1; letter-spacing: var(--tracking-tight); }

  /* ── Layout ─────────────────────────────────────────────────────────── */
  .gts-container   { max-width: 1280px; margin: 0 auto; width: 100%; }
  .gts-page-center { min-height: 100vh; display: flex; align-items: center; justify-content: center; }

  /* ── Responsive headings ─────────────────────────────────────────────── */
  .gts-hero-title    { font-size: clamp(42px, 5.8vw, 82px); font-weight: 800; line-height: 1.08;  letter-spacing: -0.02em; max-width: 820px; margin: 0 0 22px; }
  .gts-hero-sub      { font-size: clamp(16px, 1.5vw, 19px); line-height: 1.8;  max-width: 520px;  margin: 0 0 38px; }
  .gts-section-h2    { font-size: clamp(26px, 3vw, 42px);   font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; margin: 0; }
  .gts-section-h2-sm { font-size: clamp(22px, 2.5vw, 34px); font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; margin: 0; }
  .gts-cta-h2        { font-size: clamp(28px, 4vw, 52px);   font-weight: 800; line-height: 1.1;  letter-spacing: -0.025em; margin: 0; }

  /* ── Button system ───────────────────────────────────────────────────── */
  .gts-btn-solid      { display: inline-flex; align-items: center; gap: 8px;  background: var(--gold); color: var(--white); padding: 16px 36px; border-radius: var(--btn-radius); font-size: 15px; font-weight: 700; font-family: var(--font-base); text-decoration: none; letter-spacing: 0.04em; text-transform: uppercase; box-shadow: 0 4px 24px rgba(144,197,62,.25); cursor: pointer; border: none; white-space: nowrap; }
  .gts-btn-ghost      { display: inline-flex; align-items: center; gap: 8px;  background: transparent; color: var(--white); padding: 16px 28px; border-radius: var(--btn-radius); font-size: 15px; font-weight: 600; font-family: var(--font-base); text-decoration: none; letter-spacing: 0.03em; border: 1.5px solid rgba(255,255,255,.28); cursor: pointer; white-space: nowrap; }
  .gts-btn-pill       { display: inline-flex; align-items: center; gap: 10px; background: var(--gold); color: var(--white); padding: 18px 44px; border-radius: 50px; font-size: 16px; font-weight: 700; font-family: var(--font-base); text-decoration: none; cursor: pointer; border: none; white-space: nowrap; }
  .gts-btn-pill-ghost { display: inline-flex; align-items: center; gap: 10px; background: transparent; color: var(--white); padding: 18px 36px; border-radius: 50px; font-size: 16px; font-weight: 600; font-family: var(--font-base); text-decoration: none; border: 1.5px solid rgba(255,255,255,.2); cursor: pointer; white-space: nowrap; }

/* ── Responsive heading overrides ───────────────────────────────────────── */
@media (max-width: 768px) {
  .gts-display { font-size: clamp(2rem, 10.5vw, 3.375rem); }
  .gts-h1      { font-size: clamp(1.6rem, 8vw,   2.625rem); }
  .ps-media-hero     { grid-template-columns: 1fr; height: auto; }
  .ps-media-hero-img { height: 200px; position: relative; overflow: hidden; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════════════════════════════════ */

/* ── Utility bar ── */
.gnav-utility {
  position: fixed; top: 0; left: 0; right: 0; z-index: 101;
  height: 38px;
  background: rgba(4,10,20,.95);
  border-bottom: 1px solid rgba(255,255,255,.06);
  backdrop-filter: blur(14px);
  display: flex; align-items: center;
  transform: translateY(0);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), background 0.18s ease;
}
.gnav-utility--transparent { background: rgba(4,10,20,.25); border-bottom: none; }
.gnav-utility--hidden { transform: translateY(-38px); }

.gnav-utility-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 2rem; width: 100%;
  display: flex; justify-content: flex-end; align-items: center; gap: 2rem;
}
.gnav-utility-link {
  display: flex; align-items: center; gap: 7px;
  font-size: 13px; color: var(--white); text-decoration: none;
  font-weight: 500; letter-spacing: 0.02em; white-space: nowrap;
}
.gnav-utility-icon { color: var(--gold); }

/* ── Main nav bar ── */
.gnav-bar {
  position: fixed; top: 38px; left: 0; right: 0; z-index: 100;
  background: var(--navy2);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(144,197,62,.12);
  box-shadow: 0 2px 24px rgba(0,0,0,.4);
  overflow: hidden;
  transition: top 0.35s cubic-bezier(0.4,0,0.2,1), background 0.18s ease, box-shadow 0.18s ease;
}
.gnav-bar--transparent {
  background: rgba(7,17,32,.42);
  border-bottom: 1px solid rgba(255,255,255,.08);
  box-shadow: none;
}
.gnav-bar--hidden-utility { top: 0; }

.gnav-nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 2rem;
  height: 107px; display: flex; align-items: center; gap: 1.25rem;
}
.gnav-logo-link { display: flex; align-items: center; flex-shrink: 0; text-decoration: none; }
.gnav-logo-img  { height: 76px; width: auto; object-fit: contain; }

/* ── Desktop links ── */
.gnav-desktop-links {
  display: flex; align-items: center; gap: 1.25rem; flex: 1; justify-content: center;
}
.gnav-services-btn {
  background: none; border: none; cursor: pointer;
  display: flex; align-items: center; gap: 3px;
  font-size: 14px; font-weight: 500; letter-spacing: 0.03em;
  white-space: nowrap; color: var(--white); padding: 0;
  transition: color .2s;
}
.gnav-services-btn--open { color: var(--gold); }
.gnav-services-chevron { transition: transform .25s; }
.gnav-services-chevron--open { transform: rotate(180deg); }

.gnav-link { transition: color .2s; font-size: 14px; font-weight: 500; letter-spacing: 0.03em; white-space: nowrap; color: var(--white); text-decoration: none; }
.gnav-link:hover { color: var(--gold) !important; }

/* ── Right area ── */
.gnav-right { display: flex; align-items: center; gap: 1.25rem; flex-shrink: 0; margin-left: auto; }
.gnav-lang {
  background: none; border: none; cursor: pointer;
  display: flex; align-items: center; gap: 6px; padding: 0;
}
.gnav-lang-sep { font-size: 11px; color: rgba(255,255,255,.25); }
.gnav-lang-opt { font-size: 13px; font-weight: 400; letter-spacing: 0.08em; color: rgba(255,255,255,.55); transition: color .2s; }
.gnav-lang-opt--active { font-weight: 700; color: var(--white); }

.gnav-cta {
  background: var(--gold); color: var(--white);
  padding: 10px 24px; border-radius: var(--btn-radius);
  font-size: 14px; font-weight: 700; letter-spacing: 0.04em;
  white-space: nowrap; box-shadow: 0 4px 16px rgba(0,0,0,.3);
  text-decoration: none;
}
.gnav-hamburger {
  display: none; background: none; border: none; cursor: pointer;
  color: var(--white); padding: 4px;
}

/* ── Mobile menu ── */
.gnav-mobile-menu {
  background: var(--navy2);
  border-top: 1px solid rgba(144,197,62,.15);
  padding: 1.25rem 1.5rem 2rem;
}
.gnav-mobile-svc-section { border-bottom: 1px solid rgba(255,255,255,.07); }
.gnav-mobile-svc-btn {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0; font-size: 16px; font-weight: 500; color: var(--white);
}
.gnav-mobile-svc-chevron { transition: transform .25s; color: var(--gold); }
.gnav-mobile-svc-chevron--open { transform: rotate(180deg); }
.gnav-mobile-svc-list { padding-bottom: 12px; }
.gnav-mobile-all-link {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 12px; border-radius: 8px;
  font-size: 14px; font-weight: 700; color: var(--gold);
  text-decoration: none; margin-bottom: 4px;
  background: rgba(144,197,62,.08);
}
.gnav-mobile-svc-link {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 8px;
  font-size: 15px; font-weight: 500; color: var(--white);
  text-decoration: none;
}
.gnav-mobile-svc-link--disabled {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 8px;
  font-size: 15px; font-weight: 500; color: rgba(255,255,255,.35);
  cursor: default;
}
.gnav-mobile-svc-icon { color: var(--gold); flex-shrink: 0; }
.gnav-mobile-svc-icon--disabled { color: rgba(255,255,255,.25); flex-shrink: 0; }
.gnav-mobile-nav-link {
  display: block; padding: 14px 0;
  font-size: 16px; font-weight: 500; color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.07);
  text-decoration: none;
}
.gnav-mobile-actions { margin-top: 20px; display: flex; flex-direction: column; gap: 12px; }
.gnav-mobile-lang-btn {
  background: none; border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--btn-radius); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  gap: 8px; padding: 10px 20px;
  font-size: 14px; font-weight: 600; color: var(--white);
}
.gnav-mobile-cta {
  background: var(--gold); color: var(--white);
  padding: 13px 28px; border-radius: var(--btn-radius);
  font-size: 15px; font-weight: 700;
  text-align: center; text-decoration: none; display: block;
}

/* ── Mega menu ── */
.gnav-tab { display: flex; align-items: center; justify-content: space-between; width: 100%; background: none; border: none; cursor: pointer; padding: 13px 18px; border-radius: 8px; text-align: left; font-size: 14px; font-weight: 500; color: var(--white); transition: background .15s, color .15s; }
.gnav-tab:hover { background: rgba(255,255,255,.05); color: var(--white); }
.gnav-tab.active { background: rgba(144,197,62,.12); color: var(--gold); font-weight: 700; }
.gnav-tab-core { display: flex; align-items: center; justify-content: space-between; width: 100%; cursor: pointer; padding: 13px 18px; border-radius: 8px; text-align: left; font-size: 14px; font-weight: 700; border: none; transition: background .15s, color .15s, box-shadow .15s; color: var(--gold); background: rgba(144,197,62,.1); box-shadow: inset 3px 0 0 var(--gold); }
.gnav-tab-core:hover { background: rgba(144,197,62,.18); }
.gnav-tab-core.active { background: rgba(144,197,62,.2); box-shadow: inset 3px 0 0 var(--gold), inset 0 0 0 1px rgba(144,197,62,.25); }
.gnav-core-card { display: flex; align-items: flex-start; gap: 12px; background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.08); border-radius: 10px; padding: 0.875rem 1rem; text-decoration: none; transition: background .15s, border-color .15s; }
.gnav-core-card:hover { background: rgba(144,197,62,.08); border-color: rgba(144,197,62,.28); }
.gnav-mega-link { display: flex; align-items: center; gap: 7px; font-size: 14px; line-height: 1.6; color: var(--white); transition: color .15s; text-decoration: none; padding: 2px 0; }
.gnav-mega-link:hover { color: var(--gold) !important; }
.gnav-mega-dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,.3); flex-shrink: 0; transition: background .15s; }
.gnav-mega-link:hover .gnav-mega-dot { background: var(--gold); }
.gnav-mega-cat { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid rgba(144,197,62,.2); }
@keyframes gnavMegaIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }
.gnav-mega-panel { animation: gnavMegaIn .2s ease forwards; }

.gnav-mega-wrap {
  position: fixed; left: 0; right: 0; z-index: 99;
  background: var(--navy2);
  border-bottom: 1px solid rgba(144,197,62,.15);
  box-shadow: 0 16px 64px rgba(0,0,0,.55);
  backdrop-filter: blur(12px);
  transition: top 0.35s cubic-bezier(0.4,0,0.2,1);
}
.gnav-mega-body { max-width: 1280px; margin: 0 auto; display: flex; }
.gnav-mega-tabs { width: 240px; flex-shrink: 0; border-right: 1px solid rgba(255,255,255,.07); padding: 1.5rem 1rem; }
.gnav-mega-tabs-head { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); padding: 0 18px; margin-bottom: 10px; }
.gnav-mega-divider { height: 1px; background: rgba(255,255,255,.07); margin: 10px 8px; }
.gnav-mega-items { flex: 1; padding: 2rem 2.5rem; }
.gnav-core-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.625rem; }
.gnav-core-icon { width: 34px; height: 34px; border-radius: 8px; background: rgba(144,197,62,.12); border: 1px solid rgba(144,197,62,.22); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.gnav-core-icon-svg { color: var(--gold); }
.gnav-core-info { min-width: 0; }
.gnav-core-name { font-size: 14px; font-weight: 700; color: var(--white); line-height: 1.3; margin-bottom: 3px; }
.gnav-core-desc { font-size: 12.5px; color: rgba(255,255,255,.88); line-height: 1.5; }
.gnav-core-card--disabled { opacity: 0.4; cursor: default; pointer-events: none; }
.gnav-core-featured-badge { font-size: 9px; font-weight: 800; background: var(--gold); color: var(--navy2); border-radius: 50px; padding: 2px 9px; letter-spacing: 0.1em; text-transform: uppercase; margin-left: 4px; }
.gnav-cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px 2rem; }
.gnav-mega-foot { border-top: 1px solid rgba(255,255,255,.06); padding: 1rem 2rem; }
.gnav-mega-foot-inner { max-width: 1280px; margin: 0 auto; display: flex; justify-content: flex-end; }
.gnav-mega-all-link { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: var(--gold); letter-spacing: 0.05em; text-decoration: none; }

@media (max-width: 960px) {
  .gnav-desktop-links { display: none !important; }
  .gnav-cta           { display: none !important; }
  .gnav-lang          { display: none !important; }
  .gnav-utility-link--email { display: none !important; }
  .gnav-nav-inner     { height: auto !important; min-height: 76px !important; padding: 10px 1.25rem !important; }
  .gnav-hamburger     { display: flex !important; align-items: center !important; justify-content: center !important; flex-shrink: 0; }
  .gnav-logo-img      { height: 56px !important; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════════════════ */
.gts-footer-wrap { background: var(--navy2); color: var(--white); padding: 5rem 2rem 2rem; }
.gts-footer-container { max-width: 1280px; margin: 0 auto; }
.gts-footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 3rem; margin-bottom: 3rem; }

.gts-footer-brand-row { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.gts-footer-logo { height: 48px; object-fit: contain; }
.gts-footer-brand-divider { border-left: 2px solid rgba(144,197,62,.45); padding-left: 14px; }
.gts-footer-brand-name { font-size: 15px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.gts-footer-brand-tagline { font-size: 10px; color: var(--gold); letter-spacing: 0.12em; margin-top: 2px; }

.gts-footer-tagline { font-size: 16px; color: var(--white); line-height: 1.8; max-width: 320px; margin-bottom: 24px; }
.gts-footer-badges { display: flex; flex-direction: column; gap: 8px; }
.gts-footer-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--gold); }

.gts-footer-col-head { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.gts-footer-contact-list { display: flex; flex-direction: column; gap: 14px; }
.gts-footer-contact-item { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--white); text-decoration: none; }
.gts-footer-contact-address { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--white); }
.gts-footer-contact-icon { color: var(--gold); flex-shrink: 0; }
.gts-footer-contact-icon--top { color: var(--gold); flex-shrink: 0; margin-top: 2px; }

.gts-footer-link { display: block; font-size: 15px; color: var(--white); margin-bottom: 10px; text-decoration: none; transition: opacity .2s; }
.gts-footer-link:hover { opacity: .75; }

.gts-footer-offices { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.gts-footer-office { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--white); }
.gts-footer-office-icon { color: var(--gold); flex-shrink: 0; }
.gts-footer-license { background: rgba(144,197,62,.09); border: 1px solid rgba(144,197,62,.19); border-radius: 8px; padding: 10px 14px; font-size: 12px; color: var(--gold); font-weight: 600; line-height: 1.6; }

.gts-footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.75rem; display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; }
.gts-footer-copyright { font-size: 12px; color: rgba(255,255,255,.8); line-height: 1.7; margin: 0; }
.gts-footer-legal-links { display: flex; gap: 24px; }
.gts-footer-legal-link { font-size: 12px; color: rgba(255,255,255,.75); text-decoration: none; }

/* Hide logo row on desktop — nav already has persistent logo */
@media (min-width: 961px) {
  .gts-footer-brand-row { display: none !important; }
}
@media (max-width: 1024px) {
  .gts-footer-grid { grid-template-columns: 1fr 1fr !important; gap: 2.5rem !important; }
}
@media (max-width: 640px) {
  .gts-footer-grid { grid-template-columns: 1fr !important; gap: 2.5rem !important; }
  .gts-footer-wrap { padding: 4rem 1.25rem 2rem !important; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   HOMEPAGE (ps-*)
═══════════════════════════════════════════════════════════════════════════ */
.ps *, .ps { font-family: 'Raleway', sans-serif; box-sizing: border-box; }
.ps a { text-decoration: none; }
.ps-page { background: var(--white); color: #1e293b; overflow-x: hidden; }

/* ── Animations ── */
@keyframes kenburns {
  0%   { transform: scale(1)    translate(0, 0); }
  100% { transform: scale(1.09) translate(-2%, -1%); }
}
.kb { animation: kenburns 24s ease-in-out infinite alternate; background-size: cover; background-position: center; }

@keyframes slideLeft { from { opacity: 0; transform: translateX(-28px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadePhoto  { from { opacity: 0; } to { opacity: 1; } }
@keyframes ps-ticker  { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.ps-l1 { animation: slideLeft .9s .05s both ease; }
.ps-l2 { animation: slideLeft .9s .2s  both ease; }
.ps-l3 { animation: slideLeft .9s .35s both ease; }
.ps-l4 { animation: slideLeft .9s .5s  both ease; }
.ps-l5 { animation: slideLeft .9s .65s both ease; }
.ps-photo { animation: fadePhoto 1.4s .15s both ease; }
.gold-line { animation: fadePhoto 1s .6s both ease; }

/* ── City Ken Burns ── */
@keyframes kb0 { 0% { transform: scale(1.00) translate(0%,    0%);  } 100% { transform: scale(1.10) translate(-1.5%,-.8%); } }
@keyframes kb1 { 0% { transform: scale(1.08) translate(4%,    0%);  } 100% { transform: scale(1.08) translate(-4%,   0%); } }
@keyframes kb2 { 0% { transform: scale(1.16) translate(0%,    0%);  } 100% { transform: scale(1.02) translate(0%,    0%); } }
@keyframes kb3 { 0% { transform: scale(1.07) translate(-4%,  1.5%); } 100% { transform: scale(1.07) translate(3.5%, -1%); } }
@keyframes kb4 { 0% { transform: scale(1.08) translate(0%,   -4%);  } 100% { transform: scale(1.08) translate(0%,    4%); } }
@keyframes kb5 { 0% { transform: scale(1.05) translate(-3%,  -3%);  } 100% { transform: scale(1.11) translate(3%,    3%); } }
@keyframes kb6 { 0% { transform: scale(1.09) translate(5%,    1%);  } 100% { transform: scale(1.09) translate(-5.5%,-1%); } }
@keyframes kb7 { 0% { transform: scale(1.02) translate(0%,    3%);  } 100% { transform: scale(1.12) translate(0%,   -2%); } }

.ps-city {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  will-change: transform, opacity;
  transition: opacity 1.4s ease;
  animation-duration: 8s; animation-timing-function: ease-in-out;
  animation-iteration-count: infinite; animation-direction: alternate;
}
.ps-city-0 { animation-name: kb0; }
.ps-city-1 { animation-name: kb1; }
.ps-city-2 { animation-name: kb2; }
.ps-city-3 { animation-name: kb3; }
.ps-city-4 { animation-name: kb4; }
.ps-city-5 { animation-name: kb5; }
.ps-city-6 { animation-name: kb6; }
.ps-city-7 { animation-name: kb7; }

/* ── Hero section ── */
.ps-hero-section {
  position: relative; height: 100vh; overflow: hidden;
  background-color: var(--navy2);
}
.ps-hero-overlay-main {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(105deg, rgba(7,17,32,.92) 0%, rgba(7,17,32,.78) 38%, rgba(7,17,32,.45) 62%, rgba(7,17,32,.15) 100%);
}
.ps-hero-overlay-bottom {
  position: absolute; bottom: 0; left: 0; right: 0; height: 180px; z-index: 2; pointer-events: none;
  background: linear-gradient(to bottom, transparent, rgba(7,17,32,.6));
}
.ps-hero-content-wrap { position: relative; z-index: 3; height: 100%; display: flex; align-items: center; }
.ps-hero-left {
  width: 100%; padding-top: 145px;
  padding-left: max(2rem, calc((100vw - 1280px) / 2 + 2rem));
  padding-right: clamp(2rem, 6vw, 6rem);
}
.ps-hero-inner { max-width: 580px; }

.ps-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(144,197,62,.09); border: 1px solid rgba(144,197,62,.25);
  border-radius: 50px; padding: 5px 16px; margin-bottom: 28px; align-self: flex-start;
  font-size: 10px; font-weight: 700; color: var(--gold);
  letter-spacing: 0.16em; text-transform: uppercase;
}
.ps-hero-cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 52px; }
.ps-hero-cta-primary {
  background: var(--gold); color: var(--white); padding: 13px 30px;
  border-radius: var(--btn-radius); font-size: 13px; font-weight: 700;
  box-shadow: 0 6px 28px rgba(144,197,62,.33);
  display: flex; align-items: center; gap: 7px;
  text-decoration: none; cursor: pointer; white-space: nowrap;
}
.ps-hero-cta-secondary {
  background: transparent; color: rgba(255,255,255,.8); padding: 13px 30px;
  border-radius: var(--btn-radius); font-size: 13px; font-weight: 500;
  border: 1px solid rgba(255,255,255,.25);
  display: flex; align-items: center; gap: 7px;
  text-decoration: none; cursor: pointer; white-space: nowrap;
}

.ps-scroll-cue {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 4;
}
.ps-scroll-line { width: 1px; height: 36px; background: linear-gradient(to bottom, var(--gold), transparent); }
.ps-scroll-label { font-size: 10px; color: rgba(255,255,255,.7); letter-spacing: 0.2em; text-transform: uppercase; }

/* ── About / stats band ── */
.ps-about-section { background: var(--navy2); padding: 7rem 2rem 0; }
.ps-about-container { max-width: 1280px; margin: 0 auto; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; padding-bottom: 5rem; }
.ps-about-services-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--gold);
  border-bottom: 1px solid rgba(144,197,62,.31); padding-bottom: 5px; letter-spacing: 0.02em;
}
.ps-about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
.ps-stat-item { border-left: 2px solid rgba(144,197,62,.25); padding-left: 20px; }
.ps-stat-num { font-size: clamp(36px, 3.5vw, 52px); font-weight: 800; color: var(--gold); letter-spacing: -0.03em; line-height: 1; }
.ps-stat-label { font-size: 11px; color: var(--white); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 8px; }

.ps-divider { border-top: 1px solid rgba(255,255,255,.07); }
.ps-cred-strip { padding: 2rem 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.ps-cred-pill {
  display: inline-flex; align-items: center; gap: 7px;
  border: 1px solid rgba(255,255,255,.12); border-radius: 50px;
  padding: 7px 18px; font-size: 11px; font-weight: 600;
  color: var(--white); letter-spacing: 0.02em;
}
.ps-cred-icon { color: var(--gold); }

/* ── Services section ── */
.ps-svc-section { background: var(--light); padding: 9rem 2rem; }
.ps-svc-container { max-width: 1280px; margin: 0 auto; }
.ps-svc-header { text-align: center; margin-bottom: 4rem; }
.ps-svc-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: stretch; }
.svc-card { transition: box-shadow .45s ease, border-color .45s ease; cursor: default; box-shadow: 0 2px 12px rgba(11,26,51,.06); border: 1.5px solid rgba(11,26,51,.06); }
.svc-card:hover { box-shadow: 0 16px 48px rgba(11,26,51,.13), 0 2px 8px rgba(11,26,51,.06); border-color: rgba(11,26,51,.13); }
.svc-img { transition: transform .55s cubic-bezier(.25,.46,.45,.94); }
.svc-card:hover .svc-img { transform: scale(1.05); }

.svc-card-link { background: var(--white); border-radius: var(--card-radius-lg); overflow: hidden; display: flex; flex-direction: column; height: 100%; text-decoration: none; }
.svc-img-wrap { border-radius: var(--card-radius); overflow: hidden; margin: 16px 16px 0; aspect-ratio: 4/3; position: relative; flex-shrink: 0; }
.svc-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(7,17,32,.25), transparent); }
.svc-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.svc-title { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; letter-spacing: -0.01em; }
.svc-desc  { font-size: 15px; color: var(--color-body-on-light); line-height: 1.7; margin-bottom: 16px; flex: 1; }
.svc-learn { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: var(--gold-d); }

.ps-view-all-wrap { text-align: center; margin-top: 3rem; }
.ps-view-all-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--navy); color: var(--white);
  padding: 14px 36px; border-radius: var(--btn-radius);
  font-size: 14px; font-weight: 700; letter-spacing: 0.02em;
  box-shadow: 0 6px 24px rgba(11,26,51,.18);
}

/* ── Cinematic band ── */
.ps-cin-section { position: relative; height: 560px; overflow: hidden; }
.ps-cin-bg { position: absolute; inset: 0; background-size: cover; background-position: center center; }
.ps-cin-overlay-h { position: absolute; inset: 0; background: linear-gradient(to right, rgba(7,17,32,.96) 0%, rgba(7,17,32,.72) 45%, rgba(7,17,32,.2) 100%); }
.ps-cin-overlay-v { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(7,17,32,.4) 0%, transparent 25%, transparent 75%, rgba(7,17,32,.5) 100%); }
.ps-cin-inner { position: relative; z-index: 2; height: 100%; display: flex; align-items: center; max-width: 1280px; margin: 0 auto; padding: 0 3rem; }
.ps-cin-content { display: flex; align-items: center; justify-content: space-between; width: 100%; gap: 4rem; }
.ps-cin-left { max-width: 520px; }
.ps-cin-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: var(--white);
  padding: 13px 28px; border-radius: var(--pill-radius);
  font-size: 14px; font-weight: 700; letter-spacing: 0.04em;
  box-shadow: 0 4px 20px rgba(144,197,62,.3);
}
.ps-cin-stats { display: flex; flex-direction: column; gap: 1.75rem; flex-shrink: 0; }
.ps-cin-stat { display: flex; align-items: center; gap: 18px; }
.ps-cin-rule { width: 3px; height: 40px; background: var(--gold); border-radius: 2px; flex-shrink: 0; }
.ps-cin-stat-value { font-size: 28px; font-weight: 800; color: var(--white); margin: 0; line-height: 1; }
.ps-cin-stat-label { font-size: 11px; color: var(--white); margin: 4px 0 0; letter-spacing: 0.06em; text-transform: uppercase; }

/* ── GSOC section ── */
.ps-gsoc-section { background: var(--navy); padding: 8rem 2rem; }
.ps-gsoc-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.ps-gsoc-link {
  display: inline-flex; align-items: center; gap: 8px; color: var(--gold);
  font-size: 14px; font-weight: 700; letter-spacing: 0.04em;
  border: 1.5px solid rgba(144,197,62,.31); border-radius: var(--btn-radius); padding: 10px 24px;
}
.ps-gsoc-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.ps-gsoc-tile {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.05); border-radius: 12px;
  padding: 14px 16px; border: 1px solid rgba(255,255,255,.08);
}
.ps-gsoc-icon-wrap { width: 36px; height: 36px; border-radius: 10px; background: rgba(144,197,62,.13); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ps-gsoc-icon { color: var(--gold); }
.ps-gsoc-tile-label { font-size: 13px; font-weight: 500; color: var(--white); line-height: 1.4; }

/* ── Leadership section ── */
.ps-leaders-section { background: var(--white); padding: 9rem 2rem; }
.ps-leaders-container { max-width: 1280px; margin: 0 auto; }
.ps-leaders-header { text-align: center; margin-bottom: 4rem; }
.ps-leaders-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: stretch; }
.leader-card { border-radius: var(--card-radius-lg); border: 1.5px solid #f1f5f9; overflow: hidden; background: var(--white); height: 100%; display: flex; flex-direction: column; transition: box-shadow .3s ease; }
.leader-card:hover { box-shadow: 0 20px 56px rgba(11,26,51,.12); }
.leader-photo-wrap { height: auto; aspect-ratio: 4/5; overflow: hidden; position: relative; flex-shrink: 0; }
@media (max-width: 768px) {
  .ps-leaders-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .leader-photo-wrap { height: auto; aspect-ratio: 4/5; }
}
.leader-photo { width: 100%; height: 100%; object-fit: cover; }
.leader-photo-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,26,51,.38), transparent 50%); }
.leader-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.leader-name  { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.leader-role  { font-size: 11px; font-weight: 600; color: var(--gold-d); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 12px; }
.leader-bio   { font-size: 13px; color: #64748b; line-height: 1.65; margin-bottom: 14px; }
.leader-creds { display: flex; flex-direction: column; gap: 5px; }
.leader-cred  { display: flex; align-items: center; gap: 6px; font-size: 12px; color: #475569; }
.leader-cred-icon { color: var(--gold-d); flex-shrink: 0; }

/* ── Media / Press section ── */
.ps-media-section { background: var(--navy); padding: 5rem 0; }
.ps-media-container { max-width: 1280px; margin: 0 auto; padding: 0 2.5rem; }
.ps-media-eyebrow-row { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.ps-media-rule { width: 28px; height: 1px; background: var(--gold); }
.ps-media-eyebrow-text { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.ps-media-head-wrap { margin-bottom: 3rem; }

.ps-ticker-wrap { overflow: hidden; mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%); margin-bottom: 3.5rem; }
.ps-ticker-track { display: flex; width: max-content; animation: ps-ticker 36s linear infinite; will-change: transform; }
.ps-ticker-track:hover { animation-play-state: paused; }
.ps-ticker-item { display: inline-flex; align-items: center; white-space: nowrap; padding-right: 2.5rem; }
.ps-ticker-slot { display: inline-flex; width: 140px; height: 40px; align-items: center; justify-content: center; flex-shrink: 0; }
.ps-ticker-img  { max-height: 100%; max-width: 100%; width: auto; object-fit: contain; }
.ps-ticker-dot  { display: inline-block; width: 4px; height: 4px; border-radius: 50%; background: var(--gold); opacity: 0.4; margin-left: 2.5rem; }

.ps-separator { height: 1px; background: rgba(255,255,255,.08); margin-bottom: 3rem; }
.ps-coverage-label-row { display: flex; align-items: center; gap: 10px; margin-bottom: 2rem; }

.ps-media-hero {
  display: grid; grid-template-columns: 55% 1fr;
  border-radius: var(--card-radius-lg); overflow: hidden;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.10);
  margin-bottom: 1.5rem; height: 300px;
}
.ps-media-hero-img { position: relative; overflow: hidden; }
.ps-media-hero-body { padding: 2rem; display: flex; flex-direction: column; justify-content: center; overflow: hidden; }
.ps-press-tag { font-size: 10px; font-weight: 700; color: var(--gold); letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 14px; }
.ps-press-title { color: var(--white); font-size: 22px; font-weight: 800; margin: 0 0 14px; line-height: 1.25; }
.ps-press-desc { color: var(--color-body-on-dark); font-size: 14px; line-height: 1.7; margin: 0 0 24px; flex-grow: 1; }
.ps-press-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--navy2);
  padding: 11px 22px; border-radius: 50px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.04em;
  text-decoration: none; align-self: flex-start;
}
.ps-press-play {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,.3);
}
.ps-press-play-circle {
  width: 64px; height: 64px; border-radius: 50%; background: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 28px rgba(0,0,0,.5);
}
.ps-press-play-triangle { width: 0; height: 0; border-top: 14px solid transparent; border-bottom: 14px solid transparent; border-left: 21px solid var(--navy); margin-left: 4px; }

.ps-thumb-strip { display: flex; gap: 1rem; overflow-x: auto; padding-top: 6px; padding-bottom: 0.5rem; }
.ps-thumb {
  flex-shrink: 0; width: 180px; border-radius: 14px; overflow: hidden; cursor: pointer;
  background: rgba(255,255,255,.05);
  border: 2px solid rgba(255,255,255,.08);
  padding: 0; outline: none;
  transition: all .18s ease;
}
.ps-thumb--active {
  border-color: var(--gold);
  box-shadow: 0 0 16px rgba(144,197,62,.27);
  transform: translateY(-3px);
}
.ps-thumb-img-wrap { position: relative; height: 112px; }
.ps-thumb-img { width: 100%; height: 100%; object-fit: cover; object-position: center top; filter: grayscale(35%) brightness(.75); transition: filter .18s; }
.ps-thumb--active .ps-thumb-img { filter: brightness(1); }
.ps-thumb-play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,.28); }
.ps-thumb-play-circle { width: 26px; height: 26px; border-radius: 50%; background: rgba(255,255,255,.9); display: flex; align-items: center; justify-content: center; }
.ps-thumb-play-triangle { width: 0; height: 0; border-top: 5px solid transparent; border-bottom: 5px solid transparent; border-left: 8px solid var(--navy); margin-left: 2px; }
.ps-thumb-info { padding: 0.6rem 0.8rem; text-align: left; }
.ps-thumb-tag { font-size: 10px; font-weight: 700; color: rgba(255,255,255,.65); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 3px; line-height: 1.4; }
.ps-thumb--active .ps-thumb-tag { color: var(--gold); }
.ps-thumb-outlet { font-size: 11px; font-weight: 700; color: var(--white); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ── Testimonials ── */
.ps-test-section { background: var(--light); padding: 9rem 2rem; }
.ps-test-container { max-width: 1280px; margin: 0 auto; }
.ps-test-header { text-align: center; margin-bottom: 4rem; }
.ps-test-eyebrow-row { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.ps-test-rule { width: 28px; height: 1px; background: var(--gold-d); }
.ps-test-eyebrow-text { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-d); }
.ps-test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.ps-test-card { background: var(--white); border-radius: var(--card-radius-lg); padding: 2rem; box-shadow: 0 4px 24px rgba(11,26,51,.06); }
.ps-test-stars { display: flex; gap: 2px; margin-bottom: 16px; }
.ps-test-star  { color: var(--gold-d); fill: var(--gold-d); }
.ps-test-quote { font-size: 15px; color: #475569; line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.ps-test-divider { border-top: 1px solid #f1f5f9; padding-top: 16px; }
.ps-test-name  { font-size: 14px; font-weight: 700; color: var(--navy); }
.ps-test-role  { font-size: 12px; color: var(--color-muted-on-light); margin-top: 3px; }

/* ── CTA section ── */
.ps-cta-section { background: var(--navy); padding: 8rem 2rem; position: relative; overflow: hidden; }
.ps-cta-bg { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 60% 60% at 50% 100%, rgba(144,197,62,.08) 0%, transparent 70%); }
.ps-cta-container { max-width: 760px; margin: 0 auto; text-align: center; position: relative; }
.ps-cta-rule-row { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 2.5rem; }
.ps-cta-rule { width: 28px; height: 1px; background: var(--gold); }
.ps-cta-label { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.ps-cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.ps-cta-primary {
  background: var(--gold); color: var(--white); padding: 15px 36px;
  border-radius: var(--pill-radius); font-size: 14px; font-weight: 700;
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 24px rgba(144,197,62,.3);
  letter-spacing: 0.02em;
}
.ps-cta-secondary {
  background: transparent; color: var(--white); padding: 15px 36px;
  border-radius: var(--pill-radius); font-size: 14px; font-weight: 600;
  border: 1px solid rgba(255,255,255,.22);
  display: flex; align-items: center; gap: 8px;
  letter-spacing: 0.02em;
}

/* ── Location pills ── */
.loc-pill { transition: all .25s ease; }
.loc-pill:hover { background: var(--gold) !important; color: var(--white) !important; }

/* ── Responsive overrides for homepage ── */
@media (max-width: 768px) {
  .ps-ticker-slot { width: 100px !important; height: 28px !important; }
  .ps-ticker-item { padding-right: 1.5rem !important; }
  .ps-ticker-dot  { margin-left: 1.5rem !important; }
  .about-grid { grid-template-columns: 1fr !important; gap: 3rem !important; }
  .ps-hero-left  { width: 100% !important; clip-path: none !important; padding: 118px 1.5rem 3rem !important; min-height: 100svh !important; display: flex !important; flex-direction: column !important; justify-content: center !important; }
  .ps-hero-section { height: auto !important; min-height: 100svh; }
  .ps-section-lg { padding: 5rem 1.25rem !important; }
  .ps-section-md { padding: 4rem 1.25rem !important; }
  .ps-svc-3      { grid-template-columns: 1fr !important; }
  .ps-svc-2      { grid-template-columns: 1fr !important; }
  .ps-landscape-card { flex-direction: column !important; }
  .ps-landscape-img  { width: auto !important; height: 200px !important; border-radius: 16px 16px 0 0 !important; margin: 16px 16px 0 !important; align-self: auto !important; }
  .ps-about-stats    { grid-template-columns: 1fr 1fr !important; gap: 1.5rem !important; }
  .ps-gsoc-grid      { grid-template-columns: 1fr !important; gap: 2.5rem !important; }
  .ps-gsoc-tiles     { grid-template-columns: 1fr !important; gap: 0.75rem !important; }
  .ps-leaders-grid   { grid-template-columns: 1fr !important; }
  .ps-test-grid      { grid-template-columns: 1fr !important; }
  .ps-cin-stats      { display: none !important; }
  .ps-media-hero     { grid-template-columns: 1fr !important; }
  .ps-cov-hubs       { grid-template-columns: 1fr !important; }
  .ps-cov-intl       { grid-template-columns: 1fr !important; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   ALL SERVICES PAGE (asp-*)
═══════════════════════════════════════════════════════════════════════════ */
.asp-page { background: var(--white); min-height: 100vh; }


.asp-feat-section { background: var(--light); padding: 5rem 2rem; }
.asp-feat-container { max-width: 1280px; margin: 0 auto; }
.asp-feat-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 3rem; flex-wrap: wrap; }
.asp-feat-view-all { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 700; color: var(--gold-d); text-decoration: none; white-space: nowrap; }
.asp-feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.asp-feat-card { transition: box-shadow .3s ease, transform .3s ease; }
.asp-feat-card:hover { box-shadow: 0 20px 56px rgba(11,26,51,.18) !important; transform: translateY(-5px) !important; }
.asp-feat-card:hover .asp-feat-img { transform: scale(1.07) !important; }
.asp-feat-img { transition: transform .6s cubic-bezier(.25,.46,.45,.94); }
.asp-feat-card-base { display: flex; flex-direction: column; border-radius: var(--card-radius-lg); overflow: hidden; text-decoration: none; background: var(--white); border: 1.5px solid rgba(11,26,51,.07); box-shadow: 0 2px 16px rgba(11,26,51,.07); }
.asp-feat-card-base--unpublished { cursor: default; }
.asp-feat-card-base--published  { cursor: pointer; }
.asp-feat-img-wrap { position: relative; height: 240px; overflow: hidden; flex-shrink: 0; }
.asp-feat-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(5,10,18,.72) 0%, rgba(5,10,18,.18) 55%, transparent 80%); }
.asp-feat-badges { position: absolute; top: 14px; left: 14px; display: flex; gap: 6px; }
.asp-feat-badge { background: rgba(7,17,32,.65); backdrop-filter: blur(8px); color: rgba(255,255,255,.8); font-size: 9px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 4px 11px; border-radius: 50px; }
.asp-feat-badge--soon { background: rgba(144,197,62,.85); backdrop-filter: blur(8px); color: var(--navy2); font-size: 9px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 4px 11px; border-radius: 50px; }
.asp-feat-name-wrap { position: absolute; bottom: 16px; left: 18px; right: 18px; }
.asp-feat-name { font-family: 'Raleway', sans-serif; font-size: 20px; font-weight: 700; color: var(--white); margin: 0; line-height: 1.2; letter-spacing: -0.01em; }
.asp-feat-body { padding: 1.5rem 1.5rem 1.75rem; display: flex; flex-direction: column; flex: 1; gap: 16px; }
.asp-feat-desc { font-size: 15px; line-height: 1.75; margin: 0; flex: 1; }
.asp-feat-desc--published   { color: #1e293b; }
.asp-feat-desc--unpublished { color: #64748b; }
.asp-feat-explore { display: flex; align-items: center; gap: 5px; font-size: 13.5px; font-weight: 700; color: var(--gold-d); }
.asp-feat-soon    { font-size: 13.5px; font-weight: 600; color: #64748b; }

.asp-filter-bar { background: var(--white); border-bottom: 1px solid rgba(11,26,51,.07); position: sticky; top: 80px; z-index: 40; }
.asp-filter-inner { max-width: 1280px; margin: 0 auto; padding: 0 2rem; display: flex; gap: 0; overflow-x: auto; }
.asp-filter-tab { background: none; border: none; cursor: pointer; padding: 16px 20px; font-size: 13px; white-space: nowrap; transition: all .2s; letter-spacing: 0.03em; }
.asp-filter-tab--active   { font-weight: 700; color: var(--navy); border-bottom: 2px solid var(--gold); }
.asp-filter-tab--inactive { font-weight: 500; color: #4B5563; border-bottom: 2px solid transparent; }

.asp-grid-section { padding: 5rem 2rem; background: var(--white); }
.asp-grid-container { max-width: 1280px; margin: 0 auto; }
.asp-cat-block { margin-bottom: 4.5rem; }
.asp-cat-header { display: flex; align-items: center; gap: 16px; margin-bottom: 2rem; }
.asp-cat-label { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--navy); opacity: 0.6; }
.asp-cat-divider { flex: 1; height: 1px; background: rgba(11,26,51,.08); }
.asp-cat-count { font-size: 11px; color: #4B5563; font-weight: 500; }
.asp-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }

.asp-svc-card { display: flex; flex-direction: column; background: var(--white); border-radius: 18px; overflow: hidden; text-decoration: none; border: 1.5px solid rgba(11,26,51,.06); box-shadow: 0 2px 12px rgba(11,26,51,.05); transition: box-shadow .35s ease, border-color .35s ease; }
.asp-svc-card:hover .asp-svc-img { transform: scale(1.06) !important; }
.asp-svc-card:hover { border-color: rgba(11,26,51,.14) !important; box-shadow: 0 20px 56px rgba(11,26,51,.12) !important; }
.asp-svc-img-wrap { height: 200px; overflow: hidden; position: relative; flex-shrink: 0; }
.asp-svc-img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.25,.46,.45,.94); }
.asp-svc-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(7,17,32,.35), transparent 55%); }
.asp-svc-cat-badge-wrap { position: absolute; top: 12px; left: 12px; }
.asp-svc-cat-badge { background: rgba(7,17,32,.6); backdrop-filter: blur(8px); color: var(--white); font-size: 9px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 4px 10px; border-radius: 50px; }
.asp-svc-body  { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.asp-svc-name  { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 10px; line-height: 1.3; }
.asp-svc-desc  { font-size: 14px; color: #374151; line-height: 1.7; margin-bottom: 20px; flex: 1; }
.asp-svc-learn { display: flex; align-items: center; gap: 5px; font-size: 13px; font-weight: 700; margin-top: auto; }
.asp-svc-learn--detail  { color: var(--gold-d); }
.asp-svc-learn--nodtail { color: #4B5563; }

.asp-cta-section { background: var(--navy2); padding: 6rem 2rem; position: relative; overflow: hidden; }
.asp-cta-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 100%, rgba(144,197,62,.06) 0%, transparent 65%); }
.asp-cta-container { position: relative; max-width: 720px; margin: 0 auto; text-align: center; }
.asp-cta-body { font-size: 17px; color: var(--white); line-height: 1.85; margin-bottom: 40px; }
.asp-cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 1100px) { .asp-feat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) {
  .asp-filter-bar   { top: 72px !important; }
  .asp-filter-inner { padding: 0 1rem !important; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .asp-filter-inner::-webkit-scrollbar { display: none; }
  .asp-card-grid    { grid-template-columns: 1fr !important; }
}
@media (max-width: 600px)  { .asp-feat-grid { grid-template-columns: 1fr !important; } }
@media (min-width: 640px) and (max-width: 900px) { .asp-card-grid { grid-template-columns: repeat(2, 1fr) !important; } }

/* ═══════════════════════════════════════════════════════════════════════════
   ABOUT US PAGE (au-*)
═══════════════════════════════════════════════════════════════════════════ */
.au-page { font-family: var(--font-base); background: var(--white); }

.au-hero-section { background: var(--navy2); padding: 14rem 2rem 7rem; position: relative; overflow: hidden; }
.au-hero-bg-photo { position: absolute; inset: 0; background-image: url('/images/gts-agents-plaza.webp'); background-size: cover; background-position: center 30%; opacity: 0.22; }
.au-hero-bg-gradient { position: absolute; inset: 0; background: linear-gradient(105deg, var(--navy2) 42%, rgba(7,17,32,.7) 70%, rgba(7,17,32,.4) 100%); }
.au-hero-bg-radial { position: absolute; inset: 0; background-image: radial-gradient(ellipse at 70% 50%, rgba(144,197,62,.05) 0%, transparent 55%); }
.au-hero-container { position: relative; max-width: 1280px; margin: 0 auto; }
.au-breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 32px; font-size: 13px; color: rgba(255,255,255,.82); }
.au-breadcrumb-link { color: rgba(255,255,255,.82); text-decoration: none; }
.au-breadcrumb-current { color: var(--gold); }
.au-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }

.au-stats-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: 24px; padding: 2.5rem; }
.au-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-bottom: 2rem; }
.au-stat-item { text-align: center; }
.au-stat-num { font-size: clamp(26px, 2.5vw, 38px); font-weight: 900; color: var(--gold); letter-spacing: -0.03em; line-height: 1; }
.au-stat-label { font-size: 11px; color: var(--white); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 8px; line-height: 1.4; font-weight: 500; }
.au-stats-divider { border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.5rem; display: flex; flex-direction: column; gap: 10px; }
.au-badge-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--white); font-weight: 500; }
.au-badge-icon { color: var(--gold); flex-shrink: 0; }

/* ABOUT US — TEAM BAND */
.au-team-band { position: relative; width: 100%; height: 660px; overflow: hidden; background: var(--navy2); }
.au-team-band-img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; display: block; }
.au-team-band-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(7,17,32,0.80) 0%, rgba(7,17,32,0.55) 25%, transparent 50%); }
.au-team-band-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 2.5rem 2rem; max-width: 1280px; margin: 0 auto; }
.au-team-band-title { font-size: clamp(22px, 3vw, 34px); font-weight: 700; color: var(--white); margin: 0 0 12px; letter-spacing: -0.3px; }
.au-team-band-link { display: inline-flex; align-items: center; gap: 6px; color: var(--gold); font-size: 13px; font-weight: 600; text-decoration: none; letter-spacing: 0.6px; text-transform: uppercase; transition: opacity .2s; }
.au-team-band-link:hover { opacity: 0.75; }
@media (max-width: 768px) { .au-team-band { height: auto; aspect-ratio: 1300 / 867; } .au-team-band-img { object-fit: cover; object-position: center center; } .au-team-band-title { font-size: 20px; } }

.au-mission-section { background: var(--white); padding: 7rem 2rem; }
.au-mission-container { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.au-values-list { display: flex; flex-direction: column; gap: 1.5rem; }
.au-value-item { display: flex; gap: 18px; align-items: flex-start; padding: 1.5rem; border-radius: var(--card-radius); border: 1px solid rgba(11,26,51,.06); }
.au-value-item--even { background: var(--light); }
.au-value-item--odd  { background: var(--white); }
.au-value-icon-wrap { width: 44px; height: 44px; border-radius: 11px; background: rgba(144,197,62,.09); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.au-value-icon { color: var(--gold-d); }
.au-value-title { font-size: 16px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.au-value-body  { font-size: 15px; color: #374151; line-height: 1.7; margin: 0; }

.au-leadership-section { background: var(--navy2); padding: 7rem 2rem; position: relative; overflow: hidden; }
.au-leadership-bg { position: absolute; inset: 0; background-image: radial-gradient(ellipse at 50% 0%, rgba(144,197,62,.04) 0%, transparent 55%); }
.au-leadership-container { position: relative; max-width: 1280px; margin: 0 auto; }
.au-leadership-header { text-align: center; margin-bottom: 4rem; }
.au-featured { display: flex; flex-direction: row; border-radius: 24px; overflow: hidden; height: 520px; margin-bottom: 1.5rem; border: 1px solid rgba(255,255,255,.1); }
.au-featured-photo { width: 42%; flex-shrink: 0; position: relative; overflow: hidden; }
.au-featured-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.au-featured-photo-overlay { display: none; }
.au-featured-body { flex: 1; background: var(--navy2); padding: 3rem 3rem 3rem 2.5rem; display: flex; flex-direction: column; justify-content: center; border-left: 3px solid var(--gold); }
.au-featured-ceo-name { font-size: clamp(28px, 3vw, 42px); font-weight: 900; color: var(--white); line-height: 1.1; margin-bottom: 20px; letter-spacing: -0.02em; }
.au-gold-rule { width: 48px; height: 2px; background: var(--gold); border-radius: 2px; }
.au-ceo-bio { font-size: 16px; color: var(--white); line-height: 1.9; max-width: 480px; }

.au-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.au-grid--tier2 { grid-template-columns: repeat(2, 1fr) !important; }
.au-grid--tier3 { grid-template-columns: repeat(3, 1fr) !important; }
.au-card-photo--sm { aspect-ratio: 3/4 !important; }
.au-staff-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
.au-staff-card { border-radius: var(--card-radius); overflow: hidden; background: var(--navy2); border: 1px solid rgba(255,255,255,.08); transition: border-color .3s; }
.au-staff-card:hover { border-color: rgba(144,197,62,.19); }
.au-staff-photo { position: relative; width: 100%; aspect-ratio: 3/4; overflow: hidden; }
.au-staff-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; transition: transform .5s ease; }
.au-staff-card:hover .au-staff-photo img { transform: scale(1.04); }
.au-staff-body { padding: 1rem 1rem 1.25rem; }
.au-role-wrap { min-height: 54px; }
.au-card { display: flex; flex-direction: column; border-radius: var(--card-radius); overflow: hidden; background: var(--navy2); border: 1px solid rgba(255,255,255,.08); transition: border-color .3s; }
.au-card:hover { border-color: rgba(144,197,62,.19); }
.au-card-photo { position: relative; width: 100%; aspect-ratio: 4/5; overflow: hidden; flex-shrink: 0; }
.au-card-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; transition: transform .5s ease; }
.au-card:hover .au-card-photo img { transform: scale(1.04); }
.au-card-body { padding: 1.25rem 1.25rem 1.5rem; }
.au-card-name { font-size: 22px; font-weight: 900; color: var(--white); line-height: 1.15; margin-bottom: 10px; letter-spacing: -0.02em; }
.au-card-rule { width: 32px; height: 2px; background: var(--gold); border-radius: 2px; margin-bottom: 14px; }
.au-card-bio  { font-size: 14px; color: rgba(255,255,255,.78); line-height: 1.8; margin: 0 0 16px; }
.au-cred-tag  { display: inline-flex; align-items: center; gap: 5px; font-size: 10px; font-weight: 700; color: var(--gold); border: 1px solid rgba(144,197,62,.25); border-radius: 50px; padding: 3px 11px; letter-spacing: 0.05em; white-space: nowrap; }

.au-ceo-video-section { background: var(--navy); padding: 7rem 2rem; position: relative; overflow: hidden; }
.au-ceo-video-bg { position: absolute; inset: 0; background-image: radial-gradient(ellipse at 80% 50%, rgba(144,197,62,.03) 0%, transparent 60%); }
.au-ceo-video-container { position: relative; max-width: 1280px; margin: 0 auto; }
.au-ceo-video { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.au-ceo-attr { display: flex; align-items: center; gap: 14px; }
.au-ceo-attr-photo { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; object-position: center top; border: 2px solid var(--gold); }
.au-ceo-attr-name { font-size: 15px; font-weight: 800; color: var(--white); }
.au-ceo-attr-role { font-size: 13px; color: var(--gold); letter-spacing: 0.06em; }
.au-video-frame { position: relative; border-radius: var(--card-radius-lg); overflow: hidden; aspect-ratio: 16/9; background: var(--navy2); border: 1px solid rgba(255,255,255,.1); cursor: pointer; }
.au-video-thumb { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.au-video-scrim { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(7,17,32,.6) 0%, rgba(7,17,32,.3) 100%); }
.au-play-btn { position: absolute; bottom: 28px; right: 32px; display: flex; flex-direction: row; align-items: center; gap: 14px; }
.au-play-circle { width: 64px; height: 64px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; box-shadow: 0 0 0 10px rgba(144,197,62,.15); transition: transform .25s, box-shadow .25s; flex-shrink: 0; }
.au-video-frame:hover .au-play-circle { transform: scale(1.1); box-shadow: 0 0 0 16px rgba(144,197,62,.1); }
.au-play-label { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; color: var(--white); text-transform: uppercase; text-shadow: 0 1px 4px rgba(0,0,0,.5); }
.au-video-badge { position: absolute; top: 16px; left: 16px; background: rgba(7,17,32,.75); border: 1px solid rgba(144,197,62,.31); border-radius: 6px; padding: 4px 10px; font-size: 10px; font-weight: 700; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; }

.au-vet-section { background: var(--light); padding: 7rem 2rem; }
.au-vet-container { max-width: 900px; margin: 0 auto; text-align: center; }
.au-vet-badges { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.au-vet-badge { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--navy); background: var(--white); border: 1px solid rgba(11,26,51,.1); border-radius: 50px; padding: 9px 20px; box-shadow: 0 2px 8px rgba(11,26,51,.06); }
.au-vet-badge-icon { color: var(--gold-d); }

@media (max-width: 1100px) { .au-grid { grid-template-columns: repeat(3, 1fr) !important; } .au-grid--tier2 { grid-template-columns: repeat(2, 1fr) !important; } .au-staff-grid { grid-template-columns: repeat(3, 1fr) !important; } }
@media (max-width: 900px) {
  .au-hero-grid { grid-template-columns: 1fr !important; gap: 3rem !important; }
  .au-stats-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .au-featured { flex-direction: column !important; height: auto !important; }
  .au-featured-photo { width: 100% !important; height: 420px !important; }
  .au-ceo-video { grid-template-columns: 1fr !important; gap: 3rem !important; }
  .au-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .au-grid--tier2 { grid-template-columns: repeat(2, 1fr) !important; }
  .au-grid--tier3 { grid-template-columns: repeat(2, 1fr) !important; }
  .au-staff-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .au-mission-container { grid-template-columns: 1fr !important; }
}
@media (max-width: 640px) {
  .au-grid { grid-template-columns: 1fr !important; }
  .au-grid--tier3 { grid-template-columns: 1fr !important; }
  .au-staff-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .au-stats-grid { grid-template-columns: 1fr 1fr !important; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   SERVICE PAGE (sp-*)
═══════════════════════════════════════════════════════════════════════════ */
.sp-page { background: var(--white); min-height: 100vh; }

.sp-hero-section { position: relative; min-height: max(640px, 100vh); display: flex; flex-direction: column; overflow: hidden; background-color: rgb(5,10,18); }
@supports (height: 100svh) { .sp-hero-section { min-height: max(640px, 100svh); } }
.sp-hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.sp-hero-overlay-base { position: absolute; inset: 0; background: rgba(5,10,18,0.42); }
.sp-hero-overlay-diag { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(5,10,18,0.45) 0%, transparent 65%); }
.sp-hero-overlay-vert { position: absolute; inset: 0; background: linear-gradient(to top, rgba(5,10,18,0.88) 0%, rgba(5,10,18,0.32) 40%, transparent 70%); }
.sp-hero-content { position: relative; max-width: 1280px; margin-left: auto; margin-right: auto; margin-top: auto; width: 100%; padding: 160px 2.5rem 7rem; }
.sp-hero-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }

.sp-about-section { background: var(--white); padding: 6rem 2rem; }
.sp-body-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 420px; gap: 5rem; align-items: start; }
.sp-desc-para { font-size: 17px; color: #1e293b; line-height: 1.95; margin: 0 0 20px; }
.sp-blockquote { border-left: 3px solid var(--gold); padding-left: 22px; margin: 32px 0 0; font-style: italic; font-size: 18px; font-weight: 600; color: var(--navy); line-height: 1.65; }

.sp-sidebar { background: var(--navy2); border-radius: var(--card-radius-lg); padding: 2.5rem; color: var(--white); position: sticky; top: 120px; }
.sp-features-list { display: flex; flex-direction: column; gap: 12px; }
.sp-feature-item { display: flex; align-items: flex-start; gap: 12px; }
.sp-feature-icon { color: var(--gold); flex-shrink: 0; margin-top: 1px; }
.sp-feature-text { font-size: 15px; color: var(--white); line-height: 1.55; }
.sp-sidebar-cta-wrap { margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08); }
.sp-sidebar-cta { display: flex; align-items: center; justify-content: center; gap: 8px; background: var(--gold); color: var(--white); padding: 14px 20px; border-radius: var(--pill-radius); font-size: 15px; font-weight: 700; text-decoration: none; }

.sp-approach-section { background: var(--light); padding: 6rem 2rem; }
.sp-approach-container { max-width: 1280px; margin: 0 auto; }
.sp-approach-header { margin-bottom: 3.5rem; max-width: 640px; }
.sp-approach-body { font-size: 17px; color: #374151; line-height: 1.85; margin: 0; }
.sp-cats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.sp-cat-card { background: var(--white); border-radius: var(--card-radius); padding: 2.25rem; box-shadow: 0 2px 12px rgba(11,26,51,.06); border: 1.5px solid rgba(11,26,51,.06); display: flex; flex-direction: column; gap: 0; transition: box-shadow .25s ease, transform .25s ease; }
.sp-cat-card:hover { box-shadow: 0 12px 48px rgba(11,26,51,.12) !important; transform: translateY(-4px) !important; }
.sp-cat-num-wrap { width: 40px; height: 40px; border-radius: 10px; background: rgba(144,197,62,.09); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.sp-cat-num { font-size: 13px; font-weight: 800; color: var(--gold-d); letter-spacing: 0.02em; }
.sp-cat-title    { font-size: 17px; font-weight: 800; color: var(--navy); margin: 0 0 10px; line-height: 1.25; }
.sp-cat-subtitle { font-size: 15px; color: #374151; line-height: 1.7; margin: 0 0 22px; }
.sp-cat-bullets  { display: flex; flex-direction: column; gap: 10px; margin-top: auto; }
.sp-cat-bullet   { display: flex; align-items: flex-start; gap: 10px; }
.sp-cat-dot      { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 7px; }
.sp-cat-bullet-text { font-size: 15px; color: #374151; line-height: 1.55; }

.sp-related-section { background: var(--white); padding: 5rem 2rem; }
.sp-related-container { max-width: 1280px; margin: 0 auto; }
.sp-related-header { margin-bottom: 2.5rem; }
.sp-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.sp-related-card { text-decoration: none; display: block; border-radius: var(--card-radius); overflow: hidden; border: 1.5px solid rgba(11,26,51,.07); box-shadow: 0 2px 10px rgba(11,26,51,.06); transition: box-shadow .25s ease, transform .25s ease; }
.sp-related-card:hover { box-shadow: 0 12px 40px rgba(11,26,51,.14) !important; transform: translateY(-4px) !important; }
.sp-related-img-wrap { height: 180px; overflow: hidden; position: relative; }
.sp-related-img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.sp-related-img-overlay { position: absolute; inset: 0; background: rgba(5,10,18,0.38); }
.sp-related-body { padding: 1.5rem; }
.sp-related-name { font-size: 16px; font-weight: 800; color: var(--navy); line-height: 1.3; margin-bottom: 10px; }
.sp-related-learn { display: flex; align-items: center; gap: 4px; font-size: 13px; font-weight: 600; color: var(--gold-d); }

.sp-404-inner { text-align: center; }
.sp-404-code  { font-size: 48px; color: var(--gold); margin-bottom: 16px; }
.sp-404-msg   { font-size: 18px; margin-bottom: 24px; }
.sp-404-link  { color: var(--gold); }

@media (max-width: 1024px) {
  .sp-body-grid    { grid-template-columns: 1fr !important; }
  .sp-cats-grid    { grid-template-columns: repeat(2, 1fr) !important; }
  .sp-related-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 700px) {
  .sp-cats-grid    { grid-template-columns: 1fr !important; }
  .sp-related-grid { grid-template-columns: 1fr !important; }
  .sp-hero-h1      { font-size: clamp(34px, 8vw, 58px) !important; }
}
@media (max-width: 768px) {
  .sp-hero-content  { padding: 110px 1.5rem 2.5rem !important; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   LEGAL PAGES (privacy policy, terms of service)
═══════════════════════════════════════════════════════════════════════════ */

/* Hero banner */
.legal-hero {
  background: var(--navy2);
  padding: 11rem 2rem 5rem;
  border-bottom: 1px solid rgba(144,197,62,.12);
}
.legal-hero-inner {
  max-width: 860px;
  margin: 0 auto;
}
.legal-hero-sub {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}
.legal-hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,.82);
  line-height: 1.85;
  max-width: 660px;
  margin: 0;
}

/* Page wrapper */
.legal-page-wrap {
  background: var(--light);
  padding: 4rem 2rem 6rem;
}

/* Two-column layout: TOC + body */
.legal-layout {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 3.5rem;
  align-items: start;
}

/* Sticky sidebar TOC */
.legal-toc {
  position: sticky;
  top: 140px;
  background: var(--white);
  border-radius: var(--card-radius);
  border: 1px solid rgba(11,26,51,.07);
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(11,26,51,.05);
}
.legal-toc-head {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-d);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(11,26,51,.07);
}
.legal-toc-link {
  display: block;
  font-size: 13px;
  color: #374151;
  padding: 6px 0;
  text-decoration: none;
  line-height: 1.45;
  border-left: 2px solid transparent;
  padding-left: 10px;
  margin-left: -10px;
  transition: color .2s, border-color .2s;
}
.legal-toc-link:hover {
  color: var(--navy);
  border-left-color: var(--gold);
}

/* Main body */
.legal-body {
  background: var(--white);
  border-radius: var(--card-radius);
  border: 1px solid rgba(11,26,51,.07);
  padding: 3rem 3.5rem;
  box-shadow: 0 2px 12px rgba(11,26,51,.05);
}

/* Preamble intro block */
.legal-preamble {
  background: var(--light);
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
  padding: 1.25rem 1.5rem;
  margin-bottom: 2.5rem;
  font-size: 15px;
  color: #1e293b;
  line-height: 1.8;
}

/* Section */
.legal-section {
  margin-bottom: 2.75rem;
  padding-bottom: 2.75rem;
  border-bottom: 1px solid rgba(11,26,51,.06);
}
.legal-section:last-of-type {
  border-bottom: none;
  margin-bottom: 2rem;
  padding-bottom: 0;
}
.legal-section-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.legal-para {
  font-size: 16px;
  color: #374151;
  line-height: 1.9;
  margin-bottom: 14px;
}
.legal-para:last-child { margin-bottom: 0; }

/* Notice/callout box */
.legal-notice-box {
  margin-top: 2.5rem;
  background: rgba(144,197,62,.06);
  border: 1px solid rgba(144,197,62,.22);
  border-radius: var(--card-radius);
  padding: 1.5rem 2rem;
}
.legal-notice-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-d);
  margin-bottom: 10px;
}
.legal-notice-body {
  font-size: 15px;
  color: #374151;
  line-height: 1.8;
  margin: 0;
}
.legal-link {
  color: var(--gold-d);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ALL-CAPS warning paragraph (for ToS liability clause) */
.legal-para-caps {
  font-size: 14px;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.8;
  margin-bottom: 14px;
}

@media (max-width: 900px) {
  .legal-layout { grid-template-columns: 1fr !important; }
  .legal-toc     { position: static !important; }
  .legal-body    { padding: 2rem 1.5rem !important; }
}
@media (max-width: 640px) {
  .legal-hero    { padding: 9rem 1.25rem 3.5rem !important; }
  .legal-page-wrap { padding: 2rem 1rem 4rem !important; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════════════════════════════════════ */

/* Hero re-uses sp-hero-section, sp-hero-img, sp-hero-overlay-*, sp-hero-content — no hero CSS needed here */

/* ── Form + Info section (dark navy, mirrors au-leadership-section) ── */
.ct-form-section {
  background: var(--white);
  padding: 6rem 2rem 7rem;
  position: relative;
  overflow: hidden;
}
.ct-form-section-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(ellipse at 100% 0%, rgba(11,26,51,.02) 0%, transparent 55%);
}
.ct-form-section-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 5rem;
  align-items: start;
}

/* ── Form column ── */
.ct-form-col {}
.ct-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 0;
}
.ct-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.ct-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.ct-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #374151;
}
.ct-req { color: var(--gold-d); }
.ct-input,
.ct-select,
.ct-textarea {
  background: var(--white);
  border: 1.5px solid #d1d5db;
  border-radius: 8px;
  padding: 13px 15px;
  font-size: 15px;
  font-family: inherit;
  color: #111827;
  transition: border-color .2s, box-shadow .2s, background .2s;
  outline: none;
  width: 100%;
  box-sizing: border-box;
}
.ct-input::placeholder,
.ct-textarea::placeholder { color: #9ca3af; }
.ct-input:hover,
.ct-select:hover,
.ct-textarea:hover { background: var(--light); }
.ct-input:focus,
.ct-select:focus,
.ct-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(144,197,62,.14);
  background: var(--white);
}
.ct-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 38px;
  cursor: pointer;
}
.ct-select option { background: var(--white); color: #111827; }
.ct-textarea { resize: vertical; min-height: 128px; }

/* Submit button — extend gts-btn-solid to full width */
.ct-submit {
  width: 100%;
  justify-content: center;
  transition: background .2s, transform .15s, opacity .2s;
}
.ct-submit:hover:not(:disabled) { transform: translateY(-1px); }
.ct-submit:disabled { opacity: .55; cursor: not-allowed; transform: none; }

/* ── Form validation error states ── */
.ct-field-error { border-color: #dc2626 !important; }
.ct-field-error:focus { box-shadow: 0 0 0 3px rgba(220,38,38,.15) !important; }
.ct-error-msg {
  font-size: 12px;
  color: #dc2626;
  font-weight: 500;
  margin: 4px 0 0;
  line-height: 1.4;
}

.ct-disclaimer-link { color: rgba(255,255,255,.55); text-decoration: underline; text-underline-offset: 2px; }
.ct-disclaimer-link:hover { color: var(--gold); }
.ct-disclaimer {
  font-size: 12px;
  color: rgba(255,255,255,.35);
  text-align: center;
  line-height: 1.65;
  margin: 0;
}

/* Success state */
.ct-success {
  text-align: center;
  padding: 3rem 0;
}
.ct-success-icon {
  width: 72px; height: 72px;
  background: rgba(144,197,62,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  color: var(--gold-d);
}
.ct-success-h2 {
  font-size: 26px; font-weight: 800;
  color: var(--navy); margin-bottom: 14px;
}
.ct-success-body {
  font-size: 16px; color: #374151;
  line-height: 1.8; max-width: 440px; margin: 0 auto 28px;
}
.ct-reset-btn {
  display: inline-flex; align-items: center; gap: 7px;
  background: none; border: 1.5px solid rgba(11,26,51,.2);
  color: #374151;
  font-size: 14px; font-weight: 600; font-family: inherit;
  padding: 11px 22px; border-radius: 8px; cursor: pointer;
  transition: border-color .2s, color .2s;
}
.ct-reset-btn:hover { border-color: var(--gold-d); color: var(--gold-d); }

/* ── Info column ── */
.ct-info-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Info blocks — explicit dark navy cards on the white form section */
.ct-info-block {
  background: var(--navy2);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--card-radius);
  padding: 1.75rem;
}
.ct-info-block-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

/* Guarantee rows */
.ct-guarantee-row {
  display: flex; align-items: center; gap: 13px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.ct-guarantee-row:last-child { border-bottom: none; padding-bottom: 0; }
.ct-guarantee-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: rgba(144,197,62,.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.ct-guarantee-text { font-size: 14px; font-weight: 600; color: rgba(255,255,255,.85); }

/* Contact items */
.ct-contact-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  text-decoration: none;
  border-radius: 6px;
  transition: background .15s;
  margin: 0 -8px; padding-left: 8px; padding-right: 8px;
}
.ct-contact-item:last-of-type { border-bottom: none; }
a.ct-contact-item:hover { background: rgba(144,197,62,.07); }
.ct-contact-item--static { cursor: default; }
.ct-contact-icon {
  width: 32px; height: 32px; flex-shrink: 0; margin-top: 1px;
  background: rgba(255,255,255,.07);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.ct-contact-sublabel {
  font-size: 10px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 3px;
}
.ct-contact-value {
  font-size: 14px; font-weight: 600; color: var(--white); line-height: 1.5;
}
.ct-license-row {
  font-size: 11px; font-weight: 600; letter-spacing: 0.04em;
  color: rgba(255,255,255,.3);
  padding-top: 12px; margin-top: 4px;
  border-top: 1px solid rgba(255,255,255,.06);
}

/* Emergency block */
.ct-emergency-block {
  background: linear-gradient(135deg, rgba(11,26,51,.9) 0%, rgba(7,17,32,.95) 100%);
  border: 1px solid rgba(144,197,62,.25);
  border-radius: var(--card-radius);
  padding: 1.75rem;
}
.ct-emergency-label {
  font-size: 11px; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
}
.ct-emergency-body {
  font-size: 14px; color: rgba(255,255,255,.7); line-height: 1.7; margin-bottom: 18px;
}
.ct-emergency-btn {
  width: 100%; box-sizing: border-box; justify-content: center;
  font-size: 15px;
}

/* Offices section replaced by shared OfficesMap component — no ct-offices-* CSS needed */

/* ── Responsive ── */
@media (max-width: 1100px) {

  .ct-form-section-inner { grid-template-columns: 1fr 360px !important; gap: 3.5rem !important; }
}
@media (max-width: 900px) {
  .ct-form-section-inner { grid-template-columns: 1fr !important; gap: 3rem !important; }
  .ct-info-col { display: grid !important; grid-template-columns: 1fr 1fr !important; }
  .ct-emergency-block { grid-column: 1 / -1 !important; }
}
@media (max-width: 640px) {
  .ct-form-section   { padding: 4rem 1.25rem 5rem !important; }
  .ct-field-row      { grid-template-columns: 1fr !important; }
  .ct-info-col       { grid-template-columns: 1fr !important; }
  .ct-offices-section { padding: 3.5rem 1rem 4rem !important; }
  .ct-offices-grid   { grid-template-columns: repeat(2, 1fr) !important; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   SERVICE LOCATION PAGE (slp-*)
═══════════════════════════════════════════════════════════════════════════ */
.slp-page { background: var(--white); min-height: 100vh; }
.slp-404-bg { background: var(--navy2); color: var(--white); }
.slp-404-wrap { text-align: center; }
.slp-404-num { font-size: 48px; color: var(--gold); margin-bottom: 16px; }
.slp-404-msg { font-size: 18px; margin-bottom: 24px; }
.slp-404-link { color: var(--gold); }
.slp-hero { position: relative; min-height: 90vh; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; }
.slp-hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.slp-hero-overlay-r { position: absolute; inset: 0; background: linear-gradient(to right, rgba(7,17,32,.94) 0%, rgba(7,17,32,.8) 50%, rgba(7,17,32,.33) 100%); }
.slp-hero-overlay-t { position: absolute; inset: 0; background: linear-gradient(to top, rgba(7,17,32,.8) 0%, transparent 55%); }
.slp-hero-inner { position: relative; max-width: 1280px; margin: 0 auto; padding: 160px 2rem 6rem; width: 100%; }
.slp-breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 32px; font-size: 12px; color: rgba(255,255,255,.82); flex-wrap: wrap; }
.slp-breadcrumb a { color: rgba(255,255,255,.82); text-decoration: none; }
.slp-breadcrumb-city { color: var(--gold); }
.slp-pills { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }
.slp-pill-svc { background: rgba(144,197,62,.13); color: var(--gold); font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; padding: 5px 16px; border-radius: 50px; border: 1px solid rgba(144,197,62,.25); }
.slp-pill-loc { background: rgba(255,255,255,.1); color: var(--white); font-size: 10px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; padding: 5px 16px; border-radius: 50px; display: inline-flex; align-items: center; gap: 5px; }
.slp-hero-title { color: var(--white) !important; font-size: clamp(40px, 6vw, 72px) !important; margin-bottom: 24px !important; line-height: 1.05 !important; }
.slp-hero-title-city { color: var(--gold); }
.slp-hero-sub { color: var(--white) !important; font-size: clamp(15px, 1.5vw, 18px) !important; max-width: 540px !important; line-height: 1.85 !important; margin-bottom: 40px !important; }
.slp-cta-row { display: flex; gap: 16px; flex-wrap: wrap; }
.slp-trust-bar { background: var(--navy); padding: 1.75rem 2rem; }
.slp-trust-inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; justify-content: space-around; gap: 2rem; }
.slp-trust-item { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.slp-trust-icon { color: var(--gold); }
.slp-trust-label { font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.72); margin-bottom: 2px; }
.slp-trust-value { font-size: 13px; font-weight: 600; color: var(--white); }
.slp-context-section { padding: 7rem 2rem; background: var(--white); }
.slp-context-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 3fr 2fr; gap: 5rem; align-items: start; }
.slp-context-h2 { color: var(--navy); margin-bottom: 24px; }
.slp-context-body { font-size: 16px; color: var(--color-body-on-light); line-height: 1.95; margin-bottom: 36px; }
.slp-speak-btn { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 700; color: var(--white); text-decoration: none; background: var(--navy); padding: 14px 28px; border-radius: 50px; }
.slp-contact-card { background: var(--navy2); border-radius: 24px; padding: 2.5rem; color: var(--white); position: sticky; top: 120px; }
.slp-contact-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,.07); }
.slp-contact-item-icon { width: 36px; height: 36px; border-radius: 10px; background: rgba(144,197,62,.09); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--gold); }
.slp-contact-item-label { font-size: 9px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.72); margin-bottom: 5px; }
.slp-contact-item-value { font-size: 14px; font-weight: 600; color: var(--white); }
.slp-contact-addr { font-size: 12px; color: var(--white); text-align: center; margin-bottom: 20px; }
.slp-contact-cta { display: flex; align-items: center; justify-content: center; gap: 8px; background: var(--gold); color: var(--white); padding: 15px 24px; border-radius: 50px; font-size: 14px; font-weight: 700; text-decoration: none; }
.slp-highlights-section { background: var(--light); padding: 7rem 2rem; }
.slp-highlights-inner { max-width: 1280px; margin: 0 auto; }
.slp-highlights-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3.5rem; flex-wrap: wrap; gap: 1rem; }
.slp-all-link { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: var(--gold-d); text-decoration: none; }
.slp-highlights-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; max-width: 900px; }
.slp-highlight-card { display: flex; align-items: flex-start; gap: 16px; background: var(--white); border-radius: 14px; padding: 1.5rem 1.75rem; box-shadow: var(--shadow-card); border: 1.5px solid rgba(11,26,51,.05); }
.slp-highlight-icon { width: 28px; height: 28px; border-radius: 8px; background: rgba(61,112,20,.08); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--gold-d); }
.slp-highlight-text { font-size: 14px; color: var(--navy); font-weight: 500; line-height: 1.6; }
.slp-related-section { background: var(--white); padding: 6rem 2rem; }
.slp-related-inner { max-width: 1280px; margin: 0 auto; }
.slp-related-header { margin-bottom: 2.5rem; }
.slp-related-list { display: flex; flex-wrap: wrap; gap: 1rem; }
.slp-related-pill { display: inline-flex; align-items: center; gap: 8px; background: var(--light); color: var(--navy); padding: 12px 22px; border-radius: 50px; font-size: 13px; font-weight: 600; text-decoration: none; transition: background .2s, color .2s; border: 1.5px solid rgba(11,26,51,.07); }
.slp-related-pill:hover { background: var(--navy); color: var(--white); }
.slp-related-all { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: var(--gold-d); padding: 12px 22px; border-radius: 50px; font-size: 13px; font-weight: 700; text-decoration: none; border: 1.5px solid rgba(61,112,20,.25); }
.slp-closing-section { background: var(--navy2); padding: 8rem 2rem; text-align: center; position: relative; overflow: hidden; }
.slp-closing-glow { position: absolute; inset: 0; background-image: radial-gradient(ellipse at 50% 100%, rgba(144,197,62,.07) 0%, transparent 65%); pointer-events: none; }
.slp-closing-inner { position: relative; max-width: 700px; margin: 0 auto; }
.slp-closing-h2 { color: var(--white); margin-bottom: 20px; }
.slp-closing-body { font-size: 16px; color: var(--color-body-on-dark); line-height: 1.85; margin: 0 auto 44px; max-width: 520px; }
.slp-closing-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
@media (max-width: 900px) { .slp-context-grid { grid-template-columns: 1fr !important; gap: 3rem !important; } }
@media (max-width: 600px) {
  .slp-trust-inner { flex-direction: column !important; align-items: flex-start !important; gap: 2rem !important; }
  .slp-highlights-grid { grid-template-columns: 1fr !important; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   GTS CONSULT CTA (gts-cta-section)
═══════════════════════════════════════════════════════════════════════════ */
.gts-cta-section { background: var(--navy2); padding: 7rem 2rem; text-align: center; position: relative; overflow: hidden; }
.gts-cta-glow { position: absolute; inset: 0; background-image: radial-gradient(ellipse at 50% 120%, rgba(144,197,62,.08) 0%, transparent 60%); pointer-events: none; }
.gts-cta-inner { position: relative; max-width: 680px; margin: 0 auto; }
.gts-cta-heading { color: var(--white); margin-bottom: 20px; }
.gts-cta-body { font-size: 16px; color: var(--color-body-on-dark); line-height: 1.85; max-width: 500px; margin: 0 auto 40px; }
.gts-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.gts-cta-secondary { display: inline-flex; align-items: center; gap: 8px; padding: 18px 32px; }

/* ═══════════════════════════════════════════════════════════════════════════
   GTS PROCESS STEPS (gts-process-*)
═══════════════════════════════════════════════════════════════════════════ */
.gts-process-section { background: var(--navy2); padding: 6rem 2rem; position: relative; overflow: hidden; }
.gts-process-glow { position: absolute; inset: 0; background-image: radial-gradient(ellipse at 100% 50%, rgba(144,197,62,.04) 0%, transparent 55%); pointer-events: none; }
.gts-process-inner { position: relative; max-width: 1280px; margin: 0 auto; }
.gts-process-header { margin-bottom: 3.5rem; }
.gts-process-header-body { font-size: 16px; color: var(--color-body-on-dark); line-height: 1.85; max-width: 560px; margin: 0; }
.gts-process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.gts-process-step { padding: 2rem 1.75rem; border-radius: 14px; border: 1px solid rgba(255,255,255,.08); background: rgba(255,255,255,.03); transition: background .22s; }
.gts-process-step:hover { background: rgba(255,255,255,.06); }
.gts-process-step-hd { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.gts-process-icon-wrap { width: 40px; height: 40px; border-radius: 10px; background: rgba(144,197,62,.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--gold); }
.gts-process-step-num { font-size: 11px; font-weight: 700; letter-spacing: .1em; color: rgba(255,255,255,.7); }
.gts-process-step-title { font-size: 16px; font-weight: 700; color: var(--white); margin: 0 0 12px; }
.gts-process-step-desc { font-size: 13.5px; color: var(--color-body-on-dark); line-height: 1.75; margin: 0; }
@media (max-width: 1024px) { .gts-process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px)  { .gts-process-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════════════════════════
   GTS GLOBAL COVERAGE (gts-cov-*)
═══════════════════════════════════════════════════════════════════════════ */
.gts-cov-section { background: var(--navy2); padding: 6rem 2rem; position: relative; overflow: hidden; }
.gts-cov-glow { position: absolute; inset: 0; background-image: radial-gradient(ellipse at 20% 60%, rgba(144,197,62,.06) 0%, transparent 55%), radial-gradient(ellipse at 85% 30%, rgba(144,197,62,.04) 0%, transparent 50%); pointer-events: none; }
.gts-cov-inner { position: relative; max-width: 1280px; margin: 0 auto; }
.gts-cov-header { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 2rem; margin-bottom: 3.5rem; }
.gts-cov-eyebrow-icon { display: inline-flex; align-items: center; gap: 6px; }
.gts-cov-header-body { font-size: 16px; color: var(--color-body-on-dark); line-height: 1.85; max-width: 560px; margin: 0; }
.gts-cov-cta { display: inline-flex; align-items: center; gap: 8px; background: var(--gold); color: var(--white); padding: 14px 28px; border-radius: var(--btn-radius); font-size: 13px; font-weight: 700; text-decoration: none; letter-spacing: .04em; text-transform: uppercase; white-space: nowrap; flex-shrink: 0; transition: background .2s, box-shadow .2s; }
.gts-cov-cta:hover { background: #7aaa30; box-shadow: 0 8px 32px rgba(144,197,62,.35); }
.gts-cov-regions { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
.gts-cov-card { padding: 1.75rem 1.5rem; border-radius: 14px; border: 1px solid rgba(255,255,255,.08); background: rgba(255,255,255,.03); transition: border-color .22s, background .22s; }
.gts-cov-card:hover { border-color: rgba(144,197,62,.3); background: rgba(255,255,255,.055); }
.gts-cov-card-icon { width: 36px; height: 36px; border-radius: 9px; background: rgba(144,197,62,.1); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; color: var(--gold); }
.gts-cov-region-name { font-size: 14px; font-weight: 800; color: var(--white); margin-bottom: 8px; line-height: 1.25; }
.gts-cov-region-detail { font-size: 12px; color: var(--color-body-on-dark); line-height: 1.65; }
.gts-cov-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 3rem; padding-top: 2.5rem; border-top: 1px solid rgba(255,255,255,.07); }
.gts-cov-stat { text-align: center; }
.gts-cov-stat-num { font-size: clamp(28px, 3vw, 40px); font-weight: 900; color: var(--gold); letter-spacing: -.03em; line-height: 1; margin-bottom: 8px; }
.gts-cov-stat-label { font-size: 12.5px; color: var(--color-body-on-dark); line-height: 1.5; font-weight: 500; }
@media (max-width: 1024px) { .gts-cov-regions { grid-template-columns: repeat(3, 1fr); } .gts-cov-stats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px)  { .gts-cov-regions { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .gts-cov-regions { grid-template-columns: 1fr; } .gts-cov-stats { grid-template-columns: 1fr 1fr; } }

/* ═══════════════════════════════════════════════════════════════════════════
   GTS STANDARD (gts-std-*)
═══════════════════════════════════════════════════════════════════════════ */
.gts-std-section { background: var(--white); padding: 6rem 2rem; }
.gts-std-inner { max-width: 1280px; margin: 0 auto; }
.gts-std-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.gts-std-body { font-size: 16px; color: var(--color-body-on-light); line-height: 1.9; margin: 0 0 20px; }
.gts-std-body-last { font-size: 16px; color: var(--color-body-on-light); line-height: 1.9; margin: 0 0 32px; }
.gts-std-cta { display: inline-flex; align-items: center; gap: 8px; background: var(--gold); color: var(--white); padding: 15px 32px; border-radius: var(--btn-radius); font-size: 14px; font-weight: 700; text-decoration: none; letter-spacing: .04em; text-transform: uppercase; transition: background .2s, box-shadow .2s; }
.gts-std-cta:hover { background: #7aaa30; box-shadow: 0 8px 32px rgba(144,197,62,.35); }
.gts-std-creds { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.gts-std-cred { border-radius: 16px; padding: 2rem 1.75rem; display: flex; flex-direction: column; gap: 8px; }
.gts-std-cred--dark  { background: var(--navy2); }
.gts-std-cred--light { background: var(--light); }
.gts-std-cred-num { font-size: clamp(30px, 3vw, 42px); font-weight: 900; letter-spacing: -.03em; line-height: 1; }
.gts-std-cred--dark  .gts-std-cred-num { color: var(--gold); }
.gts-std-cred--light .gts-std-cred-num { color: var(--navy); }
.gts-std-cred-label { font-size: 12.5px; line-height: 1.5; font-weight: 500; }
.gts-std-cred--dark  .gts-std-cred-label { color: var(--white); }
.gts-std-cred--light .gts-std-cred-label { color: var(--color-body-on-light); }
@media (max-width: 1024px) { .gts-std-grid  { grid-template-columns: 1fr; gap: 3rem; } }
@media (max-width: 480px)  { .gts-std-creds { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════════════
   MEDIA PAGE  (mp-*)
═══════════════════════════════════════════════════════════════ */

/* Logos strip */
.mp-logos-section    { background: var(--navy2); padding: 4rem 2rem; }
.mp-logos-container  { max-width: 1280px; margin: 0 auto; }
.mp-logos-grid       { display: grid; grid-template-columns: repeat(5, 1fr); gap: 2rem 3.5rem; margin-top: 2.5rem; align-items: center; }
.mp-logo-item        { display: flex; align-items: center; justify-content: center; }
.mp-logo-img         { max-height: 30px; width: auto; max-width: 140px; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.45; transition: opacity .2s; }
.mp-logo-item:hover .mp-logo-img { opacity: 0.85; }

/* Coverage section */
.mp-coverage-section    { background: var(--light); padding: 6rem 2rem; }
.mp-coverage-container  { max-width: 1280px; margin: 0 auto; }
.mp-coverage-header     { margin-bottom: 2.5rem; }
.mp-coverage-sub        { color: #6b7280; font-size: 17px; max-width: 580px; margin-top: 10px; line-height: 1.65; }

/* Filter tabs */
.mp-filter-bar             { display: flex; gap: 8px; margin-bottom: 2.5rem; flex-wrap: wrap; }
.mp-filter-tab             { padding: 10px 24px; border-radius: var(--pill-radius); font-size: 14px; font-weight: 600; font-family: var(--font-base); cursor: pointer; border: 1.5px solid; transition: all .2s; letter-spacing: 0.02em; background: none; }
.mp-filter-tab--active     { background: var(--navy); color: var(--white); border-color: var(--navy); }
.mp-filter-tab--inactive   { color: #4B5563; border-color: rgba(11,26,51,.2); }
.mp-filter-tab--inactive:hover { border-color: var(--navy); color: var(--navy); }

/* Press cards grid */
.mp-grid              { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.mp-card              { display: flex; flex-direction: column; background: var(--white); border-radius: var(--card-radius); overflow: hidden; box-shadow: var(--shadow-card); text-decoration: none; transition: box-shadow .25s, transform .25s; }
.mp-card:hover        { box-shadow: var(--shadow-card-hover); transform: translateY(-3px); }
.mp-card-img-wrap     { position: relative; height: 220px; overflow: hidden; flex-shrink: 0; }
.mp-card-img          { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.mp-card:hover .mp-card-img { transform: scale(1.04); }
.mp-card-img-overlay  { position: absolute; inset: 0; background: linear-gradient(to top, rgba(7,17,32,.5) 0%, transparent 60%); }
.mp-card-play         { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.mp-card-play-circle  { width: 54px; height: 54px; border-radius: 50%; background: rgba(144,197,62,.92); display: flex; align-items: center; justify-content: center; color: var(--white); }
.mp-card-type-badge   { position: absolute; top: 12px; right: 12px; background: rgba(7,17,32,.72); color: var(--white); font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 4px 10px; border-radius: var(--pill-radius); }
.mp-card-body         { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.mp-card-tag          { font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-d); margin-bottom: 8px; }
.mp-card-outlet       { font-size: 18px; font-weight: 800; color: var(--navy); margin-bottom: 10px; line-height: 1.2; font-family: var(--font-base); }
.mp-card-desc         { font-size: 14px; color: #4B5563; line-height: 1.65; flex: 1; margin-bottom: 16px; }
.mp-card-cta          { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: var(--gold-d); letter-spacing: 0.02em; }

/* Contact section */
.mp-contact-section  { background: var(--navy2); padding: 6rem 2rem; position: relative; overflow: hidden; }
.mp-contact-glow     { position: absolute; inset: 0; background-image: radial-gradient(ellipse at 100% 0%, rgba(144,197,62,.06) 0%, transparent 55%); pointer-events: none; }
.mp-contact-inner    { position: relative; max-width: 1280px; margin: 0 auto; }
.mp-contact-grid     { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.mp-contact-lead     { color: var(--color-body-on-dark); font-size: 17px; line-height: 1.7; margin-bottom: 32px; }
.mp-contact-detail   { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 22px; }
.mp-detail-icon      { width: 40px; height: 40px; border-radius: 8px; background: rgba(144,197,62,.1); display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0; }
.mp-detail-label     { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 5px; }
.mp-detail-val       { font-size: 15px; font-weight: 600; color: var(--white); text-decoration: none; }
.mp-detail-val:hover { color: var(--gold); }
.mp-detail-val-muted { font-size: 15px; color: var(--color-body-on-dark); }
.mp-press-note       { margin-top: 32px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: var(--card-radius); padding: 1.5rem; }
.mp-press-note-label { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,.06); }
.mp-press-note-list  { padding-left: 1.1rem; margin: 0; color: var(--color-body-on-dark); font-size: 14px; line-height: 1.85; }
.mp-form-wrap        { background: var(--white); border-radius: var(--card-radius-lg); padding: 2.5rem; box-shadow: 0 32px 80px rgba(0,0,0,.28); }

/* Brand Assets — unified press-kit list */
.mp-kit-section       { background: var(--light); padding: 6rem 2rem; }
.mp-kit-inner         { max-width: 860px; margin: 0 auto; }
.mp-kit-header        { margin-bottom: 3rem; }
.mp-kit-sub           { color: #6b7280; font-size: 17px; max-width: 520px; line-height: 1.65; }
.mp-kit-group         { margin-bottom: 2.5rem; }
.mp-kit-group-label   { font-size: 11px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-d); margin-bottom: 0.75rem; }
.mp-kit-list          { border: 1px solid #e2e5ea; border-radius: var(--card-radius); overflow: hidden; background: var(--white); box-shadow: var(--shadow-card); }
.mp-kit-row           { display: flex; align-items: center; gap: 1.25rem; padding: 1.1rem 1.5rem; border-bottom: 1px solid #eef0f3; }
.mp-kit-row:last-child { border-bottom: none; }
.mp-kit-thumb         { width: 52px; height: 52px; border-radius: 8px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.mp-kit-thumb--dark   { background: var(--navy2); }
.mp-kit-thumb--light  { background: #f0f2f5; }
.mp-kit-thumb-img     { max-width: 36px; max-height: 36px; object-fit: contain; }
.mp-kit-body          { flex: 1; min-width: 0; }
.mp-kit-label         { font-size: 14px; font-weight: 700; color: var(--navy); font-family: var(--font-base); margin-bottom: 3px; }
.mp-kit-desc          { font-size: 13px; color: #6b7280; line-height: 1.5; }
.mp-kit-meta          { font-size: 11px; color: #9ca3af; margin-top: 3px; letter-spacing: 0.02em; }
.mp-kit-btn           { flex-shrink: 0; display: inline-flex; align-items: center; gap: 7px; padding: 0.55rem 1.1rem; background: var(--navy); color: var(--white); font-size: 13px; font-weight: 700; border-radius: 6px; text-decoration: none; letter-spacing: 0.03em; white-space: nowrap; transition: background 0.18s; }
.mp-kit-btn:hover     { background: var(--navy2); }

/* Responsive */
@media (max-width: 1100px) {
  .mp-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .mp-contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .mp-logos-grid   { grid-template-columns: repeat(4, 1fr); }
  .mp-kit-row      { flex-wrap: wrap; gap: 1rem; }
  .mp-kit-btn      { width: 100%; justify-content: center; }
}
@media (max-width: 700px) {
  .mp-grid       { grid-template-columns: 1fr; }
  .mp-logos-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem 2rem; }
}
@media (max-width: 480px) {
  .mp-logos-grid  { grid-template-columns: repeat(2, 1fr); }
  .mp-assets-grid { grid-template-columns: 1fr; }
  .mp-form-wrap   { padding: 1.5rem; }
}
