/* ===== AMMI-US BRAND IDENTITY ===== */
/* Brand Colors from logo analysis */
/* Primary Blue:  #21409A  */
/* Primary Red:   #D92027  */
/* Text Blue:     #1E3F8A  */
/* Font: Futura / Century Gothic / Montserrat Bold */

:root {
  --blue:        #21409A;
  --blue-dark:   #162D6E;
  --blue-mid:    #1A3580;
  --blue-light:  #3558B8;
  --red:         #D92027;
  --red-dark:    #A8181E;
  --red-light:   #E8353C;
  --white:       #FFFFFF;
  --off-white:   #F7F8FC;
  --light-gray:  #EEF1F8;
  --mid-gray:    #8899BB;
  --dark-gray:   #334466;
  --text-dark:   #0D1B3E;
  --text-mid:    #334466;
  --text-light:  #6677AA;
  --border:      #D8DDED;
  --shadow-sm:   0 2px 10px rgba(33,64,154,0.08);
  --shadow-md:   0 4px 24px rgba(33,64,154,0.14);
  --shadow-lg:   0 8px 48px rgba(33,64,154,0.2);
  --transition:  all 0.3s ease;
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  font-family: 'Montserrat', 'Century Gothic', 'Futura', 'Trebuchet MS', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1,h2,h3,h4 {
  font-family: 'Montserrat', 'Century Gothic', 'Futura', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

.label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 0.75rem;
}

.label-light { color: rgba(255,255,255,0.7); }
.label-blue  { color: var(--blue-light); }

.section-title {
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  color: var(--blue);
  margin-bottom: 1rem;
}
.section-title.light { color: var(--white); }
.section-title.red   { color: var(--red); }

.section-lead {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.85;
  max-width: 680px;
}
.section-lead.light { color: rgba(255,255,255,0.82); }

/* ===== LAYOUT ===== */
.container { max-width:1180px; margin:0 auto; padding:0 2rem; }
.section    { padding:5rem 0; }
.section.compact { padding:3.5rem 0; }

.bg-white   { background: var(--white); }
.bg-light   { background: var(--off-white); }
.bg-blue    { background: var(--blue); }
.bg-dark    { background: var(--blue-dark); }
.bg-red     { background: var(--red); }
.bg-gray    { background: var(--light-gray); }

/* ===== LOGO SVG ===== */
.ammi-logo-svg {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  cursor: pointer;
}

.logo-box {
  position: relative;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}

.logo-box svg { width: 100%; height: 100%; }

.logo-text-stack {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.logo-abbrev {
  font-family: 'Montserrat', 'Century Gothic', 'Futura', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--white);
  letter-spacing: 0.05em;
}

.logo-full {
  font-family: 'Montserrat', 'Century Gothic', 'Futura', sans-serif;
  font-size: 0.58rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.3;
}

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 3px solid var(--blue);
  box-shadow: 0 2px 16px rgba(33,64,154,0.13);
  transition: box-shadow 0.3s ease;
}

#navbar.scrolled {
  box-shadow: 0 4px 28px rgba(33,64,154,0.22);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.4rem 0.7rem;
  border-radius: 4px;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.nav-links a.active { color: var(--white); }

.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 0.45rem 1.1rem !important;
  border-radius: 4px !important;
  font-weight: 700 !important;
}

.nav-cta:hover { background: var(--red-light) !important; }

/* Underline accent for active nav */
.nav-links li { position: relative; }
.nav-links li.active-section > a { color: var(--white); }
.nav-links li.active-section > a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0.7rem;
  right: 0.7rem;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}

/* Page nav tabs */
.page-tabs {
  background: var(--blue);
  border-bottom: 2px solid rgba(255,255,255,0.1);
  display: flex;
  overflow-x: auto;
}

.page-tab {
  padding: 0.65rem 1.5rem;
  color: rgba(255,255,255,0.65);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: var(--transition);
  border: none;
  background: none;
  text-decoration: none;
}

.page-tab:hover { color: var(--white); background: rgba(255,255,255,0.05); }
.page-tab.active { color: var(--white); border-bottom: 3px solid var(--red); }

/* ===== HERO SLIDER ===== */
#hero {
  padding-top: 70px;
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  overflow: hidden;
}

.slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.slide.active { opacity: 1; z-index: 2; }

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 8s ease;
}

.slide.active .slide-bg { transform: scale(1); }

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(22,45,110,0.88) 0%,
    rgba(22,45,110,0.68) 55%,
    rgba(13,27,62,0.45) 100%
  );
}

.slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  z-index: 3;
}

.slide-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
}

.slide-text { }

.slide-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(217,32,39,0.85);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 2px;
  margin-bottom: 1.25rem;
}

.slide-title {
  font-family: 'Montserrat', 'Century Gothic', 'Futura', sans-serif;
  font-size: clamp(2rem, 3.8vw, 3.8rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.slide-title em {
  font-style: normal;
  color: rgba(255,255,255,0.6);
  font-size: 0.65em;
  font-weight: 400;
  display: block;
  letter-spacing: 0.02em;
  margin-bottom: 0.2em;
  text-transform: uppercase;
  font-size: 0.55em;
  letter-spacing: 0.15em;
}

.slide-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.8;
  margin-bottom: 2.25rem;
  max-width: 600px;
}

.slide-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
}

/* Logo card on hero right */
.hero-logo-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  padding: 2.5rem;
  backdrop-filter: blur(12px);
  text-align: center;
}

.hero-logo-card .logo-box-large {
  margin: 0 auto 1.25rem;
  width: 100px;
  height: 100px;
}

.hero-logo-name {
  font-family: 'Montserrat', 'Century Gothic', 'Futura', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}

.hero-logo-full {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.hero-stats-mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.hero-stat {
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 0.875rem;
  text-align: center;
}

.hero-stat-val {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  line-height: 1;
}

.hero-stat-lbl {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-top: 0.2rem;
  text-transform: uppercase;
}

/* Slider navigation */
.slider-nav {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.slider-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.slider-dot.active {
  background: var(--red);
  transform: scale(1.3);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1.1rem;
}

.slider-arrow:hover { background: var(--red); border-color: var(--red); }
.slider-arrow.prev { left: 1.5rem; }
.slider-arrow.next { right: 1.5rem; }

/* Slide progress bar */
.slider-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--red);
  width: 0%;
  z-index: 10;
  transition: width 0.1s linear;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 3px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  font-family: 'Montserrat', 'Century Gothic', 'Futura', sans-serif;
}

.btn-primary {
  background: var(--blue); color: var(--white); border-color: var(--blue);
}
.btn-primary:hover {
  background: var(--blue-dark); border-color: var(--blue-dark);
  transform: translateY(-2px); box-shadow: 0 6px 20px rgba(33,64,154,0.35);
}

.btn-red {
  background: var(--red); color: var(--white); border-color: var(--red);
}
.btn-red:hover {
  background: var(--red-dark); border-color: var(--red-dark);
  transform: translateY(-2px); box-shadow: 0 6px 20px rgba(217,32,39,0.35);
}

.btn-white {
  background: var(--white); color: var(--blue); border-color: var(--white);
}
.btn-white:hover {
  background: var(--light-gray);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1); border-color: var(--white);
}

.btn-blue {
  background: var(--blue); color: var(--white); border-color: var(--blue);
}
.btn-blue:hover {
  background: var(--blue-dark); border-color: var(--blue-dark);
  transform: translateY(-2px);
}

.btn-outline-blue {
  background: transparent; color: var(--blue); border-color: var(--blue);
}
.btn-outline-blue:hover {
  background: var(--blue); color: var(--white);
}

/* ===== SECTION STRIPE ===== */
.stripe {
  height: 5px;
  display: flex;
}
.stripe-blue { flex: 2; background: var(--blue); }
.stripe-red  { flex: 1; background: var(--red); }
.stripe-white{ flex: 0.5; background: var(--white); }

/* ===== PAGE SECTIONS (TABS) ===== */
.page-section { display: none; }
.page-section.active { display: block; }

/* ===== HOMEPAGE SECTIONS ===== */

/* Intro band */
.intro-band {
  background: var(--blue);
  padding: 1.75rem 0;
  border-bottom: 3px solid rgba(255,255,255,0.1);
}

.intro-band-items {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.intro-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: rgba(255,255,255,0.88);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.intro-item i { color: rgba(255,255,255,0.5); font-size: 1rem; }

/* Mission cards */
.mission-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.mission-card {
  background: var(--white);
  border-radius: 8px;
  padding: 2.25rem 2rem;
  border-top: 4px solid var(--blue);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.mission-card:nth-child(1) { border-top-color: var(--blue); }
.mission-card:nth-child(2) { border-top-color: var(--red); }
.mission-card:nth-child(3) { border-top-color: var(--blue-dark); }

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

.mc-icon {
  width: 52px; height: 52px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.3rem;
}

.mc-icon.blue { background: var(--light-gray); color: var(--blue); }
.mc-icon.red  { background: rgba(217,32,39,0.08); color: var(--red); }

.mc-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 0.6rem;
}

.mc-text {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.75;
}

/* ===== CYCLE ===== */
.cycle-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.cycle-flow {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cf-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.85rem 0;
  position: relative;
}

.cf-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 18px; top: 46px; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--blue), var(--red));
  opacity: 0.25;
}

.cf-num {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-family: 'Montserrat', sans-serif;
}

.cf-entity { font-weight: 700; font-size: 0.88rem; color: var(--blue); text-transform: uppercase; letter-spacing: 0.04em; }
.cf-action { font-size: 0.84rem; color: var(--text-mid); line-height: 1.5; }

.cycle-callout {
  background: var(--blue-dark);
  border-radius: 10px;
  padding: 2.25rem;
  color: var(--white);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-top: 1.5rem;
  border-left: 4px solid var(--red);
}

.cycle-callout strong { color: rgba(255,255,255,0.95); font-style: normal; }

/* ===== CDI CARDS ===== */
.cdi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.cdi-card {
  background: var(--white);
  border-radius: 8px;
  padding: 2rem;
  border: 1px solid var(--border);
  border-left: 5px solid var(--blue);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.cdi-card-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
}

.cdi-icon {
  width: 44px; height: 44px;
  background: var(--light-gray);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.cdi-title { font-weight: 700; font-size: 1rem; color: var(--blue); }
.cdi-text { font-size: 0.88rem; color: var(--text-mid); line-height: 1.75; }

.cdi-badge {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.65rem;
  border-radius: 2px;
  margin-top: 0.875rem;
  text-transform: uppercase;
}

/* ===== PILLARS ===== */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.pillar {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 5px; height: 100%;
  background: var(--red);
}

.pillar:hover { background: rgba(255,255,255,0.09); }

.pillar-code {
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(255,255,255,0.08);
  font-family: 'Montserrat', sans-serif;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.pillar-num-tag {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--red); margin-bottom: 0.3rem;
}

.pillar-title {
  font-size: 1.15rem; color: var(--white); margin-bottom: 0.65rem;
}

.pillar-text { font-size: 0.87rem; color: rgba(255,255,255,0.72); line-height: 1.78; }

.pillar-tags {
  display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1rem;
}

.ptag {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.65);
  font-size: 0.7rem; padding: 0.18rem 0.55rem;
  border-radius: 2px; font-weight: 600;
}

/* ===== MBS FLOW ===== */
.mbs-flow {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin: 3rem 0;
}

.mbs-node {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 1.25rem 1.1rem;
  text-align: center;
  min-width: 130px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mbs-node:hover { background: rgba(255,255,255,0.12); }

.mbs-arrow {
  color: var(--red);
  font-size: 1.1rem;
  margin: 0 0.3rem;
  opacity: 0.7;
  display: flex; align-items: center;
}

.mbs-icon { font-size: 1.4rem; color: var(--white); margin-bottom: 0.4rem; }
.mbs-label { font-size: 0.75rem; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 0.04em; }
.mbs-sub { font-size: 0.68rem; color: rgba(255,255,255,0.5); margin-top: 0.15rem; }

/* ===== PRINCIPLES ===== */
.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.principle {
  background: var(--white);
  border-radius: 8px;
  padding: 1.75rem;
  border: 1px solid var(--border);
  border-top: 4px solid var(--blue);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.principle:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.principle:nth-child(1) { border-top-color: var(--blue); }
.principle:nth-child(2) { border-top-color: var(--red); }
.principle:nth-child(3) { border-top-color: var(--blue-dark); }
.principle:nth-child(4) { border-top-color: #1B7A3E; }
.principle:nth-child(5) { border-top-color: #6B42A0; }
.principle:nth-child(6) { border-top-color: #D98A00; }

.pr-num { font-size: 0.7rem; font-weight: 800; letter-spacing: 0.12em; color: var(--mid-gray); margin-bottom: 0.35rem; }
.pr-title { font-size: 1rem; font-weight: 700; color: var(--blue); margin-bottom: 0.5rem; }
.pr-text { font-size: 0.84rem; color: var(--text-mid); line-height: 1.72; }

/* ===== INVESTOR FEATURES ===== */
.investor-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.inv-feat {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.inv-feat:hover { box-shadow: var(--shadow-md); border-color: var(--blue); }

.inv-feat-icon {
  width: 44px; height: 44px;
  background: var(--blue);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1rem;
  flex-shrink: 0;
}

.inv-feat-title { font-weight: 700; font-size: 0.9rem; color: var(--blue); margin-bottom: 0.25rem; }
.inv-feat-text { font-size: 0.83rem; color: var(--text-mid); line-height: 1.65; }

.thesis-box {
  background: var(--blue-dark);
  border-radius: 10px;
  padding: 2.5rem;
  margin-top: 3rem;
  color: var(--white);
}

.thesis-title { font-size: 1.2rem; margin-bottom: 1.5rem; color: var(--white); }

.thesis-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.thesis-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.87rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.55;
}

.thesis-list li::before {
  content: '✓';
  color: var(--red);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05em;
}

/* ===== IMPACT GRID ===== */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.impact-card {
  text-align: center;
  padding: 2rem 1.25rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  transition: var(--transition);
}

.impact-card:hover { background: rgba(255,255,255,0.09); transform: translateY(-3px); }

.impact-icon { font-size: 1.8rem; color: var(--white); margin-bottom: 0.875rem; }
.impact-title { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); margin-bottom: 0.4rem; }
.impact-desc { font-size: 0.8rem; color: rgba(255,255,255,0.62); line-height: 1.6; }

/* ===== PARTNERSHIP ===== */
.partnership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.partner-card {
  background: var(--light-gray);
  border-radius: 8px;
  padding: 1.75rem;
  border-left: 4px solid var(--blue);
  transition: var(--transition);
}

.partner-card:hover { background: var(--white); box-shadow: var(--shadow-md); transform: translateY(-3px); }

.pc-icon { font-size: 1.5rem; color: var(--blue); margin-bottom: 0.7rem; }
.pc-title { font-weight: 700; font-size: 0.9rem; color: var(--blue); margin-bottom: 0.4rem; }
.pc-text { font-size: 0.83rem; color: var(--text-mid); line-height: 1.65; }

/* ===== STRATEGY STEPS ===== */
.strategy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.strategy-card {
  background: var(--white);
  border-radius: 8px;
  padding: 1.75rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.sc-num {
  width: 34px; height: 34px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem; font-weight: 800;
  margin-bottom: 0.875rem;
  font-family: 'Montserrat', sans-serif;
}

.sc-title { font-weight: 700; font-size: 0.9rem; color: var(--blue); margin-bottom: 0.4rem; }
.sc-text { font-size: 0.83rem; color: var(--text-mid); line-height: 1.65; }

/* ===== ECOSYSTEM ===== */
.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

.eco-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 1.5rem 1.1rem;
  text-align: center;
  transition: var(--transition);
}

.eco-card:hover { background: rgba(255,255,255,0.1); }

.eco-center {
  background: var(--red);
  grid-column: 2 / 4;
  border-color: var(--red);
}

.eco-icon { font-size: 1.6rem; color: rgba(255,255,255,0.7); margin-bottom: 0.65rem; }
.eco-center .eco-icon { color: var(--white); font-size: 1.8rem; }
.eco-title { font-weight: 700; font-size: 0.82rem; color: var(--white); margin-bottom: 0.4rem; }
.eco-center .eco-title { font-size: 1rem; }
.eco-text { font-size: 0.75rem; color: rgba(255,255,255,0.58); line-height: 1.6; }
.eco-center .eco-text { color: rgba(255,255,255,0.85); }

/* ===== RISKS ===== */
.risks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

.risk-item {
  display: flex;
  gap: 0.875rem;
  padding: 1.25rem;
  background: var(--white);
  border-radius: 6px;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.risk-item:hover { box-shadow: var(--shadow-sm); border-color: var(--blue); }

.risk-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  margin-top: 6px;
}

.risk-title { font-weight: 700; font-size: 0.88rem; color: var(--blue); margin-bottom: 0.25rem; }
.risk-text  { font-size: 0.82rem; color: var(--text-mid); line-height: 1.6; }

.risk-philosophy {
  background: var(--blue-dark);
  border-radius: 10px;
  padding: 2.5rem;
  margin-top: 2.5rem;
  text-align: center;
  border-left: 5px solid var(--red);
}

.risk-philosophy p {
  font-size: 1.15rem;
  color: var(--white);
  line-height: 1.7;
  font-style: italic;
}

.risk-philosophy strong { color: rgba(255,255,255,0.9); font-style: normal; }

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.vmoa-stack { display: flex; flex-direction: column; gap: 1.1rem; margin-top: 2rem; }

.vmoa-card {
  background: var(--white);
  border-radius: 8px;
  padding: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.vmoa-card:nth-child(1) { border-left: 5px solid var(--blue); }
.vmoa-card:nth-child(2) { border-left: 5px solid var(--red); }
.vmoa-card:nth-child(3) { border-left: 5px solid var(--blue-dark); }

.vmoa-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mid-gray); margin-bottom: 0.35rem; }
.vmoa-text  { font-size: 0.9rem; color: var(--text-dark); line-height: 1.7; }

.obj-list {
  list-style: none;
  counter-reset: obj;
}

.obj-list li {
  counter-increment: obj;
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.87rem;
  color: var(--text-mid);
  line-height: 1.65;
}

.obj-list li::before {
  content: counter(obj, decimal-leading-zero);
  font-weight: 800;
  font-size: 0.78rem;
  color: var(--blue);
  flex-shrink: 0;
  width: 22px;
  font-family: 'Montserrat', sans-serif;
  padding-top: 0.05em;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 860px;
  margin: 3rem auto 0;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 0.6rem;
  transition: var(--transition);
}

.faq-item.open { box-shadow: var(--shadow-sm); }

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.5rem;
  background: var(--white);
  cursor: pointer;
  transition: var(--transition);
}

.faq-q:hover { background: var(--light-gray); }
.faq-item.open .faq-q { background: var(--blue); }

.faq-q-text {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--blue);
  flex: 1;
}

.faq-item.open .faq-q-text { color: var(--white); }

.faq-icon {
  color: var(--blue); font-size: 0.82rem;
  transition: var(--transition); flex-shrink: 0; margin-left: 1rem;
}

.faq-item.open .faq-icon { color: rgba(255,255,255,0.8); transform: rotate(180deg); }

.faq-a {
  display: none;
  padding: 1.5rem;
  background: var(--off-white);
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.82;
  border-top: 1px solid var(--border);
}

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

/* ===== RESEARCH ===== */
.research-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.monitor-list { list-style: none; }

.monitor-list li {
  display: flex;
  gap: 0.75rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.monitor-list li i { color: var(--red); flex-shrink: 0; margin-top: 3px; }
.monitor-title { font-weight: 700; font-size: 0.87rem; color: var(--white); margin-bottom: 0.2rem; }
.monitor-desc  { font-size: 0.8rem; color: rgba(255,255,255,0.52); }

.dataroom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.dr-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.75rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.78);
  transition: var(--transition);
}

.dr-item:hover { background: rgba(255,255,255,0.1); }
.dr-item i { color: var(--red); font-size: 0.74rem; }

.dataroom-cta {
  margin-top: 2rem;
  padding: 2rem;
  background: rgba(217,32,39,0.15);
  border: 1px solid rgba(217,32,39,0.3);
  border-radius: 8px;
  text-align: center;
}

.dataroom-cta p { color: rgba(255,255,255,0.8); font-size: 0.88rem; margin-bottom: 1.25rem; }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-top: 3rem;
}

.contact-types { display: flex; flex-direction: column; gap: 0.875rem; }

.ct-card {
  display: flex;
  gap: 0.875rem;
  padding: 1.25rem;
  background: var(--white);
  border-radius: 6px;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.ct-card:hover { box-shadow: var(--shadow-sm); border-color: var(--blue); }

.ct-icon {
  width: 40px; height: 40px;
  background: var(--blue);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 0.9rem; flex-shrink: 0;
}

.ct-title { font-weight: 700; font-size: 0.88rem; color: var(--blue); margin-bottom: 0.2rem; }
.ct-text  { font-size: 0.82rem; color: var(--text-mid); line-height: 1.55; }

.contact-info-box {
  background: var(--blue-dark);
  border-radius: 8px;
  padding: 1.5rem;
  color: var(--white);
  margin-top: 1.5rem;
}

.ci-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red); margin-bottom: 0.75rem; }
.ci-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: rgba(255,255,255,0.8); margin-bottom: 0.4rem; }
.ci-item i { color: rgba(255,255,255,0.4); }

.form-box {
  background: var(--light-gray);
  border-radius: 10px;
  padding: 2.5rem;
}

.form-box h3 { font-size: 1.2rem; color: var(--blue); margin-bottom: 1.5rem; }

.form-group { margin-bottom: 1.1rem; }

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: 'Montserrat', 'Century Gothic', sans-serif;
  font-size: 0.88rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(33,64,154,0.08);
}

.form-group textarea { min-height: 110px; resize: vertical; }

.form-success {
  display: none;
  padding: 1rem;
  background: rgba(27,122,62,0.1);
  border: 1px solid rgba(27,122,62,0.3);
  border-radius: 4px;
  color: #1B7A3E;
  font-size: 0.85rem;
  font-weight: 700;
  text-align: center;
  margin-top: 1rem;
}

/* ===== DISCLAIMER ===== */
.disclaimer {
  background: var(--blue-dark);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 2rem 0;
}

.disclaimer p {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.75;
  text-align: center;
}

.disclaimer strong { color: rgba(255,255,255,0.5); }

/* ===== FOOTER ===== */
footer {
  background: #060F23;
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}

.footer-brand p {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.48);
  line-height: 1.8;
  margin: 1rem 0 1.5rem;
}

.footer-h {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.875rem;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
.footer-links a { color: rgba(255,255,255,0.52); text-decoration: none; font-size: 0.83rem; transition: var(--transition); }
.footer-links a:hover { color: var(--white); }

.footer-ci { display: flex; align-items: center; gap: 0.4rem; font-size: 0.82rem; color: rgba(255,255,255,0.52); margin-bottom: 0.4rem; }
.footer-ci i { color: var(--red); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.28);
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span { display: block; width: 24px; height: 2px; background: var(--blue); transition: var(--transition); }

.mobile-menu {
  display: none;
  background: var(--blue-dark);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1rem 0;
}

.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; padding: 0 2rem; }
.mobile-menu ul li a { display: block; padding: 0.6rem 0; color: rgba(255,255,255,0.82); text-decoration: none; font-size: 0.88rem; font-weight: 600; border-bottom: 1px solid rgba(255,255,255,0.06); }

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ===== STRIPE DIVIDER ===== */
.stripe-divider { height: 4px; display: flex; }
.sd-blue  { flex: 3; background: var(--blue); }
.sd-red   { flex: 1; background: var(--red); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .slide-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-logo-card { display: none; }
  .mission-cards { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .impact-grid { grid-template-columns: repeat(2,1fr); }
  .ecosystem-grid { grid-template-columns: repeat(2,1fr); }
  .eco-center { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .slide-title { font-size: 1.8rem; }
  .slide-inner { padding: 0 1.5rem; }
  .cdi-grid { grid-template-columns: 1fr; }
  .cycle-wrap { grid-template-columns: 1fr; }
  .principles-grid { grid-template-columns: 1fr; }
  .investor-features { grid-template-columns: 1fr; }
  .thesis-list { grid-template-columns: 1fr; }
  .partnership-grid { grid-template-columns: 1fr; }
  .strategy-grid { grid-template-columns: 1fr; }
  .ecosystem-grid { grid-template-columns: 1fr; }
  .eco-center { grid-column: auto; }
  .risks-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .research-grid { grid-template-columns: 1fr; }
  .dataroom-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .mbs-flow { flex-direction: column; align-items: stretch; }
  .mbs-arrow { transform: rotate(90deg); }
  .section { padding: 3rem 0; }
  .intro-band-items { flex-direction: column; align-items: flex-start; }
  .impact-grid { grid-template-columns: 1fr 1fr; }
  .page-tabs { display: none; }
}

/* ===== NEW MULTI-PAGE STYLES ===== */

/* --- Logo PNG --- */
.logo-img {
  display: block;
  height: auto;
  object-fit: contain;
}
.logo-img--light { /* navbar, aside cards */
  height: 56px;
  width: auto;
}
.logo-img--dark { /* hero slides, page banners, footer */
  height: 64px;
  width: auto;
}
.slide-logo-wrap .logo-img--dark  { height: 90px; }
.page-hero-logo .logo-img--dark   { height: 72px; }
.aside-logo .logo-img--dark       { height: 68px; }
.footer-logo .logo-img--dark      { height: 64px; }

/* --- Navbar (new version) --- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: #ffffff;
  border-bottom: 3px solid var(--blue);
  box-shadow: 0 2px 16px rgba(33,64,154,0.13);
  transition: box-shadow 0.3s ease;
}
.navbar.scrolled {
  box-shadow: 0 4px 28px rgba(33,64,154,0.22);
}
.navbar.page-mode {
  box-shadow: 0 2px 16px rgba(33,64,154,0.13);
}
.navbar-inner {
  max-width: 1400px; margin: 0 auto; padding: 0 2rem;
  height: 80px; display: flex; align-items: center; gap: 0;
}
/* Brand = logo only, no text duplicate */
.navbar-brand {
  display: flex; align-items: center;
  text-decoration: none; flex-shrink: 0;
  margin-right: 2rem;
  padding: 0.5rem 0;
}
.nav-logo { display: flex; align-items: center; }
/* Nav links — horizontal scroll on overflow */
.navbar-nav {
  display: flex; align-items: center; gap: 0;
  flex: 1; flex-wrap: nowrap;
  overflow-x: auto; scrollbar-width: none;
}
.navbar-nav::-webkit-scrollbar { display: none; }
.nav-link {
  display: inline-block;
  padding: 0.55rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: #1a2d5a;
  text-decoration: none;
  border-radius: 4px;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
  letter-spacing: 0.01em;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: 4px; left: 0.9rem; right: 0.9rem; height: 2px;
  background: var(--blue); border-radius: 2px;
  transform: scaleX(0); transition: transform 0.2s ease;
}
.nav-link:hover { color: var(--blue); background: rgba(33,64,154,0.06); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-link.active { color: var(--blue); background: rgba(33,64,154,0.08); }
.nav-link.active::after { transform: scaleX(1); }

/* Contact button */
.nav-contact-btn {
  flex-shrink: 0; margin-left: 1rem;
  padding: 0.55rem 1.25rem; border-radius: 4px;
  background: var(--red); color: white;
  font-weight: 800; font-size: 0.82rem;
  border: none; cursor: pointer;
  display: flex; align-items: center; gap: 0.45rem;
  transition: background 0.2s, transform 0.2s;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.nav-contact-btn:hover { background: var(--red-dark); transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px; flex-shrink: 0;
  margin-left: auto;
}
.hamburger span { display: block; width: 24px; height: 2.5px; background: var(--blue); border-radius: 2px; transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile menu */
.mobile-menu {
  display: none; flex-direction: column;
  padding: 0.5rem 1.5rem 1.5rem;
  background: #ffffff;
  border-top: 1px solid rgba(33,64,154,0.12);
  box-shadow: 0 8px 24px rgba(33,64,154,0.14);
}
.mobile-menu.open { display: flex; }
.mobile-nav-link {
  padding: 0.9rem 0; font-weight: 700; font-size: 0.95rem;
  color: #1a2d5a; text-decoration: none;
  border-bottom: 1px solid rgba(33,64,154,0.08);
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-nav-link:hover { color: var(--blue); padding-left: 0.4rem; }
.mobile-nav-link.active { color: var(--blue); }
.mobile-contact {
  color: var(--red) !important; font-weight: 800;
  margin-top: 0.75rem; border-bottom: none !important;
  font-size: 0.95rem;
}

/* --- Hero Slider (new version) --- */
.hero-slider { position: relative; width: 100%; height: 100vh; min-height: 600px; overflow: hidden; margin-top: 80px; }
.slider-track { position: relative; width: 100%; height: 100%; }
.slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1.2s ease;
  pointer-events: none;
}
.slide.active { opacity: 1; pointer-events: auto; }
.slide-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center center;
  transform: scale(1.04); transition: transform 8s ease;
}
.slide.active .slide-bg { transform: scale(1); }
.slide-overlay {
  position: absolute; inset: 0;
  /* Blue overlay — dark background, white text */
  background: linear-gradient(
    105deg,
    rgba(22,45,110,0.88) 0%,
    rgba(22,45,110,0.68) 55%,
    rgba(13,27,62,0.45) 100%
  );
}
.slide-content {
  position: absolute; inset: 0; display: flex; align-items: center;
}
.slide-inner {
  max-width: 820px; margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: 1fr; align-items: center; width: 100%;
}
.slide-text { }
.slide-eyebrow {
  display: inline-block; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.18em; color: var(--red); margin-bottom: 0.75rem;
  text-transform: uppercase;
}
.slide-title {
  font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 900;
  line-height: 1.12; margin-bottom: 0.5rem; color: #ffffff;
}
.slide-subtitle {
  font-size: 1rem; font-weight: 600; color: rgba(255,255,255,0.85);
  margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.06em;
}
.slide-desc {
  font-size: 1rem; color: rgba(255,255,255,0.82);
  max-width: 600px; line-height: 1.65; margin-bottom: 2rem;
}
.slide-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.slider-progress-bar {
  position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: rgba(255,255,255,0.2); z-index: 10;
}
.slider-progress-fill {
  height: 100%; background: var(--red); width: 0%;
  transition: width 6s linear;
}
.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.3);
  color: #ffffff; width: 48px; height: 48px; border-radius: 50%;
  font-size: 1rem; cursor: pointer; z-index: 10; display: flex;
  align-items: center; justify-content: center; transition: var(--transition);
  backdrop-filter: blur(4px);
}
.slider-arrow:hover { background: var(--red); border-color: var(--red); transform: translateY(-50%) scale(1.08); }
.slider-arrow-prev { left: 1.5rem; }
.slider-arrow-next { right: 1.5rem; }
.slider-dots {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: 0.5rem; z-index: 10;
}
.slider-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.4); border: none; cursor: pointer;
  transition: var(--transition); padding: 0;
}
.slider-dot.active { background: #ffffff; width: 24px; border-radius: 4px; }
.scroll-cue {
  position: absolute; bottom: 2.5rem; right: 2rem;
  color: rgba(255,255,255,0.65); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.1em; display: flex; flex-direction: column;
  align-items: center; gap: 0.4rem; z-index: 10; text-transform: uppercase;
  animation: bounce-down 2s ease infinite;
}
@keyframes bounce-down {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* --- Reveal Animations --- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-item { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-item.revealed { opacity: 1; transform: translateY(0); }
.reveal-item:nth-child(1) { transition-delay: 0.05s; }
.reveal-item:nth-child(2) { transition-delay: 0.12s; }
.reveal-item:nth-child(3) { transition-delay: 0.19s; }
.reveal-item:nth-child(4) { transition-delay: 0.26s; }
.reveal-item:nth-child(5) { transition-delay: 0.33s; }
.reveal-item:nth-child(6) { transition-delay: 0.40s; }

/* --- Sections --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section-label {
  display: inline-block; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--blue);
  margin-bottom: 0.75rem;
}
.section-label.red { color: var(--red); }
.section-label-row { margin-bottom: 0.5rem; }
.section-title { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: var(--text-dark); margin-bottom: 1rem; }
.section-intro { font-size: 1rem; color: var(--text-mid); max-width: 720px; line-height: 1.7; margin-bottom: 2.5rem; }
.section-cta-row { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; margin-top: 2.5rem; }

/* --- MBS Flow Section --- */
.section-mbs-flow { padding: 5rem 0; background: var(--off-white); }
.flow-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; position: relative;
}
.flow-card {
  background: white; border-radius: 12px; padding: 2rem 1.5rem;
  border-top: 3px solid var(--blue); box-shadow: var(--shadow-sm);
  position: relative; transition: var(--transition);
}
.flow-card:nth-child(even) { border-top-color: var(--red); }
.flow-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.flow-num { font-size: 2rem; font-weight: 900; color: var(--light-gray); position: absolute; top: 1rem; right: 1.25rem; line-height: 1; }
.flow-icon { font-size: 1.8rem; color: var(--blue); margin-bottom: 1rem; }
.flow-card:nth-child(even) .flow-icon { color: var(--red); }
.flow-title { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--text-dark); }
.flow-desc { font-size: 0.85rem; color: var(--text-mid); line-height: 1.6; }
.flow-arrow { display: none; }

/* --- CDI Section --- */
.section-cdi { padding: 5rem 0; background: white; }
.cdi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.cdi-text p { color: var(--text-mid); line-height: 1.7; }
.cdi-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.cdi-stat-card {
  background: var(--off-white); border-radius: 12px; padding: 1.5rem;
  text-align: center; border-bottom: 3px solid var(--blue);
  transition: var(--transition);
}
.cdi-stat-card:nth-child(even) { border-bottom-color: var(--red); }
.cdi-stat-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.stat-icon { font-size: 1.5rem; color: var(--blue); margin-bottom: 0.5rem; }
.stat-value { font-size: 1.4rem; font-weight: 900; color: var(--blue); }
.stat-label { font-size: 0.8rem; font-weight: 700; color: var(--text-dark); margin: 0.25rem 0; }
.stat-note { font-size: 0.72rem; color: var(--text-light); }

/* --- Pillars Section --- */
.section-pillars { padding: 5rem 0; background: var(--text-dark); }
.section-pillars .section-title { color: white; }
.section-pillars .section-intro { color: rgba(255,255,255,0.75); }
.pillars-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.pillar-card { border-radius: 12px; padding: 2.5rem 2rem; position: relative; overflow: hidden; transition: var(--transition); }
.pillar-blue { background: var(--blue); color: white; }
.pillar-red  { background: var(--red); color: white; }
.pillar-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.pillar-num { font-size: 3.5rem; font-weight: 900; opacity: 0.12; position: absolute; top: 1rem; right: 1.5rem; line-height: 1; }
.pillar-icon { font-size: 2rem; margin-bottom: 1rem; opacity: 0.9; }
.pillar-title { font-size: 1.05rem; font-weight: 800; margin-bottom: 0.75rem; }
.pillar-desc { font-size: 0.88rem; opacity: 0.85; line-height: 1.6; }

/* --- Stats Section --- */
.section-stats { padding: 3.5rem 0; background: var(--blue); }
.stats-row { display: flex; align-items: center; gap: 0; flex-wrap: wrap; justify-content: space-around; }
.stat-item { text-align: center; padding: 1rem 2rem; }
.stat-big { font-size: 1.9rem; font-weight: 900; color: white; }
.stat-desc { font-size: 0.8rem; color: rgba(255,255,255,0.7); margin-top: 0.25rem; max-width: 160px; line-height: 1.4; }
.stat-divider { width: 1px; height: 50px; background: rgba(255,255,255,0.2); }

/* --- Partnership Preview Section --- */
.section-partnership { padding: 5rem 0; background: var(--off-white); }
.partnership-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.partnership-card { background: white; border-radius: 12px; padding: 2rem 1.5rem; box-shadow: var(--shadow-sm); transition: var(--transition); }
.partnership-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.pcard-icon { font-size: 1.8rem; color: var(--blue); margin-bottom: 1rem; }
.pcard-title { font-size: 0.95rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.5rem; }
.pcard-desc { font-size: 0.85rem; color: var(--text-mid); line-height: 1.6; }

/* --- Page Hero Banner --- */
.page-hero {
  position: relative; overflow: hidden;
  padding: 5rem 0 3.5rem; margin-top: 80px;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.25) 0%, transparent 100%);
}
.page-hero-content { position: relative; z-index: 1; }
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1.5rem; font-size: 0.78rem; color: rgba(255,255,255,0.7); }
.breadcrumb a { color: rgba(255,255,255,0.7); text-decoration: none; }
.breadcrumb a:hover { color: white; }
.breadcrumb i { font-size: 0.6rem; opacity: 0.6; }
.page-hero-logo { margin-bottom: 1.25rem; }
.page-hero-logo svg { width: 70px; height: 56px; }
.page-hero-title { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 900; color: white; margin-bottom: 0.75rem; }
.page-hero-subtitle { font-size: 1rem; color: rgba(255,255,255,0.82); max-width: 580px; line-height: 1.6; }

/* --- Page Content --- */
.page-content { padding: 3rem 0 4rem; }
.content-section { }
.lead-text { font-size: 1.1rem; color: var(--text-mid); line-height: 1.8; max-width: 820px; margin-bottom: 2.5rem; padding: 1.5rem 2rem; background: var(--off-white); border-left: 4px solid var(--blue); border-radius: 0 8px 8px 0; }

/* --- Two-Column Layout --- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; margin-bottom: 3rem; }
.col-text h2 { margin-bottom: 1.25rem; color: var(--text-dark); }
.col-text p { color: var(--text-mid); line-height: 1.7; margin-bottom: 0.75rem; }
.col-text .section-label { display: block; margin-bottom: 0.5rem; }
.aside-card {
  border-radius: 12px; padding: 2.5rem 2rem; color: white;
  text-align: center; display: flex; flex-direction: column; align-items: center;
}
.aside-card.blue { background: var(--blue); }
.aside-card.dark { background: var(--text-dark); }
.aside-logo { margin-bottom: 1.25rem; }
.aside-logo svg { width: 80px; height: 64px; }
.aside-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.aside-card p { font-size: 0.85rem; opacity: 0.8; line-height: 1.5; }

/* --- Three Block --- */
.three-block { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin: 2.5rem 0; }
.block-card { background: var(--off-white); border-radius: 12px; padding: 2rem; text-align: center; }
.block-icon { font-size: 2rem; margin-bottom: 1rem; }
.block-icon.blue { color: var(--blue); }
.block-icon.red  { color: var(--red); }
.block-card h3 { font-size: 1rem; font-weight: 800; margin-bottom: 0.75rem; }
.block-card p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.6; }

/* --- Objectives --- */
.objectives-section h2 { margin-bottom: 1.5rem; }
.objectives-list { display: flex; flex-direction: column; gap: 0.75rem; }
.objective-item { display: flex; align-items: flex-start; gap: 1rem; padding: 1.25rem 1.5rem; background: white; border-radius: 8px; box-shadow: var(--shadow-sm); transition: var(--transition); }
.objective-item:hover { box-shadow: var(--shadow-md); }
.obj-num { font-size: 1.4rem; font-weight: 900; color: var(--blue); opacity: 0.3; flex-shrink: 0; line-height: 1.4; }
.objective-item p { color: var(--text-mid); line-height: 1.65; }

/* --- Four Facts --- */
.four-facts { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; margin: 2rem 0; }
.fact-card { background: white; border-radius: 12px; padding: 2rem 1.5rem; text-align: center; box-shadow: var(--shadow-sm); border-bottom: 3px solid var(--blue); transition: var(--transition); }
.fact-card:nth-child(even) { border-bottom-color: var(--red); }
.fact-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.fact-card i { font-size: 1.8rem; color: var(--blue); margin-bottom: 0.75rem; }
.fact-val { font-size: 1.6rem; font-weight: 900; color: var(--blue); }
.fact-card:nth-child(even) .fact-val { color: var(--red); }
.fact-label { font-size: 0.85rem; font-weight: 700; margin: 0.25rem 0; }
.fact-note { font-size: 0.75rem; color: var(--text-light); line-height: 1.4; }

/* --- Content Pillar --- */
.pillars-full { display: flex; flex-direction: column; gap: 1.5rem; }
.content-pillar { display: grid; grid-template-columns: 56px 1fr; gap: 1.5rem; align-items: start; padding: 1.75rem; background: white; border-radius: 12px; box-shadow: var(--shadow-sm); transition: var(--transition); }
.content-pillar:hover { box-shadow: var(--shadow-md); }
.cp-icon { font-size: 1.6rem; color: var(--blue); background: var(--light-gray); border-radius: 10px; width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; }
.cp-body h3 { font-size: 1rem; font-weight: 800; margin-bottom: 0.5rem; }
.cp-body p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.65; }

/* --- Roadmap --- */
.roadmap-section h2 { margin-bottom: 1rem; }
.roadmap-section p { color: var(--text-mid); margin-bottom: 1.5rem; }
.roadmap-list { display: flex; flex-direction: column; gap: 0.75rem; }
.roadmap-item { display: flex; align-items: flex-start; gap: 1.25rem; padding: 1.25rem 1.5rem; background: white; border-radius: 8px; box-shadow: var(--shadow-sm); }
.rm-step {
  width: 36px; height: 36px; border-radius: 50%; background: var(--blue); color: white;
  font-weight: 800; font-size: 0.85rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.roadmap-item:nth-child(even) .rm-step { background: var(--red); }
.roadmap-item p { color: var(--text-mid); line-height: 1.65; font-size: 0.9rem; }

/* --- Model Pillars --- */
.model-pillar { background: white; border-radius: 16px; padding: 2.5rem; box-shadow: var(--shadow-sm); border-left: 5px solid var(--blue); margin-bottom: 1.5rem; }
.pillar-accent-red { border-left-color: var(--red); }
.mp-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; flex-wrap: wrap; }
.mp-num { font-size: 2.5rem; font-weight: 900; color: var(--light-gray); line-height: 1; }
.mp-icon { font-size: 1.6rem; color: var(--blue); }
.pillar-accent-red .mp-icon { color: var(--red); }
.mp-title { font-size: 1.2rem; font-weight: 800; color: var(--text-dark); }
.mp-text { color: var(--text-mid); line-height: 1.7; margin-bottom: 1.25rem; }
.mp-list { list-style: none; display: grid; grid-template-columns: repeat(2,1fr); gap: 0.5rem; }
.mp-list li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: var(--text-mid); }
.mp-list li i { color: var(--blue); font-size: 0.75rem; }
.pillar-accent-red .mp-list li i { color: var(--red); }

/* --- Flow Timeline --- */
.mbs-flow-visual h2 { margin-bottom: 1.5rem; }
.flow-timeline { display: grid; grid-template-columns: repeat(6,1fr); gap: 0; position: relative; }
.ft-step { text-align: center; padding: 1.5rem 1rem; position: relative; }
.ft-step:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 36px;
  width: 1px; height: 30px; background: var(--border);
}
.ft-icon {
  width: 64px; height: 64px; border-radius: 50%; background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.4rem; margin: 0 auto 1rem;
}
.ft-step:nth-child(even) .ft-icon { background: var(--red); }
.ft-step h4 { font-size: 0.82rem; font-weight: 800; margin-bottom: 0.4rem; color: var(--text-dark); }
.ft-step p { font-size: 0.75rem; color: var(--text-mid); line-height: 1.5; }
.ft-connector { display: none; }

/* --- Investor Grid --- */
.investor-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }
.investor-card { background: white; border-radius: 12px; padding: 1.75rem 1.5rem; box-shadow: var(--shadow-sm); border-top: 3px solid var(--blue); transition: var(--transition); }
.investor-card:nth-child(even) { border-top-color: var(--red); }
.investor-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.inv-icon { font-size: 1.6rem; color: var(--blue); margin-bottom: 0.75rem; }
.investor-card:nth-child(even) .inv-icon { color: var(--red); }
.investor-card h3 { font-size: 0.9rem; font-weight: 800; margin-bottom: 0.5rem; color: var(--text-dark); }
.investor-card p { font-size: 0.82rem; color: var(--text-mid); line-height: 1.55; }

/* --- Thesis --- */
.thesis-section { background: var(--blue); border-radius: 16px; padding: 2.5rem; color: white; }
.thesis-inner h2 { color: white; margin-bottom: 1.25rem; }
.thesis-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; }
.thesis-item { display: flex; gap: 0.75rem; align-items: flex-start; background: rgba(255,255,255,0.1); padding: 1rem; border-radius: 8px; }
.thesis-item i { color: rgba(255,255,255,0.6); margin-top: 3px; flex-shrink: 0; }
.thesis-item p { font-size: 0.88rem; color: rgba(255,255,255,0.9); line-height: 1.55; }
.local-currency-box { background: var(--off-white); border-radius: 12px; padding: 2rem; border-left: 4px solid var(--red); }
.local-currency-box h3 { font-size: 1rem; font-weight: 800; color: var(--text-dark); margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.5rem; }
.local-currency-box h3 i { color: var(--red); }
.local-currency-box p { color: var(--text-mid); line-height: 1.7; font-size: 0.9rem; }

/* --- Sectors --- */
.partnership-sectors { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.sector-card { background: white; border-radius: 12px; padding: 2rem 1.5rem; box-shadow: var(--shadow-sm); text-align: center; transition: var(--transition); border-bottom: 3px solid var(--blue); }
.sector-card:nth-child(even) { border-bottom-color: var(--red); }
.sector-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.sector-icon { font-size: 2rem; color: var(--blue); margin-bottom: 1rem; }
.sector-card:nth-child(even) .sector-icon { color: var(--red); }
.sector-card h3 { font-size: 0.95rem; font-weight: 800; margin-bottom: 0.5rem; }
.sector-card p { font-size: 0.83rem; color: var(--text-mid); line-height: 1.55; }

/* --- Research --- */
.research-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.research-col h2 { margin-bottom: 1rem; }
.research-item { display: flex; gap: 1rem; align-items: flex-start; padding: 1rem; background: var(--off-white); border-radius: 8px; margin-bottom: 0.75rem; }
.research-item i { color: var(--blue); font-size: 1.1rem; flex-shrink: 0; margin-top: 3px; }
.research-item strong { display: block; font-size: 0.9rem; margin-bottom: 0.25rem; }
.research-item p { font-size: 0.82rem; color: var(--text-mid); line-height: 1.5; }
.data-room-card { background: var(--text-dark); border-radius: 16px; padding: 2rem; color: white; }
.dr-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; flex-wrap: wrap; }
.dr-header i { font-size: 1.5rem; color: var(--red); }
.dr-header h2 { color: white; font-size: 1.2rem; }
.badge-proposed { background: var(--red); color: white; font-size: 0.65rem; font-weight: 700; padding: 0.2rem 0.6rem; border-radius: 20px; letter-spacing: 0.08em; text-transform: uppercase; }
.dr-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; margin: 1.25rem 0; }
.dr-list li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; color: rgba(255,255,255,0.8); padding: 0.4rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.dr-list li i { color: var(--red); font-size: 0.75rem; flex-shrink: 0; }
.data-room-card > p { font-size: 0.88rem; color: rgba(255,255,255,0.75); margin-bottom: 0.5rem; }

/* --- FAQ --- */
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: 10px; margin-bottom: 0.75rem; overflow: hidden; transition: box-shadow 0.3s; }
.faq-item.open { box-shadow: var(--shadow-md); border-color: var(--blue); }
.faq-question {
  width: 100%; padding: 1.25rem 1.5rem; background: white;
  border: none; cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; gap: 1rem; font-size: 0.95rem; font-weight: 700;
  color: var(--text-dark); text-align: left; transition: background 0.2s;
  font-family: 'Montserrat','Century Gothic','Futura',sans-serif;
}
.faq-question:hover { background: var(--off-white); }
.faq-item.open .faq-question { background: var(--blue); color: white; }
.faq-icon { flex-shrink: 0; transition: transform 0.3s; color: var(--blue); }
.faq-item.open .faq-icon { color: white; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer.open { max-height: 400px; }
.faq-answer p { padding: 1.25rem 1.5rem; font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; }
.faq-cta { text-align: center; }
.faq-cta p { color: var(--text-mid); margin-bottom: 1rem; }

/* --- Contact --- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.contact-info h2 { margin-bottom: 1rem; }
.contact-info > p { color: var(--text-mid); line-height: 1.7; margin-bottom: 1.5rem; }
.contact-types { display: flex; flex-direction: column; gap: 1rem; }
.contact-type { display: flex; gap: 1rem; align-items: flex-start; padding: 1rem 1.25rem; background: white; border-radius: 8px; box-shadow: var(--shadow-sm); transition: var(--transition); }
.contact-type:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.ct-icon { width: 40px; height: 40px; background: var(--blue); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: white; font-size: 1rem; flex-shrink: 0; }
.contact-type h4 { font-size: 0.9rem; font-weight: 800; margin-bottom: 0.25rem; }
.contact-type p { font-size: 0.82rem; color: var(--text-mid); line-height: 1.5; }
.contact-details p { color: var(--text-mid); line-height: 1.8; }
.contact-details a { color: var(--blue); text-decoration: none; font-weight: 600; }
.contact-details a:hover { text-decoration: underline; }
.contact-form-card { background: white; border-radius: 16px; padding: 2.5rem; box-shadow: var(--shadow-md); }
.contact-form-card h3 { margin-bottom: 1.5rem; font-size: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.78rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.4rem; letter-spacing: 0.03em; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.75rem 1rem; border: 1.5px solid var(--border);
  border-radius: 6px; font-size: 0.9rem; color: var(--text-dark);
  font-family: 'Montserrat','Century Gothic','Futura',sans-serif;
  transition: border-color 0.2s; background: var(--off-white);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--blue); background: white;
}
.form-group textarea { resize: vertical; }
.form-disclaimer { font-size: 0.75rem; color: var(--text-light); text-align: center; margin-top: 0.75rem; line-height: 1.5; }
.form-success { text-align: center; padding: 2rem; }
.form-success i { font-size: 3rem; color: #22c55e; margin-bottom: 1rem; }
.form-success h3 { margin-bottom: 0.75rem; }
.form-success p { color: var(--text-mid); }

/* --- Footer --- */
.site-footer { background: var(--text-dark); color: rgba(255,255,255,0.8); }
.footer-top { padding: 4rem 0 3rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 2.5rem; }
.footer-brand { }
.footer-logo { margin-bottom: 1.25rem; }
.footer-logo svg { width: 80px; height: 64px; }
.footer-tagline { font-size: 0.85rem; line-height: 1.65; margin-bottom: 0.75rem; max-width: 260px; }
.footer-locations, .footer-email { font-size: 0.82rem; margin-bottom: 0.35rem; }
.footer-email a { color: rgba(255,255,255,0.8); text-decoration: none; }
.footer-email a:hover { color: white; }
.footer-nav h4 { font-size: 0.8rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: white; margin-bottom: 1rem; }
.footer-nav ul { list-style: none; }
.footer-nav li { margin-bottom: 0.5rem; }
.footer-nav a { font-size: 0.83rem; color: rgba(255,255,255,0.65); text-decoration: none; transition: color 0.2s; }
.footer-nav a:hover { color: white; }
.footer-cta-block h4 { font-size: 0.8rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: white; margin-bottom: 0.75rem; }
.footer-cta-block p { font-size: 0.82rem; line-height: 1.6; margin-bottom: 1rem; }
.footer-cta-btn { background: var(--red); color: white; border: none; padding: 0.7rem 1.5rem; border-radius: 4px; font-weight: 700; font-size: 0.82rem; cursor: pointer; transition: var(--transition); letter-spacing: 0.04em; }
.footer-cta-btn:hover { background: var(--red-dark); transform: translateY(-2px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 1.5rem 0; text-align: center; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.45); margin-bottom: 0.5rem; }
.footer-notice { max-width: 720px; margin: 0 auto; line-height: 1.6; }

/* --- Btn Secondary --- */
.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.7rem 1.75rem; border-radius: 4px; font-weight: 700;
  font-size: 0.85rem; cursor: pointer; transition: var(--transition);
  letter-spacing: 0.04em; background: white; color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-secondary:hover { background: var(--blue); color: white; transform: translateY(-2px); }

/* ===== RESPONSIVE UPDATES ===== */
@media (max-width: 1200px) {
  .navbar-inner { padding: 0 1.25rem; }
  .nav-link { font-size: 0.78rem; padding: 0.5rem 0.7rem; }
  .navbar-brand { margin-right: 1.25rem; }
}
@media (max-width: 1100px) {
  .navbar-nav { gap: 0; }
  .nav-link { font-size: 0.75rem; padding: 0.45rem 0.6rem; }
  .flow-grid { grid-template-columns: repeat(2,1fr); }
  .pillars-grid { grid-template-columns: 1fr; }
  .partnership-grid { grid-template-columns: repeat(2,1fr); }
  .investor-grid { grid-template-columns: repeat(2,1fr); }
  .four-facts { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .flow-timeline { grid-template-columns: repeat(3,1fr); }
  .thesis-grid { grid-template-columns: 1fr; }
  .partnership-sectors { grid-template-columns: repeat(2,1fr); }
  .dr-list { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .two-col { grid-template-columns: 1fr; }
  .cdi-grid { grid-template-columns: 1fr; }
  .three-block { grid-template-columns: 1fr; }
  .research-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .slide-inner { grid-template-columns: 1fr; }
  .slide-logo-card { display: none; }
  .mp-list { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .navbar-nav { display: none !important; }
  .nav-contact-btn { display: none !important; }
  .hamburger { display: flex !important; }
  .navbar-inner { height: 68px; padding: 0 1rem; }
  .logo-img--light { height: 48px; }
  .hero-slider { min-height: 90vh; }
  .slide-title { font-size: 1.8rem; }
  .flow-grid { grid-template-columns: 1fr; }
  .investor-grid { grid-template-columns: 1fr; }
  .four-facts { grid-template-columns: repeat(2,1fr); }
  .partnership-sectors { grid-template-columns: 1fr; }
  .stats-row { flex-direction: column; }
  .stat-divider { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .flow-timeline { grid-template-columns: repeat(2,1fr); }
  .form-row { grid-template-columns: 1fr; }
  .cdi-stats { grid-template-columns: 1fr 1fr; }
  .section-stats { padding: 2.5rem 0; }
  .section-mbs-flow, .section-cdi, .section-pillars, .section-partnership { padding: 3.5rem 0; }
}

/* ===== RISK MANAGEMENT PAGE ===== */
.risk-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.risk-card {
  background: var(--off-white);
  border-radius: 10px;
  padding: 2rem;
  border-left: 4px solid var(--blue);
  transition: var(--transition);
}

.risk-card.risk-red {
  border-left-color: var(--red);
}

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

.risk-icon {
  width: 44px; height: 44px;
  border-radius: 8px;
  background: var(--blue);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.risk-card.risk-red .risk-icon {
  background: var(--red);
}

.risk-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.risk-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.65;
}

.risk-framework-note {
  background: var(--light-gray);
  border-radius: 10px;
  padding: 2rem;
}

.rfn-inner {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.rfn-inner > .fas {
  font-size: 1.5rem;
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.rfn-inner h3 {
  font-size: 1.1rem;
  color: var(--blue);
  margin-bottom: 0.5rem;
}

.rfn-inner p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== FOOTER IMPORTANT NOTICE BAR ===== */
.footer-notice-bar {
  background: #0a1428;
  padding: 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-notice-title {
  color: rgba(255,255,255,0.6);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.footer-notice-text {
  color: rgba(255,255,255,0.38);
  font-size: 0.74rem;
  line-height: 1.7;
  max-width: 900px;
  margin-bottom: 0.5rem;
}

/* ===== MISC ADDITIONS ===== */
.section-footer-note {
  text-align: center;
  color: var(--text-mid);
  font-size: 0.92rem;
  line-height: 1.7;
  max-width: 740px;
  margin: 1.5rem auto 0;
  padding: 1rem;
  border-top: 1px solid var(--border);
}

.mp-footer {
  margin-top: 1rem;
  font-style: italic;
  color: var(--text-mid);
  font-size: 0.9rem;
}

/* ===== RESPONSIVE RISK PAGE ===== */
@media (max-width: 860px) {
  .risk-grid { grid-template-columns: 1fr; }
  .rfn-inner { flex-direction: column; }
}

/* Remove old slide-logo-card references */
.slide-logo-card { display: none !important; }
