/* ══════════════════════════════════════════════════════════════════
   Green Edge Technologies — Tech Bootcamp Page
   bootcamp.css
══════════════════════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ───────────────────────────────────────────────── */
: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;
  --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)
}
*,*::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,select,textarea { font-family:inherit; font-size:inherit; outline:none }

/* ── NOISE ───────────────────────────────────────────────────────── */

/* ── CURSOR ──────────────────────────────────────────────────────── */

/* ── 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) } }

/* ── SECTIONS ────────────────────────────────────────────────────── */
.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 }
.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)*.08s) }
.reveal-section.is-visible,.reveal-card.is-visible { opacity:1; transform:translateY(0) }

/* ── 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) }

/* ══════════════════════════════════════════════════════════════════
   NAV
══════════════════════════════════════════════════════════════════ */
/* ══════════════════════════════════════════════════════════════════
   1 · HERO
══════════════════════════════════════════════════════════════════ */
.bc-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: 800px; width: 100%; height:800px; background:radial-gradient(circle,rgba(0,200,83,.07) 0%,transparent 70%); top:-200px; right:-140px }
.hero-glow-2 { max-width: 500px; width: 100%; height:500px; background:radial-gradient(circle,rgba(0,168,255,.06) 0%,transparent 70%); bottom:-80px; left:-80px; animation-delay:-4s }
@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)} }
.bc-hero .container { position:relative; z-index:1; padding-top:4rem; padding-bottom:5rem }
.bc-hero-inner { display:grid; grid-template-columns:1fr 520px; gap:4rem; align-items:center }

.hero-breadcrumb { display:inline-flex; align-items:center; gap:7px; font-family:var(--font-d); font-size:.78rem; font-weight:600; color:var(--text-faint); margin-bottom:1.25rem }
.hero-breadcrumb a { color:var(--text-faint); transition:color .2s }
.hero-breadcrumb a:hover { color:var(--green) }
.breadcrumb-active { color:var(--green) }
.hero-badge { display:inline-flex; align-items:center; gap:8px; font-family:var(--font-d); 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; flex-shrink:0 }
@keyframes badgePulse { 0%,100%{box-shadow:0 0 4px var(--green)} 50%{box-shadow:0 0 18px var(--green),0 0 32px rgba(0,200,83,.3)} }
.bc-hero-title { font-family:var(--font-d); font-size:clamp(2.625rem, 5.1562vw, 4.2188rem); font-weight:800; line-height:1.07; letter-spacing:-.035em; margin-bottom:1.25rem }
.bc-hero-desc { font-size:1.05rem; color:var(--text-muted); line-height:1.78; margin-bottom:1.75rem; max-width:520px }
.bc-hero-pills { display:flex; flex-wrap:wrap; gap:.6rem; margin-bottom:2rem }
.bc-hero-pills span { display:inline-flex; align-items:center; gap:6px; font-family:var(--font-d); font-size:.8rem; font-weight:600; color:var(--text-muted); background:var(--surface); border:1px solid var(--border); padding:6px 14px; border-radius:100px }
.bc-hero-pills span svg { color:var(--green); flex-shrink:0 }
.bc-hero-ctas { display:flex; flex-wrap:wrap; gap:1rem; margin-bottom:1.75rem }
.bc-trust-row { display:flex; flex-wrap:wrap; gap:1rem }
.bc-trust-row span { font-family:var(--font-d); font-size:.8rem; font-weight:600; color:var(--text-faint) }

/* ── HERO VISUAL CARD ────────────────────────────────────────────── */
.bc-visual-card { background:var(--surface); border:1px solid var(--border-g); border-radius:var(--radius-lg); overflow:hidden; box-shadow:0 40px 120px rgba(0,0,0,.5),0 0 0 1px rgba(0,200,83,.06); position:relative }
.bcv-topbar { display:flex; align-items:center; justify-content:space-between; padding:.9rem 1.25rem; background:var(--surface-2); border-bottom:1px solid var(--border) }
.bcv-tabs { display:flex; gap:0 }
.bcv-tab { font-family:var(--font-d); font-size:.72rem; font-weight:600; color:var(--text-faint); padding:.4rem .85rem; border-radius:7px; cursor:pointer; transition:all .2s }
.bcv-tab--active { background:var(--green-subtle); color:var(--green) }
.bcv-user { display:flex; align-items:center; gap:.5rem }
.bcv-avatar { width:28px; height:28px; border-radius:50%; background:linear-gradient(135deg,var(--green),#006837); display:flex; align-items:center; justify-content:center; font-family:var(--font-d); font-size:.62rem; font-weight:800; color:#fff; flex-shrink:0 }
.bcv-body { padding:1.25rem }
.bcv-progress-row { display:flex; gap:1rem; margin-bottom:1.5rem; justify-content:center }
.bcv-prog-item { display:flex; flex-direction:column; align-items:center; gap:.4rem }
.bcv-ring { width:56px; height:56px }
.bcv-prog-text { text-align:center }
.bcv-prog-n { display:block; font-family:var(--font-d); font-size:.92rem; font-weight:800; color:var(--green); line-height:1.1 }
.bcv-prog-l { display:block; font-size:.62rem; color:var(--text-faint) }
.bcv-lesson { background:var(--surface-2); border:1px solid var(--border); border-radius:11px; padding:1rem; margin-bottom:1rem }
.bcv-lesson-header { display:flex; justify-content:space-between; margin-bottom:.4rem }
.bcv-lesson-tag { font-family:var(--font-d); font-size:.65rem; font-weight:800; letter-spacing:.06em; text-transform:uppercase; color:var(--green) }
.bcv-lesson-time { font-family:'JetBrains Mono',monospace; font-size:.65rem; color:var(--text-faint) }
.bcv-lesson-title { font-family:var(--font-d); font-size:.84rem; font-weight:700; color:var(--text); margin-bottom:.75rem }
.bcv-lesson-bar { height:4px; background:rgba(255,255,255,.08); border-radius:10px; overflow:hidden }
.bcv-lesson-fill { height:100%; background:var(--grad-btn); width:71%; border-radius:10px }
.bcv-next { display:flex; flex-direction:column; gap:.5rem }
.bcv-next-label { font-family:var(--font-d); font-size:.68rem; font-weight:800; letter-spacing:.1em; text-transform:uppercase; color:var(--text-faint); margin-bottom:.25rem }
.bcv-next-item { display:flex; align-items:center; gap:.75rem; padding:.55rem .75rem; border-radius:8px; font-family:var(--font-d); font-size:.8rem; color:var(--text-muted); transition:background .2s }
.bcv-next-item--done { color:var(--text-faint) }
.bcv-next-item--active { background:var(--green-subtle); color:var(--text) }
.bcv-ni-icon { width:22px; height:22px; border-radius:50%; display:flex; align-items:center; justify-content:center; flex-shrink:0; background:rgba(255,255,255,.07) }
.bcv-ni-icon--done { background:rgba(0,200,83,.12); }
.bcv-ni-icon--play { background:var(--grad-btn); }
.bcv-ni-icon--lock { background:rgba(255,255,255,.04); }
.bcv-ni-dur { margin-left:auto; font-size:.7rem; color:var(--text-faint); white-space:nowrap }
/* Floating badges */
.bc-float-badge { position:absolute; display:flex; align-items:center; gap:6px; font-family:var(--font-d); font-size:.72rem; font-weight:700; padding:6px 12px; border-radius:100px; box-shadow:0 8px 32px rgba(0,0,0,.4); backdrop-filter:blur(8px); z-index:5 }
.bc-float-badge--a { top:-14px; right:20px; background:rgba(0,200,83,.12); border:1px solid rgba(0,200,83,.3); color:#00C853; animation:floatA 3.5s ease-in-out infinite }
.bc-float-badge--b { bottom:-14px; left:20px; background:rgba(0,168,255,.12); border:1px solid rgba(0,168,255,.3); color:#00A8FF; animation:floatB 4s ease-in-out infinite }
@keyframes floatA { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-7px)} }
@keyframes floatB { 0%,100%{transform:translateY(0)} 50%{transform:translateY(7px)} }

.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 · WHY
══════════════════════════════════════════════════════════════════ */
.why-section { background:var(--bg-2) }
.why-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1.4rem }
.why-card { background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-lg); padding:2rem 1.65rem; display:flex; flex-direction:column; gap:.9rem; transition:border-color .3s,transform .4s var(--ease),box-shadow .35s }
.why-card:hover { transform:translateY(-8px); border-color:var(--border-g); box-shadow:0 24px 60px rgba(0,0,0,.4) }
.wc-icon { width:52px; height:52px; border-radius:14px; background:var(--wi); color:var(--wt); display:flex; align-items:center; justify-content:center; flex-shrink:0; transition:transform .3s var(--ease) }
.why-card:hover .wc-icon { transform:scale(1.1) rotate(-5deg) }
.why-card h3 { font-family:var(--font-d); font-size:.98rem; font-weight:800 }
.why-card p { font-size:.84rem; color:var(--text-muted); line-height:1.65 }
.wc-tags { display:flex; flex-wrap:wrap; gap:5px; margin-top:.25rem }
.wc-tags span { font-family:var(--font-d); font-size:.65rem; font-weight:700; padding:3px 9px; border-radius:100px; background:var(--surface-2); border:1px solid var(--border); color:var(--text-faint) }

/* ══════════════════════════════════════════════════════════════════
   3 · PROGRAMS
══════════════════════════════════════════════════════════════════ */
.programs-section { background:var(--bg) }
.programs-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem }
.prog-card { background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-lg); padding:2rem; display:flex; flex-direction:column; gap:1rem; transition:border-color .3s,transform .4s var(--ease),box-shadow .35s }
.prog-card:hover { transform:translateY(-8px); box-shadow:0 28px 70px rgba(0,0,0,.4) }
.pc-top { display:flex; align-items:flex-start; justify-content:space-between }
.pc-icon { width:54px; height:54px; border-radius:14px; background:var(--pi); color:var(--pt); display:flex; align-items:center; justify-content:center; flex-shrink:0; transition:transform .3s var(--ease) }
.prog-card:hover .pc-icon { transform:scale(1.1) rotate(-5deg) }
.pc-badge { font-family:var(--font-d); font-size:.65rem; font-weight:800; letter-spacing:.06em; text-transform:uppercase; padding:4px 10px; border-radius:100px }
.pc-badge--green { background:var(--green-subtle); color:var(--green); border:1px solid var(--border-g) }
.prog-card h3 { font-family:var(--font-d); font-size:1.05rem; font-weight:800 }
.prog-card p { font-size:.85rem; color:var(--text-muted); line-height:1.7; flex:1 }
.pc-meta { display:flex; gap:.75rem; flex-wrap:wrap }
.pc-meta span { display:inline-flex; align-items:center; gap:5px; font-family:var(--font-d); font-size:.75rem; font-weight:600; color:var(--text-faint); background:var(--surface-2); border:1px solid var(--border); padding:4px 10px; border-radius:100px }
.pc-meta svg { color:var(--green); flex-shrink:0 }

/* ══════════════════════════════════════════════════════════════════
   4 · TIMELINE
══════════════════════════════════════════════════════════════════ */
.timeline-section { background:var(--bg-2) }
.timeline-track { position:relative; display:flex; gap:0; align-items:flex-start; margin-top:1rem; overflow:visible; padding-top:2.5rem }
.tl-line { position:absolute; top:62px; left:9%; right:9%; height:2px; background:var(--border); z-index:0 }
.tl-line-fill { height:100%; background:linear-gradient(90deg,var(--green),var(--ai-blue)); border-radius:2px; width:0; transition:width 1.5s var(--ease) }
.tl-step { flex:1; display:flex; flex-direction:column; align-items:center; text-align:center; gap:.75rem; padding:.5rem .75rem 1.5rem; position:relative; z-index:1 }
.tl-node { display:flex; flex-direction:column; align-items:center; gap:.4rem; margin-bottom:.25rem }
.tl-num { font-family:var(--font-d); font-size:.62rem; font-weight:800; letter-spacing:.1em; color:var(--text-faint); background:var(--surface); border:1px solid var(--border); padding:2px 8px; border-radius:100px }
.tl-step--active .tl-num { color:var(--green); background:var(--green-subtle); border-color:var(--border-g) }
.tl-icon { width:52px; height:52px; border-radius:50%; background:var(--surface); border:2px solid var(--border); display:flex; align-items:center; justify-content:center; color:var(--text-muted); box-shadow:0 0 0 6px var(--bg-2) }
.tl-step--active .tl-icon { background:rgba(0,200,83,.1); border-color:var(--green); color:var(--green); box-shadow:0 0 0 6px var(--bg-2),0 0 22px rgba(0,200,83,.25) }
.tl-step h3 { font-family:var(--font-d); font-size:.92rem; font-weight:800 }
.tl-step p { font-size:.8rem; color:var(--text-muted); line-height:1.62; max-width:160px }
.tl-tags { display:flex; flex-wrap:wrap; gap:4px; justify-content:center }
.tl-tags span { font-family:var(--font-d); font-size:.63rem; font-weight:700; padding:3px 8px; border-radius:100px; background:var(--surface-2); border:1px solid var(--border); color:var(--text-faint) }
.tl-step--active .tl-tags span { background:rgba(0,200,83,.1); border-color:rgba(0,200,83,.3); color:var(--green) }

/* ══════════════════════════════════════════════════════════════════
   5 · BENEFITS
══════════════════════════════════════════════════════════════════ */
.benefits-section { background:var(--bg) }
.benefits-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.4rem }
.benefit-card { background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-lg); padding:2rem; display:flex; flex-direction:column; gap:.9rem; transition:border-color .3s,transform .4s var(--ease),box-shadow .35s }
.benefit-card:hover { transform:translateY(-7px); border-color:var(--border-g); box-shadow:0 20px 50px rgba(0,0,0,.35) }
.bc-icon-wrap { width:52px; height:52px; border-radius:14px; background:var(--bi); color:var(--bt); display:flex; align-items:center; justify-content:center; flex-shrink:0; transition:transform .3s var(--ease) }
.benefit-card:hover .bc-icon-wrap { transform:scale(1.1) rotate(-5deg) }
.benefit-card h4 { font-family:var(--font-d); font-size:.98rem; font-weight:800 }
.benefit-card p { font-size:.84rem; color:var(--text-muted); line-height:1.65 }

/* ══════════════════════════════════════════════════════════════════
   6 · METRICS
══════════════════════════════════════════════════════════════════ */
.metrics-section { background:var(--bg-2) }
.metrics-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1.5rem }
.metric-card { background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-lg); padding:2.25rem 1.75rem; text-align:center; display:flex; flex-direction:column; align-items:center; gap:.75rem; transition:border-color .3s,transform .35s var(--ease) }
.metric-card:hover { transform:translateY(-6px); border-color:var(--border-g) }
.metric-card--featured { border-color:rgba(0,200,83,.3); background:rgba(0,200,83,.02); box-shadow:0 0 0 1px rgba(0,200,83,.1),0 24px 80px rgba(0,200,83,.08) }
.mc-icon { opacity:.7 }
.mc-number { font-family:var(--font-d); font-size:3rem; font-weight:800; color:var(--green); line-height:1 }
.metric-card--featured .mc-number { color:var(--ai-blue) }
.mc-label { font-family:var(--font-d); font-size:.88rem; font-weight:800; color:var(--text) }
.mc-sub { font-size:.78rem; color:var(--text-faint) }

/* ══════════════════════════════════════════════════════════════════
   7 · TESTIMONIALS CAROUSEL
══════════════════════════════════════════════════════════════════ */
.testimonials-section { background:var(--bg) }
.carousel-wrap { position:relative }
.carousel { overflow:hidden; border-radius:var(--radius-lg) }
.carousel-track { display:flex; transition:transform .5s var(--ease) }
.tcard { min-width:calc(33.333% - 1rem); margin-right:1.5rem; background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-lg); padding:2rem; display:flex; flex-direction:column; gap:1.1rem; flex-shrink:0 }
.tcard-stars { color:var(--green); font-size:1.1rem; letter-spacing:2px }
.tcard-body { font-size:.9rem; color:var(--text-muted); line-height:1.78; flex:1; font-style:italic }
.tcard-author { display:flex; align-items:center; gap:.85rem }
.tcard-avatar { width:40px; height:40px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-family:var(--font-d); font-size:.75rem; font-weight:800; flex-shrink:0 }
.tcard-name { font-family:var(--font-d); font-size:.88rem; font-weight:700 }
.tcard-role { font-size:.76rem; color:var(--text-faint) }
.carousel-controls { display:flex; align-items:center; justify-content:center; gap:1rem; margin-top:2rem }
.carousel-btn { width:44px; height:44px; border-radius:50%; background:var(--surface); border:1px solid var(--border); display:flex; align-items:center; justify-content:center; color:var(--text-muted); cursor:pointer; transition:all .2s }
.carousel-btn:hover { background:var(--green-subtle); color:var(--green); border-color:var(--border-g) }
.carousel-dots { display:flex; gap:.5rem }
.carousel-dot { width:8px; height:8px; border-radius:50%; background:var(--border); cursor:pointer; transition:all .3s; cursor:pointer }
.carousel-dot.active { background:var(--green); width:24px; border-radius:4px }

/* ══════════════════════════════════════════════════════════════════
   8 · PRICING
══════════════════════════════════════════════════════════════════ */
.pricing-section { background:var(--bg-2) }
.pricing-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem }
.price-card { background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-lg); padding:2rem; display:flex; flex-direction:column; gap:1.5rem; transition:border-color .3s,transform .35s var(--ease),box-shadow .35s; position:relative }
.price-card:hover { transform:translateY(-6px); box-shadow:0 24px 60px rgba(0,0,0,.4) }
.price-card--featured { border-color:var(--green); background:rgba(0,200,83,.02); box-shadow:0 0 0 1px rgba(0,200,83,.15),0 24px 80px rgba(0,200,83,.1) }
.price-card--featured:hover { box-shadow:0 0 0 1px var(--green),0 32px 80px rgba(0,200,83,.18) }
.prc-popular { position:absolute; top:-12px; left:50%; transform:translateX(-50%); font-family:var(--font-d); font-size:.72rem; font-weight:800; letter-spacing:.08em; text-transform:uppercase; background:var(--green); color:#000; padding:4px 16px; border-radius:100px; white-space:nowrap; box-shadow:0 4px 16px var(--green-glow) }
.prc-header { display:flex; align-items:flex-start; gap:1rem }
.prc-icon { width:48px; height:48px; border-radius:12px; display:flex; align-items:center; justify-content:center; flex-shrink:0 }
.prc-tier { font-family:var(--font-d); font-size:.78rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color:var(--text-faint); margin-bottom:.25rem }
.prc-price { font-family:var(--font-d); font-size:1.8rem; font-weight:800; color:var(--text); line-height:1 }
.prc-period { font-size:.78rem; color:var(--text-faint); margin-top:.25rem }
.prc-list { display:flex; flex-direction:column; gap:.7rem; flex:1 }
.prc-li--yes,.prc-li--no { display:flex; align-items:center; gap:.65rem; font-size:.875rem; color:var(--text-muted) }
.prc-li--yes::before { content:'✓'; color:var(--green); font-weight:800; font-size:.9rem; min-width:16px }
.prc-li--no { color:var(--text-faint) }
.prc-li--no::before { content:'×'; color:var(--text-faint); font-weight:800; font-size:.9rem; min-width:16px }
.prc-seats { display:flex; align-items:center; gap:6px; font-family:var(--font-d); font-size:.78rem; font-weight:600; color:var(--orange); justify-content:center; margin-top:.75rem }

/* ══════════════════════════════════════════════════════════════════
   9 · FAQ
══════════════════════════════════════════════════════════════════ */
.faq-section { background:var(--bg) }
.faq-layout { display:grid; grid-template-columns:360px 1fr; gap:5rem; align-items:start }
.faq-left { position:sticky; top:calc(var(--nav-h) + 2rem) }
.faq-right { display:flex; flex-direction:column; gap:.75rem }
.faq-item { background:var(--surface); border:1px solid var(--border); border-radius:var(--radius); overflow:hidden }
.faq-btn { width:100%; display:flex; align-items:center; justify-content:space-between; gap:1rem; padding:1.15rem 1.35rem; font-family:var(--font-d); font-size:.92rem; font-weight:700; color:var(--text); cursor:pointer; text-align:left; transition:background .2s }
.faq-btn:hover { background:rgba(255,255,255,.03) }
.faq-chev { flex-shrink:0; transition:transform .35s var(--ease); color:var(--text-faint) }
.faq-btn[aria-expanded="true"] { color:var(--green) }
.faq-btn[aria-expanded="true"] .faq-chev { transform:rotate(180deg); color:var(--green) }
.faq-ans[hidden] { display:none }
.faq-ans-inner { padding:.25rem 1.35rem 1.25rem; font-size:.9rem; color:var(--text-muted); line-height:1.78 }

/* ══════════════════════════════════════════════════════════════════
   10 · FINAL CTA
══════════════════════════════════════════════════════════════════ */
.final-cta { position:relative; padding:120px 0; overflow:hidden; background:var(--bg-3) }
.fcta-glow-1 { position:absolute; max-width: 700px; width: 100%; height:700px; border-radius:50%; background:radial-gradient(circle,rgba(0,200,83,.09),transparent 70%); top:-200px; left:-200px; pointer-events:none }
.fcta-glow-2 { position:absolute; max-width: 500px; width: 100%; height:500px; border-radius:50%; background:radial-gradient(circle,rgba(0,168,255,.07),transparent 70%); bottom:-150px; right:-100px; pointer-events:none }
.fcta-inner { text-align:center; position:relative; z-index:1 }
.fcta-btns { display:flex; flex-wrap:wrap; gap:1rem; justify-content:center; margin-bottom:2rem }
.fcta-trust { display:flex; flex-wrap:wrap; justify-content:center; gap:1.5rem; font-family:var(--font-d); font-size:.82rem; font-weight:600; color:var(--text-faint) }

/* ══════════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════════ */
.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) }
/* ══════════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════════ */
@media (max-width:1100px) {
  .bc-hero-inner { grid-template-columns:1fr }
  .bc-visual-card { max-width:520px }
  .why-grid { grid-template-columns:repeat(2,1fr) }
  .programs-grid { grid-template-columns:repeat(2,1fr) }
  .metrics-grid { grid-template-columns:repeat(2,1fr) }
  .timeline-track { flex-wrap:wrap; gap:2rem }
  .tl-line { display:none }
  .tl-step { min-width:calc(50% - 1rem) }
}
@media (max-width:960px) {
  .faq-layout { grid-template-columns:1fr }
  .faq-left { position:static; margin-bottom:2rem }
}
@media (max-width:768px) {
  .section { padding:72px 0 }
  .why-grid { grid-template-columns:1fr }
  .programs-grid { grid-template-columns:1fr }
  .benefits-grid { grid-template-columns:repeat(2,1fr) }
  .metrics-grid { grid-template-columns:repeat(2,1fr) }
  .pricing-grid { grid-template-columns:1fr }
  .tcard { min-width:100% }
}
@media (max-width:480px) {
  .bc-hero-title { font-size:2.6rem }
  .benefits-grid { grid-template-columns:1fr }
  .metrics-grid { grid-template-columns:repeat(2,1fr) }
}

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. */
