:root {
  --navy: #03162f;
  --navy-2: #06264f;
  --navy-3: #0a3d76;
  --gold: #f2a915;
  --gold-2: #ffc24b;
  --white: #ffffff;
  --muted: #b9c8dc;
  --ink: #13243d;
  --line: rgba(255, 255, 255, 0.18);
  --soft-line: #dbe5f2;
  --shadow: 0 20px 54px rgba(0, 0, 0, 0.22);
  font-family: Arial, Helvetica, sans-serif;
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--white); background: var(--navy); }
a { color: inherit; text-decoration: none; }
p { line-height: 1.7; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(18px, 3vw, 38px);
  padding: 28px clamp(26px, 5vw, 72px);
  transition: background 0.2s ease, padding 0.2s ease, box-shadow 0.2s ease;
}
.site-header.has-shadow {
  padding-top: 16px;
  padding-bottom: 16px;
  background: rgba(3, 22, 47, 0.94);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}
.brand { display: flex; align-items: center; gap: 13px; min-width: 330px; }
.brand-mark { width: 74px; height: 58px; display: grid; place-items: center; }
.brand-mark svg { width: 74px; height: 58px; filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.25)); }
.mark-white { fill: #ffffff; }
.mark-gold, .mark-swoosh { fill: var(--gold); }
.brand-text { display: grid; text-transform: uppercase; letter-spacing: 0; }
.brand-text strong { font-size: clamp(1.35rem, 2vw, 2.02rem); line-height: 0.92; }
.brand-text span { margin-top: 7px; color: var(--gold-2); font-size: clamp(0.86rem, 1vw, 1rem); font-weight: 800; letter-spacing: 0.22em; }
.site-nav { display: flex; justify-content: center; align-items: center; gap: clamp(12px, 2vw, 28px); }
.site-nav a { position: relative; padding: 12px 0; color: #ffffff; font-size: 0.88rem; font-weight: 800; text-transform: uppercase; white-space: nowrap; }
.site-nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.18s ease; }
.site-nav a:hover::after, .site-nav a.active::after { transform: scaleX(1); }
.site-nav a.active { color: var(--gold-2); }
.header-cta { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px; padding: 0 24px; color: #061a35; background: linear-gradient(135deg, var(--gold), var(--gold-2)); border-radius: 8px; font-weight: 900; text-transform: uppercase; box-shadow: 0 16px 32px rgba(242, 169, 21, 0.22); }
.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.26); border-radius: 8px; background: rgba(255,255,255,.08); }
.nav-toggle span { display: block; width: 22px; height: 2px; margin: 5px auto; background: #ffffff; }

.hero-section { position: relative; min-height: 760px; overflow: hidden; padding: 186px clamp(26px, 5vw, 72px) 172px; background: radial-gradient(circle at 80% 38%, rgba(35, 143, 220, 0.34), transparent 32%), linear-gradient(110deg, #020f21 0%, #041e42 48%, #082a58 100%); }
.hero-section::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(126, 203, 255, .32) 1px, transparent 1.5px); background-size: 18px 18px; mask-image: linear-gradient(90deg, transparent 32%, #000 54%, #000 95%); opacity: .55; }
.hero-section::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(2, 15, 33, 0.9) 0%, rgba(2, 15, 33, 0.62) 38%, rgba(2, 15, 33, 0.02) 78%); }
.hero-bg { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.network-map { position: absolute; right: 0; top: 118px; width: 72%; height: 420px; opacity: .9; }
.map-dots path { fill: none; stroke: rgba(123, 210, 255, .62); stroke-width: 1.4; }
.network-nodes circle { fill: #78dbff; filter: drop-shadow(0 0 10px #32c7ff); }
.skyline { position: absolute; right: -12px; bottom: 80px; width: min(72%, 970px); height: 360px; opacity: .98; }
.water { fill: rgba(6, 20, 43, .72); }
.buildings { fill: rgba(4, 24, 54, .88); stroke: rgba(111, 188, 255, .42); stroke-width: 1.4; }
.windows path { fill: none; stroke: rgba(212, 238, 255, .82); stroke-width: 4; stroke-linecap: round; opacity: .75; }
.hero-content { position: relative; z-index: 3; max-width: 720px; }
.welcome { display: flex; align-items: center; gap: 14px; margin: 0 0 18px; color: var(--gold-2); font-size: clamp(1rem, 1.8vw, 1.45rem); font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.welcome::after { content: ""; width: 86px; height: 2px; background: linear-gradient(90deg, var(--gold), transparent); }
h1, h2, h3 { margin: 0; letter-spacing: 0; }
h1 { display: grid; gap: 4px; text-transform: uppercase; line-height: .94; font-size: clamp(3.8rem, 7.2vw, 6.5rem); }
h1 span { color: #ffffff; }
h1 strong { color: var(--gold); font-weight: 900; }
.hero-content h2 { margin-top: 26px; font-size: clamp(1.45rem, 2.45vw, 2.05rem); line-height: 1.18; }
.hero-content h2 span { color: var(--gold); }
.hero-copy { max-width: 650px; margin: 18px 0 0; color: #e2ecf7; font-size: clamp(1rem, 1.7vw, 1.22rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 32px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 56px; padding: 0 27px; border-radius: 8px; font-weight: 900; text-transform: uppercase; border: 2px solid transparent; }
.button-gold { color: #061a35; background: linear-gradient(135deg, var(--gold), var(--gold-2)); box-shadow: 0 15px 30px rgba(242, 169, 21, .25); }
.button-outline { color: #ffffff; border-color: var(--gold); background: rgba(3, 22, 47, .42); }
.button-outline:hover { background: rgba(242, 169, 21, .12); }
.gold-wave { position: absolute; z-index: 4; left: 0; right: 0; bottom: -1px; width: 100%; height: 150px; }
.wave-light { fill: #f7f9fe; }
.wave-gold { fill: var(--gold); }

.services-band { position: relative; z-index: 5; padding: 46px clamp(22px, 5vw, 72px) 76px; background: #03162f; text-align: center; }
.section-kicker { display: flex; align-items: center; justify-content: center; gap: 18px; color: var(--gold-2); font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.section-kicker span { width: 72px; height: 1px; background: rgba(255,255,255,.42); }
.services-band h2 { margin-top: 14px; font-size: clamp(1.75rem, 3vw, 2.5rem); }
.service-row { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); margin-top: 36px; }
.service-item { min-height: 205px; padding: 0 clamp(14px, 2vw, 28px); border-right: 1px solid rgba(255,255,255,.22); }
.service-item:last-child { border-right: 0; }
.service-item h3 { margin-top: 14px; font-size: 1.12rem; line-height: 1.15; }
.service-item p { margin: 12px auto 0; max-width: 205px; color: #d4dfed; font-size: .92rem; line-height: 1.55; }
.service-icon { position: relative; display: grid; width: 62px; height: 62px; margin: 0 auto; place-items: center; border: 3px solid #8ac5f6; border-radius: 8px; color: var(--gold); }
.service-icon::before { font-size: 2rem; font-weight: 900; line-height: 1; }
.code-icon::before { content: "</>"; font-size: 1.55rem; }
.people-icon { border-color: transparent; }
.people-icon::before { content: ""; width: 48px; height: 35px; border-radius: 50% 50% 0 0; border: 4px solid #8ac5f6; border-bottom: 0; box-shadow: -20px 0 0 -7px #f2a915, 20px 0 0 -7px #2f9de0; }
.search-icon { border-radius: 50%; }
.search-icon::after { content: ""; position: absolute; right: -11px; bottom: 4px; width: 22px; height: 4px; border-radius: 4px; background: #8ac5f6; transform: rotate(45deg); }
.payroll-icon::before { content: "$"; }
.training-icon { transform: rotate(45deg); border-radius: 3px; }
.training-icon::before { content: ""; width: 34px; height: 34px; border-top: 4px solid var(--gold); border-left: 4px solid var(--gold); transform: rotate(0deg); }
.cloud-icon { width: 74px; border-radius: 28px; }
.cloud-icon::before { content: "^"; font-size: 2.2rem; }

.content-section { padding: clamp(70px, 9vw, 116px) clamp(24px, 5vw, 72px); }
.light { color: var(--ink); background: #f7f9fe; }
.content-grid { display: grid; grid-template-columns: minmax(0, .92fr) minmax(320px, 1fr); gap: clamp(28px, 6vw, 86px); align-items: start; }
.eyebrow { margin: 0 0 12px; color: #0a6594; font-size: .82rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.light h2, .light h3 { color: #10253f; }
.light h2, .dark-panel h2, .contact-section h2 { font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.06; }
.light p { color: #4f617a; }
.dark-panel { background: linear-gradient(135deg, #041a38, #082f61); }
.split-layout { display: grid; grid-template-columns: minmax(0, .85fr) minmax(320px, .75fr); gap: clamp(28px, 6vw, 86px); align-items: center; }
.gold-text { color: var(--gold-2); }
.dark-panel p { color: #d4dfed; }
.process-list { display: grid; gap: 14px; }
.process-list div { padding: 24px; border: 1px solid rgba(255,255,255,.18); border-radius: 8px; background: rgba(255,255,255,.07); }
.process-list span { display: inline-block; margin-bottom: 10px; color: var(--gold); font-weight: 900; }
.process-list strong { display: block; font-size: 1.2rem; }
.process-list p { margin: 8px 0 0; }
.solution-heading { max-width: 880px; }
.solution-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-top: 34px; }
.solution-grid article { padding: 28px; background: #ffffff; border: 1px solid var(--soft-line); border-radius: 8px; box-shadow: 0 14px 32px rgba(8, 42, 85, .08); }
.solution-grid p { margin-bottom: 0; }
.contact-section { display: grid; grid-template-columns: minmax(0, .82fr) minmax(320px, .76fr); gap: clamp(28px, 6vw, 76px); align-items: start; padding: clamp(70px, 9vw, 116px) clamp(24px, 5vw, 72px); background: #04162f; }
.contact-section p { color: #d4dfed; }
.email-link { display: inline-flex; margin-top: 8px; color: var(--gold-2); font-size: 1.2rem; font-weight: 900; border-bottom: 2px solid var(--gold); }
.address { margin-top: 22px; }
.contact-form { display: grid; gap: 16px; padding: 28px; border: 1px solid rgba(255,255,255,.16); border-radius: 8px; background: rgba(255,255,255,.08); box-shadow: var(--shadow); }
.contact-form label { display: grid; gap: 8px; color: #ffffff; font-weight: 800; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; min-height: 48px; padding: 12px 14px; color: #ffffff; border: 1px solid rgba(255,255,255,.28); border-radius: 8px; background: rgba(3, 22, 47, .72); font: inherit; }
.contact-form textarea { resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: 3px solid rgba(242, 169, 21, .28); border-color: var(--gold); }
.form-note { margin: 0; color: #b9c8dc; font-size: .9rem; }
.site-footer { display: flex; justify-content: space-between; gap: 16px; padding: 28px clamp(24px, 5vw, 72px); color: #d4dfed; background: #020d1f; }
.site-footer p { margin: 0; }
.site-footer a { color: var(--gold-2); font-weight: 900; }

@media (max-width: 1160px) {
  .site-header { grid-template-columns: auto auto; }
  .site-nav { position: absolute; top: 96px; right: 24px; left: 24px; display: none; flex-direction: column; align-items: stretch; padding: 16px; background: rgba(3, 22, 47, .97); border: 1px solid rgba(255,255,255,.18); border-radius: 8px; box-shadow: var(--shadow); }
  .site-nav.is-open { display: flex; }
  .nav-toggle { display: block; justify-self: end; }
  .header-cta { display: none; }
}
@media (max-width: 980px) {
  .hero-section { min-height: auto; padding-top: 144px; }
  .hero-section::before { mask-image: linear-gradient(180deg, transparent 0%, #000 22%, #000 100%); }
  .network-map { width: 100%; opacity: .42; }
  .skyline { width: 104%; opacity: .5; }
  .service-row, .solution-grid, .content-grid, .split-layout, .contact-section { grid-template-columns: 1fr; }
  .service-row { gap: 0; }
  .service-item { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); padding: 28px 18px; min-height: auto; }
  .service-item:last-child { border-bottom: 0; }
}
@media (max-width: 680px) {
  .site-header { padding: 18px; }
  .site-header.has-shadow { padding: 12px 18px; }
  .brand { min-width: 0; }
  .brand-mark, .brand-mark svg { width: 58px; height: 46px; }
  .brand-text strong { font-size: 1.12rem; }
  .brand-text span { font-size: .68rem; letter-spacing: .16em; }
  .site-nav { top: 76px; left: 18px; right: 18px; }
  .hero-section { padding: 126px 20px 136px; }
  h1 { font-size: clamp(3rem, 14vw, 4.5rem); }
  .welcome::after { width: 52px; }
  .hero-actions .button { width: 100%; }
  .gold-wave { height: 96px; }
  .services-band { padding-top: 34px; }
  .section-kicker span { width: 42px; }
  .content-section, .contact-section { padding-left: 20px; padding-right: 20px; }
  .site-footer { flex-direction: column; }
}


/* Enhanced UI layer: lightweight, static, and deploy-friendly. */
body {
  background:
    linear-gradient(180deg, #03162f 0%, #041a38 42%, #f7f9fe 42%, #f7f9fe 100%);
}
.site-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.brand-mark svg {
  transition: transform 0.28s ease, filter 0.28s ease;
}
.brand:hover .brand-mark svg {
  transform: translateY(-2px) scale(1.03);
  filter: drop-shadow(0 12px 26px rgba(242, 169, 21, 0.25));
}
.header-cta,
.button {
  position: relative;
  overflow: hidden;
}
.header-cta::before,
.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,.34) 42%, transparent 68%);
  transform: translateX(-120%);
  transition: transform .55s ease;
}
.header-cta:hover::before,
.button:hover::before {
  transform: translateX(120%);
}
.button-icon {
  position: relative;
  z-index: 1;
  display: inline-grid;
  width: 24px;
  height: 24px;
  margin-right: 9px;
  place-items: center;
  border-radius: 6px;
  background: rgba(255,255,255,.2);
  font-size: .85rem;
}
.hero-section {
  isolation: isolate;
}
.hero-section::before {
  animation: mapDrift 18s linear infinite alternate;
}
.network-map {
  animation: floatNetwork 9s ease-in-out infinite alternate;
}
.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 650px;
  margin-top: 30px;
}
.hero-proof div {
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  box-shadow: 0 14px 34px rgba(0,0,0,.18);
  backdrop-filter: blur(10px);
}
.hero-proof strong {
  display: block;
  color: var(--gold-2);
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  line-height: 1;
}
.hero-proof span {
  display: block;
  margin-top: 7px;
  color: #dce8f7;
  font-size: .84rem;
  line-height: 1.35;
}
.hero-dashboard {
  position: absolute;
  z-index: 3;
  right: clamp(26px, 5vw, 72px);
  bottom: 178px;
  width: min(390px, 34vw);
  padding: 22px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255,255,255,.16), rgba(255,255,255,.06));
  box-shadow: 0 28px 70px rgba(0,0,0,.34);
  backdrop-filter: blur(14px);
}
.dashboard-header {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: .96rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.status-dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: #3ce9ff;
  box-shadow: 0 0 0 7px rgba(60,233,255,.12), 0 0 24px rgba(60,233,255,.85);
}
.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}
.dashboard-grid div {
  min-height: 82px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  background: rgba(3,22,47,.58);
}
.dashboard-grid span {
  display: block;
  color: #9dc6ec;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .11em;
}
.dashboard-grid strong {
  display: block;
  margin-top: 8px;
  color: var(--gold-2);
  font-size: 1.28rem;
}
.dashboard-flow {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin: 18px 0;
}
.dashboard-flow span {
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), #49d9ff);
  animation: pulseFlow 1.8s ease-in-out infinite;
}
.dashboard-flow span:nth-child(2) { animation-delay: .18s; }
.dashboard-flow span:nth-child(3) { animation-delay: .36s; }
.hero-dashboard p {
  margin: 0;
  color: #dbe8f7;
  font-size: .92rem;
  line-height: 1.55;
}
.tool-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: -12px auto 28px;
}
.tool-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 8px;
  color: #dce8f7;
  background: rgba(255,255,255,.06);
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.service-item {
  position: relative;
  outline: none;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}
.service-item::before {
  content: "";
  position: absolute;
  inset: 0 10px;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,0));
  opacity: 0;
  transition: opacity .25s ease;
}
.service-item:hover,
.service-item:focus-visible,
.service-item.is-active {
  transform: translateY(-8px);
}
.service-item:hover::before,
.service-item:focus-visible::before,
.service-item.is-active::before {
  opacity: 1;
}
.service-item:hover .service-icon,
.service-item:focus-visible .service-icon,
.service-item.is-active .service-icon {
  box-shadow: 0 0 0 8px rgba(242,169,21,.08), 0 18px 34px rgba(0,0,0,.24);
  transform: translateY(-3px);
}
.service-icon {
  transition: transform .25s ease, box-shadow .25s ease;
}
.content-section.light {
  position: relative;
  overflow: hidden;
}
.content-section.light::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(8,42,85,.05) 1px, transparent 1px), linear-gradient(0deg, rgba(8,42,85,.04) 1px, transparent 1px);
  background-size: 46px 46px;
  pointer-events: none;
}
.content-section.light > *, .dark-panel > *, .contact-section > * {
  position: relative;
  z-index: 1;
}
.solution-grid article,
.process-list div,
.contact-form {
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.solution-grid article:hover,
.process-list div:hover,
.contact-form:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 44px rgba(8,42,85,.14);
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease var(--delay, 0ms), transform .65s ease var(--delay, 0ms);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@keyframes mapDrift {
  from { background-position: 0 0; }
  to { background-position: 90px 36px; }
}
@keyframes floatNetwork {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-18px, 10px, 0); }
}
@keyframes pulseFlow {
  0%, 100% { opacity: .45; transform: scaleX(.72); transform-origin: left; }
  50% { opacity: 1; transform: scaleX(1); }
}
@media (max-width: 1160px) {
  .hero-dashboard {
    position: relative;
    right: auto;
    bottom: auto;
    z-index: 3;
    width: min(100%, 620px);
    margin-top: 34px;
  }
}
@media (max-width: 680px) {
  .hero-proof {
    grid-template-columns: 1fr;
  }
  .dashboard-grid {
    grid-template-columns: 1fr;
  }
  .tool-strip {
    justify-content: flex-start;
  }
  .tool-strip span {
    font-size: .72rem;
  }
}


/* Enhanced delivery-model experience */
.experience-section {
  position: relative;
  overflow: hidden;
  padding: 86px clamp(22px, 5vw, 76px);
  background:
    linear-gradient(135deg, rgba(4, 22, 47, .98), rgba(6, 43, 88, .96)),
    radial-gradient(circle at 80% 20%, rgba(242,169,21,.12), transparent 34%);
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.experience-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, transparent, #000 16%, #000 84%, transparent);
  opacity: .5;
  pointer-events: none;
}
.experience-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(220px, .45fr) minmax(280px, .85fr);
  gap: clamp(24px, 5vw, 70px);
  max-width: 1180px;
  margin: 0 auto 28px;
  align-items: end;
}
.experience-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.65rem);
  line-height: 1.02;
}
.model-switcher {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 1180px;
  margin: 0 auto 18px;
}
.model-tab {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  color: #eaf2fb;
  background: rgba(255,255,255,.07);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}
.model-tab:hover,
.model-tab:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(242,169,21,.72);
  outline: none;
}
.model-tab.is-active {
  color: #09192f;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  border-color: transparent;
  box-shadow: 0 14px 30px rgba(242,169,21,.24);
}
.model-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, .95fr) minmax(260px, .65fr);
  gap: clamp(22px, 4vw, 54px);
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.055));
  box-shadow: 0 30px 70px rgba(0,0,0,.28);
  backdrop-filter: blur(16px);
}
.model-label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 8px;
  color: var(--gold-2);
  background: rgba(242,169,21,.12);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.model-panel h3 {
  margin: 18px 0 14px;
  max-width: 760px;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  line-height: 1.07;
}
.model-panel p {
  margin: 0;
  color: #d4e1f0;
  font-size: 1.03rem;
}
.model-panel ul {
  display: grid;
  gap: 12px;
  align-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
.model-panel li {
  position: relative;
  padding: 14px 14px 14px 42px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  background: rgba(3,22,47,.42);
  color: #eef5ff;
  font-weight: 800;
}
.model-panel li::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 18px;
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(242,169,21,.12);
}
.stack-marquee {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 12px;
  max-width: 1180px;
  margin: 24px auto 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  background: rgba(0,0,0,.14);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.stack-marquee div {
  display: flex;
  flex: 0 0 auto;
  gap: 12px;
  min-width: max-content;
  padding: 12px 0;
  animation: stackMove 26s linear infinite;
}
.stack-marquee span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  color: #e8f1fb;
  background: rgba(255,255,255,.06);
  font-weight: 850;
}
.model-panel.is-changing {
  animation: panelChange .28s ease;
}
@keyframes stackMove {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-100% - 12px)); }
}
@keyframes panelChange {
  from { opacity: .55; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .stack-marquee div,
  .model-panel.is-changing {
    animation: none;
  }
}
@media (max-width: 820px) {
  .experience-heading,
  .model-panel {
    grid-template-columns: 1fr;
  }
  .experience-section {
    padding-block: 64px;
  }
}
@media (max-width: 560px) {
  .model-switcher {
    display: grid;
  }
  .model-tab {
    width: 100%;
  }
  .model-panel {
    padding: 22px;
  }
}


/* Real logo and generated hero image upgrades */
.brand-image-link {
  min-width: 340px;
  width: min(360px, 30vw);
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 8px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 18px 38px rgba(0,0,0,.22);
}
.brand-logo-image {
  display: block;
  width: 100%;
  height: 66px;
  object-fit: contain;
}
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(2,15,33,.97) 0%, rgba(2,15,33,.75) 36%, rgba(2,15,33,.16) 74%),
    linear-gradient(0deg, rgba(3,22,47,.58), rgba(3,22,47,.08) 50%, rgba(3,22,47,.36)),
    url("assets/hero-skyline-network.png");
  background-size: cover;
  background-position: center right;
  transform: scale(1.02);
}
.hero-photo,
.hero-bg > .network-map,
.hero-bg > .skyline {
  display: none;
}
.hero-section {
  background: #020f21;
}
.hero-section::before {
  opacity: .24;
  z-index: 2;
}
.hero-section::after {
  z-index: 2;
  background: linear-gradient(90deg, rgba(2,15,33,.92) 0%, rgba(2,15,33,.68) 38%, rgba(2,15,33,.04) 78%);
}
.hero-content,
.hero-dashboard {
  text-shadow: 0 4px 18px rgba(0,0,0,.38);
}
.testimonial-section {
  position: relative;
  overflow: hidden;
  padding: 88px clamp(22px, 5vw, 76px);
  background: linear-gradient(180deg, #f7f9fe 0%, #eef4fb 100%);
  color: var(--ink);
}
.testimonial-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 16% 18%, rgba(242,169,21,.18), transparent 28%),
    radial-gradient(circle at 82% 12%, rgba(8,61,118,.12), transparent 30%);
  pointer-events: none;
}
.testimonial-heading {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto 34px;
  text-align: center;
}
.testimonial-heading h2 {
  max-width: 760px;
  margin: 8px auto 12px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.04;
  color: #061a35;
}
.testimonial-heading p:last-child {
  max-width: 620px;
  margin: 0 auto;
  color: #5f7188;
}
.testimonial-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}
.testimonial-card {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 330px;
  padding: 30px;
  border: 1px solid rgba(8,42,85,.12);
  border-radius: 8px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 22px 48px rgba(8,42,85,.1);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.testimonial-card:hover {
  transform: translateY(-7px);
  border-color: rgba(242,169,21,.4);
  box-shadow: 0 30px 64px rgba(8,42,85,.16);
}
.featured-testimonial {
  color: #ffffff;
  background: linear-gradient(145deg, #061a35, #0b3a70);
  border-color: rgba(242,169,21,.42);
}
.quote-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 8px;
  color: #061a35;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  font-size: 3rem;
  line-height: 1;
  font-family: Georgia, serif;
}
.testimonial-card p {
  margin: 0;
  color: #44576e;
  font-size: 1rem;
}
.featured-testimonial p {
  color: #e5eef8;
}
.testimonial-person {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(8,42,85,.12);
}
.featured-testimonial .testimonial-person {
  border-color: rgba(255,255,255,.16);
}
.testimonial-person strong,
.testimonial-person span {
  display: block;
}
.testimonial-person strong {
  color: #061a35;
  font-size: 1.05rem;
}
.featured-testimonial .testimonial-person strong {
  color: #ffffff;
}
.testimonial-person span {
  margin-top: 4px;
  color: #6a7c90;
  font-size: .9rem;
  line-height: 1.45;
}
.featured-testimonial .testimonial-person span {
  color: #b9c8dc;
}
.testimonial-type {
  position: absolute;
  right: 18px;
  top: 18px;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 8px;
  color: #061a35;
  background: rgba(242,169,21,.18);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.featured-testimonial .testimonial-type {
  color: #061a35;
  background: var(--gold-2);
}
@media (max-width: 1040px) {
  .brand-image-link {
    min-width: 260px;
    width: 285px;
  }
  .brand-logo-image {
    height: 54px;
  }
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-card {
    min-height: auto;
  }
}
@media (max-width: 680px) {
  .brand-image-link {
    min-width: 210px;
    width: 230px;
    padding: 6px 8px;
  }
  .brand-logo-image {
    height: 44px;
  }
  .testimonial-section {
    padding-block: 62px;
  }
  .testimonial-card {
    padding: 24px;
  }
}


/* Logo-only reference match update */
.brand-image-link {
  min-width: clamp(286px, 28vw, 430px);
  width: clamp(286px, 28vw, 430px);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.brand-logo-image {
  display: block;
  width: 100%;
  height: auto;
  max-height: 96px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.28));
}
.site-header.has-shadow .brand-logo-image {
  max-height: 72px;
}
@media (max-width: 1040px) {
  .brand-image-link {
    min-width: 260px;
    width: 300px;
  }
  .brand-logo-image {
    max-height: 68px;
  }
}
@media (max-width: 680px) {
  .brand-image-link {
    min-width: 210px;
    width: 230px;
  }
  .brand-logo-image {
    max-height: 52px;
  }
}


/* Responsive header overflow fix */
.site-header {
  grid-template-columns: auto minmax(0, 1fr) auto;
}

.site-nav {
  min-width: 0;
}

.header-cta {
  flex-shrink: 0;
  white-space: nowrap;
}

@media (max-width: 1380px) {
  .site-header {
    gap: clamp(12px, 1.6vw, 24px);
    padding-left: clamp(20px, 3vw, 46px);
    padding-right: clamp(20px, 3vw, 46px);
  }

  .brand-image-link {
    min-width: 240px;
    width: clamp(240px, 23vw, 340px);
  }

  .site-nav {
    gap: clamp(8px, 1vw, 16px);
  }

  .site-nav a {
    font-size: 0.78rem;
  }

  .header-cta {
    min-height: 46px;
    padding: 0 16px;
    font-size: 0.8rem;
  }
}

@media (max-width: 1240px) {
  .site-header {
    grid-template-columns: auto auto auto;
    justify-content: space-between;
  }

  .site-nav {
    position: absolute;
    top: 96px;
    right: 24px;
    left: 24px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    background: rgba(3, 22, 47, .97);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .header-cta {
    display: inline-flex;
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .header-cta {
    display: none;
  }
}


/* Go-live header and logo polish */
.site-header {
  grid-template-columns: auto minmax(0, 1fr) auto;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
  background: linear-gradient(90deg, rgba(1, 14, 31, 0.72), rgba(3, 24, 52, 0.56));
}

.site-header.has-shadow {
  background: rgba(2, 17, 38, 0.97);
}

.brand-image-link {
  display: block;
  min-width: 0;
  width: clamp(238px, 23vw, 388px);
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  line-height: 0;
}

.brand-logo-image {
  display: block;
  width: 100%;
  height: auto;
  max-height: 86px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.35));
}

.site-header.has-shadow .brand-logo-image {
  max-height: 62px;
}

.site-nav {
  min-width: 0;
}

.site-nav a {
  font-size: clamp(0.72rem, 0.72vw, 0.88rem);
}

.header-cta {
  flex: 0 0 auto;
  white-space: nowrap;
  min-width: max-content;
  min-height: 48px;
  padding: 0 clamp(16px, 1.4vw, 22px);
}

@media (max-width: 1380px) {
  .site-header {
    gap: 16px;
    padding-left: clamp(20px, 3vw, 42px);
    padding-right: clamp(20px, 3vw, 42px);
  }

  .brand-image-link {
    width: clamp(230px, 21vw, 320px);
  }

  .site-nav {
    gap: clamp(8px, 0.85vw, 14px);
  }
}

@media (max-width: 1240px) {
  .site-header {
    grid-template-columns: auto auto auto;
    justify-content: space-between;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 24px;
    left: 24px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 16px;
    background: rgba(2, 17, 38, 0.98);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px 10px;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .header-cta {
    display: inline-flex;
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: auto auto;
    gap: 12px;
  }

  .brand-image-link {
    width: clamp(202px, 61vw, 250px);
  }

  .brand-logo-image,
  .site-header.has-shadow .brand-logo-image {
    max-height: 54px;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    left: 16px;
    right: 16px;
  }
}


/* Medium-screen header alignment refinement */
@media (max-width: 1240px) and (min-width: 761px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .nav-toggle {
    grid-column: 2;
    justify-self: end;
    margin-right: 12px;
  }

  .site-nav {
    grid-column: 1 / -1;
  }

  .header-cta {
    grid-column: 3;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    justify-self: end;
    margin-right: 0;
  }
}


/* Final go-live menu behavior */
.menu-contact-link {
  display: none;
}

@media (max-width: 1240px) {
  .header-cta {
    display: none;
  }

  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    grid-column: 2;
    justify-self: end;
    margin-right: 0;
  }

  .site-nav {
    grid-column: 1 / -1;
  }

  .menu-contact-link {
    display: block;
    color: var(--gold-2) !important;
  }
}


/* Desktop CTA spacing safeguard */
@media (min-width: 1241px) {
  .site-header {
    grid-template-columns: auto minmax(560px, 1fr) auto;
  }

  .site-nav {
    justify-content: flex-end;
  }

  .header-cta {
    position: relative;
    z-index: 2;
    margin-left: 10px;
  }
}

@media (min-width: 1241px) and (max-width: 1380px) {
  .site-header {
    grid-template-columns: auto minmax(500px, 1fr) auto;
  }

  .site-nav a {
    font-size: 0.74rem;
  }

  .header-cta {
    min-height: 44px;
    padding: 0 14px;
    font-size: 0.78rem;
  }
}


/* Enrollment page */
.enroll-page {
  min-height: 100vh;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(2, 15, 33, 0.94), rgba(2, 15, 33, 0.58)),
    url("assets/hero-skyline-network.png") center / cover no-repeat,
    #021126;
}

.enroll-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 520px);
  align-items: center;
  gap: clamp(32px, 5vw, 76px);
  padding: clamp(28px, 5vw, 72px);
}

.enroll-hero {
  max-width: 720px;
}

.enroll-logo {
  margin-bottom: clamp(54px, 8vh, 96px);
}

.enroll-copy h1 {
  margin: 20px 0 18px;
  color: #ffffff;
  font-size: clamp(3rem, 7vw, 6.6rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.enroll-copy p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.8;
}

.enroll-panel {
  width: 100%;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(3, 22, 47, 0.88);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(18px);
}

.enroll-form {
  display: grid;
  gap: 18px;
}

.enroll-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.enroll-form input,
.enroll-form select,
.enroll-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 14px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
  outline: none;
}

.enroll-form select option {
  color: #061a35;
}

.enroll-form textarea {
  resize: vertical;
  min-height: 112px;
}

.enroll-form input:focus,
.enroll-form select:focus,
.enroll-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(242, 169, 21, 0.16);
}

.enroll-submit {
  width: 100%;
  margin-top: 4px;
  border: 0;
  cursor: pointer;
}

.enroll-form .form-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  line-height: 1.6;
}

@media (max-width: 920px) {
  .enroll-shell {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 24px 20px 36px;
  }

  .enroll-logo {
    margin-bottom: 44px;
  }

  .enroll-copy h1 {
    font-size: clamp(2.7rem, 13vw, 4.4rem);
  }
}

/* PayPal enrollment enhancement */
.enroll-assurance {
  margin-top: clamp(38px, 6vh, 68px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.enroll-assurance div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.enroll-assurance strong {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin-bottom: 14px;
  color: #061a35;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
}

.enroll-assurance span {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
  font-weight: 800;
}

.enroll-panel-heading {
  margin-bottom: 22px;
}

.enroll-panel-heading span,
.payment-summary span {
  color: var(--gold-2);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.enroll-panel-heading h2 {
  margin: 8px 0 0;
  color: #ffffff;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
}

.payment-panel {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.payment-panel[hidden] {
  display: none;
}

.payment-summary {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
  padding: 18px;
  border: 1px solid rgba(242, 169, 21, 0.24);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(242, 169, 21, 0.14), rgba(126, 203, 255, 0.08));
}

.payment-summary h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1.2rem;
}

.payment-summary div {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.payment-summary small {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
  text-transform: uppercase;
}

.payment-summary strong {
  color: var(--gold-2);
  font-size: 2rem;
  line-height: 1;
}

.paypal-status {
  min-height: 24px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  line-height: 1.55;
}

.paypal-status[data-status="success"] {
  color: #9ff0c8;
}

.paypal-status[data-status="warning"] {
  color: #ffd38a;
}

.paypal-status[data-status="error"] {
  color: #ffb4b4;
}

.paypal-button-shell {
  min-height: 46px;
}

.payment-email-link,
.payment-edit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  margin-top: 12px;
  border-radius: 8px;
  font-weight: 900;
  text-transform: uppercase;
}

.payment-email-link {
  color: #061a35;
  background: linear-gradient(135deg, #9ff0c8, #d9ffe8);
}

.payment-edit {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.payment-email-link[hidden] {
  display: none;
}

@media (max-width: 920px) {
  .enroll-assurance {
    grid-template-columns: 1fr;
  }

  .payment-summary div {
    align-items: start;
    flex-direction: column;
  }
}

/* Enrollment premium refresh */
.enroll-page {
  position: relative;
  isolation: isolate;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 78% 12%, rgba(242, 169, 21, 0.18), transparent 24%),
    radial-gradient(circle at 18% 72%, rgba(126, 203, 255, 0.16), transparent 28%),
    linear-gradient(90deg, rgba(2, 15, 33, 0.96), rgba(2, 15, 33, 0.62)),
    url("assets/hero-skyline-network.png") center / cover no-repeat,
    #021126;
}

.enroll-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, rgba(0,0,0,.58), transparent 72%);
}

.enroll-topbar {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px clamp(20px, 5vw, 72px) 0;
}

.enroll-topbar-logo {
  width: clamp(220px, 25vw, 360px);
}

.enroll-topbar-logo .brand-logo-image {
  max-height: 76px;
}

.enroll-topbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.enroll-topbar-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.enroll-topbar-actions a:last-child {
  color: #061a35;
  border-color: transparent;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
}

.enroll-shell {
  min-height: calc(100vh - 100px);
  grid-template-columns: minmax(360px, 0.9fr) minmax(520px, 640px);
  align-items: center;
  padding-top: clamp(28px, 4vw, 54px);
}

.enroll-copy h1 {
  max-width: 680px;
  font-size: clamp(3.3rem, 6.6vw, 7.4rem);
}

.enroll-copy p {
  max-width: 650px;
}

.enroll-assurance {
  max-width: 650px;
}

.enroll-assurance div {
  position: relative;
  overflow: hidden;
  min-height: 124px;
  border-color: rgba(255,255,255,.16);
  background: linear-gradient(145deg, rgba(255,255,255,.1), rgba(255,255,255,.035));
}

.enroll-assurance div::after {
  content: "";
  position: absolute;
  inset: auto -20% -42% 12%;
  height: 70px;
  background: rgba(242, 169, 21, 0.12);
  transform: rotate(-8deg);
}

.enroll-live-card {
  max-width: 650px;
  margin-top: 18px;
  padding: 20px;
  border: 1px solid rgba(242, 169, 21, 0.24);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(3, 22, 47, 0.78), rgba(3, 22, 47, 0.44));
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

.enroll-live-card > div {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.enroll-live-card span {
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.enroll-live-card strong {
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 0.9;
}

.enroll-live-card p {
  margin: 0 0 14px;
  color: rgba(255,255,255,.82);
  font-weight: 800;
}

.enroll-live-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.enroll-live-card li {
  padding: 8px 10px;
  color: rgba(255,255,255,.78);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  font-size: 0.8rem;
  font-weight: 800;
}

.enroll-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 3vw, 38px);
  border-color: rgba(255,255,255,.18);
  background:
    linear-gradient(145deg, rgba(255,255,255,.1), transparent 26%),
    rgba(3, 22, 47, 0.9);
}

.enroll-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), #7ecbff, var(--gold-2));
}

.enroll-panel-heading {
  position: relative;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.enroll-panel-heading p {
  margin: 10px 0 0;
  color: rgba(255,255,255,.7);
  line-height: 1.6;
}

.enroll-form {
  margin-top: 22px;
}

.enroll-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.details-field {
  grid-column: 1 / -1;
}

.enroll-form input,
.enroll-form select,
.enroll-form textarea {
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.075);
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.enroll-form input:hover,
.enroll-form select:hover,
.enroll-form textarea:hover {
  background: rgba(255,255,255,.1);
}

.amount-field span {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  align-items: center;
  min-height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.075);
  overflow: hidden;
}

.amount-field b {
  display: grid;
  place-items: center;
  height: 100%;
  color: #061a35;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  font-size: 0.78rem;
}

.amount-field input {
  min-height: 48px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.amount-field span:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(242, 169, 21, 0.16);
}

.enroll-submit {
  min-height: 56px;
  font-size: 0.98rem;
  box-shadow: 0 18px 32px rgba(242, 169, 21, 0.22);
}

.payment-panel {
  border-top: 0;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  background: rgba(255,255,255,.055);
}

.payment-panel-header {
  margin-bottom: 18px;
}

.payment-panel-header span {
  color: var(--gold-2);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.payment-panel-header h2 {
  margin: 8px 0 0;
  color: #ffffff;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
}

.payment-summary {
  border-color: rgba(242, 169, 21, 0.34);
}

.paypal-status {
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  background: rgba(255,255,255,.055);
}

.payment-edit:hover,
.enroll-topbar-actions a:hover {
  transform: translateY(-1px);
}

@media (max-width: 1180px) {
  .enroll-shell {
    grid-template-columns: 1fr;
  }

  .enroll-hero,
  .enroll-assurance,
  .enroll-live-card {
    max-width: none;
  }
}

@media (max-width: 720px) {
  .enroll-topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .enroll-topbar-actions {
    width: 100%;
  }

  .enroll-topbar-actions a {
    flex: 1;
  }

  .enroll-form-grid {
    grid-template-columns: 1fr;
  }

  .enroll-live-card > div {
    align-items: start;
    flex-direction: column;
  }

  .enroll-shell {
    padding-left: 18px;
    padding-right: 18px;
  }
}

/* Cross-system compatibility and careers page */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

h1,
h2,
h3,
p,
a,
button,
label,
input,
select,
textarea {
  overflow-wrap: anywhere;
}

.enroll-copy h1 {
  max-width: 560px;
  font-size: clamp(3.1rem, 5.2vw, 5.8rem);
}

@media (max-width: 1400px) {
  .enroll-shell {
    grid-template-columns: minmax(320px, 0.78fr) minmax(500px, 590px);
    gap: clamp(24px, 3vw, 44px);
  }

  .enroll-copy h1 {
    max-width: 480px;
    font-size: clamp(2.8rem, 4.8vw, 4.7rem);
  }

  .enroll-copy p {
    max-width: 500px;
  }
}

@media (max-width: 1180px) {
  .enroll-shell {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .enroll-copy h1 {
    max-width: none;
    font-size: clamp(3rem, 9vw, 5.4rem);
  }
}

.career-page {
  min-height: 100vh;
  color: #ffffff;
  background:
    radial-gradient(circle at 76% 20%, rgba(242, 169, 21, 0.18), transparent 24%),
    linear-gradient(90deg, rgba(2, 15, 33, 0.96), rgba(2, 15, 33, 0.64)),
    url("assets/hero-skyline-network.png") center / cover no-repeat,
    #021126;
  overflow-x: hidden;
}

.career-shell {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(520px, 640px);
  align-items: center;
  gap: clamp(32px, 5vw, 76px);
  min-height: calc(100vh - 104px);
  padding: clamp(28px, 5vw, 72px);
}

.career-hero h1 {
  max-width: 700px;
  margin: 20px 0 18px;
  color: #ffffff;
  font-size: clamp(3.2rem, 6vw, 6.8rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.career-hero p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.8;
}

.career-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 690px;
  margin-top: 34px;
}

.career-highlights div {
  min-height: 124px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255,255,255,.1), rgba(255,255,255,.035));
}

.career-highlights strong {
  display: block;
  margin-bottom: 16px;
  color: var(--gold-2);
  font-size: 1.35rem;
}

.career-highlights span {
  display: block;
  color: rgba(255,255,255,.82);
  font-size: .9rem;
  font-weight: 800;
}

.career-panel {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.1), transparent 26%),
    rgba(3, 22, 47, 0.9);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(18px);
}

.career-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), #7ecbff, var(--gold-2));
}

.career-form {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.career-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.career-form input,
.career-form select,
.career-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 14px;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  background: rgba(255,255,255,.075);
  font: inherit;
  outline: none;
}

.career-form select option {
  color: #061a35;
}

.career-form input[type="file"] {
  padding: 11px 14px;
}

.career-form textarea {
  min-height: 116px;
  resize: vertical;
}

.career-form input:focus,
.career-form select:focus,
.career-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(242, 169, 21, 0.16);
}

@media (max-width: 1180px) {
  .career-shell {
    grid-template-columns: 1fr;
  }

  .career-hero h1 {
    max-width: none;
    font-size: clamp(3rem, 9vw, 5.4rem);
  }
}

@media (max-width: 720px) {
  .career-shell {
    padding: 22px 18px 40px;
  }

  .career-highlights {
    grid-template-columns: 1fr;
  }
}

/* Final text fitting and section jump polish */
.hero-content h1,
.hero-content h2,
.enroll-copy h1,
.career-hero h1 {
  text-wrap: balance;
  overflow-wrap: normal;
  word-break: normal;
}

.hero-content h1 {
  font-size: clamp(3.8rem, 7vw, 6.8rem);
}

.hero-content h2 {
  font-size: clamp(1.55rem, 2.3vw, 2.3rem);
}

.hero-copy,
.enroll-copy p,
.career-hero p {
  text-wrap: pretty;
}

.hero-jump {
  display: grid;
  gap: 8px;
  width: min(100%, 420px);
  margin-top: 18px;
  color: rgba(255,255,255,.82);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero-jump select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 8px;
  background: rgba(3, 22, 47, .74);
  font: inherit;
  letter-spacing: 0;
  text-transform: none;
  outline: none;
}

.hero-jump select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(242, 169, 21, .2);
}

.hero-jump option {
  color: #061a35;
}

@media (max-width: 1380px) {
  .hero-content h1 {
    font-size: clamp(3.2rem, 6.2vw, 5.8rem);
  }

  .hero-content h2 {
    font-size: clamp(1.35rem, 2vw, 2rem);
  }

  .enroll-copy h1,
  .career-hero h1 {
    font-size: clamp(2.75rem, 5vw, 4.6rem);
  }
}

@media (max-width: 920px) {
  .hero-content h1,
  .enroll-copy h1,
  .career-hero h1 {
    font-size: clamp(2.8rem, 11vw, 4.8rem);
  }
}

@media (max-width: 520px) {
  .hero-content h1,
  .enroll-copy h1,
  .career-hero h1 {
    font-size: clamp(2.45rem, 12vw, 3.55rem);
  }

  .hero-content h2 {
    font-size: 1.25rem;
  }
}


/* Premium footer inspired by enterprise service sites */
.capptonius-footer {
  padding: clamp(56px, 7vw, 96px) clamp(24px, 7vw, 110px) 0;
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 8% 18%, rgba(242, 169, 21, 0.12), transparent 28%),
    linear-gradient(180deg, #07152b 0%, #091428 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.25fr) repeat(3, minmax(180px, 0.72fr));
  gap: clamp(32px, 5vw, 76px);
  align-items: start;
  max-width: 1440px;
  margin: 0 auto;
}

.footer-brand-block {
  display: grid;
  gap: 22px;
}

.footer-logo {
  display: inline-flex;
  width: min(100%, 330px);
  line-height: 0;
}

.footer-logo img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 82px;
  object-fit: contain;
  filter: drop-shadow(0 12px 22px rgba(0,0,0,.34));
}

.footer-brand-block p {
  max-width: 560px;
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: clamp(1rem, 1.15vw, 1.14rem);
  line-height: 1.7;
}

.footer-contact-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-contact-list li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: start;
  color: rgba(255,255,255,.82);
  line-height: 1.55;
}

.footer-contact-list span {
  color: #28bff3;
  font-weight: 900;
}

.footer-contact-list a,
.footer-bottom a {
  color: #ffffff;
}

.footer-links a:hover,
.footer-bottom a:hover {
  color: var(--gold-2);
}

.footer-links {
  display: grid;
  gap: 16px;
}

.footer-links h3 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-links a {
  color: rgba(255,255,255,.84);
  line-height: 1.45;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 1440px;
  margin: clamp(42px, 5vw, 70px) auto 0;
  padding: 20px 0;
  color: rgba(255,255,255,.68);
  border-top: 1px solid rgba(255,255,255,.1);
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 1050px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .capptonius-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

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

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

/* Footer alignment compatibility fix */
.site-footer.capptonius-footer {
  display: block;
}

.site-footer.capptonius-footer a {
  font-weight: 700;
}

.site-footer.capptonius-footer .footer-links a,
.site-footer.capptonius-footer .footer-contact-list a {
  font-weight: 500;
}

.site-footer.capptonius-footer .footer-bottom a {
  font-weight: 900;
}

.site-footer.capptonius-footer .footer-grid {
  width: 100%;
}

.site-footer.capptonius-footer .footer-contact-list li {
  grid-template-columns: 128px minmax(0, 1fr);
  column-gap: 12px;
}

.site-footer.capptonius-footer .footer-contact-list span {
  min-width: 0;
  white-space: nowrap;
}

.site-footer.capptonius-footer .footer-bottom {
  width: 100%;
}

.site-footer.capptonius-footer .footer-bottom a {
  overflow-wrap: anywhere;
}

@media (max-width: 1180px) {
  .site-footer.capptonius-footer .footer-grid {
    grid-template-columns: minmax(0, 1.15fr) repeat(3, minmax(150px, 1fr));
    gap: 30px;
  }
}

@media (max-width: 920px) {
  .site-footer.capptonius-footer .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer.capptonius-footer .footer-brand-block {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .site-footer.capptonius-footer .footer-grid {
    grid-template-columns: 1fr;
  }

  .site-footer.capptonius-footer .footer-contact-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

/* Training catalog refinement */
.training-catalog {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.training-category {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 2.4vw, 30px);
  border: 1px solid rgba(4, 37, 75, 0.12);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(4, 24, 52, 0.08);
}

.training-category > span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.training-category h3 {
  margin: 0;
  color: #061a35;
  font-size: clamp(1.25rem, 1.8vw, 1.65rem);
  line-height: 1.18;
}

.training-category p {
  margin: 0;
  color: #51637a;
  line-height: 1.65;
}

.training-examples {
  display: grid;
  gap: 10px;
}

.training-examples div {
  display: grid;
  gap: 5px;
  padding: 12px;
  border-radius: 8px;
  background: #f4f8fc;
}

.training-examples strong {
  color: #061a35;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.training-examples em {
  color: #51637a;
  font-style: normal;
  line-height: 1.5;
}

.training-paths {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.training-paths div {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid rgba(4, 37, 75, 0.12);
  border-radius: 8px;
  background: linear-gradient(145deg, #061a35, #082a58);
}

.training-paths strong {
  color: #ffffff;
}

.training-paths span {
  color: rgba(255,255,255,.76);
  line-height: 1.5;
}

@media (max-width: 1050px) {
  .training-catalog {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 620px) {
  .training-paths {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   TRAINING CATALOG — PREMIUM REDESIGN
   ========================================================= */
.training-section {
  position: relative; overflow: hidden;
  padding: clamp(80px, 8vw, 125px) clamp(24px, 5vw, 76px);
  color: #13243d;
  background: radial-gradient(circle at 88% 8%, rgba(242,169,21,.10), transparent 25%),
              linear-gradient(180deg, #f8faff 0%, #eef4fb 100%);
}
.training-section::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(8,61,118,.045) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(8,61,118,.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, #000, transparent 72%);
}
.training-intro { position: relative; z-index: 1; max-width: 1180px; margin: 0 auto 52px; }
.training-intro .eyebrow { margin-bottom: 14px; color: #0a3d76; }
.training-intro h2 { max-width: 850px; margin: 0; color: #061a35; font-size: clamp(2.4rem,5vw,4.7rem); line-height: .98; letter-spacing: -.04em; }
.training-intro h2 span { display: block; color: #0a3d76; }
.training-intro-copy { max-width: 670px; margin: 24px 0 0; color: #5d7088; font-size: 1.05rem; line-height: 1.75; }

.training-discovery { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 20px; max-width: 1180px; margin: 0 auto; }
.training-discovery-card {
  position: relative; display: flex; flex-direction: column; min-height: 520px; padding: 30px; overflow: hidden;
  border: 1px solid rgba(8,61,118,.13); border-radius: 12px; background: rgba(255,255,255,.92);
  box-shadow: 0 20px 50px rgba(8,42,85,.08);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.training-discovery-card::before { content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 4px; background: linear-gradient(90deg,#f2a915,#ffc24b); transform: scaleX(0); transform-origin: left; transition: transform .28s ease; }
.training-discovery-card:hover { transform: translateY(-8px); border-color: rgba(242,169,21,.45); box-shadow: 0 32px 70px rgba(8,42,85,.15); }
.training-discovery-card:hover::before { transform: scaleX(1); }
.featured-training-card { color: #fff; border-color: rgba(242,169,21,.35); background: radial-gradient(circle at 90% 10%,rgba(242,169,21,.17),transparent 32%),linear-gradient(145deg,#061a35,#0a3d76); box-shadow: 0 28px 65px rgba(3,22,47,.22); }

.training-card-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; }
.training-number { color: #f2a915; font-size: .78rem; font-weight: 900; letter-spacing: .12em; }
.training-card-label { padding: 7px 10px; border-radius: 6px; color: #0a3d76; background: #eef4fb; font-size: .69rem; font-weight: 900; text-transform: uppercase; letter-spacing: .07em; }
.featured-training-card .training-card-label { color: #ffc24b; background: rgba(255,255,255,.10); }
.training-card-icon { display: grid; place-items: center; width: 52px; height: 52px; margin-bottom: 22px; border-radius: 10px; color: #061a35; background: linear-gradient(135deg,#f2a915,#ffc24b); font-size: 1.1rem; font-weight: 900; box-shadow: 0 12px 25px rgba(242,169,21,.20); }
.training-discovery-card h3 { margin: 0 0 13px; color: #061a35; font-size: 1.55rem; line-height: 1.15; }
.featured-training-card h3 { color: #fff; }
.training-discovery-card > p { margin: 0 0 24px; color: #65778d; font-size: .95rem; line-height: 1.65; }
.featured-training-card > p { color: #c9d7e7; }

.training-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.training-tags span { padding: 8px 11px; border: 1px solid #dce6f1; border-radius: 6px; color: #29435f; background: #f6f9fc; font-size: .78rem; font-weight: 800; transition: background .2s ease,border-color .2s ease,transform .2s ease; }
.training-tags span:hover { transform: translateY(-2px); border-color: rgba(242,169,21,.55); background: rgba(242,169,21,.10); }

.training-level-list { display: grid; gap: 8px; margin-bottom: 25px; }
.training-level-list div { display: grid; grid-template-columns: 30px minmax(100px,.75fr) 1fr; align-items: center; gap: 8px; padding: 11px 12px; border: 1px solid rgba(255,255,255,.12); border-radius: 7px; background: rgba(255,255,255,.06); }
.training-level-list div > span { color: #ffc24b; font-size: .7rem; font-weight: 900; }
.training-level-list strong { color: #fff; font-size: .84rem; }
.training-level-list small { color: #b9c8dc; font-size: .72rem; }

.training-card-link { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 18px; border-top: 1px solid #e2e9f2; color: #0a3d76; font-size: .88rem; font-weight: 900; transition: color .2s ease; }
.training-card-link span { font-size: 1.25rem; transition: transform .2s ease; }
.training-card-link:hover { color: #d99000; }
.training-card-link:hover span { transform: translateX(5px); }
.featured-training-card .training-card-link { color: #ffc24b; border-color: rgba(255,255,255,.14); }

.training-path-section { position: relative; z-index: 1; max-width: 1180px; margin: 70px auto 0; padding-top: 45px; border-top: 1px solid #d8e2ee; }
.training-path-heading { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; margin-bottom: 25px; }
.training-mini-label { display: block; margin-bottom: 8px; color: #d99000; font-size: .72rem; font-weight: 900; letter-spacing: .12em; }
.training-path-heading h3 { margin: 0; color: #061a35; font-size: clamp(1.7rem,3vw,2.5rem); }
.training-path-heading > p { max-width: 500px; margin: 0; color: #65778d; line-height: 1.7; }
.training-path-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; }
.training-path-card { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 18px; padding: 20px 22px; border: 1px solid #dbe5ef; border-radius: 9px; background: rgba(255,255,255,.75); transition: transform .22s ease,background .22s ease,border-color .22s ease,box-shadow .22s ease; }
.training-path-card:hover { transform: translateY(-3px); border-color: rgba(242,169,21,.45); background: #fff; box-shadow: 0 15px 35px rgba(8,42,85,.09); }
.path-number { color: #d99000; font-size: .72rem; font-weight: 900; }
.training-path-card strong { display: block; margin-bottom: 4px; color: #061a35; font-size: .96rem; }
.training-path-card p { margin: 0; color: #718196; font-size: .78rem; line-height: 1.45; }
.path-arrow { color: #0a3d76; font-size: 1.3rem; transition: transform .2s ease; }
.training-path-card:hover .path-arrow { transform: translateX(4px); }

.training-cta { position: relative; z-index: 1; display: flex; justify-content: space-between; align-items: center; gap: 30px; max-width: 1180px; margin: 55px auto 0; padding: 30px 34px; border-radius: 12px; color: #fff; background: radial-gradient(circle at 80% 30%,rgba(242,169,21,.17),transparent 28%),linear-gradient(120deg,#03162f,#0a3d76); }
.training-cta div > span { display: block; margin-bottom: 6px; color: #ffc24b; font-size: .7rem; font-weight: 900; letter-spacing: .12em; }
.training-cta strong { font-size: clamp(1.2rem,2vw,1.7rem); }
.training-cta > a { display: inline-flex; align-items: center; gap: 15px; flex-shrink: 0; padding: 15px 20px; border-radius: 7px; color: #061a35; background: linear-gradient(135deg,#f2a915,#ffc24b); font-size: .82rem; font-weight: 900; text-transform: uppercase; box-shadow: 0 12px 25px rgba(242,169,21,.20); transition: transform .2s ease,box-shadow .2s ease; }
.training-cta > a:hover { transform: translateY(-2px); box-shadow: 0 17px 32px rgba(242,169,21,.28); }

@media (max-width: 980px) {
  .training-discovery { grid-template-columns: 1fr; }
  .training-discovery-card { min-height: auto; }
  .training-path-heading { grid-template-columns: 1fr; gap: 12px; }
}
@media (max-width: 720px) {
  .training-section { padding: 70px 20px; }
  .training-intro { margin-bottom: 35px; }
  .training-intro h2 { font-size: clamp(2.2rem,11vw,3.3rem); }
  .training-discovery-card { padding: 24px; }
  .training-path-grid { grid-template-columns: 1fr; }
  .training-cta { align-items: stretch; flex-direction: column; padding: 26px; }
  .training-cta > a { justify-content: space-between; }
}
@media (max-width: 480px) {
  .training-level-list div { grid-template-columns: 25px 1fr; }
  .training-level-list small { grid-column: 2; }
  .training-card-top { gap: 10px; }
}
