/* ================================================
   STYLES.CSS — Mission Green Shared Styles
   ================================================ */

/* ── CSS Variables ── */
:root {
  --g: #80D959;
  --gd: #5aaa32;
  --g10: rgba(128, 217, 89, .1);
  --g20: rgba(128, 217, 89, .2);
  --g30: rgba(128, 217, 89, .3);
  --bk: #060606;
  --d1: #0d0d0d;
  --d2: #141414;
  --d3: #1c1c1c;
  --d4: #242424;
  --fh: 'Syne', sans-serif;
  --fb: 'DM Sans', -apple-system, sans-serif;
  --ease: cubic-bezier(.22, .68, 0, 1.2);
  --ease2: cubic-bezier(.4, 0, .2, 1);
  --r8: 8px;
  --r12: 12px;
  --r16: 16px;
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--fb); background: var(--bk); color: #fff; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
button { font-family: var(--fb); cursor: pointer; border: none; background: none; }
img { display: block; max-width: 100%; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bk); }
::-webkit-scrollbar-thumb { background: var(--g); border-radius: 2px; }

/* ── Top Bar ── */
.top-bar {
  background: var(--d2);
  border-bottom: 1px solid rgba(255, 255, 255, .04);
  padding: 0 5%;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  color: rgba(255, 255, 255, .3);
}
.tb-left { letter-spacing: .5px; }
.tb-right { display: flex; align-items: center; gap: 18px; }
.tb-right a {
  color: rgba(255, 255, 255, .35);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color .2s;
  font-size: 11px;
}
.tb-right a:hover { color: var(--g); }
.tb-portal { padding: 3px 10px; border: 1px solid rgba(255, 255, 255, .08); border-radius: 4px; }
.tb-portal:hover { border-color: var(--g) !important; }

/* ── Navigation ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 5%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(6, 6, 6, .8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  transition: background .3s, box-shadow .3s, border-color .3s;
}
nav.scrolled { background: rgba(6, 6, 6, .97); box-shadow: 0 4px 30px rgba(0, 0, 0, .4); }
.nav-logo-a { display: flex; align-items: center; gap: 12px; }
.nav-logo-a img { height: 30px; width: auto; }
.nav-sep { width: .5px; height: 26px; background: rgba(255, 255, 255, .15); }
.nla { font-family: var(--fh); font-size: 13px; font-weight: 700; color: #fff; letter-spacing: -.2px; }
.nlb { font-size: 10px; color: rgba(255, 255, 255, .32); margin-top: 2px; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, .5);
  padding: 6px 10px;
  border-radius: 6px;
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: #fff; background: rgba(255, 255, 255, .06); }
.nav-links a.active { color: var(--g); }
.nav-ctas { display: flex; align-items: center; gap: 8px; }
.nav-cta-outline {
  padding: 8px 16px;
  border: 1px solid rgba(128, 217, 89, .3);
  color: var(--g);
  font-size: 12px;
  font-weight: 700;
  border-radius: 4px;
  transition: all .2s;
  white-space: nowrap;
}
.nav-cta-outline:hover { background: rgba(128, 217, 89, .08); border-color: var(--g); }
.nav-cta {
  padding: 8px 18px;
  background: var(--g);
  color: var(--bk);
  font-size: 12px;
  font-weight: 700;
  border-radius: 4px;
  transition: all .15s;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.nav-cta:hover { background: #95e46e; transform: translateY(-1px); }
.nav-cta::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, .15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width .5s, height .5s;
}
.nav-cta:hover::after { width: 300px; height: 300px; }
.nav-mob { display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; }
.nav-mob span { width: 22px; height: 1.5px; background: #fff; display: block; }

/* ── Mobile Menu ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(6, 6, 6, .98);
  display: none;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  padding: 90px 30px 40px;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.mobile-menu.open { display: flex; opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: var(--fh);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  transition: color .2s;
}
.mobile-menu a:hover { color: var(--g); }
.mob-section-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--g);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 16px;
  margin-bottom: -2px;
  width: 100%;
  text-align: center;
  opacity: .6;
}
.mob-section-label:first-of-type { margin-top: 0; }
.mob-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

/* ── Mega Menu ── */
.ni { position: relative; display: flex; align-items: center; }
.ni > a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, .5);
  padding: 6px 10px;
  border-radius: 6px;
  transition: color .2s, background .2s;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.ni > a:hover, .ni:hover > a { color: #fff; background: rgba(255, 255, 255, .06); }
.da { width: 10px; height: 10px; transition: transform .25s; flex-shrink: 0; }
.ni:hover .da { transform: rotate(180deg); }
.mm {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: rgba(12, 12, 12, .98);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 14px;
  padding: 28px 32px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s, transform .2s, visibility .2s;
  z-index: 1001;
  box-shadow: 0 32px 80px rgba(0, 0, 0, .55), 0 0 0 1px rgba(128, 217, 89, .03) inset;
}
.ni:hover .mm { opacity: 1; visibility: visible; pointer-events: all; transform: translateX(-50%) translateY(0); }
.mm-2col { display: grid; grid-template-columns: repeat(2, 170px); gap: 28px; min-width: 400px; }
.mm-3col { display: grid; grid-template-columns: repeat(3, 180px); gap: 28px; min-width: 600px; }
.mm-4col { display: grid; grid-template-columns: repeat(4, 170px); gap: 24px; min-width: 740px; }
.nav-link-plain { display: flex; align-items: center; white-space: nowrap; }
.mm-col h6 {
  font-family: var(--fh);
  font-size: 10px;
  font-weight: 700;
  color: var(--g);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(128, 217, 89, .1);
}
.mm-col ul { list-style: none; display: flex; flex-direction: column; gap: 5px; }
.mm-col ul li a {
  font-size: 12.5px;
  color: rgba(255, 255, 255, .4);
  transition: color .15s, padding-left .15s;
  display: block;
  padding: 3px 0;
}
.mm-col ul li a:hover { color: #fff; padding-left: 5px; }
.mm-feat {
  background: rgba(128, 217, 89, .04);
  border: 1px solid rgba(128, 217, 89, .1);
  border-radius: 10px;
  padding: 0;
  overflow: hidden;
}
.mm-feat-inner { padding: 22px 18px; display: flex; flex-direction: column; gap: 8px; height: 100%; }
.mm-feat-dark { background: linear-gradient(135deg, rgba(128, 217, 89, .06), rgba(128, 217, 89, .02)); }
.mm-feat-tag { font-family: var(--fh); font-size: 13px; font-weight: 700; color: #fff; letter-spacing: -.02em; }
.mm-feat p { font-size: 11.5px; color: rgba(255, 255, 255, .35); line-height: 1.7; }
.btn-sm {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  background: var(--g);
  color: var(--bk);
  font-size: 11px;
  font-weight: 700;
  border-radius: 4px;
  transition: all .15s;
  margin-top: auto;
  width: fit-content;
}
.btn-sm:hover { background: #95e46e; transform: translateY(-1px); }

/* ── Offers Strip ── */
.offers-strip {
  background: var(--g);
  overflow: hidden;
  padding: 0;
  height: 44px;
  display: flex;
  align-items: center;
}
.offers-inner {
  display: flex;
  gap: 64px;
  animation: marquee 32s linear infinite;
  white-space: nowrap;
  padding: 0 32px;
}
.offers-inner span {
  font-size: 12px;
  font-weight: 700;
  color: var(--bk);
  letter-spacing: .5px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.offers-inner span::before { content: '\2726'; }

/* ── Section Typography ── */
section { padding: 100px 5%; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--g);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .5s var(--ease2), transform .5s var(--ease2);
}
.section-label::before {
  content: '';
  width: 16px;
  height: 1.5px;
  background: var(--g);
  transform-origin: left;
  animation: line-grow .6s var(--ease2) both;
}
.section-label.visible { opacity: 1; transform: none; }
.section-h2 {
  font-family: var(--fh);
  font-size: clamp(28px, 4vw, 54px);
  font-weight: 800;
  color: #fff;
  line-height: 1.02;
  letter-spacing: -.04em;
  margin-bottom: 14px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .5s var(--ease2) .1s, transform .5s var(--ease2) .1s;
}
.section-h2.visible { opacity: 1; transform: none; }
.section-h2 .g { color: var(--g); }
.section-sub {
  font-size: clamp(14px, 1.2vw, 16px);
  color: rgba(255, 255, 255, .4);
  line-height: 1.9;
  max-width: 560px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .5s var(--ease2) .2s, transform .5s var(--ease2) .2s;
}
.section-sub.visible { opacity: 1; transform: none; }

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 28px;
  background: var(--g);
  color: var(--bk);
  font-size: 14px;
  font-weight: 700;
  border-radius: 4px;
  transition: background .2s, transform .2s, box-shadow .2s;
  background-image: linear-gradient(110deg, var(--g) 0%, var(--g) 40%, #a8f080 50%, var(--g) 60%, var(--g) 100%);
  background-size: 200% 100%;
}
.btn-primary:hover {
  background: #95e46e;
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(128, 217, 89, .28);
  animation: shimmer 1.2s ease-in-out;
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 28px;
  border: 1px solid rgba(255, 255, 255, .14);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  transition: all .2s;
}
.btn-secondary:hover { border-color: rgba(255, 255, 255, .3); background: rgba(255, 255, 255, .04); transform: translateY(-2px); }
.btn-ghost { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--g); transition: gap .2s; }
.btn-ghost:hover { gap: 12px; }
.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 30px;
  background: var(--bk);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 4px;
  transition: background .2s, transform .2s;
}
.btn-dark:hover { background: #1a1a1a; transform: translateY(-2px); }
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Page Hero ── */
.page-hero {
  position: relative;
  padding: 180px 5% 100px;
  overflow: hidden;
}
.phbg { position: absolute; inset: 0; }
.phbg-g1 {
  position: absolute;
  width: 600px;
  height: 600px;
  top: -15%;
  right: -8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(128, 217, 89, .13), transparent 70%);
  filter: blur(90px);
}
.phbg-g2 {
  position: absolute;
  width: 300px;
  height: 300px;
  bottom: -5%;
  left: -5%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(128, 217, 89, .07), transparent 70%);
  filter: blur(70px);
}
.phbg-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .02) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}
.ph-content { position: relative; z-index: 2; max-width: 780px; }
.ph-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid var(--g30);
  border-radius: 100px;
  margin-bottom: 24px;
  background: rgba(128, 217, 89, .05);
}
.ph-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--g); animation: pulse 2s ease-in-out infinite; }
.ph-badge span { font-size: 12px; font-weight: 600; color: var(--g); letter-spacing: .5px; }
.ph-content h1 {
  font-family: var(--fh);
  font-size: clamp(40px, 6vw, 84px);
  font-weight: 800;
  color: #fff;
  line-height: .95;
  letter-spacing: -.045em;
  margin-bottom: 22px;
}
.ph-content h1 .g { color: var(--g); }
.ph-content h1 .outline { -webkit-text-stroke: 1.5px rgba(255, 255, 255, .2); color: transparent; }
.ph-content > p {
  font-size: clamp(15px, 1.4vw, 17px);
  color: rgba(255, 255, 255, .42);
  line-height: 1.9;
  max-width: 540px;
  margin-bottom: 32px;
}

/* ── Cards ── */
.card-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 52px; }
.card-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 52px; }
.card-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 52px; }
.card {
  background: var(--d2);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: var(--r12);
  padding: 32px 28px;
  transition: transform .35s var(--ease), border-color .3s, box-shadow .35s var(--ease), background .3s;
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(128, 217, 89, .2);
  background: var(--d3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .3), 0 0 30px rgba(128, 217, 89, .08);
}
.card-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: var(--g10);
  border: 1px solid var(--g20);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.card-icon svg { width: 21px; height: 21px; }
.card:hover .card-icon { animation: float-y 2s ease-in-out infinite; }
.card h3 { font-family: var(--fh); font-size: 17px; font-weight: 700; color: #fff; letter-spacing: -.03em; margin-bottom: 10px; }
.card p { font-size: 13px; color: rgba(255, 255, 255, .4); line-height: 1.8; }
.card-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 18px;
  padding: 5px 12px;
  background: var(--g10);
  border: 1px solid rgba(128, 217, 89, .15);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  color: var(--g);
  letter-spacing: .5px;
}
.card-pill {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  background: rgba(128, 217, 89, .08);
  border: 1px solid var(--g20);
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  color: var(--g);
  letter-spacing: .8px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* ── Stats Row ── */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 52px; }
.stat-box { padding: 38px 28px; background: var(--d2); text-align: center; border-top: 2px solid transparent; transition: border-color .3s, background .3s; }
.stat-box:hover { border-color: var(--g); background: var(--d3); }
.stat-num { font-family: var(--fh); font-size: 40px; font-weight: 800; color: var(--g); letter-spacing: -.04em; line-height: 1; }
.stat-lbl { font-size: 12px; color: rgba(255, 255, 255, .32); margin-top: 8px; line-height: 1.6; }

/* ── Feature Row ── */
.feat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding: 72px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}
.feat-row:last-child { border-bottom: none; }
.feat-visual {
  background: var(--d2);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: var(--r16);
  padding: 44px;
  position: relative;
  overflow: hidden;
}
.feat-visual::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(128, 217, 89, .08), transparent 65%);
  pointer-events: none;
}
.feat-content h3 {
  font-family: var(--fh);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.04em;
  line-height: 1.05;
  margin-bottom: 14px;
}
.feat-content h3 .g { color: var(--g); }
.feat-content > p { font-size: 15px; color: rgba(255, 255, 255, .4); line-height: 1.9; margin-bottom: 24px; }
.feat-list { display: flex; flex-direction: column; gap: 11px; margin-bottom: 28px; }
.fli { display: flex; align-items: flex-start; gap: 12px; }
.fli-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--g10);
  border: 1px solid var(--g20);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.fli-dot svg { width: 10px; height: 10px; }
.fli-txt { font-size: 14px; font-weight: 500; color: rgba(255, 255, 255, .62); line-height: 1.6; }

/* ── Bar Chart ── */
.bar-chart { display: flex; flex-direction: column; gap: 14px; }
.bci-hdr { display: flex; justify-content: space-between; margin-bottom: 6px; }
.bci-lbl { font-size: 12px; color: rgba(255, 255, 255, .42); }
.bci-val { font-size: 12px; font-weight: 600; color: var(--g); }
.bci-track { height: 5px; background: rgba(255, 255, 255, .07); border-radius: 999px; overflow: hidden; }
.bci-fill { height: 100%; background: linear-gradient(90deg, #5aaa32, #80D959); border-radius: 999px; }

/* ── Specs Table ── */
.specs-table { width: 100%; border-collapse: collapse; margin-top: 24px; }
.specs-table th {
  background: rgba(128, 217, 89, .08);
  border: 1px solid rgba(128, 217, 89, .12);
  padding: 12px 18px;
  font-size: 11px;
  font-weight: 700;
  color: var(--g);
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: left;
}
.specs-table td {
  border: 1px solid rgba(255, 255, 255, .06);
  padding: 12px 18px;
  font-size: 13px;
  color: rgba(255, 255, 255, .58);
  line-height: 1.6;
}
.specs-table tr:hover td { background: rgba(255, 255, 255, .02); }
.specs-table td:first-child { color: rgba(255, 255, 255, .82); font-weight: 500; }
.specs-table td.hi { color: var(--g); font-weight: 600; }

/* ── Steps ── */
.steps { display: flex; flex-direction: column; }
.steps-grid { display: flex; flex-direction: column; }
.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  grid-template-rows: auto auto;
  gap: 0 28px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}
.step:last-child { border-bottom: none; }
.step-num {
  grid-row: 1 / -1;
  font-family: var(--fh);
  font-size: 52px;
  font-weight: 800;
  color: rgba(128, 217, 89, .12);
  letter-spacing: -.04em;
  line-height: 1;
  text-align: right;
  padding-right: 16px;
  border-right: 2px solid rgba(128, 217, 89, .12);
  align-self: start;
  padding-top: 4px;
}
.step h3, .step h4 { font-family: var(--fh); font-size: 18px; font-weight: 700; color: #fff; letter-spacing: -.03em; margin-bottom: 8px; }
.step p { font-size: 14px; color: rgba(255, 255, 255, .42); line-height: 1.85; }

/* ── Case Study Cards ── */
.cs-card {
  background: var(--d2);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: var(--r12);
  overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s;
}
.cs-card:hover { transform: translateY(-4px); border-color: rgba(128, 217, 89, .2); }
.cs-head { background: linear-gradient(135deg, var(--d3), var(--d4)); padding: 28px; border-bottom: 1px solid rgba(255, 255, 255, .05); }
.cs-head-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.cs-loc { font-size: 10px; font-weight: 700; color: var(--g); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 8px; }
.cs-name { font-family: var(--fh); font-size: 18px; font-weight: 700; color: #fff; letter-spacing: -.03em; }
.cs-sys { font-size: 12px; color: rgba(255, 255, 255, .32); margin-top: 4px; }
.cs-saving { font-family: var(--fh); font-size: 30px; font-weight: 800; color: var(--g); letter-spacing: -.04em; text-align: right; }
.cs-saving-lbl { font-size: 10px; color: rgba(255, 255, 255, .28); text-align: right; margin-top: 2px; }
.cs-body { padding: 24px 28px; }
.cs-stat-row { display: flex; gap: 20px; margin-bottom: 16px; }
.cs-stat-val { font-family: var(--fh); font-size: 20px; font-weight: 800; color: #fff; letter-spacing: -.04em; }
.cs-stat-lbl { font-size: 11px; color: rgba(255, 255, 255, .28); margin-top: 3px; }
.cs-quote {
  font-size: 13px;
  color: rgba(255, 255, 255, .4);
  line-height: 1.75;
  font-style: italic;
  border-left: 2px solid var(--g30);
  padding-left: 14px;
}

/* ── Partners ── */
.partner-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 2px; margin-top: 40px; }
.partner-box { padding: 28px 20px; background: var(--d2); display: flex; align-items: center; justify-content: center; transition: background .2s; }
.partner-box:hover { background: var(--d3); }
.partner-name { font-family: var(--fh); font-size: 14px; font-weight: 700; color: rgba(255, 255, 255, .3); text-align: center; transition: color .2s; letter-spacing: -.02em; }
.partner-box:hover .partner-name { color: rgba(255, 255, 255, .6); }

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid rgba(255, 255, 255, .07); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  text-align: left;
  cursor: pointer;
  transition: color .2s, padding .2s;
}
.faq-q:hover { color: var(--g); }
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  line-height: 1;
  transition: transform .3s, background .2s, border-color .2s;
}
.faq-q.open .faq-icon { background: var(--g10); border-color: var(--g30); transform: rotate(45deg); }
.faq-a {
  font-size: 14px;
  color: rgba(255, 255, 255, .42);
  line-height: 1.9;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease2), padding .3s;
}
.faq-a.open { max-height: 600px; padding-bottom: 24px; }

/* ── Blog Cards ── */
.blog-card {
  background: var(--d2);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: var(--r12);
  overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s;
}
.blog-card:hover { transform: translateY(-4px); border-color: rgba(128, 217, 89, .2); }
.blog-img {
  height: 170px;
  background: linear-gradient(135deg, var(--d3), var(--d4));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  opacity: .18;
}
.blog-body { padding: 24px; }
.blog-cat { font-size: 10px; font-weight: 700; color: var(--g); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 10px; }
.blog-card h4 { font-family: var(--fh); font-size: 16px; font-weight: 700; color: #fff; letter-spacing: -.03em; line-height: 1.35; margin-bottom: 10px; }
.blog-card p { font-size: 13px; color: rgba(255, 255, 255, .38); line-height: 1.75; }
.blog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, .06);
}
.blog-date { font-size: 11px; color: rgba(255, 255, 255, .22); }

/* ── CTA Band ── */
.cta-band { background: var(--g); padding: 80px 5%; text-align: center; }
.cta-band h2 { font-family: var(--fh); font-size: clamp(26px, 4vw, 50px); font-weight: 800; color: var(--bk); letter-spacing: -.04em; margin-bottom: 14px; }
.cta-band p { font-size: 16px; color: rgba(0, 0, 0, .5); margin-bottom: 28px; max-width: 520px; margin-left: auto; margin-right: auto; }

/* ── Forms ── */
.form-wrap { background: var(--d2); border: 1px solid rgba(255, 255, 255, .07); border-radius: var(--r16); padding: 44px; }
.fg { margin-bottom: 18px; }
.fg label { display: block; font-size: 11px; font-weight: 700; color: rgba(255, 255, 255, .3); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; }
.fg input, .fg select, .fg textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--d3);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: var(--r8);
  color: #fff;
  font-family: var(--fb);
  font-size: 14px;
  outline: none;
  transition: border-color .2s;
  -webkit-appearance: none;
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--g30); }
.fg input::placeholder, .fg textarea::placeholder { color: rgba(255, 255, 255, .18); }
.fg select option { background: var(--d3); }
.fg textarea { resize: vertical; min-height: 120px; }
.form-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-submit {
  width: 100%;
  padding: 15px;
  background: var(--g);
  color: var(--bk);
  font-family: var(--fb);
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--r8);
  cursor: pointer;
  border: none;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.form-submit:hover { background: #95e46e; transform: translateY(-1px); box-shadow: 0 12px 32px rgba(128, 217, 89, .22); }
.form-legal { font-size: 11px; color: rgba(255, 255, 255, .2); line-height: 1.7; margin-top: 10px; }

/* ── Footer ── */
footer { background: var(--d1); border-top: 1px solid rgba(255, 255, 255, .06); padding: 64px 5% 36px; position: relative; overflow: hidden; }
footer::before { content: ''; position: absolute; top: 0; left: 50%; width: 80%; height: 1px; transform: translateX(-50%); background: linear-gradient(90deg, transparent, var(--g30), transparent); }
.ft-top { display: grid; grid-template-columns: 2fr repeat(5, 1fr); gap: 36px; margin-bottom: 52px; }
.ft-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.ft-logo img { height: 26px; }
.ft-brand p { font-size: 13px; color: rgba(255, 255, 255, .28); line-height: 1.85; max-width: 240px; }
.ft-contact { font-size: 12px; color: rgba(255, 255, 255, .2); margin-top: 12px; line-height: 1.9; }
.ft-col h5 { font-size: 10px; font-weight: 700; color: rgba(255, 255, 255, .22); letter-spacing: 1.2px; text-transform: uppercase; margin-bottom: 16px; }
.ft-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.ft-col ul li a { font-size: 13px; color: rgba(255, 255, 255, .38); transition: color .2s; }
.ft-col ul li a:hover { color: var(--g); }
.ft-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .05);
  font-size: 11px;
  color: rgba(255, 255, 255, .2);
}
.ft-bottom a { color: rgba(255, 255, 255, .26); transition: color .2s; }
.ft-bottom a:hover { color: var(--g); }
.ft-badges { display: flex; gap: 8px; margin-top: 14px; flex-wrap: wrap; }
.ft-badge { padding: 4px 10px; border: 1px solid rgba(128, 217, 89, .2); border-radius: 100px; font-size: 10px; font-weight: 600; color: var(--g); letter-spacing: .5px; }
.ft-social { display: flex; gap: 8px; margin-top: 14px; }
.ft-social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .07);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}
.ft-social a:hover { background: var(--g); border-color: var(--g); }
.ft-social a svg { width: 13px; height: 13px; fill: rgba(255, 255, 255, .35); transition: fill .2s; }
.ft-social a:hover svg { fill: var(--bk); }

/* ── Social Float ── */
.social-float {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 998;
  display: flex;
  flex-direction: column;
}
.social-float a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(14, 14, 14, .94);
  border-left: 1px solid rgba(255, 255, 255, .05);
  border-top: 1px solid rgba(255, 255, 255, .05);
  transition: background .2s;
}
.social-float a:first-child { border-radius: 8px 0 0 0; }
.social-float a:last-child { border-radius: 0 0 0 8px; }
.social-float a:hover { background: var(--g); }
.social-float a svg { width: 14px; height: 14px; fill: rgba(255, 255, 255, .45); transition: fill .2s; }
.social-float a:hover svg { fill: var(--bk); }

/* ── Animations & Keyframes ── */
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
@keyframes float-y { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes glow-pulse { 0%, 100% { box-shadow: 0 0 20px rgba(128, 217, 89, .15); } 50% { box-shadow: 0 0 40px rgba(128, 217, 89, .3); } }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(128, 217, 89, .4); } 50% { box-shadow: 0 0 0 6px rgba(128, 217, 89, 0); } }
@keyframes counter-up { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
@keyframes line-grow { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes text-gradient { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
@keyframes particle-float { 0% { transform: translateY(0) translateX(0); opacity: 0; } 10% { opacity: .6; } 90% { opacity: .6; } 100% { transform: translateY(-120px) translateX(30px); opacity: 0; } }
.hero-glow-text {
  background: linear-gradient(135deg, #fff 0%, #80D959 50%, #fff 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: text-gradient 6s ease-in-out infinite;
}
.stat-num.visible { animation: counter-up .6s var(--ease2) both; }

/* ── Scroll Reveal ── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .65s var(--ease2), transform .65s var(--ease2); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity .7s var(--ease2), transform .7s var(--ease2); }
.reveal-left.visible { opacity: 1; transform: none; }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity .7s var(--ease2), transform .7s var(--ease2); }
.reveal-right.visible { opacity: 1; transform: none; }
.reveal-scale { opacity: 0; transform: scale(.92); transition: opacity .6s var(--ease2), transform .6s var(--ease2); }
.reveal-scale.visible { opacity: 1; transform: none; }
.reveal-rotate { opacity: 0; transform: translateY(20px) rotate(-2deg); transition: opacity .65s var(--ease2), transform .65s var(--ease2); }
.reveal-rotate.visible { opacity: 1; transform: none; }
.stagger-1 { transition-delay: .08s; }
.stagger-2 { transition-delay: .16s; }
.stagger-3 { transition-delay: .24s; }
.stagger-4 { transition-delay: .32s; }
.stagger-5 { transition-delay: .4s; }
.stagger-6 { transition-delay: .48s; }

/* ── Responsive ── */
@media (max-width: 1200px) {
  .ft-top { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

@media (max-width: 1100px) {
  .ft-top { grid-template-columns: 1fr 1fr 1fr; }
  .card-grid-4 { grid-template-columns: 1fr 1fr; }
  .partner-grid { grid-template-columns: repeat(3, 1fr); }
  .nav-cta-outline { display: none; }
}

@media (max-width: 1024px) {
  .card-grid-3 { grid-template-columns: 1fr 1fr; }
  .feat-row { grid-template-columns: 1fr; gap: 40px; }
  .stats-row { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .ft-top { grid-template-columns: 1fr 1fr 1fr; }
  .page-hero { padding-top: 140px; }
}

@media (max-width: 768px) {
  section { padding: 72px 5%; }
  .nav-links { display: none; }
  .nav-ctas { display: none; }
  .nav-mob { display: flex; }
  .card-grid-3, .card-grid-2, .card-grid-4 { grid-template-columns: 1fr; }
  .ft-top { grid-template-columns: 1fr; }
  .form-row2 { grid-template-columns: 1fr; }
  .page-hero { padding: 120px 5% 60px; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .partner-grid { grid-template-columns: repeat(2, 1fr); }
  .social-float { display: none; }
  .mm { display: none; }
}

@media (max-width: 600px) {
  .ft-top { grid-template-columns: 1fr; }
}
