/* ==========================================================================
   JWT — Green Industrial Property Rights Investment Portal
   Brand palette: Dark Green / Navy Blue / White / Gold
   Headings: Montserrat  |  Body: Open Sans
   ========================================================================== */

:root {
  --green: #0f4d3c;          /* primary dark green */
  --green-600: #14684f;
  --green-300: #3f8f74;
  --navy: #10233f;           /* secondary navy blue */
  --navy-700: #0a1729;
  --gold: #c9a227;           /* accent gold */
  --gold-light: #e2c565;
  --white: #ffffff;
  --off-white: #f6f8f7;
  --gray-100: #eef1f0;
  --gray-300: #cdd5d2;
  --gray-500: #6b7773;
  --gray-700: #384743;
  --text: #1b2925;
  --shadow-sm: 0 2px 10px rgba(16, 35, 63, 0.06);
  --shadow-md: 0 12px 34px rgba(16, 35, 63, 0.12);
  --shadow-lg: 0 24px 60px rgba(16, 35, 63, 0.18);
  --radius: 14px;
  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, .font-head {
  font-family: 'Montserrat', system-ui, sans-serif;
  color: var(--navy);
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -0.01em;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 22px;
}

/* -------- Buttons -------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: 40px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}
.btn-gold { background: var(--gold); color: var(--navy-700); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(201,162,39,.35); }
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-600); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(15,77,60,.3); }
.btn-outline { border-color: rgba(255,255,255,.75); color: #fff; background: transparent; }
.btn-outline:hover { background: #fff; color: var(--navy); transform: translateY(-2px); }
.btn-outline-dark { border-color: var(--green); color: var(--green); background: transparent; }
.btn-outline-dark:hover { background: var(--green); color: #fff; transform: translateY(-2px); }
.btn-ghost { color: var(--green); font-weight: 700; padding: 0; }
.btn-ghost i { transition: transform .3s var(--ease); }
.btn-ghost:hover i { transform: translateX(5px); }

/* -------- Header / Nav -------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), padding .35s var(--ease);
  padding: 18px 0;
}
.site-header.scrolled {
  background: rgba(255,255,255,.97);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
  backdrop-filter: blur(8px);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 46px; height: 46px; border-radius: 11px;
  background: linear-gradient(135deg, var(--green), var(--navy));
  display: grid; place-items: center;
  color: var(--gold); font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.15rem;
  box-shadow: var(--shadow-sm); flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.15rem; color: #fff; }
.brand-sub { font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-light); }
.site-header.scrolled .brand-name { color: var(--navy); }
.site-header.scrolled .brand-sub { color: var(--green-600); }

.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a {
  font-family: 'Montserrat', sans-serif; font-weight: 500; font-size: .92rem;
  color: rgba(255,255,255,.9); position: relative; padding: 4px 0; transition: color .25s;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -3px; height: 2px; width: 0; background: var(--gold);
  transition: width .3s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover { color: #fff; }
.site-header.scrolled .nav-links a { color: var(--gray-700); }
.site-header.scrolled .nav-links a:hover { color: var(--green); }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; background: none; border: 0; color: #fff; font-size: 1.5rem; cursor: pointer; }
.site-header.scrolled .nav-toggle { color: var(--navy); }

/* Mobile nav */
.mobile-nav {
  position: fixed; inset: 0; z-index: 200; background: var(--navy-700);
  display: flex; flex-direction: column; padding: 80px 30px 30px;
  transform: translateX(100%); transition: transform .4s var(--ease);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a { color: #fff; font-family: 'Montserrat', sans-serif; font-size: 1.4rem; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.mobile-nav .close-btn { position: absolute; top: 24px; right: 26px; background: none; border: 0; color: var(--gold); font-size: 2rem; cursor: pointer; }

/* -------- Nav dropdown -------- */
.nav-dropdown { position: relative; }
.nav-caret { font-size: .62rem; transition: transform .25s var(--ease); margin-left: 2px; }
.nav-dropdown:hover .nav-caret { transform: rotate(180deg); }
.nav-menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(10px);
  min-width: 210px; background: #fff; border-radius: 12px; box-shadow: var(--shadow-md);
  padding: 8px; opacity: 0; visibility: hidden; transition: all .28s var(--ease); z-index: 120;
  border: 1px solid var(--gray-100);
}
.nav-dropdown:hover .nav-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(8px); }
.nav-menu a {
  display: flex !important; align-items: center; gap: 9px; padding: 10px 14px !important; border-radius: 8px;
  color: var(--gray-700) !important; font-size: .92rem; transition: background .2s, color .2s;
}
.nav-menu a::after { display: none; }
.nav-menu a:hover { background: var(--off-white); color: var(--green) !important; }
.nav-menu a span { font-size: 1.05rem; }

/* -------- Hero -------- */
.hero {
  position: relative; min-height: 92vh; display: flex; align-items: center;
  color: #fff; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(115deg, rgba(10,23,41,.92) 0%, rgba(15,77,60,.78) 55%, rgba(15,77,60,.35) 100%);
}
.hero-content { max-width: 720px; padding-top: 60px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px; font-family: 'Montserrat', sans-serif;
  text-transform: uppercase; letter-spacing: .22em; font-size: .74rem; font-weight: 600;
  color: var(--gold-light); background: rgba(201,162,39,.12); border: 1px solid rgba(201,162,39,.4);
  padding: 8px 16px; border-radius: 30px; margin-bottom: 24px;
}
.hero h1 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.7rem); margin-bottom: 20px; }
.hero h1 .gold { color: var(--gold-light); }
.hero p.lead { font-size: clamp(1.02rem, 1.6vw, 1.22rem); color: rgba(255,255,255,.9); max-width: 600px; margin-bottom: 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }

.hero-stats {
  display: flex; flex-wrap: wrap; gap: 40px; margin-top: 56px; padding-top: 34px;
  border-top: 1px solid rgba(255,255,255,.15);
}
.hero-stats .stat .num { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 2rem; color: var(--gold-light); }
.hero-stats .stat .label { font-size: .85rem; color: rgba(255,255,255,.75); letter-spacing: .04em; }

/* -------- Sections -------- */
.section { padding: 92px 0; }
.section.tight { padding: 68px 0; }
.section.alt { background: var(--off-white); }
.section.navy { background: var(--navy); color: #fff; }
.section.navy h2, .section.navy h3 { color: #fff; }
.section.green-grad { background: linear-gradient(135deg, var(--green), var(--navy)); color: #fff; }
.section.green-grad h2 { color: #fff; }

.section-head { max-width: 720px; margin-bottom: 52px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-tag {
  font-family: 'Montserrat', sans-serif; text-transform: uppercase; letter-spacing: .2em;
  font-size: .76rem; font-weight: 700; color: var(--green-600); margin-bottom: 14px; display: block;
}
.section.navy .section-tag, .section.green-grad .section-tag { color: var(--gold-light); }
.section-head h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: 16px; }
.section-head p { color: var(--gray-700); font-size: 1.05rem; }
.section.navy .section-head p, .section.green-grad .section-head p { color: rgba(255,255,255,.82); }

/* -------- Grids & Cards -------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.card-media { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.card:hover .card-media img { transform: scale(1.07); }
.card-badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: rgba(201,162,39,.95); color: var(--navy-700); font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: .74rem; letter-spacing: .06em; padding: 6px 13px; border-radius: 30px;
}
.card-body { padding: 26px; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { font-size: 1.25rem; margin-bottom: 10px; }
.card-body p { color: var(--gray-700); font-size: .95rem; margin-bottom: 18px; flex: 1; }

/* Opportunity feature cards */
.opp-card .card-media { aspect-ratio: 4/3; }
.opp-card .flag { font-size: 1.4rem; margin-right: 8px; }

/* Investment model cards */
.model-card {
  background: #fff; border-radius: var(--radius); padding: 32px 28px; text-align: left;
  border: 1px solid var(--gray-100); box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
  position: relative; overflow: hidden;
}
.model-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease);
}
.model-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.model-card:hover::before { transform: scaleX(1); }
.model-icon {
  width: 58px; height: 58px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--green), var(--navy)); color: var(--gold-light);
  font-size: 1.4rem; margin-bottom: 20px;
}
.model-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.model-card p { color: var(--gray-700); font-size: .94rem; }

/* -------- About / split -------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split .media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); position: relative; }
.split .media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.split .media .float-stat {
  position: absolute; bottom: 22px; left: 22px; background: rgba(255,255,255,.96); border-radius: 12px;
  padding: 16px 22px; box-shadow: var(--shadow-md); backdrop-filter: blur(4px);
}
.split .media .float-stat .num { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.7rem; color: var(--green); }
.split .media .float-stat .label { font-size: .8rem; color: var(--gray-700); }

.feature-list { list-style: none; margin-top: 24px; display: grid; gap: 16px; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; }
.feature-list .fi-icon {
  width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0; display: grid; place-items: center;
  background: rgba(15,77,60,.09); color: var(--green); font-size: 1rem;
}
.feature-list .fi-text strong { font-family: 'Montserrat', sans-serif; color: var(--navy); display: block; font-size: 1rem; }
.feature-list .fi-text span { font-size: .92rem; color: var(--gray-700); }

/* -------- Why invest -------- */
.why-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius);
  padding: 30px 26px; transition: transform .4s var(--ease), background .4s;
}
.why-card:hover { transform: translateY(-6px); background: rgba(255,255,255,.1); }
.why-card .wi-icon {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center;
  background: rgba(201,162,39,.16); color: var(--gold-light); font-size: 1.35rem; margin-bottom: 18px;
}
.why-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.why-card p { color: rgba(255,255,255,.78); font-size: .92rem; }

/* -------- Regions accordion -------- */
.region-list { display: grid; gap: 12px; }
.region-item { background: #fff; border: 1px solid var(--gray-100); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-sm); }
.region-header {
  width: 100%; display: flex; align-items: center; gap: 16px; padding: 20px 24px;
  background: none; border: 0; cursor: pointer; text-align: left; font-family: 'Montserrat', sans-serif;
  transition: background .25s;
}
.region-header:hover { background: var(--off-white); }
.region-header .r-flag { font-size: 1.4rem; }
.region-header .r-name { font-weight: 700; font-size: 1.08rem; color: var(--navy); flex: 1; }
.region-header .r-tag { font-size: .78rem; color: var(--green-600); font-weight: 600; letter-spacing: .05em; margin-right: 8px; }
.region-header .r-chevron { color: var(--gold); transition: transform .35s var(--ease); }
.region-item.open .r-chevron { transform: rotate(180deg); }
.region-body { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.region-body-inner { padding: 0 24px 24px 64px; color: var(--gray-700); }
.region-body-inner .r-stats { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 14px; }
.region-body-inner .r-stats div span { display: block; font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--green); font-size: 1.15rem; }
.region-body-inner .r-stats div small { color: var(--gray-500); font-size: .8rem; }

/* -------- Contact -------- */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 48px; align-items: start; }
.contact-info .ci-item { display: flex; gap: 16px; margin-bottom: 26px; }
.contact-info .ci-icon {
  width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0; display: grid; place-items: center;
  background: rgba(201,162,39,.16); color: var(--gold-light); font-size: 1.05rem;
}
.contact-info .ci-item strong { font-family: 'Montserrat', sans-serif; display: block; color: #fff; }
.contact-info .ci-item span { color: rgba(255,255,255,.72); font-size: .92rem; }

.form-card { background: #fff; border-radius: var(--radius); padding: 38px; box-shadow: var(--shadow-lg); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: .85rem; color: var(--navy); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--gray-300); border-radius: 10px;
  font-family: 'Open Sans', sans-serif; font-size: .95rem; color: var(--text); background: #fff;
  transition: border-color .25s, box-shadow .25s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(15,77,60,.1);
}
.field textarea { resize: vertical; min-height: 120px; }
.checkbox-field { display: flex; align-items: flex-start; gap: 11px; margin: 4px 0 18px; cursor: pointer; }
.checkbox-field input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--green); flex-shrink: 0; cursor: pointer; }
.checkbox-field span { font-size: .92rem; color: var(--gray-700); font-family: 'Open Sans', sans-serif; }
.form-note { font-size: .82rem; color: var(--gray-500); margin-top: 6px; }
.form-status { margin-top: 16px; padding: 14px 16px; border-radius: 10px; font-size: .92rem; display: none; }
.form-status.success { display: block; background: rgba(15,77,60,.1); color: var(--green); border: 1px solid rgba(15,77,60,.25); }
.form-status.error { display: block; background: rgba(180,40,40,.08); color: #b42828; border: 1px solid rgba(180,40,40,.25); }

/* -------- Detail / interior pages -------- */
.page-hero {
  position: relative; padding: 170px 0 80px; color: #fff; overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; z-index: -2; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero::after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(120deg, rgba(10,23,41,.92), rgba(15,77,60,.7)); }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4.4vw, 3.1rem); max-width: 780px; }
.page-hero p { color: rgba(255,255,255,.88); max-width: 640px; margin-top: 14px; font-size: 1.08rem; }
.breadcrumb { display: flex; gap: 8px; font-size: .85rem; color: rgba(255,255,255,.7); margin-bottom: 20px; font-family: 'Montserrat', sans-serif; }
.breadcrumb a:hover { color: var(--gold-light); }

.prose { max-width: 780px; }
.prose h2 { font-size: 1.7rem; margin: 34px 0 14px; }
.prose h3 { font-size: 1.25rem; margin: 26px 0 10px; color: var(--green); }
.prose p { margin-bottom: 16px; color: var(--gray-700); }
.prose ul { margin: 0 0 18px 20px; color: var(--gray-700); }
.prose ul li { margin-bottom: 8px; }

.fact-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin: 28px 0; }
.fact { background: var(--off-white); border-radius: 12px; padding: 22px; border: 1px solid var(--gray-100); }
.fact .fnum { font-family: 'Montserrat', sans-serif; font-weight: 800; color: var(--green); font-size: 1.5rem; }
.fact .flabel { font-size: .85rem; color: var(--gray-700); }

.cta-band { text-align: center; }
.cta-band h2 { font-size: clamp(1.7rem,3vw,2.4rem); margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,.85); max-width: 560px; margin: 0 auto 26px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* -------- Footer -------- */
.site-footer { background: var(--navy-700); color: rgba(255,255,255,.72); padding: 68px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.footer-brand .brand-name { color: #fff; }
.footer-brand p { margin-top: 16px; font-size: .92rem; max-width: 320px; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center;
  background: rgba(255,255,255,.07); color: #fff; transition: background .25s, transform .25s;
}
.footer-social a:hover { background: var(--gold); color: var(--navy-700); transform: translateY(-3px); }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: grid; gap: 10px; }
.footer-col a { font-size: .92rem; transition: color .25s; }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 22px; display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 12px; font-size: .85rem;
}
.footer-bottom a { color: rgba(255,255,255,.72); }
.footer-bottom a:hover { color: var(--gold-light); }

/* -------- Chat widget placeholder -------- */
.chat-fab {
  position: fixed; bottom: 26px; right: 26px; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%; border: 0; cursor: pointer;
  background: linear-gradient(135deg, var(--green), var(--navy)); color: var(--gold-light);
  font-size: 1.4rem; box-shadow: var(--shadow-md); transition: transform .3s var(--ease);
}
.chat-fab:hover { transform: scale(1.08); }
.chat-panel {
  position: fixed; bottom: 100px; right: 26px; z-index: 90; width: 320px; max-width: calc(100vw - 40px);
  background: #fff; border-radius: 16px; box-shadow: var(--shadow-lg); overflow: hidden;
  transform: translateY(20px) scale(.95); opacity: 0; pointer-events: none; transition: all .3s var(--ease);
}
.chat-panel.open { transform: translateY(0) scale(1); opacity: 1; pointer-events: auto; }
.chat-head { background: linear-gradient(135deg, var(--green), var(--navy)); color: #fff; padding: 16px 18px; font-family: 'Montserrat', sans-serif; font-weight: 700; }
.chat-head small { display: block; font-weight: 400; font-size: .78rem; color: rgba(255,255,255,.8); }
.chat-body { padding: 18px; font-size: .9rem; color: var(--gray-700); }
.chat-body .bubble { background: var(--off-white); padding: 12px 14px; border-radius: 12px; margin-bottom: 10px; }

/* -------- Visitor Journey timeline -------- */
.journey { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; margin-top: 30px; }
.journey::before {
  content: ''; position: absolute; top: 34px; left: 8%; right: 8%; height: 3px;
  background: linear-gradient(90deg, var(--green-300), var(--gold)); border-radius: 3px; z-index: 0;
}
.journey-step { position: relative; z-index: 1; text-align: center; }
.journey-num {
  width: 68px; height: 68px; margin: 0 auto 16px; border-radius: 50%; display: grid; place-items: center;
  background: #fff; border: 3px solid var(--gold); color: var(--green); font-family: 'Montserrat', sans-serif;
  font-weight: 800; font-size: 1.5rem; box-shadow: var(--shadow-sm); transition: transform .4s var(--ease);
}
.section.navy .journey-num, .section.green-grad .journey-num { background: var(--navy-700); }
.journey-step:hover .journey-num { transform: scale(1.1); background: var(--gold); color: var(--navy-700); }
.journey-step h4 { font-size: 1rem; margin-bottom: 6px; color: var(--navy); }
.section.navy .journey-step h4, .section.green-grad .journey-step h4 { color: #fff; }
.journey-step p { font-size: .85rem; color: var(--gray-500); }
.section.navy .journey-step p, .section.green-grad .journey-step p { color: rgba(255,255,255,.7); }
.journey-icon { color: var(--green-300); font-size: .95rem; margin-bottom: 4px; }

/* -------- Proposal process flow -------- */
.process-flow { display: flex; flex-wrap: wrap; align-items: stretch; justify-content: center; gap: 0; margin-top: 24px; }
.process-node {
  flex: 1 1 150px; min-width: 140px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px; padding: 24px 16px; text-align: center; transition: transform .4s var(--ease), background .3s;
  margin: 10px;
}
.section:not(.navy):not(.green-grad) .process-node { background: #fff; border-color: var(--gray-100); box-shadow: var(--shadow-sm); }
.process-node:hover { transform: translateY(-6px); }
.process-node .pn-icon {
  width: 52px; height: 52px; margin: 0 auto 12px; border-radius: 13px; display: grid; place-items: center;
  background: rgba(201,162,39,.16); color: var(--gold-light); font-size: 1.2rem;
}
.section:not(.navy):not(.green-grad) .process-node .pn-icon { background: rgba(15,77,60,.09); color: var(--green); }
.process-node h4 { font-size: .98rem; color: #fff; margin-bottom: 4px; }
.section:not(.navy):not(.green-grad) .process-node h4 { color: var(--navy); }
.process-node p { font-size: .8rem; color: rgba(255,255,255,.65); }
.section:not(.navy):not(.green-grad) .process-node p { color: var(--gray-500); }
.process-arrow { display: grid; place-items: center; color: var(--gold); font-size: 1.2rem; padding: 0 4px; }

/* -------- Split CTA bands (broker / PE) -------- */
.band-split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.band-split .band-text { padding: 48px; background: linear-gradient(135deg, var(--green), var(--navy)); color: #fff; }
.band-split .band-text.navy-first { background: linear-gradient(135deg, var(--navy), var(--green)); }
.band-split .band-text h2 { color: #fff; font-size: 1.9rem; margin-bottom: 14px; }
.band-split .band-text p { color: rgba(255,255,255,.85); margin-bottom: 18px; }
.band-split .band-media { position: relative; }
.band-split .band-media img { width: 100%; height: 100%; object-fit: cover; }
.band-list { list-style: none; display: grid; gap: 12px; margin: 18px 0 26px; }
.band-list li { display: flex; align-items: center; gap: 11px; color: rgba(255,255,255,.9); font-size: .95rem; }
.band-list li i { color: var(--gold-light); }

/* -------- World map -------- */
.worldmap-wrap { position: relative; max-width: 960px; margin: 0 auto; }
.worldmap { width: 100%; height: auto; display: block; }
.map-legend { display: flex; flex-wrap: wrap; gap: 22px; justify-content: center; margin-top: 26px; }
.map-legend .lg { display: flex; align-items: center; gap: 9px; font-size: .9rem; color: rgba(255,255,255,.85); font-family: 'Montserrat', sans-serif; }
.map-legend .dot { width: 14px; height: 14px; border-radius: 50%; }
.map-legend .dot.active { background: var(--gold); box-shadow: 0 0 0 4px rgba(201,162,39,.25); }
.map-legend .dot.future { background: var(--green-300); box-shadow: 0 0 0 4px rgba(63,143,116,.2); }
.map-dot { cursor: pointer; transition: r .3s var(--ease); }
.map-dot.active-dot { fill: var(--gold); }
.map-dot.future-dot { fill: var(--green-300); }
.map-pulse { transform-origin: center; animation: pulse 2.4s ease-out infinite; }
@keyframes pulse { 0% { opacity: .6; transform: scale(.6); } 100% { opacity: 0; transform: scale(2.4); } }
.map-label { font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 600; fill: rgba(255,255,255,.9); }

/* -------- Pill row -------- */
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 6px; }
.pill { display: inline-flex; align-items: center; gap: 7px; background: rgba(201,162,39,.14); border: 1px solid rgba(201,162,39,.35); color: var(--gold-light); padding: 7px 15px; border-radius: 30px; font-size: .85rem; font-family: 'Montserrat', sans-serif; font-weight: 500; }
.section:not(.navy):not(.green-grad) .pill { background: rgba(15,77,60,.07); border-color: rgba(15,77,60,.2); color: var(--green); }

/* -------- Animations -------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

/* -------- Responsive -------- */
@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .split, .contact-grid, .band-split { grid-template-columns: 1fr; gap: 34px; }
  .band-split { gap: 0; }
  .band-split .band-media { min-height: 240px; order: -1; }
  .fact-grid { grid-template-columns: repeat(3,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: block; }
  .journey { grid-template-columns: repeat(2,1fr); gap: 28px; }
  .journey::before { display: none; }
  .process-arrow { transform: rotate(90deg); }
}
@media (max-width: 620px) {
  .grid-4, .grid-3, .grid-2, .form-row { grid-template-columns: 1fr; }
  .fact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 26px; }
  .section { padding: 64px 0; }
  .form-card { padding: 26px; }
  .journey { grid-template-columns: 1fr; }
  .band-split .band-text { padding: 32px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
