/* Google Fonts loaded asynchronously from HTML — see each page's <head> */

:root {
  --navy:         #132347;
  --navy-dark:    #0a1830;
  --navy-mid:     #1c3263;
  --navy-light:   #e8edf7;
  --gold:         #F5A623;
  --gold-dark:    #d98e0f;
  --gold-light:   #FEF8E7;
  --bg:           #f8fafc;
  --surface:      #ffffff;
  --surface-alt:  #f0f2f7;
  --text:         #132347;
  --muted:        #5b6b8a;
  --line:         #dde3ef;
  --border:       #d0d6e4;
  --accent:       #f2f5fb;
  --radius:       16px;
  --radius-sm:    10px;
  --shadow:       0 1px 3px rgba(19,35,71,.06), 0 4px 16px rgba(19,35,71,.07);
  --shadow-lg:    0 8px 32px rgba(19,35,71,.14);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

.container {
  width: min(1100px, 92%);
  margin-inline: auto;
}

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--navy); color: #fff; padding: .5rem .75rem;
}
.skip-link:focus { left: .5rem; top: .5rem; z-index: 9999; }

/* ═══════════════
   NAV
═══════════════ */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--navy);
  border-bottom: 1px solid var(--navy-mid);
}
.nav {
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 1rem; padding: .7rem 0;
}
.brand { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.brand img { height: 88px; width: auto; }

.nav-links {
  list-style: none; padding: 0; margin: 0;
  display: flex; gap: .1rem;
}
.nav-links a {
  text-decoration: none; color: rgba(255,255,255,.7);
  font-weight: 500; font-size: .9rem;
  padding: .45rem .65rem; border-radius: var(--radius-sm);
  transition: color .15s, background .15s;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,.1); }
.nav-links a.active { color: var(--gold); }

.nav-toggle {
  display: none; background: none; border: none;
  cursor: pointer; padding: .35rem; color: #fff;
}
.nav-toggle svg { display: block; }

.mobile-menu {
  display: none; flex-direction: column;
  background: var(--navy-dark);
  border-top: 1px solid var(--navy-mid);
  padding: .75rem 0 1rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  text-decoration: none; color: rgba(255,255,255,.8);
  font-weight: 500; padding: .75rem 1.25rem; font-size: 1rem;
}
.mobile-menu a:hover { background: rgba(255,255,255,.07); color: #fff; }
.mobile-menu a.active { color: var(--gold); }
.mobile-menu .btn { margin: .6rem 1.25rem 0; }

/* ═══════════════
   BUTTONS
═══════════════ */
.btn {
  display: inline-flex; align-items: center; gap: .45rem;
  border-radius: var(--radius-sm); padding: .65rem 1.25rem;
  text-decoration: none; border: 1.5px solid transparent;
  font-weight: 600; font-size: .95rem;
  cursor: pointer; transition: all .15s; font-family: inherit; line-height: 1.3;
}
.btn-primary { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-dark); border-color: var(--gold-dark); }
.btn-outline-light { border-color: rgba(255,255,255,.4); color: #fff; background: transparent; }
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,.1); }
.btn-outline-dark { border-color: var(--line); color: var(--navy); background: var(--surface); }
.btn-outline-dark:hover { border-color: var(--navy); }
.btn-lg { padding: .85rem 1.75rem; font-size: 1rem; }
.btn-xl { padding: 1rem 2rem; font-size: 1.05rem; }

.btn:focus-visible, a:focus-visible,
input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--gold); outline-offset: 2px;
}

/* ═══════════════
   HERO
═══════════════ */
.hero {
  padding: 5.5rem 0 4.5rem;
  background: linear-gradient(150deg, #f2f5fb 0%, #eef2fb 40%, #f8fafc 100%);
  text-align: center; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(245,166,35,.1) 0%, transparent 70%);
  pointer-events: none;
}

.eyebrow {
  display: inline-block;
  background: var(--gold-light); color: var(--gold-dark);
  font-weight: 700; font-size: .78rem;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .35rem 1rem; border-radius: 100px;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(245,166,35,.3);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.15; font-weight: 800; letter-spacing: -.03em;
  margin: 0 0 1.25rem; color: var(--navy);
  max-width: 820px; margin-inline: auto;
}

.subhead {
  color: var(--muted); font-size: 1.1rem;
  max-width: 58ch; margin-inline: auto;
  margin-bottom: 2rem; line-height: 1.7;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; }

/* ═══════════════
   SECTIONS
═══════════════ */
.section { padding: 4.5rem 0; }
.section-muted { background: var(--accent, #f2f5fb); }
.section-dark { background: var(--navy); color: #fff; }
.section-dark h2 { color: #fff; }
.section-dark p { color: rgba(255,255,255,.7); }

.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { margin: .5rem 0 .75rem; }
.section-header p { color: var(--muted); max-width: 52ch; margin-inline: auto; }

.section-label {
  display: inline-block; color: var(--gold-dark);
  font-weight: 700; font-size: .78rem;
  letter-spacing: .09em; text-transform: uppercase;
}

h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  font-weight: 800; line-height: 1.2;
  letter-spacing: -.025em; margin: 0 0 1rem; color: var(--navy);
}
h3 { font-size: 1.05rem; font-weight: 700; margin: 0 0 .5rem; color: var(--navy); }

/* ═══════════════
   STAT CARDS
═══════════════ */
.stats-row {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.stat-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow); text-align: center;
}
.stat-card .stat-icon {
  width: 48px; height: 48px; background: var(--gold-light);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem; color: var(--gold-dark);
}
.stat-card strong { display: block; font-size: 1.05rem; font-weight: 700; margin-bottom: .4rem; }
.stat-card span { color: var(--muted); font-size: .95rem; }

/* ═══════════════
   SERVICE CARDS
═══════════════ */
.service-grid {
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.service-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow);
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.service-card:hover {
  box-shadow: var(--shadow-lg); transform: translateY(-2px); border-color: var(--gold);
}
.service-icon {
  width: 44px; height: 44px; background: var(--gold-light);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem; color: var(--gold-dark);
}
.service-card p { color: var(--muted); font-size: .95rem; }

/* ═══════════════
   PROCESS STEPS
═══════════════ */
.process-list { display: grid; gap: 1.5rem; }
.process-item {
  display: flex; gap: 1.25rem;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow);
  transition: border-color .2s;
}
.process-item:hover { border-color: var(--gold); }
.process-num {
  flex-shrink: 0; width: 40px; height: 40px;
  background: var(--gold); color: var(--navy);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1rem;
}
.process-body h3 { margin-bottom: .35rem; }
.process-body p { color: var(--muted); margin: 0; font-size: .95rem; }

/* ═══════════════
   SUBSCRIPTION / PRICING
═══════════════ */
.pricing-section {
  background: var(--navy);
  padding: 5rem 0;
}
.pricing-header { margin-bottom: 3rem; }
.pricing-header .section-label { color: var(--gold); opacity: .85; }
.pricing-header h2 { color: #fff; margin: .5rem 0 .75rem; }
.pricing-header p { color: rgba(255,255,255,.65); max-width: 54ch; }

.included-grid {
  display: grid; gap: .75rem;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  margin-bottom: 3.5rem;
}
.included-item {
  display: flex; gap: .75rem; align-items: center;
  color: rgba(255,255,255,.85); font-size: .95rem;
}
.included-item svg { flex-shrink: 0; color: var(--gold); }

.how-grid {
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-bottom: 3rem;
}
.how-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius); padding: 1.5rem;
}
.how-num {
  width: 36px; height: 36px; background: var(--gold); color: var(--navy);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .95rem; margin-bottom: 1rem;
}
.how-card h3 { color: #fff; margin-bottom: .4rem; }
.how-card p { color: rgba(255,255,255,.6); font-size: .9rem; margin: 0; }

.pricing-cta {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 2.5rem;
  display: flex; flex-direction: column; gap: 1rem; align-items: flex-start;
}
.pricing-cta .price-tag {
  font-size: 1.6rem; font-weight: 800; color: #fff;
  letter-spacing: -.02em;
}
.pricing-cta .price-tag span { color: var(--gold); }
.pricing-cta p { color: rgba(255,255,255,.55); font-size: .9rem; margin: 0; }
.pricing-cta-actions { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; }

/* ═══════════════
   TESTIMONIALS
═══════════════ */
.testimonial-grid {
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.testimonial-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow); position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-size: 4rem; line-height: 1; color: var(--gold);
  opacity: .4; position: absolute; top: .75rem; left: 1.25rem;
  font-family: Georgia, serif;
}
.testimonial-card blockquote {
  margin: 1.25rem 0 1rem;
  padding: 0; font-size: .97rem;
  color: var(--text); line-height: 1.65; font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--gold-light); color: var(--gold-dark);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .9rem; flex-shrink: 0;
}
.testimonial-meta strong { display: block; font-size: .9rem; }
.testimonial-meta span { font-size: .82rem; color: var(--muted); }

/* ═══════════════
   PORTFOLIO / VIDEO
═══════════════ */
.portfolio-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.video-wrapper {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg); background: var(--surface);
  border: 1px solid var(--line);
}

/* Fixed 16:9 container — all three states live inside here absolutely
   so switching between them never changes the card's height */
.video-stage {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 9/16 = 56.25% of width */
  background: var(--navy);
  overflow: hidden;
}
.video-intro,
.video-embed,
.video-snip {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Intro splash */
.video-intro {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1rem; text-align: center;
  padding: 1.75rem 2rem 2.5rem;
  cursor: pointer;
}
.video-intro-logo img { height: 52px; width: auto; opacity: .9; }
.video-intro-meta { max-width: 340px; }
.video-intro-meta h3 { color: #fff; font-size: 1rem; margin-bottom: .3rem; }
.video-intro-meta p { color: rgba(255,255,255,.55); font-size: .85rem; margin: 0; }

.video-play-btn {
  display: inline-flex; align-items: center; gap: .6rem;
  background: var(--gold); color: var(--navy);
  border: none; border-radius: 100px;
  padding: .7rem 1.4rem; font-weight: 700; font-size: .9rem;
  cursor: pointer; font-family: inherit;
  transition: background .15s, transform .15s;
  box-shadow: 0 4px 16px rgba(245,166,35,.35);
}
.video-play-btn:hover { background: var(--gold-dark); transform: scale(1.03); }
.video-play-btn svg { flex-shrink: 0; }

/* Video embed */
.video-embed { background: var(--navy); }
.video-embed iframe { width: 100%; height: 100%; border: none; display: block; }

/* Snip / CTA — shown after 35 s or on Vimeo error */
.video-snip {
  background: var(--navy-dark);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1.25rem; text-align: center; padding: 2rem;
}
.video-snip img { height: 48px; width: auto; opacity: .85; }
.video-snip h3 { color: #fff; margin: 0; font-size: 1.1rem; }
.video-snip p { color: rgba(255,255,255,.6); font-size: .9rem; margin: 0; max-width: 280px; }

.video-info { padding: 1.25rem 1.5rem 1.5rem; border-top: 3px solid var(--gold); }
.video-info h3 { margin-bottom: .25rem; font-size: 1rem; }
.video-info p { font-size: .88rem; color: var(--muted); }

/* ═══════════════
   CLIENT LOGOS
═══════════════ */
.logo-strip {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 2.5rem; align-items: center;
}
.client-logo {
  height: 44px; width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: grayscale(1) opacity(0.55);
  transition: filter .2s;
}
.client-logo:hover { filter: grayscale(0) opacity(1); }
.client-logo-text {
  font-size: .9rem; font-weight: 700; color: var(--muted);
  letter-spacing: .04em; opacity: .55;
}

/* ═══════════════
   LEGAL PAGES
═══════════════ */
.legal-content h2 {
  font-size: 1.15rem; color: var(--navy);
  margin-bottom: .6rem; padding-bottom: .4rem;
  border-bottom: 2px solid var(--gold-light, #fef3d8);
}
.legal-content p, .legal-content li {
  font-size: .96rem; line-height: 1.75; color: var(--body);
}
.legal-content ul {
  padding-left: 1.4rem; margin: .75rem 0;
  display: grid; gap: .4rem;
}
.legal-content a { color: var(--navy); text-decoration: underline; }
.legal-content a:hover { color: var(--gold-dark, #c8851e); }

/* ═══════════════
   SERVICE PRICING NOTE
═══════════════ */
.service-pricing-note {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.5rem 2rem;
  margin-top: 2rem;
}
.service-pricing-note-inner {
  display: flex; align-items: flex-start; gap: .75rem; flex: 1;
  color: var(--muted);
}
.service-pricing-note-inner svg { flex-shrink: 0; margin-top:.1rem; color: var(--gold); }
.service-pricing-note-inner p { margin: 0; font-size: .95rem; }

/* ═══════════════
   CTA BAND
═══════════════ */
.cta-band { background: var(--navy); color: #fff; }
.cta-band-inner {
  display: flex; flex-direction: column;
  align-items: flex-start; gap: 1.5rem; padding: 3.5rem 0;
}
.cta-band h2 { color: #fff; margin-bottom: .5rem; }
.cta-band p { color: rgba(255,255,255,.6); margin: 0; }

/* ═══════════════
   CONTACT
═══════════════ */
.contact-layout { display: grid; gap: 3rem; align-items: start; }
.contact-info h2 { margin-bottom: .75rem; }
.contact-info p { color: var(--muted); }
.contact-info a { color: var(--gold-dark); font-weight: 600; text-decoration: none; }
.contact-info a:hover { text-decoration: underline; }

.contact-form {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow);
}
.form-row { display: grid; gap: .4rem; margin-bottom: 1.1rem; }
.form-row label { font-size: .9rem; font-weight: 600; color: var(--navy); }

input, textarea, select {
  border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  padding: .65rem .85rem; font: inherit; background: var(--bg);
  color: var(--text); transition: border-color .15s, box-shadow .15s; width: 100%;
}
input:hover, textarea:hover, select:hover { border-color: #94a3b8; }
input:focus, textarea:focus, select:focus {
  border-color: var(--gold); outline: none; background: #fff;
  box-shadow: 0 0 0 3px rgba(245,166,35,.15);
}

fieldset { border: 1.5px solid var(--line); border-radius: var(--radius-sm); padding: .75rem 1rem; }
legend { font-weight: 600; font-size: .9rem; color: var(--navy); }
fieldset label { margin-right: 1.25rem; cursor: pointer; }
fieldset input[type="radio"] { width: auto; accent-color: var(--gold-dark); }

.form-help { font-size: .875rem; color: var(--muted); margin-top: .75rem; }
.form-success {
  display: none; background: var(--gold-light); color: var(--gold-dark);
  border: 1px solid rgba(245,166,35,.4); border-radius: var(--radius-sm);
  padding: 1rem 1.25rem; font-weight: 600; margin-bottom: 1rem;
}

/* ═══════════════
   PAGE HERO (inner pages)
═══════════════ */
.page-hero {
  background: linear-gradient(150deg, #f2f5fb 0%, #eef2fb 40%, #f8fafc 100%);
  padding: 3.5rem 0; border-bottom: 1px solid var(--line);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 0% 50%, rgba(245,166,35,.07) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero .eyebrow { margin-bottom: .75rem; }
.page-hero h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); text-align: left; margin-inline: 0; }
.page-hero p { color: var(--muted); max-width: 56ch; margin-bottom: 0; }

/* ═══════════════
   ABOUT PAGE
═══════════════ */
.about-body {
  max-width: 72ch;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.about-block h2 {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  color: var(--navy);
  margin-bottom: 1rem;
}
.about-block p {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: .75rem;
}
.about-block p:last-child { margin-bottom: 0; }
.about-cta {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
}
.about-cta h3 {
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: .5rem;
}
.about-cta p {
  color: rgba(255,255,255,.65);
  margin-bottom: 1.5rem;
}
.about-cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════
   FOOTER
═══════════════ */
.site-footer {
  background: var(--navy-dark); color: rgba(255,255,255,.55);
  padding: 3rem 0 0; font-size: .9rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand { display: flex; align-items: center; gap: .75rem; }
.footer-brand img { height: 48px; width: auto; opacity: .85; }
.footer-brand-name {
  font-size: 1rem; font-weight: 800; letter-spacing: .04em;
  color: rgba(255,255,255,.85); line-height: 1.2; text-transform: uppercase;
}
.footer-brand-name span {
  display: block; font-weight: 400; font-size: .8rem;
  letter-spacing: .12em; color: var(--gold); text-transform: uppercase;
}
.footer-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.footer-nav-col {
  display: flex; flex-direction: column; gap: .5rem;
}
.footer-col-head {
  font-size: .75rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: rgba(255,255,255,.35);
  margin: 0 0 .4rem;
}
.footer-nav-col a {
  color: rgba(255,255,255,.6); text-decoration: none;
  transition: color .15s; line-height: 1.5;
}
.footer-nav-col a:hover { color: var(--gold); }
.footer-bottom {
  padding: 1.25rem 0;
  font-size: .8rem; color: rgba(255,255,255,.35);
}
.footer-bottom p { margin: 0; }

/* ═══════════════
   TAGS
═══════════════ */
.tag-list { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.25rem; }
.tag {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 100px; padding: .4rem 1rem;
  font-size: .875rem; font-weight: 500; color: var(--navy);
  transition: border-color .15s, background .15s;
}
.tag:hover { border-color: var(--gold); background: var(--gold-light); }

/* ═══════════════
   RESPONSIVE
═══════════════ */
@media (max-width: 639px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav .btn { display: none; }

  .section { padding: 3rem 0; }

  .hero { padding: 3.5rem 0 3rem; }

  .page-hero { padding: 3rem 0; }
  .page-hero h1 { text-align: center; }
  .page-hero p { max-width: 100%; text-align: center; }
  .page-hero .eyebrow { display: block; text-align: center; }

  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { text-align: center; justify-content: center; }

  .pricing-cta { align-items: stretch; }

  .service-pricing-note { flex-direction: column; gap: 1rem; }

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

  .video-snip { padding: 1.25rem; }
  .video-snip p { max-width: 100%; }

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

@media (min-width: 640px) {
  .cta-band-inner { flex-direction: row; align-items: center; justify-content: space-between; }
  .contact-layout { grid-template-columns: 1fr 1.6fr; }
  .footer-inner { grid-template-columns: auto 1fr; align-items: start; }
  .process-list { grid-template-columns: repeat(2, 1fr); }
  .pricing-cta { flex-direction: row; align-items: center; justify-content: space-between; }
}

@media (min-width: 900px) {
  .footer-columns { grid-template-columns: 1fr 1.4fr; }
}

/* ═══════════════════════════════════════════════════════════
   BREADCRUMB
═══════════════════════════════════════════════════════════ */
.breadcrumb-nav {
  padding: 1rem 0 0;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: .25rem .5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: .85rem;
  color: var(--muted, #6b7a99);
}
.breadcrumb li + li::before {
  content: '/';
  margin-right: .5rem;
  color: var(--muted, #6b7a99);
}
.breadcrumb a {
  color: var(--muted, #6b7a99);
  text-decoration: none;
}
.breadcrumb a:hover { color: var(--navy); text-decoration: underline; }
.breadcrumb [aria-current="page"] { color: var(--navy); font-weight: 500; }

/* ═══════════════════════════════════════════════════════════
   SERVICE DEEP-DIVE PAGES
═══════════════════════════════════════════════════════════ */
.service-detail-intro {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 860px) {
  .service-detail-intro { grid-template-columns: 1fr 320px; align-items: start; }
}
.service-detail-copy h2 { margin-top: 0; }
.service-detail-copy p + p { margin-top: .75rem; }

.aside-card {
  background: var(--surface-alt, #f0f2f7);
  border-left: 3px solid var(--gold);
  border-radius: .5rem;
  padding: 1.5rem;
}
.aside-card-head {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted, #6b7a99);
  margin: 0 0 .75rem;
}
.aside-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.aside-list li {
  font-size: .95rem;
  padding-left: 1.1rem;
  position: relative;
  color: var(--navy);
}
.aside-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* Process steps inline (used on service pages) */
.process-steps-inline {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 760px;
  margin: 0 auto;
}
.process-step-inline {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.step-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  min-width: 2.5rem;
  flex-shrink: 0;
}
.step-body h3 { margin: 0 0 .35rem; font-size: 1.05rem; }
.step-body p { margin: 0; color: var(--muted, #6b7a99); font-size: .97rem; }

/* FAQ list */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border, #d8dde8);
  padding-bottom: 1.5rem;
}
.faq-item:last-child { border-bottom: none; padding-bottom: 0; }
.faq-q {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 .5rem;
}
.faq-a {
  font-size: .97rem;
  color: var(--muted, #6b7a99);
  margin: 0;
  line-height: 1.7;
}

/* Service card inline link */
a.service-card-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}
a.service-card-link:hover { color: var(--gold); text-decoration: none; }

/* ═══════════════════════════════════════════════════════════
   RESOURCES HUB
═══════════════════════════════════════════════════════════ */
.resource-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .resource-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .resource-grid { grid-template-columns: repeat(3, 1fr); }
}

.resource-card {
  background: #fff;
  border: 1px solid #c8d0e0;
  border-radius: .75rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(19,35,71,.06);
  transition: box-shadow .2s, transform .2s;
}
.resource-card:hover {
  box-shadow: 0 8px 28px rgba(19,35,71,.12);
  transform: translateY(-3px);
}
.resource-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.resource-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}
.resource-tag {
  display: inline-block;
  background: #e8edf7;
  color: #132347;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: .25rem .7rem;
  border-radius: 99px;
}
h2.resource-card-title {
  font-size: 1.1rem !important;
  font-weight: 700;
  margin: 0 !important;
  line-height: 1.35;
  letter-spacing: 0;
}
h2.resource-card-title a {
  color: #132347;
  text-decoration: none;
}
h2.resource-card-title a:hover { color: #F5A623; }
.resource-card-excerpt {
  font-size: .92rem;
  color: #5b6b8a;
  margin: 0;
  line-height: 1.65;
  flex: 1;
}
.resource-card-meta {
  display: flex;
  gap: 1rem;
  font-size: .8rem;
  color: #5b6b8a;
}
a.resource-card-link {
  display: block;
  padding: .85rem 1.5rem;
  border-top: 1px solid #c8d0e0;
  font-size: .875rem;
  font-weight: 600;
  color: #132347;
  text-decoration: none;
  transition: background .15s, color .15s;
}
a.resource-card-link:hover {
  background: #132347;
  color: #fff;
}
.resources-more {
  margin-top: 2.5rem;
  text-align: center;
  color: #5b6b8a;
  font-size: .95rem;
}
.resources-more a { color: #132347; font-weight: 600; }

/* ═══════════════════════════════════════════════════════════
   ARTICLE PAGES
═══════════════════════════════════════════════════════════ */
.article-hero {
  background: var(--navy);
  color: #fff;
  padding: 4rem 0 3rem;
}
.article-hero .article-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1rem; }
.article-hero h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: #fff;
  max-width: 760px;
  margin: 0 0 1rem;
}
.article-subhead {
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  max-width: 680px;
  margin: 0 0 1.25rem;
  line-height: 1.6;
}
.article-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .85rem;
  color: rgba(255,255,255,.6);
}

/* Article body prose */
.article-body {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.75;
  color: #2a3350;
}
.article-body h2 {
  font-size: 1.35rem;
  margin: 2.5rem 0 .75rem;
  color: var(--navy);
}
.article-body h3 {
  font-size: 1.1rem;
  margin: 1.75rem 0 .5rem;
  color: var(--navy);
}
.article-body p { margin: 0 0 1rem; }
.article-body ul,
.article-body ol {
  margin: 0 0 1.25rem 1.25rem;
  padding: 0;
}
.article-body li { margin-bottom: .4rem; }
.article-body strong { color: var(--navy); }
.article-body a { color: var(--navy); font-weight: 500; }
.article-body a:hover { color: var(--gold); }

/* BLUF callout box */
.article-bluf {
  background: var(--surface-alt, #f0f2f7);
  border-left: 3px solid var(--gold);
  border-radius: .5rem;
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
}
.article-bluf p { margin: 0; font-size: .97rem; }

/* Cost table */
.cost-table-wrapper {
  overflow-x: auto;
  margin: 1.25rem 0;
}
.cost-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
}
.cost-table th {
  background: var(--navy);
  color: #fff;
  text-align: left;
  padding: .65rem 1rem;
  font-size: .8rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.cost-table td {
  padding: .65rem 1rem;
  border-bottom: 1px solid var(--border, #d8dde8);
  vertical-align: top;
}
.cost-table tr:last-child td { border-bottom: none; }
.cost-table tr:nth-child(even) td { background: var(--surface-alt, #f0f2f7); }

/* Article CTA block */
.article-cta {
  background: var(--surface-alt, #f0f2f7);
  border-radius: .75rem;
  padding: 2rem;
  margin-top: 3rem;
}
.article-cta h3 { margin: 0 0 .5rem; color: var(--navy); }
.article-cta p { margin: 0 0 1.25rem; color: var(--muted, #6b7a99); }
.article-cta .btn + .btn { margin-left: .75rem; }
@media (max-width: 480px) {
  .article-cta .btn + .btn { margin-left: 0; margin-top: .75rem; display: block; text-align: center; }
}
