/* =========================================================
   RHC – Roam Hanks Consultancy | Main Stylesheet
   ========================================================= */

/* ── Imports ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&display=swap');

/* ── Design Tokens ── */
:root {
  --navy:        #0a0e1a;
  --navy-mid:    #111827;
  --navy-light:  #1e2d40;
  --teal:        #00c9b8;
  --teal-dark:   #009e90;
  --teal-glow:   rgba(0,201,184,.18);
  --gold:        #c9a84c;
  --white:       #ffffff;
  --off-white:   #f4f6f9;
  --grey-200:    #e5e7eb;
  --grey-400:    #9ca3af;
  --grey-600:    #4b5563;
  --font-body:   'Plus Jakarta Sans', 'Inter', sans-serif;
  --font-head:   'Playfair Display', Georgia, serif;
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   24px;
  --shadow-sm:   0 2px 8px rgba(0,0,0,.12);
  --shadow-md:   0 8px 32px rgba(0,0,0,.24);
  --shadow-lg:   0 20px 60px rgba(0,0,0,.4);
  --transition:  .35s cubic-bezier(.4,0,.2,1);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--teal-dark); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }

/* ── Site-Wide Particle Canvas ── */
#rhc-particle-canvas {
  position: fixed; inset: 0; z-index: -1;
  width: 100%; height: 100%;
  pointer-events: none;
}

/* ── Loader ── */
#rhc-loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 1rem;
  transition: opacity .5s ease, visibility .5s ease;
}
#rhc-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo { height: 72px; width: auto; filter: drop-shadow(0 0 12px rgba(0,201,184,.35)); }
.loader-bar {
  width: 200px; height: 2px;
  background: var(--navy-light);
  border-radius: 1px;
  overflow: hidden;
}
.loader-bar-fill {
  height: 100%; width: 0;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  border-radius: 1px;
  animation: loaderFill 1.4s ease forwards;
}
@keyframes loaderFill { to { width: 100%; } }

/* ── Typography ── */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }
p  { font-size: 1rem; color: var(--grey-400); }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: .8rem;
}

/* ── Layout ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }
section { position: relative; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .82rem 2rem; border-radius: 50px;
  font-family: var(--font-body); font-weight: 600; font-size: .95rem;
  letter-spacing: .02em; transition: all var(--transition);
  position: relative; overflow: hidden; white-space: nowrap;
}
.btn-primary {
  background: var(--teal);
  color: var(--navy);
}
.btn-primary:hover {
  background: var(--teal-dark);
  color: var(--navy);
}
.btn-outline {
  border: 1.5px solid var(--teal);
  color: var(--teal);
  background: transparent;
}
.btn-outline:hover {
  background: rgba(0,201,184,.08);
  color: var(--teal);
}
.btn-ghost {
  color: var(--white); border: 1.5px solid rgba(255,255,255,.3);
}
.btn-ghost:hover {
  border-color: var(--white); background: rgba(255,255,255,.06);
  color: var(--white);
}
.btn-sm { padding: .55rem 1.3rem; font-size: .85rem; }
.btn-lg { padding: 1rem 2.6rem; font-size: 1.05rem; }

/* ─────────────────────────────────────────
   NAV
───────────────────────────────────────── */
.rhc-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.2rem 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.rhc-nav.scrolled {
  background: rgba(10,14,26,.95);
  backdrop-filter: blur(12px);
  padding: .7rem 0;
  box-shadow: 0 1px 40px rgba(0,0,0,.5);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
}
.nav-logo {
  display: flex; align-items: center; gap: .75rem; text-decoration: none;
}
.nav-logo img {
  height: 3.2rem; width: auto;
}
.nav-brand {
  display: flex; flex-direction: column; line-height: 1.15;
}
.nav-brand-name {
  font-family: var(--font-head); font-size: 1rem; font-weight: 600;
  color: var(--white); letter-spacing: .01em;
}
.nav-brand-sub {
  font-family: var(--font-body); font-size: .65rem; font-weight: 600;
  color: var(--teal); letter-spacing: .12em; text-transform: uppercase;
}
.nav-links {
  display: flex; align-items: center; gap: 1.8rem;
}
.nav-links a {
  color: rgba(255,255,255,.82); font-size: .9rem; font-weight: 500;
  letter-spacing: .02em; position: relative; padding-bottom: 2px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1.5px; background: var(--teal); transform: scaleX(0);
  transition: transform var(--transition); transform-origin: right;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); transform-origin: left; }
.nav-links a.active { color: var(--white); }
.nav-cta { display: flex; align-items: center; gap: 1rem; }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  width: 28px; padding: 4px;
}
.nav-hamburger span {
  display: block; height: 2px; background: var(--white);
  border-radius: 1px; transition: all var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--navy); z-index: 999; flex-direction: column;
  align-items: center; justify-content: center; gap: 2.5rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a { font-size: 1.8rem; font-family: var(--font-head); color: var(--white); }
.nav-mobile a:hover { color: var(--teal); }
.nav-mobile-close {
  position: absolute; top: 1.5rem; right: 1.5rem; font-size: 2rem;
  color: var(--white); background: none; border: none; cursor: pointer;
}

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero-video-wrap {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden;
}
.hero-video-wrap video {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  filter: brightness(.35) saturate(.8);
}
.hero-canvas {
  position: absolute; inset: 0; z-index: 1;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(135deg,
    rgba(10,14,26,.85) 0%,
    rgba(10,14,26,.55) 60%,
    transparent 100%);
}
.hero-content {
  position: relative; z-index: 3;
  max-width: 1200px; margin: 0 auto; padding: 8rem 1.5rem 4rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: .8rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 1.2rem;
  display: flex; align-items: center; gap: .7rem;
}
.hero-eyebrow::before {
  content: ''; display: block; width: 36px; height: 1.5px; background: var(--teal);
}
.hero h1 {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 700; line-height: 1.12;
  margin-bottom: 1.5rem;
}
.hero h1 em {
  font-style: italic; color: var(--teal);
}
.hero-sub {
  font-size: 1.1rem; color: rgba(255,255,255,.72);
  margin-bottom: 2.5rem; max-width: 480px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 2.5rem; margin-top: 3.5rem;
}
.hero-stat-num {
  font-family: var(--font-head); font-size: 2.4rem; font-weight: 700;
  color: var(--teal); line-height: 1;
}
.hero-stat-label {
  font-size: .82rem; color: rgba(255,255,255,.6); margin-top: .3rem;
}
.hero-visual {
  display: flex; align-items: center; justify-content: center;
}
.hero-badge-ring {
  width: 340px; height: 340px; border-radius: 50%;
  border: 1.5px solid rgba(0,201,184,.2);
  display: flex; align-items: center; justify-content: center;
  position: relative; animation: spinSlow 18s linear infinite;
}
@keyframes spinSlow { to { transform: rotate(360deg); } }
.hero-badge-ring::before {
  content: ''; position: absolute; inset: -20px;
  border-radius: 50%; border: 1px solid rgba(0,201,184,.08);
}
.hero-badge-inner {
  width: 200px; height: 200px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-light), var(--navy-mid));
  border: 1.5px solid rgba(0,201,184,.3);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .5rem; animation: spinSlow 18s linear infinite reverse;
}
.hero-badge-pct {
  font-family: var(--font-head); font-size: 3.2rem; font-weight: 700;
  color: var(--teal); line-height: 1;
}
.hero-badge-txt {
  font-size: .75rem; color: rgba(255,255,255,.7); text-align: center;
  letter-spacing: .06em; text-transform: uppercase;
}
.hero-scroll-cue {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: rgba(255,255,255,.45); font-size: .78rem; letter-spacing: .1em;
  animation: bobDown 2s ease-in-out infinite;
}
@keyframes bobDown { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }
.hero-scroll-arrow {
  width: 24px; height: 24px; border-right: 1.5px solid rgba(255,255,255,.4);
  border-bottom: 1.5px solid rgba(255,255,255,.4); transform: rotate(45deg);
}

/* ─────────────────────────────────────────
   PROBLEM / SOLUTION
───────────────────────────────────────── */
/* ── Section video backgrounds ── */
.section-video-bg {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden;
}
.section-video-bg video {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  filter: brightness(.18) saturate(.6);
}
.section-video-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,14,26,.6) 0%, rgba(10,14,26,.45) 50%, rgba(10,14,26,.7) 100%);
}
.section-video-bg ~ .container,
.section-video-bg ~ * {
  position: relative; z-index: 1;
}
.problem-solution,
.services-section,
.process-section {
  position: relative; overflow: hidden;
}

.problem-solution {
  padding: 4.5rem 0;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%);
}
.ps-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.ps-problem {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg); padding: 2.5rem;
}
.ps-solution {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg); padding: 2.5rem;
}
.ps-icon {
  width: 56px; height: 56px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 1.2rem;
}
.ps-problem .ps-icon { background: rgba(255,60,60,.12); }
.ps-solution .ps-icon { background: rgba(0,201,184,.12); }
.ps-title {
  font-size: 1.4rem; font-weight: 700; margin-bottom: .8rem; color: var(--white);
}
.ps-problem .ps-title { color: #ff7070; }
.ps-solution .ps-title { color: var(--teal); }
.ps-text { font-size: 1rem; color: rgba(255,255,255,.72); line-height: 1.7; }
.ps-stat-row {
  display: flex; gap: 2rem; margin-top: 2rem; flex-wrap: wrap;
}
.ps-stat {
  flex: 1; min-width: 140px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md); padding: 1.5rem;
  text-align: center;
}
.ps-stat-num {
  font-family: var(--font-head); font-size: 2.6rem; font-weight: 700;
  color: var(--teal); line-height: 1;
}
.ps-stat-label { font-size: .82rem; color: var(--grey-400); margin-top: .4rem; }

/* Compact 5-card row inside funded-stat-hero */
.funded-stat-hero .ps-stat-row { gap: 1rem; }
.funded-stat-hero .ps-stat { padding: 1rem 0.75rem; min-width: 0; }
.funded-stat-hero .ps-stat-num { font-size: 1.7rem; white-space: nowrap; }
.funded-stat-hero .ps-stat-label { font-size: .75rem; white-space: nowrap; }

/* ─────────────────────────────────────────
   SERVICES CARDS
───────────────────────────────────────── */
.services-section { padding: 4.5rem 0; background: var(--navy-mid); }
.section-head { text-align: center; margin-bottom: 2.5rem; }
.section-head h2 { margin-bottom: 1rem; }
.section-head p { max-width: 560px; margin: 0 auto; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-card {
  height: 280px; perspective: 1000px; cursor: pointer;
}
.service-card-inner {
  position: relative; width: 100%; height: 100%;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
  transform-style: preserve-3d;
}
.service-card:hover .service-card-inner { transform: rotateY(180deg); }
.service-card-front,
.service-card-back {
  position: absolute; inset: 0; border-radius: var(--radius-md);
  backface-visibility: hidden; -webkit-backface-visibility: hidden;
  padding: 2rem;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.service-card-front {
  background: linear-gradient(160deg, var(--navy-light), var(--navy-mid));
  border: 1px solid rgba(255,255,255,.08);
}
.service-card-back {
  transform: rotateY(180deg);
  background: linear-gradient(160deg, var(--teal-dark), #006e65);
  border: 1px solid rgba(0,201,184,.3);
}
.service-icon {
  font-size: 2.2rem; margin-bottom: 1rem;
  width: 60px; height: 60px;
  background: var(--teal-glow); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(0,201,184,.25);
}
.service-card-front h3 { color: var(--white); font-size: 1.2rem; }
.service-card-back h3 { color: var(--navy); font-size: 1.2rem; margin-bottom: .7rem; }
.service-card-back p { color: rgba(10,14,26,.8); font-size: .9rem; line-height: 1.6; }
.service-card-back .btn-sm { margin-top: auto; align-self: flex-start; color: var(--navy); border-color: var(--navy); }
.service-card-back .btn-sm:hover { background: var(--navy); color: var(--teal); }
.service-sub { font-size: .82rem; color: var(--grey-400); margin-top: .3rem; }

/* Card tilt glow */
.service-card-front::before {
  content: ''; position: absolute; inset: -1px; border-radius: inherit;
  background: linear-gradient(135deg, transparent 40%, rgba(0,201,184,.15) 100%);
  opacity: 0; transition: opacity var(--transition); z-index: 0;
}
.service-card:hover .service-card-front::before { opacity: 1; }


/* ─────────────────────────────────────────
   CLIENTS / SOCIAL PROOF
───────────────────────────────────────── */
.clients-section { padding: 4.5rem 0; background: var(--navy); }
.clients-logo-track { overflow: hidden; position: relative; margin-top: 3rem; }
.clients-logo-row {
  display: flex; gap: 3rem; align-items: center;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.clients-logo-row:hover { animation-play-state: paused; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.client-logo-item {
  flex-shrink: 0; cursor: pointer;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 0.9rem 1.6rem;
  transition: background var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  display: flex; align-items: center; justify-content: center;
  min-width: 150px; height: 72px;
}
.client-logo-item:hover {
  background: rgba(0,201,184,0.07);
  border-color: rgba(0,201,184,0.3);
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(0,201,184,0.12);
}
.client-logo-item img {
  max-height: 44px; max-width: 130px; object-fit: contain;
  filter: grayscale(100%) brightness(0.9);
  opacity: .65;
  transition: filter var(--transition), opacity var(--transition);
}
.client-logo-item:hover img {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
}
.client-logo-name {
  font-family: var(--font-head);
  font-size: 1rem; font-weight: 700;
  color: rgba(255,255,255,.5);
  letter-spacing: .06em; white-space: nowrap;
  transition: color var(--transition);
}
.client-logo-item:hover .client-logo-name { color: var(--teal); }

/* Modal */
.rhc-modal {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,.75); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center; padding: 2rem;
  opacity: 0; visibility: hidden; transition: all .3s ease;
}
.rhc-modal.open { opacity: 1; visibility: visible; }
.modal-box {
  background: var(--navy-mid); border: 1px solid rgba(0,201,184,.2);
  border-radius: var(--radius-lg); padding: 3rem; max-width: 600px; width: 100%;
  position: relative; max-height: 90vh; overflow-y: auto;
  transform: translateY(20px); transition: transform .3s ease;
}
.rhc-modal.open .modal-box { transform: translateY(0); }
.modal-close {
  position: absolute; top: 1.2rem; right: 1.2rem;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.08); color: var(--white); font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.modal-close:hover { background: rgba(255,60,60,.25); }
.modal-client-logo { max-height: 60px; margin-bottom: 1.5rem; filter: brightness(1.3); }
.modal-quote {
  font-family: var(--font-head); font-size: 1.15rem; font-style: italic;
  color: rgba(255,255,255,.88); line-height: 1.7; margin-bottom: 1.5rem;
  border-left: 3px solid var(--teal); padding-left: 1.2rem;
}
.modal-author { font-weight: 600; color: var(--teal); font-size: .9rem; }
.modal-role { color: var(--grey-400); font-size: .82rem; }
.modal-case-study { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.08); }
.modal-case-study h4 { color: var(--white); font-size: 1rem; margin-bottom: .6rem; }
.modal-case-study p { font-size: .9rem; color: rgba(255,255,255,.7); line-height: 1.6; }

/* ─────────────────────────────────────────
   PROCESS TIMELINE
───────────────────────────────────────── */
.process-section { padding: 4.5rem 0; background: var(--navy-mid); }
.timeline { position: relative; margin-top: 2rem; }
.timeline::before {
  content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(180deg, var(--teal) 0%, transparent 100%);
  transform: translateX(-50%);
}
.timeline-item {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem;
  margin-bottom: 2rem; position: relative;
}
.timeline-item:nth-child(even) .timeline-content { order: 2; text-align: right; }
.timeline-item:nth-child(even) .timeline-spacer { order: 1; }
.timeline-dot {
  position: absolute; left: 50%; top: 0; transform: translate(-50%, 4px);
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--teal); border: 3px solid var(--navy-mid);
  box-shadow: 0 0 16px rgba(0,201,184,.5); z-index: 1;
  transition: transform var(--transition);
}
.timeline-item:hover .timeline-dot { transform: translate(-50%, 4px) scale(1.4); }
.timeline-content { padding: 1.5rem; }
.timeline-step {
  font-family: var(--font-body); font-size: .78rem;
  font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--teal); margin-bottom: .6rem;
}
.timeline-content h3 { color: var(--white); font-size: 1.4rem; margin-bottom: .7rem; }
.timeline-content p { color: var(--grey-400); line-height: 1.7; }

/* ─────────────────────────────────────────
   ABOUT / FOUNDER
───────────────────────────────────────── */
.about-section { padding: 4.5rem 0; background: var(--navy); }
.founder-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
.founder-photo-wrap { position: relative; }
.founder-photo {
  width: 100%; border-radius: var(--radius-lg);
  aspect-ratio: 3/4; object-fit: cover;
  border: 1px solid rgba(0,201,184,.2);
  box-shadow: var(--shadow-lg);
}
.founder-photo-placeholder {
  width: 100%; border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--navy-light), var(--navy-mid));
  border: 1px solid rgba(0,201,184,.2);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1rem; color: var(--grey-400); font-size: .9rem; text-align: center; padding: 2rem;
}
.founder-photo-placeholder svg { width: 80px; opacity: .3; }
.founder-badge {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: var(--navy); border-radius: var(--radius-md); padding: 1.2rem 1.5rem;
  box-shadow: var(--shadow-md);
}
.founder-badge-num { font-family: var(--font-head); font-size: 2rem; font-weight: 700; line-height: 1; }
.founder-badge-label { font-size: .75rem; font-weight: 600; }
.founder-content h2 { margin-bottom: 1.2rem; }
.founder-content p { font-size: 1rem; line-height: 1.75; margin-bottom: 1.2rem; }
.founder-credentials {
  display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 2rem;
}
.founder-credential {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--teal-glow); border: 1px solid rgba(0,201,184,.25);
  border-radius: 50px; padding: .4rem 1rem;
  font-size: .82rem; color: var(--teal);
}

/* ─────────────────────────────────────────
   FINAL CTA BANNER
───────────────────────────────────────── */
.cta-banner {
  padding: 4rem 0;
  background: var(--navy-mid);
  border-top: 1px solid rgba(255,255,255,.07);
  text-align: center; position: relative;
}
.cta-banner h2 { color: var(--white); font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 1.2rem; }
.cta-banner p { max-width: 520px; margin: 0 auto 2.5rem; font-size: 1.05rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.rhc-footer {
  background: #060a12; padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand img { height: 2.5rem; margin-bottom: 1rem; }
.footer-brand p { font-size: .88rem; color: var(--grey-400); line-height: 1.7; }
.footer-col h5 { color: var(--white); font-size: .9rem; font-weight: 600; margin-bottom: 1.2rem; letter-spacing: .04em; }
.footer-col ul li { margin-bottom: .6rem; }
.footer-col ul li a { color: var(--grey-400); font-size: .88rem; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--teal); }
.footer-contact-item {
  display: flex; gap: .7rem; margin-bottom: .8rem; align-items: flex-start;
}
.footer-contact-icon { font-size: 1rem; flex-shrink: 0; margin-top: .05rem; }
.footer-contact-text { font-size: .88rem; color: var(--grey-400); line-height: 1.5; }
.footer-contact-text a { color: var(--grey-400); }
.footer-contact-text a:hover { color: var(--teal); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 1.5rem;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer-copy { font-size: .82rem; color: var(--grey-600); }
.footer-legal-links { display: flex; gap: 1.5rem; }
.footer-legal-links a { font-size: .82rem; color: var(--grey-600); }
.footer-legal-links a:hover { color: var(--teal); }
.footer-social { display: flex; gap: 1rem; }
.social-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--grey-400); font-size: .85rem;
  transition: all var(--transition);
}
.social-icon:hover { background: var(--teal-glow); border-color: rgba(0,201,184,.4); color: var(--teal); }

/* ─────────────────────────────────────────
   BACK TO TOP
───────────────────────────────────────── */
.back-to-top {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 500;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--teal); color: var(--navy);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
  box-shadow: 0 4px 20px rgba(0,201,184,.4);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all var(--transition);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-3px); color: var(--navy); }

/* ─────────────────────────────────────────
   PHOTO BREAK (full-width parallax photo sections)
───────────────────────────────────────── */
.photo-break {
  position: relative; overflow: hidden;
  height: 420px; display: flex; align-items: center; justify-content: center;
}
.photo-break img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transform: scale(1.05); transition: transform 8s ease;
}
.photo-break:hover img { transform: scale(1); }
.photo-break-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,14,26,.82) 0%, rgba(10,14,26,.55) 100%);
}
.photo-break-content {
  position: relative; z-index: 1; text-align: center; padding: 2rem;
  max-width: 700px;
}
.photo-break-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--white); margin-bottom: 1rem; line-height: 1.2;
}
.photo-break-content p {
  color: rgba(255,255,255,.78); font-size: 1.05rem; line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* ─────────────────────────────────────────
   PAGE HERO (inner pages)
───────────────────────────────────────── */
.page-hero {
  padding: 10rem 0 5rem;
  background: linear-gradient(180deg, var(--navy-mid) 0%, var(--navy) 100%);
  text-align: center; position: relative; overflow: hidden;
}
.page-hero.has-photo-bg {
  background: var(--navy);
}
.page-hero.has-photo-bg .page-hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  opacity: .22; filter: brightness(.7);
}
.page-hero::after {
  content: '';
  position: absolute; bottom: -1px; left: 0; right: 0; height: 80px;
  background: linear-gradient(0deg, var(--navy) 0%, transparent 100%);
}
.page-hero h1 { margin-bottom: 1rem; }
.page-hero p { max-width: 560px; margin: 0 auto; font-size: 1.1rem; }
.page-hero-label {
  display: inline-block; margin-bottom: 1rem;
  font-size: .78rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--teal);
}

/* ─────────────────────────────────────────
   SERVICES PAGE
───────────────────────────────────────── */
.services-detail { padding: 6rem 0; background: var(--navy); }
.service-detail-item {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
  padding: 4rem 0; border-bottom: 1px solid rgba(255,255,255,.06);
}
.service-detail-item:last-child { border-bottom: none; }
.service-detail-item:nth-child(even) .service-detail-text { order: 2; }
.service-detail-item:nth-child(even) .service-detail-visual { order: 1; }
.service-detail-visual {
  aspect-ratio: 4/3; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--navy-light), var(--navy-mid));
  border: 1px solid rgba(0,201,184,.15);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1rem; padding: 3rem;
}
.service-detail-icon { font-size: 4rem; }
.service-detail-text h3 { color: var(--white); margin-bottom: 1rem; }
.service-detail-text p { margin-bottom: 1.2rem; line-height: 1.8; }
.service-detail-list { margin: 1.2rem 0; }
.service-detail-list li {
  display: flex; align-items: flex-start; gap: .7rem;
  margin-bottom: .7rem; color: rgba(255,255,255,.75); font-size: .95rem;
}
.service-detail-list li::before {
  content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0;
}
.partners-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.partner-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md); padding: 2rem;
  transition: all var(--transition);
}
.partner-card:hover {
  border-color: rgba(0,201,184,.3); background: var(--teal-glow);
  transform: translateY(-4px);
}
.partner-card h4 { color: var(--teal); margin-bottom: .7rem; font-size: 1.1rem; }
.partner-card p { font-size: .9rem; line-height: 1.7; }

/* ─────────────────────────────────────────
   CLIENTS PAGE
───────────────────────────────────────── */
.clients-detail { padding: 6rem 0; background: var(--navy); position: relative; overflow: hidden; }
.funded-stat-hero {
  text-align: center;
  padding: 4rem 3rem;
  margin-bottom: 4rem;
  background: rgba(10,14,26,0.65);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0,201,184,.2);
  box-shadow: 0 0 60px rgba(0,201,184,.06), inset 0 1px 0 rgba(255,255,255,.05);
  position: relative; overflow: hidden;
}
.funded-stat-hero::before {
  content: '';
  position: absolute; top: -60px; left: 50%; transform: translateX(-50%);
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(0,201,184,.12) 0%, transparent 70%);
  pointer-events: none;
}
.funded-number {
  font-family: var(--font-head); font-size: clamp(5rem, 12vw, 9rem);
  font-weight: 700; color: var(--teal); line-height: 1;
  display: block;
  text-shadow: 0 0 40px rgba(0,201,184,.35);
  position: relative;
}
.funded-label {
  font-size: 1.15rem; color: rgba(255,255,255,.8);
  margin-top: .75rem; max-width: 520px; margin-left: auto; margin-right: auto;
}
.funded-bar-wrap { max-width: 560px; margin: 2.5rem auto 0; }
.funded-bar-wrap-labels {
  display: flex; justify-content: space-between;
  font-size: .82rem; color: rgba(255,255,255,.45);
  margin-bottom: .6rem; letter-spacing: .04em;
}
.funded-bar-track {
  height: 10px; background: rgba(255,255,255,.08);
  border-radius: 999px; overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
}
.funded-bar-fill {
  height: 100%; width: 0; border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  box-shadow: 0 0 12px rgba(0,201,184,.4);
  transition: width 1.8s cubic-bezier(.4,0,.2,1);
}
.clients-wall {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.4rem; margin-top: 3rem;
}
.clients-wall .client-logo-item {
  min-width: unset; width: 100%; height: 110px;
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.12);
}
.clients-wall .client-logo-item img {
  filter: grayscale(20%) brightness(1.4);
  opacity: .85;
}
.clients-wall .client-logo-item:hover img {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
}
.client-request-card {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  height: 110px; border-radius: var(--radius-md);
  background: rgba(0,201,184,0.06);
  border: 1px dashed rgba(0,201,184,0.35);
  text-decoration: none; text-align: center;
  padding: 1rem; gap: 0.3rem;
  transition: background var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.client-request-card:hover {
  background: rgba(0,201,184,0.12);
  border-color: rgba(0,201,184,0.7);
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(0,201,184,0.12);
}
.client-request-icon { font-size: 1.3rem; }
.client-request-title {
  font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--teal);
}
.client-request-sub {
  font-size: .72rem; color: rgba(255,255,255,.5); line-height: 1.3;
}
.client-request-btn {
  font-size: .75rem; font-weight: 600; color: var(--teal);
  margin-top: .2rem; letter-spacing: .03em;
}

/* ─────────────────────────────────────────
   ABOUT PAGE
───────────────────────────────────────── */
.about-detail { padding: 6rem 0; background: var(--navy); }
.mission-values {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.value-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md); padding: 2rem;
  transition: all var(--transition);
}
.value-card:hover { border-color: rgba(0,201,184,.3); transform: translateY(-4px); }
.value-icon { font-size: 2rem; margin-bottom: 1rem; }
.value-card h4 { color: var(--white); margin-bottom: .6rem; font-size: 1.05rem; }
.value-card p { font-size: .88rem; line-height: 1.7; }

/* ─────────────────────────────────────────
   TEAM CARDS
───────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem; margin-top: 3rem;
}
.team-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all var(--transition);
}
.team-card:hover {
  border-color: rgba(0,201,184,.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,201,184,.1);
}
.team-card-photo {
  width: 100%; aspect-ratio: 1/1;
  background: linear-gradient(135deg, var(--navy-light), var(--navy-mid));
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: .8rem; position: relative; overflow: hidden;
}
.team-card-photo::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 120%, rgba(0,201,184,.15) 0%, transparent 70%);
}
.team-card-photo svg { width: 90px; opacity: .25; position: relative; z-index: 1; }
.team-card-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.team-card-photo-placeholder {
  font-size: .78rem; color: var(--grey-400); text-align: center;
  padding: 1rem; position: relative; z-index: 1;
}
.team-card-body { padding: 1.5rem; }
.team-card-name {
  font-family: var(--font-head); font-size: 1.25rem;
  color: var(--white); margin-bottom: .2rem;
}
.team-card-role {
  font-size: .8rem; font-weight: 600; color: var(--teal);
  letter-spacing: .06em; text-transform: uppercase; margin-bottom: 1rem;
}
.team-card-bio { font-size: .88rem; color: var(--grey-400); line-height: 1.7; }
.team-card-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.2rem; }
.team-tag {
  font-size: .75rem; padding: .3rem .8rem; border-radius: 50px;
  background: var(--teal-glow); border: 1px solid rgba(0,201,184,.2); color: var(--teal);
}
.team-card-social { display: flex; gap: .6rem; margin-top: 1.2rem; }
.team-social-link {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: .78rem; color: var(--grey-400); transition: all var(--transition);
}
.team-social-link:hover {
  background: var(--teal-glow); border-color: rgba(0,201,184,.4); color: var(--teal);
}
.team-placeholder-card {
  background: rgba(255,255,255,.02); border: 1px dashed rgba(255,255,255,.1);
  border-radius: var(--radius-lg); padding: 3rem 2rem;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; gap: 1rem; transition: all var(--transition);
}
.team-placeholder-card:hover {
  border-color: rgba(0,201,184,.3); background: var(--teal-glow);
}
.team-placeholder-icon { font-size: 2.5rem; opacity: .4; }
.team-placeholder-text { color: var(--grey-600); font-size: .9rem; }

/* ─────────────────────────────────────────
   CONTACT PAGE
───────────────────────────────────────── */
.contact-detail { padding: 6rem 0; background: var(--navy); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 4rem; align-items: start; }
.contact-info h3 { color: var(--white); margin-bottom: 2rem; }
.contact-item {
  display: flex; gap: 1rem; margin-bottom: 2rem; align-items: flex-start;
}
.contact-item-icon {
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  background: var(--teal-glow); border: 1px solid rgba(0,201,184,.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.contact-item-text h5 { color: var(--white); font-size: .9rem; margin-bottom: .2rem; }
.contact-item-text p, .contact-item-text a { color: var(--grey-400); font-size: .9rem; }
.contact-form {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg); padding: 3rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { margin-bottom: 1.4rem; }
.form-group label {
  display: block; font-size: .85rem; font-weight: 600;
  color: rgba(255,255,255,.8); margin-bottom: .5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: .85rem 1.1rem;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm); color: var(--white);
  font-family: var(--font-body); font-size: .95rem;
  transition: border-color var(--transition), background var(--transition);
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--teal); background: rgba(0,201,184,.06);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--grey-600); }
.form-group select option { background: var(--navy-mid); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; }
.form-success {
  display: none; text-align: center; padding: 2rem;
  color: var(--teal); font-size: 1.1rem;
}
.form-success.show { display: block; }

/* ─────────────────────────────────────────
   LEGAL PAGES
───────────────────────────────────────── */
.legal-content { padding: 6rem 0; background: var(--navy); max-width: 800px; margin: 0 auto; }
.legal-content h2 { color: var(--white); margin-bottom: 1rem; margin-top: 2.5rem; font-size: 1.5rem; }
.legal-content h3 { color: var(--white); margin-bottom: .8rem; margin-top: 2rem; font-size: 1.15rem; }
.legal-content p { margin-bottom: 1rem; line-height: 1.8; }
.legal-content ul { margin: 1rem 0 1.2rem 1.2rem; }
.legal-content ul li { color: var(--grey-400); margin-bottom: .5rem; list-style: disc; font-size: .95rem; }

/* ─────────────────────────────────────────
   SCROLL ANIMATIONS (pre-state)
───────────────────────────────────────── */
.js-ready .reveal { opacity: 0; transform: translateY(40px); }
.js-ready .reveal-left { opacity: 0; transform: translateX(-40px); }
.js-ready .reveal-right { opacity: 0; transform: translateX(40px); }
.reveal.animated, .reveal-left.animated, .reveal-right.animated {
  opacity: 1; transform: translate(0);
  transition: opacity .7s ease, transform .7s ease;
}
.delay-1 { transition-delay: .1s !important; }
.delay-2 { transition-delay: .2s !important; }
.delay-3 { transition-delay: .3s !important; }
.delay-4 { transition-delay: .4s !important; }
.delay-5 { transition-delay: .5s !important; }

/* ─────────────────────────────────────────
   UTILITIES
───────────────────────────────────────── */
.text-teal   { color: var(--teal); }
.text-gold   { color: var(--gold); }
.text-center { text-align: center; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.d-flex { display: flex; }
.gap-1 { gap: .5rem; }
.gap-2 { gap: 1rem; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { display: none; }
  .hero-stats { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-eyebrow { justify-content: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .ps-grid { grid-template-columns: 1fr; gap: 2rem; }
  .founder-grid { grid-template-columns: 1fr; }
  .founder-badge { right: 1rem; }
  .timeline::before { left: 20px; }
  .timeline-item { grid-template-columns: 1fr; gap: 0; padding-left: 3rem; }
  .timeline-item:nth-child(even) .timeline-content { order: 1; text-align: left; }
  .timeline-dot { left: 20px; }
  .contact-grid { grid-template-columns: 1fr; }
  .service-detail-item { grid-template-columns: 1fr; }
  .service-detail-item:nth-child(even) .service-detail-text { order: 1; }
  .service-detail-item:nth-child(even) .service-detail-visual { order: 2; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-content { padding: 7rem 1.5rem 3rem; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { height: 320px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .ps-stat-row { gap: 1rem; }
  .clients-wall { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  h1 { font-size: 2.2rem; }
  .hero-stats { flex-direction: column; gap: 1rem; align-items: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .hero-actions { flex-direction: column; align-items: center; }
}
