/* ── Reset & Base ───────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Green brand */
  --g1: #0d6e3f;
  --g2: #00a84f;
  --g3: #00dd70;
  --g4: #00ff88;
  /* Blue accent */
  --b2: #1d5fcc;
  --b3: #60a5fa;
  /* Backgrounds */
  --bg:         #080d12;   /* hero + footer */
  --navy:       #0c1422;   /* stats, why, cta */
  --navy-2:     #0f1929;   /* services, reviews */
  --navy-border: rgba(96,165,250,.1);
  /* Surfaces */
  --surface:       rgba(255,255,255,0.04);
  --surface-hover: rgba(255,255,255,0.07);
  --border:  rgba(0,255,136,0.12);
  --text:       #e8f5ee;
  --text-muted: #8ba3b5;
  --radius:    16px;
  --radius-sm: 10px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── Scrollbar ──────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--g1); border-radius: 3px; }

/* ── Noise overlay ──────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  opacity: .02;
  pointer-events: none;
  z-index: 0;
}

/* ── Utility ────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

.gradient-text {
  background: linear-gradient(135deg, var(--g3) 0%, var(--g4) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--g3);
  background: rgba(0,221,112,.08);
  border: 1px solid rgba(0,221,112,.2);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--g3);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .4; transform: scale(.7); }
}

/* ── Nav ────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 24px;
  background: rgba(8,13,18,0);
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease;
}
nav.scrolled {
  background: rgba(8,13,18,.94);
  border-bottom: 1px solid rgba(0,255,136,.1);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
/* keep logo-grid hidden — now using img */
.logo-grid { display: none; }
.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 10px);
  grid-template-rows: repeat(4, 10px);
  gap: 2px;
}
.logo-grid span { border-radius: 2px; display: block; }
.logo-grid span:nth-child(1)  { grid-column:1; grid-row:1; background:var(--g1); }
.logo-grid span:nth-child(2)  { grid-column:1; grid-row:2; background:var(--g1); }
.logo-grid span:nth-child(3)  { grid-column:2; grid-row:2; background:var(--g2); }
.logo-grid span:nth-child(4)  { grid-column:1; grid-row:3; background:var(--g1); }
.logo-grid span:nth-child(5)  { grid-column:2; grid-row:3; background:var(--g2); }
.logo-grid span:nth-child(6)  { grid-column:3; grid-row:3; background:var(--g3); }
.logo-grid span:nth-child(7)  { grid-column:1; grid-row:4; background:var(--g1); }
.logo-grid span:nth-child(8)  { grid-column:2; grid-row:4; background:var(--g2); }
.logo-grid span:nth-child(9)  { grid-column:3; grid-row:4; background:var(--g3); }
.logo-grid span:nth-child(10) { grid-column:4; grid-row:4; background:var(--g4); }

.nav-logo-text {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.02em;
}
.nav-logo-text span { color: var(--g3); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  transition: color .2s;
}
.nav-links a:hover { color: var(--text); }

/* ── Nav Dropdown ───────────────────────────────── */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.nav-dropdown-arrow {
  transition: transform .2s;
  flex-shrink: 0;
}
.nav-dropdown.open .nav-dropdown-arrow { transform: rotate(180deg); }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 210px;
  background: rgba(8,13,18,.97);
  border: 1px solid rgba(0,255,136,.15);
  border-radius: 10px;
  list-style: none;
  padding: 6px;
  z-index: 200;
  box-shadow: 0 8px 32px rgba(0,0,0,.5);
}
.nav-dropdown.open .nav-dropdown-menu { display: block; }
.nav-dropdown-menu li a {
  display: block;
  padding: 10px 14px;
  border-radius: 7px;
  font-size: 13px;
  white-space: nowrap;
  transition: background .15s, color .15s;
}
.nav-dropdown-menu li a:hover {
  background: rgba(0,255,136,.08);
  color: var(--g3);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all .2s;
}
.btn-primary {
  background: linear-gradient(135deg, var(--g1) 0%, var(--g2) 100%);
  color: #fff;
  box-shadow: 0 0 24px rgba(0,168,79,.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 36px rgba(0,168,79,.5);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255,255,255,.12);
}
.btn-ghost:hover {
  background: var(--surface);
  border-color: rgba(0,255,136,.3);
  color: var(--g4);
}
.btn-lg { padding: 14px 32px; font-size: 15px; }

/* ── Language Switcher ──────────────────────────── */
.lang-switcher { display: flex; align-items: center; gap: 2px; }
.lang-btn { font-size: 11px; font-weight: 700; letter-spacing: 1px; color: var(--text-muted); text-decoration: none; padding: 4px 7px; border-radius: 5px; transition: color .2s, background .2s; }
.lang-btn:hover { color: var(--text); }
.lang-btn.lang-active { color: var(--g3); background: rgba(0,212,170,.08); }
.lang-sep { font-size: 11px; color: var(--text-muted); opacity: .4; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.hamburger span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-links.open {
  display: flex;
  flex-direction: column;
  position: fixed;
  inset: 70px 0 0 0;
  background: rgba(8,13,18,.97);
  align-items: center;
  justify-content: center;
  gap: 2rem;
  z-index: 99;
}
.nav-links.open a { font-size: 1.2rem; }
.nav-links.open .nav-dropdown { text-align: center; }
.nav-links.open .nav-dropdown-menu {
  position: static;
  transform: none;
  background: rgba(255,255,255,.04);
  border-color: rgba(0,255,136,.1);
  min-width: 0;
  margin-top: 6px;
  display: none;
}
.nav-links.open .nav-dropdown.open .nav-dropdown-menu { display: block; }

/* ── Hero ───────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 70px;
  overflow: hidden;
  background: var(--bg);
}
#hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 220px;
  background: linear-gradient(to bottom, transparent, var(--navy));
  pointer-events: none;
  z-index: 2;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-bg .orb { display: none; }
.hero-bg {
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(0,166,81,.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 60%, rgba(0,166,81,.06) 0%, transparent 70%);
}
.hero-bg .grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,255,136,.06);
  border: 1px solid rgba(0,255,136,.2);
  border-radius: 100px;
  padding: 6px 14px 6px 8px;
  font-size: 13px;
  color: var(--g4);
  margin-bottom: 28px;
}
.hero-badge-dot {
  background: var(--g4);
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--bg);
  font-weight: 700;
}
.hero-title {
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.03em;
  margin-bottom: 24px;
  color: var(--text);
}
.hero-title .line2 {
  background: linear-gradient(135deg, var(--g2) 0%, var(--g4) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-trust {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
}
.trust-item strong { color: var(--text); }
.trust-sep {
  color: rgba(122,154,134,.3);
  font-size: 16px;
  padding: 0 4px;
}
.trust-avatars { display: flex; }
.trust-avatars .av {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-left: -10px;
}
.trust-avatars .av:first-child { margin-left: 0; }
.av-1 { background: linear-gradient(135deg,#0d6e3f,#00a84f); }
.av-2 { background: linear-gradient(135deg,#00a84f,#00dd70); }
.av-3 { background: linear-gradient(135deg,#1a6b5c,#00dd70); }
.av-4 { background: linear-gradient(135deg,#0d4a2f,#00a84f); }
.trust-text { font-size: 13px; color: #7a9a86; }
.trust-text strong { color: var(--text); }
.trust-stars { color: #fbbf24; letter-spacing: 1px; font-size: 13px; }

/* ── Hero Visual ────────────────────────────────── */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.hero-card-stack {
  width: 380px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hcard {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 22px;
}
.hcard-main {
  background: rgba(13,110,63,.08);
  border-color: rgba(0,168,79,.22);
}
.hcard-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.hcard-stat {
  background: rgba(0,255,136,.05);
  border-color: rgba(0,255,136,.18);
  animation: float 5s ease-in-out infinite;
}
.hcard-badge {
  background: rgba(13,110,63,.1);
  border-color: rgba(0,168,79,.22);
  animation: float 5s ease-in-out infinite 1.2s;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-7px); }
}

.hcard-title { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 10px; }
.hcard-metric { font-size: 28px; font-weight: 800; color: var(--g4); letter-spacing: -.04em; }
.hcard-metric-label { font-size: 12px; color: var(--text-muted); margin-top: 4px; }
.hcard-icon { font-size: 26px; margin-bottom: 8px; }
.hcard-name { font-size: 14px; font-weight: 700; margin-bottom: 4px; color: var(--text); }
.hcard-desc { font-size: 12px; color: var(--text-muted); line-height: 1.5; }

.status-dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--g3);
  box-shadow: 0 0 6px var(--g3);
  animation: pulse-dot 2s infinite;
  margin-right: 5px;
  vertical-align: middle;
}

.tech-stack { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.tech-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(0,221,112,.08);
  border: 1px solid rgba(0,221,112,.15);
  color: var(--g3);
  letter-spacing: .03em;
}

/* ── Stats bar ──────────────────────────────────── */
#stats {
  padding: 48px 0;
  background: var(--navy);
}
.stats-card {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--navy-border);
  border-radius: 20px;
  overflow: hidden;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  text-align: center;
  padding: 36px 20px;
  border-right: 1px solid var(--navy-border);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -.04em;
  background: linear-gradient(135deg, var(--g2), var(--g4));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat-suffix { font-size: 24px; }
.stat-number--stars { display: flex; align-items: baseline; gap: 5px; justify-content: center; }
.stat-star { color: #fbbf24; font-size: 26px; line-height: 1; }
.stat-number--small { font-size: clamp(28px, 3.5vw, 38px); }
.stat-label { font-size: 13px; color: var(--text-muted); margin-top: 6px; }
.stat-sublabel { font-size: 11px; color: rgba(139,163,181,.45); margin-top: 2px; }

/* ── Services ───────────────────────────────────── */
#services {
  padding: 100px 0;
  background: var(--navy-2);
}
.section-head { text-align: center; margin-bottom: 64px; }
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: transform .25s, border-color .25s, background .25s;
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--g3), transparent);
  opacity: 0;
  transition: opacity .3s;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,221,112,.28);
  background: rgba(255,255,255,.05);
}
.service-card:hover::before { opacity: 1; }
.service-card.featured {
  background: linear-gradient(135deg, rgba(13,110,63,.15) 0%, rgba(0,168,79,.06) 100%);
  border-color: rgba(0,168,79,.28);
}
.service-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  background: rgba(0,168,79,.1);
  border: 1px solid rgba(0,168,79,.18);
}
.service-name { font-size: 18px; font-weight: 700; margin-bottom: 10px; letter-spacing: -.02em; }
.service-desc { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin-bottom: 20px; }
.service-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(0,221,112,.07);
  border: 1px solid rgba(0,221,112,.14);
  color: var(--g3);
}
.service-arrow {
  position: absolute;
  bottom: 24px; right: 24px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(0,221,112,.08);
  border: 1px solid rgba(0,221,112,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--g3);
  transition: all .2s;
}
.service-card:hover .service-arrow {
  background: var(--g2);
  border-color: var(--g2);
  color: #fff;
  transform: translate(2px,-2px);
}

/* ── Why us ─────────────────────────────────────── */
#why {
  padding: 100px 0;
  background: var(--navy);
  border-top: 1px solid var(--navy-border);
  border-bottom: 1px solid var(--navy-border);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}
.why-card {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--navy-border);
  border-radius: 14px;
  padding: 20px;
  transition: border-color .2s, background .2s;
}
.why-card:hover {
  border-color: rgba(0,221,112,.2);
  background: rgba(255,255,255,.05);
}
.why-card-icon { font-size: 22px; margin-bottom: 10px; line-height: 1; }
.why-card-title { font-size: 14px; font-weight: 700; margin-bottom: 6px; line-height: 1.3; }
.why-card-desc { font-size: 12px; color: var(--text-muted); line-height: 1.6; }

/* legacy – kept for fallback */
.why-list { display: flex; flex-direction: column; gap: 28px; margin-top: 40px; }
.why-item { display: flex; gap: 18px; align-items: flex-start; }
.why-check {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(0,168,79,.1);
  border: 1px solid rgba(0,168,79,.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--g3);
  font-size: 16px;
  margin-top: 2px;
}
.why-item-title { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.why-item-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

.why-visual { position: relative; }
.timeline { position: relative; padding-left: 28px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--g1), var(--g3), transparent);
}
.tl-item { position: relative; padding: 0 0 22px 24px; }
.tl-item::before {
  content: '';
  position: absolute;
  left: -5px; top: 6px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--g2);
  border: 2px solid var(--navy);
  box-shadow: 0 0 10px var(--g2);
}
.tl-year { font-size: 10px; font-weight: 700; color: var(--g3); letter-spacing: .1em; margin-bottom: 3px; }
.tl-title { font-size: 14px; font-weight: 700; }
.tl-desc { font-size: 13px; color: var(--text-muted); margin-top: 3px; }

/* ── Reviews ────────────────────────────────────── */
#reviews {
  padding: 100px 0;
  background: var(--navy-2);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}
.review-card {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform .25s, border-color .25s;
  display: flex;
  flex-direction: column;
}
.review-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0,221,112,.22);
}
.review-card:has(.platform-direct):hover {
  border-color: rgba(96,165,250,.22);
}
.review-stars { color: #fbbf24; font-size: 14px; letter-spacing: 2px; margin-bottom: 14px; }
.review-text { font-size: 14px; color: var(--text-muted); line-height: 1.7; flex: 1; }
.review-text strong { color: var(--text); }
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--navy-border);
}
.review-av {
  width: 38px; height: 38px;
  min-width: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
.ra1 { background: linear-gradient(135deg,#0d6e3f,#00a84f); }
.ra2 { background: linear-gradient(135deg,#1a3a6b,#2563eb); }
.ra3 { background: linear-gradient(135deg,#6b1a1a,#dc2626); }
.ra4 { background: linear-gradient(135deg,#3b1a6b,#7c3aed); }
.ra5 { background: linear-gradient(135deg,#1a4a3a,#00a84f); }
.ra6 { background: linear-gradient(135deg,#6b4a1a,#d97706); }
.review-name { font-size: 14px; font-weight: 600; }
.review-service { font-size: 12px; color: var(--text-muted); }
.review-platform {
  margin-left: auto;
  font-size: 11px;
  font-weight: 600;
  color: var(--g3);
  background: rgba(0,221,112,.08);
  border: 1px solid rgba(0,221,112,.15);
  padding: 3px 9px;
  border-radius: 100px;
}
.review-platform.platform-direct {
  color: var(--b3);
  background: rgba(29,95,204,.1);
  border-color: rgba(96,165,250,.2);
}

/* ── CTA ────────────────────────────────────────── */
#cta {
  padding: 100px 0;
  background: var(--navy);
  border-top: 1px solid var(--navy-border);
}
.cta-box {
  background: linear-gradient(135deg,
    rgba(13,110,63,.18) 0%,
    rgba(0,168,79,.06) 35%,
    rgba(29,95,204,.1) 70%,
    rgba(96,165,250,.04) 100%
  );
  border: 1px solid rgba(96,165,250,.15);
  border-radius: 24px;
  padding: 72px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(0,221,112,.05) 0%, transparent 60%);
  animation: rotate-glow 10s linear infinite;
}
@keyframes rotate-glow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.cta-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -.03em;
  margin-bottom: 16px;
  position: relative;
}
.cta-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.7;
  position: relative;
}
.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}
.cta-contact-row {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
}
.cta-contact-item a { color: var(--text-muted); text-decoration: none; transition: color .2s; }
.cta-contact-item a:hover { color: var(--g3); }
.contact-icon {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: rgba(96,165,250,.08);
  border: 1px solid rgba(96,165,250,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

/* ── Footer ─────────────────────────────────────── */
footer {
  padding: 60px 0 32px;
  background: var(--bg);
  border-top: 1px solid rgba(0,255,136,.08);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 16px 0 20px;
  max-width: 240px;
}
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 56px; height: 56px;
  border-radius: 12px;
  background: rgba(255,255,255,.05);
  flex-direction: column;
  gap: 4px;
  border: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  text-decoration: none;
  transition: transform .2s, background .2s, border-color .2s, color .2s;
  color: var(--text-muted);
}
.social-btn:hover { transform: translateY(-3px); }
.social-btn i { font-size: 16px; line-height: 1; }
.sb-label { font-size: 10px; font-weight: 600; letter-spacing: .03em; line-height: 1; }

/* Brand colors – resting state subtle, hover vivid */
.sb-mail   { color: #6ee7b7; }
.sb-mail:hover   { background: rgba(0,212,120,.15); border-color: rgba(0,212,120,.35); color: #00d478; }

.sb-discord { color: #818cf8; }
.sb-discord:hover { background: rgba(88,101,242,.18); border-color: rgba(88,101,242,.4); color: #5865f2; }

.sb-fiverr { color: #34d399; }
.sb-fiverr:hover { background: rgba(29,191,115,.18); border-color: rgba(29,191,115,.4); color: #1dbf73; }

.sb-linkedin { color: #60a5fa; }
.sb-linkedin:hover { background: rgba(10,102,194,.18); border-color: rgba(10,102,194,.4); color: #0a66c2; }
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  text-decoration: none;
  font-size: 14px;
  color: rgba(139,163,181,.65);
  transition: color .2s;
}
.footer-col ul a:hover { color: var(--g3); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(0,255,136,.07);
  font-size: 13px;
  color: rgba(139,163,181,.6);
}

/* ── Scroll animations ──────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible { opacity: 1; transform: none; }
.fade-up.delay-1 { transition-delay: .1s; }
.fade-up.delay-2 { transition-delay: .2s; }
.fade-up.delay-3 { transition-delay: .3s; }
.fade-up.delay-4 { transition-delay: .4s; }
.fade-up.delay-5 { transition-delay: .5s; }

.count-up { display: inline-block; }

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 900px) {
  .hero-content     { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual      { display: none; }
  .stats-grid       { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .services-grid    { grid-template-columns: 1fr; }
  .why-grid         { grid-template-columns: 1fr; gap: 40px; }
  .why-cards        { grid-template-columns: 1fr 1fr; }
  .reviews-grid     { grid-template-columns: 1fr; }
  .reviews-grid .review-card:nth-child(n+4) { display: none; }
  .footer-top       { grid-template-columns: 1fr 1fr; }
  .cta-box          { padding: 48px 28px; }
}
@media (max-width: 640px) {
  .nav-links  { display: none; }
  .hamburger  { display: flex; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
@media (min-width: 900px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid  { grid-template-columns: repeat(3, 1fr); }
}

/* ── Legal pages ────────────────────────────────── */
body.legal-page { background: var(--bg); }
.legal-main {
  min-height: 100vh;
  padding: 110px 0 80px;
}
.legal-wrap {
  max-width: 780px;
  margin: 0 auto;
}
.legal-header { margin-bottom: 48px; }
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 28px;
  transition: color .2s;
}
.legal-back:hover { color: var(--g3); }
.legal-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1.1;
  margin-bottom: 10px;
}
.legal-subtitle {
  font-size: 14px;
  color: var(--text-muted);
}
.legal-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.legal-section {
  padding: 32px 0;
  border-bottom: 1px solid var(--navy-border);
}
.legal-section:last-child { border-bottom: none; }
.legal-section h2 {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--text);
  margin-bottom: 14px;
}
.legal-section h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--g3);
  margin: 18px 0 8px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.legal-section p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 10px;
}
.legal-section p:last-child { margin-bottom: 0; }
.legal-section a {
  color: var(--g3);
  text-decoration: none;
}
.legal-section a:hover {
  text-decoration: underline;
  color: var(--g4);
}
.legal-section ul,
.legal-section ol {
  margin: 10px 0 14px 0;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.legal-section ul li,
.legal-section ol li {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  padding-left: 20px;
  position: relative;
}
.legal-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--g3);
}
.legal-section ol {
  counter-reset: legal-counter;
}
.legal-section ol li {
  counter-increment: legal-counter;
}
.legal-section ol li::before {
  content: counter(legal-counter) ".";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--g3);
}
.legal-address {
  font-size: 14px;
  font-style: normal;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 10px;
  padding: 14px 16px;
  border-left: 3px solid var(--g3);
  background: rgba(255,255,255,.03);
  border-radius: 0 6px 6px 0;
}

/* ── Logo image ─────────────────────────────────── */
.nav-logo-img {
  height: 36px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* ── Process section ────────────────────────────── */
#process {
  padding: 100px 0;
  background: var(--bg);
  border-top: 1px solid var(--navy-border);
}
.process-flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.process-visual {
  margin-top: 168px;
}
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 40px;
}
.step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 18px 20px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: background .25s, border-color .25s;
  cursor: default;
}
.step:hover {
  background: rgba(255,255,255,.03);
  border-color: var(--navy-border);
}
.step-num {
  min-width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--g1), var(--g2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.step h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.step p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

.process-visual {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--navy-border);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.process-visual::after {
  content: '';
  position: absolute;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,168,79,.08), transparent 70%);
  top: -60px; right: -60px;
  pointer-events: none;
}
.terminal {
  background: #080d12;
  border-radius: 10px;
  border: 1px solid var(--navy-border);
  overflow: hidden;
}
.terminal-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: rgba(255,255,255,.03);
  border-bottom: 1px solid var(--navy-border);
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-r { background: #ff5f57; }
.dot-y { background: #febc2e; }
.dot-g { background: #28c840; }
.terminal-body {
  padding: 20px;
  font-family: 'Courier New', monospace;
  font-size: 13px;
  line-height: 2;
}
.t-muted  { color: rgba(139,163,181,.5); }
.t-accent { color: var(--g3); }
.t-green  { color: #4ade80; }
.t-cyan   { color: var(--b3); }
.t-white  { color: var(--text); }
.git-log-line { display: flex; align-items: baseline; gap: 0; line-height: 1.8; }
.git-hash { color: #f59e0b; min-width: 58px; display: inline-block; }
.git-dim  { color: rgba(245,158,11,.35); }

@media (max-width: 900px) {
  .process-flex { grid-template-columns: 1fr; gap: 40px; }
}

/* ── Services v2 ────────────────────────────────── */
#services {
  padding: 100px 0;
  background: var(--navy-2);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr; } }

.service-card-v2 {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--navy-border);
  border-radius: 18px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: border-color .25s, box-shadow .25s, transform .25s;
  position: relative;
  overflow: hidden;
}
.service-card-v2:hover {
  border-color: rgba(0,221,112,.3);
  box-shadow: 0 16px 48px rgba(0,0,0,.3);
  transform: translateY(-3px);
}
.service-card-v2.featured-v2 {
  border-color: rgba(0,168,79,.35);
  background: linear-gradient(160deg, rgba(13,110,63,.14) 0%, rgba(0,168,79,.05) 100%);
}
.service-card-v2.featured-v2:hover {
  border-color: rgba(0,221,112,.5);
}

.sv2-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(0,168,79,.1);
  border: 1px solid rgba(0,168,79,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--g3);
  margin-bottom: 18px;
}
.sv2-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 14px;
  width: fit-content;
}
.badge-popular {
  background: rgba(0,221,112,.12);
  border: 1px solid rgba(0,221,112,.25);
  color: var(--g3);
}
.badge-hosting {
  background: rgba(96,165,250,.1);
  border: 1px solid rgba(96,165,250,.2);
  color: var(--b3);
}
.badge-auto {
  background: rgba(167,139,250,.1);
  border: 1px solid rgba(167,139,250,.2);
  color: #a78bfa;
}
.sv2-title {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.2;
  margin-bottom: 12px;
}
.sv2-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}
.sv2-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 28px;
  flex: 1;
}
.sv2-features li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: var(--text-muted);
}
.sv2-features li i {
  color: var(--g3);
  font-size: 13px;
  flex-shrink: 0;
}
.sv2-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 700;
  color: var(--g3);
  text-decoration: none;
  margin-top: auto;
  transition: gap .2s, color .2s;
}
.sv2-cta:hover { gap: 11px; color: var(--g4); }

.services-more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  background: rgba(255,255,255,.02);
  border: 1px solid var(--navy-border);
  border-radius: 14px;
  gap: 20px;
  flex-wrap: wrap;
}
.services-more-text {
  font-size: 14px;
  color: var(--text-muted);
}

/* ── Partners ───────────────────────────────────── */
#partners {
  padding: 80px 0;
  background: var(--navy);
  border-top: 1px solid var(--navy-border);
  border-bottom: 1px solid var(--navy-border);
}
.partners-head { text-align: center; margin-bottom: 36px; }
.partners-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 6px;
}
.partners-track-wrap {
  overflow: hidden;
  position: relative;
}
.partners-track-wrap::before,
.partners-track-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.partners-track-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--navy), transparent);
}
.partners-track-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--navy), transparent);
}
.partners-track {
  display: flex;
  gap: 20px;
  align-items: center;
  width: max-content;
  animation: marquee 32s linear infinite;
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.partners-track:hover { animation-play-state: paused; }
.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 80px;
  padding: 16px 24px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--navy-border);
  border-radius: 14px;
  flex-shrink: 0;
  transition: border-color .25s, background .25s, opacity .25s;
  cursor: default;
  opacity: .7;
}
.partner-logo:hover {
  border-color: rgba(0,221,112,.2);
  background: rgba(255,255,255,.06);
  opacity: 1;
}
.partner-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: grayscale(30%);
  transition: filter .25s;
}
.partner-logo:hover img { filter: grayscale(0%); }

/* ── FAQ ────────────────────────────────────────── */
#faq {
  padding: 100px 0;
  background: var(--navy-2);
  border-top: 1px solid var(--navy-border);
}
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid var(--navy-border);
  transition: border-color .2s;
}
.faq-item:first-child { border-top: 1px solid var(--navy-border); }
.faq-item.open { border-color: rgba(0,221,112,.2); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 4px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  user-select: none;
  transition: color .2s;
}
.faq-question:hover { color: var(--g3); }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(0,221,112,.08);
  border: 1px solid rgba(0,221,112,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--g3);
  flex-shrink: 0;
  transition: transform .3s, background .2s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: rgba(0,221,112,.15);
}
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height .55s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner {
  padding: 0 4px 22px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
}
.faq-answer-inner strong { color: var(--text); }

/* ── CTA redesign ───────────────────────────────── */
#cta {
  padding: 100px 0;
  background: var(--navy);
  border-top: 1px solid var(--navy-border);
}
.cta-wrap {
  position: relative;
  background: linear-gradient(135deg, rgba(13,110,63,.12) 0%, rgba(12,20,34,.8) 60%);
  border: 1px solid rgba(0,168,79,.25);
  border-radius: 24px;
  padding: 60px;
  overflow: hidden;
  transition: border-color .3s, box-shadow .3s;
}
@keyframes cta-arrive {
  0%   { border-color: rgba(0,168,79,.25); box-shadow: 0 0  0   0   rgba(0,221,112,0); }
  25%  { border-color: rgba(0,221,112,.8); box-shadow: 0 0 48px 12px rgba(0,221,112,.18); }
  60%  { border-color: rgba(0,221,112,.5); box-shadow: 0 0 28px  6px rgba(0,221,112,.10); }
  100% { border-color: rgba(0,168,79,.25); box-shadow: 0 0  0   0   rgba(0,221,112,0); }
}
.cta-wrap.cta-highlighted {
  animation: cta-arrive 1.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.cta-glow {
  position: absolute;
  width: 500px; height: 300px;
  top: -80px; left: -80px;
  background: radial-gradient(ellipse, rgba(0,168,79,.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: stretch;
}
@media (max-width: 900px) {
  .cta-inner { grid-template-columns: 1fr; gap: 40px; align-items: start; }
  .cta-wrap  { padding: 40px 28px; }
  .contact-form-wrap { height: auto; }
}
.cta-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.cta-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 400px;
}
.cta-trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cta-trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: var(--text-muted);
}
.cta-trust-item i { color: var(--g3); font-size: 13px; }

.cta-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cta-channel {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--navy-border);
  border-radius: 14px;
  text-decoration: none;
  color: var(--text);
  transition: border-color .2s, background .2s, transform .2s;
}
.cta-channel:hover {
  border-color: rgba(0,221,112,.3);
  background: rgba(255,255,255,.07);
  transform: translateX(4px);
}
.cta-ch-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(0,168,79,.12);
  border: 1px solid rgba(0,168,79,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--g3);
  flex-shrink: 0;
}
.cta-ch-discord {
  background: rgba(88,101,242,.15);
  border-color: rgba(88,101,242,.25);
  color: #818cf8;
}
.cta-ch-linkedin {
  background: rgba(10,102,194,.12);
  border-color: rgba(10,102,194,.25);
  color: #60a5fa;
}
.cta-ch-fiverr {
  background: rgba(26,182,91,.1);
  border-color: rgba(26,182,91,.2);
  color: #1ab65b;
}
.cta-ch-body { flex: 1; }
.cta-ch-title { font-size: 14px; font-weight: 700; }
.cta-ch-sub   { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.cta-ch-arrow {
  color: var(--text-muted);
  font-size: 12px;
  transition: transform .2s, color .2s;
}
.cta-channel:hover .cta-ch-arrow {
  transform: translateX(3px);
  color: var(--g3);
}
.cta-main-btn { margin-top: 4px; justify-content: center; }

/* ── Industries ─────────────────────────────────── */
#industries {
  padding: 100px 0;
  background: var(--navy);
  border-top: 1px solid var(--navy-border);
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1000px) { .industries-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .industries-grid { grid-template-columns: 1fr; } }

.industry-card {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--navy-border);
  border-radius: 14px;
  padding: 24px 20px;
  transition: border-color .2s, background .2s, transform .2s;
}
.industry-card:hover {
  border-color: rgba(0,221,112,.25);
  background: rgba(255,255,255,.05);
  transform: translateY(-2px);
}
.industry-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(0,168,79,.1);
  border: 1px solid rgba(0,168,79,.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--g3);
  font-size: 16px;
  margin-bottom: 14px;
}
.industry-card h4 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -.01em;
  margin-bottom: 8px;
}
.industry-card p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Industries show-more (mobile only) */
.industries-showmore {
  display: none;
  justify-content: center;
  margin-top: 24px;
}
@media (max-width: 900px) {
  .industries-showmore { display: flex; }
  .industry-card--extra { display: none; }
  .industry-card--extra.industries-expanded { display: block; }
}

/* ── References ─────────────────────────────────── */
#references {
  padding: 100px 0;
  background: var(--navy-2);
  border-top: 1px solid var(--navy-border);
}
.ref-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .ref-grid { grid-template-columns: 1fr; } }

.ref-card {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--navy-border);
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: border-color .2s, transform .2s;
}
.ref-card:hover {
  border-color: rgba(0,221,112,.25);
  transform: translateY(-3px);
}
.ref-header {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.ref-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(0,168,79,.1);
  border: 1px solid rgba(0,168,79,.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--g3);
  font-size: 18px;
  flex-shrink: 0;
}
.ref-meta { display: flex; gap: 6px; flex-wrap: wrap; }
.ref-tag {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 3px 8px;
  border-radius: 5px;
  background: rgba(0,221,112,.08);
  border: 1px solid rgba(0,221,112,.15);
  color: var(--g3);
}
.ref-title {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -.01em;
  line-height: 1.35;
  margin-top: 14px;
  margin-bottom: 12px;
}
.ref-challenge {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 8px;
}
.ref-solution {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}
.ref-challenge strong, .ref-solution strong { color: var(--text); font-weight: 600; }
.ref-results {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--navy-border);
}
.ref-result {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ref-result-num {
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -.03em;
  background: linear-gradient(135deg, var(--g2), var(--g4));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  min-width: 54px;
  text-align: right;
  flex-shrink: 0;
}
.ref-result-sep {
  width: 1px;
  height: 8px;
  background: rgba(139,163,181,.2);
  flex-shrink: 0;
}
.ref-result-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.3;
}

/* ── Process badges ─────────────────────────────── */
.process-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.proc-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  background: rgba(0,221,112,.07);
  border: 1px solid rgba(0,221,112,.15);
  color: var(--g3);
}

/* ── CTA person card ────────────────────────────── */
.cta-person {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--navy-border);
  border-radius: 14px;
  padding: 16px 20px;
  margin-bottom: 24px;
}
.cta-person-avatar {
  position: relative;
  width: 56px; height: 56px;
  flex-shrink: 0;
}
.cta-avatar-img {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(0,221,112,.3);
  display: block;
}
.cta-avatar-fallback {
  display: none;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--g1), var(--g3));
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  border: 2px solid rgba(0,221,112,.3);
}
.cta-person-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}
.cta-person-role {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.cta-person-status {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: var(--g3);
}

/* ── About photo (Why section) ──────────────────── */
.about-photo-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 32px;
  aspect-ratio: 16 / 7;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--navy-border);
}
.about-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(.85) saturate(.9);
  transition: filter .3s;
}
.about-photo-wrap:hover .about-photo-img { filter: brightness(.95) saturate(1); }
.about-photo-placeholder {
  display: none;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: rgba(0,221,112,.2);
  background: linear-gradient(135deg, rgba(0,168,79,.06) 0%, transparent 100%);
}
.about-photo-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(8,13,18,.82);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0,221,112,.25);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--g3);
}

/* ── CTA redesign (form layout) ─────────────────── */
#cta {
  padding: 100px 0;
  background: var(--navy);
  border-top: 1px solid var(--navy-border);
}
.cta-channels {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
}

/* Contact form */
.contact-form-wrap {
  height: 100%;
  box-sizing: border-box;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--navy-border);
  border-radius: 18px;
  padding: 32px;
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 600px) { .cf-row { grid-template-columns: 1fr; } }
.cf-field { display: flex; flex-direction: column; gap: 6px; }
.cf-field label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.cf-req { color: var(--g3); }
.cf-field input,
.cf-field select,
.cf-field textarea {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--navy-border);
  border-radius: 10px;
  padding: 11px 14px;
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
}
.cf-field input::placeholder,
.cf-field textarea::placeholder { color: rgba(139,163,181,.4); }
.cf-field input:focus,
.cf-field select:focus,
.cf-field textarea:focus {
  outline: none;
  border-color: rgba(0,221,112,.4);
  box-shadow: 0 0 0 3px rgba(0,221,112,.08);
}
.cf-field select { cursor: pointer; }
.cf-field select option { background: var(--navy); }
.cf-field textarea { resize: vertical; min-height: 110px; }
.cf-submit { width: 100%; justify-content: center; margin-top: 4px; }
.cf-privacy {
  font-size: 11px;
  color: rgba(139,163,181,.5);
  text-align: center;
  line-height: 1.5;
}
.cf-privacy a { color: var(--g3); text-decoration: none; }
.cf-privacy a:hover { text-decoration: underline; }
.form-success {
  text-align: center;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.form-success i { font-size: 40px; color: var(--g3); }
.form-success h3 { font-size: 20px; font-weight: 800; }
.form-success p  { font-size: 14px; color: var(--text-muted); }
.form-error-msg {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(239,68,68,.08);
  border: 1px solid rgba(239,68,68,.2);
  border-radius: 10px;
  font-size: 13px;
  color: #f87171;
  margin-bottom: 8px;
}
.cf-hidden { display: none !important; }
.cf-submit-spinner { display: flex; align-items: center; justify-content: center; }
.cf-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255,255,255,.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: cf-spin .7s linear infinite;
}
@keyframes cf-spin { to { transform: rotate(360deg); } }
