/* ==========================================================================
   GRCore Advisory & CoSec (Pty) Ltd — Brand Stylesheet
   Colors: Navy #0A1F44, Gold #CFAE70, White. Font: Poppins.
   ========================================================================== */

:root{
  --navy: #0A1F44;
  --navy-dark: #071530;
  --navy-soft: #14295c;
  --gold: #CFAE70;
  --gold-light: #E7D6AE;
  --white: #FFFFFF;
  --ink: #12203f;
  --gray: #5c6479;
  --gray-light: #eef0f5;
  --border: rgba(10,31,68,0.10);
  --shadow: 0 20px 45px rgba(10,31,68,0.10);
  --radius: 6px;
  --container: 1180px;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.65;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; list-style: none; }
h1,h2,h3,h4{ font-weight: 600; line-height: 1.2; margin: 0 0 16px; color: var(--navy); }
p{ margin: 0 0 16px; color: var(--gray); }
.container{ max-width: var(--container); margin: 0 auto; padding: 0 28px; }

.eyebrow{
  display: inline-block;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 14px;
}

/* -------------------- Skip link -------------------- */
.skip-link{
  position: absolute; left: -999px; top: 0;
  background: var(--gold); color: var(--navy); padding: 10px 18px;
  z-index: 1000; font-weight: 600;
}
.skip-link:focus{ left: 12px; top: 12px; }

/* -------------------- Buttons -------------------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.4px;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-gold{ background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn-gold:hover{ background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-outline{ background: transparent; color: var(--white); border-color: rgba(255,255,255,0.55); }
.btn-outline:hover{ background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-navy{ background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover{ background: transparent; color: var(--navy); }
.btn-outline-navy{ background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline-navy:hover{ background: var(--navy); color: var(--white); }
.btn-row{ display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.text-link{
  display: inline-block;
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
  font-size: 14px;
}
.text-link:hover{ opacity: 0.75; }

/* -------------------- Header / Nav -------------------- */
.site-header{
  position: sticky; top: 0; z-index: 900;
  background: #eeeff2; /* matches the logo image's light background */
  border-bottom: 2px solid var(--gold);
}
.nav{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  max-width: var(--container);
  margin: 0 auto;
}
.brand{
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.5px;
  color: var(--navy);
}
.brand-icon-wrap{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  flex-shrink: 0;
}
.brand-icon{ height: 100%; width: auto; display: block; }
.brand-text{ display: flex; align-items: baseline; gap: 2px; }
.brand .brand-gr{ color: var(--gold); }
.brand-wrap{ display: flex; flex-direction: column; }
.brand-tagline{
  font-size: 9.5px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--gray);
  font-weight: 500;
  margin-top: 2px;
}
.nav-links{
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links a{
  color: var(--navy);
  opacity: 0.7;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.nav-links a:hover, .nav-links a.active{
  opacity: 1;
  border-bottom-color: var(--gold);
}

/* Dropdown (About Us -> Our Founder / Our COO) */
.nav-links li.has-dropdown{ position: relative; }
.nav-links li.has-dropdown > a::after{
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  margin-left: 6px; margin-bottom: 2px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.7;
}
.nav-links .dropdown{
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 190px;
  margin-top: 14px;
  padding: 8px 0;
  background: var(--white);
  border-radius: 6px;
  box-shadow: 0 18px 40px rgba(10,31,68,0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 950;
}
.nav-links li.has-dropdown:hover > .dropdown,
.nav-links li.has-dropdown:focus-within > .dropdown{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-toggle{
  display: none;
  background: none; border: none; padding: 8px; margin: -8px;
  cursor: pointer; color: inherit; flex-shrink: 0;
}
.dropdown-toggle svg{ width: 14px; height: 14px; transition: transform 0.2s ease; }
.has-dropdown.open .dropdown-toggle svg{ transform: rotate(180deg); }
.dropdown li{ list-style: none; }
.dropdown a{
  display: block;
  padding: 8px 20px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--navy);
  opacity: 1;
  border-bottom: none;
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
}
.dropdown a:hover, .dropdown a.active{
  background: none;
  color: var(--gold);
  border-bottom: none;
}
.nav-cta{ display:flex; }
.nav-cta-mobile{ display: none; }
.nav-toggle{
  display: none;
  background: none; border: none; cursor: pointer;
  width: 34px; height: 26px; position: relative;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after{
  content: ""; position: absolute; left: 0; width: 100%; height: 2px;
  background: var(--gold); transition: all 0.25s ease;
}
.nav-toggle span{ top: 12px; }
.nav-toggle span::before{ top: -9px; }
.nav-toggle span::after{ top: 9px; }
.nav-toggle.open span{ background: transparent; }
.nav-toggle.open span::before{ transform: translateY(9px) rotate(45deg); }
.nav-toggle.open span::after{ transform: translateY(-9px) rotate(-45deg); }

/* -------------------- Hero -------------------- */
.hero{
  position: relative;
  color: var(--white);
  background: linear-gradient(120deg, rgba(7,21,48,0.94) 10%, rgba(10,31,68,0.86) 55%, rgba(10,31,68,0.78) 100%),
              url("../img/hero-boardroom.jpg") center 30%/cover no-repeat;
  padding: 40px 0 34px;
  overflow-x: clip;
}
.hero::after{
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(7,21,48,1) 100%);
  pointer-events: none;
}
.hero-inner{ position: relative; z-index: 2; max-width: 760px; }
.hero-title-wrap{
  position: relative;
  display: block;
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.hero-title{
  position: relative;
  z-index: 1;
  color: var(--white);
  font-size: clamp(28px, 4vw, 42px);
  max-width: 460px;
  margin-bottom: 14px;
}

/* Spinning ring of words around the hero headline */
.hero-circular-text{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  border-radius: 50%;
  pointer-events: none;
}
.hero-circular-text__spin{
  position: relative;
  width: 100%;
  height: 100%;
  transform-origin: 50% 50%;
  will-change: transform;
  backface-visibility: hidden;
  animation-name: hero-circular-spin;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
@keyframes hero-circular-spin{
  to{ transform: rotate(360deg); }
}
.hero-circular-text__char{
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-flex;
  line-height: 1;
  transform-origin: center center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  white-space: pre;
  user-select: none;
}
/* Smallest phones get an even smaller, tighter ring (see the JS "tiny
   mobile" size tier below 400px) — shrink the letters to match so they
   don't crowd on that smaller circle. */
@media (max-width: 399px){
  .hero-circular-text__char{ font-size: 8px; letter-spacing: 0.06em; }
}
/* Text scales up across the same breakpoints CropMarket's CircularText uses
   (640 / 768 / 1024) so the ring stays compact on small phones and only
   grows once there's room for it. */
@media (min-width: 640px){
  .hero-circular-text__char{ font-size: 11px; letter-spacing: 0.14em; }
}
@media (min-width: 768px){
  .hero-circular-text__char{ font-size: 12px; letter-spacing: 0.16em; }
}
@media (min-width: 1024px){
  .hero-circular-text__char{ font-size: 13px; letter-spacing: 0.18em; }
}
@media (prefers-reduced-motion: reduce){
  .hero-circular-text__spin{ animation: none; }
}
.hero-sub{
  color: var(--gold-light);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
  text-align: center;
}
.hero .btn-row{ justify-content: center; }
.hero-line{
  color: rgba(255,255,255,0.78);
  font-size: 15px;
  max-width: 640px;
  margin-bottom: 34px;
}

/* -------------------- Page header (inner pages) -------------------- */
.page-header{
  background: var(--navy);
  background-image: radial-gradient(circle at 85% 20%, rgba(207,174,112,0.18), transparent 45%);
  color: var(--white);
  padding: 84px 0 64px;
  text-align: left;
}
.page-header h1{ color: var(--white); margin-bottom: 10px; }
.page-header p{ color: rgba(255,255,255,0.72); max-width: 640px; }
.page-header--compact{ padding: 30px 0 22px; }

/* -------------------- Who we serve bar -------------------- */
.serve-bar{
  background: var(--navy-dark);
  padding: 22px 0;
}
.serve-bar ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 40px;
}
.serve-bar li{
  color: var(--gold-light);
  font-size: 13px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 600;
  position: relative;
}
.serve-bar li:not(:last-child)::after{
  content: "";
  position: absolute;
  right: -20px; top: 50%;
  transform: translateY(-50%);
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
}

/* -------------------- Sections -------------------- */
section{ padding: 88px 0; }
.section-tight{ padding: 64px 0; }
.section-alt{ background: var(--gray-light); }
.section-navy{ background: var(--navy); color: var(--white); }
.section-navy h2, .section-navy h3{ color: var(--white); }
.section-navy p{ color: rgba(255,255,255,0.72); }
.section-head{ max-width: 680px; margin-bottom: 48px; }
.section-head.center{ margin-left: auto; margin-right: auto; text-align: center; }

/* -------------------- Grids / Cards -------------------- */
.grid-3{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2{ display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.grid-4{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-3 > *, .grid-2 > *, .grid-4 > *{ min-width: 0; }

.card{
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 34px 28px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover{ transform: translateY(-4px); box-shadow: 0 26px 55px rgba(10,31,68,0.16); }
.card h3{ font-size: 19px; margin-bottom: 12px; }
.card p{ font-size: 14.5px; margin-bottom: 0; }
.card .icon{ margin-bottom: 18px; }

/* -------------------- Assurance cards (exact CropMarket process-card port) -------------------- */
.assurance-grid{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 56px;
  row-gap: 64px;
}
.assurance-card{
  flex: 0 0 auto;
  width: 216px;
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 0.9s cubic-bezier(0.2,0.95,0.22,1), transform 0.9s cubic-bezier(0.2,0.95,0.22,1);
}
.assurance-card.in-view{ opacity: 1; transform: translateY(0); }
.assurance-card:nth-child(2){ margin-top: 40px; }

.assurance-flip-wrap{
  position: relative;
  aspect-ratio: 210 / 297;
  perspective: 1600px;
  border-top-left-radius: 72px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 72px;
  border-bottom-left-radius: 0;
  overflow: hidden;
  transform: translateY(-4px);
  transition: transform 0.3s cubic-bezier(0,0,0.2,1);
}
.assurance-card:hover .assurance-flip-wrap{
  transform: translateY(-6px);
}
.assurance-flip{
  position: absolute; inset: 0;
  transform-style: preserve-3d;
  transition: transform 2.8s cubic-bezier(0.2,0.95,0.22,1);
  will-change: transform;
}
.assurance-face{ position: absolute; inset: 0; backface-visibility: hidden; }
.assurance-face-back{ transform: rotateY(180deg); }
.assurance-img{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0,0,0.2,1);
}
.assurance-card:hover .assurance-img{ transform: scale(1.012); }
.assurance-tint{
  position: absolute; inset: 0;
  background: linear-gradient(to bottom right, rgba(255,255,255,0.06) 0%, transparent 50%, rgba(116,198,157,0.08) 100%);
}
.assurance-shade{
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.40) 0%, rgba(0,0,0,0.05) 50%, rgba(0,0,0,0.20) 100%);
}
.assurance-step{
  position: absolute;
  left: 16px; bottom: 16px;
  color: #74C69D;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.assurance-caption{ padding-top: 20px; text-align: center; }
.assurance-caption h3{
  color: #0A1F13;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.2;
  margin-bottom: 8px;
}
.assurance-caption p{
  color: #355649;
  font-size: 14px;
  line-height: 1.625;
  font-style: italic;
  margin-bottom: 0;
}

@media (min-width: 640px){
  .assurance-card{ width: 256px; }
  .assurance-card:nth-child(2){ margin-top: 48px; }
  .assurance-card:hover .assurance-flip-wrap{ transform: translateY(-8px); }
  .assurance-caption h3{ font-size: 18px; }
}
@media (min-width: 768px){
  .assurance-card{ width: 288px; }
}
@media (prefers-reduced-motion: reduce){
  .assurance-card{ opacity: 1; transform: none; transition: none; }
  .assurance-flip{ transition: none; }
}

.roadmap-card{
  background: var(--white);
  border: 1px solid rgba(10,31,68,0.14);
  border-top: 4px solid var(--navy);
  border-radius: var(--radius);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}
.roadmap-card.popular{ border-top-color: var(--gold); }
.roadmap-badge{
  position: absolute; top: -13px; right: 18px;
  background: var(--gold); color: var(--navy);
  font-size: 10.5px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; padding: 5px 12px; border-radius: 20px;
}
.roadmap-card h3{ font-size: 16px; letter-spacing: 0.3px; }
.roadmap-tag{ font-size: 12.5px; color: var(--gold); font-weight: 600; margin-bottom: 14px; display:block; }
.roadmap-card ul{ margin: 0 0 20px; flex-grow: 1; }
.roadmap-card li{
  font-size: 13.5px; color: var(--gray); padding-left: 18px; position: relative; margin-bottom: 9px;
}
.roadmap-card li::before{
  content: "—"; position: absolute; left: 0; color: var(--gold); font-weight: 700;
}
.roadmap-outcome{
  font-size: 13px; font-weight: 600; color: var(--navy);
  border-top: 1px dashed var(--border); padding-top: 14px; margin-bottom: 18px;
  min-height: 80px;
}
.roadmap-link-slot{ display: block; min-height: 24px; margin-bottom: 14px; }

.roadmap-gallery{ display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.roadmap-gallery img{ width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); }
.roadmap-image-slot{
  aspect-ratio: 1/2; border-radius: var(--radius); box-shadow: var(--shadow);
  background: linear-gradient(160deg, var(--navy), var(--navy-dark));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; text-align: center; padding: 0 24px;
}
.roadmap-image-slot .slot-label{ color: var(--gold); font-weight: 700; font-size: 19px; }
.roadmap-image-slot .slot-note{ color: rgba(255,255,255,0.5); font-size: 11px; letter-spacing: 0.3px; }
.roadmap-gallery-item{ display: flex; flex-direction: column; }
.roadmap-gallery-item.popular{ position: relative; }
.roadmap-gallery-item .roadmap-badge{ top: 10px; right: 34px; }
.roadmap-caption{
  font-style: italic; color: var(--gray); font-size: 13px;
  text-align: center; margin: 14px 0 12px;
}
.roadmap-gallery-item .btn{ align-self: center; }
.price-anchor{
  background: var(--navy); border: 1px solid var(--gold); border-radius: var(--radius);
  padding: 16px 20px; text-align: center; margin-bottom: 16px;
}
.price-anchor strong{ color: var(--gold); font-size: 15px; display: block; margin-bottom: 6px; }
.price-anchor span{ color: rgba(255,255,255,0.75); font-size: 12.5px; }

.ongoing-retainer{
  background: linear-gradient(145deg, var(--gold-light), var(--gold));
  border-radius: 30px; padding: 20px 32px; text-align: center;
  max-width: 640px; margin: 12px auto 0;
}
.ongoing-retainer strong{ color: var(--navy); font-size: 16px; display: block; margin-bottom: 6px; letter-spacing: 0.4px; }
.ongoing-retainer span{ color: rgba(10,31,68,0.8); font-size: 13px; }
.roadmap-card .btn{ width: 100%; white-space: normal; line-height: 1.3; min-height: 86px; }

/* -------------------- Roadmap timeline (compliance-roadmap.html etc.) -------------------- */
.roadmap-intro{ text-align: center; max-width: 640px; margin: 0 auto 56px; }
.timeline{ position: relative; max-width: 720px; margin: 0 auto; }
.timeline::before{
  content: ""; position: absolute; left: 39px; top: 6px; bottom: 6px; width: 2px;
  background: rgba(207,174,112,0.35);
}
.timeline-step{ position: relative; display: flex; gap: 26px; margin-bottom: 34px; }
.timeline-step:last-child{ margin-bottom: 0; }
.timeline-icon{
  position: relative; z-index: 1; flex-shrink: 0;
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(145deg, var(--gold-light), var(--gold));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px rgba(207,174,112,0.35);
}
.timeline-icon svg{ width: 36px; height: 36px; stroke: var(--navy); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.timeline-content{
  background: var(--navy-soft); border-radius: var(--radius);
  padding: 22px 26px; flex: 1; margin-top: 6px;
}
.timeline-content h3{ color: var(--gold); font-size: 18px; margin-bottom: 12px; }
.timeline-content ul{ display: grid; gap: 8px; }
.timeline-content li{
  color: rgba(255,255,255,0.82); font-size: 14px; padding-left: 16px; position: relative;
}
.timeline-content li::before{ content: "—"; color: var(--gold); position: absolute; left: 0; }

.pillar-strip{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 64px; padding-top: 48px; border-top: 1px solid rgba(207,174,112,0.25); }
.pillar-strip-4{ grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px){
  .pillar-strip-4{ grid-template-columns: repeat(2, 1fr); }
}
.pillar-item{ display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px; }
.pillar-item .svg-icon{ width: 40px; height: 40px; }
.pillar-item span{ color: rgba(255,255,255,0.85); font-size: 13.5px; font-weight: 600; letter-spacing: 0.3px; }

/* -------------------- Icons (inline SVG, gold line style) -------------------- */
.svg-icon{ width: 46px; height: 46px; stroke: var(--gold); }

/* -------------------- Process strip -------------------- */
.process-strip{ background: var(--navy-dark); color: var(--white); padding: 60px 0; }
.process-grid{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin: 36px 0 30px; }
.process-step{ border-left: 2px solid var(--gold); padding-left: 16px; }
.process-step .step-num{ color: var(--gold); font-size: 12px; letter-spacing: 1.5px; font-weight: 700; }
.process-step h4{ color: var(--white); font-size: 16px; margin: 6px 0 6px; }
.process-step p{ color: rgba(255,255,255,0.62); font-size: 13.5px; margin: 0; }

/* -------------------- Image + text split -------------------- */
.split{ display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split img{ border-radius: var(--radius); box-shadow: var(--shadow); }
.split-media{ position: relative; }
.split-media::before{
  content: ""; position: absolute; inset: -14px -14px auto auto;
  width: 90%; height: 90%; border: 2px solid var(--gold);
  border-radius: var(--radius); z-index: 0;
}
.split-media img{ position: relative; z-index: 1; }

/* -------------------- Founder / people cards -------------------- */
.people-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }
.people-grid > div > ul > li{ color: var(--gray); margin-bottom: 6px; }
.person-card{
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
}
.person-photo{
  aspect-ratio: 4/5; background: linear-gradient(160deg, var(--navy), var(--navy-dark));
  display: flex; align-items: center; justify-content: center; position: relative;
}
.person-photo img{ width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.person-photo .monogram{
  font-size: 64px; font-weight: 700; color: var(--gold); letter-spacing: 2px;
  border: 2px solid var(--gold); width: 120px; height: 120px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.person-photo .photo-note{
  position: absolute; bottom: 14px; left: 14px; right: 14px;
  font-size: 10.5px; color: rgba(255,255,255,0.5); text-align: center;
  letter-spacing: 0.4px;
}
.person-body{ padding: 26px 26px 30px; }
.person-body h3{ margin-bottom: 4px; font-size: 19px; }
.person-role{ color: var(--gold); font-weight: 600; font-size: 12.5px; letter-spacing: 0.6px; text-transform: uppercase; margin-bottom: 14px; display:block; }
.person-body ul{ margin: 14px 0; }
.person-body li{
  font-size: 13.5px; color: var(--gray); padding-left: 16px; position: relative; margin-bottom: 6px;
}
.person-body li::before{ content:"•"; color: var(--gold); position:absolute; left:0; }
.person-quote{
  font-style: italic; color: var(--navy); font-size: 14px;
  border-left: 3px solid var(--gold); padding-left: 14px; margin-top: 16px;
}

/* -------------------- Why grid -------------------- */
.why-list{ display: grid; gap: 22px; }
.why-item{ display: grid; grid-template-columns: 46px 1fr; gap: 18px; align-items: flex-start; }
.why-item .num{ color: var(--gold); font-weight: 700; font-size: 20px; }
.why-item h3{ font-size: 17px; margin-bottom: 6px; }
.why-item h3 a{ color: inherit; text-decoration: none; }
.why-item h3 a:hover{ color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }
.why-item p{ margin-bottom: 0; font-size: 14.5px; }

.bbee-banner{
  margin-top: 40px; padding: 26px 30px; border: 1px solid rgba(207,174,112,0.4);
  border-radius: var(--radius); background: rgba(207,174,112,0.07);
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
}
.bbee-banner strong{ color: var(--navy); font-size: 16px; }

/* -------------------- Quote / footer strip -------------------- */
.quote-strip{
  background: var(--navy);
  color: var(--gold-light);
  text-align: center;
  padding: 46px 0;
  font-style: italic;
  font-size: 17px;
  letter-spacing: 0.3px;
}

/* -------------------- Form -------------------- */
.form-wrap{
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 40px; box-shadow: var(--shadow);
}
.form-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-row > *{ min-width: 0; }
.field select{ max-width: 100%; }
.field{ display: flex; flex-direction: column; gap: 7px; }
.field.full{ grid-column: 1 / -1; }
.field label{ font-size: 13px; font-weight: 600; color: var(--navy); }
.field input, .field select, .field textarea{
  padding: 12px 14px; border: 1px solid rgba(10,31,68,0.18); border-radius: 4px;
  font-family: inherit; font-size: 14px; color: var(--ink); background: var(--white);
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline: none; border-color: var(--gold);
}
.field textarea{ resize: vertical; min-height: 120px; }
.form-note{ font-size: 12.5px; color: var(--gray); margin-top: 12px; }
.form-success{
  display: none; background: rgba(207,174,112,0.12); border: 1px solid var(--gold);
  color: var(--navy); padding: 16px 18px; border-radius: 4px; font-size: 14px; margin-bottom: 18px;
}
.form-success.show{ display: block; }
.form-error{
  display: none; background: rgba(178,44,44,0.08); border: 1px solid #b22c2c;
  color: #7a1f1f; padding: 16px 18px; border-radius: 4px; font-size: 14px; margin-bottom: 18px;
}
.form-error.show{ display: block; }

.contact-info{ display: grid; gap: 22px; }
.contact-info .info-item{ display: flex; gap: 16px; align-items: flex-start; }
.contact-info .info-item .label{ font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--gold); font-weight: 700; margin-bottom: 4px; display:block; }
.contact-info .info-item p{ margin: 0; color: var(--navy); font-weight: 500; }
.social-row{ display: flex; gap: 12px; margin-top: 8px; }
.social-row a{
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center; color: var(--gold);
  transition: all 0.2s ease;
}
.social-row a:hover{ background: var(--gold); color: var(--navy); }

/* -------------------- CTA band -------------------- */
.cta-band{
  background: linear-gradient(120deg, var(--navy-dark), var(--navy));
  color: var(--white); text-align: center; padding: 64px 0;
}
.cta-band h2{ color: var(--white); }
.cta-band p{ color: rgba(255,255,255,0.72); max-width: 560px; margin: 0 auto 28px; }
.cta-band .btn-row{ justify-content: center; }

/* -------------------- Footer -------------------- */
.site-footer{ background: #eeeff2; color: var(--gray); padding: 56px 0 26px; border-top: 2px solid var(--gold); }
.site-footer .container{ max-width: 1500px; }
.footer-grid{ display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .brand{ margin-bottom: 12px; }
.footer-brand .brand-icon-wrap{ height: 96px; }
.footer-brand p{ color: var(--gray); font-size: 13.5px; max-width: 320px; }
.footer-col h4{ color: var(--navy); font-size: 13px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul li{ margin-bottom: 10px; }
.footer-col a{ color: var(--gray); font-size: 13.5px; transition: color 0.2s ease; }
.footer-col a:hover{ color: var(--gold); }
.footer-bottom{
  border-top: 1px solid rgba(10,31,68,0.12); padding-top: 22px;
  display: flex; justify-content: center; flex-wrap: wrap; gap: 24px;
  font-size: 12.5px; color: var(--gray); text-align: center;
}
.footer-bottom-left{ display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.footer-linkedin{ display: inline-flex; color: var(--gray); }
.footer-linkedin:hover{ color: var(--gold); }

/* -------------------- Responsive -------------------- */
@media (max-width: 980px){
  .grid-3, .grid-4{ grid-template-columns: 1fr 1fr; }
  .split, .people-grid, .grid-2, .roadmap-gallery{ grid-template-columns: 1fr; }
  .process-grid{ grid-template-columns: 1fr 1fr; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px){
  .btn{ white-space: normal; }
  .nav-links{
    position: fixed; top: 68px; left: 0; right: 0; bottom: 0;
    background: #eeeff2; flex-direction: column; align-items: flex-start;
    padding: 30px 28px; gap: 22px; transform: translateX(100%);
    transition: transform 0.3s ease; overflow-y:auto;
  }
  .nav-links.open{ transform: translateX(0); }
  .nav-links li.has-dropdown{
    width: 100%; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  }
  .nav-links li.has-dropdown > a::after{ display: none; }
  .nav-links li.has-dropdown > a{ flex: 1; }
  .dropdown-toggle{ display: flex; align-items: center; justify-content: center; }
  .nav-links .dropdown{
    position: static; opacity: 1; visibility: visible; transform: none;
    background: transparent; box-shadow: none; border-radius: 0;
    margin: 10px 0 0; padding: 0 0 0 16px; display: none; flex-direction: column; gap: 14px;
    flex-basis: 100%;
  }
  .nav-links li.has-dropdown.open .dropdown{ display: flex; }
  .dropdown a{ padding: 0; color: var(--navy); font-size: 14px; }
  .dropdown a:hover, .dropdown a.active{ background: none; color: var(--gold); }
  .nav-cta{ display: none; }
  .nav-links .nav-cta-mobile{ display: inline-flex; margin-top: 10px; }
  .nav-toggle{ display: block; }
  .grid-3, .grid-4, .process-grid, .footer-grid, .form-row{ grid-template-columns: 1fr; }
  section{ padding: 64px 0; }
  .hero{ padding: 36px 0 30px; }
  .serve-bar ul{ gap: 10px 24px; }
  .footer-bottom{ flex-direction: column; }
  .timeline::before{ left: 29px; }
  .timeline-icon{ width: 60px; height: 60px; }
  .timeline-icon svg{ width: 26px; height: 26px; }
  .pillar-strip{ grid-template-columns: 1fr; gap: 32px; }
}
