/* =============================================
   DESIGN TOKENS & ROOT
============================================= */
:root {
  --navy: #1B2254;
  --navy-deep: #0D1338;
  --blue: #1A6FDB;
  --blue-light: #3A8EF6;
  --blue-pale: rgba(26, 111, 219, 0.08);
  --silver: #8FA3B8;
  --white: #FFFFFF;
  --gray-soft: #F4F7FB;
  --gray-mid: #EBF0F7;
  --text-dark: #0F1A33;
  --text-body: #3D4A5C;
  --text-muted: #7A8FA6;
  --border: rgba(27, 34, 84, 0.10);
  --shadow-sm: 0 2px 12px rgba(27, 34, 84, 0.07);
  --shadow-md: 0 8px 32px rgba(27, 34, 84, 0.11);
  --shadow-lg: 0 24px 64px rgba(27, 34, 84, 0.16);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --tr: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

p {
  line-height: 1.78;
}

a {
  text-decoration: none;
  transition: var(--tr);
}

img {
  max-width: 100%;
  height: auto;
}

section {
  position: relative;
  overflow: hidden;
}

/* ---- Utility ---- */
.text-blue {
  color: var(--blue) !important;
}

.text-blue-light {
  color: var(--blue-light) !important;
}

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

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

.text-muted2 {
  color: var(--text-muted);
}

.bg-navy {
  background: var(--navy);
}

.fw-800 {
  font-weight: 800;
}

.fw-900 {
  font-weight: 900;
}

/* ---- Section Label Pill ---- */
.label-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-pale);
  border: 1px solid rgba(26, 111, 219, .18);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.label-pill::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}

.label-pill.light {
  color: rgba(255, 255, 255, .80);
  background: rgba(255, 255, 255, .10);
  border-color: rgba(255, 255, 255, .20);
}

.label-pill.light::before {
  background: rgba(255, 255, 255, .80);
}

/* ---- Display Typography ---- */
.display-hero {
  font-size: clamp(2.3rem, 5.2vw, 3.6rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.display-section {
  font-size: clamp(1.8rem, 3.6vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.025em;
}

/* ---- Buttons ---- */
.btn-primary-yana {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(135deg, var(--blue) 0%, #0D5EC7 100%);
  color: #fff !important;
  border: none;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: var(--tr);
  box-shadow: 0 4px 20px rgba(26, 111, 219, .32);
  white-space: nowrap;
}

.btn-primary-yana:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26, 111, 219, .48);
  background: linear-gradient(135deg, var(--blue-light) 0%, var(--blue) 100%);
}

.btn-outline-yana {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: var(--navy) !important;
  border: 2px solid var(--navy);
  padding: 13px 28px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: var(--tr);
  white-space: nowrap;
}

.btn-outline-yana:hover {
  background: var(--navy);
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-white-yana {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  color: var(--navy) !important;
  border: none;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: var(--tr);
  box-shadow: 0 4px 24px rgba(0, 0, 0, .15);
}

.btn-white-yana:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, .25);
}

.btn-ghost-yana {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, .10);
  color: rgba(255, 255, 255, .90) !important;
  border: 1.5px solid rgba(255, 255, 255, .30);
  padding: 13px 28px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: var(--tr);
  backdrop-filter: blur(8px);
}

.btn-ghost-yana:hover {
  background: rgba(255, 255, 255, .22);
  color: #fff !important;
  border-color: rgba(255, 255, 255, .55);
  transform: translateY(-2px);
}

/* ============================================= */
/* NAVBAR                                        */
/* ============================================= */
#mainNav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  padding: 10px 0;
  background: var(--white);
  box-shadow: 0 1px 32px rgba(27, 34, 84, .09);
  transition: all .4s cubic-bezier(.4, 0, .2, 1);
}

#mainNav.scrolled {
  padding: 10px 0;
}

.navbar-brand img {
  height: 56px;
  width: auto;
  transition: var(--tr);
}

#mainNav.scrolled .navbar-brand img {
  height: 40px;
}

/* Text-logo shown when logo.png is missing */
.logo-fallback {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-fallback .lf1 {
  font-size: 20px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.02em;
  transition: var(--tr);
}

.logo-fallback .lf2 {
  font-size: 10px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: .07em;
  text-transform: uppercase;
  transition: var(--tr);
}

.nav-link-yana {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark) !important;
  padding: 6px 12px !important;
  border-radius: 8px;
  transition: var(--tr);
}

.nav-link-yana:hover {
  color: var(--blue) !important;
}

.nav-pill-cta {
  font-size: 13.5px;
  font-weight: 600;
  background: linear-gradient(135deg, var(--blue) 0%, #0D5EC7 100%);
  color: #fff !important;
  padding: 9px 20px !important;
  border-radius: 50px;
  box-shadow: 0 3px 14px rgba(26, 111, 219, .28);
  transition: var(--tr);
  white-space: nowrap;
}

.nav-pill-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(26, 111, 219, .42);
  color: #fff !important;
}

.nav-phone-yana {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark) !important;
  text-decoration: none;
  transition: var(--tr);
}

.nav-phone-yana:hover {
  color: var(--blue) !important;
}

.navbar-toggler {
  border: 1.5px solid var(--navy);
  border-radius: 6px;
  padding: 4px 6px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Default hamburger icon */
.navbar-toggler-icon {
  width: 20px;
  height: 20px;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%231B2254' stroke-linecap='round' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Close icon when menu is open */
.navbar-toggler:not(.collapsed) .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%231B2254' stroke-linecap='round' stroke-width='2.5' d='M6 6l18 18M6 24L24 6'/%3E%3C/svg%3E");
}

/* ============================================= */
/* HERO  -  Initial Recognition Layer            */
/* ============================================= */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, rgba(7, 10, 29, 0.97) 0%, rgba(13, 27, 79, 0.92) 100%), url('../images/nz-bg.jpg') no-repeat center center / cover;
  color: #fff;
  display: flex;
  align-items: center;
  padding-top: 140px;
  padding-bottom: 64px;
  position: relative;
}

#hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(58, 142, 246, .08) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 20px;
}

.hero-eyebrow .dash {
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--blue-light);
  border-radius: 2px;
}

.hero-hl {
  color: #fff;
}

.hero-hl em {
  font-style: normal;
  color: var(--blue-light);
}

.hero-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.80;
  margin-bottom: 36px;
  max-width: 510px;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

#hero .btn-outline-yana {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.3);
}

#hero .btn-outline-yana:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #fff;
  color: #fff !important;
}

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

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-sm);
}

.trust-pill i {
  color: var(--blue-light);
  font-size: 13px;
}

/* Hero image */
.hero-img-wrap {
  position: relative;
  z-index: 2;
}

.hero-img-bg {
  position: absolute;
  top: -24px;
  left: -24px;
  right: 24px;
  bottom: 24px;
  background: linear-gradient(135deg, rgba(58, 142, 246, .15) 0%, rgba(9, 12, 34, .5) 100%);
  border-radius: 28px;
  z-index: 1;
}

.hero-img-main {
  position: relative;
  z-index: 2;
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  aspect-ratio: 4/5;
  box-shadow: 0 24px 72px rgba(0, 0, 0, .4);
  display: block;
}

.hero-float {
  position: absolute;
  z-index: 3;
  background: rgba(13, 19, 56, 0.85);
  border-radius: var(--radius);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 11px;
  animation: floatY 3.5s ease-in-out infinite;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-float .fi-label {
  color: rgba(255, 255, 255, 0.6) !important;
}

.hero-float .fi-val {
  color: #ffffff !important;
}

.hero-float-1 {
  top: 32px;
  left: -32px;
  animation-delay: 0s;
}

.hero-float-2 {
  bottom: 72px;
  right: -28px;
  animation-delay: 1.8s;
}

@keyframes floatY {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-9px);
  }
}

/* ============================================= */
/* RECOGNITION + SELF-ID                         */
/* ============================================= */
#recognition {
  background: var(--white);
}

.section-pad {
  padding: 120px 0;
}

.section-pad-lg {
  padding: 140px 0;
}

.section-pad-sm {
  padding: 72px 0;
}

.recognition-img {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-xl);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  min-height: 420px;
}

.check-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}

.check-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 2px;
}

.check-row p {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.55;
}

/* ============================================= */
/* REFRAME  (Dark)                               */
/* ============================================= */
#reframe {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
}

#reframe::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.reframe-hl {
  font-size: clamp(1.7rem, 3.2vw, 2.3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.18;
  letter-spacing: -0.025em;
}

.reframe-hl em {
  font-style: normal;
  color: var(--blue-light);
}

.reframe-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, .62);
  line-height: 1.80;
}

.insight-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  height: 100%;
  transition: var(--tr);
}

.insight-card:hover {
  background: rgba(255, 255, 255, .09);
  border-color: rgba(58, 142, 246, .28);
  transform: translateY(-4px);
}

.ic-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(58, 142, 246, .16);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-light);
  font-size: 22px;
  margin-bottom: 18px;
}

.insight-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.insight-card p {
  font-size: 14.5px;
  color: rgba(255, 255, 255, .58);
  margin: 0;
  line-height: 1.70;
}

/* ============================================= */
/* PATHWAY + JOURNEY STEPS                       */
/* ============================================= */
#pathway {
  background: var(--gray-soft);
}

.pillar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 22px;
  text-align: center;
  transition: var(--tr);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.pillar-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  opacity: 0;
  transition: var(--tr);
}

.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.pillar-card:hover::after {
  opacity: 1;
}

.pillar-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: var(--blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 26px;
  margin: 0 auto 18px;
}

.pillar-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.pillar-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.65;
}

/* ============================================= */
/* B2B PARTNERSHIP SECTION                       */
/* ============================================= */
#b2b {
  background: var(--white);
}

.b2b-img {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-xl);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  min-height: 420px;
}

/* ============================================= */
/* GUIDANCE  (Dark)                              */
/* ============================================= */
#guidance {
  background: linear-gradient(150deg, #0F1338 0%, var(--navy) 50%, #0A1128 100%);
}

#guidance::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(26, 111, 219, .10) 0%, transparent 68%);
  border-radius: 50%;
  pointer-events: none;
}

.guidance-hl {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.18;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}

.guidance-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, .62);
  line-height: 1.80;
  margin-bottom: 32px;
}

.guidance-img {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-xl);
  object-fit: cover;
  box-shadow: 0 28px 64px rgba(0, 0, 0, .35);
  min-height: 420px;
}

.svc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.svc-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: var(--radius);
  padding: 20px;
  transition: var(--tr);
}

.svc-card:hover {
  background: rgba(255, 255, 255, .10);
  border-color: rgba(58, 142, 246, .30);
  transform: translateY(-3px);
}

.svc-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: rgba(58, 142, 246, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-light);
  font-size: 17px;
  margin-bottom: 12px;
}

.svc-card h5 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.svc-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, .54);
  margin: 0;
  line-height: 1.60;
}

/* ============================================= */
/* PURPOSE & STORY                               */
/* ============================================= */
#purpose {
  background: var(--gray-soft);
}

/* Purpose block */
.purpose-block {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-radius: var(--radius-xl);
  padding: 72px 52px;
  position: relative;
  overflow: hidden;
}

.purpose-block::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(26, 111, 219, .12) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.purpose-block::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(58, 142, 246, .08) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.purpose-hl {
  font-size: clamp(1.45rem, 3vw, 1.95rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.purpose-hl em {
  font-style: normal;
  color: var(--blue-light);
}

.purpose-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, .58);
  line-height: 1.78;
  margin-bottom: 0;
}

.vmv-wrap {
  position: relative;
  z-index: 2;
}

.vmv-item {
  padding: 0 24px;
}

.vmv-item+.vmv-item {
  border-left: 1px solid rgba(255, 255, 255, .10);
}

.vmv-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 8px;
}

.vmv-item h4 {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.vmv-item p {
  font-size: 14px;
  color: rgba(255, 255, 255, .56);
  margin: 0;
  line-height: 1.70;
}

.value-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.value-tag {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .78);
  border-radius: 100px;
  padding: 5px 13px;
  font-size: 13px;
  font-weight: 500;
}

/* ============================================= */
/* ACTION  -  Final CTA                          */
/* ============================================= */
#action {
  background: linear-gradient(135deg, var(--blue) 0%, #0D4FBE 50%, var(--navy) 100%);
}

#action::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.action-hl {
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}

.action-sub {
  font-size: 17.5px;
  color: rgba(255, 255, 255, .68);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto 36px;
}

.action-reassure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.action-reassure span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: rgba(255, 255, 255, .58);
  font-weight: 500;
}

.action-reassure i {
  color: rgba(255, 255, 255, .78);
}

/* ============================================= */
/* FOOTER                                        */
/* ============================================= */
#footer {
  background: var(--navy-deep);
  padding: 64px 0 32px;
}

.footer-brand-name {
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
}

.footer-brand-sub {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--blue-light);
  letter-spacing: .07em;
  text-transform: uppercase;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, .42);
  margin-top: 10px;
  line-height: 1.65;
}

.footer-col-head {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .40);
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, .58);
  transition: var(--tr);
}

.footer-links a:hover {
  color: var(--blue-light);
  padding-left: 4px;
}

.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 13px;
}

.footer-contact-row i {
  color: var(--blue-light);
  font-size: 14px;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-row span {
  font-size: 14px;
  color: rgba(255, 255, 255, .58);
  line-height: 1.55;
}

.social-row {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.soc-btn {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .52);
  font-size: 16px;
  transition: var(--tr);
}

.soc-btn:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  transform: translateY(-2px);
}

.footer-hr {
  border-color: rgba(255, 255, 255, .07);
  margin: 40px 0 24px;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, .28);
}

.footer-copy a {
  color: rgba(255, 255, 255, .42);
}

.footer-copy a:hover {
  color: var(--blue-light);
}

/* ============================================= */
/* ENROLLMENT MODAL                              */
/* ============================================= */
#enrollModal .modal-content {
  border-radius: 20px;
  border: none;
  overflow: hidden;
}

.modal-hdr {
  background: linear-gradient(135deg, var(--navy) 0%, #0D1842 100%);
  padding: 30px 36px 26px;
  border: none;
}

.modal-hdr-kicker {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .52);
  margin-bottom: 6px;
}

.modal-hdr-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin: 0;
}

.f-label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
  display: block;
}

.f-label .req {
  color: var(--blue);
}

.f-input {
  border-radius: 10px;
  border: 1.5px solid var(--border);
  padding: 12px 16px;
  font-size: 14.5px;
  color: var(--text-dark);
  font-family: 'Inter', sans-serif;
  transition: var(--tr);
  width: 100%;
}

.f-input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26, 111, 219, .12);
  outline: none;
}

select.f-input {
  cursor: pointer;
}

/* ============================================= */
/* SCROLL REVEAL                                 */
/* ============================================= */
.fup {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}

.fup.in {
  opacity: 1;
  transform: translateY(0);
}

.d1 {
  transition-delay: .10s;
}

.d2 {
  transition-delay: .20s;
}

.d3 {
  transition-delay: .30s;
}

.d4 {
  transition-delay: .40s;
}

.d5 {
  transition-delay: .50s;
}

/* ============================================= */
/* RESPONSIVE                                    */
/* ============================================= */
@media (max-width: 991.98px) {
  #mainNav {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(27, 34, 84, 0.08);
    padding: 10px 0;
  }

  .navbar-collapse {
    background: rgba(255, 255, 255, 0.98);
    padding: 20px;
    border-radius: 12px;
    margin-top: 12px;
    border: 1px solid rgba(27, 34, 84, 0.08);
  }

  .nav-link-yana {
    padding: 10px 16px !important;
  }

  .section-pad {
    padding: 72px 0;
  }

  .section-pad-lg {
    padding: 80px 0;
  }

  #hero {
    padding-top: 120px;
    padding-bottom: 48px;
    text-align: center;
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta-row,
  .hero-trust-row,
  .hero-eyebrow {
    justify-content: center;
  }

  .hero-img-wrap {
    margin-top: 48px;
  }

  .hero-img-bg {
    display: none;
  }

  .hero-float-1,
  .hero-float-2 {
    display: none !important;
  }

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

  .purpose-block {
    padding: 48px 28px;
  }

  .vmv-item+.vmv-item {
    border-left: none;
    padding-top: 24px;
    margin-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .10);
  }
}

@media (max-width: 767.98px) {

  .hero-float-1,
  .hero-float-2 {
    display: none;
  }

  .purpose-block {
    padding: 36px 18px;
  }
}

@media (max-width: 575.98px) {
  .hero-cta-row {
    flex-direction: column;
  }

  .btn-primary-yana,
  .btn-outline-yana {
    justify-content: center;
  }
}

/* ============================================= */
/* UTILITY & HELPER CLASSES                      */
/* ============================================= */

/* Hero sub paragraph — smaller variant */
.hero-sub-sm {
  font-size: 15px;
  opacity: 0.85;
}

/* Section backgrounds */
.section-dark {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
}

.section-navy {
  background: linear-gradient(150deg, #0F1338 0%, var(--navy) 50%, #0A1128 100%);
  color: #fff;
}

.section-gray {
  background: var(--gray-soft);
}

.section-action {
  background: linear-gradient(135deg, var(--blue) 0%, #0D4FBE 50%, var(--navy) 100%);
}

/* Section content z-index layer */
.section-content {
  z-index: 2;
}

/* VMV row z-index */
.vmv-row {
  z-index: 2;
}

/* Reframe / pullquote blockquote */
.reframe-pullquote {
  max-width: 640px;
  border-left: 3px solid var(--blue-light);
  padding: 18px 24px;
  background: rgba(255, 255, 255, .04);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.pullquote-text {
  font-size: 16.5px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin: 0;
}

/* Side quote blockquote (Why YANA section) */
.side-quote {
  border-left: 3px solid var(--blue-light);
  padding-left: 18px;
  margin: 0;
}

.side-quote-label {
  font-size: 16px;
  color: var(--blue-light);
  font-weight: 600;
  margin: 0 0 6px;
}

.side-quote-body {
  font-size: 14.5px;
  color: rgba(255, 255, 255, .70);
  margin: 0;
}

/* Body text helpers */
.body-lead {
  font-size: 17px;
  color: var(--text-body);
}

.body-note {
  font-size: 15px;
  color: var(--text-muted);
}

/* Section typography helpers */
.section-intro-text {
  font-size: 17px;
  color: var(--text-muted);
}

.section-footnote {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.section-lead-wide {
  font-size: 17px;
  color: var(--text-body);
  max-width: 760px;
  margin: 0 auto;
}

/* Values description text */
.values-desc {
  font-size: 12.5px;
  color: var(--text-muted);
}

/* Small CTA button variant */
.btn-sm-yana {
  font-size: 13.5px !important;
  padding: 11px 22px !important;
}

/* Form submit button — large variant */
.btn-submit-lg {
  padding: 15px 28px;
  font-size: 15.5px;
}

/* Form textarea */
.f-textarea {
  resize: vertical;
}

/* Form checkbox labels */
.check-label {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.check-link {
  color: var(--blue);
  font-weight: 600;
}

.check-link:hover {
  color: var(--blue-light);
}

/* Form privacy note */
.form-privacy-note {
  font-size: 12.5px;
  color: var(--text-muted);
  margin: 0;
  white-space: nowrap;
}

/* Required field asterisk */
.req {
  color: var(--blue);
}

/* ============================================= */
/* PROGRAMME STEPS  (linear storytelling)        */
/* ============================================= */
.programme-steps {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.prog-step {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}

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

.prog-step-num {
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  flex-shrink: 0;
  width: 72px;
  text-align: right;
  padding-top: 4px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.prog-step-body h4 {
  font-size: 19px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.prog-step-body p {
  font-size: 15.5px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.75;
}

/* ============================================= */
/* WHAT YOU'LL GAIN  (outcomes grid)             */
/* ============================================= */
.gains-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gain-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--tr);
}

.gain-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(26, 111, 219, .20);
}

.gain-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 20px;
  flex-shrink: 0;
}

.gain-body h5 {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.gain-body p {
  font-size: 13.5px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.65;
}

/* ============================================= */
/* ACTION SECTION — split layout                 */
/* ============================================= */
#action .action-sub {
  margin: 0 0 20px;
  max-width: 100%;
}

#action .action-reassure {
  justify-content: flex-start;
}

.action-card {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.action-card-title {
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.action-card-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.7;
  margin-bottom: 24px;
}

.action-card .btn-white-yana {
  margin-bottom: 20px;
}

.action-card-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.action-card-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.52);
}

.action-card-meta i {
  color: rgba(58, 142, 246, 0.85);
  font-size: 13px;
}

/* ============================================= */
/* MODAL — GUIDED ONBOARDING SPLIT LAYOUT        */
/* ============================================= */
#enrollModal .modal-dialog {
  max-width: 1000px;
}

#enrollModal .modal-content {
  border-radius: 20px;
  border: none;
  overflow: hidden;
}

.modal-context-panel {
  background: linear-gradient(160deg, var(--navy) 0%, #0A1230 100%);
  position: relative;
  overflow: hidden;
}

.modal-context-panel::after {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(58, 142, 246, .10) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.modal-context-inner {
  padding: 36px 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 26px;
  position: relative;
  z-index: 1;
}

.modal-context-heading {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 8px;
}

.modal-context-text {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.54);
  line-height: 1.70;
  margin: 0;
}

.modal-gain-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modal-gain-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.modal-gain-list i {
  color: var(--blue-light);
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 2px;
}

.modal-context-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius);
  margin-top: auto;
}

.modal-context-note i {
  color: var(--blue-light);
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 2px;
}

.modal-context-note span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.46);
  line-height: 1.6;
}

.modal-form-panel {
  background: #fff;
}

.modal-form-inner {
  height: 100%;
}

.modal-form-intro {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

/* Alert messages inside modal */
.frm-msg {
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.frm-success {
  background: #ECFDF5;
  border: 1px solid #6EE7B7;
  color: #065F46;
}

.frm-error {
  background: #FEF2F2;
  border: 1px solid #FCA5A5;
  color: #991B1B;
}

/* Footer logo */
.footer-logo {
  height: 70px;
  width: auto;
}

/* ============================================= */
/* RESPONSIVE — NEW SECTIONS                     */
/* ============================================= */
@media (max-width: 991.98px) {
  .gains-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .action-card {
    padding: 28px 20px;
  }

  .modal-context-panel {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .modal-context-inner {
    padding: 24px 20px;
    gap: 18px;
  }
}

@media (max-width: 767.98px) {
  .modal-context-panel {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .gains-grid {
    grid-template-columns: 1fr;
  }

  .prog-step {
    flex-direction: column;
    gap: 10px;
  }

  .prog-step-num {
    font-size: 32px;
    width: auto;
    text-align: left;
  }
}

@media (min-width: 992px) {
  #hero .row {
    align-items: center !important;
  }

  .hero-img-wrap {
    height: auto;
  }

  .hero-img-main {
    height: auto;
    max-height: 480px;
    object-fit: cover;
    aspect-ratio: 1.1;
  }
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.4);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}
.whatsapp-float:hover {
  background-color: #128C7E;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.6);
  color: #fff;
}
@media (max-width: 767.98px) {
  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}