/* ══════════════════════════════════════════════════════════════════
   Green Edge Technologies — About Page
   about.css — Full stylesheet (shared system + page-specific)
   ══════════════════════════════════════════════════════════════════ */

/* ── Variables (Dark Mode Default) ─────────────────────────────── */
:root {
  --bg:           #0A0F1C;
  --bg-2:         #121826;
  --bg-3:         #0d1220;
  --surface:      #1A2235;
  --surface-2:    #202c42;
  --border:       rgba(255,255,255,0.07);
  --border-g:     rgba(0,200,83,0.22);
  --text:         #FFFFFF;
  --text-muted:   #B0B8C5;
  --text-faint:   #6F7A8A;
  --green:        #00C853;
  --green-dark:   #006837;
  --green-glow:   rgba(0,200,83,0.30);
  --green-subtle: rgba(0,200,83,0.08);
  --ai-blue:      #00A8FF;
  --tech-purple:  #6C63FF;
  --orange:       #FF6B00;
  --neon:         #39FF14;
  --grad-text:    linear-gradient(120deg,#00C853 0%,#00A8FF 50%,#6C63FF 100%);
  --grad-btn:     linear-gradient(135deg,#00C853,#006837);
  --font-d:       'Manrope', sans-serif;
  --font-b:       'Inter', sans-serif;
  --radius:       14px;
  --radius-lg:    22px;
  --ease:         cubic-bezier(0.16,1,0.3,1);
  --nav-h:        72px;
  --shadow:       0 4px 30px rgba(0,0,0,.5);
}
body.light {
  --bg:           #F5F7FA;
  --bg-2:         #EBEEF3;
  --bg-3:         #E0E5EE;
  --surface:      #FFFFFF;
  --surface-2:    #F0F3F8;
  --border:       rgba(0,0,0,0.08);
  --border-g:     rgba(0,200,83,0.30);
  --text:         #0A0F1C;
  --text-muted:   #4A5568;
  --text-faint:   #9AA5B4;
  --green-subtle: rgba(0,200,83,0.10);
  --shadow:       0 4px 30px rgba(0,0,0,.12);
}

/* ── Reset & Base ───────────────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x:hidden; }
body {
  background: var(--bg); color: var(--text);
  font-family: var(--font-b); font-size: 16px; line-height: 1.7;
   cursor:default;
  transition: background .4s, color .4s;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { border: none; background: none; font-family: inherit; cursor:pointer; }
input,textarea { font-family: inherit; font-size: inherit; outline: none; }

/* ── Container ──────────────────────────────────────────────────── */
.container { max-max-width: 1240px; width: 100%; margin: 0 auto; padding: 0 28px; }

/* ── Buttons ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 12px 26px; border-radius: 9px;
  font-family: var(--font-d); font-weight: 700; font-size: .9rem;
  letter-spacing: .01em; transition: all .3s var(--ease);
  position: relative; overflow: hidden; cursor:pointer;
}
.btn::after { content: ''; position: absolute; inset: 0; opacity: 0; background: rgba(255,255,255,.1); border-radius: inherit; transition: opacity .25s; }
.btn:hover::after { opacity: 1; }
.btn-primary { background: var(--grad-btn); color: #fff; box-shadow: 0 4px 22px var(--green-glow); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 40px var(--green-glow), 0 0 0 1px rgba(0,200,83,.35); }
.btn-ghost { border: 1.5px solid var(--green); color: var(--green); background: var(--green-subtle); backdrop-filter: blur(8px); }
.btn-ghost:hover { background: rgba(0,200,83,.16); transform: translateY(-2px); box-shadow: 0 6px 26px var(--green-glow); }
.btn-lg  { padding: 15px 34px; font-size: 1rem; border-radius: 11px; }
.btn-xl  { padding: 17px 42px; font-size: 1.05rem; border-radius: 12px; }
.btn-sm  { padding: 9px 18px; font-size: .82rem; }
.btn-pulse { animation: btnPulse 3s ease-in-out infinite; }
.btn-pulse:hover { animation: none; }
@keyframes btnPulse { 0%,100% { box-shadow: 0 4px 22px var(--green-glow); } 50% { box-shadow: 0 4px 44px rgba(0,200,83,.6), 0 0 0 7px rgba(0,200,83,.07); } }

/* ── Section helpers ────────────────────────────────────────────── */
.section { padding: 110px 0; position: relative; }
.section-tag {
  display: inline-block; font-family: var(--font-d); font-size: .7rem;
  font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
  color: var(--green); background: var(--green-subtle); border: 1px solid var(--border-g);
  padding: 4px 14px; border-radius: 100px; margin-bottom: 1.25rem;
}
.section-header { text-align: center; max-max-width: 700px; width: 100%; margin: 0 auto 5rem; }
.section-title { font-family: var(--font-d); font-size: clamp(1.875rem, 3.75vw, 3.0469rem); font-weight: 800; line-height: 1.12; letter-spacing: -.03em; margin-bottom: 1.1rem; }
.section-sub { font-size: 1.05rem; color: var(--text-muted); max-max-width: 560px; width: 100%; margin: 0 auto; line-height: 1.75; }
.gradient-text { background: var(--grad-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ── Scroll reveal ──────────────────────────────────────────────── */
.reveal-up { opacity: 0; transform: translateY(40px); animation: revealUp .85s var(--ease) forwards; animation-delay: var(--d,0s); }
@keyframes revealUp { to { opacity: 1; transform: translateY(0); } }
.reveal-section,.reveal-card { opacity: 0; transform: translateY(36px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal-card { transition-delay: calc(var(--i,0) * .1s); }
.reveal-section.is-visible,.reveal-card.is-visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════════════════════════════
   SCROLL PROGRESS RING
══════════════════════════════════════════════════════════════════ */
.progress-ring-wrap {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 1200;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--surface); border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(14px) scale(.9);
  transition: opacity .35s, visibility .35s, transform .35s var(--ease);
  box-shadow: 0 4px 24px rgba(0,0,0,.4);
}
.progress-ring-wrap.visible { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.progress-ring-wrap:hover { transform: translateY(-3px) scale(1.06); }
.progress-ring { position: absolute; inset: 0; transform: rotate(-90deg); }
.progress-ring__track { fill: none; stroke: rgba(255,255,255,.08); stroke-width: 2.5; }
.progress-ring__fill { fill: none; stroke: var(--green); stroke-width: 2.5; stroke-linecap: round; stroke-dasharray: 125.66; stroke-dashoffset: 125.66; transition: stroke-dashoffset .1s linear; }
.progress-ring__icon { position: relative; z-index: 1; color: var(--green); }

/* ══════════════════════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════════════════════ */
.mobile-nav-label { font-family: var(--font-d); font-size: 1.05rem; font-weight: 700; color: var(--text-muted); }
/* ══════════════════════════════════════════════════════════════════
   1. ABOUT HERO
══════════════════════════════════════════════════════════════════ */
.about-hero {
  min-height: 100svh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding-top: var(--nav-h);
  background: linear-gradient(160deg, var(--bg) 0%, var(--bg-2) 100%);
}
.hero-canvas { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; display: block; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(110px); pointer-events: none; animation: glowFloat 9s ease-in-out infinite; }
.hero-glow-1 { max-width: 700px; width: 100%; height: 700px; background: radial-gradient(circle,rgba(0,200,83,.09) 0%,transparent 70%); top: -180px; right: -100px; }
.hero-glow-2 { max-width: 500px; width: 100%; height: 500px; background: radial-gradient(circle,rgba(108,99,255,.07) 0%,transparent 70%); bottom: -80px; left: -80px; animation-delay: -3.5s; }
.hero-glow-3 { max-width: 400px; width: 100%; height: 400px; background: radial-gradient(circle,rgba(0,168,255,.05) 0%,transparent 70%); top: 40%; left: 35%; animation-delay: -7s; }
@keyframes glowFloat { 0%,100%{transform:translate(0,0) scale(1);} 33%{transform:translate(28px,-20px) scale(1.05);} 66%{transform:translate(-18px,14px) scale(.97);} }
.about-hero .container { position: relative; z-index: 1; padding-top: 4rem; padding-bottom: 5rem; }
.about-hero-content { max-max-width: 780px; width: 100%; }
.hero-breadcrumb { display: inline-flex; align-items: center; gap: 8px; font-size: .78rem; font-weight: 600; color: var(--text-faint); margin-bottom: 1.25rem; }
.breadcrumb-sep { opacity: .4; }
.breadcrumb-active { color: var(--green); }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; font-size: .8rem; font-weight: 600; color: var(--green); background: var(--green-subtle); border: 1px solid var(--border-g); padding: 6px 16px; border-radius: 100px; margin-bottom: 1.5rem; }
.badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); animation: badgePulse 2s ease-in-out infinite; }
@keyframes badgePulse { 0%,100%{box-shadow:0 0 4px var(--green);} 50%{box-shadow:0 0 18px var(--green),0 0 32px var(--green-glow);} }
.hero-headline { font-family: var(--font-d); font-size: clamp(2.625rem, 6.0938vw, 4.6875rem); font-weight: 800; line-height: 1.07; letter-spacing: -.035em; margin-bottom: 1.5rem; }
.hero-sub { font-size: clamp(0.9375rem, 1.875vw, 1.125rem); color: var(--text-muted); max-max-width: 600px; width: 100%; line-height: 1.75; margin-bottom: 2.5rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats-row { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.h-stat { display: flex; flex-direction: column; gap: 3px; }
.h-stat strong { font-family: var(--font-d); font-size: 1.5rem; font-weight: 800; background: var(--grad-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.h-stat span { font-size: .78rem; color: var(--text-faint); letter-spacing: .03em; font-family: var(--font-d); }
.h-stat-sep { width: 1px; height: 36px; background: var(--border); flex-shrink: 0; }
.hero-scroll-cue { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-faint); }
.scroll-line { width: 1px; height: 44px; background: linear-gradient(to bottom,var(--green),transparent); animation: scrollPulse 1.7s ease-in-out infinite; }
@keyframes scrollPulse { 0%{transform:scaleY(1);transform-origin:top;} 50%{transform:scaleY(0);transform-origin:top;} 50.1%{transform-origin:bottom;} 100%{transform:scaleY(1);transform-origin:bottom;} }

/* ══════════════════════════════════════════════════════════════════
   2. STORY SECTION
══════════════════════════════════════════════════════════════════ */
.story-section { background: var(--bg-2); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
.story-left .section-title { text-align: left; }
.story-body { font-size: .975rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 1.25rem; }
.story-industries { margin: 2rem 0; }
.industries-label { font-family: var(--font-d); font-size: .75rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--text-faint); margin-bottom: .85rem; }
.industries-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.industry-chip { font-family: var(--font-d); font-size: .79rem; font-weight: 600; padding: 6px 14px; border-radius: 100px; background: var(--surface); border: 1px solid var(--border); color: var(--text-muted); transition: all .2s; }
.industry-chip:hover { background: var(--green-subtle); color: var(--green); border-color: var(--border-g); }
.story-cta-row { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }

/* Timeline */
.story-visual { position: relative; }
.story-timeline { display: flex; flex-direction: column; gap: 0; position: relative; }
.story-timeline::before { content: ''; position: absolute; left: 12px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(to bottom, var(--green), rgba(0,200,83,.1)); border-radius: 2px; }
.timeline-item { display: flex; gap: 1.5rem; padding: 0 0 2rem; position: relative; }
.timeline-item:last-child { padding-bottom: 0; }
.tl-dot { width: 26px; height: 26px; border-radius: 50%; background: var(--surface); border: 2px solid var(--border); flex-shrink: 0; display: flex; align-items: center; justify-content: center; position: relative; z-index: 1; transition: border-color .3s, background .3s; }
.timeline-item--active .tl-dot { border-color: var(--green); background: var(--green); box-shadow: 0 0 16px var(--green-glow); }
.timeline-item--active .tl-dot::after { content: ''; width: 8px; height: 8px; border-radius: 50%; background: #fff; }
.tl-dot--future { border-color: rgba(0,200,83,.3); border-style: dashed; }
.tl-body { flex: 1; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.1rem 1.25rem; transition: border-color .3s, box-shadow .3s; }
.timeline-item--active .tl-body { border-color: var(--border-g); box-shadow: 0 0 30px rgba(0,200,83,.07); }
.tl-year { font-family: var(--font-d); font-size: .7rem; font-weight: 800; letter-spacing: .1em; color: var(--green); text-transform: uppercase; display: block; margin-bottom: 4px; }
.tl-body h4 { font-family: var(--font-d); font-size: .94rem; font-weight: 800; margin-bottom: 3px; }
.tl-body p { font-size: .82rem; color: var(--text-muted); line-height: 1.6; }

/* ══════════════════════════════════════════════════════════════════
   3. CEO SECTION
══════════════════════════════════════════════════════════════════ */
.ceo-section { background: var(--bg); }
.ceo-bg-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); max-width: 900px; width: 100%; height: 500px; background: radial-gradient(ellipse,rgba(0,200,83,.04) 0%,transparent 70%); pointer-events: none; }
.ceo-card {
  display: grid; grid-template-columns: 280px 1fr; gap: 4rem;
  background: var(--surface); border: 1px solid var(--border-g); border-radius: var(--radius-lg);
  padding: 3rem; position: relative; overflow: hidden;
  box-shadow: 0 0 60px rgba(0,200,83,.06);
}
.ceo-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--grad-btn); border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.ceo-photo-col { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.ceo-photo-wrap { position: relative; }
.ceo-photo-placeholder { max-width: 160px; width: 100%; height: 160px; border-radius: 50%; background: var(--surface-2); border: 3px solid var(--border-g); display: flex; align-items: center; justify-content: center; position: relative; z-index: 1; }
.ceo-photo-ring { position: absolute; inset: -8px; border-radius: 50%; border: 2px dashed rgba(0,200,83,.3); animation: ceoRing 8s linear infinite; }
@keyframes ceoRing { to { transform: rotate(360deg); } }
.ceo-identity { text-align: center; }
.ceo-identity h3 { font-family: var(--font-d); font-size: 1.1rem; font-weight: 800; margin-bottom: 4px; }
.ceo-title-text { font-family: var(--font-d); font-size: .8rem; font-weight: 600; color: var(--green); margin-bottom: 1rem; }
.ceo-creds { display: flex; flex-direction: column; gap: 5px; margin-bottom: 1rem; }
.ceo-creds span { font-size: .77rem; color: var(--text-muted); background: var(--surface-2); border: 1px solid var(--border); padding: 4px 12px; border-radius: 100px; font-family: var(--font-d); font-weight: 600; }
.ceo-social { display: flex; gap: 8px; justify-content: center; }
.ceo-social-link { width: 34px; height: 34px; border-radius: 8px; background: var(--surface-2); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--text-muted); transition: all .2s; cursor:pointer; }
.ceo-social-link:hover { background: var(--green-subtle); color: var(--green); border-color: var(--border-g); }
.ceo-content-col { position: relative; }
.ceo-quote-mark { font-family: Georgia, serif; font-size: 8rem; line-height: .6; color: var(--green); opacity: .15; position: absolute; top: -1rem; left: -1rem; pointer-events: none; }
.ceo-quote { font-family: var(--font-d); font-size: 1.3rem; font-weight: 700; line-height: 1.6; letter-spacing: -.01em; color: var(--text); border-left: 3px solid var(--green); padding-left: 1.5rem; margin-bottom: 1.75rem; }
.ceo-body { font-size: .95rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 1rem; }
.ceo-signature { display: flex; align-items: center; gap: 1.25rem; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.ceo-sig-line { max-width: 120px; width: 100%; flex-shrink: 0; }
.ceo-sig-line svg { width: 100%; height: auto; }
.ceo-signature strong { display: block; font-family: var(--font-d); font-size: .9rem; font-weight: 800; }
.ceo-signature span { display: block; font-size: .78rem; color: var(--text-muted); }

/* ══════════════════════════════════════════════════════════════════
   4. VISION / MISSION / VALUES
══════════════════════════════════════════════════════════════════ */
.vmv-section { background: var(--bg-2); }
.vmv-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.75rem; }
.vmv-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 2.25rem; display: flex; flex-direction: column; gap: .9rem;
  position: relative; overflow: hidden; cursor:pointer;
  transition: border-color .3s, transform .4s var(--ease), box-shadow .4s;
}
.vmv-card:hover { transform: translateY(-8px); border-color: var(--border-g); box-shadow: 0 24px 60px rgba(0,0,0,.35); }
.vmv-icon-wrap { width: 58px; height: 58px; border-radius: 15px; display: flex; align-items: center; justify-content: center; border: 1px solid; }
.vmv-card h3 { font-family: var(--font-d); font-size: 1.35rem; font-weight: 800; letter-spacing: -.015em; }
.vmv-card p { font-size: .92rem; color: var(--text-muted); line-height: 1.75; flex: 1; }
.values-list { display: flex; flex-direction: column; gap: 9px; flex: 1; }
.values-list li { display: flex; align-items: center; gap: 10px; font-size: .88rem; color: var(--text-muted); font-family: var(--font-d); font-weight: 500; }
.values-check { color: var(--green); font-weight: 800; }
.vmv-accent { position: absolute; bottom: 0; left: 0; right: 0; height: 3px; border-radius: 0 0 var(--radius-lg) var(--radius-lg); }
.vmv-accent--green  { background: linear-gradient(90deg,#00C853,transparent); }
.vmv-accent--blue   { background: linear-gradient(90deg,#00A8FF,transparent); }
.vmv-accent--purple { background: linear-gradient(90deg,#6C63FF,transparent); }

/* ══════════════════════════════════════════════════════════════════
   5. STATS / ACHIEVEMENTS
══════════════════════════════════════════════════════════════════ */
.stats-section { padding: 100px 0; position: relative; overflow: hidden; background: var(--bg); }
.stats-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 60% 50%,rgba(0,200,83,.05) 0%,transparent 70%); pointer-events: none; }
.stats-inner { display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; align-items: center; }
.stats-right { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.stat-block {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.75rem; display: flex; align-items: flex-start; gap: 1.1rem;
  transition: border-color .3s, transform .4s var(--ease), box-shadow .4s;
}
.stat-block:hover { border-color: var(--border-g); transform: translateY(-5px); box-shadow: 0 18px 50px rgba(0,0,0,.3); }
.stat-icon { width: 52px; height: 52px; border-radius: 13px; display: flex; align-items: center; justify-content: center; border: 1px solid; flex-shrink: 0; }
.stat-num { font-family: var(--font-d); font-size: 2.2rem; font-weight: 800; display: block; line-height: 1; margin-bottom: 5px; letter-spacing: -.03em; }
.stat-label { font-family: var(--font-d); font-size: .78rem; font-weight: 600; color: var(--text-muted); letter-spacing: .04em; display: block; }

/* ══════════════════════════════════════════════════════════════════
   6. TEAM
══════════════════════════════════════════════════════════════════ */
.team-section { background: var(--bg-2); }
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.team-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; cursor:pointer;
  transition: border-color .3s, transform .4s var(--ease), box-shadow .4s;
}
.team-card:hover { transform: translateY(-8px); border-color: var(--border-g); box-shadow: 0 24px 60px rgba(0,0,0,.35); }
.team-photo-wrap { position: relative; height: 200px; overflow: hidden; }
.team-photo-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.team-card-glow { position: absolute; bottom: -20px; left: 50%; transform: translateX(-50%); width: 80%; height: 60px; background: radial-gradient(ellipse, var(--gc,rgba(0,200,83,.3)) 0%,transparent 70%); filter: blur(12px); opacity: 0; transition: opacity .4s; }
.team-card:hover .team-card-glow { opacity: 1; }
.team-card-body { padding: 1.5rem; }
.team-card h3 { font-family: var(--font-d); font-size: 1.05rem; font-weight: 800; margin-bottom: 3px; }
.team-role { font-family: var(--font-d); font-size: .78rem; font-weight: 700; color: var(--green); letter-spacing: .04em; text-transform: uppercase; display: block; margin-bottom: .6rem; }
.team-bio { font-size: .84rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 1rem; }
.team-socials { display: flex; gap: 7px; }
.team-social { width: 30px; height: 30px; border-radius: 7px; background: var(--surface-2); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--text-faint); transition: all .2s; cursor:pointer; }
.team-social:hover { background: var(--green-subtle); color: var(--green); border-color: var(--border-g); }

/* ══════════════════════════════════════════════════════════════════
   7. WHY CHOOSE US
══════════════════════════════════════════════════════════════════ */
.why-section { background: var(--bg); }
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.why-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.75rem; display: flex; align-items: flex-start; gap: 1.1rem;
  transition: border-color .3s, transform .4s var(--ease), box-shadow .4s; cursor:pointer;
}
.why-card:hover { border-color: var(--border-g); transform: translateY(-5px); box-shadow: 0 18px 50px rgba(0,0,0,.3); }
.why-icon-wrap { width: 52px; height: 52px; border-radius: 13px; display: flex; align-items: center; justify-content: center; border: 1px solid; flex-shrink: 0; }
.why-card h4 { font-family: var(--font-d); font-size: .95rem; font-weight: 800; margin-bottom: .4rem; }
.why-card p { font-size: .86rem; color: var(--text-muted); line-height: 1.7; }

/* ══════════════════════════════════════════════════════════════════
   8. PARTNERS CAROUSEL
══════════════════════════════════════════════════════════════════ */
.partners-section { background: var(--bg-2); }
.carousel-wrap { overflow: hidden; position: relative; }
.carousel-wrap::before,.carousel-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; max-width: 120px; width: 100%; z-index: 2; pointer-events: none;
}
.carousel-wrap::before { left: 0; background: linear-gradient(to right,var(--bg-2),transparent); }
.carousel-wrap::after  { right: 0; background: linear-gradient(to left,var(--bg-2),transparent); }
.carousel-track { display: flex; gap: 1.5rem; will-change: transform; animation: carouselScroll 28s linear infinite; width: max-content; }
.carousel-track:hover,.carousel-wrap:hover .carousel-track { animation-play-state: paused; }
@keyframes carouselScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.carousel-logo {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.25rem 2rem; display: flex; align-items: center; justify-content: center;
  min-max-width: 180px; width: 100%; transition: border-color .25s, box-shadow .25s; cursor:pointer; flex-shrink: 0;
}
.carousel-logo:hover { border-color: var(--border-g); box-shadow: 0 0 24px var(--green-glow); }
.carousel-logo span { font-family: var(--font-d); font-size: .82rem; font-weight: 800; letter-spacing: .04em; color: var(--text-faint); white-space: nowrap; transition: color .25s; }
.carousel-logo:hover span { color: var(--green); }

/* ══════════════════════════════════════════════════════════════════
   9. CTA SECTION
══════════════════════════════════════════════════════════════════ */
.cta-section { padding: 110px 0; position: relative; overflow: hidden; background: var(--bg); }
.cta-glow-1 { position: absolute; top: -80px; left: 50%; transform: translateX(-50%); max-width: 900px; width: 100%; height: 400px; background: radial-gradient(ellipse at top,rgba(0,200,83,.08) 0%,transparent 70%); pointer-events: none; }
.cta-glow-2 { position: absolute; bottom: -80px; right: -100px; max-width: 500px; width: 100%; height: 500px; background: radial-gradient(circle,rgba(108,99,255,.06) 0%,transparent 70%); pointer-events: none; }
.cta-inner { text-align: center; position: relative; z-index: 1; max-max-width: 700px; width: 100%; margin: 0 auto; }
.cta-inner .section-tag { margin-bottom: 1.25rem; }
.cta-title { font-size: clamp(2.3438rem, 4.6875vw, 3.75rem); }
.cta-sub { margin-bottom: 2.5rem; }
.cta-buttons { display: flex; gap: 1.25rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.cta-trust-row { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }
.cta-trust-row span { font-family: var(--font-d); font-size: .78rem; font-weight: 600; color: var(--green); }

/* ══════════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════════ */
.footer { background: var(--bg-3); border-top: 1px solid var(--border); }
.footer-top-bar { background: rgba(0,200,83,.05); border-bottom: 1px solid var(--border-g); padding: 13px 0; }
.footer-top-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .8rem; color: var(--text-muted); font-family: var(--font-d); font-weight: 600; }
.footer-socials { display: flex; gap: 8px; }
.social-link { width: 34px; height: 34px; border-radius: 7px; background: var(--surface); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--text-muted); transition: all .2s; cursor:pointer; }
.social-link:hover { background: var(--green-subtle); color: var(--green); border-color: var(--border-g); box-shadow: 0 0 14px var(--green-glow); }
.footer-main { padding: 60px 0 44px; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr; gap: 3rem; }
.footer-brand p { font-size: .875rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 2rem; max-max-width: 280px; width: 100%; }
.newsletter-wrap { margin-top: 1.5rem; }
.newsletter-label { font-family: var(--font-d); font-size: .78rem; font-weight: 700; letter-spacing: .05em; color: var(--text-muted); margin-bottom: .65rem; }
.newsletter-form { display: flex; gap: 8px; }
.newsletter-form input { flex: 1; background: var(--surface); border: 1.5px solid var(--border); border-radius: 8px; padding: 10px 13px; color: var(--text); font-size: .85rem; transition: border-color .2s; }
.newsletter-form input:focus { border-color: var(--green); box-shadow: 0 0 0 2px var(--green-subtle); }
.footer-col h5 { font-family: var(--font-d); font-size: .73rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1.25rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col a { font-size: .875rem; color: var(--text-muted); transition: color .2s; cursor:pointer; }
.footer-col a:hover { color: var(--green); }
.footer-bottom { border-top: 1px solid var(--border); padding: 22px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: .79rem; color: var(--text-faint); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: var(--text-faint); transition: color .2s; cursor:pointer; }
.footer-legal a:hover { color: var(--green); }

/* ══════════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-brand { grid-column: span 2; }
  .ceo-card { grid-template-columns: 240px 1fr; gap: 2.5rem; }
}
@media (max-width: 960px) {
  .story-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .vmv-grid { grid-template-columns: 1fr; max-max-width: 540px; width: 100%; margin: 0 auto; }
  .stats-inner { grid-template-columns: 1fr; gap: 3rem; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .ceo-card { grid-template-columns: 1fr; }
  .ceo-photo-col { flex-direction: row; align-items: flex-start; gap: 2rem; }
}
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  body { cursor:default; }
  .section { padding: 75px 0; }
  .hero-headline { font-size: clamp(2.25rem, 7.9688vw, 3.2812rem); }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-stats-row { gap: 1rem; }
  .h-stat-sep { display: none; }
  .stats-right { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; max-max-width: 360px; width: 100%; margin: 0 auto; }
  .why-grid { grid-template-columns: 1fr; }
  .ceo-photo-col { flex-direction: column; align-items: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; flex-wrap: wrap; }
  .footer-top-inner { flex-direction: column; text-align: center; }
  .cta-trust-row { gap: .75rem; }
}
@media (max-width: 540px) {
  .stats-right { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; align-items: center; }
}

img{max-width:100%;height:auto;}
img { max-width: 100%; height: auto; }

/* Logo Fix */

/* Logo sizing is controlled via Appearance → Customize → Logo & Branding.
   CSS custom properties are set by greenedge_logo_inline_css() in functions.php
   and consumed by components.css. Do not add hardcoded overrides here. */

/* ══════════════════════════════════════════════════════════════════
   TEAM & CEO PHOTO IMAGES
   Injected dynamically by page-about.js when ABOUT_IMAGES paths are set.
   ══════════════════════════════════════════════════════════════════ */

/* ── CEO circular portrait ──────────────────────────────────────── */
.ceo-photo-placeholder.has-photo {
  background: transparent;
  border-color: var(--border-g);
  overflow: hidden;
  padding: 0;
  display: block;
}
.ceo-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  display: block;
  transition: transform 0.5s var(--ease);
}
.ceo-photo-placeholder.has-photo:hover .ceo-photo-img {
  transform: scale(1.06);
}

/* ── Team member banner photo ───────────────────────────────────── */
.team-photo-placeholder.has-photo {
  background: transparent;
  display: block;
}
.team-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s var(--ease);
}
.team-card:hover .team-photo-img {
  transform: scale(1.06);
}
