:root {
  --navy: #0f2d4a;
  --navy2: #163a5c;
  --blue: #1d5fa8;
  --blue2: #3b7fd4;
  --gold: #c49a2a;
  --gold2: #f0c040;
  --white: #fff;
  --off: #f5f8fc;
  --light: #e8f1fa;
  --gray: #64748b;
  --gray2: #dde6ef;
  --text: #1a2638;
  --muted: #5a6e84;
  --green: #15803d;
  --red: #b91c1c;
}

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

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Noto Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 15px
}


/* ── NAV ── */

.nlogo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0
}

.nmark {
  width: 38px;
  height: 38px;
  background: var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
  color: var(--navy)
}

.ntext {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.3px
}

.ntext em {
  color: var(--gold2);
  font-style: normal
}

.nlinks {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 1px
}

.nlinks>li {
  position: relative
}

.nlinks>li>a {
  color: rgba(255, 255, 255, .82);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  padding: 7px 11px;
  border-radius: 6px;
  transition: all .2s;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap
}

.nlinks>li>a:hover,
.nlinks>li:hover>a {
  background: rgba(255, 255, 255, .09);
  color: #fff
}

.arr {
  font-size: 9px;
  opacity: .7;
  transition: transform .2s
}

.nlinks>li:hover .arr {
  transform: rotate(180deg)
}

.drop {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: #0d2440;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 10px;
  min-width: 230px;
  padding: 8px 0;
  box-shadow: 0 16px 48px rgba(0, 0, 0, .4);
  z-index: 100
}

.drop a {
  display: block;
  padding: 9px 18px;
  color: rgba(255, 255, 255, .75);
  font-size: 12.5px;
  font-weight: 500;
  text-decoration: none;
  transition: all .15s;
  border-left: 2px solid transparent
}

.drop a:hover {
  background: rgba(255, 255, 255, .07);
  color: #fff;
  border-left-color: var(--gold)
}

.drop-label {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, .35);
  padding: 10px 18px 4px;
  letter-spacing: 1px;
  text-transform: uppercase
}

.nlinks>li:hover .drop {
  display: block
}

.ncta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
  padding: 8px 16px !important;
  border-radius: 7px !important
}

.ncta:hover {
  background: var(--gold2) !important
}

.nhide {
  display: none
}

/* ── HERO ── */
.hero {
	min-height: 100vh;
	background: linear-gradient(148deg, #04111f 0%, #0b2236 45%, #163a5c 100%);
	display: flex;
	flex-direction: row;
	justify-content: center;
	padding: 110px 5% 72px;
	position: relative;
	overflow: hidden;
	flex-wrap: wrap;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 75% 50%, rgba(196, 154, 42, .07), transparent);
  pointer-events: none
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196, 154, 42, .3), transparent)
}

.hero-inner {
  max-width: 820px;
  position: relative;
  z-index: 1;
  width: 60%;
}

.hero-side {
  width: 40%;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(196, 154, 42, .13);
  border: 1px solid rgba(196, 154, 42, .3);
  color: var(--gold2);
  font-size: 10.5px;
  font-weight: 700;
  padding: 5px 13px;
  border-radius: 20px;
  margin-bottom: 22px;
  letter-spacing: .8px;
  text-transform: uppercase
}

.hero h1 {
	font-family: 'Noto Serif', serif;
	font-size: clamp(30px, 5vw, 56px);
	font-weight: 500;
	color: #fff;
	line-height: 1.1;
	margin-bottom: 6px;
}

.hero h1 .acc {
  color: var(--gold2)
}

.hero-sub {
  font-size: clamp(15px, 1.9vw, 19px);
  color: rgba(255, 255, 255, .55);
  font-weight: 300;
  margin-bottom: 14px;
  font-style: italic;
  line-height: 1.6
}

.hero-body {
  font-size: clamp(14px, 1.6vw, 17px);
  color: rgba(255, 255, 255, .7);
  margin-bottom: 34px;
  max-width: 680px;
  line-height: 1.75
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 44px
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 10px;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: all .2s;
  border: none;
  cursor: pointer;
  font-family: inherit
}

.btn-gold:hover {
  background: var(--gold2);
  transform: translateY(-1px)
}

.btn-out {
  border: 1.5px solid rgba(255, 255, 255, .32);
  color: #fff;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 10px;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: all .2s;
  background: transparent;
  cursor: pointer
}

.btn-out:hover {
  border-color: rgba(255, 255, 255, .65);
  background: rgba(255, 255, 255, .05)
}

.trust-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap
}

.trust-lbl {
  color: rgba(255, 255, 255, .4);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase
}

.flags {
  display: flex;
  gap: 6px;
  align-items: center
}

.flag {
  width: 26px;
  height: 18px;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, .14);
  display: inline-block;
  vertical-align: middle
}

/* ── STATS BAR ── */
.stats {
  background: #fff;
  box-shadow: 0 8px 44px rgba(15, 45, 74, .14);
  border-radius: 14px;
  margin: -28px 5% 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  z-index: 10;
  overflow: hidden
}

.stat {
  padding: 24px 16px;
  text-align: center;
  border-right: 1px solid var(--gray2)
}

.stat:last-child {
  border-right: none
}

.stat-n {
  font-size: 34px;
  font-weight: 800;
  color: var(--navy);
  font-family: 'Noto Serif', serif;
  line-height: 1;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  justify-content: center
}

.stat-n sup {
  font-size: 18px;
  margin-left: 1px
}

.stat-l {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.4
}

/* ── SHARED ── */
section {
  padding: 86px 5%
}

.slabel {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px
}

.slabel::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--blue)
}

.sh {
  font-family: 'Noto Serif', serif;
  font-size: clamp(24px, 3.6vw, 40px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 12px
}

.ssub {
  font-size: 15.5px;
  color: var(--muted);
  max-width: 600px;
  line-height: 1.75;
  margin-bottom: 44px
}

.btn-navy {
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 10px;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: all .2s;
  border: none;
  cursor: pointer;
  font-family: inherit
}

.btn-navy:hover {
  background: var(--navy2);
  transform: translateY(-1px)
}

.btn-blue {
  background: var(--blue);
  color: #fff;
  font-weight: 600;
  padding: 11px 22px;
  border-radius: 10px;
  font-size: 13px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all .2s;
  border: none;
  cursor: pointer
}

.btn-blue:hover {
  background: var(--blue2)
}

/* ── PROGRAMS ── */
.programs {
  background: var(--off)
}

.prog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

.pcard {
  background: #fff;
  border: 1px solid var(--gray2);
  border-radius: 14px;
  overflow: hidden;
  transition: all .3s;
  cursor: pointer;
  display: flex;
  flex-direction: column
}

.pcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 44px rgba(15, 45, 74, .14);
  border-color: var(--blue2)
}

.pcard-hot {
  border: 2px solid var(--gold);
  position: relative
}

.hot-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--gold);
  color: var(--navy);
  font-size: 9px;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 20px;
  letter-spacing: .8px;
  text-transform: uppercase;
  z-index: 1
}

.phead {
  background: var(--navy);
  padding: 26px 22px 20px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0
}

.phead::after {
  content: '';
  position: absolute;
  right: -12px;
  top: -12px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .04)
}

.pprov {
  display: inline-block;
  background: rgba(196, 154, 42, .18);
  color: var(--gold2);
  font-size: 9.5px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
  letter-spacing: .8px;
  text-transform: uppercase;
  margin-bottom: 9px
}

.pflag {
  font-size: 22px;
  margin-bottom: 8px;
  display: block
}

.ptitle {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 7px;
  line-height: 1.3
}

.psub {
  font-size: 12.5px;
  color: rgba(255, 255, 255, .58);
  line-height: 1.55
}

.pbody {
  padding: 18px 22px;
  flex: 1;
  display: flex;
  flex-direction: column
}

.plist {
  list-style: none;
  flex: 1
}

.plist li {
  font-size: 12.5px;
  color: var(--muted);
  padding: 5px 0;
  border-bottom: 1px solid var(--gray2);
  display: flex;
  align-items: flex-start;
  gap: 7px;
  line-height: 1.5
}

.plist li:last-child {
  border-bottom: none
}

.plist li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 2px
}

.plink {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--blue);
  font-weight: 600;
  font-size: 12.5px;
  text-decoration: none;
  margin-top: 14px;
  transition: gap .2s
}

.plink:hover {
  gap: 9px
}

/* ── BUSINESS SERVICES ── */
.bizsvcs {
  background: #fff
}

.bsvc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 44px
}

.bsvc {
  border: 1px solid var(--gray2);
  border-radius: 14px;
  padding: 26px 22px;
  transition: all .25s
}

.bsvc:hover {
  border-color: var(--blue2);
  box-shadow: 0 2px 18px rgba(15, 45, 74, .09)
}

.bsvc-icon {
  font-size: 30px;
  margin-bottom: 14px
}

.bsvc-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px
}

.bsvc-desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 14px
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px
}

.tag {
  font-size: 10.5px;
  background: var(--light);
  color: var(--blue);
  padding: 3px 9px;
  border-radius: 20px;
  font-weight: 600
}

.consult-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px
}

.ccard {
  background: var(--off);
  border-radius: 12px;
  padding: 20px 18px;
  border: 1px solid var(--gray2)
}

.ccard h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 7px
}

.ccard p {
  font-size: 12.5px;
  color: var(--muted);
  margin-bottom: 10px;
  line-height: 1.6
}

.clist {
  list-style: none
}

.clist li {
  font-size: 12px;
  color: var(--muted);
  padding: 3px 0;
  display: flex;
  align-items: center;
  gap: 6px
}

.clist li::before {
  content: '→';
  color: var(--blue);
  font-size: 10px;
  font-weight: 700
}

/* ── 3 PRIMARY PILLARS ── */
.pillars {
  background: var(--off)
}

.p3-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

.p3 {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 18px rgba(15, 45, 74, .09);
  transition: all .3s;
  border: 1px solid var(--gray2)
}

.p3:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 44px rgba(15, 45, 74, .14)
}

.p3-top {
  background: var(--navy);
  padding: 28px 24px 20px;
  position: relative;
  overflow: hidden
}

.p3-top::after {
  content: '';
  position: absolute;
  right: -12px;
  top: -12px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .04)
}

.p3-icon {
  width: 48px;
  height: 48px;
  background: var(--gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  margin-bottom: 14px
}

.p3-badge {
  display: inline-block;
  background: rgba(196, 154, 42, .2);
  color: var(--gold2);
  font-size: 9px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  letter-spacing: .8px;
  text-transform: uppercase;
  margin-bottom: 9px
}

.p3-title {
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 7px
}

.p3-sub {
  font-size: 12.5px;
  color: rgba(255, 255, 255, .58);
  line-height: 1.6
}

.p3-body {
  padding: 20px 24px
}

.p3-list {
  list-style: none
}

.p3-list li {
  font-size: 12.5px;
  color: var(--muted);
  padding: 5px 0;
  border-bottom: 1px solid var(--gray2);
  display: flex;
  align-items: center;
  gap: 7px
}

.p3-list li:last-child {
  border-bottom: none
}

.p3-list li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  font-size: 11px
}

.p3-cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--blue);
  font-weight: 600;
  font-size: 12.5px;
  text-decoration: none;
  margin-top: 14px;
  transition: gap .2s
}

.p3-cta:hover {
  gap: 9px
}

/* ── SETTLEMENT GRID ── */
.settle {
  background: #fff
}

.s9 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px
}

.scard {
  background: #fff;
  border: 1px solid var(--gray2);
  border-radius: 12px;
  padding: 20px 18px;
  transition: all .25s;
  cursor: pointer
}

.scard:hover {
  border-color: var(--blue2);
  box-shadow: 0 2px 18px rgba(15, 45, 74, .09);
  transform: translateY(-2px)
}

.scard-icon {
  font-size: 22px;
  margin-bottom: 10px
}

.scard-name {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px
}

.scard-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6
}

.imm-strip {
  background: var(--light);
  border-radius: 13px;
  border: 1px solid var(--gray2);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px
}

.imm-badge {
  display: inline-block;
  background: rgba(100, 116, 139, .15);
  color: var(--gray);
  font-size: 9.5px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
  letter-spacing: .8px;
  text-transform: uppercase;
  margin-bottom: 5px
}

/* ── WHY CANADA ── */
.whyca {
  background: var(--navy)
}

.whyca .slabel {
  color: var(--gold2)
}

.whyca .slabel::before {
  background: var(--gold)
}

.whyca .sh {
  color: #fff
}

.ca8 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px
}

.ca-item {
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 12px;
  padding: 20px 16px;
  transition: all .25s
}

.ca-item:hover {
  background: rgba(255, 255, 255, .09)
}

.ca-icon {
  font-size: 24px;
  margin-bottom: 11px
}

.ca-title {
  font-size: 13.5px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px
}

.ca-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, .52);
  line-height: 1.6
}

/* ── WHY WWS ── */
.wwhy {
  background: #fff
}

.w6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

.wcard {
  border: 1px solid var(--gray2);
  border-radius: 12px;
  padding: 24px 20px;
  transition: all .25s
}

.wcard:hover {
  border-color: var(--blue2);
  box-shadow: 0 2px 18px rgba(15, 45, 74, .09)
}

.wnum {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 1px;
  margin-bottom: 11px
}

.wtitle {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px
}

.wdesc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.75
}

/* ── PROCESS ── */
.process {
  background: var(--off)
}

.proc5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative
}

.proc5::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--gray2);
  z-index: 0
}

.pstep {
  text-align: center;
  padding: 0 8px;
  position: relative;
  z-index: 1
}

.pnum {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 2px 18px rgba(15, 45, 74, .09)
}

.pt {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.4
}

.pd {
  font-size: 11.5px;
  color: var(--muted);
  line-height: 1.6
}

/* ── TESTIMONIALS ── */
.testi {
  background: #fff
}

.t3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

.tcard {
  border: 1px solid var(--gray2);
  border-radius: 14px;
  padding: 24px 20px;
  transition: all .25s
}

.tcard:hover {
  box-shadow: 0 2px 18px rgba(15, 45, 74, .09)
}

.tstars {
  color: var(--gold);
  font-size: 12px;
  margin-bottom: 6px
}

.tq {
  font-size: 40px;
  color: var(--gold2);
  line-height: 1;
  margin-bottom: 10px;
  font-family: serif
}

.ttext {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 18px
}

.tauth {
  display: flex;
  align-items: center;
  gap: 10px
}

.tav {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  flex-shrink: 0
}

.tname {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--navy)
}

.tloc {
  font-size: 11px;
  color: var(--muted)
}

/* ── PARTNER ── */
.partner {
  background: var(--light);
  padding: 72px 5%
}

.p4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px
}

.pcrd {
  background: #fff;
  border: 1px solid var(--gray2);
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
  transition: all .25s
}

.pcrd:hover {
  border-color: var(--blue2);
  box-shadow: 0 2px 18px rgba(15, 45, 74, .09)
}

.pi {
  font-size: 24px;
  margin-bottom: 9px
}

.pt2 {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px
}

.pd2 {
  font-size: 11.5px;
  color: var(--muted);
  line-height: 1.6
}

/* ── RESOURCES STRIP ── */
.resources {
  background: var(--off);
  padding: 64px 5%
}

.res-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

.res-card {
  background: #fff;
  border: 1px solid var(--gray2);
  border-radius: 12px;
  padding: 22px 20px;
  transition: all .25s;
  display: flex;
  align-items: flex-start;
  gap: 14px
}

.res-card:hover {
  border-color: var(--blue2);
  box-shadow: 0 2px 18px rgba(15, 45, 74, .09)
}

.res-icon {
  font-size: 26px;
  flex-shrink: 0
}

.res-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px
}

.res-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 10px
}

.res-link {
  font-size: 12px;
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px
}

.res-link:hover {
  gap: 7px
}

/* ── DISCLAIMER ── */
.disc {
  background: #fffbeb;
  border-top: 2px solid var(--gold2);
  padding: 14px 5%;
  display: flex;
  gap: 11px;
  align-items: flex-start
}

.disc p {
  font-size: 11px;
  color: #78530a;
  line-height: 1.65
}

.disc strong {
  font-weight: 700
}

/* ── CTA BANNER ── */
.ctaban {
  background: var(--gold);
  padding: 58px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  flex-wrap: wrap
}

.ctaban h2 {
  font-family: 'Noto Serif', serif;
  font-size: clamp(20px, 3vw, 34px);
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 5px
}

.ctaban p {
  font-size: 14.5px;
  color: rgba(15, 45, 74, .68)
}

/* ── CONTACT ── */
.contact {
  background: var(--navy)
}

.contact .slabel {
  color: var(--gold2)
}

.contact .slabel::before {
  background: var(--gold)
}

.contact .sh {
  color: #fff
}

.cin {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: start
}

.cinfo p {
  color: rgba(255, 255, 255, .66);
  font-size: 14.5px;
  line-height: 1.78;
  margin-bottom: 26px
}

.cdets {
  display: flex;
  flex-direction: column;
  gap: 13px
}

.cdet {
  display: flex;
  align-items: center;
  gap: 12px
}

.cicon {
  width: 38px;
  height: 38px;
  background: rgba(196, 154, 42, .14);
  border: 1px solid rgba(196, 154, 42, .28);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0
}

.clbl {
  font-size: 9.5px;
  color: rgba(255, 255, 255, .38);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px
}

.cval {
  font-size: 13.5px;
  color: #fff;
  font-weight: 600
}

.cform {
  background: #fff;
  border-radius: 14px;
  padding: 32px 28px
}

.ft {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px
}

.fs {
  font-size: 12.5px;
  color: var(--muted);
  margin-bottom: 22px
}

.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px
}

.fg {
  margin-bottom: 12px
}

.fg label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 5px
}

.fg input,
.fg select,
.fg textarea {
  width: 100%;
  padding: 10px 13px;
  border: 1.5px solid var(--gray2);
  border-radius: 8px;
  font-size: 13px;
  font-family: 'Noto Sans', sans-serif;
  color: var(--text);
  background: #fff;
  transition: border-color .2s;
  outline: none;
  -webkit-appearance: none;
  appearance: none
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--blue)
}

.fg textarea {
  resize: vertical;
  min-height: 88px
}

.fdn {
  font-size: 10px;
  color: var(--muted);
  margin-top: 11px;
  text-align: center;
  line-height: 1.6
}

.fsbtn {
  width: 100%;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 13px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Noto Sans', sans-serif;
  transition: background .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px
}

.fsbtn:hover {
  background: var(--blue)
}

/* ── ABOUT ── */
.about {
  background: var(--off)
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center
}

.about-img {
  background: var(--navy);
  border-radius: 16px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  position: relative;
  overflow: hidden
}

.about-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(196, 154, 42, .1), transparent)
}

.about-tag {
  display: inline-block;
  background: var(--light);
  color: var(--blue);
  font-size: 10.5px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: .8px;
  text-transform: uppercase;
  margin-bottom: 14px
}

.about-vals {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px
}

.aval {
  display: flex;
  gap: 12px;
  align-items: flex-start
}

.aval-dot {
  width: 32px;
  height: 32px;
  background: var(--light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px
}

.aval-title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px
}

.aval-desc {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.6
}

/* ── FOOTER ── */
footer {
  background: #060e1c;
  padding: 52px 5% 24px;
  border-top: 1px solid rgba(255, 255, 255, .06)
}

.ftop {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 40px
}

.flogo {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  margin-bottom: 12px
}

.fmark {
  width: 32px;
  height: 32px;
  background: var(--gold);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
  color: var(--navy)
}

.ftext {
  font-size: 14.5px;
  font-weight: 700;
  color: #fff
}

.ftext em {
  color: var(--gold2);
  font-style: normal
}

.ftagline {
  font-size: 12px;
  color: rgba(255, 255, 255, .35);
  line-height: 1.75;
  margin-bottom: 16px;
  max-width: 260px
}

.fsoc {
  display: flex;
  gap: 7px
}

.soc {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .4);
  font-size: 11px;
  text-decoration: none;
  transition: all .2s
}

.soc:hover {
  border-color: var(--gold);
  color: var(--gold)
}

.fcol h4 {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: .6px;
  text-transform: uppercase
}

.fcol ul {
  list-style: none
}

.fcol ul li {
  margin-bottom: 8px
}

.fcol ul li a {
  font-size: 12px;
  color: rgba(255, 255, 255, .42);
  text-decoration: none;
  transition: color .2s
}

.fcol ul li a:hover {
  color: var(--gold2)
}

.fbot {
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap
}

.fcopy {
  font-size: 11px;
  color: rgba(255, 255, 255, .25)
}

.fdisc {
  font-size: 10px;
  color: rgba(255, 255, 255, .22);
  max-width: 640px;
  line-height: 1.7
}

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

  .prog-grid,
  .p3-grid,
  .ftop,
  .about-inner {
    grid-template-columns: repeat(2, 1fr)
  }

  .ca8 {
    grid-template-columns: repeat(2, 1fr)
  }

  .proc5 {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px
  }

  .proc5::before {
    display: none
  }

  .stats {
    grid-template-columns: repeat(2, 1fr)
  }

  .ftop {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:780px) {

  .nav-btns.ps-lg-4 {
    text-align: center;
    padding: 0 0 10px;
  }

  .hero {
    padding: 40px 5% 30px;
  }

  .hero-inner {
    width: 100%;
  }

  .hero-side {
    width: 100%;
    display:none;
  }

  .prog-grid,
  .p3-grid,
  .bsvc-grid,
  .s9,
  .w6,
  .t3,
  .p4,
  .ca8,
  .cin,
  .consult-grid,
  .res-grid,
  .about-inner {
    grid-template-columns: 1fr
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
    margin: -16px 3% 0
  }

  .stat {
    border-right: none;
    border-bottom: 1px solid var(--gray2)
  }

  .nhide,
  .nlinks li:not(:last-child) {
    display: none
  }

  .hero-btns {
    flex-direction: column;
    max-width: 240px
  }

  .frow {
    grid-template-columns: 1fr
  }

  .proc5 {
    grid-template-columns: 1fr 1fr
  }

  .ftop {
    grid-template-columns: 1fr
  }

  section {
    padding: 60px 4%
  }

  .ctaban {
    flex-direction: column;
    text-align: center
  }
}