:root {
  --navy-950: #050b14;
  --navy-900: #091527;
  --navy-800: #102746;
  --red: #e2272d;
  --red-dark: #ad151d;
  --gold: #f2b84b;
  --cream: #f7f1e7;
  --white: #ffffff;
  --steel: #9baabc;
  --line: rgba(255,255,255,.13);
  --shadow: 0 24px 80px rgba(0,0,0,.34);
  --radius: 24px;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--navy-950);
  background: var(--cream);
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.58;
  overflow-x: hidden;
}
img, video { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }

.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--red);
  font: 800 13px/1 Oswald, Arial, sans-serif;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 34px; height: 3px; background: currentColor; }
.eyebrow.light { color: var(--gold); }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 {
  font-family: Oswald, Impact, sans-serif;
  line-height: .98;
  text-transform: uppercase;
  letter-spacing: -.015em;
}
h1 { font-size: clamp(3rem, 5.5vw, 5.8rem); margin-bottom: 18px; }
h2 { font-size: clamp(2.1rem, 3.6vw, 3.8rem); margin-bottom: 16px; }
h3 { font-size: clamp(1.35rem, 1.8vw, 1.9rem); margin-bottom: 10px; }
.lede { font-size: clamp(1rem, 1.5vw, 1.2rem); line-height: 1.5; color: #3c4654; max-width: 720px; }
.lede.light { color: #d5deea; }
.section { position: relative; padding: 74px 0; }
.section-dark { color: white; background: var(--navy-950); }
.section-navy { color: white; background: var(--navy-900); }
.section-white { background: white; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 32px; margin-bottom: 32px; }
.section-heading > div:first-child { max-width: 800px; }

.topline {
  position: relative;
  z-index: 60;
  background: linear-gradient(90deg, var(--red-dark), var(--red), var(--red-dark));
  color: white;
  text-align: center;
  font: 800 12px/1 Oswald, Arial, sans-serif;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 11px 16px;
}
.topline a { color: var(--gold); margin-left: 10px; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5,11,20,.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.nav-wrap { height: 88px; display: flex; align-items: center; gap: 20px; }
.brand { display: flex; align-items: center; gap: 13px; color: white; min-width: 220px; }
.brand img { width: 62px; height: 62px; object-fit: contain; filter: drop-shadow(0 6px 12px rgba(0,0,0,.35)); }
.brand strong { display: block; font: 800 21px/.95 Oswald, Arial, sans-serif; text-transform: uppercase; }
.brand span { display: block; color: var(--gold); font: 700 10px/1.2 Inter, Arial, sans-serif; letter-spacing: .12em; text-transform: uppercase; margin-top: 6px; }
.main-nav { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.main-nav a { color: #dbe4ef; font: 700 13px/1 Inter, Arial, sans-serif; text-transform: uppercase; letter-spacing: .06em; transition: .2s; }
.main-nav a:hover, .main-nav a.active { color: var(--gold); }
.main-nav .mission-link { padding: 10px 12px; border: 1px solid rgba(242,184,75,.55); border-radius: 8px; color: var(--gold); background: rgba(242,184,75,.08); }
.main-nav .mission-link:hover, .main-nav .mission-link.active { color: var(--navy-950); background: var(--gold); border-color: var(--gold); }
.main-nav .finance-link { padding: 10px 12px; border: 1px solid #ff4c52; border-radius: 8px; color: white; background: linear-gradient(135deg,var(--red),var(--red-dark)); box-shadow: 0 8px 24px rgba(226,39,45,.26); }
.main-nav .finance-link:hover { color: var(--navy-950); border-color: var(--gold); background: var(--gold); box-shadow: 0 10px 28px rgba(242,184,75,.28); }
.nav-actions { display: flex; gap: 9px; }
.mobile-toggle { display: none; background: transparent; color: white; border: 0; font-size: 28px; }
.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 9px;
  background: var(--red);
  color: white;
  font: 800 14px/1 Oswald, Arial, sans-serif;
  letter-spacing: .07em;
  text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(226,39,45,.25);
  transition: transform .2s, background .2s, box-shadow .2s;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); background: #f13940; box-shadow: 0 15px 34px rgba(226,39,45,.36); }
.btn-outline { background: transparent; border-color: rgba(255,255,255,.36); box-shadow: none; }
.btn-outline:hover { background: rgba(255,255,255,.08); }
.btn-outline-dark { color: var(--navy-900); background: transparent; border-color: rgba(9,21,39,.32); box-shadow: none; }
.btn-outline-dark:hover { color: white; background: var(--navy-900); }
.btn-gold { color: var(--navy-950); background: var(--gold); box-shadow: 0 10px 30px rgba(242,184,75,.22); }
.btn-gold:hover { background: #ffd070; }
.btn-small { min-height: 42px; padding-inline: 16px; font-size: 12px; }
.btn-wide { width: 100%; }

.hero {
  position: relative;
  isolation: isolate;
  min-height: auto;
  padding: 36px 0 38px;
  color: white;
  background:
    radial-gradient(circle at 72% 18%, rgba(226,39,45,.24), transparent 30%),
    linear-gradient(135deg, #07101e 0%, #0c1c31 55%, #050b14 100%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .18;
  background-image: repeating-linear-gradient(115deg, transparent 0 46px, rgba(255,255,255,.13) 47px, transparent 48px);
}
.hero::after {
  content: "ADTC";
  position: absolute;
  right: -35px;
  bottom: -80px;
  z-index: -1;
  color: rgba(255,255,255,.025);
  font: 900 340px/.8 Oswald, Impact, sans-serif;
  letter-spacing: -.07em;
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(360px, .65fr); gap: 30px; align-items: stretch; }
.hero-copy { position: relative; z-index: 3; grid-column: 1 / -1; grid-row: 2; display: grid; grid-template-columns: minmax(0,1.05fr) minmax(360px,.95fr); gap: 30px 70px; align-items: center; max-width: none; padding: 38px 42px; border: 1px solid rgba(255,255,255,.12); border-left: 6px solid var(--red); border-radius: var(--radius); background: linear-gradient(110deg,rgba(15,36,63,.98),rgba(7,16,30,.98)); box-shadow: 0 24px 70px rgba(0,0,0,.32); }
.hero-copy h1 { font-size: clamp(3.25rem,4.8vw,5.5rem); text-shadow: 0 6px 28px rgba(0,0,0,.7); }
.hero-copy h1 span { color: var(--gold); }
.hero-copy h2 { margin: 0; color: white; font-size: clamp(2.5rem,3.6vw,4rem); text-shadow: 0 6px 28px rgba(0,0,0,.5); }
.hero-copy h2 span { color: var(--gold); }
.hero-copy p { max-width: 760px; color: #d5deea; font-size: 1.08rem; }
.hero-copy-details { padding-top: 8px; }
.mission-tagline { min-height: 72px; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 9px; margin: 0; padding: 15px 20px; border-left: 5px solid var(--red); border-radius: 12px; color: white; background: rgba(3,9,18,.55); box-shadow: none; font: 800 clamp(1.35rem,1.9vw,1.85rem)/1 Oswald,Impact,sans-serif; text-transform: uppercase; }
.mission-tagline strong { color: var(--gold); }
.mission-tagline:hover { background: linear-gradient(110deg,var(--navy-800),#153761); }
.hero-price-offer {
  display: grid;
  grid-template-columns: minmax(0,1.05fr) minmax(150px,.95fr);
  gap: 18px;
  align-items: center;
  margin: 22px 0 4px;
  padding: 18px 20px;
  border: 1px solid rgba(242,184,75,.48);
  border-left: 5px solid var(--gold);
  border-radius: 14px;
  background: linear-gradient(120deg,rgba(242,184,75,.12),rgba(226,39,45,.1));
}
.hero-price-offer > div:first-child > span { display: block; color: var(--gold); font: 800 10px/1 Inter,sans-serif; letter-spacing: .12em; text-transform: uppercase; }
.hero-price-offer strong { display: block; color: white; font: 900 clamp(3rem,4.2vw,4.8rem)/.92 Oswald,Impact,sans-serif; letter-spacing: -.04em; }
.hero-price-offer strong small { margin-left: 5px; color: var(--gold); font-size: .3em; letter-spacing: .02em; text-transform: uppercase; }
.hero-price-offer > div:last-child { display: grid; gap: 4px; padding-left: 18px; border-left: 1px solid rgba(255,255,255,.16); }
.hero-price-offer b { color: white; font: 800 15px/1.2 Inter,sans-serif; }
.hero-price-offer > div:last-child > span { color: #d9e2ec; font-size: 13px; font-weight: 700; }
.hero-price-offer > div:last-child > small { color: #9fadc0; font-size: 10px; }
.page-price-offer { display: inline-flex; align-items: center; gap: 22px; margin-top: 22px; padding: 18px 22px; border: 1px solid rgba(242,184,75,.55); border-left: 6px solid var(--gold); border-radius: 14px; color: white; background: rgba(5,11,20,.76); box-shadow: 0 18px 48px rgba(0,0,0,.3); backdrop-filter: blur(8px); }
.page-price-offer > strong { color: var(--gold); font: 900 clamp(3.8rem,6vw,6rem)/.84 Oswald,Impact,sans-serif; letter-spacing: -.045em; }
.page-price-offer > strong small { margin-left: 5px; color: white; font-size: .25em; letter-spacing: 0; text-transform: uppercase; }
.page-price-offer > span { color: white; font: 800 14px/1.25 Inter,sans-serif; text-transform: uppercase; }
.page-price-offer > span small { display: block; margin-top: 7px; color: #bec9d6; font-size: 10px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.micro-proof { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 24px; color: #aebaca; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; }
.micro-proof span::before { content: "\2713"; color: var(--gold); margin-right: 7px; }
.media-shell {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero .media-shell { grid-column: 1; grid-row: 1; min-height: 560px; }
.hero .media-shell::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg,rgba(5,11,20,0) 0%,rgba(5,11,20,0) 72%,rgba(5,11,20,.38) 100%); pointer-events:none; }
.media-shell video { width: 100%; height: 100%; min-height: 420px; object-fit: cover; }
.hero .media-shell video { min-height: 620px; opacity: 1; }
.hero-news-feature iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; background: #000; }
.media-badge {
  position: absolute;
  left: 18px;
  top: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 13px;
  border-radius: 99px;
  background: rgba(5,11,20,.83);
  border: 1px solid var(--line);
  color: white;
  font: 800 11px/1 Inter, sans-serif;
  letter-spacing: .1em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}
.media-badge i { width: 8px; height: 8px; background: var(--red); border-radius: 50%; box-shadow: 0 0 0 5px rgba(226,39,45,.2); }
.lead-card {
  position: relative;
  padding: 30px;
  border-radius: var(--radius);
  background: white;
  color: var(--navy-950);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero .lead-card { grid-column: 2; grid-row: 1; align-self: stretch; }
.lead-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 6px; background: linear-gradient(90deg,var(--red),var(--gold)); }
.lead-card h3 { font-size: 2rem; }
.lead-card p { color: #667180; font-size: .93rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field { margin-bottom: 12px; }
.field.full { grid-column: 1/-1; }
.field label { display: block; margin-bottom: 6px; color: #344153; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.field input, .field textarea, .field select {
  width: 100%;
  border: 1px solid #dbe1e8;
  border-radius: 9px;
  padding: 13px 14px;
  color: #111a27;
  background: #f8fafc;
  outline: none;
}
.field textarea { min-height: 88px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(226,39,45,.1); }
.form-note { color: #7d8794; font-size: 11px; line-height: 1.4; margin: 12px 0 0; }
.form-success { display: none; margin-top: 12px; padding: 12px; border-radius: 8px; color: #1f5137; background: #e7f7ee; font-weight: 700; font-size: 13px; }
.form-success.show { display: block; }
.form-success a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.form-success.error { color: #8b1d25; background: #fff0f0; border: 1px solid #f2c6c9; }
.form-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; pointer-events: none !important; }
[data-lead-form] button:disabled { cursor: wait; opacity: .72; transform: none; }

.trust-rail { position: relative; z-index: 3; margin-top: -36px; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: 18px;
  overflow: hidden;
  background: white;
  box-shadow: 0 20px 60px rgba(7,16,30,.18);
}
.trust-item { min-height: 104px; display: flex; align-items: center; gap: 14px; padding: 18px 20px; border-right: 1px solid #e5e8ed; }
.trust-item:last-child { border-right: 0; }
.credentials-band { position: relative; overflow: hidden; padding: 38px 0 34px; color: white; background: radial-gradient(circle at 50% 0,rgba(45,91,148,.42),transparent 44%),linear-gradient(135deg,#071321,#0d2850 54%,#081527); }
.credentials-band::before { content: ""; position: absolute; inset: 0; opacity: .18; background-image: repeating-linear-gradient(120deg,transparent 0 54px,rgba(255,255,255,.12) 55px,transparent 56px); pointer-events: none; }
.credentials-band .container { position: relative; z-index: 1; }
.credentials-heading { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-bottom: 24px; }
.credentials-heading h1 { max-width: 620px; margin: 0; font-size: clamp(2rem,3vw,3.2rem); text-align: right; }
.credential-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 16px; }
.credential-card { min-height: 186px; display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 11px; padding: 16px; border: 1px solid rgba(255,255,255,.16); border-radius: 16px; text-align: center; background: linear-gradient(160deg,rgba(255,255,255,.11),rgba(255,255,255,.045)); box-shadow: 0 16px 36px rgba(0,0,0,.18); transition: transform .25s,border-color .25s,background .25s; }
.credential-card:hover { transform: translateY(-7px); border-color: rgba(242,184,75,.62); background: linear-gradient(160deg,rgba(255,255,255,.16),rgba(255,255,255,.07)); }
.credential-card > div:last-child { display: grid; gap: 6px; }
.credential-card > div:last-child strong { color: white; font: 800 17px/1 Oswald,Impact,sans-serif; text-transform: uppercase; }
.credential-card > div:last-child span { color: #adbbcb; font-size: 10px; line-height: 1.4; }
.credential-logo-frame { width: 88px; height: 88px; display: grid; place-items: center; overflow: hidden; border: 3px solid rgba(255,255,255,.72); border-radius: 50%; background: #fff; box-shadow: 0 10px 26px rgba(0,0,0,.28); }
.credential-logo-frame img { width: 100%; height: 100%; object-fit: contain; }
.akc-program-frame { width: 190px; height: 104px; padding: 6px 10px; border-width: 1px; border-radius: 14px; }
.onl-frame img { width: 155%; height: 155%; max-width: none; }
.military-k9-frame { width: 96px; height: 96px; overflow: visible; border: 0; border-radius: 0; background: transparent; box-shadow: none; }
.military-k9-frame img { filter: drop-shadow(0 10px 16px rgba(0,0,0,.34)); }
.location-rotator { position: relative; min-height: 72px; display: flex; align-items: center; justify-content: center; gap: 13px; margin-top: 16px; padding: 14px 36px; overflow: hidden; border: 1px solid rgba(242,184,75,.38); border-radius: 16px; background: rgba(3,9,18,.56); box-shadow: 0 16px 40px rgba(0,0,0,.2); }
.location-rotator > span { color: white; font: 800 clamp(1.25rem,2.2vw,2.25rem)/1 Oswald,Impact,sans-serif; text-transform: uppercase; }
.location-rotator > strong { min-width: 220px; color: var(--gold); font: 900 clamp(1.8rem,3vw,3.15rem)/1 Oswald,Impact,sans-serif; text-transform: uppercase; transition: opacity .22s ease,transform .22s ease; }
.location-rotator > strong.is-changing { opacity: 0; transform: translateY(12px); }
.location-rotator > i { position: absolute; inset: auto 0 0; height: 5px; background: linear-gradient(90deg,var(--red),var(--gold),var(--red)); }
.credentials-band + .trust-rail { margin-top: 0; }
.trust-icon { width: 48px; height: 48px; flex: 0 0 48px; display: grid; place-items: center; border-radius: 50%; color: var(--red); background: #fff0ef; font-size: 23px; }
.trust-item strong { display: block; font: 800 24px/1 Oswald, sans-serif; text-transform: uppercase; }
.trust-item span { display: block; color: #748090; font-size: 12px; margin-top: 7px; }

.problem-grid, .program-grid, .proof-grid, .gallery-grid, .reviews-grid, .team-grid, .location-grid { display: grid; gap: 22px; }
.problem-grid { grid-template-columns: repeat(4, 1fr); }
.problem-card {
  min-height: 210px;
  padding: 24px;
  border: 1px solid #e2e5e9;
  border-radius: 18px;
  background: white;
  box-shadow: 0 12px 40px rgba(20,30,45,.06);
  transition: transform .25s, box-shadow .25s;
}
.problem-card:hover { transform: translateY(-7px); box-shadow: 0 22px 55px rgba(20,30,45,.12); }
.problem-card .num { color: var(--red); font: 900 12px/1 Inter, sans-serif; letter-spacing: .15em; }
.problem-card h3 { margin-top: 28px; }
.problem-card p { color: #667180; font-size: .93rem; }
.training-philosophy { display: grid; grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr); gap: 44px; margin-top: 28px; padding: 40px; border-radius: 24px; color: white; background: radial-gradient(circle at 0 0,rgba(226,39,45,.24),transparent 34%),linear-gradient(135deg,var(--navy-950),var(--navy-800)); box-shadow: 0 28px 80px rgba(5,11,20,.26); }
.philosophy-lead h2 { margin-top: 16px; font-size: clamp(2.4rem,3.8vw,4rem); }
.philosophy-lead p { margin: 0; color: #c2cedb; font-size: 1.04rem; }
.philosophy-points { display: grid; }
.philosophy-points article { display: grid; grid-template-columns: 48px 1fr; gap: 16px; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.philosophy-points article:first-child { padding-top: 0; }
.philosophy-points article:last-child { padding-bottom: 0; border-bottom: 0; }
.philosophy-points article > span { color: var(--gold); font: 900 30px/1 Oswald,Impact,sans-serif; }
.philosophy-points strong { display: block; margin-bottom: 6px; color: white; font: 800 18px/1.1 Oswald,Impact,sans-serif; text-transform: uppercase; }
.philosophy-points p { margin: 0; color: #aebbc9; font-size: 12px; line-height: 1.5; }
.philosophy-footer { grid-column: 1 / -1; display: grid; grid-template-columns: minmax(0,1.45fr) minmax(280px,.55fr); gap: 26px; align-items: center; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.15); }
.statement { max-width: 920px; margin-bottom: 0; color: white; font: 800 clamp(1.35rem,2vw,2.05rem)/1.12 Oswald, Impact, sans-serif; text-transform: uppercase; }
.statement span { color: var(--red); }

.program-grid { grid-template-columns: repeat(3, 1fr); }
.program-grid.two-up { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 1040px; margin-inline: auto; }
.program-card {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  border-radius: 20px;
  background: #0b1728;
  box-shadow: 0 18px 60px rgba(0,0,0,.2);
}
.program-card img { position: absolute; inset: 0; height: 100%; object-fit: cover; opacity: .6; transition: transform .5s, opacity .3s; }
.program-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 16%, rgba(5,11,20,.28) 42%, #050b14 92%); }
.program-card:hover img { transform: scale(1.05); opacity: .78; }
.program-content { position: absolute; inset: auto 0 0; z-index: 2; padding: 24px; color: white; }
.program-content p { color: #c6d0dc; font-size: .92rem; }
.program-price { display: flex; align-items: center; gap: 16px; margin: 10px 0 4px; }
.program-price strong { color: var(--gold); font: 900 3.4rem/.9 Oswald,Impact,sans-serif; letter-spacing: -.035em; }
.program-price strong small { font-size: .34em; letter-spacing: 0; text-transform: uppercase; }
.program-price > span { color: white; font: 800 12px/1.35 Inter,sans-serif; text-transform: uppercase; }
.program-price > span small { display: block; color: #c6d0dc; font-size: 10px; }
.program-content .credit-note { margin: 0 0 12px; color: #aebaca; font-size: 10px; }
.program-links { display: flex; flex-wrap: wrap; gap: 10px 22px; align-items: center; }
.program-link.finance { color: var(--gold); }
.program-tag { display: inline-block; color: var(--gold); font: 800 11px/1 Inter, sans-serif; letter-spacing: .13em; text-transform: uppercase; margin-bottom: 13px; }
.program-link { display: inline-flex; align-items: center; gap: 8px; color: white; font-weight: 800; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.program-link span { color: var(--red); font-size: 18px; }
.card-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }

.proof-grid { grid-template-columns: 1.05fr .95fr; align-items: center; }
.proof-image { position: relative; }
.proof-image img { height: 520px; object-fit: cover; border-radius: 0 28px 28px 0; }
.proof-image::after { content: ""; position: absolute; inset: 24px -20px -20px 24px; z-index: -1; border: 2px solid var(--red); border-radius: 0 28px 28px 0; }
.proof-copy { padding: 28px 5vw; }
.checks { display: grid; gap: 16px; margin: 30px 0; }
.check { display: flex; gap: 14px; align-items: flex-start; }
.check i { flex: 0 0 28px; width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; background: rgba(226,39,45,.14); color: #ff4f55; font-style: normal; font-weight: 900; }
.check strong { display: block; color: white; margin-bottom: 3px; }
.check span { color: #aebaca; font-size: .9rem; }

.results-strip { padding: 0; background: var(--navy-950); }
.results-grid { display: grid; grid-template-columns: repeat(5, 1fr); }
.result-shot { position: relative; height: 210px; overflow: hidden; }
.result-shot img { height: 100%; object-fit: cover; filter: saturate(.85); transition: transform .45s, filter .45s; }
.result-shot:hover img { transform: scale(1.07); filter: saturate(1.15); }
.result-shot::after { content: ""; position: absolute; inset: auto 0 0; height: 45%; background: linear-gradient(transparent,rgba(5,11,20,.85)); }

.process { counter-reset: steps; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step { counter-increment: steps; position: relative; padding: 26px 24px; border-top: 4px solid var(--red); background: #0d1a2c; border-radius: 0 0 16px 16px; }
.step::before { content: "0" counter(steps); position: absolute; right: 22px; top: 18px; color: rgba(255,255,255,.08); font: 900 72px/1 Oswald, sans-serif; }
.step h3 { margin-top: 34px; }
.step p { color: #aab6c5; }

.split-feature { display: grid; grid-template-columns: 1fr 1fr; min-height: 520px; }
.split-media { min-height: 520px; }
.split-media img { height: 100%; object-fit: cover; }
.split-content { display: flex; align-items: center; padding: 5vw; background: white; }
.split-content-inner { max-width: 590px; }
.split-content .checks strong { color: var(--navy-950); }
.split-content .checks span { color: #667180; }
.financing-feature .split-content { position: relative; overflow: hidden; background: linear-gradient(145deg,#fff 0%,#f8f0e2 100%); }
.financing-feature .split-content::after { content: "$"; position: absolute; right: -20px; bottom: -95px; color: rgba(9,21,39,.035); font: 900 310px/.8 Oswald,Impact,sans-serif; pointer-events: none; }
.financing-feature .split-content-inner { position: relative; z-index: 1; }
.financing-application { margin: 30px 0 24px; padding: 24px; border: 1px solid rgba(242,184,75,.42); border-radius: 18px; color: white; background: linear-gradient(135deg,var(--navy-800),var(--navy-950)); box-shadow: 0 22px 60px rgba(5,11,20,.2); }
.financing-application > span { display: block; margin-bottom: 13px; color: var(--gold); font: 800 12px/1 Inter,Arial,sans-serif; letter-spacing: .13em; text-transform: uppercase; }
.financing-application small { display: block; margin-top: 12px; color: #b9c6d5; line-height: 1.45; }
.finance-price-hero { display: flex; align-items: center; gap: 22px; margin: 22px 0 4px; padding: 22px; border-radius: 16px; color: white; background: linear-gradient(120deg,var(--navy-950),var(--navy-800)); box-shadow: 0 18px 45px rgba(5,11,20,.2); }
.finance-price-hero strong { color: var(--gold); font: 900 clamp(4rem,6vw,6.4rem)/.82 Oswald,Impact,sans-serif; letter-spacing: -.045em; }
.finance-price-hero strong small { margin-left: 5px; color: white; font-size: .25em; letter-spacing: 0; text-transform: uppercase; }
.finance-price-hero > span { color: white; font: 900 17px/1.25 Inter,sans-serif; text-transform: uppercase; }
.finance-price-hero > span small { display: block; margin-top: 8px; color: #b9c6d5; font-size: 12px; }
.credit-note { font-size: 11px; font-weight: 700; }
.credit-note.dark { margin: 8px 0 20px; color: #5f6b79; }
.btn-finance { width: 100%; min-height: 66px; justify-content: space-between; padding-inline: 24px; font-size: 18px; background: linear-gradient(110deg,var(--red),#f13c43); box-shadow: 0 15px 36px rgba(226,39,45,.38); }
.btn-finance strong { color: var(--gold); font-size: 25px; }
.btn-finance:hover { background: linear-gradient(110deg,#f13c43,var(--red)); box-shadow: 0 18px 42px rgba(226,39,45,.48); }

.review-wall { overflow: hidden; background: linear-gradient(145deg,#f8fafc 0%,#eef3f8 100%); }
.review-wall::before { content: ""; position: absolute; width: 420px; height: 420px; right: -170px; top: -220px; border-radius: 50%; background: radial-gradient(circle,rgba(226,39,45,.1),transparent 67%); }
.review-intro { position: relative; display: grid; grid-template-columns: 1fr 390px; align-items: center; gap: 54px; margin-bottom: 28px; }
.review-heading { max-width: 700px; }
.review-heading h2 { margin: 12px 0 10px; }
.review-heading p { max-width: 660px; margin: 0; color: #596575; }
.review-summary { position: relative; padding: 24px 26px; border-radius: 18px; color: white; background: linear-gradient(135deg,var(--navy-800),var(--navy-950)); box-shadow: 0 18px 45px rgba(9,21,39,.2); }
.review-platform { display: block; margin-bottom: 13px; color: #dbe4ef; font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.review-rating { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
.review-score { color: white; font: 900 52px/.9 Oswald, sans-serif; }
.review-rating .stars { display: block; margin-bottom: 4px; }
.review-rating small { display: block; color: #aebaca; font-size: 11px; }
.reviews-grid { position: relative; grid-template-columns: repeat(3, 1fr); }
.review-card { position: relative; overflow: hidden; padding: 24px; border: 1px solid #dde4ec; border-radius: 18px; background: #fff; color: #1c2531; box-shadow: 0 14px 36px rgba(20,34,51,.08); }
.review-card::before { content: "“"; position: absolute; right: 18px; top: 34px; color: #edf1f5; font: 92px/1 Georgia, serif; }
.review-card::after { content: ""; position: absolute; inset: 0 auto 0 0; width: 4px; background: linear-gradient(var(--red),var(--gold)); }
.review-card-top { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 15px; margin-bottom: 22px; }
.google-mark { width: 34px; height: 34px; display: grid; place-items: center; flex: 0 0 34px; border: 1px solid #dfe5ec; border-radius: 50%; color: #3267d6; background: white; font: 800 17px/1 Arial,sans-serif; box-shadow: 0 5px 14px rgba(18,33,51,.08); }
.stars { color: #f7aa19; letter-spacing: .1em; }
.review-card .stars { margin: 0; font-size: 14px; }
.review-card p { position: relative; min-height: 78px; margin-bottom: 22px; padding-right: 24px; color: var(--navy-900); font-size: 1.05rem; font-weight: 700; line-height: 1.5; }
.review-meta { padding-top: 16px; border-top: 1px solid #e5e8ed; }
.review-meta strong { display: block; color: var(--navy-900); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.review-meta span { display: block; margin-top: 3px; color: #7a8492; font-size: 12px; }

.cta-band { position: relative; padding: 50px 0; overflow: hidden; color: white; background: linear-gradient(100deg, var(--red-dark), var(--red)); }
.cta-band::after { content: ""; position: absolute; inset: 0; opacity: .18; background: repeating-linear-gradient(120deg,transparent 0 34px,#fff 35px,transparent 36px); }
.cta-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-inner h2 { margin: 0; font-size: clamp(2.1rem,3.7vw,3.9rem); }
.cta-actions { flex: 0 0 auto; display: flex; gap: 12px; }

.page-hero { position: relative; min-height: 400px; display: flex; align-items: end; padding: 84px 0 48px; color: white; background: var(--navy-950); overflow: hidden; }
.page-hero > img { position: absolute; inset: 0; height: 100%; object-fit: cover; opacity: .55; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,11,20,.96) 0%, rgba(5,11,20,.62) 55%, rgba(5,11,20,.2)); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(2.9rem,5.2vw,5.4rem); max-width: 950px; }
.page-hero p { max-width: 720px; color: #d7e0ea; font-size: 1.05rem; }
.page-hero .hero-actions { margin-top: 22px; }
.page-hero.compact { min-height: 330px; }

.intro-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 48px; align-items: start; }
.intro-kicker { position: sticky; top: 130px; }
.intro-copy { font-size: 1rem; color: #4f5b69; }
.intro-copy p:first-child { font-size: 1.25rem; color: var(--navy-950); }

.comparison { overflow: hidden; border-radius: 20px; background: white; box-shadow: 0 15px 50px rgba(0,0,0,.08); }
.comparison-row { display: grid; grid-template-columns: 1fr 1.2fr; border-bottom: 1px solid #e8ebef; }
.comparison-row:last-child { border-bottom: 0; }
.comparison-row > div { padding: 22px 28px; }
.comparison-row > div:first-child { font-weight: 900; text-transform: uppercase; color: var(--navy-900); background: #f4f6f8; }

.faq-list { max-width: 900px; margin: 40px auto 0; }
.faq-list details { border-top: 1px solid #d9dfe6; }
.faq-list details:last-child { border-bottom: 1px solid #d9dfe6; }
.faq-list summary { cursor: pointer; list-style: none; padding: 23px 45px 23px 0; font: 800 1.1rem/1.3 Oswald, sans-serif; text-transform: uppercase; position: relative; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 5px; top: 18px; color: var(--red); font-size: 28px; }
.faq-list details[open] summary::after { content: "\2212"; }
.faq-list details p { color: #5e6978; padding: 0 45px 22px 0; }

.number-band { color: white; background: var(--red); }
.number-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.number-item { padding: 34px 22px; text-align: center; border-right: 1px solid rgba(255,255,255,.25); }
.number-item:last-child { border-right: 0; }
.number-item strong { display: block; font: 900 clamp(2.4rem,5vw,5rem)/1 Oswald, sans-serif; }
.number-item span { display: block; margin-top: 8px; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 30px; }
.contact-panel { padding: 30px; color: white; background: var(--navy-900); border-radius: 20px; }
.contact-panel a { color: var(--gold); font-weight: 800; }
.contact-panel hr { border: 0; border-top: 1px solid rgba(255,255,255,.12); margin: 25px 0; }
.contact-form-light { padding: 30px; background: white; border-radius: 20px; box-shadow: 0 15px 50px rgba(0,0,0,.08); }

.pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.price-card { position: relative; padding: 30px; background: white; border: 1px solid #e0e4e9; border-radius: 20px; box-shadow: 0 14px 44px rgba(15,25,38,.06); }
.price-card.featured { color: white; background: var(--navy-900); border-color: var(--navy-900); transform: translateY(-10px); box-shadow: var(--shadow); }
.price-card.featured::before { content: "Most Popular"; position: absolute; top: 0; right: 0; padding: 10px 18px; border-radius: 0 18px 0 14px; background: var(--red); color: white; font: 800 11px/1 Inter, sans-serif; letter-spacing: .1em; text-transform: uppercase; }
.price-card p { color: #677384; }
.price-display { display: flex; align-items: baseline; gap: 9px; margin: 20px 0 6px; color: var(--red); font: 900 2.4rem/1 Oswald, sans-serif; }
.price-display small { color: #7a8492; font: 800 11px/1.2 Inter, sans-serif; text-transform: uppercase; letter-spacing: .08em; }
.price-card.featured .price-display { color: var(--gold); }
.price-card.featured .price-display small { color: #bfcbd8; }
.price-card.featured p { color: #bdc9d6; }
.board-train-price { display: grid; grid-template-columns: minmax(0,1.35fr) minmax(120px,.65fr); gap: 18px; align-items: end; margin: 22px 0 4px; padding: 22px; border: 1px solid rgba(242,184,75,.35); border-radius: 16px; background: linear-gradient(135deg,rgba(242,184,75,.12),rgba(226,39,45,.1)); }
.board-train-price > div:first-child > span, .cash-option > span { display: block; margin-bottom: 6px; color: var(--gold); font: 800 10px/1 Inter,sans-serif; letter-spacing: .13em; text-transform: uppercase; }
.board-train-price > div:first-child > strong { display: block; color: white; font: 900 clamp(4.3rem,7vw,7rem)/.82 Oswald,Impact,sans-serif; letter-spacing: -.05em; }
.board-train-price > div:first-child > strong small { margin-left: 5px; color: var(--gold); font-size: .22em; letter-spacing: 0; text-transform: uppercase; }
.board-train-price > div:first-child > b { color: #dce5ef; font: 800 13px/1 Inter,sans-serif; text-transform: uppercase; }
.cash-option { padding: 16px 0 4px 18px; border-left: 1px solid rgba(255,255,255,.16); }
.cash-option strong { color: white; font: 800 1.8rem/1 Oswald,Impact,sans-serif; }
.price-card.featured > .credit-note { margin: 8px 0 15px; color: #9eadbe; }
.price-display.program-format { margin-top: 14px; font-size: 1.45rem; }
.price-card ul { list-style: none; padding: 0; margin: 25px 0 30px; }
.price-card li { position: relative; padding: 10px 0 10px 28px; border-bottom: 1px solid #edf0f3; }
.price-card.featured li { border-color: rgba(255,255,255,.1); }
.price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--red); font-weight: 900; }

.groom-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.groom-card { padding: 24px; border: 1px solid #e0e4e9; border-radius: 18px; background: white; }
.groom-card h3 { color: var(--navy-900); }
.groom-card ul { list-style: none; padding: 0; margin: 20px 0 0; color: #586475; font-size: .92rem; }
.groom-card li { padding: 7px 0 7px 24px; border-bottom: 1px solid #eef1f4; position: relative; }
.groom-card li::before { content: "•"; position: absolute; left: 3px; color: var(--red); font-size: 23px; line-height: 1; }
.groom-card.featured { background: var(--navy-900); color: white; border-color: var(--navy-900); }
.groom-card.featured h3 { color: white; }
.groom-card.featured ul { color: #c7d2df; }
.groom-card.featured li { border-color: rgba(255,255,255,.1); }

.addons { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 50px; }
.addon { padding: 20px 0; border-bottom: 1px solid #dde2e8; }
.addon h3 { font-size: 1.25rem; margin-bottom: 7px; }
.addon p { color: #657181; font-size: .9rem; margin: 0; }

.gallery-grid { grid-template-columns: 1.2fr .8fr .8fr; grid-auto-rows: 220px; }
.gallery-item { overflow: hidden; border-radius: 16px; }
.gallery-item:first-child { grid-row: span 2; }
.gallery-item img { height: 100%; object-fit: cover; transition: transform .5s; }
.gallery-item:hover img { transform: scale(1.06); }

.team-grid { grid-template-columns: 1fr 1fr; align-items: center; }
.team-photo img { height: 520px; object-fit: cover; border-radius: 22px; }
.fact-row { display: flex; gap: 18px; margin-top: 28px; }
.fact { flex: 1; padding: 18px; border: 1px solid #e0e5ea; border-radius: 13px; background: white; }
.fact strong { display: block; color: var(--red); font: 900 30px/1 Oswald, sans-serif; }
.fact span { color: #6b7583; font-size: 12px; }

.location-grid { grid-template-columns: repeat(3, 1fr); }
.location-card { padding: 24px; border-radius: 18px; background: #0e1d31; border: 1px solid rgba(255,255,255,.1); }
.location-card small { color: var(--gold); font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.location-card h3 { color: white; margin-top: 14px; }
.location-card p { color: #b9c4d2; }

.app-promo { padding: 34px 0; }
.app-feature { display: grid; grid-template-columns: 170px 1fr; align-items: center; gap: 34px; }
.app-feature h2 { margin-bottom: 10px; font-size: clamp(1.9rem,2.7vw,2.8rem); }
.app-feature .lede { max-width: 820px; margin-bottom: 0; font-size: .98rem; line-height: 1.45; }
.app-feature .hero-actions { margin-top: 16px; }
.app-feature .btn { min-height: 42px; padding-inline: 18px; font-size: 12px; }
.app-logo { position: relative; width: 170px; }
.app-logo img { border-radius: 50%; box-shadow: 0 18px 45px rgba(0,0,0,.38); }
.app-logo::after { content: ""; position: absolute; inset: 8%; z-index: -1; border-radius: 50%; background: var(--red); filter: blur(60px); opacity: .45; }

/* Mission-led layouts */
.mission-punch {
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  min-height: 440px;
  color: white;
  background: linear-gradient(145deg, #07101e 0%, #102746 62%, #761118 140%);
}
.mission-punch-media { position: relative; min-height: 400px; display: grid; place-items: center; overflow: hidden; padding: clamp(12px, 1.5vw, 24px); background: #050b14; }
.mission-punch-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 82%, rgba(16,39,70,.7) 100%); pointer-events: none; }
.mission-punch-media img { width: 100%; height: auto; max-height: 100%; object-fit: contain; box-shadow: 0 22px 70px rgba(0,0,0,.34); }
.mission-punch-copy { display: flex; flex-direction: column; justify-content: center; padding: 34px clamp(28px, 3.5vw, 54px); }
.mission-punch-copy h2 { margin: 10px 0 13px; font-size: clamp(2.05rem, 3vw, 3.25rem); }
.mission-punch-copy .lede { margin-bottom: 0; font-size: .98rem; line-height: 1.42; }
.mission-facts { display: grid; gap: 0; margin: 18px 0 4px; border-top: 1px solid rgba(255,255,255,.16); }
.mission-facts > div { display: grid; grid-template-columns: 118px 1fr; gap: 14px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.mission-facts strong { color: var(--gold); font-family: Oswald, sans-serif; text-transform: uppercase; }
.mission-facts span { color: #c5d0dc; font-size: .86rem; }
.mission-punch-copy .hero-actions { margin-top: 18px; }
.mission-punch-copy .btn { min-height: 44px; padding-inline: 18px; font-size: 12px; }

.local-impact-grid { display: grid; grid-template-columns: 1fr .9fr; gap: 70px; align-items: center; }
.city-cloud { display: flex; flex-wrap: wrap; align-content: center; gap: 12px; }
.city-cloud span { padding: 12px 17px; border: 1px solid #d8dee6; border-radius: 99px; background: white; color: var(--navy-900); font: 800 12px/1 Inter, sans-serif; text-transform: uppercase; letter-spacing: .06em; box-shadow: 0 8px 24px rgba(15,25,38,.06); }
.city-cloud.dark span { color: white; border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.07); box-shadow: none; }

.mission-ribbon { position: relative; overflow: hidden; color: white; background: linear-gradient(110deg, #0a1a30 0%, #112d50 62%, #8f151d 140%); border-top: 1px solid rgba(255,255,255,.1); border-bottom: 6px solid var(--red); }
.mission-ribbon::after { content: "ONL"; position: absolute; right: -30px; bottom: -55px; color: rgba(255,255,255,.045); font: 900 220px/.8 Oswald, sans-serif; }
.mission-ribbon-inner { position: relative; z-index: 1; min-height: 250px; display: grid; grid-template-columns: 150px 1fr auto; gap: 32px; align-items: center; padding-block: 36px; }
.mission-ribbon-inner img { width: 150px; aspect-ratio: 1; object-fit: contain; padding: 10px; border-radius: 20px; background: white; box-shadow: 0 22px 60px rgba(0,0,0,.3); }
.mission-ribbon-inner h2 { margin-bottom: 10px; font-size: clamp(2.1rem, 3.2vw, 3.5rem); }
.mission-ribbon-inner p { max-width: 760px; margin: 0; color: #cbd7e4; }
.training-two .featured::before { content: "Veteran-Home Program"; }

.onl-hero { min-height: 600px; display: grid; grid-template-columns: .9fr 1.1fr; color: white; background: radial-gradient(circle at 25% 20%, rgba(226,39,45,.28), transparent 30%), var(--navy-950); }
.onl-hero-copy { display: flex; flex-direction: column; justify-content: center; padding: 60px clamp(30px, 5vw, 78px); }
.onl-hero-copy h1 { font-size: clamp(3rem, 5vw, 5.7rem); }
.onl-hero-copy p { max-width: 680px; color: #d2dce7; font-size: 1.05rem; }
.onl-hero-image { position: relative; min-height: 520px; display: grid; place-items: center; overflow: hidden; padding: clamp(16px, 2vw, 34px); background: #050b14; }
.onl-hero-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,11,20,.72) 0%, transparent 15%); pointer-events: none; }
.onl-hero-image img { width: 100%; height: auto; max-height: 100%; object-fit: contain; box-shadow: 0 24px 80px rgba(0,0,0,.38); }
.partner-hero > img { object-fit: contain; object-position: center; background: #050b14; }
.impact-statement { padding: 46px 0; color: white; background: linear-gradient(100deg, #a7151d, var(--red)); }
.impact-statement p { max-width: 1100px; margin: 14px 0 0; font: 700 clamp(1.8rem, 3vw, 3.2rem)/1.08 Oswald, sans-serif; text-transform: uppercase; }
.impact-statement strong { color: var(--gold); }

.phase-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.phase-card { position: relative; min-height: 300px; padding: 28px 26px; border: 1px solid #dfe4ea; border-radius: 20px; background: white; box-shadow: 0 18px 50px rgba(20,30,45,.08); overflow: hidden; }
.phase-card::after { content: ""; position: absolute; inset: auto 0 0; height: 8px; background: linear-gradient(90deg, var(--red), var(--gold)); }
.phase-card > span { color: var(--red); font: 900 12px/1 Inter, sans-serif; letter-spacing: .13em; text-transform: uppercase; }
.phase-card h3 { margin-top: 30px; font-size: clamp(1.8rem, 2.5vw, 2.6rem); }
.phase-card p { color: #667180; }
.phase-card strong { display: block; margin-top: 25px; color: var(--navy-900); font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; }

.track-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.track-card { position: relative; min-height: 390px; padding: 32px; border-radius: 22px; border: 1px solid rgba(255,255,255,.14); overflow: hidden; }
.track-card::after { content: ""; position: absolute; inset: auto -30px -70px auto; width: 220px; height: 220px; border-radius: 50%; background: rgba(255,255,255,.05); }
.training-track { background: linear-gradient(145deg, #132d4e, #0a1829); }
.support-track { background: linear-gradient(145deg, #84131a, #2c0b10); }
.track-card > span { color: var(--gold); font: 900 12px/1 Inter, sans-serif; letter-spacing: .12em; text-transform: uppercase; }
.track-card h3 { margin-top: 22px; font-size: clamp(2.1rem, 3.2vw, 3.4rem); }
.track-card ul { display: grid; gap: 13px; padding: 0; margin: 28px 0; list-style: none; }
.track-card li { position: relative; padding-left: 28px; color: #d4deea; }
.track-card li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 900; }
.track-card p { color: #9fadc0; }

.media-story-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; align-items: center; }
.onl-video { min-height: 440px; }
.onl-video video { min-height: 440px; object-fit: cover; }
.home-film-section { position: relative; overflow: hidden; }
.home-film-section::after { content: "ADTC"; position: absolute; right: -24px; bottom: -70px; color: rgba(255,255,255,.035); font: 900 260px/.8 Oswald, Impact, sans-serif; pointer-events: none; }
.home-film-section .media-story-grid { position: relative; z-index: 1; }
.home-film-copy h2 { font-size: clamp(2.4rem, 3.8vw, 4.2rem); }
.home-story-video { min-height: 440px; border-color: rgba(248,187,67,.4); box-shadow: 0 28px 90px rgba(0,0,0,.46); }
.home-story-video video { min-height: 440px; object-fit: cover; }
.onl-logo-panel { width: 100%; max-width: 430px; padding: 28px; border: 1px solid #e2e6eb; border-radius: 26px; background: white; box-shadow: 0 24px 70px rgba(15,25,38,.14); }
.onl-page .footer-brand img { width: 118px; padding: 8px; border-radius: 12px; background: white; }

.donation-section {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 10% 15%, rgba(226,39,45,.2), transparent 34%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
}
.donation-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .1;
  background: repeating-linear-gradient(120deg, transparent 0 42px, #fff 43px, transparent 44px);
}
.donation-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(30px, 5vw, 72px); align-items: center; }
.donation-copy h2 { margin: 10px 0 18px; color: white; font-size: clamp(2.5rem, 4vw, 4.5rem); }
.donation-copy p { max-width: 620px; color: #d5dfeb; font-size: 1.04rem; }
.donation-promise { margin: 24px 0; padding-left: 18px; border-left: 4px solid var(--gold); }
.donation-impact-list { display: grid; gap: 10px; margin: 24px 0; padding: 0; list-style: none; color: #e7edf4; }
.donation-impact-list li::before { content: "✓"; margin-right: 10px; color: var(--gold); font-weight: 800; }
.zeffy-card { padding: clamp(10px, 1.5vw, 18px); border: 1px solid rgba(255,255,255,.2); border-radius: 24px; background: white; box-shadow: 0 28px 70px rgba(0,0,0,.28); }
.zeffy-card iframe { display: block; width: 100%; height: 610px; border: 0; border-radius: 15px; background: white; }
.zeffy-fallback { display: block; padding: 12px 10px 4px; color: var(--navy-900); text-align: center; font-weight: 800; text-decoration: underline; }

/* Keep the supporting mission content compact on the ADTC home page. */
#support-onl { padding: 46px 0; }
#support-onl .donation-grid { grid-template-columns: .92fr 1.08fr; gap: clamp(28px, 3.5vw, 48px); }
#support-onl .donation-copy h2 { margin: 8px 0 14px; font-size: clamp(2.15rem, 3vw, 3.4rem); }
#support-onl .donation-copy p { font-size: .96rem; line-height: 1.48; }
#support-onl .donation-promise { margin: 18px 0; }
#support-onl .donation-copy .btn { min-height: 44px; padding-inline: 18px; font-size: 12px; }
#support-onl .zeffy-card { width: 100%; max-width: 700px; justify-self: end; padding: 10px; border-radius: 19px; }
#support-onl .zeffy-card iframe { width: 119.05%; height: 610px; margin-bottom: -98px; transform: scale(.84); transform-origin: top left; }
#support-onl .zeffy-fallback { padding-top: 8px; font-size: .9rem; }

.partner-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.partner-card { position: relative; min-height: 250px; padding: 30px; border: 1px solid rgba(255,255,255,.14); border-radius: 20px; background: rgba(255,255,255,.055); }
.partner-card > span { color: var(--gold); font: 900 4rem/1 Oswald, sans-serif; opacity: .55; }
.partner-card h3 { margin-top: 24px; font-size: 1.9rem; }
.partner-card p { color: #b9c6d4; }
.ask-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: center; }
.ask-total { margin: 32px 0 22px; padding: 28px; border-left: 7px solid var(--red); background: #f1f4f7; }
.ask-total small, .ask-total span { display: block; color: #667180; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.ask-total strong { display: block; margin: 8px 0; color: var(--red); font: 900 clamp(3rem, 6vw, 6rem)/1 Oswald, sans-serif; }
.dark-comparison { border: 1px solid rgba(255,255,255,.15); background: #0b1728; box-shadow: var(--shadow); }
.dark-comparison .comparison-row { border-color: rgba(255,255,255,.1); }
.dark-comparison .comparison-row > div { color: #c6d1df; }
.dark-comparison .comparison-row > div:first-child { color: white; background: rgba(255,255,255,.05); }

/* Compact training page */
.training-page .training-hero { min-height: 340px; padding: 54px 0 34px; }
.training-page .training-hero h1 { max-width: 850px; margin-bottom: 12px; font-size: clamp(2.7rem,4.4vw,4.55rem); }
.training-page .training-hero p { font-size: 1rem; }
.training-page .page-price-offer { gap: 17px; margin-top: 16px; padding: 13px 17px; }
.training-page .page-price-offer > strong { font-size: clamp(3.15rem,4.6vw,4.4rem); }
.training-page .page-price-offer > span { font-size: 12px; }
.training-page .page-hero .hero-actions { margin-top: 16px; }
.training-page .page-hero .btn { min-height: 44px; padding-inline: 18px; font-size: 12px; }
.training-page .section { padding: 50px 0; }
.training-page .section-heading { gap: 24px; margin-bottom: 24px; }
.training-page .section-heading h2 { font-size: clamp(2rem,3vw,3.1rem); }
.training-page .section-heading .lede { font-size: 1rem; }
.training-page .mission-ribbon-inner { min-height: 0; grid-template-columns: 105px 1fr auto; gap: 24px; padding-block: 24px; }
.training-page .mission-ribbon-inner img { width: 105px; padding: 7px; border-radius: 15px; }
.training-page .mission-ribbon-inner h2 { font-size: clamp(1.7rem,2.5vw,2.55rem); }
.training-page .mission-ribbon-inner p { font-size: .92rem; line-height: 1.48; }
.training-page .mission-ribbon-inner .btn { min-height: 44px; padding-inline: 18px; font-size: 12px; }
.training-page .pricing-grid { gap: 18px; }
.training-page .price-card { padding: 23px; border-radius: 17px; }
.training-page .price-card.featured { transform: none; }
.training-page .price-card.featured::before { padding: 8px 13px; font-size: 9px; }
.training-page .price-card h3 { font-size: 1.65rem; }
.training-page .board-train-price { gap: 14px; margin: 16px 0 4px; padding: 16px; border-radius: 13px; }
.training-page .board-train-price > div:first-child > strong { font-size: clamp(3.45rem,5.2vw,4.8rem); }
.training-page .cash-option { padding-top: 10px; }
.training-page .cash-option strong { font-size: 1.5rem; }
.training-page .price-display { margin: 14px 0 5px; font-size: 2rem; }
.training-page .price-display.program-format { margin-top: 10px; font-size: 1.25rem; }
.training-page .price-card p { margin-bottom: 13px; font-size: .92rem; }
.training-page .price-card ul { margin: 17px 0 21px; font-size: .9rem; }
.training-page .price-card li { padding: 7px 0 7px 24px; }
.training-page .card-actions .btn { min-height: 43px; padding-inline: 16px; font-size: 11px; }
.training-page .process { gap: 15px; }
.training-page .step { padding: 19px 20px; }
.training-page .step::before { right: 17px; top: 14px; font-size: 54px; }
.training-page .step h3 { margin-top: 20px; font-size: 1.35rem; }
.training-page .step p { margin-bottom: 0; font-size: .88rem; }
.training-page .comparison { border-radius: 16px; }
.training-page .comparison-row > div { padding: 15px 20px; font-size: .92rem; }
.training-page .split-feature { min-height: 420px; }
.training-page .split-media { min-height: 420px; }
.training-page .split-content { padding: 38px clamp(28px,4vw,54px); }
.training-page .split-content h2 { font-size: clamp(2rem,3.1vw,3.15rem); }
.training-page .finance-price-hero { gap: 16px; margin: 16px 0 4px; padding: 16px; }
.training-page .finance-price-hero strong { font-size: clamp(3.4rem,4.8vw,4.8rem); }
.training-page .financing-application { margin: 19px 0 17px; padding: 17px; }
.training-page .btn-finance { min-height: 52px; padding-inline: 18px; font-size: 15px; }
.training-page .city-cloud { gap: 9px; }
.training-page .city-cloud span { padding: 9px 13px; font-size: 10px; }
.training-page .faq-list { margin-top: 22px; }
.training-page .faq-list summary { padding: 17px 40px 17px 0; font-size: 1rem; }
.training-page .faq-list summary::after { top: 11px; }
.training-page .faq-list details p { padding-bottom: 17px; font-size: .92rem; }
.training-page .cta-band { padding: 36px 0; }
.training-page .cta-inner h2 { font-size: clamp(2rem,3vw,3rem); }

/* Local search and service-area layouts */
.area-hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.area-hero-badges span { padding: 10px 14px; border: 1px solid rgba(255,255,255,.25); border-radius: 99px; color: #e1e8f0; background: rgba(5,11,20,.34); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.area-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.area-card { padding: 26px; border-top: 5px solid var(--red); border-radius: 0 0 18px 18px; background: white; box-shadow: 0 16px 50px rgba(20,30,45,.08); }
.area-card h3 { font-size: 2rem; }
.area-card p { color: #667180; }
.area-card ul { padding-left: 20px; color: #4f5b69; }
.service-location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.service-location { position: relative; min-height: 340px; padding: 32px; border-radius: 22px; color: white; background: linear-gradient(145deg, #132d4e, #07101e); overflow: hidden; }
.service-location:last-child { background: linear-gradient(145deg, #8b151c, #2c0b10); }
.service-location small { color: var(--gold); font-weight: 900; text-transform: uppercase; letter-spacing: .12em; }
.service-location h3 { margin-top: 38px; font-size: clamp(2.1rem, 3.2vw, 3.4rem); }
.service-location p { color: #c9d3df; }

.site-footer { color: #c0cbd8; background: #03070d; }
.footer-main { padding: 52px 0 38px; display: grid; grid-template-columns: 1.2fr .7fr .7fr 1fr; gap: 34px; }
.footer-brand img { width: 82px; margin-bottom: 20px; }
.footer-brand p { max-width: 350px; color: #8e9cad; }
.footer-col h4 { color: white; font-size: 1rem; letter-spacing: .06em; }
.footer-col a { display: block; padding: 6px 0; color: #9facbb; font-size: .9rem; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0; display: flex; justify-content: space-between; gap: 20px; font-size: 12px; }
.mobile-call { display: none; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1060px) {
  .main-nav { display: none; position: absolute; top: 88px; left: 0; right: 0; padding: 24px 20px; background: #07101e; flex-direction: column; align-items: flex-start; border-top: 1px solid var(--line); }
  .main-nav.open { display: flex; }
  .mobile-toggle { display: block; margin-left: auto; }
  .nav-actions .btn-outline { display: none; }
  .hero-grid { grid-template-columns: minmax(0, 1.1fr) minmax(330px, .9fr); gap: 18px; }
  .hero-copy { grid-column: 1 / -1; grid-row: 2; grid-template-columns: 1fr 1fr; gap: 28px; }
  .hero .media-shell { grid-column: 1; grid-row: 1; }
  .hero .lead-card { grid-column: 2; grid-row: 1; }
  .trust-grid, .problem-grid { grid-template-columns: repeat(2,1fr); }
  .program-grid { grid-template-columns: repeat(2,1fr); }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-image img { border-radius: 0; height: 440px; }
  .results-grid { grid-template-columns: repeat(3,1fr); }
  .reviews-grid, .groom-grid { grid-template-columns: 1fr 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .number-grid { grid-template-columns: repeat(2,1fr); }
  .number-item:nth-child(2) { border-right: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .mission-punch { grid-template-columns: 1fr; }
  .mission-punch-media { min-height: 360px; }
  .mission-punch-media::after { background: linear-gradient(180deg, transparent 60%, #102746 100%); }
  .mission-ribbon-inner { grid-template-columns: 140px 1fr; }
  .mission-ribbon-inner img { width: 140px; }
  .mission-ribbon-inner .btn { grid-column: 2; justify-self: start; }
  .training-page .mission-ribbon-inner { grid-template-columns: 92px 1fr; gap: 20px; }
  .training-page .mission-ribbon-inner img { width: 92px; }
  .training-page .mission-ribbon-inner .btn { grid-column: 2; }
  .onl-hero { grid-template-columns: 1fr; }
  .onl-hero-image { min-height: 460px; order: -1; }
  .onl-hero-image::after { background: linear-gradient(180deg, transparent 60%, #050b14 100%); }
  .donation-grid { grid-template-columns: 1fr; }
  #support-onl .donation-grid { grid-template-columns: 1fr; gap: 28px; }
  #support-onl .zeffy-card { max-width: 720px; justify-self: center; }
  .local-impact-grid, .media-story-grid, .ask-grid { grid-template-columns: 1fr; }
  .credential-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .training-philosophy { grid-template-columns: 1fr; gap: 44px; }
  .area-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px, var(--max)); }
  .section { padding: 56px 0; }
  .training-page .section { padding: 40px 0; }
  .section-heading { display: block; }
  .brand { min-width: auto; }
  .brand strong, .brand span { display: none; }
  .nav-actions .btn { display: none; }
  .nav-wrap { height: 74px; }
  .main-nav { top: 74px; }
  .hero { min-height: auto; padding: 24px 0 36px; }
  .hero::after { font-size: 180px; }
  .hero-grid { display: grid; grid-template-columns: 1fr; }
  .hero-copy { grid-column: 1; grid-row: 3; grid-template-columns: 1fr; }
  .hero .media-shell { grid-column: 1; grid-row: 1; }
  .hero .lead-card { grid-column: 1; grid-row: 2; }
  .hero-copy { padding: 30px 24px; margin: 0; border-left-width: 4px; }
  .hero-copy h1 { font-size: clamp(3.15rem,15vw,5rem); }
  .hero-copy h2 { font-size: clamp(2.35rem,10vw,3.5rem); }
  .hero-copy p { font-size: 1rem; }
  .hero-price-offer { grid-template-columns: 1fr; gap: 10px; }
  .hero-price-offer > div:last-child { padding: 10px 0 0; border-left: 0; border-top: 1px solid rgba(255,255,255,.16); }
  .hero .media-shell { min-height: 650px; margin-bottom: 0; }
  .hero .media-shell video { min-height: 650px; }
  .lead-card { padding: 24px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .trust-rail { margin-top: 0; }
  .trust-grid, .problem-grid, .program-grid, .reviews-grid, .groom-grid, .pricing-grid, .location-grid { grid-template-columns: 1fr; }
  .review-intro { grid-template-columns: 1fr; gap: 22px; margin-bottom: 22px; }
  .review-summary { padding: 22px; }
  .review-summary .btn { width: 100%; }
  .credentials-heading { display: block; }
  .credentials-heading h1 { margin-top: 18px; text-align: left; }
  .credential-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; }
  .credential-card { min-height: 176px; padding: 14px 10px; }
  .credential-logo-frame { width: 74px; height: 74px; }
  .akc-program-frame { width: 136px; height: 88px; padding: 5px 7px; }
  .military-k9-frame { width: 80px; height: 80px; }
  .credential-card > div:last-child strong { font-size: 15px; }
  .credential-card > div:last-child span { font-size: 9px; }
  .location-rotator { min-height: 92px; align-items: flex-start; flex-direction: column; gap: 5px; padding: 18px 18px 23px; }
  .location-rotator > strong { min-width: 0; font-size: clamp(2rem,10vw,3rem); }
  .training-philosophy { margin-top: 22px; padding: 30px 22px; }
  .philosophy-footer { grid-template-columns: 1fr; gap: 16px; padding-top: 20px; }
  .mission-tagline { min-height: 64px; padding: 13px 16px; }
  .program-grid.two-up, .phase-grid, .track-grid, .partner-grid, .area-grid, .service-location-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid #e5e8ed; }
  .program-card { min-height: 420px; }
  .process { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr 1fr; }
  .result-shot { height: 210px; }
  .split-feature { grid-template-columns: 1fr; }
  .split-media { min-height: 340px; }
  .split-content { padding: 48px 24px; }
  .cta-inner { display: block; }
  .cta-actions { margin-top: 28px; flex-wrap: wrap; }
  .page-hero { min-height: 340px; padding: 72px 0 40px; }
  .training-page .training-hero { min-height: 320px; padding: 46px 0 30px; }
  .training-page .training-hero h1 { font-size: clamp(2.65rem,12vw,3.7rem); }
  .training-page .page-price-offer > strong { font-size: 3.25rem; }
  .page-price-offer { display: flex; align-items: flex-start; flex-direction: column; gap: 8px; }
  .board-train-price { grid-template-columns: 1fr; }
  .training-page .price-card { padding: 20px; }
  .training-page .board-train-price { padding: 14px; }
  .training-page .board-train-price > div:first-child > strong { font-size: 3.65rem; }
  .cash-option { padding: 14px 0 0; border-left: 0; border-top: 1px solid rgba(255,255,255,.16); }
  .finance-price-hero { align-items: flex-start; flex-direction: column; gap: 10px; }
  .training-page .split-feature { min-height: 0; }
  .training-page .split-media { min-height: 270px; }
  .training-page .split-content { padding: 34px 22px; }
  .training-page .finance-price-hero strong { font-size: 3.6rem; }
  .addons { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 220px; }
  .gallery-item:first-child { grid-row: span 1; grid-column: span 2; }
  .team-grid, .app-feature { grid-template-columns: 1fr; }
  .app-promo { padding: 34px 0; }
  .app-feature { gap: 20px; }
  .app-logo { width: 112px; }
  .app-feature h2 { font-size: 2rem; }
  .intro-grid { grid-template-columns: 1fr; gap: 30px; }
  .intro-kicker { position: static; }
  .comparison-row { grid-template-columns: 1fr; }
  .comparison-row > div { padding: 18px 20px; }
  .number-grid { grid-template-columns: 1fr 1fr; }
  .number-item { padding: 30px 12px; }
  .contact-panel, .contact-form-light { padding: 26px 20px; }
  .team-photo img { height: 480px; }
  .fact-row { flex-direction: column; }
  .mission-punch-media { min-height: 260px; }
  .mission-punch-copy { padding: 32px 22px; }
  .mission-punch-copy h2 { font-size: clamp(2rem, 10vw, 2.9rem); }
  .mission-facts > div { grid-template-columns: 1fr; gap: 6px; }
  .mission-ribbon-inner { grid-template-columns: 1fr; gap: 28px; }
  .mission-ribbon-inner img { width: 120px; }
  .mission-ribbon-inner .btn { grid-column: 1; }
  .training-page .mission-ribbon-inner { grid-template-columns: 72px 1fr; gap: 16px; padding-block: 20px; }
  .training-page .mission-ribbon-inner img { width: 72px; }
  .training-page .mission-ribbon-inner .btn { grid-column: 1 / -1; justify-self: start; }
  .onl-hero-copy { padding: 50px 22px; }
  .onl-hero-image { min-height: 300px; }
  .impact-statement { padding: 40px 0; }
  .phase-card { min-height: auto; }
  .track-card { min-height: auto; padding: 34px 25px; }
  .onl-video, .onl-video video { min-height: 350px; }
  .zeffy-card iframe { height: 660px; }
  #support-onl { padding: 38px 0; }
  #support-onl .zeffy-card iframe { width: 111.12%; height: 660px; margin-bottom: -66px; transform: scale(.9); }
  .partner-card { min-height: auto; padding: 32px 25px; }
  .service-location { min-height: 280px; padding: 28px 24px; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom { display: block; padding-bottom: 90px; }
  .mobile-call { position: fixed; display: grid; grid-template-columns: 1fr 1fr; left: 0; right: 0; bottom: 0; z-index: 80; }
  .mobile-call a { display: grid; place-items: center; min-height: 58px; color: white; background: var(--navy-900); font: 800 13px/1 Oswald, sans-serif; text-transform: uppercase; letter-spacing: .08em; }
  .mobile-call a:last-child { background: var(--red); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
