/* === ontario.html === */

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

:root {
  --cream: #fffcf5;
  --cream2: #f5f0e6;
  --cream3: #ede8dc;
  --red: #a81f17;
  --red-h: #a81f17;
  --red-pale: #fdecea;
  --navy: #1a2332;
  --navy2: #253347;
  --green: #2d6a4f;
  --gbg: #eaf4ee;
  --amber: #b5651d;
  --abg: #fdf3e3;
  --blue: #1e5f8c;
  --bbg: #e8f2fb;
  --purple: #5b21b6;
  --pbg: #ede9fe;
  --border: #d5cfbf;
  --muted: #7a7060;
  --font-h: "Fraunces", Georgia, serif;
  --font-b: "DM Sans", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--navy);
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* NAV */
nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 6%;
}

.nbrand {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  color: var(--navy);
}

.nbrand-mark {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: block;
  object-fit: contain;
}

.nbrand-wordmark {
  margin: 0;
  font-family: var(--font-h);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--red-h);
  max-width: min(140px, 48vw);
}

.nname {
  font-family: var(--font-h);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.nlinks {
  display: flex;
  gap: 1.5rem;
}

.nlinks a {
  color: var(--navy);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 400;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s;
}

.nlinks a:hover {
  border-color: var(--navy);
}

.ncta {
  background: var(--red);
  color: #fff;
  padding: 9px 20px;
  border-radius: 6px;
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid var(--red);
  transition: all 0.15s;
}

.ncta:hover {
  background: var(--red-h);
}

/* BC */
.bc {
  background: var(--cream2);
  border-bottom: 1px solid var(--border);
  padding: 10px 6%;
}

.bc-in {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--muted);
  flex-wrap: wrap;
}

.bc-in a {
  color: var(--muted);
  text-decoration: none;
}

.bc-in a:hover {
  color: var(--navy);
}

.bc-in span {
  color: var(--border);
}

/* HERO */
.hero {
  background: var(--navy);
  color: #fff;
  padding: 0;
  overflow: hidden;
  position: relative;
}

.hero-map-bg {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 42%;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='https://www.w3.org/2000/svg' width='400' height='600' viewBox='0 0 400 600'%3E%3Cpath d='M50 100 L200 50 L350 80 L380 200 L320 350 L200 400 L80 350 L40 220 Z' fill='none' stroke='white' stroke-width='1'/%3E%3C/svg%3E");
  background-size: cover;
}

.hero-stripe {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 38%;
  background: linear-gradient(
    135deg,
    rgba(168, 31, 23, 0.08) 0%,
    transparent 60%
  );
  border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-in {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: start;
  padding: 60px 6% 0;
  position: relative;
  z-index: 1;
}

.hero-flag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.2rem;
}

.hero-flag-icon {
  font-size: 1.1rem;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 0.8rem;
  display: block;
}

h1 {
  font-family: var(--font-h);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.035em;
  margin-bottom: 0.8rem;
}

h1 em {
  font-style: italic;
  color: #f4a261;
}

.hero-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  font-weight: 300;
  max-width: 500px;
  margin-bottom: 2rem;
}

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

.btn-main {
  background: var(--red);
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid var(--red);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.15s;
}

.btn-main:hover {
  background: var(--red-h);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 400;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.15s;
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.5);
}

/* ONTARIO CARD */
.on-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-bottom: none;
  border-radius: 14px 14px 14px 14px;
  overflow: hidden;
  align-self: start;
}

.on-card-head {
  background: rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.on-card-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.on-live {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.65rem;
  font-weight: 600;
  color: #4ade80;
}

.on-live::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.on-body {
  padding: 16px 18px;
}

.on-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 10px;
}

.on-stat {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  padding: 10px 12px;
}

.on-stat-n {
  font-family: var(--font-h);
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.on-stat-l {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 2px;
}

.on-pathways {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.on-pathway {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 7px;
}

.on-pathway-l {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
}

.on-pathway-badge {
  font-size: 0.6rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 100px;
}

.pb-open {
  background: rgba(74, 222, 128, 0.15);
  color: #4ade80;
}

.pb-ita {
  background: rgba(244, 162, 97, 0.15);
  color: #f4a261;
}

.pb-review {
  background: rgba(129, 140, 248, 0.15);
  color: #818cf8;
}

/* TRUST BAR */
.trust {
  background: var(--cream2);
  border-top: 2px solid var(--navy);
  border-bottom: 2px solid var(--navy);
  padding: 18px 6%;
}

.trust-in {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.ti {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--muted);
}

.ti strong {
  color: var(--navy);
  font-weight: 600;
}

.tsep {
  width: 1px;
  height: 20px;
  background: var(--border);
}

/* SECTION COMMONS */
.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.sh {
  font-family: var(--font-h);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 0.8rem;
}

.sp {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 300;
}

.sec {
  padding: 80px 6%;
}

.sec-in {
  max-width: 1280px;
  margin: 0 auto;
}

/* WHAT IS OINP */
.oinp {
  padding: 80px 6%;
  background: var(--cream);
  border-bottom: 2px solid var(--navy);
}

.oinp-in {
  max-width: 1280px;
  margin: 0 auto;
  gap: 5rem;
  align-items: start;
}

.oinp-intro p {
  margin-bottom: 1rem;
}

.oinp-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--abg);
  border: 1px solid #e8c585;
  color: var(--amber);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 13px;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.alert-box {
  background: var(--red-pale);
  border: 1.5px solid #f0b0a8;
  border-radius: 10px;
  padding: 16px 18px;
  font-size: 0.82rem;
  color: var(--red);
  line-height: 1.6;
  margin-top: 1rem;
  display: flex;
  gap: 10px;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.alert-box strong {
  color: #8b1a1a;
}

/* OINP STREAMS */
.streams {
  padding: 80px 6%;
  background: var(--cream2);
  border-top: 2px solid var(--navy);
}

.streams-in {
  max-width: 1280px;
  margin: 0 auto;
}

.streams-intro {
  display: grid;
  align-items: end;
  margin-bottom: 3rem;
}

.stream-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.stream-card {
  background: var(--cream);
  border: 2px solid var(--navy);
  border-radius: 14px;
  overflow: hidden;
  transition:
    transform 0.15s,
    box-shadow 0.15s;
}

.stream-card:hover {
  transform: translateY(-3px);
  box-shadow: 5px 5px 0 var(--navy);
}

.stream-head {
  padding: 16px 20px;
  border-bottom: 2px solid var(--navy);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.stream-emoji {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.stream-title {
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 3px;
}

.stream-sub {
  font-size: 0.72rem;
  color: var(--muted);
}

.stream-status {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 100px;
  flex-shrink: 0;
  white-space: nowrap;
  align-self: flex-start;
}

.ss-open {
  background: var(--gbg);
  color: var(--green);
  border: 1px solid #90d4b0;
}

.ss-limited {
  background: var(--abg);
  color: var(--amber);
  border: 1px solid #e8c585;
}

.ss-paused {
  background: var(--cream2);
  color: var(--muted);
  border: 1px solid var(--border);
}

.stream-body {
  padding: 16px 20px;
}

.stream-desc {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 12px;
}

.stream-reqs {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.stream-req {
  font-size: 0.75rem;
  color: var(--navy);
  display: flex;
  align-items: flex-start;
  gap: 7px;
  line-height: 1.4;
}

.stream-req::before {
  content: "\f061";
  font-family: "Font Awesome 6 Free", sans-serif;
  font-weight: 900;
  -webkit-font-smoothing: antialiased;
  color: var(--red);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.stream-cta {
  padding: 12px 20px;
  border-top: 1px solid var(--border);
}

.stream-link {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--red);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.stream-link:hover {
  text-decoration: underline;
}

/* URGENCY */
.urgency {
  background: var(--red);
  color: #fff;
  padding: 50px 6%;
  border-top: 2px solid #a81f17;
  border-bottom: 2px solid #a81f17;
}

.urg-in {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}

.urg-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.urg-h {
  font-family: var(--font-h);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 0.7rem;
}

.urg-p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  max-width: 560px;
}

.btn-urgency {
  background: #fff;
  color: var(--red);
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid #fff;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.15s;
  flex-shrink: 0;
}

.btn-urgency:hover {
  background: transparent;
  color: #fff;
}

/* WHY ONTARIO */
.why {
  padding: 80px 6%;
  background: var(--cream);
  border-top: 2px solid var(--navy);
}

.why-in {
  max-width: 1280px;
  margin: 0 auto;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 2.5rem;
}

.why-card {
  background: var(--cream);
  border: 2px solid var(--navy);
  border-radius: 12px;
  padding: 22px 20px;
  transition:
    transform 0.15s,
    box-shadow 0.15s;
}

.why-card:hover {
  transform: translateY(-3px);
  box-shadow: 5px 5px 0 var(--navy);
}

.why-emoji {
  font-size: 1.5rem;
  margin-bottom: 10px;
  display: block;
}

.why-title {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.why-desc {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.65;
}

.why-stat {
  font-family: var(--font-h);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--red);
  margin-top: 8px;
}

/* CITIES */
.cities {
  padding: 80px 6%;
  background: var(--cream2);
  border-top: 2px solid var(--navy);
}

.cities-in {
  max-width: 1280px;
  margin: 0 auto;
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.city-card {
  position: relative;
  background: var(--cream);
  border: 2px solid var(--navy);
  border-radius: 12px;
  padding: 18px 16px;
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.15s,
    box-shadow 0.15s;
  display: block;
}

a.city-card:hover {
  transform: translateY(-3px);
  box-shadow: 5px 5px 0 var(--navy);
}

div.city-card:hover {
  transform: none;
  box-shadow: none;
}

.city-card-soon-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--abg);
  border: 1px solid var(--amber);
  border-radius: 4px;
  padding: 3px 7px;
  line-height: 1.2;
}

.city-emoji {
  font-size: 1.3rem;
  margin-bottom: 8px;
  display: block;
}

.city-name {
  font-family: var(--font-h);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.city-pop {
  font-size: 0.72rem;
  color: var(--muted);
  margin-bottom: 6px;
}

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

.city-tag {
  font-size: 0.62rem;
  background: var(--cream2);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2px 7px;
  color: var(--muted);
}

/* UNIVERSITIES */
.unis {
  padding: 80px 6%;
  background: var(--cream);
  border-top: 2px solid var(--navy);
}

.unis-in {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  align-items: start;
}

.uni-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 1.5rem;
}

.uni-item {
  background: var(--cream);
  border: 2px solid var(--navy);
  border-radius: 10px;
  padding: 16px 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition:
    transform 0.15s,
    box-shadow 0.15s;
}

.uni-item:hover {
  transform: translateX(4px);
  box-shadow: 4px 4px 0 var(--navy);
}

.uni-emoji {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.uni-name {
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.uni-city {
  font-size: 0.72rem;
  color: var(--muted);
}

.uni-tags {
  display: flex;
  gap: 5px;
  margin-top: 6px;
  flex-wrap: wrap;
}

.uni-tag {
  font-size: 0.62rem;
  background: var(--bbg);
  color: var(--blue);
  border: 1px solid #b8d8f0;
  border-radius: 4px;
  padding: 2px 7px;
}

.uni-right {
}

.study-note {
  background: var(--pbg);
  border: 1.5px solid var(--plight, #c4b5fd);
  border-radius: 12px;
  padding: 20px 22px;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.study-note-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--purple);
  margin-bottom: 6px;
}

.study-note-desc {
  font-size: 0.8rem;
  color: #3b1d8e;
  line-height: 1.65;
}

.pathway-chain {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 2px solid var(--navy);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 1rem;
}

.pc-step {
  padding: 14px 18px;
  border-bottom: 1.5px solid var(--navy);
  background: var(--cream);
  display: flex;
  align-items: center;
  gap: 12px;
}

.pc-step:last-child {
  border-bottom: none;
}

.pc-n {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-h);
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pc-text {
  font-size: 0.8rem;
  font-weight: 500;
}

.pc-sub {
  font-size: 0.72rem;
  color: var(--muted);
}

.pc-arrow {
  color: var(--border);
  font-size: 0.8rem;
  margin-left: auto;
}

/* INDUSTRIES */
.industries {
  padding: 80px 6%;
  background: var(--navy);
  color: #fff;
  border-top: 2px solid var(--cream3);
}

.ind-in {
  max-width: 1280px;
  margin: 0 auto;
}

.ind-in .eyebrow {
  color: rgba(255, 255, 255, 0.35);
}

.ind-in .sh {
  color: #fff;
}

.ind-in .sp {
  color: rgba(255, 255, 255, 0.55);
}

.ind-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 2.5rem;
}

.ind-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 22px 20px;
  transition: background 0.15s;
}

.ind-card:hover {
  background: rgba(255, 255, 255, 0.08);
}

.ind-emoji {
  font-size: 1.4rem;
  margin-bottom: 10px;
  display: block;
}

.ind-title {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.ind-desc {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.65;
}

.ind-noc {
  font-size: 0.68rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 2px 8px;
  display: inline-block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-family: monospace;
}

/* PROCESSING TIMES */
.times {
  padding: 80px 6%;
  background: var(--cream2);
  border-top: 2px solid var(--navy);
}

.times-in {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.time-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.time-card {
  background: var(--cream);
  border: 2px solid var(--navy);
  border-radius: 12px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition:
    transform 0.15s,
    box-shadow 0.15s;
}

.time-card:hover {
  transform: translateX(4px);
  box-shadow: 4px 4px 0 var(--navy);
}

.time-label {
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 2px;
}

.time-sub {
  font-size: 0.72rem;
  color: var(--muted);
}

.time-val {
  font-family: var(--font-h);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  text-align: right;
}

.time-unit {
  font-size: 0.7rem;
  color: var(--muted);
  font-family: var(--font-b);
}

.times-note {
  background: var(--abg);
  border: 1px solid #e8c585;
  border-radius: 10px;
  padding: 16px 18px;
  font-size: 0.8rem;
  color: #7a5c1e;
  line-height: 1.6;
  margin-top: 1.5rem;
}

/* MISTAKES */
.mistakes {
  padding: 80px 6%;
  background: var(--cream);
  border-top: 2px solid var(--navy);
}

.mistakes-in {
  max-width: 1280px;
  margin: 0 auto;
}

.mistakes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 2.5rem;
}

.mk-card {
  background: var(--cream);
  border: 2px solid var(--navy);
  border-radius: 12px;
  overflow: hidden;
}

.mk-head {
  padding: 14px 18px;
  background: var(--red-pale);
  border-bottom: 1.5px solid #f0b0a8;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mk-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mk-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--red);
}

.mk-body {
  padding: 14px 18px;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.65;
}

.mk-fix {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-top: 8px;
  font-size: 0.75rem;
  color: var(--green);
  font-weight: 500;
}

.mk-fix::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free", sans-serif;
  font-weight: 900;
  flex-shrink: 0;
}

/* TESTIMONIALS */
.testi {
  padding: 80px 6%;
  background: var(--navy);
  border-top: 2px solid var(--cream3);
}

.testi-in {
  max-width: 1280px;
  margin: 0 auto;
}

.testi-in .eyebrow {
  color: rgba(255, 255, 255, 0.35);
}

.tgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 2.5rem;
}

.tc {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 24px 20px;
  transition: background 0.15s;
}

.tc:hover {
  background: rgba(255, 255, 255, 0.08);
}

.tc-stars {
  color: #f4a261;
  font-size: 0.88rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.tc-q {
  font-family: var(--font-h);
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 16px;
  font-style: italic;
}

.tc-author {
  display: flex;
  align-items: center;
  gap: 9px;
}

.tc-av {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
}

.tc-name {
  font-size: 0.8rem;
  font-weight: 500;
  color: #fff;
}

.tc-role {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
}

.tc-badge {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 100px;
  margin-top: 8px;
}

.tb-on {
  background: rgba(168, 31, 23, 0.15);
  color: #ff8080;
}

.tb-sp {
  background: rgba(79, 134, 198, 0.15);
  color: #7eb3e8;
}

.tb-ee {
  background: rgba(45, 106, 79, 0.15);
  color: #70c9a0;
}

/* FAQ */
.faq {
  padding: 80px 6%;
  background: var(--cream);
  border-top: 2px solid var(--navy);
}

.faq-in {
  max-width: 860px;
  margin: 0 auto;
}

.faq-list {
  margin-top: 2.5rem;
}

.faq-item {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  margin-bottom: 9px;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 16px 20px;
  text-align: left;
  font-family: var(--font-b);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  transition: background 0.15s;
}

.faq-q:hover {
  background: var(--cream2);
}

.faq-icon {
  font-size: 1rem;
  color: var(--muted);
  transition: transform 0.25s;
  flex-shrink: 0;
}

.faq-a {
  display: none;
  padding: 0 20px 16px;
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.75;
}

.faq-item.open .faq-a {
  display: block;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  color: var(--red);
}

/* OTHER PROVINCES */
.provinces {
  padding: 80px 6%;
  background: var(--cream2);
  border-top: 2px solid var(--navy);
}

.prov-in {
  max-width: 1280px;
  margin: 0 auto;
}

.prov-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.prov-card {
  background: var(--cream);
  border: 2px solid var(--navy);
  border-radius: 12px;
  padding: 18px 16px;
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.15s,
    box-shadow 0.15s;
  display: block;
}

.prov-card:hover {
  transform: translateY(-3px);
  box-shadow: 5px 5px 0 var(--navy);
}

.prov-card--soon {
  cursor: not-allowed;
}

.prov-card--soon:hover {
  transform: none;
  box-shadow: none;
}

.coming-soon-badge {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--abg);
  color: var(--amber);
  border: 1px solid var(--amber);
  margin-bottom: 8px;
  font-family: var(--font-b);
}

.prov-emoji {
  font-size: 1.3rem;
  margin-bottom: 6px;
  display: block;
}

.prov-name {
  font-family: var(--font-h);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 3px;
}

.prov-pnp {
  font-size: 0.7rem;
  color: var(--muted);
}

/* STICKY */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--red);
  border-top: 2px solid #a81f17;
  padding: 14px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  transform: translateY(100%);
  transition: transform 0.3s;
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-text {
  font-size: 0.88rem;
  font-weight: 500;
  color: #fff;
}

.sticky-text span {
  opacity: 0.65;
  font-weight: 300;
}

.sticky-btns {
  display: flex;
  gap: 10px;
}

.sticky-btn {
  padding: 9px 20px;
  border-radius: 6px;
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.15s;
}

.sticky-btn.white {
  background: #fff;
  color: var(--red);
}

.sticky-btn.outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.sticky-btn.outline:hover {
  border-color: #fff;
}

/* FINAL CTA */
.fcta {
  background: var(--red);
  color: #fff;
  padding: 80px 6%;
  text-align: center;
  border-top: 2px solid #a81f17;
}

.fcta-in {
  max-width: 640px;
  margin: 0 auto;
}

.fcta h2 {
  font-family: var(--font-h);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 0.8rem;
}

.fcta p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2rem;
  line-height: 1.75;
}

.btn-white {
  background: #fff;
  color: var(--red);
  padding: 15px 32px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.15s;
}

.btn-white:hover {
  background: transparent;
  color: #fff;
}

.fcta-sub {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 12px;
}

.fcta-incl {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}

.fcta-i {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  gap: 4px;
}

.fcta-i::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free", sans-serif;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.65);
}

/* FOOTER */
footer {
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 30px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.fb {
  font-family: var(--font-h);
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
}

.flinks {
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
}

.flinks a {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
}

.flinks a:hover {
  color: #fff;
}

.fnote {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.25);
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.55s,
    transform 0.55s;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

@media (max-width: 1200px) {
  .streams-intro {
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: stretch;
    margin-bottom: 2rem;
  }

  .stream-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 960px) {
  .hero-in,
  .oinp-in,
  .streams-intro,
  .unis-in,
  .times-in {
    grid-template-columns: 1fr;
  }

  .on-card {
    display: none;
  }

  .stream-grid,
  .why-grid,
  .mistakes-grid,
  .tgrid,
  .ind-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cities-grid,
  .prov-grid {
    grid-template-columns: 1fr 1fr;
  }

  .urg-in {
    grid-template-columns: 1fr;
  }

  .nlinks {
    display: none;
  }
}

@media (max-width: 600px) {
  .stream-grid,
  .why-grid,
  .mistakes-grid,
  .tgrid,
  .ind-grid,
  .cities-grid,
  .prov-grid {
    grid-template-columns: 1fr;
  }
}

#main-content.mockup-body .why-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

#main-content.mockup-body .mistakes-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

#main-content.mockup-body .prov-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

#main-content.mockup-body .cities-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

@media (max-width: 1100px) {
  #main-content.mockup-body .why-grid,
  #main-content.mockup-body .mistakes-grid,
  #main-content.mockup-body .prov-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  #main-content.mockup-body .cities-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 680px) {
  #main-content.mockup-body .why-grid,
  #main-content.mockup-body .mistakes-grid,
  #main-content.mockup-body .prov-grid,
  #main-content.mockup-body .cities-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ---- merged block ---- */

/* gnp:footer-css - shared site footer; injected by scripts/apply-mockup-footer.mjs when a page has no .foot-top rules */
footer {
  background: var(--navy);
  padding: 48px 6% 28px;
  color: rgba(255, 255, 255, 0.4);
}

.foot-top {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.fbrand {
  font-family: var(--font-h, Georgia, serif);
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  display: block;
  margin-bottom: 0.6rem;
}

.fbrand-sub {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.fsocial {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.fslink {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.15s;
}

.fslink:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.foot-col h4 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 0.8rem;
}

.foot-col a {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  margin-bottom: 0.4rem;
  transition: color 0.15s;
}

.foot-col a:hover {
  color: #fff;
}

.foot-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.72rem;
}

@media (max-width: 960px) {
  .foot-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .foot-top {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .foot-bottom {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

/* ---- merged block ---- */

@media (max-width: 960px) {
  nav .nbrand-wordmark,
  nav .nb-name {
    display: none !important;
  }
}

/* ---- merged block ---- */

/* gnp:trust-bar - layout only; does not add/delete markup */
.trust .trust-in,
.trust .ts-in {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 14px;
}

.trust .trust-item,
.trust .ti {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.8rem;
  color: var(--muted, #7a7060);
}

.trust .trust-item i,
.trust .ti i {
  flex-shrink: 0;
  color: var(--muted, #7a7060);
  opacity: 0.9;
}

.trust .trust-item strong,
.trust .ti strong {
  color: var(--navy, #1a2332);
  font-weight: 600;
}

.trust .trust-sep,
.trust .tsep {
  width: 1px;
  height: 22px;
  background: var(--border, #d5cfbf);
  flex-shrink: 0;
}

@media (max-width: 960px) {
  .trust .trust-in,
  .trust .ts-in {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .trust .trust-sep,
  .trust .tsep {
    display: none;
  }
}

@media (max-width: 640px) {
  .trust .trust-in,
  .trust .ts-in {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* ---- merged block ---- */

/* Marketing nav aligned with landing (.gnp-home nav in components/marketing/home/home.css). */

.mockup-body > nav.nav,
.mockup-root .mockup-body > nav.nav,
body > nav.nav,
.gnp-mockup-faq .mockup-body > nav.nav {
  position: sticky !important;
  top: 0 !important;
  z-index: 200 !important;
  background: #fffcf5 !important;
  box-sizing: border-box !important;
  margin: 0 !important;
  font-family: "DM Sans", system-ui, sans-serif !important;
  padding: 13px clamp(16px, 6%, 48px) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  height: auto !important;
  color: #1a2332 !important;
}

.mockup-body .nav a.nb,
.mockup-body nav.nav a.nb,
body > .nav a.nb,
.nav a.nb {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  min-width: 0 !important;
  text-decoration: none !important;
  color: #1a2332 !important;
}

.mockup-body .nav .nbrand-mark,
.mockup-body nav.nav .nbrand-mark,
.nav .nbrand-mark {
  flex-shrink: 0 !important;
  width: 28px !important;
  height: 28px !important;
  object-fit: contain !important;
  display: block !important;
}

.mockup-body .nav h2.nbrand-wordmark,
.mockup-body nav.nav h2.nbrand-wordmark,
.nav h2.nbrand-wordmark {
  margin: 0 !important;
  font-family: "Fraunces", Georgia, serif !important;
  font-size: 1.1rem !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
  line-height: 1.1 !important;
  color: #a81f17 !important;
  max-width: min(140px, 48vw) !important;
}

.mockup-body .nav .nb-name,
.nav .nb-name {
  font-family: "Fraunces", Georgia, serif !important;
  font-size: 1.1rem !important;
  font-weight: 800 !important;
  color: #a81f17 !important;
  letter-spacing: -0.02em !important;
}

.mockup-body .nav .nl,
.nav .nl {
  display: flex !important;
  align-items: center !important;
  gap: 1.5rem !important;
  flex-wrap: wrap !important;
}

.mockup-body .nav .nl a,
.nav .nl a {
  font-size: 0.85rem !important;
  font-weight: 400 !important;
  text-decoration: none !important;
  color: #1a2332 !important;
  padding-bottom: 2px !important;
  border-bottom: 2px solid transparent !important;
  transition:
    border-color 0.15s,
    color 0.15s !important;
}

.mockup-body .nav .nl a:hover,
.nav .nl a:hover {
  color: #1a2332 !important;
  border-bottom-color: #1a2332 !important;
}

.mockup-body .nav .nl a.active,
.nav .nl a.active {
  color: #1a2332 !important;
  font-weight: 600 !important;
  border-bottom-color: #1a2332 !important;
}

.mockup-body .nav a.nc,
.mockup-body nav.nav a.nc,
.nav a.nc {
  background: #a81f17 !important;
  color: #fff !important;
  padding: 9px 20px !important;
  border-radius: 6px !important;
  font-size: 0.86rem !important;
  font-weight: 600 !important;
  border: 2px solid #a81f17 !important;
  transition:
    background 0.15s,
    border-color 0.15s !important;
  font-family: "DM Sans", system-ui, sans-serif !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
}

.mockup-body .nav a.nc:hover,
.nav a.nc:hover {
  background: #a81f17 !important;
  border-color: #a81f17 !important;
  filter: brightness(1.05) !important;
}

/* ≤960px: match landing (.gnp-home home.css) - compact bar, safe-area, larger mark + CTA chevron */
@media (max-width: 960px) {
  .mockup-body > nav.nav,
  .mockup-root .mockup-body > nav.nav,
  body > nav.nav,
  .gnp-mockup-faq .mockup-body > nav.nav {
    padding-left: max(12px, 4vw) !important;
    padding-right: max(12px, 4vw) !important;
    padding-top: max(10px, env(safe-area-inset-top, 0px)) !important;
    padding-bottom: 13px !important;
  }

  .mockup-body .nav .nl,
  .nav .nl {
    display: none !important;
  }

  .mockup-body .nav a.nc,
  .mockup-body nav.nav a.nc,
  .nav a.nc {
    flex-shrink: 0 !important;
  }

  .mockup-body .nav .nbrand-wordmark,
  .mockup-body .nav .nb-name,
  .mockup-body nav.nav .nbrand-wordmark,
  .mockup-body nav.nav .nb-name,
  .nav .nbrand-wordmark,
  .nav .nb-name {
    display: none !important;
  }

  .mockup-body .nav .nbrand-mark,
  .mockup-body nav.nav .nbrand-mark,
  .nav .nbrand-mark {
    width: 40px !important;
    height: 40px !important;
  }

  .mockup-body nav.nav a.nc i[class*="fa-"],
  .mockup-body .nav a.nc i[class*="fa-"] {
    font-size: 1.15em !important;
    vertical-align: -0.02em !important;
  }
}

/* ≤640px: match landing .ncta tighten */
@media (max-width: 640px) {
  .mockup-body .nav a.nc,
  .mockup-body nav.nav a.nc,
  .nav a.nc {
    padding: 8px 12px !important;
    font-size: 0.78rem !important;
  }
}

/* ---- merged block ---- */

/* Mobile card/grid stack (≤768px). Generated by scripts/inject-mockup-mobile-card-css.mjs — do not hand-edit. */
@media (max-width: 768px) {
  .cities-grid,
  .foot-top,
  .hero-in,
  .ind-grid,
  .mistakes-grid,
  .on-stat-row,
  .prov-grid,
  .sec-in,
  .stream-grid,
  .tgrid,
  .times-in,
  .trust-in,
  .urg-in,
  .why-grid {
    grid-template-columns: 1fr !important;
  }

  .cities-grid > *,
  .foot-top > *,
  .hero-in > *,
  .ind-grid > *,
  .mistakes-grid > *,
  .on-stat-row > *,
  .prov-grid > *,
  .sec-in > *,
  .stream-grid > *,
  .tgrid > *,
  .times-in > *,
  .trust-in > *,
  .urg-in > *,
  .why-grid > * {
    min-width: 0;
  }

  .steps-row,
  .hiw-steps,
  .hs-steps,
  .install-steps,
  .flow-steps {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .steps-row::before,
  .hiw-steps::before,
  .hs-steps::before,
  .install-steps::before {
    display: none !important;
  }

  .flow-steps::after {
    display: none !important;
  }

  .tl-in .timeline {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }

  .tl-in .timeline::before {
    display: none !important;
  }

  .steps {
    grid-template-columns: 1fr !important;
  }

  .steps::before {
    display: none !important;
  }

  .ov-steps {
    grid-template-columns: 1fr !important;
  }

  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns:1fr 1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr 1fr"],
  [style*="grid-template-columns:repeat(2"],
  [style*="grid-template-columns: repeat(2"],
  [style*="grid-template-columns:repeat(3"],
  [style*="grid-template-columns: repeat(3"],
  [style*="grid-template-columns:repeat(4"],
  [style*="grid-template-columns: repeat(4"],
  [style*="grid-template-columns:repeat(5"],
  [style*="grid-template-columns: repeat(5"],
  [style*="grid-template-columns:repeat(6"],
  [style*="grid-template-columns: repeat(6"],
  [style*="1fr 420px"],
  [style*="180px 1fr"],
  [style*="120px 1fr"] {
    grid-template-columns: 1fr !important;
  }

  .ctable {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .ctable .ct-head,
  .ctable .ct-row {
    min-width: 520px;
  }
}

@media (max-width: 640px) {
  .hero-communities,
  .hero-countries,
  .form-chips {
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 0.5rem 0.65rem !important;
  }

  .comm-tag,
  .hc-tag,
  .form-chip {
    max-width: 100%;
    box-sizing: border-box;
  }
}

/* === toronto.html === */

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

:root {
  --cream: #fffcf5;
  --cream2: #f5f0e6;
  --cream3: #ede8dc;
  --red: #a81f17;
  --red-h: #a81f17;
  --red-pale: #fdecea;
  --navy: #1a2332;
  --navy2: #253347;
  --green: #2d6a4f;
  --gbg: #eaf4ee;
  --amber: #b5651d;
  --abg: #fdf3e3;
  --blue: #1e5f8c;
  --bbg: #e8f2fb;
  --purple: #5b21b6;
  --pbg: #ede9fe;
  --border: #d5cfbf;
  --muted: #7a7060;
  --font-h: "Fraunces", Georgia, serif;
  --font-b: "DM Sans", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--navy);
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* NAV */
nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 6%;
}

.nbrand {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  color: var(--navy);
}

.nbrand-mark {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: block;
  object-fit: contain;
}

.nbrand-wordmark {
  margin: 0;
  font-family: var(--font-h);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--red-h);
  max-width: min(140px, 48vw);
}

.nname {
  font-family: var(--font-h);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.nlinks {
  display: flex;
  gap: 1.5rem;
}

.nlinks a {
  color: var(--navy);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 400;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s;
}

.nlinks a:hover {
  border-color: var(--navy);
}

.ncta {
  background: var(--red);
  color: #fff;
  padding: 9px 20px;
  border-radius: 6px;
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid var(--red);
  transition: all 0.15s;
}

.ncta:hover {
  background: var(--red-h);
}

/* BC */
.bc {
  background: var(--cream2);
  border-bottom: 1px solid var(--border);
  padding: 10px 6%;
}

.bc-in {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--muted);
  flex-wrap: wrap;
}

.bc-in a {
  color: var(--muted);
  text-decoration: none;
}

.bc-in a:hover {
  color: var(--navy);
}

.bc-in span {
  color: var(--border);
}

/* HERO */
.hero {
  background: var(--navy);
  color: #fff;
  padding: 0;
  overflow: hidden;
  position: relative;
}

.hero-city-bg {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  background: linear-gradient(
    135deg,
    rgba(168, 31, 23, 0.06) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  border-left: 1px solid rgba(255, 255, 255, 0.04);
}

.hero-skyline {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 48%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 0;
  opacity: 0.07;
}

.hero-skyline svg {
  width: 100%;
  height: 60%;
}

.hero-in {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: start;
  padding: 60px 6% 0;
  position: relative;
  z-index: 1;
}

.hero-location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1rem;
}

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 0.8rem;
  display: block;
}

h1 {
  font-family: var(--font-h);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.03;
  letter-spacing: -0.035em;
  margin-bottom: 0.8rem;
}

h1 em {
  font-style: italic;
  color: #f4a261;
}

.hero-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  font-weight: 300;
  max-width: 500px;
  margin-bottom: 2rem;
}

.hero-communities {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.comm-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

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

.btn-main {
  background: var(--red);
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid var(--red);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.15s;
}

.btn-main:hover {
  background: var(--red-h);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 400;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.15s;
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.5);
}

/* CITY CARD */
.city-card-hero {
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-bottom: none;
  border-radius: 14px 14px 14px 14px;
  overflow: hidden;
  align-self: start;
}

.cc-bar {
  background: rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 11px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navy-color {
  color: var(--navy) !important;
}

.cc-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.cc-live {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.65rem;
  font-weight: 600;
  color: #4ade80;
}

.cc-live::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  animation: blink 2s infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.cc-body {
  padding: 16px 18px;
}

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

.cc-stat {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  padding: 10px 12px;
}

.cc-stat-n {
  font-family: var(--font-h);
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.cc-stat-l {
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 2px;
}

.cc-communities {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.cc-comm {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 11px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 7px;
}

.cc-comm-left {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
}

.cc-comm-pct {
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
}

/* TRUST */
.trust {
  background: var(--cream2);
  border-top: 2px solid var(--navy);
  border-bottom: 2px solid var(--navy);
  padding: 18px 6%;
}

.trust-in {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.ti {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--muted);
}

.ti strong {
  color: var(--navy);
  font-weight: 600;
}

.tsep {
  width: 1px;
  height: 20px;
  background: var(--border);
}

/* COMMONS */
.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.sh {
  font-family: var(--font-h);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 0.8rem;
}

.sp {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 300;
}

/* TORONTO OVERVIEW */
.overview {
  padding: 80px 6%;
  background: var(--cream);
  border-bottom: 2px solid var(--navy);
}

.overview-in {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.overview-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.ov-stat {
  background: var(--cream);
  border: 2px solid var(--navy);
  border-radius: 12px;
  padding: 20px 18px;
  transition:
    transform 0.15s,
    box-shadow 0.15s;
}

.ov-stat:hover {
  transform: translateY(-3px);
  box-shadow: 5px 5px 0 var(--navy);
}

.ov-n {
  font-family: var(--font-h);
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
  color: var(--red);
}

.ov-l {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.4;
}

/* COMMUNITIES */
.communities {
  padding: 80px 6%;
  background: var(--cream2);
  border-top: 2px solid var(--navy);
}

.comm-in {
  max-width: 1280px;
  margin: 0 auto;
}

.comm-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.comm-card {
  background: var(--cream);
  border: 2px solid var(--navy);
  border-radius: 14px;
  overflow: hidden;
  transition:
    transform 0.15s,
    box-shadow 0.15s;
}

.comm-card:hover {
  transform: translateY(-3px);
  box-shadow: 5px 5px 0 var(--navy);
}

.comm-head {
  padding: 20px 22px;
  border-bottom: 2px solid var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.comm-flag {
  font-size: 2rem;
}

.comm-name {
  font-family: var(--font-h);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.comm-size {
  font-size: 0.72rem;
  color: var(--muted);
}

.comm-badge {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 100px;
  text-align: center;
  width: 110px;
}

.cb-1 {
  background: var(--red-pale);
  color: var(--red);
  border: 1px solid #f0b0a8;
}

.cb-2 {
  background: var(--bbg);
  color: var(--blue);
  border: 1px solid #b8d8f0;
}

.cb-3 {
  background: var(--gbg);
  color: var(--green);
  border: 1px solid #90d4b0;
}

.cb-4 {
  background: var(--abg);
  color: var(--amber);
  border: 1px solid #e8c585;
}

.comm-body {
  padding: 20px 22px;
}

.comm-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 14px;
}

.comm-hood {
  margin-bottom: 12px;
}

.comm-hood-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 7px;
}

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

.hood-tag {
  font-size: 0.68rem;
  background: var(--cream2);
  border: 1px solid var(--border);
  padding: 3px 9px;
  border-radius: 100px;
  color: var(--muted);
}

.comm-paths {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.comm-path {
  font-size: 0.78rem;
  color: var(--navy);
}

.comm-path::before {
  content: "\f061";
  font-family: "Font Awesome 6 Free", sans-serif;
  font-weight: 900;
  -webkit-font-smoothing: antialiased;
  color: var(--red);
  font-weight: 700;
  flex-shrink: 0;
  margin-right: 4px;
}

.comm-cta {
  padding: 14px 22px;
  border-top: 1px solid var(--border);
}

.comm-link {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--red);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.comm-link:hover {
  text-decoration: underline;
}

/* URGENCY */
.urgency {
  background: var(--red);
  color: #fff;
  padding: 50px 6%;
}

.urg-in {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}

.urg-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.urg-h {
  font-family: var(--font-h);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 0.7rem;
}

.urg-p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  max-width: 560px;
}

.btn-urgency {
  background: #fff;
  color: var(--red);
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid #fff;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.15s;
  flex-shrink: 0;
}

.btn-urgency:hover {
  background: transparent;
  color: #fff;
}

/* NEIGHBOURHOODS */
.hoods {
  padding: 80px 6%;
  background: var(--cream);
  border-top: 2px solid var(--navy);
}

.hoods-in {
  max-width: 1280px;
  margin: 0 auto;
}

.hood-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.hood-card {
  background: var(--cream);
  border: 2px solid var(--navy);
  border-radius: 12px;
  padding: 18px 16px;
  transition:
    transform 0.15s,
    box-shadow 0.15s;
}

.hood-card:hover {
  transform: translateY(-3px);
  box-shadow: 5px 5px 0 var(--navy);
}

a.hood-card {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.hood-emoji {
  font-size: 1.3rem;
  margin-bottom: 8px;
  display: block;
}

.hood-name {
  font-family: var(--font-h);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.hood-vibe {
  font-size: 0.72rem;
  color: var(--muted);
  margin-bottom: 8px;
}

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

.hood-tag {
  font-size: 0.62rem;
  background: var(--cream2);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2px 7px;
  color: var(--muted);
}

/* EMPLOYERS */
.employers {
  padding: 80px 6%;
  background: var(--navy);
  color: #fff;
  border-top: 2px solid var(--cream3);
}

.emp-in {
  max-width: 1280px;
  margin: 0 auto;
}

.emp-in .eyebrow {
  color: rgba(255, 255, 255, 0.35);
}

.emp-in .sh {
  color: #fff;
}

.emp-in .sp {
  color: rgba(255, 255, 255, 0.55);
}

.emp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 2.5rem;
}

.emp-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 22px 20px;
  transition: background 0.15s;
}

.emp-card:hover {
  background: rgba(255, 255, 255, 0.08);
}

.emp-sector {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 8px;
}

.emp-emoji {
  font-size: 1.4rem;
  margin-bottom: 10px;
  display: block;
}

.emp-title {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #fff;
}

.emp-names {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 8px;
}

.emp-name {
  font-size: 0.68rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2px 8px;
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.6);
}

.emp-noc {
  font-size: 0.68rem;
  font-family: monospace;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 4px;
}

/* UNIVERSITIES */
.unis {
  padding: 80px 6%;
  background: var(--cream2);
  border-top: 2px solid var(--navy);
}

.unis-in {
  max-width: 1280px;
  margin: 0 auto;
}

.uni-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 2.5rem;
}

.uni-card {
  background: var(--cream);
  border: 2px solid var(--navy);
  border-radius: 12px;
  padding: 20px 18px;
  transition:
    transform 0.15s,
    box-shadow 0.15s;
}

.uni-card:hover {
  transform: translateY(-3px);
  box-shadow: 5px 5px 0 var(--navy);
}

.uni-emoji {
  font-size: 1.4rem;
  margin-bottom: 10px;
  display: block;
}

.uni-name {
  font-family: var(--font-h);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 3px;
  letter-spacing: -0.01em;
}

.uni-type {
  font-size: 0.72rem;
  color: var(--muted);
  margin-bottom: 8px;
}

.uni-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 8px;
}

.uni-tag {
  font-size: 0.63rem;
  background: var(--bbg);
  color: var(--blue);
  border: 1px solid #b8d8f0;
  border-radius: 4px;
  padding: 2px 7px;
}

.uni-oinp {
  font-size: 0.63rem;
  background: var(--gbg);
  color: var(--green);
  border: 1px solid #90d4b0;
  border-radius: 4px;
  padding: 2px 7px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

/* COST LIVING */
.cost {
  padding: 80px 6%;
  background: var(--cream);
  border-top: 2px solid var(--navy);
}

.cost-in {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.cost-table {
  border: 2px solid var(--navy);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 1.5rem;
}

.ct-head-row {
  background: var(--navy);
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 12px 18px;
}

.ct-head-cell {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ct-data-row {
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 12px 18px;
  border-top: 1px solid var(--border);
  align-items: center;
}

.ct-data-row:nth-child(even) {
  background: var(--cream2);
}

.ct-item {
  font-size: 0.82rem;
  color: var(--navy);
  font-weight: 400;
}

.ct-val {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  text-align: right;
}

.cost-note {
  background: var(--abg);
  border: 1px solid #e8c585;
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 0.78rem;
  color: #7a5c1e;
  line-height: 1.6;
  margin-top: 1.2rem;
}

/* SETTLEMENT */
.settlement {
  padding: 80px 6%;
  background: var(--cream2);
  border-top: 2px solid var(--navy);
}

.settlement-in {
  max-width: 1280px;
  margin: 0 auto;
}

.set-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 2.5rem;
}

.set-card {
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 22px 20px;
  transition:
    border-color 0.15s,
    box-shadow 0.15s,
    transform 0.15s;
}

.set-card:hover {
  border-color: var(--navy);
  box-shadow: 4px 4px 0 var(--navy);
  transform: translateY(-2px);
}

.set-emoji {
  font-size: 1.4rem;
  margin-bottom: 10px;
  display: block;
}

.set-title {
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.set-desc {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.65;
}

/* PROCESS */
.process {
  padding: 80px 6%;
  background: var(--cream);
  border-top: 2px solid var(--navy);
}

.process-in {
  max-width: 1280px;
  margin: 0 auto;
}

.process-top {
  margin-bottom: 3rem;
}

.steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--navy);
  border: 2px solid var(--navy);
  border-radius: 14px;
  overflow: hidden;
}

.step {
  background: var(--cream);
  padding: 24px 22px;
  border-bottom: 2px solid var(--navy);
  border-right: 2px solid var(--navy);
}

.step:nth-child(even) {
  border-right: none;
}

.step.wide {
  grid-column: 1/-1;
  border-right: none;
}

.stop {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.snum {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-h);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stitle {
  font-size: 0.88rem;
  font-weight: 600;
}

.sdesc {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.65;
}

.schip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 100px;
  margin-top: 9px;
}

.c-ai {
  background: #ede9fe;
  color: #5b21b6;
}

.c-auto {
  background: var(--gbg);
  color: var(--green);
}

.c-human {
  background: var(--abg);
  color: var(--amber);
}

.c-ext {
  background: var(--bbg);
  color: var(--blue);
}

/* TESTIMONIALS */
.testi {
  padding: 80px 6%;
  background: var(--navy);
  border-top: 2px solid var(--cream3);
}

.testi-in {
  max-width: 1280px;
  margin: 0 auto;
}

.testi-in .eyebrow {
  color: rgba(255, 255, 255, 0.35);
}

.tgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 2.5rem;
}

.tc {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 24px 20px;
  transition: background 0.15s;
}

.tc:hover {
  background: rgba(255, 255, 255, 0.08);
}

.tc-stars {
  color: #f4a261;
  font-size: 0.88rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.tc-q {
  font-family: var(--font-h);
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 16px;
  font-style: italic;
}

.tc-author {
  display: flex;
  align-items: center;
  gap: 9px;
}

.tc-av {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
}

.tc-name {
  font-size: 0.8rem;
  font-weight: 500;
  color: #fff;
}

.tc-role {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
}

.tc-badge {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 100px;
  margin-top: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tb-on {
  background: rgba(168, 31, 23, 0.15);
  color: #ff8080;
}

.tb-sp {
  background: rgba(79, 134, 198, 0.15);
  color: #7eb3e8;
}

.tb-ee {
  background: rgba(45, 106, 79, 0.15);
  color: #70c9a0;
}

/* FAQ */
.faq {
  padding: 80px 6%;
  background: var(--cream);
  border-top: 2px solid var(--navy);
}

.faq-in {
  max-width: 860px;
  margin: 0 auto;
}

.faq-list {
  margin-top: 2.5rem;
}

.faq-item {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  margin-bottom: 9px;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 16px 20px;
  text-align: left;
  font-family: var(--font-b);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  transition: background 0.15s;
}

.faq-q:hover {
  background: var(--cream2);
}

.faq-icon {
  font-size: 1rem;
  color: var(--muted);
  transition: transform 0.25s;
  flex-shrink: 0;
}

.faq-a {
  display: none;
  padding: 0 20px 16px;
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.75;
}

.faq-item.open .faq-a {
  display: block;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  color: var(--red);
}

/* OTHER CITIES */
.other-cities {
  padding: 80px 6%;
  background: var(--cream2);
  border-top: 2px solid var(--navy);
}

.oc-in {
  max-width: 1280px;
  margin: 0 auto;
}

.oc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.oc-card {
  background: var(--cream);
  border: 2px solid var(--navy);
  border-radius: 12px;
  padding: 18px 16px;
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.15s,
    box-shadow 0.15s;
  display: block;
}

.oc-card:hover {
  transform: translateY(-3px);
  box-shadow: 5px 5px 0 var(--navy);
}

.oc-emoji {
  font-size: 1.2rem;
  margin-bottom: 7px;
  display: block;
}

.oc-name {
  font-family: var(--font-h);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 3px;
}

.oc-pop {
  font-size: 0.7rem;
  color: var(--muted);
}

/* STICKY */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--red);
  border-top: 2px solid #a81f17;
  padding: 14px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  transform: translateY(100%);
  transition: transform 0.3s;
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-text {
  font-size: 0.88rem;
  font-weight: 500;
  color: #fff;
}

.sticky-text span {
  opacity: 0.65;
  font-weight: 300;
}

.sticky-btns {
  display: flex;
  gap: 10px;
}

.sticky-btn {
  padding: 9px 20px;
  border-radius: 6px;
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.15s;
}

.sticky-btn.white {
  background: #fff;
  color: var(--red);
}

.sticky-btn.white:hover {
  background: var(--cream2);
}

.sticky-btn.outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.4);
}

/* FINAL CTA */
.fcta {
  background: var(--red);
  color: #fff;
  padding: 80px 6%;
  text-align: center;
  border-top: 2px solid #a81f17;
}

.fcta-in {
  max-width: 640px;
  margin: 0 auto;
}

.fcta h2 {
  font-family: var(--font-h);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 0.8rem;
}

.fcta p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2rem;
  line-height: 1.75;
}

.btn-white {
  background: #fff;
  color: var(--red);
  padding: 15px 32px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.15s;
}

.btn-white:hover {
  background: transparent;
  color: #fff;
}

.fcta-sub {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 12px;
}

.fcta-incl {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}

.fcta-i {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  gap: 4px;
}

.fcta-i::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free", sans-serif;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.65);
}

/* FOOTER */
footer {
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 30px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.fb {
  font-family: var(--font-h);
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
}

.flinks {
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
}

.flinks a {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
}

.flinks a:hover {
  color: #fff;
}

.fnote {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.25);
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.55s,
    transform 0.55s;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

@media (max-width: 960px) {
  .hero-in,
  .overview-in,
  .cost-in,
  .process-top {
    grid-template-columns: 1fr;
  }

  .city-card-hero {
    display: none;
  }

  .comm-grid,
  .uni-grid,
  .emp-grid,
  .set-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hood-grid,
  .oc-grid {
    grid-template-columns: 1fr 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
    background: none;
    border: 2px solid var(--navy);
    border-radius: 14px;
    overflow: hidden;
  }

  .step {
    border: none;
    border-bottom: 2px solid var(--navy);
    border-right: none !important;
  }

  .step:last-child {
    border-bottom: none;
  }

  .urg-in {
    grid-template-columns: 1fr;
  }

  .nlinks {
    display: none;
  }
}

@media (max-width: 600px) {
  .comm-grid,
  .uni-grid,
  .emp-grid,
  .set-grid,
  .tgrid,
  .hood-grid,
  .oc-grid {
    grid-template-columns: 1fr;
  }

  .overview-stats {
    grid-template-columns: 1fr 1fr;
  }
}

/* ---- merged block ---- */

/* gnp:footer-css - shared site footer; injected by scripts/apply-mockup-footer.mjs when a page has no .foot-top rules */
footer {
  background: var(--navy);
  padding: 48px 6% 28px;
  color: rgba(255, 255, 255, 0.4);
}

.foot-top {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.fbrand {
  font-family: var(--font-h, Georgia, serif);
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  display: block;
  margin-bottom: 0.6rem;
}

.fbrand-sub {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.fsocial {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.fslink {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.15s;
}

.fslink:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.foot-col h4 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 0.8rem;
}

.foot-col a {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  margin-bottom: 0.4rem;
  transition: color 0.15s;
}

.foot-col a:hover {
  color: #fff;
}

.foot-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.72rem;
}

@media (max-width: 960px) {
  .foot-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .foot-top {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .foot-bottom {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

/* ---- merged block ---- */

@media (max-width: 960px) {
  nav .nbrand-wordmark,
  nav .nb-name {
    display: none !important;
  }
}

/* ---- merged block ---- */

/* gnp:trust-bar - layout only; does not add/delete markup */
.trust .trust-in,
.trust .ts-in {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 14px;
}

.trust .trust-item,
.trust .ti {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.8rem;
  color: var(--muted, #7a7060);
}

.trust .trust-item i,
.trust .ti i {
  flex-shrink: 0;
  color: var(--muted, #7a7060);
  opacity: 0.9;
}

.trust .trust-item strong,
.trust .ti strong {
  color: var(--navy, #1a2332);
  font-weight: 600;
}

.trust .trust-sep,
.trust .tsep {
  width: 1px;
  height: 22px;
  background: var(--border, #d5cfbf);
  flex-shrink: 0;
}

@media (max-width: 960px) {
  .trust .trust-in,
  .trust .ts-in {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .trust .trust-sep,
  .trust .tsep {
    display: none;
  }
}

@media (max-width: 640px) {
  .trust .trust-in,
  .trust .ts-in {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* ---- merged block ---- */

/* Marketing nav aligned with landing (.gnp-home nav in components/marketing/home/home.css). */

.mockup-body > nav.nav,
.mockup-root .mockup-body > nav.nav,
body > nav.nav,
.gnp-mockup-faq .mockup-body > nav.nav {
  position: sticky !important;
  top: 0 !important;
  z-index: 200 !important;
  background: #fffcf5 !important;
  box-sizing: border-box !important;
  margin: 0 !important;
  font-family: "DM Sans", system-ui, sans-serif !important;
  padding: 13px clamp(16px, 6%, 48px) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  height: auto !important;
  color: #1a2332 !important;
}

.mockup-body .nav a.nb,
.mockup-body nav.nav a.nb,
body > .nav a.nb,
.nav a.nb {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  min-width: 0 !important;
  text-decoration: none !important;
  color: #1a2332 !important;
}

.mockup-body .nav .nbrand-mark,
.mockup-body nav.nav .nbrand-mark,
.nav .nbrand-mark {
  flex-shrink: 0 !important;
  width: 28px !important;
  height: 28px !important;
  object-fit: contain !important;
  display: block !important;
}

.mockup-body .nav h2.nbrand-wordmark,
.mockup-body nav.nav h2.nbrand-wordmark,
.nav h2.nbrand-wordmark {
  margin: 0 !important;
  font-family: "Fraunces", Georgia, serif !important;
  font-size: 1.1rem !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
  line-height: 1.1 !important;
  color: #a81f17 !important;
  max-width: min(140px, 48vw) !important;
}

.mockup-body .nav .nb-name,
.nav .nb-name {
  font-family: "Fraunces", Georgia, serif !important;
  font-size: 1.1rem !important;
  font-weight: 800 !important;
  color: #a81f17 !important;
  letter-spacing: -0.02em !important;
}

.mockup-body .nav .nl,
.nav .nl {
  display: flex !important;
  align-items: center !important;
  gap: 1.5rem !important;
  flex-wrap: wrap !important;
}

.mockup-body .nav .nl a,
.nav .nl a {
  font-size: 0.85rem !important;
  font-weight: 400 !important;
  text-decoration: none !important;
  color: #1a2332 !important;
  padding-bottom: 2px !important;
  border-bottom: 2px solid transparent !important;
  transition:
    border-color 0.15s,
    color 0.15s !important;
}

.mockup-body .nav .nl a:hover,
.nav .nl a:hover {
  color: #1a2332 !important;
  border-bottom-color: #1a2332 !important;
}

.mockup-body .nav .nl a.active,
.nav .nl a.active {
  color: #1a2332 !important;
  font-weight: 600 !important;
  border-bottom-color: #1a2332 !important;
}

.mockup-body .nav a.nc,
.mockup-body nav.nav a.nc,
.nav a.nc {
  background: #a81f17 !important;
  color: #fff !important;
  padding: 9px 20px !important;
  border-radius: 6px !important;
  font-size: 0.86rem !important;
  font-weight: 600 !important;
  border: 2px solid #a81f17 !important;
  transition:
    background 0.15s,
    border-color 0.15s !important;
  font-family: "DM Sans", system-ui, sans-serif !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
}

.mockup-body .nav a.nc:hover,
.nav a.nc:hover {
  background: #a81f17 !important;
  border-color: #a81f17 !important;
  filter: brightness(1.05) !important;
}

/* ≤960px: match landing (.gnp-home home.css) - compact bar, safe-area, larger mark + CTA chevron */
@media (max-width: 960px) {
  .mockup-body > nav.nav,
  .mockup-root .mockup-body > nav.nav,
  body > nav.nav,
  .gnp-mockup-faq .mockup-body > nav.nav {
    padding-left: max(12px, 4vw) !important;
    padding-right: max(12px, 4vw) !important;
    padding-top: max(10px, env(safe-area-inset-top, 0px)) !important;
    padding-bottom: 13px !important;
  }

  .mockup-body .nav .nl,
  .nav .nl {
    display: none !important;
  }

  .mockup-body .nav a.nc,
  .mockup-body nav.nav a.nc,
  .nav a.nc {
    flex-shrink: 0 !important;
  }

  .mockup-body .nav .nbrand-wordmark,
  .mockup-body .nav .nb-name,
  .mockup-body nav.nav .nbrand-wordmark,
  .mockup-body nav.nav .nb-name,
  .nav .nbrand-wordmark,
  .nav .nb-name {
    display: none !important;
  }

  .mockup-body .nav .nbrand-mark,
  .mockup-body nav.nav .nbrand-mark,
  .nav .nbrand-mark {
    width: 40px !important;
    height: 40px !important;
  }

  .mockup-body nav.nav a.nc i[class*="fa-"],
  .mockup-body .nav a.nc i[class*="fa-"] {
    font-size: 1.15em !important;
    vertical-align: -0.02em !important;
  }
}

/* ≤640px: match landing .ncta tighten */
@media (max-width: 640px) {
  .mockup-body .nav a.nc,
  .mockup-body nav.nav a.nc,
  .nav a.nc {
    padding: 8px 12px !important;
    font-size: 0.78rem !important;
  }
}

/* ---- merged block ---- */

/* Mobile card/grid stack (≤768px). Generated by scripts/inject-mockup-mobile-card-css.mjs — do not hand-edit. */
@media (max-width: 768px) {
  .cc-stat-grid,
  .comm-grid,
  .emp-grid,
  .foot-top,
  .hero-in,
  .hood-grid,
  .oc-grid,
  .process-top,
  .set-grid,
  .tgrid,
  .trust-in,
  .uni-grid,
  .urg-in {
    grid-template-columns: 1fr !important;
  }

  .cc-stat-grid > *,
  .comm-grid > *,
  .emp-grid > *,
  .foot-top > *,
  .hero-in > *,
  .hood-grid > *,
  .oc-grid > *,
  .process-top > *,
  .set-grid > *,
  .tgrid > *,
  .trust-in > *,
  .uni-grid > *,
  .urg-in > * {
    min-width: 0;
  }

  .steps-row,
  .hiw-steps,
  .hs-steps,
  .install-steps,
  .flow-steps {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .steps-row::before,
  .hiw-steps::before,
  .hs-steps::before,
  .install-steps::before {
    display: none !important;
  }

  .flow-steps::after {
    display: none !important;
  }

  .tl-in .timeline {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }

  .tl-in .timeline::before {
    display: none !important;
  }

  .steps {
    grid-template-columns: 1fr !important;
  }

  .steps::before {
    display: none !important;
  }

  .ov-steps {
    grid-template-columns: 1fr !important;
  }

  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns:1fr 1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr 1fr"],
  [style*="grid-template-columns:repeat(2"],
  [style*="grid-template-columns: repeat(2"],
  [style*="grid-template-columns:repeat(3"],
  [style*="grid-template-columns: repeat(3"],
  [style*="grid-template-columns:repeat(4"],
  [style*="grid-template-columns: repeat(4"],
  [style*="grid-template-columns:repeat(5"],
  [style*="grid-template-columns: repeat(5"],
  [style*="grid-template-columns:repeat(6"],
  [style*="grid-template-columns: repeat(6"],
  [style*="1fr 420px"],
  [style*="180px 1fr"],
  [style*="120px 1fr"] {
    grid-template-columns: 1fr !important;
  }

  .ctable {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .ctable .ct-head,
  .ctable .ct-row {
    min-width: 520px;
  }
}

@media (max-width: 640px) {
  .hero-communities,
  .hero-countries,
  .form-chips {
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 0.5rem 0.65rem !important;
  }

  .comm-tag,
  .hc-tag,
  .form-chip {
    max-width: 100%;
    box-sizing: border-box;
  }
}

/* === mississauga.html === */

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

:root {
  --cream: #fffcf5;
  --cream2: #f5f0e6;
  --cream3: #ede8dc;
  --red: #a81f17;
  --red-h: #a81f17;
  --red-pale: #fdecea;
  --navy: #1a2332;
  --navy2: #253347;
  --green: #2d6a4f;
  --gbg: #eaf4ee;
  --amber: #b5651d;
  --abg: #fdf3e3;
  --blue: #1e5f8c;
  --bbg: #e8f2fb;
  --purple: #5b21b6;
  --pbg: #ede9fe;
  --border: #d5cfbf;
  --muted: #7a7060;
  --font-h: "Fraunces", Georgia, serif;
  --font-b: "DM Sans", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--navy);
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 6%;
}

.nbrand {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  color: var(--navy);
}

.nbrand-mark {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: block;
  object-fit: contain;
}

.nbrand-wordmark {
  margin: 0;
  font-family: var(--font-h);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--red-h);
  max-width: min(140px, 48vw);
}

.nname {
  font-family: var(--font-h);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.nlinks {
  display: flex;
  gap: 1.5rem;
}

.nlinks a {
  color: var(--navy);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 400;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s;
}

.nlinks a:hover {
  border-color: var(--navy);
}

.ncta {
  background: var(--red);
  color: #fff;
  padding: 9px 20px;
  border-radius: 6px;
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid var(--red);
  transition: all 0.15s;
}

.ncta:hover {
  background: var(--red-h);
}

.bc {
  background: var(--cream2);
  border-bottom: 1px solid var(--border);
  padding: 10px 6%;
}

.bc-in {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--muted);
  flex-wrap: wrap;
}

.bc-in a {
  color: var(--muted);
  text-decoration: none;
}

.bc-in a:hover {
  color: var(--navy);
}

.bc-in span {
  color: var(--border);
}

/* HERO */
.hero {
  background: var(--navy);
  color: #fff;
  padding: 0;
  overflow: hidden;
  position: relative;
}

.hero-accent {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 40%;
  background: linear-gradient(
    135deg,
    rgba(181, 101, 29, 0.08) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  border-left: 1px solid rgba(255, 255, 255, 0.04);
}

.hero-in {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: start;
  padding: 60px 6% 0;
  position: relative;
  z-index: 1;
}

.hero-loc {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1rem;
}

.eyebrow-sm {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 0.8rem;
  display: block;
}

h1 {
  font-family: var(--font-h);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.03;
  letter-spacing: -0.035em;
  margin-bottom: 0.8rem;
}

h1 em {
  font-style: italic;
  color: #f4a261;
}

.hero-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  font-weight: 300;
  max-width: 500px;
  margin-bottom: 2rem;
}

.comm-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.comm-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

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

.btn-main {
  background: var(--red);
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid var(--red);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.15s;
}

.btn-main:hover {
  background: var(--red-h);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 400;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.15s;
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.5);
}

/* CITY DASHBOARD CARD */
.dash-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-bottom: none;
  border-radius: 14px 14px 14px 14px;
  overflow: hidden;
  align-self: start;
}

.dc-bar {
  background: rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 11px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dc-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.dc-live {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.65rem;
  font-weight: 600;
  color: #4ade80;
}

.dc-live::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  animation: blink 2s infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.dc-body {
  padding: 16px 18px;
}

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

.dc-stat {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  padding: 10px 12px;
}

.dc-n {
  font-family: var(--font-h);
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.dc-l {
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 2px;
}

.dc-highlights {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.dc-hl {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 7px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
}

.dc-hl-icon {
  font-size: 1rem;
  flex-shrink: 0;
}

/* TRUST BAR */
.trust {
  background: var(--cream2);
  border-top: 2px solid var(--navy);
  border-bottom: 2px solid var(--navy);
  padding: 18px 6%;
}

.trust-in {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.ti {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--muted);
}

.ti strong {
  color: var(--navy);
  font-weight: 600;
}

.tsep {
  width: 1px;
  height: 20px;
  background: var(--border);
}

/* COMMONS */
.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.sh {
  font-family: var(--font-h);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 0.8rem;
}

.sp {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 300;
}

/* WHY MISSISSAUGA */
.why {
  padding: 80px 6%;
  background: var(--cream);
  border-bottom: 2px solid var(--navy);
}

.why-in {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.why-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.ws {
  background: var(--cream);
  border: 2px solid var(--navy);
  border-radius: 12px;
  padding: 20px 18px;
  transition:
    transform 0.15s,
    box-shadow 0.15s;
}

.ws:hover {
  transform: translateY(-3px);
  box-shadow: 5px 5px 0 var(--navy);
}

.ws-n {
  font-family: var(--font-h);
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
  color: var(--red);
}

.ws-l {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.4;
}

/* TORONTO vs MISSISSAUGA */
.compare-strip {
  padding: 80px 6%;
  background: var(--cream2);
  border-top: 2px solid var(--navy);
}

.cs-in {
  max-width: 1280px;
  margin: 0 auto;
}

.cs-table {
  border: 2px solid var(--navy);
  border-radius: 14px;
  overflow: hidden;
  margin-top: 2.5rem;
}

.cs-head {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  background: var(--navy);
}

.cs-hcell {
  padding: 14px 18px;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

.cs-hcell:first-child {
  text-align: left;
}

.cs-hcell.msauga {
  background: var(--red);
  color: #fff;
}

.cs-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  border-top: 1px solid var(--border);
}

.cs-row:nth-child(even) {
  background: var(--cream);
}

.cs-row:nth-child(odd) {
  background: var(--cream2);
}

.cs-cell {
  padding: 12px 18px;
  font-size: 0.82rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cs-cell:first-child {
  text-align: left;
  justify-content: flex-start;
  font-weight: 500;
  color: var(--navy);
}

.cs-cell.win {
  background: rgba(168, 31, 23, 0.05);
  font-weight: 600;
  color: var(--red);
}

.cs-badge {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
}

.cb-red {
  background: var(--red-pale);
  color: var(--red);
  border: 1px solid #f0b0a8;
}

.cb-gray {
  background: var(--cream2);
  color: var(--muted);
  border: 1px solid var(--border);
}

.cb-green {
  background: var(--gbg);
  color: var(--green);
  border: 1px solid #90d4b0;
}

@media (max-width: 720px) {
  .compare-strip .cs-head {
    display: none;
  }

  .compare-strip .cs-table {
    border-radius: 12px;
    border: none;
  }

  .compare-strip .cs-row {
    display: flex;
    flex-direction: column;
    border-top: none;
    border: 1.5px solid var(--navy);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--cream);
  }

  .compare-strip .cs-row .cs-cell {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    justify-content: flex-start;
    text-align: left;
    padding: 12px 14px;
    border-bottom: 1px solid var(--border);
  }

  .compare-strip .cs-row .cs-cell:last-child {
    border-bottom: none;
  }

  .compare-strip .cs-row .cs-cell:first-child {
    background: var(--navy);
    color: #fff;
    font-weight: 700;
    font-size: 0.84rem;
  }

  .compare-strip .cs-row .cs-cell:nth-child(2) {
    background: rgba(168, 31, 23, 0.06);
  }

  .compare-strip .cs-row .cs-cell:nth-child(2),
  .compare-strip .cs-row .cs-cell:nth-child(3) {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
  }

  .compare-strip .cs-row .cs-cell:nth-child(2)::before {
    content: "Mississauga";
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 10px;
  }

  .compare-strip .cs-row .cs-cell:nth-child(3)::before {
    content: "Toronto";
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 10px;
  }

  .compare-strip .cs-row .cs-cell .cs-badge {
    white-space: normal;
    text-align: left;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    display: block;
    border-radius: 10px;
    padding: 10px 12px;
    line-height: 1.4;
  }
}

/* SOUTH ASIAN COMMUNITIES */
.communities {
  padding: 80px 6%;
  background: var(--cream);
  border-top: 2px solid var(--navy);
}

.comm-in {
  max-width: 1280px;
  margin: 0 auto;
}

.comm-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.cc {
  background: var(--cream);
  border: 2px solid var(--navy);
  border-radius: 14px;
  overflow: hidden;
  transition:
    transform 0.15s,
    box-shadow 0.15s;
}

.cc:hover {
  transform: translateY(-3px);
  box-shadow: 5px 5px 0 var(--navy);
}

.cc-head {
  padding: 20px 22px;
  border-bottom: 2px solid var(--navy);
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 10px 14px;
  align-items: start;
}

.cc-head-main {
  grid-column: 1;
  grid-row: 1;
  min-width: 0;
}

.cc-head > .cc-flag {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  font-size: 2rem;
  line-height: 1;
}

.cc-head > .cc-rank {
  grid-column: 1 / -1;
  grid-row: 2;
  justify-self: start;
}

.cc-flag {
  font-size: 2rem;
}

.cc-title {
  font-family: var(--font-h);
  font-size: 1.05rem;
  font-weight: 800;
}

.cc-pop {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 2px;
}

.cc-rank {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 100px;
}

.rank-1 {
  background: var(--red-pale);
  color: var(--red);
  border: 1px solid #f0b0a8;
}

.rank-2 {
  background: var(--abg);
  color: var(--amber);
  border: 1px solid #e8c585;
}

.rank-3 {
  background: var(--bbg);
  color: var(--blue);
  border: 1px solid #b8d8f0;
}

.rank-4 {
  background: var(--gbg);
  color: var(--green);
  border: 1px solid #90d4b0;
}

.cc-body {
  padding: 20px 22px;
}

.cc-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 14px;
}

.cc-hoods {
  margin-bottom: 12px;
}

.cc-hoods-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 7px;
}

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

.hood-tag {
  font-size: 0.68rem;
  background: var(--cream2);
  border: 1px solid var(--border);
  padding: 3px 9px;
  border-radius: 100px;
  color: var(--muted);
}

.cc-paths {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.cc-path {
  gap: 7px;
  font-size: 0.78rem;
  color: var(--navy);
}

.cc-path::before {
  content: "\f061";
  font-family: "Font Awesome 6 Free", sans-serif;
  font-weight: 900;
  -webkit-font-smoothing: antialiased;
  color: var(--red);
  font-weight: 700;
  margin-right: 4px;
  flex-shrink: 0;
}

.cc-foot {
  padding: 14px 22px;
  border-top: 1px solid var(--border);
}

.cc-link {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--red);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.cc-link:hover {
  text-decoration: underline;
}

/* URGENCY */
.urgency {
  background: var(--red);
  color: #fff;
  padding: 50px 6%;
  border-top: 2px solid #a81f17;
}

.urg-in {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}

.urg-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.urg-h {
  font-family: var(--font-h);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 0.7rem;
}

.urg-p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  max-width: 560px;
}

.btn-urgency {
  background: #fff;
  color: var(--red);
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid #fff;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.15s;
  flex-shrink: 0;
}

.btn-urgency:hover {
  background: transparent;
  color: #fff;
}

/* NEIGHBOURHOODS */
.hoods {
  padding: 80px 6%;
  background: var(--cream2);
  border-top: 2px solid var(--navy);
}

.hoods-in {
  max-width: 1280px;
  margin: 0 auto;
}

.hood-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.hcard {
  background: var(--cream);
  border: 2px solid var(--navy);
  border-radius: 12px;
  padding: 18px 16px;
  transition:
    transform 0.15s,
    box-shadow 0.15s;
}

.hcard:hover {
  transform: translateY(-3px);
  box-shadow: 5px 5px 0 var(--navy);
}

a.hcard {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.hcard-emoji {
  font-size: 1.3rem;
  margin-bottom: 8px;
  display: block;
}

.hcard-name {
  font-family: var(--font-h);
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.hcard-vibe {
  font-size: 0.72rem;
  color: var(--muted);
  margin-bottom: 8px;
}

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

.htag {
  font-size: 0.62rem;
  background: var(--cream2);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2px 7px;
  color: var(--muted);
}

/* EMPLOYERS */
.employers {
  padding: 80px 6%;
  background: var(--navy);
  color: #fff;
  border-top: 2px solid var(--cream3);
}

.emp-in {
  max-width: 1280px;
  margin: 0 auto;
}

.emp-in .eyebrow {
  color: rgba(255, 255, 255, 0.35);
}

.emp-in .sh {
  color: #fff;
}

.emp-in .sp {
  color: rgba(255, 255, 255, 0.55);
}

.emp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 2.5rem;
}

.ecard {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 22px 20px;
  transition: background 0.15s;
}

.ecard:hover {
  background: rgba(255, 255, 255, 0.08);
}

.ecard-sector {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 6px;
}

.ecard-emoji {
  font-size: 1.4rem;
  margin-bottom: 10px;
  display: block;
}

.ecard-title {
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #fff;
}

.ecard-cos {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 6px;
}

.eco {
  font-size: 0.67rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2px 8px;
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.55);
}

.ecard-noc {
  font-size: 0.67rem;
  font-family: monospace;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 4px;
}

/* PEARSON AIRPORT */
.airport {
  padding: 80px 6%;
  background: var(--cream);
  border-top: 2px solid var(--navy);
}

.airport-in {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.airport-visual {
  background: var(--navy);
  border-radius: 14px;
  border: 2px solid var(--navy);
  overflow: hidden;
}

.av-head {
  background: rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.av-head-t {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.av-rows {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.av-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
}

.av-row-l {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.8);
}

.av-row-r {
  font-size: 0.75rem;
  font-weight: 600;
  color: #f4a261;
}

.av-note {
  background: rgba(45, 106, 79, 0.15);
  border: 1px solid rgba(45, 106, 79, 0.25);
  border-radius: 8px;
  padding: 10px 14px;
  margin: 10px 18px 16px;
  font-size: 0.73rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

/* UNIVERSITIES */
.unis {
  padding: 80px 6%;
  background: var(--cream2);
  border-top: 2px solid var(--navy);
}

.unis-in {
  max-width: 1280px;
  margin: 0 auto;
}

.uni-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 2.5rem;
}

.ucard {
  background: var(--cream);
  border: 2px solid var(--navy);
  border-radius: 12px;
  padding: 20px 18px;
  transition:
    transform 0.15s,
    box-shadow 0.15s;
}

.ucard:hover {
  transform: translateY(-3px);
  box-shadow: 5px 5px 0 var(--navy);
}

.ucard-emoji {
  font-size: 1.4rem;
  margin-bottom: 10px;
  display: block;
}

.ucard-name {
  font-family: var(--font-h);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 3px;
}

.ucard-type {
  font-size: 0.72rem;
  color: var(--muted);
  margin-bottom: 8px;
}

.ucard-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 6px;
}

.utag {
  font-size: 0.63rem;
  background: var(--bbg);
  color: var(--blue);
  border: 1px solid #b8d8f0;
  border-radius: 4px;
  padding: 2px 7px;
}

.ucard-oinp {
  font-size: 0.63rem;
  background: var(--gbg);
  color: var(--green);
  border: 1px solid #90d4b0;
  border-radius: 4px;
  padding: 2px 7px;
}

/* COST LIVING */
.cost {
  padding: 80px 6%;
  background: var(--cream);
  border-top: 2px solid var(--navy);
}

.cost-in {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.cost-table {
  border: 2px solid var(--navy);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 1.5rem;
}

.cth {
  background: var(--navy);
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 12px 18px;
}

.cth-cell {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ctr {
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 12px 18px;
  border-top: 1px solid var(--border);
  align-items: center;
}

.ctr:nth-child(even) {
  background: var(--cream2);
}

.ct-item {
  font-size: 0.82rem;
  color: var(--navy);
}

.ct-val {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
}

.cost-vs {
  background: var(--gbg);
  border: 1px solid #90d4b0;
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 0.8rem;
  color: var(--green);
  line-height: 1.6;
  margin-top: 1.2rem;
}

.cost-vs strong {
  color: var(--green);
}

/* OINP PATHWAYS */
.oinp-sec {
  padding: 80px 6%;
  background: var(--cream2);
  border-top: 2px solid var(--navy);
}

.oinp-in {
  max-width: 1280px;
  margin: 0 auto;
}

.oinp-top {
  margin-bottom: 3rem;
}

.path-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.pcard {
  background: var(--cream);
  border: 2px solid var(--navy);
  border-radius: 12px;
  overflow: hidden;
  transition:
    transform 0.15s,
    box-shadow 0.15s;
}

.pcard:hover {
  transform: translateY(-3px);
  box-shadow: 5px 5px 0 var(--navy);
}

.pcard-head {
  padding: 16px 18px;
  border-bottom: 1.5px solid var(--navy);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.pcard-emoji {
  font-size: 1.3rem;
}

.pcard-title {
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 3px;
}

.pcard-sub {
  font-size: 0.7rem;
  color: var(--muted);
}

.pcard-status {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 100px;
  flex-shrink: 0;
}

.ps-open {
  background: var(--gbg);
  color: var(--green);
  border: 1px solid #90d4b0;
}

.ps-draw {
  background: var(--abg);
  color: var(--amber);
  border: 1px solid #e8c585;
}

.pcard-body {
  padding: 14px 18px;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.65;
}

.pcard-reqs {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.preq {
  font-size: 0.74rem;
  color: var(--navy);
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.preq::before {
  content: "\f061";
  font-family: "Font Awesome 6 Free", sans-serif;
  font-weight: 900;
  -webkit-font-smoothing: antialiased;
  color: var(--red);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.pcard-cta {
  padding: 11px 18px;
  border-top: 1px solid var(--border);
}

.pcard-link {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--red);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* TIMELINE */
.pr-path {
  padding: 80px 6%;
  background: var(--cream);
  border-top: 2px solid var(--navy);
}

.pr-in {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.timeline {
  border: 2px solid var(--navy);
  border-radius: 12px;
  overflow: hidden;
}

.tl-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  border-bottom: 1.5px solid var(--navy);
}

.tl-row:last-child {
  border-bottom: none;
}

.tl-num {
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-size: 0.9rem;
  font-weight: 700;
  border-right: 2px solid var(--navy);
}

.tl-row.active .tl-num {
  background: var(--red);
}

.tl-row.done .tl-num {
  background: var(--green);
}

.tl-content {
  padding: 16px 18px;
  background: var(--cream);
}

.tl-title {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 3px;
}

.tl-desc {
  font-size: 0.76rem;
  color: var(--muted);
  line-height: 1.55;
}

/* PROCESS */
.process {
  padding: 80px 6%;
  background: var(--cream2);
  border-top: 2px solid var(--navy);
}

.process-in {
  max-width: 1280px;
  margin: 0 auto;
}

.steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--navy);
  border: 2px solid var(--navy);
  border-radius: 14px;
  overflow: hidden;
}

.step {
  background: var(--cream);
  padding: 24px 22px;
  border-bottom: 2px solid var(--navy);
  border-right: 2px solid var(--navy);
}

.step:nth-child(even) {
  border-right: none;
}

.step.wide {
  grid-column: 1/-1;
  border-right: none;
}

.stop {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.snum {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-h);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stitle {
  font-size: 0.88rem;
  font-weight: 600;
}

.sdesc {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.65;
}

.schip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 100px;
  margin-top: 9px;
}

.c-ai {
  background: #ede9fe;
  color: #5b21b6;
}

.c-human {
  background: var(--abg);
  color: var(--amber);
}

.c-ext {
  background: var(--bbg);
  color: var(--blue);
}

/* TESTIMONIALS */
.testi {
  padding: 80px 6%;
  background: var(--navy);
  border-top: 2px solid var(--cream3);
}

.testi-in {
  max-width: 1280px;
  margin: 0 auto;
}

.testi-in .eyebrow {
  color: rgba(255, 255, 255, 0.35);
}

.tgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 2.5rem;
}

.tc {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 24px 20px;
  transition: background 0.15s;
}

.tc:hover {
  background: rgba(255, 255, 255, 0.08);
}

.tc-stars {
  color: #f4a261;
  font-size: 0.88rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.tc-q {
  font-family: var(--font-h);
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 16px;
  font-style: italic;
}

.tc-author {
  display: flex;
  align-items: center;
  gap: 9px;
}

.tc-av {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
}

.tc-name {
  font-size: 0.8rem;
  font-weight: 500;
  color: #fff;
}

.tc-role {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
}

.tc-badge {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 100px;
  margin-top: 8px;
}

.tb-on {
  background: rgba(168, 31, 23, 0.15);
  color: #ff8080;
}

.tb-sp {
  background: rgba(79, 134, 198, 0.15);
  color: #7eb3e8;
}

.tb-ee {
  background: rgba(45, 106, 79, 0.15);
  color: #70c9a0;
}

/* FAQ */
.faq {
  padding: 80px 6%;
  background: var(--cream);
  border-top: 2px solid var(--navy);
}

.faq-in {
  max-width: 860px;
  margin: 0 auto;
}

.faq-list {
  margin-top: 2.5rem;
}

.faq-item {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  margin-bottom: 9px;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 16px 20px;
  text-align: left;
  font-family: var(--font-b);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  transition: background 0.15s;
}

.faq-q:hover {
  background: var(--cream2);
}

.faq-icon {
  font-size: 1rem;
  color: var(--muted);
  transition: transform 0.25s;
  flex-shrink: 0;
}

.faq-a {
  display: none;
  padding: 0 20px 16px;
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.75;
}

.faq-item.open .faq-a {
  display: block;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  color: var(--red);
}

/* OTHER CITIES */
.other-cities {
  padding: 80px 6%;
  background: var(--cream2);
  border-top: 2px solid var(--navy);
}

.oc-in {
  max-width: 1280px;
  margin: 0 auto;
}

.oc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.oc-card {
  background: var(--cream);
  border: 2px solid var(--navy);
  border-radius: 12px;
  padding: 18px 16px;
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.15s,
    box-shadow 0.15s;
  display: block;
}

.oc-card:hover {
  transform: translateY(-3px);
  box-shadow: 5px 5px 0 var(--navy);
}

.oc-emoji {
  font-size: 1.2rem;
  margin-bottom: 7px;
  display: block;
}

.oc-name {
  font-family: var(--font-h);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 3px;
}

.oc-pop {
  font-size: 0.7rem;
  color: var(--muted);
}

/* STICKY */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--red);
  border-top: 2px solid #a81f17;
  padding: 14px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  transform: translateY(100%);
  transition: transform 0.3s;
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-text {
  font-size: 0.88rem;
  font-weight: 500;
  color: #fff;
}

.sticky-text span {
  opacity: 0.65;
  font-weight: 300;
}

.sticky-btns {
  display: flex;
  gap: 10px;
}

.sticky-btn {
  padding: 9px 20px;
  border-radius: 6px;
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.15s;
}

.sticky-btn.white {
  background: #fff;
  color: var(--red);
}

.sticky-btn.outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.4);
}

/* FINAL CTA */
.fcta {
  background: var(--red);
  color: #fff;
  padding: 80px 6%;
  text-align: center;
  border-top: 2px solid #a81f17;
}

.fcta-in {
  max-width: 640px;
  margin: 0 auto;
}

.fcta h2 {
  font-family: var(--font-h);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 0.8rem;
}

.fcta p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2rem;
  line-height: 1.75;
}

.btn-white {
  background: #fff;
  color: var(--red);
  padding: 15px 32px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.15s;
}

.btn-white:hover {
  background: transparent;
  color: #fff;
}

.fcta-sub {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 12px;
}

.fcta-incl {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}

.fcta-i {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  gap: 4px;
}

.fcta-i::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free", sans-serif;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.65);
}

footer {
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 30px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.fb {
  font-family: var(--font-h);
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
}

.flinks {
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
}

.flinks a {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
}

.flinks a:hover {
  color: #fff;
}

.fnote {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.25);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.55s,
    transform 0.55s;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

@media (max-width: 960px) {
  .hero-in,
  .why-in,
  .compare-strip .cs-in,
  .airport-in,
  .cost-in,
  .oinp-top,
  .pr-in {
    grid-template-columns: 1fr;
  }

  .dash-card,
  .airport-visual {
    display: none;
  }

  .comm-grid,
  .uni-grid,
  .emp-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hood-grid,
  .oc-grid {
    grid-template-columns: 1fr 1fr;
  }

  .path-grid,
  .steps,
  .tgrid {
    grid-template-columns: 1fr;
  }

  .steps {
    background: none;
    border: 2px solid var(--navy);
    border-radius: 14px;
    overflow: hidden;
  }

  .step {
    border: none;
    border-bottom: 2px solid var(--navy);
    border-right: none !important;
  }

  .step:last-child {
    border-bottom: none;
  }

  .urg-in {
    grid-template-columns: 1fr;
  }

  .nlinks {
    display: none;
  }
}

@media (max-width: 600px) {
  .comm-grid,
  .uni-grid,
  .emp-grid,
  .tgrid,
  .hood-grid,
  .oc-grid {
    grid-template-columns: 1fr;
  }

  .why-stats {
    grid-template-columns: 1fr 1fr;
  }
}

#main-content.mockup-body .hood-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

#main-content.mockup-body .oc-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

#main-content.mockup-body .comm-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

#main-content.mockup-body .uni-grid,
#main-content.mockup-body .emp-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

#main-content.mockup-body .path-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

@media (max-width: 1100px) {
  #main-content.mockup-body .hood-grid,
  #main-content.mockup-body .oc-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 960px) {
  #main-content.mockup-body .uni-grid,
  #main-content.mockup-body .emp-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  #main-content.mockup-body .path-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 680px) {
  #main-content.mockup-body .hood-grid,
  #main-content.mockup-body .oc-grid,
  #main-content.mockup-body .comm-grid,
  #main-content.mockup-body .uni-grid,
  #main-content.mockup-body .emp-grid,
  #main-content.mockup-body .path-grid {
    grid-template-columns: 1fr !important;
  }
}

.msg-process-intro {
  margin-bottom: 3rem;
}

@media (max-width: 900px) {
  .msg-process-intro {
    grid-template-columns: 1fr;
    align-items: stretch;
    margin-bottom: 2rem;
  }

  .msg-process-intro .sp {
    align-self: stretch !important;
  }
}

@media (max-width: 1200px) {
  .oinp-top {
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: stretch;
    margin-bottom: 2rem;
  }
}

/* ---- merged block ---- */

/* gnp:footer-css - shared site footer; injected by scripts/apply-mockup-footer.mjs when a page has no .foot-top rules */
footer {
  background: var(--navy);
  padding: 48px 6% 28px;
  color: rgba(255, 255, 255, 0.4);
}

.foot-top {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.fbrand {
  font-family: var(--font-h, Georgia, serif);
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  display: block;
  margin-bottom: 0.6rem;
}

.fbrand-sub {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.fsocial {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.fslink {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.15s;
}

.fslink:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.foot-col h4 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 0.8rem;
}

.foot-col a {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  margin-bottom: 0.4rem;
  transition: color 0.15s;
}

.foot-col a:hover {
  color: #fff;
}

.foot-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.72rem;
}

@media (max-width: 960px) {
  .foot-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .foot-top {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .foot-bottom {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

/* ---- merged block ---- */

@media (max-width: 960px) {
  nav .nbrand-wordmark,
  nav .nb-name {
    display: none !important;
  }
}

/* ---- merged block ---- */

/* gnp:trust-bar - layout only; does not add/delete markup */
.trust .trust-in,
.trust .ts-in {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 14px;
}

.trust .trust-item,
.trust .ti {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.8rem;
  color: var(--muted, #7a7060);
}

.trust .trust-item i,
.trust .ti i {
  flex-shrink: 0;
  color: var(--muted, #7a7060);
  opacity: 0.9;
}

.trust .trust-item strong,
.trust .ti strong {
  color: var(--navy, #1a2332);
  font-weight: 600;
}

.trust .trust-sep,
.trust .tsep {
  width: 1px;
  height: 22px;
  background: var(--border, #d5cfbf);
  flex-shrink: 0;
}

@media (max-width: 960px) {
  .trust .trust-in,
  .trust .ts-in {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .trust .trust-sep,
  .trust .tsep {
    display: none;
  }
}

@media (max-width: 640px) {
  .trust .trust-in,
  .trust .ts-in {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* ---- merged block ---- */

/* Marketing nav aligned with landing (.gnp-home nav in components/marketing/home/home.css). */

.mockup-body > nav.nav,
.mockup-root .mockup-body > nav.nav,
body > nav.nav,
.gnp-mockup-faq .mockup-body > nav.nav {
  position: sticky !important;
  top: 0 !important;
  z-index: 200 !important;
  background: #fffcf5 !important;
  box-sizing: border-box !important;
  margin: 0 !important;
  font-family: "DM Sans", system-ui, sans-serif !important;
  padding: 13px clamp(16px, 6%, 48px) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  height: auto !important;
  color: #1a2332 !important;
}

.mockup-body .nav a.nb,
.mockup-body nav.nav a.nb,
body > .nav a.nb,
.nav a.nb {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  min-width: 0 !important;
  text-decoration: none !important;
  color: #1a2332 !important;
}

.mockup-body .nav .nbrand-mark,
.mockup-body nav.nav .nbrand-mark,
.nav .nbrand-mark {
  flex-shrink: 0 !important;
  width: 28px !important;
  height: 28px !important;
  object-fit: contain !important;
  display: block !important;
}

.mockup-body .nav h2.nbrand-wordmark,
.mockup-body nav.nav h2.nbrand-wordmark,
.nav h2.nbrand-wordmark {
  margin: 0 !important;
  font-family: "Fraunces", Georgia, serif !important;
  font-size: 1.1rem !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
  line-height: 1.1 !important;
  color: #a81f17 !important;
  max-width: min(140px, 48vw) !important;
}

.mockup-body .nav .nb-name,
.nav .nb-name {
  font-family: "Fraunces", Georgia, serif !important;
  font-size: 1.1rem !important;
  font-weight: 800 !important;
  color: #a81f17 !important;
  letter-spacing: -0.02em !important;
}

.mockup-body .nav .nl,
.nav .nl {
  display: flex !important;
  align-items: center !important;
  gap: 1.5rem !important;
  flex-wrap: wrap !important;
}

.mockup-body .nav .nl a,
.nav .nl a {
  font-size: 0.85rem !important;
  font-weight: 400 !important;
  text-decoration: none !important;
  color: #1a2332 !important;
  padding-bottom: 2px !important;
  border-bottom: 2px solid transparent !important;
  transition:
    border-color 0.15s,
    color 0.15s !important;
}

.mockup-body .nav .nl a:hover,
.nav .nl a:hover {
  color: #1a2332 !important;
  border-bottom-color: #1a2332 !important;
}

.mockup-body .nav .nl a.active,
.nav .nl a.active {
  color: #1a2332 !important;
  font-weight: 600 !important;
  border-bottom-color: #1a2332 !important;
}

.mockup-body .nav a.nc,
.mockup-body nav.nav a.nc,
.nav a.nc {
  background: #a81f17 !important;
  color: #fff !important;
  padding: 9px 20px !important;
  border-radius: 6px !important;
  font-size: 0.86rem !important;
  font-weight: 600 !important;
  border: 2px solid #a81f17 !important;
  transition:
    background 0.15s,
    border-color 0.15s !important;
  font-family: "DM Sans", system-ui, sans-serif !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
}

.mockup-body .nav a.nc:hover,
.nav a.nc:hover {
  background: #a81f17 !important;
  border-color: #a81f17 !important;
  filter: brightness(1.05) !important;
}

/* ≤960px: match landing (.gnp-home home.css) - compact bar, safe-area, larger mark + CTA chevron */
@media (max-width: 960px) {
  .mockup-body > nav.nav,
  .mockup-root .mockup-body > nav.nav,
  body > nav.nav,
  .gnp-mockup-faq .mockup-body > nav.nav {
    padding-left: max(12px, 4vw) !important;
    padding-right: max(12px, 4vw) !important;
    padding-top: max(10px, env(safe-area-inset-top, 0px)) !important;
    padding-bottom: 13px !important;
  }

  .mockup-body .nav .nl,
  .nav .nl {
    display: none !important;
  }

  .mockup-body .nav a.nc,
  .mockup-body nav.nav a.nc,
  .nav a.nc {
    flex-shrink: 0 !important;
  }

  .mockup-body .nav .nbrand-wordmark,
  .mockup-body .nav .nb-name,
  .mockup-body nav.nav .nbrand-wordmark,
  .mockup-body nav.nav .nb-name,
  .nav .nbrand-wordmark,
  .nav .nb-name {
    display: none !important;
  }

  .mockup-body .nav .nbrand-mark,
  .mockup-body nav.nav .nbrand-mark,
  .nav .nbrand-mark {
    width: 40px !important;
    height: 40px !important;
  }

  .mockup-body nav.nav a.nc i[class*="fa-"],
  .mockup-body .nav a.nc i[class*="fa-"] {
    font-size: 1.15em !important;
    vertical-align: -0.02em !important;
  }
}

/* ≤640px: match landing .ncta tighten */
@media (max-width: 640px) {
  .mockup-body .nav a.nc,
  .mockup-body nav.nav a.nc,
  .nav a.nc {
    padding: 8px 12px !important;
    font-size: 0.78rem !important;
  }
}

/* ---- merged block ---- */

/* Mobile card/grid stack (≤768px). Generated by scripts/inject-mockup-mobile-card-css.mjs — do not hand-edit. */
@media (max-width: 768px) {
  .comm-grid,
  .emp-grid,
  .foot-top,
  .hero-in,
  .hood-grid,
  .oc-grid,
  .path-grid,
  .tgrid,
  .trust-in,
  .uni-grid,
  .urg-in {
    grid-template-columns: 1fr !important;
  }

  .comm-grid > *,
  .emp-grid > *,
  .foot-top > *,
  .hero-in > *,
  .hood-grid > *,
  .oc-grid > *,
  .path-grid > *,
  .tgrid > *,
  .trust-in > *,
  .uni-grid > *,
  .urg-in > * {
    min-width: 0;
  }

  .steps-row,
  .hiw-steps,
  .hs-steps,
  .install-steps,
  .flow-steps {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .steps-row::before,
  .hiw-steps::before,
  .hs-steps::before,
  .install-steps::before {
    display: none !important;
  }

  .flow-steps::after {
    display: none !important;
  }

  .tl-in .timeline {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }

  .tl-in .timeline::before {
    display: none !important;
  }

  .steps {
    grid-template-columns: 1fr !important;
  }

  .steps::before {
    display: none !important;
  }

  .ov-steps {
    grid-template-columns: 1fr !important;
  }

  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns:1fr 1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr 1fr"],
  [style*="grid-template-columns:repeat(2"],
  [style*="grid-template-columns: repeat(2"],
  [style*="grid-template-columns:repeat(3"],
  [style*="grid-template-columns: repeat(3"],
  [style*="grid-template-columns:repeat(4"],
  [style*="grid-template-columns: repeat(4"],
  [style*="grid-template-columns:repeat(5"],
  [style*="grid-template-columns: repeat(5"],
  [style*="grid-template-columns:repeat(6"],
  [style*="grid-template-columns: repeat(6"],
  [style*="1fr 420px"],
  [style*="180px 1fr"],
  [style*="120px 1fr"] {
    grid-template-columns: 1fr !important;
  }

  .ctable {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .ctable .ct-head,
  .ctable .ct-row {
    min-width: 520px;
  }
}

@media (max-width: 640px) {
  .hero-communities,
  .hero-countries,
  .form-chips {
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 0.5rem 0.65rem !important;
  }

  .comm-tag,
  .hc-tag,
  .form-chip {
    max-width: 100%;
    box-sizing: border-box;
  }
}
/* City landing: defer layout for below-the-fold sections on phones */
@media (max-width: 768px) {
  .communities,
  .hoods,
  .employers,
  .unis,
  .cost,
  .settlement,
  .process,
  .testi,
  .faq,
  .other-cities {
    content-visibility: auto;
  }
}
