@font-face {
    font-family: Marcellus-Regular;
    src: url("../fonts/Marcellus-Regular.woff2") format("woff2"), url("../fonts/Marcellus-Regular.ttf") format("truetype");
    font-display: swap;
}

@font-face {
    font-family: Montserrat-Medium;
    src: url("../fonts/monserat/Montserrat-Medium.woff2") format("woff2"), url("../fonts/monserat/Montserrat-Medium.ttf") format("truetype");
    font-display: swap;
}

@font-face {
    font-family: Montserrat-SemiBold;
    src: url("../fonts/monserat/Montserrat-SemiBold.woff2") format("woff2"), url("../fonts/monserat/Montserrat-SemiBold.ttf") format("truetype");
    font-display: swap;
}

:root {
  --brand: #1b4d8a;
  --brand-d: #123863;
  --brand-l: #3f7ac2;
  --brand-t: #dde9f7;
  --brand-t2: #eef4fb;
  --ink: #16233a;
  --ink-2: #42506a;
  --soft: #748099;
  --line: #e4e9f0;
  --paper: #f6f9fc;
  --panel: #fff;
  --accent: #ff6a5c;
  --accent-d: #f0483a;
  --accent-t: #ffe6e3;
  --amber: #d98a1f;
  --amber-t: #fbeed6;
  --violet: #6a5fe0;
  --violet-t: #eae8fb;
  --rose: #e0577f;
  --rose-t: #fce6ee;
  --blue: #2f6fd0;
  --blue-t: #e4eefb;
  --green: #1fa968;
  --green-t: #e2f5eb;
  --gold: #c79320;
  --teal: #2494a8;
  --teal-t: #e0f1f5;
  --navy: #0f2a4d;
  --ink-deep: #0a1f3a;
  --grad-hero: linear-gradient(160deg, #eef4fb 0%, #f6f9fc 50%, #fff 100%);
  --grad-dark: linear-gradient(150deg, #173d6e 0%, #0f2a4d 55%, #0a1f3a 100%);
  --grad-cta: linear-gradient(135deg, #1b4d8a 0%, #2f6fd0 100%);
  --grad-accent: linear-gradient(135deg, #ff7d70 0%, #f0483a 100%);
  --sh: 0 16px 44px -22px rgba(15, 42, 77, 0.3);
  --sh-sm: 0 4px 16px -8px rgba(15, 42, 77, 0.16);
  --sh-accent: 0 12px 30px -12px rgba(240, 72, 58, 0.45);
  
      --paper-warm: #FBFAF7;
	    --peach-deep: #C97D4F;
		    --peach: #FBEDE4;
			    --r-pill: 999px;
				    --ease: cubic-bezier(.2, .6, .2, 1);
					    --t-wash: #F5FAF9;
						    --t: #3D8B84;
							    --fh: "Merriweather", serif;

}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
html,
body {
    font-family: Montserrat-Medium;
  overflow-x: hidden;
}
body {

  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 560px) {
  .wrap {
    padding: 0 16px;
  }
}
section {
  padding: 72px 0;
}
@media (max-width: 640px) {
  section {
    padding: 52px 0;
  }
}
h1,
h2,
h3,
h4 {
font-family: var(--fh) !important;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
}
h2 {
  font-size: clamp(26px, 4vw, 38px);
  margin-bottom: 14px;
}
h3 {
  font-size: clamp(20px, 2.6vw, 25px);
}
.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: inherit;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 14px;
  font-family: Montserrat-SemiBold;
}
.lead {
  font-size: clamp(16px, 1.5vw, 16px);
  color: var(--ink-2);
  max-width: 100%;
}
.center {
  text-align: center;
}
.center .lead {
  margin-left: auto;
  margin-right: auto;
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: Montserrat-SemiBold;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 12px;
  border: 0;
  cursor: pointer;
  transition: 0.16s;
  text-align: center;
  line-height: 1.2;
}
.btn-primary {
  background: var(--grad-cta);
  color: #fff;
  box-shadow: 0 12px 28px -12px rgba(27, 77, 138, 0.5);
}
.btn-primary:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px -12px rgba(27, 77, 138, 0.55);
}
.btn-accent {
  background: var(--grad-accent);
  color: #fff;
  box-shadow: var(--sh-accent);
}
.btn-accent:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
}
.btn-ghost {
  background: #fff;
  border: 1.6px solid var(--line);
  color: var(--ink);
}
.btn-ghost:hover {
  border-color: var(--brand);
  color: var(--brand-d);
}
.btn-white {
  background: #fff;
  color: var(--brand-d);
}
.btn-white:hover {
  transform: translateY(-1px);
}
.btn-lg {
  padding: 14px 20px;
  font-size: 14px;
}

/* header */
.hd {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.hd-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.hd-logo {
  display: flex;
  align-items: center;
  gap: 9px;
font-family: var(--fh);
  font-weight: 700;
  font-size: 20px;
  color: var(--brand-d);
}
.hd-logo .dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--brand);
  display: inline-block;
}
.hd-nav {
  display: flex;
  gap: 26px;
  align-items: center;
}
.hd-nav a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-2);
}
.hd-nav a:hover {
  color: var(--brand-d);
}
.hd-cta-m {
  display: none;
}
@media (max-width: 860px) {
  .hd-nav {
    display: none;
  }
  .hd-cta-m {
    display: inline-flex;
  }
}

/* hero */
.hero {
    background: var(--grad-hero);
    position: relative;
    overflow: hidden;
    padding: 160px 0 70px !important;
}
.hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -100px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(47, 111, 208, 0.16),
    transparent 70%
  );
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -140px;
  left: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 122, 89, 0.12),
    transparent 70%
  );
  pointer-events: none;
}
.hero .wrap {
  position: relative;
  z-index: 1;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}
.hero h1 {
  font-size: clamp(31px, 5.2vw, 52px);
  margin-bottom: 20px;
}
.hero h1 .hl {
  color: var(--brand-d);
  position: relative;
  white-space: nowrap;
}
.hero .sub {
  font-size: clamp(16px, 1.6vw, 17px);
  color: var(--ink-2);
  margin-bottom: 26px;
  max-width: 60ch;
}
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.hero-badges {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: var(--ink-2);
  font-weight: 500;
}
.hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-badges .ic {
  color: var(--brand);
  font-weight: 800;
}
.hero-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--sh);
  padding: 26px;
  position: relative;
}
.hero-card h3 {
  font-size: 19px;
  margin-bottom: 4px;
}
.hero-card .hc-sub {
  font-size: 13.5px;
  color: var(--soft);
  margin-bottom: 18px;
}
.hstat {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 6px;
}
.hstat .s {
  background: var(--brand-t2);
  border: 1px solid var(--brand-t);
  border-radius: 13px;
  padding: 14px;
}
.hstat .s b {
font-family: var(--fh);
  font-size: 26px;
  color: var(--brand-d);
  display: block;
  line-height: 1;
}
.hstat .s span {
  font-size: 12px;
  color: var(--ink-2);
  margin-top: 5px;
  display: block;
}
.hero-note {
  margin-top: 16px;
  font-size: 12px;
  color: var(--soft);
  display: flex;
  align-items: center;
  gap: 7px;
}

/* compliance banner */
.cbanner {
  background: var(--brand-t2);
  color: var(--ink);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cbanner .wrap {
  display: flex;
  align-items: center;
  gap: 22px;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 22px;
  padding-bottom: 22px;
}
.cbanner .ct {
font-family: var(--fh);
  font-size: clamp(18px, 2.2vw, 23px);
  font-weight: 600;
  max-width: 62ch;
}
.cbanner .ct b {
  color: var(--brand-d);
}
.cbanner .btn {
  flex: 0 0 auto;
}

/* generic band + cards */
.band {
  background: var(--paper);
}
.band-2 {
  background: linear-gradient(180deg, #fff, #f3f7fc);
}
.grid {
  display: grid;
  gap: 20px;
}
.g2 {
  grid-template-columns: repeat(2, 1fr);
}
.g3 {
  grid-template-columns: repeat(3, 1fr);
}
.g4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 900px) {
  .g4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .g3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .g2,
  .g3,
  .g4 {
    grid-template-columns: 1fr;
  }
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  transition: 0.16s;
}
.card:hover {
  box-shadow: var(--sh-sm);
  transform: translateY(-2px);
}
.card .ic {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 23px;
  margin-bottom: 14px;
  background: var(--brand-t);
  color: var(--brand-d);
}
.card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}
.card p {
  font-size: 14.5px;
  color: var(--ink-2);
}
.card.i-mind .ic {
  background: var(--violet-t);
}
.card.i-diet .ic {
  background: var(--green-t);
}
.card.i-move .ic {
  background: var(--amber-t);
}
.card.i-med .ic {
  background: var(--blue-t);
}
.card.i-crisis .ic {
  background: var(--rose-t);
}

/* pillars */
.pillar {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px;
  position: relative;
  overflow: hidden;
}
.pillar::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: var(--brand);
}
.pillar.p-mind::before {
  background: var(--violet);
}
.pillar.p-diet::before {
  background: var(--green);
}
.pillar.p-move::before {
  background: var(--amber);
}
.pillar.p-med::before {
  background: var(--blue);
}
.pillar.p-crisis::before {
  background: var(--rose);
}
.pillar.p-prevent::before {
  background: var(--brand-l);
}
.pillar h3 {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 12px;
  font-size: 19px;
}
.pillar h3 .pi {
  font-size: 24px;
}
.pillar ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.pillar li {
  font-size: 14px;
  color: var(--ink-2);
  padding-left: 24px;
  position: relative;
}
.pillar li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: 800;
}

/* compliance table */
.saha {
  background: var(--grad-dark);
  color: #dcefe9;
  position: relative;
  overflow: hidden;
}
.saha::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -60px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(47, 111, 208, 0.14),
    transparent 70%
  );
  pointer-events: none;
}
.saha .wrap {
  position: relative;
  z-index: 1;
}
.saha .eyebrow {
  color: #8fc0f0;
}
.saha h2 {
  color: #fff;
}
.saha .lead {
  color: #b6d4ce;
}
.saha-legend {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 20px 0 26px;
  font-size: 13px;
}
.saha-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #b6d4ce;
}
.saha-legend i {
  width: 11px;
  height: 11px;
  border-radius: 3px;
  display: inline-block;
}
.saha-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 820px) {
  .saha-list {
    grid-template-columns: 1fr;
  }
}
.saha-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 16px 18px;
  display: flex;
  gap: 14px;
}
.saha-item .num {
font-family: var(--fh);
  font-size: 15px;
  font-weight: 700;
  color: #0f2a4d;
  background: linear-gradient(135deg, #8fc0f0, #2f6fd0);
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.saha-item .st {
  font-size: 14px;
}
.saha-item .st b {
  color: #fff;
  display: block;
  margin-bottom: 3px;
  font-size: 14.5px;
}
.saha-item .st span {
  color: #a9cbc4;
}
.saha-item .st .hq {
  display: inline-block;
  margin-top: 7px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0f2a4d;
  background: #bcdcf7;
  padding: 4px 10px;
  border-radius: 99px;
}
.saha-item .st .hq.partial {
  background: #f4c563;
  color: #4d3305;
}

/* how / steps */
.steps {
  counter-reset: s;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 900px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .steps {
    grid-template-columns: 1fr;
  }
}
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
  position: relative;
}
.step .n {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--grad-cta);
  color: #fff;
font-family: var(--fh);
  font-weight: 700;
  font-size: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}
.step h3 {
  font-size: 17px;
  margin-bottom: 7px;
}
.step p {
  font-size: 13.5px;
  color: var(--ink-2);
}

/* stats strip */
.stats {
  background: var(--grad-cta);
  color: #fff;
}
.stats .grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 700px) {
  .stats .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.stat b {
font-family: var(--fh);
  font-size: clamp(30px, 4vw, 44px);
  display: block;
  line-height: 1;
}
.stat span {
  font-size: 13.5px;
  opacity: 0.9;
  margin-top: 6px;
  display: block;
}

/* comparison */
.ctable {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--sh-sm);
}
.ctable th,
.ctable td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.ctable th {
  background: var(--grad-cta);
  color: #fff;
  font-weight: 600;
  font-size: 13.5px;
}
.ctable td:first-child {
  font-weight: 600;
  color: var(--ink);
}
.ctable .yes {
  color: var(--green);
  font-weight: 700;
}
.ctable .no {
  color: var(--soft);
}
.ctable tr:last-child td {
  border-bottom: 0;
}
.ctable-wrap {
  overflow-x: auto;
}

/* FAQ */
.faq {
  max-width: 840px;
  margin: 0 auto;
}
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 13px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq summary {
  padding: 14px 20px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--ink);
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
 
  color: var(--brand);
  font-weight: 400;
  flex: 0 0 auto;
  transition: 0.2s;
}
.faq details[open] summary::after {
  transform: rotate(45deg);
}
.faq details[open] summary {
  color: var(--brand-d);
}
.faq .fa {
  padding: 0 22px 20px;
  font-size: 14.5px;
  color: var(--ink-2);
}

/* blogs / governance */
.gov-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 820px) {
  .gov-cards {
    grid-template-columns: 1fr;
  }
}
.gov-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: 0.16s;
  border-top: 4px solid var(--gold);
}
.gov-card:hover {
  box-shadow: var(--sh);
  transform: translateY(-3px);
}
.gov-card .gt {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.gov-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
.gov-card p {
  font-size: 14px;
  color: var(--ink-2);
  flex: 1;
  margin-bottom: 16px;
}
.gov-card .rd {
  font-weight: 600;
  color: var(--brand-d);
  font-size: 14.5px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.gov-card .rd:hover {
  gap: 11px;
}

/* institutional form */
.lead-sec {
  background: var(--grad-dark);
  position: relative;
  overflow: hidden;
}
.lead-sec::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 122, 89, 0.14),
    transparent 70%
  );
  pointer-events: none;
}
.lead-sec .wrap {
  position: relative;
  z-index: 1;
}
.lead-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 860px) {
  .lead-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
.lead-copy {
  color: #dceee9;
}
.lead-copy h2 {
  color: #fff;
}
.lead-copy .lead {
  color: #b6d4ce;
  margin-bottom: 24px;
}
.lead-copy .lc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}
.lead-copy .lc-list li {
  display: flex;
  gap: 12px;
  font-size: 15px;
  color: #dceee9;
}
.lead-copy .lc-list .ci {
  color: #8fc0f0;
  font-weight: 800;
  flex: 0 0 auto;
}
.lead-copy .contact {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 14px;
  color: #b6d4ce;
  line-height: 1.9;
}
.lead-copy .contact a {
  color: #8fc0f0;
  font-weight: 600;
}
.form-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--sh);
}
.form-card h3 {
  font-size: 22px;
  margin-bottom: 4px;
}
.form-card .fsub {
  font-size: 13.5px;
  color: var(--soft);
  margin-bottom: 20px;
}
.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 480px) {
  .frow {
    grid-template-columns: 1fr;
  }
}
.fld {
  margin-bottom: 15px;
}
.fld label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
  margin-bottom: 6px;
}
.fld input,
.fld select,
.fld textarea {
  width: 100%;
  padding: 12px 13px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-family: Montserrat-SemiBold;
  font-size: 14.5px;
  color: var(--ink);
  outline: 0;
  background: #fff;
}
.fld input:focus,
.fld select:focus,
.fld textarea:focus {
  border-color: var(--brand);
}
.fld .req {
  color: var(--rose);
}
.form-card .consent {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  font-size: 12.5px;
  color: var(--soft);
  margin: 6px 0 16px;
}
.form-card .consent input {
  margin-top: 3px;
  accent-color: var(--brand);
  flex: 0 0 auto;
}
.form-msg {
  padding: 13px 15px;
  border-radius: 10px;
  font-size: 14px;
  margin-top: 12px;
  display: none;
}
.form-msg.ok {
  display: block;
  background: var(--green-t);
  color: #1c6b3f;
  border: 1px solid #b9e0c8;
}

/* footer */
.ft {
  background: #0b2b28;
  color: #a9cbc4;
  padding: 52px 0 30px;
  font-size: 14px;
}
.ft-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 34px;
  margin-bottom: 34px;
}
@media (max-width: 820px) {
  .ft-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 520px) {
  .ft-grid {
    grid-template-columns: 1fr;
  }
}
.ft h4 {
  color: #fff;
  font-family: Montserrat-SemiBold;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.ft a {
  color: #a9cbc4;
  display: block;
  margin-bottom: 9px;
  font-size: 14px;
}
.ft a:hover {
  color: #8fc0f0;
}
.ft-brand {
font-family: var(--fh);
  font-size: 22px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.ft-brand .dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #8fc0f0;
}
.ft-copy {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 22px;
  font-size: 12.5px;
  color: #7c9c96;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.ft-disc {
  margin-top: 14px;
  font-size: 12px;
  color: #6a8983;
  max-width: 80ch;
}

/* section intro helpers */
.sec-intro {
  max-width: 760px;
  margin-bottom: 36px;
}
.sec-intro.center {
  margin-left: auto;
  margin-right: auto;
}
.badge-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 99px;
  padding: 8px 15px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
}
.pill-badge .d {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
}
mark {
  background: var(--brand-t);
  color: var(--brand-d);
  padding: 0 4px;
  border-radius: 3px;
}

/* ---- soft category tints for deliverables ---- */
.card.t-doc {
  background: #f4f8fc;
  border-color: #e0e9f4;
}
.card.t-doc .ic {
  background: #e6eef8;
  color: #3b6aa8;
}
.card.t-care {
  background: #f1f9f5;
  border-color: #dbeee4;
}
.card.t-care .ic {
  background: #e0f0e9;
  color: #1f9268;
}
.card.t-train {
  background: #fdf7ee;
  border-color: #f2e8d6;
}
.card.t-train .ic {
  background: #f6ead6;
  color: #b0781f;
}
.card.t-gov {
  background: #f7f5fc;
  border-color: #e9e3f6;
}
.card.t-gov .ic {
  background: #ece5f6;
  color: #7b5fe0;
}
.card.t-crisis {
  background: #fdf3f6;
  border-color: #f5e0e8;
}
.card.t-crisis .ic {
  background: #f8e4ea;
  color: #d1567a;
}
.card.t-aware {
  background: #fef8f0;
  border-color: #f6ecda;
}
.card.t-aware .ic {
  background: #f9edd8;
  color: #c79320;
}
.deliv-legend {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 18px 0 26px;
  font-size: 13px;
}
.deliv-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ink-2);
  font-weight: 500;
}
.deliv-legend i {
  width: 12px;
  height: 12px;
  border-radius: 4px;
  display: inline-block;
}
/* ---- support protocol flow + escalation matrix ---- */
.flow {
  display: flex;
  align-items: stretch;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}
.flow-step {
  flex: 1;
  min-width: 150px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  gap: 11px;
  align-items: flex-start;
}
.flow-step .fn {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--grad-cta);
  color: #fff;
font-family: var(--fh);
  font-weight: 700;
  font-size: 15px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.flow-step b {
  display: block;
  font-size: 15px;
  margin-bottom: 3px;
}
.flow-step span {
  font-size: 12.5px;
  color: var(--ink-2);
}
.flow-arrow {
  align-self: center;
  color: var(--brand-l);
  font-size: 20px;
  font-weight: 700;
  flex: 0 0 auto;
}
@media (max-width: 820px) {
  .flow-arrow {
    display: none;
  }
  .flow-step {
    min-width: 0;
    flex: 1 1 46%;
  }
}
@media (max-width: 520px) {
  .flow-step {
    flex: 1 1 100%;
  }
}
.matrix-wrap {
  overflow-x: auto;
  border-radius: 14px;
  box-shadow: var(--sh-sm);
}
.matrix {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
  background: #fff;
  min-width: 720px;
}
.matrix th,
.matrix td {
  padding: 14px 15px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.matrix th {
  background: linear-gradient(135deg, #173d6e, #0f2a4d);
  color: #fff;
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.02em;
}
.matrix td:first-child {
  white-space: nowrap;
  font-size: 13.5px;
}
.matrix .lvl-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 7px;
  vertical-align: middle;
}
.matrix tr:last-child td {
  border-bottom: 0;
}
.matrix .lvl-green {
  background: #f1faf5;
}
.matrix .lvl-green .lvl-dot {
  background: #1fa968;
}
.matrix .lvl-yellow {
  background: #fdf9ee;
}
.matrix .lvl-yellow .lvl-dot {
  background: #e0a800;
}
.matrix .lvl-orange {
  background: #fdf4ec;
}
.matrix .lvl-orange .lvl-dot {
  background: #e07a1a;
}
.matrix .lvl-red {
  background: #fdf1f4;
}
.matrix .lvl-red .lvl-dot {
  background: #d94f6f;
}
/* ---- differentiator ---- */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) {
  .diff-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .diff-grid {
    grid-template-columns: 1fr;
  }
}
.diff-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  position: relative;
  border-top: 3px solid transparent;
  border-image: var(--grad-cta) 1;
  border-image-slice: 1;
}
.diff-card {
  border-top: 3px solid #2f6fd0;
}
.diff-card .dn {
font-family: var(--fh);
  font-size: 13px;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.diff-card h3 {
  font-size: 18px;
  margin-bottom: 9px;
  line-height: 1.25;
}
.diff-card p {
  font-size: 14px;
  color: var(--ink-2);
}
.diff-card .vs {
  margin-top: 13px;
  padding-top: 13px;
  border-top: 1px dashed var(--line);
  font-size: 13px;
  color: var(--soft);
}
.diff-card .vs b {
  color: var(--accent-d);
}
/* ---- inline enquiry ---- */
.enquiry-strip {
  background: var(--grad-dark);
  border-radius: 20px;
  padding: 30px 28px;
  color: #fff;
  box-shadow: var(--sh);
  position: relative;
  overflow: hidden;
}
.enquiry-strip.light {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--brand-t);
}
.enq-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 820px) {
  .enq-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.enquiry-strip h3 {
  font-size: clamp(20px, 2.4vw, 26px);
  margin-bottom: 8px;
  color: inherit;
}
.enquiry-strip.light h3 {
  color: var(--brand-d);
}
.enquiry-strip p {
  font-size: 14.5px;
  opacity: 0.92;
  margin-bottom: 0;
}
.enq-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.enq-form input,
.enq-form select {
  flex: 1 1 46%;
  min-width: 0;
  padding: 12px 13px;
  border-radius: 10px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  font-family: Montserrat-SemiBold;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  outline: 0;
}
.enquiry-strip.light .enq-form input,
.enquiry-strip.light .enq-form select {
  border-color: var(--line);
  background: #fff;
}
.enq-form button {
  flex: 1 1 100%;
  padding: 13px;
  border-radius: 10px;
  border: 0;
  background: var(--grad-accent);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  font-family: Montserrat-SemiBold;
  cursor: pointer;
  transition: 0.16s;
  box-shadow: var(--sh-accent);
}
.enquiry-strip.light .enq-form button {
  background: var(--grad-accent);
  color: #fff;
  box-shadow: var(--sh-accent);
}
.enq-form button:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}
.enq-ok {
  flex: 1 1 100%;
  font-size: 13.5px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 9px;
  padding: 10px 12px;
  display: none;
}
.enquiry-strip.light .enq-ok {
  background: var(--green-t);
  color: #1c6b3f;
}
.enq-note {
  font-size: 11.5px;
  opacity: 0.8;
  margin-top: 8px;
  flex: 1 1 100%;
}
/* ---- sticky mobile CTA ---- */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  background: #fff;
  border-top: 1px solid var(--line);
  box-shadow: 0 -6px 20px -10px rgba(15, 42, 77, 0.28);
  padding: 10px 16px;
  display: none;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}
.sticky-cta .sc-txt {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.sticky-cta .sc-txt span {
  display: block;
  font-size: 11px;
  color: var(--soft);
  font-weight: 500;
}
.sticky-cta .btn {
  padding: 11px 18px;
  font-size: 14px;
  white-space: nowrap;
}
@media (max-width: 860px) {
  .sticky-cta {
    display: flex;
  }
  body {
    padding-bottom: 70px;
  }
}


span{
  font-family: Montserrat-Medium;
}


.saha-item .st b{
  font-family: var(--fh);
}

.flow-step{
  display: block;
}

.flow-step b{
   font-family: var(--fh);
}

.flow-step .fn{

  margin-bottom: 7px;
}

.matrix th{
  font-family: var(--fh);
}

.matrix th, .matrix td{
  font-family: Montserrat-Medium;
}

.enquiry-strip p{
  color: #ccc;
}

.stat b{
      font-size: clamp(30px, 4vw, 24px);
}

.diff-card .vs{
  font-family: Montserrat-Medium;
}
.ctable th{
  font-family: var(--fh);
}

.ctable th, .ctable td{
  font-family: Montserrat-Medium;
}


.form-card .fsub{
  font-family: Montserrat-Medium;
}

label{
  font-family: Montserrat-Medium;
}

.form-msg.ok{
  font-family: Montserrat-Medium;
}

.faq summary{
   font-family: var(--fh);
}

.faq .fa{
  font-family: Montserrat-Medium;
}

.faq details[open] summary::after {
  
    top: 16px;
}

.faq .fa {
   
    margin-bottom: 15px;
}

.faq{
  background: initial;
}

.hero-card .hc-sub{
  font-family: Montserrat-Medium;
}

.hero-note{
    font-family: Montserrat-Medium;
}

.hero {
  
    background: #f8f4ec;
}

/* ============================================================
   STUDENT
   ============================================================ */

.student-sec {
  background: linear-gradient(
    180deg,
    var(--peach) 0%,
    var(--paper-warm) 100%
  );
}

.student-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: center;
}

.student-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: var(--peach-deep);
  color: white;
  border-radius: var(--r-pill);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .14em;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(201, 125, 79, .25);
}

.student-sec h2 em.g {
  color: var(--peach-deep);
}

.student-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.student-service {
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  transition: all 260ms var(--ease);
}

.student-service:hover {
  border-color: var(--peach-deep);
  transform: translateY(-3px);
  box-shadow: var(--sh-2);
}

.student-service h4 {
 
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 8px;
  letter-spacing: -.01em;
}

.student-service p {
  font-size: 13.5px;
  color: var(--ink-mid);
  margin: 0;
  line-height: 1.55;
}

.student-inst {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-2xl);
  padding: 40px;
  box-shadow: var(--sh-2);
}

.student-inst h4 {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 400;
  margin: 0 0 14px;
  letter-spacing: -.015em;
}

.student-inst-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.student-inst-list li {
  display: flex;
  gap: 12px;
  font-size: 14.5px;
  color: var(--ink-mid);
  align-items: start;
  line-height: 1.5;
}

.student-inst-list li::before {
  content: '→';
  color: var(--peach-deep);
  font-weight: 700;
  flex-shrink: 0;
}

.student-cta-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.student-cta-alt {
  font-size: 13.5px;
  font-weight: 600;
  color: #1a9e54;
  text-decoration: none;
  transition: .15s;
}

.student-cta-alt:hover {
  color: #127a40;
  text-decoration: underline;
}


/* ============================================================
   INLINE-MOUNTED TOOLS
   ============================================================ */

.hqx-inline-tool {
  background: #fff;
  border: 1px solid var(--line, #E1EBE7);
  border-radius: 20px;
  padding: 22px 20px;
  box-shadow: 0 14px 40px -22px rgba(11, 61, 56, .28);
  max-width: 520px;
  margin: 0 auto;
  width: 100%;
}

.hqx-inline-tool .hqx-inline-head {
  margin-bottom: 16px;
  text-align: center;
}

.hqx-inline-tool .hqx-inline-head h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 20px;
  color: var(--ink, #1F2B37);
  margin: 0 0 5px;
}

.hqx-inline-tool .hqx-inline-head p {
  font-size: 12.5px;
  color: var(--ink-mid, #57697C);
  line-height: 1.5;
  margin: 0;
}

.hqx-inline-tool .hqx-field label {
  font-size: 12.5px;
}

.hqx-inline-tool .hqx-slider {
  margin-bottom: 12px;
}

.hqx-inline-tool .hqx-btn {
  width: 100%;
}

.hqx-inline-tool .hqx-choice {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}


/* ============================================================
   HQX FORM / CALCULATOR
   ============================================================ */

.hqx-field {
  margin-bottom: 15px;
}

.hqx-field label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-2, #354453);
  margin-bottom: 6px;
}

.hqx-field input,
.hqx-field select {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid var(--line, #E1EBE7);
  border-radius: 13px;
  font-family: inherit;
  font-size: 15px;
  background: #fff;
  color: var(--ink);
  transition: .2s;
  box-sizing: border-box;
}

.hqx-field input:focus,
.hqx-field select:focus {
  outline: none;
  border-color: var(--t, #3D8B84);
  box-shadow: 0 0 0 4px var(--t-tint, #E6F2F1);
}

.hqx-field .hqx-err {
  font-size: 11.5px;
  color: #c0553b;
  margin-top: 4px;
  display: none;
}

.hqx-field.bad input,
.hqx-field.bad select {
  border-color: #c0553b;
  background: #fdf4f1;
}

.hqx-field.bad .hqx-err {
  display: block;
}

.hqx-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hqx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 15px 24px;
  border: 0;
  border-radius: 14px;
  font-family: inherit;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: .25s;
  background: linear-gradient(
    135deg,
    var(--t, #3D8B84),
    var(--t-deep, #2E6D67)
  );
  color: #fff;
  box-shadow: 0 10px 26px -8px rgba(61, 139, 132, .55);
}

.hqx-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px -8px rgba(61, 139, 132, .6);
}

.hqx-btn.amber {
  background: linear-gradient(135deg, #F2A93B, #FF9142);
  box-shadow: 0 10px 26px -8px rgba(242, 169, 59, .55);
}

.hqx-btn-ghost {
  background: transparent;
  color: var(--t-deep, #2E6D67);
  border: 1.5px solid var(--line, #E1EBE7);
  box-shadow: none;
}

.hqx-btn-ghost:hover {
  border-color: var(--t, #3D8B84);
  background: var(--t-wash, #F5FAF9);
}

.hqx-slider {
  margin: 16px 0;
}

.hqx-slider .sl-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}

.hqx-slider .sl-top b {
  font-size: 13.5px;
  color: var(--ink-2);
}

.hqx-slider .sl-top .sl-val {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--t-deep, #2E6D67);
}

.hqx-slider input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  height: 7px;
  border-radius: 999px;
  background: var(--t-tint, #E6F2F1);
  outline: none;
  cursor: grab;
}

.hqx-slider input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--t, #3D8B84);
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(61, 139, 132, .5);
  cursor: grab;
}

.hqx-slider input[type="range"]::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--t, #3D8B84);
  border: 3px solid #fff;
  cursor: grab;
}

.hqx-result {
  background: linear-gradient(
    150deg,
    var(--t-wash, #F5FAF9),
    #fff
  );
  border: 1.5px solid var(--t-tint, #E6F2F1);
  border-radius: 18px;
  padding: 22px;
  margin-top: 6px;
  text-align: center;
}

.hqx-result .rbig {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 42px;
  line-height: 1;
  color: var(--t-deep, #2E6D67);
}

.hqx-metric {
  display: flex;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13.5px;
}

.hqx-metric:last-child {
  border-bottom: 0;
}

.hqx-metric b {
  color: var(--ink);
}

.hqx-metric .mv {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  color: var(--t-deep, #2E6D67);
}

.hqx-metric .mv.red {
  color: #c0553b;
}

.hqx-metric .mv.green {
  color: #2d8560;
}

.hqx-note {
  font-size: 11.5px;
  color: var(--ink-soft);
  text-align: center;
  margin-top: 14px;
  line-height: 1.5;
}

.hqx-steps {
  display: flex;
  gap: 6px;
  margin-bottom: 18px;
}

.hqx-steps .st {
  flex: 1;
  height: 4px;
  border-radius: 999px;
  background: var(--line);
}

.hqx-steps .st.on {
  background: var(--t, #3D8B84);
}

.hqx-ok {
  text-align: center;
  padding: 14px 6px;
}

.hqx-ok .okic {
  font-size: 52px;
}

.hqx-ok h3 {
  margin: 10px 0 6px;
}

.hqx-ok .okref {
  font-family: ui-monospace, monospace;
  font-weight: 700;
  color: var(--t-deep);
  background: var(--t-tint);
  border-radius: 8px;
  padding: 5px 12px;
  display: inline-block;
  margin: 6px 0;
}

.hqx-choice {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 6px;
}

.hqx-opt {
  border: 1.5px solid var(--line);
  border-radius: 13px;
  padding: 14px;
  text-align: center;
  cursor: pointer;
  transition: .15s;
  background: #fff;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-2);
}
.hqx-slider .sl-top b{
	    font-family: Montserrat-Medium;
}

.hqx-btn{
	font-family: Montserrat-SemiBold;
	    padding: 15px 16px;
}

.student-service h4{
	font-family: var(--fh);

}

.hqx-opt:hover {
    border-color: var(--t);
    background: var(--t-wash);
    transform: translateY(-2px);
}

.hqx-inline-tool .hqx-inline-head h3{
	font-family: var(--fh);
}

.hqx-opt{
	font-family: var(--fh);
}

.student-service {
   
    background: var(--paper);
    border: 1px solid #eee;
    border-radius: 14px;
    transition: all 260ms var(--ease);
}
.hqx-metric{
	    padding: 6px 0;
}
.hqx-metric b {
    
    font-size: 12px;
}

.hqx-result{
	    padding: 15px;
}
.hqx-field input, .hqx-field select{
	    padding: 10px 15px;
}

.fld input, .fld select, .fld textarea{
	font-family: Montserrat-Medium;
}

.enq-form input, .enq-form select{
		font-family: Montserrat-Medium;
}

.student-service p{
	    color: var(--color-3);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1000px) {
  .student-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 520px) {
  .student-services {
    grid-template-columns: 1fr;
  }

  .hqx-inline-tool {
    padding: 18px 14px;
    border-radius: 16px;
  }
}

@media(max-width: 767px){
      .flow-step {
        flex: 1 1 48%;
    }
    .stat b {
    font-size: clamp(20px, 4vw, 24px);
    word-break: break-word;
}

.m-grd{
  grid-template-columns: repeat(2, 1fr);
}
.faq summary {
    padding: 12px 14px;
    font-size: 14px;
   
}

.faq summary::after{
  right: 9px;
}
}