/* ============================================================
   DALAXI — style.css  v2
   Brand: #36187A · #090909 · #ffffff · #1b05bc
   Font:  Poppins (Azonix substitute via weight 900)
   ============================================================ */

/* ─── RESET & VARIABLES ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #090909;
  --bg2:       #0d0720;
  --bg3:       #110830;
  --surface:   #130a2a;
  --surface2:  #1a0e38;
  --border:    rgba(168,85,247,0.15);
  --border2:   rgba(255,255,255,0.06);

  /* Brand palette */
  --purple:    #36187a;
  --purple-lt: #7c3aed;
  --purple-xs: #a855f7;
  --blue:      #1b05bc;
  --white:     #ffffff;

  /* Semantic */
  --accent:    #a855f7;   /* primary interactive accent */
  --accent2:   #7c3aed;   /* deeper purple */
  --accent3:   #1b05bc;   /* electric blue */
  --text:      #e2d9f3;
  --muted:     #8b7aaa;

  --font:      'Poppins', sans-serif;
  --radius:    12px;
  --radius-lg: 20px;
  --ease:      cubic-bezier(0.4, 0, 0.2, 1);
  --t:         0.3s var(--ease);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--purple); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* ─── NAV ───────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  padding: 0 40px;
  height: 72px;
  background: rgba(9, 9, 9, 0.80);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(168,85,247,0.1);
  transition: var(--t);
}

.nav.scrolled {
  background: rgba(9, 9, 9, 0.97);
  box-shadow: 0 4px 40px rgba(54, 24, 122, 0.3);
  border-bottom-color: rgba(168,85,247,0.2);
}

/* Logo SVG */
.nav-logo { flex-shrink: 0; display: flex; align-items: center; }
.logo-svg { height: 38px; width: auto; }

.nav-links {
  display: flex;
  gap: 30px;
  margin-left: auto;
  margin-right: 28px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(226,217,243,0.65);
  transition: color var(--t);
  letter-spacing: 0.2px;
}
.nav-links a:hover { color: var(--white); }

.nav-cta {
  flex-shrink: 0;
  padding: 9px 22px;
  background: linear-gradient(135deg, var(--purple) 0%, var(--blue) 100%);
  border: 1px solid rgba(168,85,247,0.4);
  border-radius: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.3px;
  transition: var(--t);
  box-shadow: 0 0 20px rgba(54,24,122,0.4);
}
.nav-cta:hover {
  background: linear-gradient(135deg, var(--purple-lt) 0%, var(--blue) 100%);
  box-shadow: 0 0 30px rgba(124,58,237,0.5);
  transform: translateY(-1px);
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--t);
}

/* ─── MOBILE MENU ───────────────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  z-index: 99;
  background: rgba(9,9,9,0.98);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px 28px;
  transform: translateY(-110%);
  opacity: 0;
  transition: transform var(--t), opacity var(--t);
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu ul { display: flex; flex-direction: column; gap: 2px; }
.mobile-menu a {
  display: block;
  padding: 13px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  border-bottom: 1px solid var(--border2);
  transition: color var(--t);
}
.mobile-menu a:hover { color: var(--accent); }

/* ─── BUTTONS ───────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  background: linear-gradient(135deg, var(--purple) 0%, var(--blue) 100%);
  border: 1px solid rgba(168,85,247,0.35);
  color: var(--white);
  font-family: var(--font);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.3px;
  border-radius: 8px;
  transition: var(--t);
  box-shadow: 0 4px 20px rgba(54,24,122,0.4);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--purple-lt) 0%, var(--blue) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(124,58,237,0.5);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  color: var(--text);
  font-weight: 500;
  font-size: 14px;
  border-radius: 8px;
  transition: color var(--t);
}
.btn-ghost:hover { color: var(--accent); }
.btn-ghost .arrow { transition: transform var(--t); }
.btn-ghost:hover .arrow { transform: translateX(5px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: border-color var(--t), color var(--t), box-shadow var(--t);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 20px rgba(168,85,247,0.15);
}

/* ─── SECTION TAGS & HEADERS ────────────────────────────── */
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.75;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header .section-sub { margin: 0 auto; }

/* ─── HERO ──────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 32px 64px;
  overflow: hidden;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-mesh {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

/* Floating atmosphere orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(54,24,122,0.45) 0%, transparent 70%);
  top: -200px; right: -150px;
  animation: orbFloat 10s ease-in-out infinite;
}
.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(27,5,188,0.3) 0%, transparent 70%);
  bottom: -100px; left: -100px;
  animation: orbFloat 12s ease-in-out infinite reverse;
}
.orb-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(124,58,237,0.2) 0%, transparent 70%);
  top: 30%; left: calc(50% - 200px);
  animation: orbFloat3 8s ease-in-out infinite;
  animation-delay: -4s;
}

@keyframes orbFloat3 {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-35px) scale(1.04); }
}

@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-35px) scale(1.04); }
}

/* Hero content — CENTERED */
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  padding: 7px 18px;
  border: 1px solid rgba(168,85,247,0.25);
  border-radius: 100px;
  background: rgba(168,85,247,0.06);
  opacity: 0;
  animation: fadeUp 0.6s var(--ease) forwards 0.2s;
}

.dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(168,85,247,0.6); }
  50% { box-shadow: 0 0 0 5px rgba(168,85,247,0); }
}

.hero-title {
  font-family: var(--font);
  font-size: clamp(38px, 6.5vw, 78px);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.5px;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease) forwards 0.4s;
}

.hero-accent {
  /* The "Complexity." word — brand purple highlight */
  background: linear-gradient(135deg, var(--accent) 0%, #c084fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-accent-grad {
  /* "Intelligent Solutions." — subtle blue-purple gradient */
  background: linear-gradient(135deg, #c084fc 0%, #818cf8 50%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(15px, 1.6vw, 18px);
  color: rgba(226,217,243,0.65);
  max-width: 580px;
  line-height: 1.8;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease) forwards 0.55s;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease) forwards 0.7s;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── STATS BAR ─────────────────────────────────────────── */
.hero-stats-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 900px;
  margin-top: 64px;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease) forwards 0.9s;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  background: rgba(19,10,42,0.75);
  border: 1px solid rgba(168,85,247,0.2);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 28px 40px;
  box-shadow: 0 8px 40px rgba(54,24,122,0.3), inset 0 1px 0 rgba(255,255,255,0.06);
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
}

.stat-value-row {
  display: flex;
  align-items: baseline;
  gap: 2px;
  line-height: 1;
}

.stat-num {
  font-family: var(--font);
  font-size: 42px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -1px;
}

.stat-prefix,
.stat-plus {
  font-family: var(--font);
  font-size: 26px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.4px;
  text-align: center;
  white-space: nowrap;
}

.stat-div {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, transparent, rgba(168,85,247,0.3), transparent);
  flex-shrink: 0;
}

/* ─── TRUSTED BY ────────────────────────────────────────── */
.trusted {
  padding: 44px 0;
  border-top: 1px solid var(--border2);
  border-bottom: 1px solid var(--border2);
  overflow: hidden;
  background: var(--bg);
}

.trusted-label {
  text-align: center;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
  font-weight: 600;
}

.logo-track {
  overflow: hidden;
  position: relative;
}
.logo-track::before,
.logo-track::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 140px;
  z-index: 1;
  pointer-events: none;
}
.logo-track::before { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
.logo-track::after  { right: 0; background: linear-gradient(to left, var(--bg), transparent); }

.logo-inner {
  display: flex;
  gap: 64px;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}

.client-logo {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.18);
  white-space: nowrap;
  transition: color var(--t);
}
.client-logo:hover { color: rgba(255,255,255,0.45); }

@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── SOLUTIONS ─────────────────────────────────────────── */
.solutions { padding: 110px 0; background: var(--bg); }

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.sol-card {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
  cursor: default;
}

.sol-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(168,85,247,0.06), transparent 60%);
  opacity: 0;
  transition: opacity var(--t);
  pointer-events: none;
}

.sol-card:hover {
  transform: translateY(-5px);
  border-color: rgba(168,85,247,0.3);
  box-shadow: 0 20px 50px rgba(54,24,122,0.35);
}
.sol-card:hover::before { opacity: 1; }

.sol-card--accent {
  background: linear-gradient(145deg, rgba(54,24,122,0.4) 0%, rgba(27,5,188,0.2) 100%);
  border-color: rgba(168,85,247,0.25);
}

.sol-icon {
  width: 50px; height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(168,85,247,0.1);
  border: 1px solid rgba(168,85,247,0.2);
  font-family: var(--font);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--accent);
  margin-bottom: 20px;
}

.sol-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.35;
}
.sol-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.72;
  margin-bottom: 20px;
}

.sol-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.sol-tags span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(168,85,247,0.06);
  border: 1px solid rgba(168,85,247,0.15);
  color: rgba(168,85,247,0.8);
}

.solutions-cta { text-align: center; margin-top: 48px; }

/* ─── WHY DALAXI ────────────────────────────────────────── */
.why {
  padding: 110px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border2);
  border-bottom: 1px solid var(--border2);
  position: relative;
  overflow: hidden;
}
.why::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(54,24,122,0.25), transparent 70%);
  pointer-events: none;
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.why-desc {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 40px;
  font-size: 15px;
}

.why-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.metric {
  background: rgba(19,10,42,0.8);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  transition: var(--t);
}
.metric:hover { border-color: rgba(168,85,247,0.35); }

.metric-val {
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.metric-lbl {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}

.why-item {
  display: flex;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid var(--border2);
}
.why-item:first-child { padding-top: 4px; }
.why-item:last-child  { border-bottom: none; }

.why-num {
  font-size: 12px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.5;
  flex-shrink: 0;
  padding-top: 2px;
  letter-spacing: 1px;
}

.why-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 7px;
}
.why-item p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.68;
}

/* ─── INDUSTRIES ────────────────────────────────────────── */
.industries { padding: 110px 0; background: var(--bg); }

.ind-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

.ind-card {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--t);
  cursor: default;
}
.ind-card:hover {
  border-color: rgba(168,85,247,0.25);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(54,24,122,0.25);
}

.ind-icon { font-size: 28px; margin-bottom: 14px; }

.ind-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.ind-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.68;
}

.ind-more {
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  padding: 18px 24px;
  border: 1px dashed rgba(168,85,247,0.2);
  border-radius: var(--radius);
}
.ind-more strong { color: var(--text); }

/* ─── APPROACH ──────────────────────────────────────────── */
.approach {
  padding: 110px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border2);
  border-bottom: 1px solid var(--border2);
}

.phases {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.phase {
  flex: 1;
  min-width: 0;
  padding: 32px 24px;
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--t);
}
.phase:hover {
  border-color: rgba(168,85,247,0.3);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(54,24,122,0.3);
}

.phase-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple) 0%, var(--blue) 100%);
  color: var(--white);
  font-size: 20px;
  font-weight: 800;
  margin: 0 auto 18px;
  box-shadow: 0 4px 20px rgba(54,24,122,0.5);
}

.phase h4 {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: var(--accent);
  margin-bottom: 10px;
}
.phase p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}

.phase-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  color: var(--accent);
  font-size: 18px;
  opacity: 0.35;
  flex-shrink: 0;
  padding-top: 58px;
}

/* ─── PARTNERS ──────────────────────────────────────────── */
.partners {
  padding: 60px 0;
  border-bottom: 1px solid var(--border2);
  background: var(--bg);
}

.partners-label {
  text-align: center;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 32px;
  font-weight: 600;
}

.partners-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.partners-row span {
  font-size: 15px;
  font-weight: 700;
  color: rgba(255,255,255,0.18);
  letter-spacing: 1px;
  transition: color var(--t);
  cursor: default;
}
.partners-row span:hover { color: rgba(255,255,255,0.45); }

/* ─── CASE STUDY ────────────────────────────────────────── */
.casestudy { padding: 110px 0; background: var(--bg); }

.cs-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}

.cs-metric {
  text-align: center;
  padding: 36px 20px;
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  transition: var(--t);
}
.cs-metric:hover {
  border-color: rgba(168,85,247,0.3);
  box-shadow: 0 12px 36px rgba(54,24,122,0.25);
}

.cs-num {
  display: block;
  font-size: 46px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -1px;
}
.cs-lbl {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.cs-quote {
  text-align: center;
  max-width: 740px;
  margin: 0 auto;
  padding: 48px 52px;
  background: linear-gradient(135deg, rgba(54,24,122,0.2), rgba(27,5,188,0.12));
  border: 1px solid rgba(168,85,247,0.2);
  border-radius: var(--radius-lg);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}
.cs-quote p {
  font-size: clamp(16px, 2vw, 21px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.65;
  margin-bottom: 20px;
}
.cs-quote cite {
  font-size: 13px;
  color: var(--muted);
  font-style: normal;
}

/* ─── ABOUT ──────────────────────────────────────────────── */
.about {
  position: relative;
  padding: 120px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border2);
  overflow: hidden;
}

.about-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.about-orb {
  position: absolute;
  border-radius: 50%;
}

.about-orb-1 {
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(54,24,122,0.22) 0%, transparent 65%);
  top: -300px; right: -200px;
}

.about-orb-2 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(27,5,188,0.15) 0%, transparent 65%);
  bottom: -200px; left: -150px;
}

.about-grid-svg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  opacity: 0.6;
}

.about-inner {
  position: relative;
  z-index: 1;
}

/* ── Top: mission block ── */
.about-top {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 64px;
  align-items: flex-start;
  margin-bottom: 64px;
}

.about-tag-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding-top: 4px;
}

.about-orbit-icon {
  width: 80px; height: 80px;
  animation: aboutOrbitSpin 12s linear infinite;
  filter: drop-shadow(0 0 18px rgba(168,85,247,0.45));
}

@keyframes aboutOrbitSpin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.about-headline {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.about-headline-accent {
  background: linear-gradient(90deg, #a855f7 0%, #1b05bc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-mission-text {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 620px;
}

/* ── Divider ── */
.about-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(168,85,247,0.3), rgba(27,5,188,0.3), transparent);
  margin-bottom: 64px;
}

/* ── Mid: story + values ── */
.about-mid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  margin-bottom: 80px;
  align-items: flex-start;
}

.about-mid-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.about-story p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 16px;
}

.about-story em {
  color: var(--text);
  font-style: normal;
  font-weight: 500;
}

.about-founded-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.35);
  padding: 8px 16px;
  border: 1px solid var(--border2);
  border-radius: 100px;
}

.badge-dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(168,85,247,0.7);
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* ── Values ── */
.value-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.value-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  transition: border-color var(--t), box-shadow var(--t), background var(--t);
}

.value-item:hover {
  border-color: rgba(168,85,247,0.25);
  background: rgba(54,24,122,0.12);
  box-shadow: 0 8px 32px rgba(54,24,122,0.15);
}

.value-icon {
  flex-shrink: 0;
  width: 38px; height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: linear-gradient(135deg, rgba(168,85,247,0.15), rgba(27,5,188,0.1));
  border: 1px solid rgba(168,85,247,0.2);
  color: var(--accent);
}

.value-icon svg {
  width: 18px; height: 18px;
}

.value-item h5 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 5px;
}

.value-item p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── Team cards ── */
.about-team {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 20px 28px;
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  transition: var(--t);
  cursor: default;
}

.team-card:hover {
  border-color: rgba(168,85,247,0.3);
  box-shadow: 0 16px 48px rgba(54,24,122,0.25);
  transform: translateY(-4px);
}

.team-avatar {
  position: relative;
  width: 72px; height: 72px;
  margin-bottom: 18px;
}

.avatar-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid transparent;
  background: linear-gradient(135deg, #a855f7, #1b05bc) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  animation: avatarRingSpin 6s linear infinite;
}

@keyframes avatarRingSpin {
  to { transform: rotate(360deg); }
}

.avatar-initials {
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--surface2), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--accent);
}

.team-info h5 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.3;
}

.team-role {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* ─── CTA BANNER ────────────────────────────────────────── */
.cta-banner {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
  background: var(--bg2);
  border-top: 1px solid var(--border2);
}

.cta-bg { position: absolute; inset: 0; z-index: 0; }

.orb-cta-1 {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(54,24,122,0.4), transparent 70%);
  top: -200px; right: -100px;
}
.orb-cta-2 {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27,5,188,0.3), transparent 70%);
  bottom: -200px; left: -100px;
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-inner h2 {
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.cta-inner > p {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 40px;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.cta-note {
  font-size: 13px;
  color: var(--muted);
}

/* ─── FOOTER ────────────────────────────────────────────── */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border2);
  padding: 64px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border2);
}

.footer-logo {
  display: inline-block;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 3px;
  color: var(--white);
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 24px;
}

.footer-social { display: flex; gap: 12px; }
.footer-social a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  color: var(--muted);
  padding: 6px 12px;
  border: 1px solid var(--border2);
  border-radius: 5px;
  transition: var(--t);
}
.footer-social a:hover {
  color: var(--accent);
  border-color: var(--border);
}

.footer-col h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 13px;
  color: var(--muted);
  transition: color var(--t);
}
.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 13px; color: var(--muted); }

.footer-legal { display: flex; gap: 24px; }
.footer-legal a {
  font-size: 13px;
  color: var(--muted);
  transition: color var(--t);
}
.footer-legal a:hover { color: var(--text); }

/* ─── SCROLL REVEAL ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-top        { grid-template-columns: 1fr; gap: 32px; }
  .about-tag-col    { flex-direction: row; align-items: center; gap: 16px; }
  .about-mid        { grid-template-columns: 1fr; gap: 48px; }
  .about-team       { grid-template-columns: 1fr 1fr; }
  .solutions-grid { grid-template-columns: 1fr 1fr; }
  .ind-grid        { grid-template-columns: 1fr 1fr; }
  .cs-metrics      { grid-template-columns: 1fr 1fr; }
  .why-inner       { grid-template-columns: 1fr; gap: 52px; }
  .footer-top      { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand    { grid-column: 1 / -1; }
  .phases          { flex-wrap: wrap; gap: 12px; }
  .phase-arrow     { display: none; }
  .phase           { min-width: calc(50% - 8px); }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .mobile-menu { display: block; pointer-events: none; }
  .mobile-menu.open { pointer-events: all; }
  .nav { padding: 0 20px; }

  .hero { padding: 100px 20px 48px; }
  .hero-title { font-size: 38px; letter-spacing: -0.3px; }

  /* Stats: 2-column grid on tablet */
  .hero-stats-wrap { max-width: 100%; padding: 0 4px; }
  .hero-stats {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 0;
    padding: 20px;
  }
  .stat-div:nth-child(2) { display: none; } /* middle vertical divider */
  .stat-div:nth-child(4) {
    grid-column: 1 / -1;
    height: 1px;
    width: 100%;
    background: linear-gradient(to right, transparent, rgba(168,85,247,0.25), transparent);
  }
  .stat-div:nth-child(6) { display: none; }
  .stat { padding: 16px 8px; }
  .stat-num { font-size: 34px; }

  .about-team       { grid-template-columns: 1fr 1fr; }
  .solutions-grid { grid-template-columns: 1fr; }
  .ind-grid        { grid-template-columns: 1fr; }
  .cs-metrics      { grid-template-columns: 1fr 1fr; }
  .phases          { flex-direction: column; }
  .phase           { min-width: 100%; }
  .why-metrics     { grid-template-columns: 1fr 1fr; }
  .partners-row    { gap: 28px; }
  .footer-top      { grid-template-columns: 1fr 1fr; }
  .cs-quote        { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 32px; }
  .hero-stats {
    grid-template-columns: 1fr 1fr;
    padding: 16px;
  }
  .stat-num { font-size: 30px; }
  .stat-prefix, .stat-plus { font-size: 20px; }
  .cs-metrics { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; width: 100%; }
  .cta-actions a { width: 100%; text-align: center; justify-content: center; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
