/* ================================================================
   COMPANY PAGES — PREMIUM DARK HERO v4.0
   20 Microns | Matching globalreach.php, investors.php, our-approach.php
   Hero: Dark Navy | Content: Light Sage | Connect: Dark Theme
   ================================================================ */

html:has(body.page-company) { overflow-x: clip; }
body.page-company { overflow-x: clip; }

/* -----------------------------------------------------------------------
   1. KEYFRAMES
----------------------------------------------------------------------- */
@keyframes cpFadeUp      { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:none} }
@keyframes cpFadeRight   { from{opacity:0;transform:translateX(-24px)} to{opacity:1;transform:none} }
@keyframes cpFadeLeft    { from{opacity:0;transform:translateX(24px)} to{opacity:1;transform:none} }
@keyframes cpZoomIn      { from{opacity:0;transform:scale(0.92)} to{opacity:1;transform:none} }
@keyframes cpGridDrift   { 0%{transform:translate(0,0)} 100%{transform:translate(-64px,-64px)} }
@keyframes cpGlowPulse   { 0%{opacity:0.5;transform:scale(0.92)} 100%{opacity:1;transform:scale(1.08)} }
@keyframes cpBadgePulse  { 0%,100%{box-shadow:0 0 0 0 rgba(127,166,155,0.5)} 50%{box-shadow:0 0 0 8px rgba(127,166,155,0)} }
@keyframes cpGradShift   { 0%,100%{background-position:0% 50%} 50%{background-position:100% 50%} }
@keyframes cpOrbitSpin    { to{transform:translate(-50%,-50%) rotate(360deg)} }
@keyframes cpOrbitSpinRev { to{transform:translate(-50%,-50%) rotate(-360deg)} }
@keyframes cpNodeFloat    { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes cpPulseExpand {
  0%   { transform:translate(-50%,-50%) scale(1); opacity:0.5; }
  100% { transform:translate(-50%,-50%) scale(2.5); opacity:0; }
}
@keyframes cpParticleFly {
  0%   { transform:translateY(0) scale(0); opacity:0; }
  20%  { opacity:0.6; transform:translateY(-20px) scale(1); }
  80%  { opacity:0.3; transform:translateY(-80px) scale(0.8); }
  100% { transform:translateY(-120px) scale(0); opacity:0; }
}
@keyframes cpScrollDown {
  0%,100% { opacity:1; transform:scaleY(1); transform-origin:top; }
  50%     { opacity:0.4; transform:scaleY(0.5); transform-origin:top; }
}
@keyframes cpFloat       { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }
@keyframes cpPulseGlow   { 0%,100%{opacity:0.35;transform:scale(1)} 50%{opacity:0.85;transform:scale(1.25)} }
@keyframes cpSpinCW      { to{transform:rotate(360deg)} }
@keyframes cpSpinCCW     { to{transform:rotate(-360deg)} }
@keyframes cpMorph {
  0%,100% { border-radius:55% 45% 40% 60%/50% 60% 40% 50%; }
  25%     { border-radius:40% 60% 55% 45%/60% 40% 60% 40%; }
  50%     { border-radius:60% 40% 50% 50%/40% 55% 45% 60%; }
  75%     { border-radius:45% 55% 40% 60%/55% 45% 55% 45%; }
}
@keyframes cpShimmer     { 0%{background-position:-200% center} 100%{background-position:200% center} }
@keyframes cpTimelineDraw { from{transform:scaleY(0);transform-origin:top} to{transform:scaleY(1);transform-origin:top} }
@keyframes cpHeroLine    { from{width:0;opacity:0} to{width:72px;opacity:1} }
@keyframes badgeGlow     { 0%{left:-100%} 100%{left:100%} }
@keyframes iconPulse     { 0%,100%{transform:scale(1)} 50%{transform:scale(1.1)} }
@keyframes underlineGrow { to{transform:scaleX(1)} }
@keyframes cpConnectGrid { 0%{background-position:0 0} 100%{background-position:-52px -52px} }
@keyframes cpDashboard   { 0%,100%{transform:translateY(0) rotate(-1deg)} 50%{transform:translateY(-6px) rotate(0.5deg)} }
@keyframes cpBarGrow     { from{transform:scaleY(0)} to{transform:scaleY(1)} }
@keyframes cpLineTrace   { from{stroke-dashoffset:300} to{stroke-dashoffset:0} }
@keyframes cpCountUp     { from{opacity:0;transform:translateY(8px)} to{opacity:1;transform:translateY(0)} }

/* SVG utilities */
.cpFloat    { animation:cpFloat 4s ease-in-out infinite; }
.cpFloat2   { animation:cpFloat 5.5s ease-in-out 0.9s infinite; }
.cpPulse    { animation:cpPulseGlow 3s ease-in-out infinite; }
.cpSpinSlow { animation:cpSpinCW 30s linear infinite; transform-origin:center; }
.cpSpinCCW  { animation:cpSpinCCW 20s linear infinite; transform-origin:center; }
.cpMorph    { animation:cpMorph 9s ease-in-out infinite; }

/* Scroll reveal */
[data-animate] {
  opacity:0; will-change:opacity,transform;
  transition:opacity 0.8s cubic-bezier(0.23,1,0.32,1),transform 0.8s cubic-bezier(0.23,1,0.32,1);
}
[data-animate="fade-up"]    { transform:translateY(28px); }
[data-animate="fade-right"] { transform:translateX(-24px); }
[data-animate="fade-left"]  { transform:translateX(24px); }
[data-animate="zoom-in"]    { transform:scale(0.93); }
[data-animate].animated     { opacity:1; transform:none; transition-delay:var(--anim-delay,0s); }

/* -----------------------------------------------------------------------
   2. HERO — DARK NAVY (matching globalreach / investors / our-approach)
----------------------------------------------------------------------- */
.cp-hero {
  position:relative;
  min-height:85vh;
  display:flex;
  align-items:center;
  overflow:hidden;
  padding:92px 0 30px;
  background:linear-gradient(145deg, #06101a 0%, #0d1820 42%, #112030 76%, #080f1a 100%);
}
/* Bottom gradient fade */
.cp-hero::after {
  content:'';
  position:absolute;
  bottom:0; left:0; right:0;
  height:100px;
  background:linear-gradient(180deg, rgba(6,16,26,0) 0%, rgba(6,16,26,0.65) 100%);
  pointer-events:none;
  z-index:1;
}
/* Animated grid overlay */
.cp-hero-grid {
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(127,166,155,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(127,166,155,0.06) 1px, transparent 1px);
  background-size:64px 64px;
  animation:cpGridDrift 24s linear infinite;
  z-index:0;
  pointer-events:none;
}
/* Ambient glow orbs */
.cp-hero-bg {
  position:absolute;
  inset:0;
  z-index:0;
  pointer-events:none;
}
.cp-hero-glow {
  position:absolute;
  border-radius:50%;
  pointer-events:none;
  z-index:0;
}
.cp-hero-glow.g1 {
  width:750px; height:750px;
  top:-260px; right:-100px;
  background:radial-gradient(circle, rgba(127,166,155,0.12) 0%, transparent 65%);
  filter:blur(65px);
  animation:cpGlowPulse 9s ease-in-out infinite alternate;
}
.cp-hero-glow.g2 {
  width:480px; height:480px;
  bottom:-150px; left:-100px;
  background:radial-gradient(circle, rgba(127,166,155,0.08) 0%, transparent 65%);
  filter:blur(50px);
  animation:cpGlowPulse 11s ease-in-out infinite alternate-reverse;
}
.cp-hero-glow.g3 {
  width:350px; height:350px;
  top:35%; left:42%;
  background:radial-gradient(circle, rgba(127,166,155,0.06) 0%, transparent 70%);
  filter:blur(42px);
  animation:cpGlowPulse 7s ease-in-out infinite alternate;
  animation-delay:-3s;
}
/* Floating particles */
.cp-hero-particles {
  position:absolute;
  inset:0; z-index:1;
  pointer-events:none; overflow:hidden;
}
.cp-hero-particles span {
  position:absolute;
  width:3px; height:3px;
  background:#7FA69B;
  border-radius:50%;
  opacity:0;
  animation:cpParticleFly 8s ease-in-out infinite;
}
.cp-hero-particles span:nth-child(1)  { left:10%;top:70%;animation-delay:0s;animation-duration:9s; }
.cp-hero-particles span:nth-child(2)  { left:25%;top:30%;animation-delay:1.5s;animation-duration:7s; }
.cp-hero-particles span:nth-child(3)  { left:45%;top:85%;animation-delay:3s;animation-duration:11s; }
.cp-hero-particles span:nth-child(4)  { left:65%;top:20%;animation-delay:0.8s;animation-duration:8s; }
.cp-hero-particles span:nth-child(5)  { left:80%;top:55%;animation-delay:2.2s;animation-duration:10s; }
.cp-hero-particles span:nth-child(6)  { left:92%;top:75%;animation-delay:4s;animation-duration:6s; }
.cp-hero-particles span:nth-child(7)  { left:15%;top:40%;animation-delay:1s;animation-duration:8.5s; }
.cp-hero-particles span:nth-child(8)  { left:55%;top:60%;animation-delay:2.5s;animation-duration:9.5s; }
.cp-hero-particles span:nth-child(9)  { left:70%;top:80%;animation-delay:3.5s;animation-duration:7.5s; }
.cp-hero-particles span:nth-child(10) { left:35%;top:15%;animation-delay:0.5s;animation-duration:10.5s; }

/* Hero layout */
.cp-hero .container {
  position:relative;
  z-index:2;
  max-width:1280px;
  margin:0 auto;
  padding:0 28px;
  width:100%;
}
.cp-hero-layout {
  display:grid;
  grid-template-columns:1.15fr 1fr;
  gap:52px;
  align-items:center;
}

/* Hero content (left) */
.cp-hero-content {
  position:relative;
  z-index:3;
  max-width:650px;
}
/* Breadcrumb */
.cp-breadcrumb {
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:12px;
  font-size:0.82rem;
  color:rgba(255,255,255,0.4);
  letter-spacing:0.03em;
}
.cp-breadcrumb a {
  color:rgba(255,255,255,0.4);
  text-decoration:none;
  display:flex; align-items:center; gap:6px;
  transition:color 0.3s;
}
.cp-breadcrumb a:hover { color:#7FA69B; }
.cp-breadcrumb i { font-size:0.55rem; opacity:0.5; }
.cp-breadcrumb span { color:rgba(255,255,255,0.7); font-weight:600; }

/* Badge */
.cp-hero-badge {
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:rgba(127,166,155,0.12);
  border:1px solid rgba(127,166,155,0.28);
  border-radius:100px;
  padding:7px 18px;
  margin-bottom:18px;
  font-size:0.72rem;
  font-weight:700;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:#99BFB3;
  backdrop-filter:blur(8px);
  animation:cpFadeUp 0.7s cubic-bezier(0.23,1,0.32,1) 0.2s both;
}
.cp-badge-dot {
  width:7px; height:7px;
  border-radius:50%;
  background:#7FA69B;
  animation:cpBadgePulse 1.8s ease-in-out infinite;
}
.cp-hero-badge span:last-child { font-size:inherit; color:inherit; }

/* Title */
.cp-hero-title {
  font-family:'Exo 2',sans-serif;
  font-size:clamp(2.2rem, 4vw, 3.8rem);
  font-weight:200;
  line-height:1.08;
  color:#ffffff;
  margin-bottom:16px;
  letter-spacing:-0.025em;
  animation:cpFadeUp 0.7s cubic-bezier(0.23,1,0.32,1) 0.3s both;
}
.cp-hero-title .accent {
  font-weight:800;
  background:linear-gradient(135deg, #7FA69B 0%, #C2DDD7 40%, #99BFB3 70%, #7FA69B 100%);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
  background-size:200% 200%;
  animation:cpGradShift 4s ease-in-out infinite;
}

/* Subtitle */
.cp-hero-subtitle {
  font-size:1.02rem;
  color:rgba(255,255,255,0.52);
  line-height:1.72;
  max-width:500px;
  margin-bottom:14px;
  font-weight:300;
  animation:cpFadeUp 0.7s cubic-bezier(0.23,1,0.32,1) 0.4s both;
}
.cp-hero-line {
  display:block;
  height:3px; width:72px;
  background:linear-gradient(90deg, #7FA69B, transparent);
  border-radius:2px;
  margin:18px 0;
  animation:cpFadeUp 0.7s cubic-bezier(0.23,1,0.32,1) 0.5s both;
}

/* Hero Stats */
.cp-hero-stats {
  display:flex;
  align-items:center;
  gap:0;
  flex-wrap:wrap;
  animation:cpFadeUp 0.7s cubic-bezier(0.23,1,0.32,1) 0.55s both;
}
.cp-stat { display:flex; flex-direction:column; padding:0 28px; }
.cp-stat:first-child { padding-left:0; }
.cp-stat-num {
  font-family:'Exo 2',sans-serif;
  font-size:1.4rem;
  font-weight:600;
  color:#7FA69B;
  line-height:1;
  letter-spacing:-0.01em;
}
.cp-stat-suffix { font-size:1rem; font-weight:600; color:#7FA69B; }
.cp-stat-label {
  display:block;
  font-size:0.7rem;
  color:rgba(255,255,255,0.4);
  font-weight:500;
  letter-spacing:0.08em;
  text-transform:uppercase;
  margin-top:3px;
}
.cp-stat-divider {
  width:1px; height:36px;
  background:rgba(127,166,155,0.2);
}

/* Hero Visual — CSS-only Dashboard (right side, matching investors.php) */
.cp-hero-visual-wrap {
  position:relative;
  min-height:420px;
  display:flex;
  justify-content:flex-end;
}
.cp-hero-visual {
  position:relative;
  width:min(100%, 500px);
  height:420px;
}
/* Orbit rings */
.cp-hero-visual::before {
  content:'';
  position:absolute;
  inset:50px 60px 60px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(127,166,155,0.18) 0%, rgba(127,166,155,0.06) 45%, transparent 72%);
  filter:blur(18px);
  opacity:0.9;
}
.cp-visual-orbit {
  position:absolute;
  inset:50%; border-radius:50%;
  border:1px solid rgba(127,166,155,0.14);
  transform:translate(-50%,-50%);
  pointer-events:none;
}
.cp-visual-orbit.orbit-1 {
  width:380px; height:380px;
  border-style:dashed;
  animation:cpOrbitSpin 26s linear infinite;
}
.cp-visual-orbit.orbit-2 {
  width:280px; height:280px;
  animation:cpOrbitSpinRev 20s linear infinite;
}
.cp-visual-orbit.orbit-3 {
  width:170px; height:170px;
  border-style:dashed;
  border-color:rgba(127,166,155,0.22);
  animation:cpOrbitSpin 14s linear infinite;
}
/* Center core */
.cp-visual-core {
  position:absolute;
  top:50%; left:50%;
  transform:translate(-50%,-50%);
  width:80px; height:80px;
  border-radius:50%;
  background:linear-gradient(135deg, rgba(127,166,155,0.35), rgba(107,145,134,0.18));
  border:2px solid rgba(127,166,155,0.45);
  display:flex; align-items:center; justify-content:center;
  z-index:3;
}
.cp-visual-core::before {
  content:'';
  position:absolute;
  width:100%; height:100%;
  border-radius:50%;
  border:1px solid rgba(127,166,155,0.3);
  animation:cpPulseExpand 3s ease-out infinite;
}
.cp-visual-core::after {
  content:'';
  position:absolute;
  width:100%; height:100%;
  border-radius:50%;
  border:1px solid rgba(127,166,155,0.2);
  animation:cpPulseExpand 3s ease-out 1s infinite;
}
.cp-visual-core i {
  font-size:1.8rem;
  color:#7FA69B;
  animation:iconPulse 3s ease-in-out infinite;
}
/* Dashboard card floating */
.cp-visual-dashboard {
  position:absolute;
  top:22%; left:8%;
  width:220px;
  background:rgba(12,27,38,0.85);
  border:1px solid rgba(127,166,155,0.22);
  border-radius:16px;
  padding:18px 16px 14px;
  backdrop-filter:blur(12px);
  z-index:4;
  animation:cpDashboard 6s ease-in-out infinite;
}
.cp-visual-dashboard-title {
  font-size:0.62rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:0.12em;
  color:rgba(255,255,255,0.45);
  margin-bottom:12px;
}
.cp-visual-dashboard-bars {
  display:flex;
  align-items:flex-end;
  gap:6px;
  height:60px;
  margin-bottom:10px;
}
.cp-visual-bar {
  flex:1;
  border-radius:4px 4px 1px 1px;
  transform-origin:bottom;
  animation:cpBarGrow 1.2s cubic-bezier(0.23,1,0.32,1) var(--bar-delay,0s) both;
}
.cp-visual-bar:nth-child(1) { height:45%; background:rgba(127,166,155,0.35); --bar-delay:0.3s; }
.cp-visual-bar:nth-child(2) { height:70%; background:rgba(127,166,155,0.45); --bar-delay:0.4s; }
.cp-visual-bar:nth-child(3) { height:55%; background:rgba(127,166,155,0.40); --bar-delay:0.5s; }
.cp-visual-bar:nth-child(4) { height:85%; background:linear-gradient(180deg,#7FA69B,#5C6E6A); --bar-delay:0.6s; }
.cp-visual-bar:nth-child(5) { height:65%; background:rgba(127,166,155,0.42); --bar-delay:0.7s; }
.cp-visual-bar:nth-child(6) { height:90%; background:linear-gradient(180deg,#99BFB3,#7FA69B); --bar-delay:0.8s; }
.cp-visual-dashboard-label {
  font-size:0.58rem;
  color:rgba(255,255,255,0.35);
  letter-spacing:0.06em;
}
.cp-visual-dashboard-value {
  font-size:0.88rem;
  font-weight:700;
  color:#7FA69B;
  letter-spacing:-0.01em;
}
/* Floating info cards */
.cp-visual-card {
  position:absolute;
  background:rgba(12,27,38,0.8);
  border:1px solid rgba(127,166,155,0.2);
  border-radius:12px;
  padding:12px 14px;
  backdrop-filter:blur(10px);
  z-index:4;
  animation:cpNodeFloat 4s ease-in-out infinite;
}
.cp-visual-card.card-1 {
  bottom:14%; right:4%;
  animation-delay:0.5s;
}
.cp-visual-card.card-2 {
  top:10%; right:5%;
  animation-delay:1.2s;
}
.cp-visual-card.card-3 {
  bottom:8%; left:18%;
  animation-delay:0.8s;
}
.cp-visual-card-label {
  font-size:0.58rem;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:0.1em;
  color:rgba(255,255,255,0.4);
  margin-bottom:3px;
}
.cp-visual-card-value {
  font-size:1rem;
  font-weight:700;
  color:#fff;
}
.cp-visual-card-value span { color:#7FA69B; }
/* Orbit nodes */
.cp-visual-node {
  position:absolute;
  width:10px; height:10px;
  border-radius:50%;
  background:#7FA69B;
  box-shadow:0 0 12px rgba(127,166,155,0.5);
  z-index:3;
}
.cp-visual-node.n1 { top:8%;  left:52%;  opacity:0.8; }
.cp-visual-node.n2 { top:50%; right:4%;  opacity:0.6; }
.cp-visual-node.n3 { bottom:10%; left:48%; opacity:0.7; }
.cp-visual-node.n4 { top:52%; left:5%;   opacity:0.5; }

/* Scroll hint */
.cp-hero-scroll {
  position:absolute;
  bottom:18px; left:50%;
  transform:translateX(-50%);
  z-index:3;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:6px;
  color:rgba(127,166,155,0.55);
  font-size:0.68rem;
  letter-spacing:0.12em;
  text-transform:uppercase;
}
.cp-hero-scroll-line {
  width:1px; height:28px;
  background:linear-gradient(180deg, rgba(127,166,155,0.6), transparent);
  animation:cpScrollDown 2s ease-in-out infinite;
}

/* Detail page hero — image background variant */
.cp-hero-detail {
  min-height:70vh;
}
.cp-hero-detail .cp-hero-bg-image {
  position:absolute;
  inset:0;
  z-index:0;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  opacity:0.15;
  filter:saturate(0.4);
}
.cp-hero-detail .cp-hero-content {
  max-width:700px;
}

/* -----------------------------------------------------------------------
   3. CONTAINERS
----------------------------------------------------------------------- */
.cp-pages .container,
.cp-why .container,
.cp-content-area .container { max-width:1280px; margin:0 auto; padding:0 28px; }

/* -----------------------------------------------------------------------
   4. SECTION HEADERS (matching site-wide pattern)
----------------------------------------------------------------------- */
.cp-section-header { text-align:center; margin-bottom:60px; }
.cp-section-badge {
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:linear-gradient(135deg, rgba(127,166,155,0.12), rgba(127,166,155,0.05));
  border:1px solid rgba(127,166,155,0.25);
  padding:10px 22px;
  border-radius:50px;
  font-size:0.8rem; font-weight:600;
  color:#5C6E6A;
  letter-spacing:1.5px;
  text-transform:uppercase;
  margin-bottom:16px;
  position:relative; overflow:hidden;
}
.cp-section-badge::after {
  content:'';
  position:absolute;
  top:0; left:-100%;
  width:100%; height:100%;
  background:linear-gradient(90deg, transparent, rgba(127,166,155,0.3), transparent);
  animation:badgeGlow 4s ease-in-out infinite;
}
.cp-section-badge i { font-size:0.72rem; color:#7FA69B; }
.cp-section-title {
  font-family:'Exo 2',sans-serif;
  font-size:clamp(1.8rem, 3.2vw, 2.8rem);
  font-weight:700;
  color:#1a2a28;
  margin-bottom:12px;
  letter-spacing:-0.022em;
  line-height:1.15;
}
.cp-section-title .accent {
  background:linear-gradient(135deg, #7FA69B, #5C6E6A);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
}
.cp-section-subtitle {
  font-size:1.05rem;
  color:#5C6E6A;
  max-width:600px;
  margin:0 auto;
  line-height:1.7;
}

/* -----------------------------------------------------------------------
   5. PAGES GRID — company.php overview
----------------------------------------------------------------------- */
.cp-pages {
  padding:96px 0;
  background:linear-gradient(180deg, #f8faf9 0%, #f0f5f3 100%);
  position:relative; overflow:hidden;
}
.cp-pages::before {
  content:'';
  position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(127,166,155,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(127,166,155,0.03) 1px, transparent 1px);
  background-size:60px 60px;
  pointer-events:none;
}
.cp-pages-grid {
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:28px;
}
.cp-page-card {
  position:relative;
  display:block;
  border-radius:20px;
  overflow:hidden;
  text-decoration:none;
  color:inherit;
  background:#ffffff;
  box-shadow:0 4px 16px rgba(127,166,155,0.08);
  border:1px solid rgba(127,166,155,0.12);
  transition:transform 0.5s cubic-bezier(0.23,1,0.32,1), box-shadow 0.5s cubic-bezier(0.23,1,0.32,1), border-color 0.3s;
  animation:cpFadeUp 0.6s cubic-bezier(0.23,1,0.32,1) calc(var(--card-delay,0s)) both;
}
.cp-page-card:hover {
  transform:translateY(-12px) scale(1.015);
  box-shadow:0 20px 60px rgba(127,166,155,0.18), 0 8px 24px rgba(0,0,0,0.06);
  border-color:rgba(127,166,155,0.3);
}
.cp-card-image {
  position:relative;
  height:230px;
  overflow:hidden;
  background:linear-gradient(135deg, #e8f0ed, #d1dfd8);
}
.cp-card-image img {
  width:100%; height:100%;
  object-fit:cover;
  transition:transform 0.7s cubic-bezier(0.23,1,0.32,1), filter 0.5s;
}
.cp-page-card:hover .cp-card-image img { transform:scale(1.1); }
.cp-card-overlay {
  position:absolute; inset:0;
  background:linear-gradient(to bottom, transparent 0%, rgba(26,42,40,0.08) 50%, rgba(26,42,40,0.35) 100%);
}
.cp-card-number {
  position:absolute;
  top:12px; right:14px;
  font-family:'Exo 2',sans-serif;
  font-size:0.68rem; font-weight:700;
  color:#fff;
  background:rgba(127,166,155,0.6);
  backdrop-filter:blur(8px);
  border:1px solid rgba(255,255,255,0.2);
  padding:3px 11px;
  border-radius:20px;
  letter-spacing:0.07em;
  z-index:2;
}
.cp-card-ghost-num {
  position:absolute;
  bottom:-12px; left:6px;
  font-family:'Exo 2',sans-serif;
  font-size:5.5rem; font-weight:900;
  color:rgba(127,166,155,0.08);
  line-height:1;
  pointer-events:none; user-select:none;
  letter-spacing:-0.05em;
  z-index:0;
}
.cp-card-body { padding:24px 24px 22px; position:relative; }
.cp-card-body::before {
  content:'';
  position:absolute;
  top:0; left:24px; right:24px;
  height:1px;
  background:linear-gradient(90deg, transparent, var(--card-accent, #7FA69B) 50%, transparent);
  opacity:0.25;
}
.cp-card-icon {
  width:46px; height:46px;
  border-radius:14px;
  display:flex; align-items:center; justify-content:center;
  font-size:1.1rem;
  margin-bottom:14px;
  transition:transform 0.45s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow:0 2px 8px rgba(127,166,155,0.08);
}
.cp-page-card:hover .cp-card-icon { transform:scale(1.18) rotate(6deg); }
.cp-card-title {
  font-family:'Exo 2',sans-serif;
  font-size:1.16rem; font-weight:700;
  color:#1a2a28;
  margin-bottom:7px;
  letter-spacing:-0.01em;
}
.cp-card-desc {
  font-size:0.84rem; color:#5C6E6A;
  line-height:1.62;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
  margin-bottom:14px;
}
.cp-card-link {
  display:inline-flex;
  align-items:center;
  gap:7px;
  font-size:0.81rem; font-weight:700;
  color:var(--card-accent, #7FA69B);
  letter-spacing:0.02em;
  transition:gap 0.3s cubic-bezier(0.23,1,0.32,1);
}
.cp-page-card:hover .cp-card-link { gap:13px; }
.cp-card-link i { font-size:0.73rem; transition:transform 0.3s; }
.cp-page-card:hover .cp-card-link i { transform:translateX(3px); }

/* -----------------------------------------------------------------------
   6. WHY 20 MICRONS
----------------------------------------------------------------------- */
.cp-why {
  padding:96px 0;
  background:#ffffff;
  position:relative; overflow:hidden;
}
.cp-why::before {
  content:'';
  position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(127,166,155,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(127,166,155,0.025) 1px, transparent 1px);
  background-size:60px 60px;
  pointer-events:none;
}
.cp-why-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:72px;
  align-items:center;
  position:relative; z-index:1;
}
.cp-why-content > p {
  font-size:1.05rem;
  color:#5C6E6A;
  line-height:1.80;
  margin-bottom:34px;
}
.cp-why-features { display:flex; flex-direction:column; gap:14px; }
.cp-why-feature {
  display:flex;
  align-items:flex-start;
  gap:16px;
  padding:18px 20px;
  background:linear-gradient(135deg, #f8faf9, #f0f5f3);
  border-radius:16px;
  border:1px solid rgba(127,166,155,0.1);
  transition:all 0.35s cubic-bezier(0.23,1,0.32,1);
}
.cp-why-feature:hover {
  background:#fff;
  border-color:rgba(127,166,155,0.25);
  transform:translateX(7px);
  box-shadow:0 8px 30px rgba(127,166,155,0.12);
}
.cp-feature-icon {
  width:44px; height:44px; min-width:44px;
  border-radius:12px;
  background:linear-gradient(135deg, #7FA69B, #5C6E6A);
  color:#fff;
  display:flex; align-items:center; justify-content:center;
  font-size:1rem;
  box-shadow:0 6px 20px rgba(127,166,155,0.3);
  flex-shrink:0;
}
.cp-why-feature strong {
  display:block;
  font-size:0.9rem; font-weight:700;
  color:#1a2a28;
  margin-bottom:3px;
}
.cp-why-feature span { font-size:0.82rem; color:#5C6E6A; line-height:1.55; }

/* Why Visual — CSS-only enterprise ring visualization (no SVG) */
.cp-why-visual { display:flex; align-items:center; justify-content:center; padding:20px 0; }
.cp-why-vis {
  position:relative;
  width:420px; height:420px;
  flex-shrink:0;
}
/* Ambient glow */
.cp-why-vis-glow {
  position:absolute;
  width:300px; height:300px;
  top:50%; left:50%;
  transform:translate(-50%,-50%);
  background:radial-gradient(circle, rgba(127,166,155,0.18) 0%, transparent 70%);
  filter:blur(44px);
  pointer-events:none;
  z-index:0;
}
/* Rotating rings */
.cp-why-vis-ring {
  position:absolute;
  top:50%; left:50%;
  border-radius:50%;
  transform:translate(-50%,-50%);
  pointer-events:none;
}
.cp-why-vis-ring.ring-outer { width:390px; height:390px; border:1px dashed rgba(127,166,155,0.20); animation:cpOrbitSpin 36s linear infinite; }
.cp-why-vis-ring.ring-mid   { width:280px; height:280px; border:1px solid rgba(127,166,155,0.26); animation:cpOrbitSpinRev 25s linear infinite; }
.cp-why-vis-ring.ring-inner { width:155px; height:155px; border:2px dashed rgba(127,166,155,0.34); animation:cpOrbitSpin 16s linear infinite; }
/* Center core */
.cp-why-vis-core {
  position:absolute;
  top:50%; left:50%;
  transform:translate(-50%,-50%);
  width:76px; height:76px;
  border-radius:50%;
  background:linear-gradient(135deg, #7FA69B 0%, #4A7C6F 100%);
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 8px 36px rgba(127,166,155,0.45), 0 2px 12px rgba(127,166,155,0.25);
  z-index:3;
}
.cp-why-vis-core::before {
  content:''; position:absolute;
  width:100%; height:100%; border-radius:50%;
  border:2px solid rgba(127,166,155,0.4);
  animation:cpPulseExpand 3s ease-out infinite;
}
.cp-why-vis-core::after {
  content:''; position:absolute;
  width:100%; height:100%; border-radius:50%;
  border:2px solid rgba(127,166,155,0.22);
  animation:cpPulseExpand 3s ease-out 1.2s infinite;
}
.cp-why-vis-core i { font-size:1.8rem; color:#fff; animation:iconPulse 3.5s ease-in-out infinite; }
/* Metric cards — dark glassmorphic on light background */
.cp-why-vis-card {
  position:absolute;
  background:linear-gradient(135deg, #13231f, #0a1612);
  border:1px solid rgba(127,166,155,0.22);
  border-radius:16px;
  padding:14px 16px; width:116px; text-align:center;
  z-index:4;
  box-shadow:0 10px 36px rgba(0,0,0,0.22);
  animation:cpNodeFloat 4s ease-in-out infinite;
}
.cp-why-vis-card.cv1 { top:6px;    left:calc(50% - 58px); }
.cp-why-vis-card.cv2 { right:6px;  top:calc(50% - 48px); animation-delay:0.6s; animation-duration:4.5s; }
.cp-why-vis-card.cv3 { bottom:6px; left:calc(50% - 58px); animation-delay:1.2s; animation-duration:5s; }
.cp-why-vis-card.cv4 { left:6px;   top:calc(50% - 48px); animation-delay:0.9s; animation-duration:3.8s; }
.cp-why-vis-card-icon {
  width:36px; height:36px; border-radius:10px;
  background:rgba(127,166,155,0.15);
  border:1px solid rgba(127,166,155,0.20);
  display:flex; align-items:center; justify-content:center;
  margin:0 auto 8px; color:#7FA69B; font-size:0.9rem;
}
.cp-why-vis-card-val {
  font-family:'Exo 2',sans-serif;
  font-size:1.25rem; font-weight:700;
  color:#fff; line-height:1; margin-bottom:4px;
}
.cp-why-vis-card-val span { color:#7FA69B; }
.cp-why-vis-card-lbl { font-size:0.6rem; font-weight:700; text-transform:uppercase; letter-spacing:0.08em; color:rgba(255,255,255,0.35); }
/* Orbit accent dots */
.cp-why-vis-dot {
  position:absolute;
  width:10px; height:10px; border-radius:50%;
  background:#7FA69B;
  box-shadow:0 0 12px rgba(127,166,155,0.7);
  z-index:3;
}
.cp-why-vis-dot.dv1 { top:20%;    left:22%;  animation:cpNodeFloat 5.5s ease-in-out infinite; }
.cp-why-vis-dot.dv2 { top:18%;    right:22%; animation:cpNodeFloat 5s ease-in-out 0.8s infinite; }
.cp-why-vis-dot.dv3 { bottom:20%; right:28%; animation:cpNodeFloat 4.5s ease-in-out 1.5s infinite; }

/* -----------------------------------------------------------------------
   7. PAGE TABS — Sticky navigation (matching our-approach.php oa-page-tabs)
----------------------------------------------------------------------- */
.cp-page-tabs {
  background:#0C1B26;
  border-bottom:1px solid rgba(127,166,155,0.14);
  padding:0;
  position:sticky;
  top:55px;
  z-index:100;
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
}
.cp-page-tabs-inner {
  display:flex;
  align-items:center;
  max-width:1280px;
  margin:0 auto;
  padding:0 28px;
  gap:2px;
  overflow-x:auto;
  scrollbar-width:none;
}
.cp-page-tabs-inner::-webkit-scrollbar { display:none; }
.cp-tab-link {
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:15px 18px;
  font-size:0.78rem;
  font-weight:500;
  letter-spacing:0.05em;
  text-transform:uppercase;
  color:rgba(244,248,247,0.45);
  text-decoration:none;
  border-bottom:2px solid transparent;
  transition:all 0.35s cubic-bezier(0.4,0,0.2,1);
  white-space:nowrap;
  flex-shrink:0;
}
.cp-tab-link:hover {
  color:#99BFB3;
  border-bottom-color:rgba(127,166,155,0.30);
}
.cp-tab-link.active {
  color:#B8D4CB;
  border-bottom-color:#7FA69B;
}
.cp-tab-link i { font-size:0.72rem; }

/* -----------------------------------------------------------------------
   8. CONTENT AREA + SIDEBAR (company-page.php)
   Matching investors.php sticky sidebar pattern
----------------------------------------------------------------------- */

/* Scroll reveal for content sections */
[data-cp-reveal] {
  opacity:0;
  transform:translateY(18px);
  transition:opacity 0.55s cubic-bezier(0.4,0,0.2,1), transform 0.55s cubic-bezier(0.4,0,0.2,1);
}
[data-cp-reveal].cp-revealed {
  opacity:1;
  transform:none;
}

.cp-content-area {
  padding:0 0 56px;
  background:#f4f7f6;
  position:relative;
}
.cp-content-area::before {
  content:'';
  position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(127,166,155,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(127,166,155,0.02) 1px, transparent 1px);
  background-size:48px 48px;
  pointer-events:none;
}
.cp-layout {
  display:grid;
  grid-template-columns:240px 1fr;
  gap:28px;
  align-items:start;
  position:relative; z-index:1;
}

/* --- Sidebar: sticky grid item (same as working tabs-bar pattern) --- */
.cp-sidebar {
  position:sticky;
  top:120px;
  align-self:start;
  z-index:10;
}
.cp-sidebar-shell {
  --cp-sidebar-shift:0px;
  position:relative; transform:translateY(var(--cp-sidebar-shift));
  transition:transform 0.26s ease-out, box-shadow 0.3s ease;
  padding:20px 18px 18px; border-radius:24px;
  background:rgba(255,255,255,0.82); border:1px solid rgba(127,166,155,0.14);
  box-shadow:0 24px 52px rgba(15,35,32,0.08); backdrop-filter:blur(16px);
  will-change:transform;
}
.cp-sidebar-shell::before {
  content:''; position:absolute; inset:12px; border-radius:18px;
  border:1px solid rgba(127,166,155,0.08); pointer-events:none;
}
.cp-sidebar-inner { position:relative; z-index:1; }

.cp-sidebar-title {
  display:flex;
  align-items:center;
  gap:10px;
  font-family:'Exo 2',sans-serif;
  font-size:0.78rem;
  font-weight:600;
  color:#2C3E3A;
  text-transform:uppercase;
  letter-spacing:0.08em;
  padding-bottom:14px;
  border-bottom:1px solid rgba(127,166,155,0.12);
  margin-bottom:14px;
}
.cp-sidebar-title i { color:#7FA69B; font-size:0.76rem; }

/* Nav groups */
.cp-nav-group { margin-bottom:12px; }
.cp-nav-group-label {
  display:flex;
  align-items:center;
  gap:8px;
  font-size:0.62rem;
  font-weight:700;
  color:#8A9C98;
  text-transform:uppercase;
  letter-spacing:0.1em;
  padding:4px 0;
  margin-bottom:2px;
}
.cp-sidebar-nav { display:flex; flex-direction:column; gap:1px; }
.cp-sidebar-link {
  display:flex;
  align-items:center;
  gap:9px;
  padding:8px 12px;
  font-size:0.8rem;
  font-weight:400;
  color:#5C6E6A;
  text-decoration:none;
  border-radius:7px;
  border-left:2px solid transparent;
  transition:all 0.25s cubic-bezier(0.4,0,0.2,1);
  line-height:1.35;
}
.cp-sidebar-link i {
  width:15px;
  text-align:center;
  font-size:0.68rem;
  color:#7FA69B;
  opacity:0.55;
  transition:opacity 0.25s;
}
.cp-sidebar-link:hover {
  background:rgba(127,166,155,0.06);
  color:#6B9186;
  border-left-color:#99BFB3;
}
.cp-sidebar-link:hover i { opacity:1; }
.cp-sidebar-link.active {
  background:rgba(127,166,155,0.10);
  color:#6B9186;
  font-weight:600;
  border-left-color:#7FA69B;
}
.cp-sidebar-link.active i { opacity:1; color:#7FA69B; }

.cp-sidebar-cta {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  margin-top:16px;
  padding:11px;
  background:linear-gradient(135deg, #7FA69B, #6B9186);
  color:#fff;
  border-radius:10px;
  font-size:0.78rem;
  font-weight:700;
  text-decoration:none;
  transition:all 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow:0 4px 16px rgba(127,166,155,0.25);
  letter-spacing:0.02em;
}
.cp-sidebar-cta:hover {
  transform:translateY(-2px);
  box-shadow:0 8px 28px rgba(127,166,155,0.35);
}

/* -----------------------------------------------------------------------
   9. MAIN CONTENT SECTIONS — Tight, dense, professional
----------------------------------------------------------------------- */
.cp-main { min-width:0; padding-top:28px; }

.cp-section {
  background:#ffffff;
  border-radius:14px;
  padding:24px 28px 28px;
  margin-bottom:16px;
  border:1px solid rgba(127,166,155,0.10);
  box-shadow:0 1px 6px rgba(0,0,0,0.03);
  transition:box-shadow 0.35s cubic-bezier(0.4,0,0.2,1), border-color 0.35s;
  position:relative;
  overflow:hidden;
}
.cp-section::before {
  content:'';
  position:absolute;
  top:0; left:0;
  width:3px; height:100%;
  background:linear-gradient(to bottom, #7FA69B, #5C6E6A, transparent);
  border-radius:3px 0 0 3px;
  opacity:0;
  transition:opacity 0.35s;
}
.cp-section:hover { box-shadow:0 6px 24px rgba(127,166,155,0.10); border-color:rgba(127,166,155,0.16); }
.cp-section:hover::before { opacity:0.5; }
.cp-section:last-child { margin-bottom:0; }

/* Section headers — compact with left accent */
.cp-section-header-inner {
  margin-bottom:16px;
  padding-bottom:12px;
  border-bottom:1px solid rgba(127,166,155,0.08);
  padding-left:14px;
  border-left:3px solid #7FA69B;
}
.cp-section-header-inner h2 {
  font-family:'Exo 2',sans-serif;
  font-size:1.25rem;
  font-weight:700;
  color:#1a2a28;
  margin-bottom:3px;
  letter-spacing:-0.018em;
  line-height:1.25;
}
.cp-section-header-inner h2 span {
  background:linear-gradient(135deg, #7FA69B, #5C6E6A);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
}
.cp-section-sub { font-size:0.82rem; color:#7a8e89; line-height:1.5; }

/* -----------------------------------------------------------------------
   10. TEXT LAYOUT — Compact 2-column, image fills height
----------------------------------------------------------------------- */
.cp-text-layout { display:grid; grid-template-columns:1fr 1fr; gap:20px; align-items:stretch; }
.layout-img-left .cp-text-layout  { direction:ltr; }
.layout-img-right .cp-text-layout { direction:rtl; }
.layout-img-right .cp-text-layout > * { direction:ltr; }
.layout-center .cp-text-layout { grid-template-columns:1fr; }
/* When no image, text goes full width */
.cp-text-layout:not(:has(.cp-text-image)) { grid-template-columns:1fr; }
.cp-text-image {
  border-radius:10px;
  overflow:hidden;
  position:relative;
  min-height:200px;
}
.layout-center .cp-text-image { min-height:220px; }
.cp-text-image img {
  width:100%; height:100%;
  object-fit:cover;
  object-position:100% 15%;
  display:block; border-radius:10px;
  transition:transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.cp-text-image:hover img { transform:scale(1.04); }
.cp-img-overlay {
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, transparent 40%, rgba(26,42,40,0.20) 100%);
  pointer-events:none;
  border-radius:10px;
}
.cp-img-accent {
  position:absolute;
  bottom:0; left:0; right:0;
  height:3px;
  background:linear-gradient(90deg, #7FA69B, #5C6E6A);
  border-radius:0 0 10px 10px;
  opacity:0;
  transition:opacity 0.35s;
}
.cp-text-image:hover .cp-img-accent { opacity:0.8; }
.cp-text-body { flex:1; min-width:0; }
.cp-text-body p {
  font-size:0.88rem; color:#4a5e59;
  line-height:1.72; margin-bottom:10px;
}
.cp-text-body p:last-child { margin-bottom:0; }

/* Founder Quote — compact */
.founder-quote {
  position:relative;
  font-family:'Exo 2',sans-serif;
  font-size:1.05rem; font-weight:500;
  font-style:italic; color:#1a2a28;
  padding:20px 24px 20px 40px;
  background:linear-gradient(135deg, rgba(127,166,155,0.07), rgba(127,166,155,0.02));
  border-radius:10px;
  border-left:3px solid #7FA69B;
  margin-bottom:14px;
  line-height:1.55; overflow:hidden;
}
.founder-quote::before {
  content:'\201C';
  position:absolute;
  top:-8px; left:10px;
  font-size:4rem; font-family:'Exo 2',sans-serif;
  font-style:normal; color:rgba(127,166,155,0.12);
  line-height:1; pointer-events:none;
}
.founder-quote cite {
  display:block;
  margin-top:8px;
  font-size:0.75rem; font-style:normal;
  font-weight:700; color:#7FA69B;
  letter-spacing:0.05em;
}

/* -----------------------------------------------------------------------
   11. CARDS — Compact, colored top accent, tight grid
----------------------------------------------------------------------- */
.cp-cards-grid {
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(400px, 1fr));
  gap:14px;
}
.cp-card {
  background:#fff;
  border:1px solid rgba(127,166,155,0.08);
  border-radius:12px;
  padding:20px 18px 18px;
  transition:all 0.35s cubic-bezier(0.4,0,0.2,1);
  position:relative; overflow:hidden;
  box-shadow:0 1px 4px rgba(0,0,0,0.025);
}
/* Colored top accent bar */
.cp-card::before {
  content:'';
  position:absolute;
  top:0; left:0; right:0;
  height:3px;
  background:linear-gradient(90deg, #7FA69B, #99BFB3);
  opacity:0.6;
}
.cp-card::after {
  content:'';
  position:absolute;
  inset:0;
  border-radius:12px;
  background:linear-gradient(135deg, rgba(127,166,155,0.04) 0%, transparent 60%);
  opacity:0;
  transition:opacity 0.35s;
  pointer-events:none;
}
.cp-card:hover {
  transform:translateY(-4px);
  box-shadow:0 8px 28px rgba(127,166,155,0.12);
  border-color:rgba(127,166,155,0.20);
}
.cp-card:hover::before { opacity:1; }
.cp-card:hover::after { opacity:1; }
.cp-card-icon-wrap {
  width:40px; height:40px;
  border-radius:10px;
  background:rgba(127,166,155,0.10);
  border:1px solid rgba(127,166,155,0.16);
  color:#7FA69B;
  display:flex; align-items:center; justify-content:center;
  font-size:0.95rem;
  margin-bottom:12px;
  transition:all 0.35s cubic-bezier(0.4,0,0.2,1);
}
.cp-card:hover .cp-card-icon-wrap {
  background:linear-gradient(135deg, #7FA69B, #5C6E6A);
  color:#fff;
  border-color:transparent;
  box-shadow:0 4px 14px rgba(127,166,155,0.28);
}
.cp-card h3 {
  font-family:'Exo 2',sans-serif;
  font-size:0.92rem; font-weight:700;
  color:#1a2a28; margin-bottom:6px;
  line-height:1.3;
}
.cp-card p { font-size:0.8rem; color:#5C6E6A; line-height:1.6; position:relative; z-index:1; }

/* -----------------------------------------------------------------------
   12. TIMELINE — Compact
----------------------------------------------------------------------- */
.cp-section-timeline { overflow:visible; }
.cp-timeline { position:relative; padding:6px 0 16px; }
.cp-timeline-line {
  position:absolute;
  left:50%; top:0; bottom:0;
  width:2px;
  background:linear-gradient(to bottom, transparent 0%, #7FA69B 6%, #99BFB3 50%, #7FA69B 94%, transparent 100%);
  transform:translateX(-50%) scaleY(0);
  transform-origin:top;
  opacity:0.4;
  animation:cpTimelineDraw 1.8s cubic-bezier(0.23,1,0.32,1) 0.4s forwards;
}
.cp-timeline-item {
  position:relative;
  display:flex; align-items:flex-start;
  margin-bottom:24px;
  width:48%;
}
.cp-timeline-item.left { padding-right:36px; text-align:right; flex-direction:row-reverse; }
.cp-timeline-item.right { margin-left:52%; padding-left:36px; }
.cp-timeline-dot {
  position:absolute; z-index:2; top:6px;
  width:42px; height:42px;
  border-radius:50%;
  background:linear-gradient(135deg, #7FA69B, #5C6E6A);
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 3px 14px rgba(127,166,155,0.25), 0 0 0 3px rgba(127,166,155,0.10);
  transition:transform 0.35s cubic-bezier(0.4,0,0.2,1), box-shadow 0.35s;
}
.cp-timeline-item:hover .cp-timeline-dot {
  transform:scale(1.1);
  box-shadow:0 5px 22px rgba(127,166,155,0.35), 0 0 0 5px rgba(127,166,155,0.12);
}
.cp-timeline-item.left  .cp-timeline-dot { right:-21px; }
.cp-timeline-item.right .cp-timeline-dot { left:-21px; }
.cp-timeline-year {
  font-family:'Exo 2',sans-serif;
  font-size:0.58rem; font-weight:800;
  color:#fff;
  letter-spacing:0.03em; line-height:1;
}
.cp-timeline-card {
  background:#fff;
  border:1px solid rgba(127,166,155,0.10);
  border-radius:12px;
  padding:16px 18px;
  flex:1;
  transition:all 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow:0 1px 8px rgba(0,0,0,0.03);
}
.cp-timeline-item.left  .cp-timeline-card { border-radius:12px 12px 3px 12px; }
.cp-timeline-item.right .cp-timeline-card { border-radius:12px 12px 12px 3px; }
.cp-timeline-card:hover {
  box-shadow:0 6px 24px rgba(127,166,155,0.12);
  border-color:rgba(127,166,155,0.22);
  transform:translateY(-2px);
}
.cp-timeline-card h3 {
  font-family:'Exo 2',sans-serif;
  font-size:0.9rem; font-weight:700;
  color:#1a2a28; margin-bottom:5px; line-height:1.3;
}
.cp-timeline-card p { font-size:0.8rem; color:#5C6E6A; line-height:1.62; }
.cp-timeline-card img { width:100%; border-radius:8px; margin-top:10px; }

/* -----------------------------------------------------------------------
   13. TEAM GRID — Compact
----------------------------------------------------------------------- */
.cp-team-grid {
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(180px, 1fr));
  gap:14px;
}
.cp-team-card {
  background:#fff;
  border:1px solid rgba(127,166,155,0.10);
  border-radius:12px;
  overflow:hidden;
  text-align:center;
  transition:all 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow:0 1px 8px rgba(0,0,0,0.03);
}
.cp-team-card:hover {
  transform:translateY(-5px);
  box-shadow:0 12px 36px rgba(127,166,155,0.14);
  border-color:rgba(127,166,155,0.22);
}
.cp-team-photo {
  position:relative; height:220px;
  overflow:hidden;
  background:linear-gradient(160deg, #e8f0ed 0%, #d1dfd8 100%);
}
.cp-team-photo img {
  width:100%; height:100%;
  object-fit:cover; object-position:top center;
  transition:transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.cp-team-card:hover .cp-team-photo img { transform:scale(1.06); }
.cp-team-placeholder {
  width:100%; height:100%;
  background:linear-gradient(160deg, #e8f0ed 0%, #d1dfd8 100%);
  display:flex; align-items:center; justify-content:center;
  position:relative;
}
.cp-team-placeholder::before {
  content:'';
  position:absolute;
  width:50px; height:50px;
  border-radius:50%;
  background:rgba(127,166,155,0.18);
  top:55px;
}
.cp-team-placeholder::after {
  content:'';
  position:absolute;
  width:80px; height:65px;
  border-radius:50px 50px 0 0;
  background:rgba(127,166,155,0.12);
  bottom:0;
}
.cp-team-placeholder i { font-size:2.8rem; color:rgba(127,166,155,0.35); z-index:1; }
.cp-team-overlay {
  position:absolute; inset:0;
  background:linear-gradient(to top, rgba(26,42,40,0.7) 0%, rgba(26,42,40,0.15) 50%, transparent 78%);
  display:flex; align-items:flex-end; justify-content:center;
  padding-bottom:12px;
  opacity:0; transition:opacity 0.35s;
}
.cp-team-card:hover .cp-team-overlay { opacity:1; }
.cp-team-bio-btn {
  width:36px; height:36px;
  border-radius:50%;
  background:rgba(127,166,155,0.85);
  border:2px solid rgba(255,255,255,0.25);
  color:#fff; font-size:0.8rem;
  cursor:pointer;
  transition:all 0.3s;
  backdrop-filter:blur(8px);
}
.cp-team-bio-btn:hover { background:#7FA69B; transform:scale(1.14); border-color:rgba(255,255,255,0.45); }
.cp-team-info { padding:12px 12px; background:#fff; }
.cp-team-info h3 {
  font-family:'Exo 2',sans-serif;
  font-size:0.88rem; font-weight:700;
  color:#1a2a28; margin-bottom:3px;
}
.cp-team-role { font-size:0.72rem; color:#7FA69B; font-weight:600; letter-spacing:0.03em; }

/* Team Bio Modal */
.cp-team-bio {
  position:fixed; inset:0;
  z-index:9999;
  background:rgba(26,42,40,0.5);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  display:flex; align-items:center; justify-content:center;
  padding:20px;
  opacity:0; pointer-events:none;
  transition:opacity 0.3s;
}
.cp-team-bio.open { opacity:1; pointer-events:all; }
.cp-team-bio-inner {
  background:#fff;
  border-radius:20px;
  padding:36px;
  max-width:560px; width:100%;
  max-height:90vh; overflow-y:auto;
  position:relative;
  box-shadow:0 40px 100px rgba(0,0,0,0.2);
  transform:translateY(20px) scale(0.95);
  transition:transform 0.38s cubic-bezier(0.23,1,0.32,1);
}
.cp-team-bio.open .cp-team-bio-inner { transform:none; }
.cp-team-bio-close {
  position:absolute; top:16px; right:16px;
  width:36px; height:36px;
  border-radius:50%;
  background:#f8faf9;
  border:1px solid rgba(127,166,155,0.15);
  color:#5C6E6A;
  cursor:pointer; font-size:0.78rem;
  display:flex; align-items:center; justify-content:center;
  transition:all 0.2s;
}
.cp-team-bio-close:hover { background:#7FA69B; color:#fff; }
.cp-team-bio-header {
  display:flex; align-items:center; gap:18px;
  margin-bottom:24px; padding-bottom:20px;
  border-bottom:1px solid rgba(127,166,155,0.10);
}
.cp-team-bio-header img {
  width:76px; height:76px;
  border-radius:50%;
  object-fit:cover; object-position:top;
  border:3px solid rgba(127,166,155,0.18);
  box-shadow:0 4px 16px rgba(0,0,0,0.08);
}
.cp-team-bio-header h4 {
  font-family:'Exo 2',sans-serif;
  font-size:1.18rem; font-weight:700;
  color:#1a2a28; margin-bottom:4px;
}
.cp-team-bio-header span { font-size:0.8rem; color:#7FA69B; font-weight:600; }
.cp-team-bio-text { font-size:0.92rem; color:#5C6E6A; line-height:1.82; }
.cp-team-bio-text p { margin-bottom:12px; }
.cp-team-bio-text p:last-child { margin-bottom:0; }

/* -----------------------------------------------------------------------
   14. CERTIFICATIONS — Compact document cards
----------------------------------------------------------------------- */
.cp-cert-grid {
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(190px, 1fr));
  gap:14px;
}
.cp-cert-card {
  display:flex;
  flex-direction:column;
  border-radius:10px;
  border:1px solid rgba(127,166,155,0.10);
  background:#fff;
  overflow:hidden;
  transition:all 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow:0 1px 6px rgba(0,0,0,0.025);
  position:relative;
}
.cp-cert-card:hover {
  transform:translateY(-4px);
  box-shadow:0 8px 28px rgba(127,166,155,0.12);
  border-color:rgba(127,166,155,0.22);
}
.cp-cert-preview {
  position:relative;
  aspect-ratio:3/2;
  background:linear-gradient(145deg, #f1f5f4 0%, #e2ebe8 50%, #edf2f0 100%);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}
/* Paper document mock — shown when no image uploaded */
.cp-cert-preview-inner {
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:6px;
  width:100%; height:100%;
  padding:16px 12px;
  position:relative;
  z-index:1;
}
/* Diagonal watermark lines */
.cp-cert-preview-inner::before {
  content:'';
  position:absolute;
  inset:0;
  background:repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 12px,
    rgba(127,166,155,0.06) 12px,
    rgba(127,166,155,0.06) 13px
  );
  pointer-events:none;
}
/* Circular seal */
.cp-cert-seal {
  width:44px; height:44px;
  border-radius:50%;
  background:linear-gradient(135deg, #7FA69B 0%, #5C6E6A 100%);
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 2px 8px rgba(127,166,155,0.35), 0 0 0 3px rgba(127,166,155,0.15), 0 0 0 5px rgba(127,166,155,0.07);
  margin-bottom:2px;
  flex-shrink:0;
  transition:transform 0.35s cubic-bezier(0.4,0,0.2,1), box-shadow 0.35s;
}
.cp-cert-seal span {
  font-family:'Exo 2',sans-serif;
  font-size:0.6rem; font-weight:800;
  color:#fff; letter-spacing:0.05em;
  text-align:center; line-height:1.1;
}
.cp-cert-card:hover .cp-cert-seal {
  transform:scale(1.08);
  box-shadow:0 4px 14px rgba(127,166,155,0.45), 0 0 0 4px rgba(127,166,155,0.18), 0 0 0 7px rgba(127,166,155,0.07);
}
/* Simulated text lines */
.cp-cert-doc-lines {
  display:flex;
  flex-direction:column;
  gap:4px;
  width:72%;
}
.cp-cert-doc-line {
  height:4px;
  border-radius:2px;
  background:rgba(127,166,155,0.22);
}
.cp-cert-doc-line.l1 { width:100%; }
.cp-cert-doc-line.l2 { width:80%; }
.cp-cert-doc-line.l3 { width:60%; }
.cp-cert-shine {
  position:absolute;
  inset:0;
  background:linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.5) 50%, transparent 70%);
  transform:translateX(-100%);
  transition:transform 0.6s ease;
  pointer-events:none;
}
.cp-cert-card:hover .cp-cert-shine { transform:translateX(100%); }
.cp-cert-preview-img {
  width:100%; height:100%;
  object-fit:cover;
  position:absolute; inset:0;
  transition:transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.cp-cert-card:hover .cp-cert-preview-img { transform:scale(1.05); }
.cp-cert-body {
  padding:14px 14px 16px;
  flex:1;
  display:flex;
  flex-direction:column;
  border-top:1px solid rgba(127,166,155,0.06);
}
.cp-cert-body h3 {
  font-family:'Exo 2',sans-serif;
  font-size:0.85rem; font-weight:700;
  color:#1a2a28; margin-bottom:5px; line-height:1.3;
}
.cp-cert-body p {
  font-size:0.78rem; color:#5C6E6A;
  line-height:1.58; flex:1;
  margin-bottom:10px;
}
.cp-cert-download {
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:6px 14px;
  background:rgba(127,166,155,0.08);
  border:1px solid rgba(127,166,155,0.18);
  color:#5C6E6A;
  border-radius:7px;
  font-size:0.74rem;
  font-weight:700;
  text-decoration:none;
  transition:all 0.35s cubic-bezier(0.4,0,0.2,1);
  align-self:flex-start;
}
.cp-cert-download:hover {
  background:linear-gradient(135deg, #7FA69B, #5C6E6A);
  color:#fff;
  border-color:transparent;
  box-shadow:0 4px 16px rgba(127,166,155,0.3);
}
.cp-cert-download i { font-size:0.68rem; }

/* -----------------------------------------------------------------------
   15. POLICIES — Compact document cards
----------------------------------------------------------------------- */
.cp-policies-grid {
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(190px, 1fr));
  gap:14px;
}
.cp-policy-card {
  display:flex;
  flex-direction:column;
  border-radius:10px;
  border:1px solid rgba(127,166,155,0.10);
  background:#fff;
  overflow:hidden;
  transition:all 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow:0 1px 6px rgba(0,0,0,0.025);
  position:relative;
}
.cp-policy-card:hover {
  transform:translateY(-4px);
  box-shadow:0 8px 28px rgba(127,166,155,0.12);
  border-color:rgba(127,166,155,0.22);
}
.cp-policy-preview {
  position:relative;
  aspect-ratio:3/2;
  background:linear-gradient(145deg, #f1f5f4 0%, #e8eeed 50%, #f4f7f6 100%);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}
.cp-policy-preview-inner {
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:8px;
  transition:transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.cp-policy-preview-inner i {
  font-size:1.8rem;
  color:#dc3545;
  opacity:0.5;
  transition:all 0.35s;
}
.cp-policy-card:hover .cp-policy-preview-inner i { opacity:0.8; }
.cp-policy-ext {
  font-size:0.62rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:0.1em;
  color:#dc3545;
  background:rgba(220,53,69,0.08);
  padding:3px 10px;
  border-radius:20px;
}
.cp-policy-shine {
  position:absolute;
  inset:0;
  background:linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.5) 50%, transparent 70%);
  transform:translateX(-100%);
  transition:transform 0.6s ease;
  pointer-events:none;
}
.cp-policy-card:hover .cp-policy-shine { transform:translateX(100%); }
.cp-policy-preview-img {
  width:100%; height:100%;
  object-fit:cover;
  position:absolute; inset:0;
  transition:transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.cp-policy-card:hover .cp-policy-preview-img { transform:scale(1.05); }
.cp-policy-body {
  padding:14px 14px 16px;
  flex:1;
  display:flex;
  flex-direction:column;
  border-top:1px solid rgba(127,166,155,0.06);
}
.cp-policy-body h3 {
  font-family:'Exo 2',sans-serif;
  font-size:0.85rem; font-weight:700;
  color:#1a2a28; margin-bottom:5px; line-height:1.3;
}
.cp-policy-body p {
  font-size:0.78rem; color:#5C6E6A;
  line-height:1.58; flex:1;
  margin-bottom:10px;
}
.cp-policy-download {
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:6px 14px;
  background:rgba(127,166,155,0.08);
  border:1px solid rgba(127,166,155,0.18);
  color:#5C6E6A;
  border-radius:7px;
  font-size:0.74rem;
  font-weight:700;
  text-decoration:none;
  transition:all 0.35s cubic-bezier(0.4,0,0.2,1);
  align-self:flex-start;
}
.cp-policy-download:hover {
  background:linear-gradient(135deg, #7FA69B, #5C6E6A);
  color:#fff;
  border-color:transparent;
  box-shadow:0 4px 16px rgba(127,166,155,0.3);
}
.cp-policy-download i { font-size:0.68rem; }

/* -----------------------------------------------------------------------
   16. CONNECT BANNER (matching globalreach.php, investors.php, our-approach.php)
----------------------------------------------------------------------- */
.cp-connect {
  padding:28px 0 0;
  margin-bottom:0;
  background:linear-gradient(145deg, #08121c 0%, #0f1923 55%, #142030 100%);
  position:relative; overflow:hidden;
}
.cp-connect::before {
  content:'';
  position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(127,166,155,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(127,166,155,0.045) 1px, transparent 1px);
  background-size:52px 52px;
  animation:cpConnectGrid 28s linear infinite;
  pointer-events:none;
}
.cp-connect-glow {
  position:absolute;
  width:600px; height:400px;
  top:50%; left:50%;
  transform:translate(-50%,-50%);
  background:radial-gradient(ellipse, rgba(127,166,155,0.10), transparent 70%);
  filter:blur(50px);
  pointer-events:none;
}
.cp-connect .container { position:relative; z-index:2; max-width:1280px; margin:0 auto; padding:0 28px; }
.cp-connect-inner {
  display:grid;
  grid-template-columns:1fr auto 1fr;
  gap:28px;
  align-items:center;
}
.cp-connect-headline {
  font-size:clamp(1.05rem, 2vw, 1.5rem);
  font-weight:300;
  color:rgba(255,255,255,0.78);
  line-height:1.4;
}
.cp-connect-headline strong { font-weight:700; color:#fff; }
.cp-connect-headline .accent { color:#7FA69B; font-weight:700; }
.cp-connect-center {
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:6px;
  padding:14px 24px;
  background:rgba(127,166,155,0.08);
  border:1px solid rgba(127,166,155,0.20);
  border-radius:16px;
  backdrop-filter:blur(12px);
}
.cp-connect-center i {
  font-size:1.7rem;
  background:linear-gradient(135deg, #7FA69B, #C2DDD7);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
}
.cp-connect-name { font-size:14px; font-weight:700; color:#fff; }
.cp-connect-email {
  font-size:12px;
  color:rgba(255,255,255,0.44);
  text-decoration:none;
  transition:color 0.2s;
  font-weight:500;
}
.cp-connect-email:hover { color:#7FA69B; }
.cp-connect-social-wrap {
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:12px;
}
.cp-connect-social-label {
  font-size:9px; font-weight:800;
  text-transform:uppercase;
  letter-spacing:0.14em;
  color:rgba(255,255,255,0.22);
}
.cp-connect-social {
  display:flex;
  gap:8px; flex-wrap:wrap;
  justify-content:flex-end;
}
.cp-connect-social a {
  width:40px; height:40px;
  border-radius:10px;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.10);
  display:flex; align-items:center; justify-content:center;
  color:rgba(255,255,255,0.40);
  font-size:14px;
  text-decoration:none;
  transition:all 0.32s;
}
.cp-connect-social a:hover {
  background:rgba(127,166,155,0.22);
  border-color:rgba(127,166,155,0.45);
  color:#7FA69B;
  transform:translateY(-3px);
  box-shadow:0 8px 20px rgba(127,166,155,0.22);
}

/* Footer wave-divider for dark banner */
.cp-connect ~ .footer-premium .footer-wave-divider,
.gr-connect ~ .footer-premium .footer-wave-divider { background:#0f1923; }

/* -----------------------------------------------------------------------
   17. RESPONSIVE
----------------------------------------------------------------------- */
@media (max-width:1200px) {
  .cp-hero-layout { gap:36px; }
  .cp-hero-visual-wrap { min-height:360px; }
  .cp-hero-visual { height:360px; }
  .cp-visual-orbit.orbit-1 { width:320px; height:320px; }
  .cp-visual-orbit.orbit-2 { width:240px; height:240px; }
}
@media (max-width:1100px) {
  .cp-pages-grid { grid-template-columns:repeat(2, 1fr); }
  .cp-why-grid   { gap:44px; }
  .cp-layout     { grid-template-columns:220px 1fr; gap:24px; }
  .cp-sidebar { top:120px; }
}
@media (max-width:992px) {
  .cp-hero { min-height:auto; padding:92px 0 50px; }
  .cp-hero-layout { grid-template-columns:1fr; gap:0; }
  .cp-hero-visual-wrap { display:none; }
  .cp-hero-content { max-width:100%; text-align:center; }
  .cp-breadcrumb { justify-content:center; }
  .cp-hero-badge { margin-left:auto; margin-right:auto; }
  .cp-hero-subtitle { max-width:100%; margin:0 auto 14px; }
  .cp-hero-stats { justify-content:center; }
  .cp-page-tabs-inner { padding:0 16px; }
  .cp-tab-link { padding:12px 14px; font-size:0.74rem; }
}
@media (max-width:900px) {
  .cp-pages-grid { grid-template-columns:repeat(2, 1fr); }
  .cp-layout     { grid-template-columns:1fr; }
  .cp-sidebar    { display:none; }
  .cp-page-tabs  { top:60px; }
  .cp-why-grid   { grid-template-columns:1fr; }
  .cp-why-visual { display:none; }
  .cp-connect-inner { grid-template-columns:1fr 1fr; gap:20px; }
  .cp-connect-headline { font-size:1rem; }
  .cp-text-layout { grid-template-columns:1fr!important; }
  .cp-text-layout { direction:ltr!important; }
  .cp-text-image { min-height:180px; }
}
@media (max-width:768px) {
  .cp-hero { padding:92px 0 50px; }
  .cp-hero-title { font-size:1.8rem; }
  .cp-hero-subtitle { font-size:0.95rem; }
  .cp-hero-stats { gap:0; }
  .cp-stat { padding:0 16px; }
  .cp-stat-num { font-size:1.1rem; }
  .cp-pages-grid { grid-template-columns:1fr; }
  .cp-section { padding:18px 16px 20px; }
  .cp-section::before { display:none; }
  .cp-timeline-item { width:100%; margin-left:0!important; padding-left:48px!important; padding-right:0!important; text-align:left!important; flex-direction:row!important; }
  .cp-timeline-line { left:16px; }
  .cp-timeline-item.left .cp-timeline-dot  { right:auto; left:-6px; }
  .cp-timeline-item.right .cp-timeline-dot { left:-6px; }
  .cp-timeline-item.left  .cp-timeline-card { border-radius:12px; }
  .cp-timeline-item.right .cp-timeline-card { border-radius:12px; }
  .cp-team-grid        { grid-template-columns:repeat(2, 1fr); gap:10px; }
  .cp-cert-grid        { grid-template-columns:1fr 1fr; gap:10px; }
  .cp-policies-grid    { grid-template-columns:1fr 1fr; gap:10px; }
  .cp-cards-grid       { grid-template-columns:1fr 1fr; gap:10px; }
  .cp-connect-inner { grid-template-columns:1fr; text-align:center; gap:18px; }
  .cp-connect-social-wrap { align-items:center; }
  .cp-page-tabs-inner { gap:0; }
  .cp-tab-link { padding:11px 12px; font-size:0.7rem; gap:6px; }
  .cp-section-header-inner h2 { font-size:1.1rem; }
}
@media (max-width:480px) {
  .cp-hero-title { font-size:1.6rem; }
  .cp-pages-grid { gap:14px; }
  .cp-team-grid  { grid-template-columns:1fr; gap:10px; }
  .cp-cert-grid  { grid-template-columns:1fr; gap:10px; }
  .cp-policies-grid { grid-template-columns:1fr; gap:10px; }
  .cp-cards-grid { grid-template-columns:1fr; gap:10px; }
  .cp-hero-stats { flex-wrap:wrap; justify-content:center; gap:20px; }
  .cp-stat-divider { display:none; }
  .cp-hero-badge { padding:6px 14px; }
  .cp-section { padding:14px 12px 16px; }
  .cp-section-header-inner { padding-left:10px; }
  .cp-section-header-inner h2 { font-size:1rem; }
  .cp-text-body p { font-size:0.82rem; }
}