/* ─── RESET ─────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
img {
  display: block;
  max-width: 100%;
}
ul {
  list-style: none;
}
a {
  text-decoration: none;
}

/* ─── TOKENS ─────────────────────────────────────── */
:root {
  --navy: #2a4a9f;
  --navy-mid: #1f366b;
  --navy-dark: #182758;
  --gold: #f8b817;
  --gold-dark: #c9a327;
  --white: #ffffff;
  --off-white: #f8f9fb;
  --gray-100: #e8ecf2;
  --gray-300: #d0d8e4;
  --text-dark: #4d4d4d;
  --text-mid: #333333;
  --text-light: #cccccc;
  --teal: #2b6cb0;
  --light-blue: #f0f4fc;
  --green: #37a048;
  --black: #000000;
  --r-6: 6px;
  --r-8: 8px;
  --r-10: 10px;
  --r-12: 12px;
  --r-20: 20px;
  --shadow: 0 4px 20px rgba(13, 27, 62, 0.1);
  --shadow-lg: 0 10px 40px rgba(13, 27, 62, 0.15);
}
h1 {
  font-size: clamp(40px, 5vw, 72px);
  color: var(--white);
  font-weight: bold;
  font-family: "Stack Sans Headline", sans-serif;
  line-height: 1.1;
}
h2 {
  font-size: 48px;
  color: var(--black);
  font-weight: bold;
  font-family: "Stack Sans Headline", sans-serif;
  color: var(--black);
  line-height: 1.3;
}
h3 {
  font-size: 32px;
  color: var(--black);
  font-weight: 400;
  font-family: "Stack Sans Headline", sans-serif;
  color: var(--black);
  line-height: 1.2;
}
h4 {
  font-size: 20px;
  color: var(--black);
  font-weight: bold;
  font-family: "Stack Sans Headline", sans-serif;
  color: var(--black);
  line-height: 1.2;
}
p {
  font-size: 20px;
  font-family: "Stack Sans Headline", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  line-height: 1.5;
}
a {
  font-size: 16px;
  font-family: "Stack Sans Headline", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
}
/* ─── BASE ───────────────────────────────────────── */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-family: "Stack Sans Headline", sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── CONTAINER / LAYOUT ─────────────────────────── */
.container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 72px 0;
}
.section--dark {
  background: var(--navy-dark);
}
.section--gray {
  background: var(--off-white);
}
.section--white {
  background: var(--white);
}
.section--light-blue {
  background: var(--light-blue);
}

/* ─── TYPOGRAPHY UTILITIES ───────────────────────── */
.eyebrow {
  font-size: 20px;
  letter-spacing: 2px;
  text-transform: normal;
  color: var(--black);
}
.eyebrow--light {
  color: rgba(255, 255, 255, 0.5);
}

/* Stack headline: "Headline\nSub in gold" always on separate lines */

.headline-stack span {
  display: block;
  color: var(--gold);
  line-height: 1;
}
.headline-stack--white {
  color: var(--white);
}
.headline-stack--white span {
  color: var(--gold);
}

.headline-lg span {
  color: var(--gold);
}

.body-text {
  font-size: 20px;

  color: var(--text-mid);
}
.body-text--light {
  color: rgba(255, 255, 255, 0.78);
}

.divider {
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}

/* ─── BUTTONS ────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: var(--r-8);
  cursor: pointer;
  transition:
    background 0.2s,
    border-color 0.2s,
    transform 0.2s,
    color 0.2s;
  text-decoration: none;
  border: none;
}
.btn--primary {
  background: var(--gold-dark);
  color: var(--white);
  padding: 10px 16px;
}
.btn--primary:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}
.btn--primary:active {
  background: #b8800f;
  transform: translateY(0);
}

.btn--outline-dark {
  background: var(--white);
  color: var(--black);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  padding: 12px 22px;
}
.btn--outline-dark:hover {
  border-color: var(--white);
  color: var(--white);
  background-color: transparent;
}

.btn--outline-light {
  background: var(--gold-dark);
  color: var(--black);
  padding: 11px 22px;
  font-size: 20px;
  font-weight: 600;
}
.btn--outline-light:hover {
  background: var(--gold-dark);
  color: var(--black);
}

/* ─── FADE-UP ANIMATION ──────────────────────────── */
/* .fade-up {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .6s ease, transform .6s ease;
    } */
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up:nth-child(2) {
  transition-delay: 0.1s;
}
.fade-up:nth-child(3) {
  transition-delay: 0.2s;
}
.fade-up:nth-child(4) {
  transition-delay: 0.3s;
}
@media (prefers-reduced-motion: reduce) {
  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ═══════════════════════════════════════════════════
       HERO
    ══════════════════════════════════════════════════ */
.hero {
  background: var(--navy-dark); /* solid fill — no gradient */
  padding: 80px 0 80px; /* top & bottom 80px */
  overflow: hidden;
  position: relative;
}
/* NO dot overlay, NO accent bar */

.hero__inner {
  width: 45%;
  display: flex;
  align-items: center;
}

/* ── Hero badge pill ── */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--r-20);
  padding: 5px 14px;
}
.hero__badge img {
  background: var(--white);
  padding: 6px 10px;
  border-radius: var(--r-8);
  height: 38px;
  width: auto;
}
.hero__badge p {
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
}

/* ── Hero H1 ── */
.hero__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero__h1 {
  color: var(--white);
}
.hero__h1 span {
  display: block;
  color: var(--gold);
}

.hero-big {
  font-size: 20px;
  color: var(--white);
}
.hero__sub {
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-light);
  max-width: 420px;
  margin-bottom: 20px;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── Hero visual (right col) ── */
.hero__visual {
  position: absolute;
  right: 0;
  top: auto;
  bottom: auto;
  width: 50%;
}

.hero__year {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--gold);
  color: var(--navy);
  font-family: "Barlow", sans-serif;
  font-weight: 900;
  font-size: 26px;
  padding: 6px 16px;
  border-radius: var(--r-6);
  z-index: 3;
  box-shadow: 0 4px 12px rgba(245, 166, 35, 0.4);
}

/* 2×2 image grid — placeholders */
.hero__img-grid {
  display: block;
  border-radius: var(--r-12);
  overflow: hidden;
}

.hero__img-grid .img-ph:nth-child(2) {
  background: #243e70;
}
.hero__img-grid .img-ph:nth-child(3) {
  background: #2a4680;
}
/* placeholder label */

/* ═══════════════════════════════════════════════════
       WHAT IS SFWC + WHO CAN PARTICIPATE
    ══════════════════════════════════════════════════ */
.what__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.what-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.what-para {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.what__grid .faq__header {
  text-align: left;
}
.what__grid .faq-item {
  border-bottom: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 8px;
}
.what__grid .faq-list {
  background: transparent;
  width: 100%;
  border: none;
}
.what__grid .faq-item__q {
  background-color: var(--navy-dark);
  color: var(--white);
  border-radius: 16px;
}
.what__grid .faq-item__a {
  background-color: var(--light-blue);
}
.what__grid .faq-item__a ul li {
  color: #102648;
  font-size: 20px;
  padding: 16px;
  border-bottom: 0.5px solid #102648;
}
.what__grid .faq-item__a ul li:last-child {
  border-bottom: none;
}
.what__grid .faq-item__q.is-active {
  background-color: var(--navy-dark);
}
.what__grid .faq-item.is-open {
  background-color: transparent;
}

/* ═══ SECTOR CARDS ═══ */
.sectors {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  align-content: center;
}
.sector-card {
  background: var(--navy-dark);
  border-radius: var(--r-10);
  padding: 20px 18px;
}
.sector-card__title {
  color: var(--white);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 14px;
}
.sector-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sector-card__list li {
  position: relative;
  padding-left: 24px;
  font-size: 16px;
  line-height: 1.4;
  color: var(--white);
}
.sector-card__list li::before {
  content: "\2714";
  position: absolute;
  left: 0;
  top: 1px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--white);
  color: var(--navy-dark);
  font-size: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media only screen and (max-width: 479px) {
  .sectors { grid-template-columns: 1fr; 
  display: none;}
}


/* ═══════════════════════════════════════════════════
       OUR PROMISE BANNER
    ══════════════════════════════════════════════════ */
.section-promise {
  position: relative;
}
.section-promise img {
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
}

.promise__inner {
  position: absolute;
  top: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: 0.2fr 0.2fr 1fr;
  align-items: stretch;
  gap: 0px;
  z-index: 1;
}
.promise__badge img {
  display: none;
}

.promise__text {
  display: grid;
  gap: 20px;
  align-items: center;
  grid-template-columns: 0.4fr 1fr;
  padding: 100px 20px;
}
.promise__text h2 {
  color: var(--white);
  margin-bottom: 10px;
}
.promise__text h2 span {
  color: var(--gold);
}
.promise__text p {
  font-size: 20px;
  line-height: 1.75;
  color: var(--text-light);
}

/* ═══════════════════════════════════════════════════
       HOW WE MEASURE
    ══════════════════════════════════════════════════ */
.measure__header {
  text-align: center;
  margin-bottom: 44px;
}
.measure__subtitle {
  font-size: 15px;
  color: var(--text-mid);
  max-width: 540px;
  margin: 12px auto 0;
  line-height: 1.75;
}

.dimensions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 32px;
}
.dim-card {
  padding: 28px 24px;
  transition: transform 0.2s ease-out;
}
.dim-card :hover {
  transform: translateY(-5px);
}
.dim-card--perception {
  background: var(--navy);
}
.dim-card--experience {
  background: var(--green);
}
.dim-card--involvement {
  background: var(--gold);
}

.dim-card__icon {
  font-size: 28px;
  margin-bottom: 14px;
  display: block;
  height: 40px;
}
.dim-card h3 {
  margin-bottom: 10px;
  color: var(--white);
}
.dim-card p {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
}

/* ═══════════════════════════════════════════════════
       PARTNERS / EARLIER PARTICIPANTS
    ══════════════════════════════════════════════════ */
.partners__layout {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 40px;
}
.partners__left {
  flex-shrink: 0;
  text-align: center;
}
.partners__heading {
  line-height: 1.15;
  color: var(--black);
}
.partners__heading span {
  color: var(--gold);
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 14px;
  width: 100%;
}
.logo-cell {
  border-radius: var(--r-8);
  border: 1px solid var(--gray-100);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  height: 130px;              /* ← add this */
  transition: box-shadow 0.2s, background 0.2s;
  padding: 10px 12px;
  position: relative;
}
.logo-cell:hover {
  box-shadow: var(--shadow);
  background: var(--white);
}

/* partner image placeholder */
.logo-cell .partner-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.logo-cell .partner-ph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.5px;
  text-align: center;
  line-height: 1.4;
}
.logo-cell .partner-img--sm {
  transform: scale(0.72);
}

/* ═══════════════════════════════════════════════════
       STATS + VISUAL
    ══════════════════════════════════════════════════ */
.stats__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}
.stats__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.stat-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: var(--navy);
  border-radius: var(--r-10);
  padding: 24px;
  border: 1px solid var(--navy);
  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
}
.stat-card:hover {
  transform: translateY(-5px);
  background-color: transparent;
}
.stat-card:hover .stat-card__num {
  color: var(--navy);
}
.stat-card:hover .stat-card__label {
  color: var(--text-dark);
}
.stat-card__num {
  color: var(--gold);
  font-weight: bold;
  line-height: 1.1;
  margin-bottom: 6px;
  transition: color 0.3s ease;
}
.stat-card__label {
  font-size: 16px;
  color: var(--white);
  line-height: 1.55;
  transition: color 0.3s ease;
}

/* full-bleed image placeholder right col */
.stats__visual img {
  width: 100%;
  height: 100%;
}
.stats__visual {
  border-radius: var(--r-12);
  overflow: hidden;
  position: relative;
}
.stats__visual .img-ph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.2);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════
       BUILD SAFER WORKPLACES
    ══════════════════════════════════════════════════ */
.section-build {
  position: relative;
  margin-bottom: 3rem;
  padding: 0;
  background-image: url("../image/build.png");
  background-repeat: no-repeat;
  background-size: cover;
}

.build__visual {
  border-radius: var(--r-12);
  position: absolute;
  right: 0%;
  bottom: 5%;
}
.build__content {
  padding: 130px 0 50px 0;
  width: 50%;
}
.build__content h2 {
  color: var(--white);
}
.build__content p {
  font-size: 16px;
  max-width: 50ch;
}

.build__visual {
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.18);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════
       CRITERIA
    ══════════════════════════════════════════════════ */
.section-criteria {
  position: relative;
}
.criteria__inner {
  display: grid;

  gap: 48px;
  grid-template-columns: 1fr 1fr;
}
.criteria__badge {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  font-size: 50px;

  font-size: 50px;
}

.criteria__badge h2 {
  color: var(--white);
  margin-bottom: 20px;
}
.criteria__badge img {
  position: absolute;
  bottom: -85%;
  width: 250px;
}
.criteria__badge h2 span {
  color: var(--gold);
}

.criteria__list {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.criteria__item {
  display: flex;
  align-items: center;   /* was: flex-start */
  gap: 12px;
}
.criteria__num {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-weight: 800;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.criteria__item span {
  font-size: 20px;
  color: var(--white);
  line-height: 1.6;
  /* remove: padding-top: 2px; */
}

/* ═══════════════════════════════════════════════════
       BADGING
    ══════════════════════════════════════════════════ */
.badging__header {
  text-align: center;
  margin-bottom: 40px;
}
.validity-tag {
  display: inline-block;
  background: var(--gray-100);
  color: var(--text-mid);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--r-20);
  margin-bottom: 10px;
}
.badging__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 32px;
  align-items: center;
}
.badge-col__head {
  padding: 11px 16px;
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
}
.badge-col__head--internal {
  background: var(--navy);
}
.badge-col__head--external {
  background: var(--navy);
}
.badge-col__body {
  border: 1px solid var(--gray-100);
  border-top: none;
  border-radius: 0 0 var(--r-8) var(--r-8);
  padding: 14px 16px;
}
.badge-col__body li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  color: var(--text-dark);
  padding: 6px 0;
  line-height: 1.5;
  border-bottom: 1px solid var(--gray-100);
}
.badge-col__body li:last-child {
  border-bottom: none;
}
.badge-col__body li::before {
  content: "▸";
  font-size: 30px;
  color: var(--navy);
  margin-top: 3px;
  flex-shrink: 0;
}

/* badge centre visual — placeholder */
.badge-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-top: 4px;
}
.badge-ph {
  width: 100%;
  height: auto;
  border-radius: var(--r-8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.5px;
  text-align: center;
  text-transform: uppercase;
  padding: 8px;
  line-height: 1.5;
}
.badge-caption {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.5px;
  text-align: center;
}

/* ═══════════════════════════════════════════════════
       BENEFITS
    ══════════════════════════════════════════════════ */
.benefits__header {
  text-align: center;
  margin-bottom: 44px;
}
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 0;
  row-gap: 48px;
}
.benefit-card {
  background: var(--white);
  border-right: 1px solid #a0bee4;
  padding: 24px 18px;
  text-align: center;
  transition: all 0.2s ease-out;
}
.benefit-card:nth-child(4n) {
  border-right: none;
}
.benefit-card:hover {
  transform: translateY(-3px);
  background-color: var(--navy);
  border-radius: 10px;
}
.benefit-card:hover p,
.benefit-card:hover h4 {
  color: var(--white);
}
.benefit-card__icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 14px;
}
.benefit-card h4 {
  margin-bottom: 8px;
}
.benefit-card p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════
       FOOTER
    ══════════════════════════════════════════════════ */
.footer {
  background: var(--navy);
  padding: 36px 0;
  color: var(--white);
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px 48px;
  flex-wrap: wrap;
}

/* Left — logo + powered by */
.footer__brand {
  display: flex;
  align-items: center;
  gap: 22px;
}
.footer__logo-icon {
    background-color: var(--white);
    padding: 10px;
    border-radius: 10%;
    display: flex;
    align-items: center;
    height: 120px;
    width: 120px;
}
.footer__logo-icon img {
    height: 100px;
    width: 100px;
    display: block;
    align-self: center;
    object-fit: contain;
    margin-left: 3px;
}
.footer__powered-label {
  display: block;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 4px;
}
.footer__powered a {
  display: block;
  width: 23ch;
  max-width: 100%;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.15;
  color: var(--white);
  text-decoration: none;
}
.footer__powered a:hover {
  color: var(--gold);
}

/* Right — contact */
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer__contact-item h3 {
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2px;
}
.footer__contact-item p {
  font-size: 18px;
  color: var(--white);
}
.footer__contact-item a {
  color: var(--white);
  text-decoration: none;
}
.footer__contact-item a:hover {
  text-decoration: underline;
}

/* ═══════════════════════════════════════════════════
       ABOUT PAGE
    ══════════════════════════════════════════════════ */
.about-hero {
  background: var(--navy-dark);
  padding: 130px 0 80px;
  overflow: hidden;
}
.about-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr);
  align-items: center;
  gap: 48px;
}
.about-hero__copy {
  max-width: 760px;
}
.about-hero__copy h1 span {
  display: block;
  color: var(--gold);
}
.about-hero__copy p:last-child {
  max-width: 640px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
}
.about-hero__panel {
  background: var(--white);
  border-radius: var(--r-8);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}
.about-hero__panel img {
  width: 180px;
  margin-bottom: 20px;
}
.about-hero__panel p {
  color: var(--navy-dark);
  font-weight: 700;
}
.about-values__intro {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 38px;
}
.about-values__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--gray-100);
}
.about-value-card {
  min-height: 260px;
  padding: 28px;
  border-right: 1px solid var(--gray-100);
  background: var(--white);
  transition: background 0.2s, transform 0.2s;
}
.about-value-card:last-child {
  border-right: none;
}
.about-value-card:hover {
  background: var(--navy);
  transform: translateY(-3px);
}
.about-value-card span {
  display: block;
  color: var(--gold-dark);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 40px;
}
.about-value-card h3 {
  margin-bottom: 12px;
}
.about-value-card p {
  color: var(--text-mid);
  font-size: 16px;
}
.about-value-card:hover h3,
.about-value-card:hover p {
  color: var(--white);
}
.about-principles__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: start;
}
.about-principles__copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about-principles__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.about-principle {
  background: var(--white);
  border-radius: var(--r-8);
  padding: 24px;
  box-shadow: var(--shadow);
}
.about-principle h3 {
  font-size: 24px;
  margin-bottom: 10px;
}
.about-principle p {
  color: var(--text-mid);
  font-size: 16px;
}
.about-cta__inner {
  max-width: 720px;
}
.about-cta__inner p {
  margin: 16px 0 28px;
}

.about-us .section-build
 {
    background-color: var(--navy-dark);
    padding: 20px 0px;
}

.about-us .section-build .headline-lg {
    color: var(--white);
}


@media only screen and (max-width: 900px) {
  .about-hero__grid,
  .about-principles__grid {
    grid-template-columns: 1fr;
  }
  .about-values__grid,
  .about-principles__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media only screen and (max-width: 560px) {
  .about-hero {
    padding: 60px 0 56px;
  }
  .about-hero__panel {
    padding: 24px;
  }
  .about-values__grid,
  .about-principles__list {
    grid-template-columns: 1fr;
  }
  .about-value-card {
    min-height: 0;
    border-right: none;
    border-bottom: 1px solid var(--gray-100);
  }
  .about-value-card:last-child {
    border-bottom: none;
  }


}

@media only screen and (max-width:425px) {
  .footer__brand {
    display: flex;
    flex-direction: column;
    align-items: start;
  }

  .footer__logo-icon {
  
  height:auto;
 width: 40% !important;
 border-radius: 100px;
}
.footer__logo-icon img {
  height: auto !important;
  
}
}
/* ═══════════════════════════════════════════════════════
   FRAMEWORK PAGE — additional sections
   (Meta Principles / Enablers / Process Flow / FAQ)
═══════════════════════════════════════════════════════ */

/* ── META PRINCIPLES ─────────────────────────────────── */
.meta__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
  margin-bottom: 56px;
}
.meta__copy .eyebrow--light {
  margin-bottom: 10px;
}
.meta__copy p {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.72);
  max-width: 460px;
  margin: 16px 0 26px;
}
.meta__image {
  border-radius: var(--r-12);
  overflow: hidden;
  height: 100%;
}
.meta__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: flex-start;
}
.pillar__icon {
  border-radius: 50%;

  display: flex;

  font-size: 24px;
  margin-bottom: 18px;
}
.pillar__icon img {
  width: 20%;
}
.pillar h3 {
  font-size: 24px;
  color: var(--white);
  margin-bottom: 10px;
}
.pillar p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-light);
}

/* ── ENABLERS (honeycomb) ────────────────────────────── */
.section--enablers {
  background: #eaf1fb;
}
.enablers__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.enablers__copy p {
  font-size: 20px;
  line-height: 1.8;
  color: var(--text-mid);
  max-width: 460px;
  margin-top: 14px;
}

.hex-wrap {
  position: relative;
}
.hex-grid {
  gap: 14px 18px;
  max-width: 380px;
  margin: 0 auto;
}
.hex-grid .hex-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.hex-grid .hex-col--offset {
  margin-top: 56px;
}

.hex {
  position: relative;
  aspect-ratio: 0.92;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px 16px;
}
.hex--outline {
  background: var(--white);
  border: 2px solid var(--navy);
}
.hex--fill {
  background: var(--navy);
}
.hex--light {
  background: var(--white);
  border: 2px solid #b9cbeb;
}
.hex__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hex__icon {
  font-size: 20px;
}
.hex__title {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-size: 12.5px;
  line-height: 1.35;
}
.hex--outline .hex__title,
.hex--light .hex__title {
  color: var(--navy);
}
.hex--fill .hex__title {
  color: var(--white);
}

/* ── PROCESS FLOW ─────────────────────────────────────── */
/* .process__header { text-align: center; margin-bottom: 52px; }
.process__header p.body-text { max-width: 440px; margin: 10px auto 0; text-align: center; }

.process__flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.process__step {
  border-left: 2px solid var(--gold);
  padding-left: 16px;
  position: relative;
}
.process__num {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.process__step-title {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.5;
  margin-bottom: 20px;
  min-height: 38px;
}
.process__icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 14px;
}
.process__label {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--text-dark);
  line-height: 1.35;
} */

.process__flow {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 32px;
}

.process__header p {
  text-align: center;
  width: 30ch;
  margin: 0 auto;
}
.process__step {
  background-image: url("../image/process_img/line.png");
  position: relative;
  background-size: contain;
  background-position: left 10px top 0;
  background-repeat: no-repeat;

  flex: 1 1 15%;
  border-radius: 12px;
  padding: 24px 40px;
  height: 400px;
  cursor: pointer;
  overflow: hidden;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition:
    flex 0.45s ease,
    background 0.45s ease,
    transform 0.45s ease,
    box-shadow 0.45s ease;
}

.process__step.is-active {
  flex: 1 1 20%;
  height: 400px;
  background-color: var(--light-blue);
  transform: translateY(-8px);
}

.process__num {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  transition: color 0.35s ease;
}

.process__step.is-active .process__num {
  color: var(--navy-dark);
}

.process__icon {
  background-color: var(--gold);
  width: 60px;
  height: 60px;
  border: 1px solid var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 8px 0;
}

.process__step-title {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-dark);
  transition:
    max-height 0.4s ease,
    opacity 0.35s ease,
    margin 0.4s ease;
  margin-top: 0;
}

.process__step.is-active .process__step-title {
  max-height: 100px;
  opacity: 1;
  margin-top: 6px;
}

.process__label {
  font-size: 20px;
  font-weight: 600;
  margin-top: 6px;
  width: 15ch;
}
.process__toggle {
  display: none;
} /* hidden on desktop */
/* Responsive: stack on small screens */

/* ── FAQ ──────────────────────────────────────────────── */
/* FAQ answer collapse/expand */
.faq__header {
  text-align: center;
  margin-bottom: 40px;
}
.headline-stack {
  margin: 0 0 8px;
}
.faq__heade .divider {
  width: 60px;
  height: 3px;
  background: #e63946;
  margin: 0 auto;
  margin-bottom: 8px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0px;
  background-color: var(--light-blue);
  width: 70%;
  margin: 0 auto;
  border-radius: 16px;
  border: 0.4px solid var(--black);
}

.faq-item {
  border-bottom: 1px solid #4a4a4a;
  overflow: hidden;
}
.faq-item:last-child {
  border-bottom: none;
}
.faq-item.is-open {
  background-color: var(--navy);
}

.faq-item__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  font-size: 20px;
  user-select: none;
  transition:
    color 0.25s ease,
    background 0.25s ease;
}
.faq-item__q.is-active {
  color: var(--white);
}

.faq-item__chev {
  display: inline-block;
  font-size: 1.4rem;
  line-height: 1;
  transition: transform 0.3s ease;
  margin-left: 12px;
}
.faq-item__q.is-active .faq-item__chev {
  transform: rotate(90deg);
}

.faq-item__a {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 22px;
  transition:
    max-height 0.35s ease,
    opacity 0.3s ease,
    padding 0.3s ease;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--white);
}

.faq-item.is-open:first-child {
  border-radius: 16px 16px 0 0;
}
.faq-item.is-open:last-child {
  border-radius: 0 0 16px 16px;
}
.faq-item.is-open .faq-item__a {
  max-height: 500px;
  opacity: 1;
  padding: 0 22px 20px;
  border-radius: 16px 16px 16px 16px;
}

@media only screen and (max-width:768px) {
  .process__step {
    width: 100%;
  }
  .process__step.is-active {
    height: auto;
    width: 100%;
  }
}

/* ─── ENQUIRY MODAL ──────────────────────────────── */
.modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal.is-open { display: flex; }
.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}
.modal__box {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 860px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--navy-dark);
  border-radius: var(--r-12);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.modal__close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.7;
}
.modal__close:hover { opacity: 1; }
.modal__title {
  color: var(--white);
  font-size: 34px;
  line-height: 1.2;
  margin-bottom: 12px;
}
.modal__sub {
  color: var(--text-light);
  font-size: 14px;
  max-width: 380px;
  margin-bottom: 28px;
}
.modal__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 32px;
}
.modal__field { display: flex; flex-direction: column; }
.modal__field label {
  color: var(--white);
  font-size: 14px;
  margin-bottom: 8px;
}
.modal__field input,
.modal__field select {
  background: var(--light-blue);
  border: 1.5px solid transparent;
  border-radius: var(--r-8);
  padding: 12px 14px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text-mid);
  outline: none;
}
.modal__field input::placeholder { color: #8b93a5; }
.modal__field input:focus,
.modal__field select:focus { border-color: var(--gold); }
.modal__actions { grid-column: 1 / -1; }
.modal__submit {
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-weight: 600;
}
body.modal-open { overflow: hidden; }

@media (max-width: 767px) {
  .modal__form { grid-template-columns: 1fr; }
  .modal__box { padding: 28px 20px; }
  .modal__title { font-size: 26px; }
}

/* ─── SITE NAV ───────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--navy-dark);
  transition: transform 0.35s ease;
  will-change: transform;
}
.site-nav.is-hidden {
  transform: translateY(-100%);
}
.site-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 72px;
}
.site-nav__logo img {
  height: 40px;
  width: auto;
  display: block;
}
.site-nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav__links a {
  color: var(--white);
  font-size: 15px;
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.site-nav__links a:hover {
  opacity: 1;
}
/* .site-nav__cta {
  padding: 10px 20px;
  font-size: 14px;
  flex-shrink: 0;
} */

.site-nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.site-nav__certify {
  background: var(--white);
  color: var(--navy-dark);
  padding: 10px 20px;
  font-size: 14px;
}
.site-nav__certify:hover {
  background: var(--gray-100);
}
.site-nav__login {
  padding: 10px 20px;
  font-size: 14px;
}
body {
  padding-top: 72px;
}
[id] {
  scroll-margin-top: 84px;
}

/* @media (max-width: 900px) {
  .site-nav__links {
    display: none;
  }
} */

/* ─── NAV: MOBILE MENU ───────────────────────────── */
.site-nav__menu {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: flex-end;
}
.site-nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}
.site-nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease;
}

@media (max-width: 900px) {
  .site-nav__burger {
    display: flex;
  }

  .site-nav__menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--navy-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
  }
  .site-nav.is-menu-open .site-nav__menu {
    max-height: 420px;
    padding: 8px 24px 24px;
  }

  .site-nav__links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }
  .site-nav__links li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .site-nav__links a {
    display: block;
    padding: 14px 0;
    font-size: 16px;
  }

  .site-nav__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    width: 100%;
    padding-top: 16px;
  }
  .site-nav__actions .btn {
    justify-content: center;
  }

  .site-nav.is-menu-open .site-nav__burger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .site-nav.is-menu-open .site-nav__burger span:nth-child(2) {
    opacity: 0;
  }
  .site-nav.is-menu-open .site-nav__burger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

.process__header .divider {
  margin-bottom: 18px;
}
/* ═══ CONTACT PAGE ═══ */
.contact-page {
  background: var(--navy-dark);
  padding: 100px 0 100px;
}
.contact-page__header {
  text-align: center;
  margin-bottom: 40px;
}
.contact-page__eyebrow {
  display: block;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 10px;
}
.contact-page__title {
  color: var(--white);
  font-size: 34px;
  line-height: 1.25;
  margin-bottom: 16px;
}
.contact-page__divider {
  margin: 0 auto 18px;
}
.contact-page__sub {
  color: var(--text-light);
  font-size: 14px;
  max-width: 420px;
  margin: 0 auto;
}
.contact-page__form {
  max-width: 900px;
  margin: 0 auto;
}

.contact-page__form .modal__field:last-of-type {
  grid-column: 1 / -1;
}

/* ═══ CONTACT INFO STRIP ═══ */
.contact-info {
  background: var(--light-blue);
  padding: 40px 0;
}
.contact-info__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
}
.contact-info__card {

  border-radius: var(--r-6);
  padding: 14px 18px;
  background-color: var(--white);
}
.contact-info__head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.contact-info__head svg {
  width: 18px;
  height: 18px;
  color: var(--navy);
  flex-shrink: 0;
}
.contact-info__head h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy-dark);
  margin: 0;
}
.contact-info__card p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  margin: 0;
}
.contact-info__card a {
  color: var(--text-dark);
  text-decoration: none;
}
.contact-info__card a:hover {
  color: var(--navy);
  text-decoration: underline;
}

@media only screen and (max-width : 425px) {
  .contact-info__grid {

  display:flex;
  flex-direction: column;
  gap: 2rem;
}
.contact-info__card p , .contact-info__card a{
  font-size: 14px;
}
}

@media only screen and (max-width : 576px) {

.contact-page {
  background: var(--navy-dark);
  padding: 60px 0 60px;
}
  .contact-info__grid {

  display:flex;
  flex-direction: column;
  gap: 2rem;
}
.contact-info__card p , .contact-info__card a{
  font-size: 14px;
}
}


.form-status {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: var(--r-8);
  font-size: 14px;
  line-height: 1.5;
  display: none;
}
.form-status.is-success,
.form-status.is-error {
  display: block;
}
.form-status.is-success {
  background: #effdf3;
  border-left: 4px solid #1a7f37;
  color: #14532d;
}
.form-status.is-error {
  background: #fdecec;
  border-left: 4px solid #c1121f;
  color: #7f1d1d;
}
