/* ===== ROOT VARIABLES ===== */
:root {
  --navy: #0a0f1e;
  --navy-2: #111827;
  --navy-3: #1a2440;
  --navy-4: #1e2d4d;
  --green: #f5a623;
  --green-2: #d4891a;
  --green-dim: rgba(245, 166, 35, 0.12);
  --green-glow: rgba(245, 166, 35, 0.25);
  --blue: #f5c842;
  --blue-dim: rgba(245, 200, 66, 0.1);
  --white: #ffffff;
  --white-80: rgba(255,255,255,0.8);
  --white-60: rgba(255,255,255,0.6);
  --white-20: rgba(255,255,255,0.2);
  --white-10: rgba(255,255,255,0.08);
  --border: rgba(245, 166, 35, 0.2);
  --border-dim: rgba(255,255,255,0.08);
  --font-head: 'Syne', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 20px 60px rgba(0,0,0,0.4);
  --shadow-green: 0 0 30px rgba(57,255,20,0.2);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
button { cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--green); border-radius: 3px; }

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-dim);
  border: 1px solid var(--border);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.1rem;
  color: var(--white-60);
  max-width: 640px;
  margin: 0 auto;
}
.highlight { color: var(--green); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green);
  color: var(--navy);
  box-shadow: 0 0 20px rgba(57,255,20,0.3);
}
.btn-primary:hover {
  background: var(--green-2);
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(57,255,20,0.5);
}
.btn-secondary {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}
.btn-secondary:hover {
  background: var(--green-dim);
  transform: translateY(-2px);
  box-shadow: var(--shadow-green);
}
.btn-ghost {
  background: var(--white-10);
  color: var(--white);
  border: 1px solid var(--border-dim);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  background: var(--white-20);
  transform: translateY(-2px);
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(5, 13, 26, 0.95);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid var(--border-dim);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-tagline {
  display: block;
  font-size: 0.6rem;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin-top: 1px;
}
.logo-icon {
  width: 40px; height: 40px;
  background: var(--green);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--navy);
}
.logo-text {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.logo-text span { color: var(--green); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links li a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white-80);
  transition: var(--transition);
}
.nav-links li a:hover { color: var(--green); }
.nav-links li a.nav-cta {
  background: var(--green);
  color: var(--navy);
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600;
}
.nav-links li a.nav-cta:hover { background: var(--green-2); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 140px 80px 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(57,255,20,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57,255,20,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.orb-1 { width: 500px; height: 500px; background: rgba(57,255,20,0.06); top: -100px; right: -100px; }
.orb-2 { width: 400px; height: 400px; background: rgba(0,191,255,0.05); bottom: 0; left: -150px; }
.orb-3 { width: 300px; height: 300px; background: rgba(57,255,20,0.04); top: 50%; left: 40%; }

.hero-content { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-dim);
  border: 1px solid var(--border);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--green);
  margin-bottom: 28px;
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--white-60);
  margin-bottom: 40px;
  max-width: 520px;
  line-height: 1.7;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hstat { text-align: center; }
.hstat strong { display: block; font-family: var(--font-head); font-size: 1.6rem; font-weight: 800; color: var(--green); }
.hstat span { font-size: 0.78rem; color: var(--white-60); }
.hstat-divider { width: 1px; height: 40px; background: var(--border-dim); }

/* ===== DASHBOARD ===== */
.hero-dashboard { position: relative; z-index: 1; }
.dashboard-card {
  background: rgba(15, 32, 64, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(57,255,20,0.2);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 40px rgba(57,255,20,0.08);
}
.dash-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.dash-dots { display: flex; gap: 6px; }
.dash-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--white-20);
}
.dash-dots span:first-child { background: #ff6b6b; }
.dash-dots span:nth-child(2) { background: #ffd700; }
.dash-dots span:nth-child(3) { background: var(--green); }
.dash-title { font-size: 0.8rem; font-weight: 600; color: var(--white-60); flex: 1; }
.dash-live { font-size: 0.75rem; color: var(--green); display: flex; align-items: center; gap: 5px; }
.dash-live i { font-size: 8px; animation: pulse 1.5s infinite; }
.dash-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.dash-metric {
  background: var(--white-10);
  border-radius: 12px;
  padding: 16px 12px;
  text-align: center;
}
.dm-label { display: block; font-size: 0.7rem; color: var(--white-60); margin-bottom: 6px; }
.dm-value { display: block; font-family: var(--font-head); font-size: 1.3rem; font-weight: 700; margin-bottom: 4px; }
.dm-value.green { color: var(--green); }
.dm-change { font-size: 0.72rem; color: var(--white-60); }
.dm-change.green { color: var(--green); }
.dash-bar-section { margin-bottom: 20px; }
.dash-bar-label { font-size: 0.78rem; color: var(--white-60); display: block; margin-bottom: 8px; }
.dash-bar-track {
  height: 6px;
  background: var(--white-10);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 4px;
}
.dash-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--blue));
  border-radius: 3px;
  transition: width 2s ease;
}
.dash-bar-pct { font-size: 0.72rem; color: var(--green); float: right; margin-top: -20px; }
.dash-pipeline { margin-bottom: 20px; }
.dp-label { font-size: 0.78rem; color: var(--white-60); display: block; margin-bottom: 12px; }
.dp-stages { display: flex; flex-direction: column; gap: 8px; }
.dp-stage {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  position: relative;
  padding: 8px 12px;
  border-radius: 6px;
  background: var(--white-10);
  overflow: hidden;
}
.dp-stage::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: var(--w);
  background: var(--c);
  opacity: 0.15;
}
.dp-stage span { font-weight: 700; color: var(--c); }
.dash-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dash-avatar-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  color: var(--white-60);
}
.da {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--blue));
  border: 2px solid var(--navy-2);
  margin-left: -6px;
}
.da:first-child { margin-left: 0; }
.dash-updated { font-size: 0.7rem; color: var(--white-60); }

.scroll-down {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  animation: bounce 2s infinite;
  z-index: 10;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== ABOUT ===== */
.about { background: var(--navy-2); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-shape-bg {
  width: 100%;
  padding-bottom: 100%;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--navy-3), var(--navy-4));
  border: 1px solid var(--border);
  position: relative;
}
.about-icon-grid {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 75%;
}
.aig-card {
  background: var(--white-10);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-dim);
  border-radius: 16px;
  padding: 24px 16px;
  text-align: center;
  transition: var(--transition);
}
.aig-card:hover { border-color: var(--border); transform: translateY(-4px); }
.aig-card i { font-size: 1.8rem; color: var(--green); display: block; margin-bottom: 8px; }
.aig-card span { font-size: 0.82rem; color: var(--white-60); font-weight: 500; }
.about-badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--green);
  color: var(--navy);
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(57,255,20,0.3);
}
.about-badge-float i { font-size: 1.4rem; }
.about-badge-float strong { display: block; font-weight: 700; font-size: 0.9rem; }
.about-badge-float span { font-size: 0.75rem; }
.about-desc { color: var(--white-60); margin-bottom: 16px; line-height: 1.8; }
.about-pillars { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.pillar { display: flex; gap: 16px; }
.pillar-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--green-dim);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 1.1rem;
}
.pillar strong { display: block; font-weight: 600; margin-bottom: 4px; }
.pillar p { font-size: 0.88rem; color: var(--white-60); line-height: 1.6; }

/* ===== SERVICES ===== */
.services { background: var(--navy); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--navy-2);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--blue));
  transform: scaleX(0);
  transition: var(--transition);
}
.service-card:hover { border-color: var(--border); transform: translateY(-6px); box-shadow: var(--shadow); }
.service-card:hover::before { transform: scaleX(1); }
.sc-icon {
  width: 56px; height: 56px;
  background: var(--green-dim);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 1.4rem;
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .sc-icon { background: var(--green); color: var(--navy); }
.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.service-card p { font-size: 0.88rem; color: var(--white-60); line-height: 1.6; margin-bottom: 20px; }
.sc-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.sc-link:hover { gap: 10px; }

/* ===== INDUSTRIES ===== */
.industries { background: var(--navy-2); }
.industry-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
  justify-content: center;
}
.ind-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white-60);
  background: var(--white-10);
  border: 1px solid var(--border-dim);
  transition: var(--transition);
  cursor: pointer;
}
.ind-tab:hover { color: var(--white); border-color: var(--border); }
.ind-tab.active { background: var(--green); color: var(--navy); border-color: var(--green); }
.industry-content { position: relative; }
.ind-panel {
  display: none;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
  background: var(--navy);
  border: 1px solid var(--border-dim);
  border-radius: 20px;
  padding: 48px;
}
.ind-panel.active { display: grid; animation: fadeInUp 0.4s ease; }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.ind-info h3 { font-family: var(--font-head); font-size: 1.8rem; font-weight: 800; margin-bottom: 16px; }
.ind-info p { color: var(--white-60); line-height: 1.8; margin-bottom: 24px; }
.ind-list { margin-bottom: 32px; display: flex; flex-direction: column; gap: 10px; }
.ind-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--white-80);
}
.ind-list li i { color: var(--green); }
.ind-stat-box {
  background: var(--navy-3);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.isb-item { text-align: center; }
.isb-num {
  display: block;
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  margin-bottom: 6px;
}
.isb-item span:last-child { font-size: 0.82rem; color: var(--white-60); }

/* ===== BENEFITS ===== */
.benefits { background: var(--navy); }
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.benefit-bar-item { margin-bottom: 28px; }
.bb-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-size: 0.9rem;
  font-weight: 500;
}
.bb-pct { color: var(--green); font-weight: 700; }
.bb-track {
  height: 8px;
  background: var(--white-10);
  border-radius: 4px;
  overflow: hidden;
}
.bb-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--blue));
  border-radius: 4px;
  width: 0;
  transition: width 1.5s cubic-bezier(0.4,0,0.2,1);
}
.roi-card {
  background: var(--navy-2);
  border: 1px solid var(--border-dim);
  border-radius: 20px;
  padding: 36px;
}
.roi-card h3 { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; margin-bottom: 28px; }
.roi-items { display: flex; flex-direction: column; gap: 16px; }
.roi-item { display: flex; align-items: center; gap: 12px; }
.ri-ind { font-size: 0.85rem; color: var(--white-60); width: 100px; flex-shrink: 0; }
.ri-bar { flex: 1; height: 6px; background: var(--white-10); border-radius: 3px; overflow: hidden; }
.ri-bar div { height: 100%; background: linear-gradient(90deg, var(--green), var(--blue)); border-radius: 3px; }
.ri-val { font-size: 0.9rem; font-weight: 700; color: var(--green); width: 36px; text-align: right; }

/* ===== WHY CHOOSE US ===== */
.why { background: var(--navy-2); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.why-card {
  background: var(--navy);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: var(--transition);
}
.why-card:hover { border-color: var(--border); transform: translateY(-6px); box-shadow: var(--shadow); }
.wc-icon {
  width: 60px; height: 60px;
  background: var(--green-dim);
  border: 1px solid var(--border);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--green);
  margin-bottom: 24px;
  transition: var(--transition);
}
.why-card:hover .wc-icon { background: var(--green); color: var(--navy); }
.why-card h3 { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; }
.why-card p { font-size: 0.88rem; color: var(--white-60); line-height: 1.7; }

/* ===== PROCESS ===== */
.process { background: var(--navy); }
.process-flow {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.process-step {
  flex: 1;
  text-align: center;
  padding: 0 16px;
  position: relative;
}
.ps-number {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 800;
  color: var(--green-dim);
  line-height: 1;
  margin-bottom: 12px;
  display: block;
}
.ps-icon {
  width: 72px; height: 72px;
  background: var(--navy-2);
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--green);
  margin: 0 auto 20px;
  transition: var(--transition);
}
.process-step:hover .ps-icon { background: var(--green); color: var(--navy); border-color: var(--green); }
.process-step h4 { font-family: var(--font-head); font-size: 1rem; font-weight: 700; margin-bottom: 12px; }
.process-step p { font-size: 0.82rem; color: var(--white-60); line-height: 1.6; }
.process-arrow {
  color: var(--green);
  font-size: 1.2rem;
  opacity: 0.4;
  margin-top: 88px;
  flex-shrink: 0;
}

/* ===== STATISTICS ===== */
.statistics { background: var(--navy-2); }
.stats-counters {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}
.stat-counter {
  text-align: center;
  background: var(--navy);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius);
  padding: 32px 16px;
  transition: var(--transition);
}
.stat-counter:hover { border-color: var(--border); transform: translateY(-4px); }
.sc-num {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--green);
}
.sc-suffix {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--green);
}
.sc-label { display: block; font-size: 0.8rem; color: var(--white-60); margin-top: 8px; }
.chart-wrap {
  background: var(--navy);
  border: 1px solid var(--border-dim);
  border-radius: 20px;
  padding: 40px;
}
.chart-wrap h3 { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; margin-bottom: 32px; text-align: center; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--navy); }
.featured-testimonial {
  background: linear-gradient(135deg, var(--navy-3), var(--navy-4));
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}
.featured-testimonial::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--blue));
}
.ft-quote { font-size: 3rem; color: var(--green); opacity: 0.4; margin-bottom: 16px; }
.featured-testimonial p { font-size: 1.1rem; line-height: 1.8; color: var(--white-80); margin-bottom: 28px; font-style: italic; }
.ft-author { display: flex; align-items: center; gap: 16px; }
.ft-avatar {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--green), var(--blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--navy);
  flex-shrink: 0;
}
.ft-author strong { display: block; font-weight: 700; }
.ft-author span { font-size: 0.85rem; color: var(--white-60); }
.stars { color: #ffd700; font-size: 0.9rem; margin-top: 4px; }
.ft-badge {
  margin-left: auto;
  background: var(--green-dim);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 6px;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.tcard {
  background: var(--navy-2);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
}
.tcard:hover { border-color: var(--border); transform: translateY(-4px); }
.tc-stars { color: #ffd700; margin-bottom: 12px; }
.tcard p { font-size: 0.88rem; color: var(--white-60); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.tc-author { display: flex; align-items: center; gap: 12px; }
.tca-avatar {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--green), var(--blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1rem;
  flex-shrink: 0;
}
.tc-author strong { display: block; font-size: 0.9rem; font-weight: 600; }
.tc-author span { font-size: 0.76rem; color: var(--white-60); }
.awards-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.award-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--navy-2);
  border: 1px solid var(--border-dim);
  border-radius: 50px;
  padding: 12px 24px;
  font-size: 0.88rem;
  font-weight: 500;
  transition: var(--transition);
}
.award-badge:hover { border-color: var(--border); }
.award-badge i { color: var(--green); }

/* ===== PARTNERSHIP ===== */
.partnership { background: var(--navy-2); }
.partner-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}
.partner-card {
  background: var(--navy);
  border: 1px solid var(--border-dim);
  border-radius: 24px;
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}
.partner-card:hover { transform: translateY(-8px); border-color: var(--border); box-shadow: var(--shadow); }
.partner-card.featured {
  border-color: var(--green);
  background: linear-gradient(135deg, rgba(57,255,20,0.05), var(--navy));
  box-shadow: 0 0 40px rgba(57,255,20,0.1);
}
.pc-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 50px;
  white-space: nowrap;
}
.pc-tier {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}
.pc-icon {
  font-size: 2.4rem;
  color: var(--green);
  margin-bottom: 16px;
}
.partner-card h3 { font-family: var(--font-head); font-size: 1.4rem; font-weight: 800; margin-bottom: 8px; }
.pc-sub { font-size: 0.88rem; color: var(--white-60); margin-bottom: 20px; }
.pc-commission {
  background: var(--green-dim);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px;
  font-size: 0.9rem;
  color: var(--white-80);
  margin-bottom: 28px;
}
.pc-commission span { color: var(--green); font-weight: 700; font-size: 1.1rem; }
.pc-features { text-align: left; margin-bottom: 32px; display: flex; flex-direction: column; gap: 12px; }
.pc-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--white-80);
}
.pc-features li i { color: var(--green); flex-shrink: 0; }

/* ===== CONTACT ===== */
.contact { background: var(--navy); }
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-form-wrap {
  background: var(--navy-2);
  border: 1px solid var(--border-dim);
  border-radius: 24px;
  padding: 48px;
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--white-80); }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--navy);
  border: 1px solid var(--border-dim);
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(57,255,20,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--white-20); }
.form-group select option { background: var(--navy-2); }
.form-group textarea { resize: vertical; }
.btn-submit { width: 100%; justify-content: center; padding: 18px; font-size: 1rem; border-radius: 12px; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.ci-card {
  background: var(--navy-2);
  border: 1px solid var(--border-dim);
  border-radius: 16px;
  padding: 24px;
  transition: var(--transition);
}
.ci-card:hover { border-color: var(--border); }
.ci-icon {
  width: 44px; height: 44px;
  background: var(--green-dim);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 1.1rem;
  margin-bottom: 12px;
}
.ci-card h4 { font-weight: 700; margin-bottom: 6px; }
.ci-card a { color: var(--green); font-size: 0.9rem; }
.ci-card p { font-size: 0.9rem; color: var(--white-60); }
.ci-social {
  display: flex;
  gap: 12px;
}
.ci-social a {
  width: 44px; height: 44px;
  background: var(--white-10);
  border: 1px solid var(--border-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}
.ci-social a:hover { background: var(--green); color: var(--navy); border-color: var(--green); }

/* ===== FOOTER ===== */
.footer { background: var(--navy-2); border-top: 1px solid var(--border-dim); }
.footer-top { padding: 80px 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
}
.footer-brand p { font-size: 0.88rem; color: var(--white-60); margin: 20px 0 24px; line-height: 1.7; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  background: var(--white-10);
  border: 1px solid var(--border-dim);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--green); color: var(--navy); border-color: var(--green); }
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--white);
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 0.875rem; color: var(--white-60); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--green); }
.footer-col p { font-size: 0.875rem; color: var(--white-60); margin-bottom: 16px; line-height: 1.6; }
.newsletter-form {
  display: flex;
  gap: 0;
  background: var(--navy);
  border: 1px solid var(--border-dim);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}
.newsletter-form input {
  flex: 1;
  background: none;
  border: none;
  padding: 12px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.88rem;
  outline: none;
}
.newsletter-form input::placeholder { color: var(--white-20); }
.newsletter-form button {
  background: var(--green);
  color: var(--navy);
  padding: 12px 18px;
  font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
}
.newsletter-form button:hover { background: var(--green-2); }
.footer-contact-mini { font-size: 0.82rem; color: var(--white-60); display: flex; flex-direction: column; gap: 6px; }
.footer-contact-mini p { display: flex; align-items: center; gap: 8px; }
.footer-contact-mini i { color: var(--green); }
.footer-bottom {
  border-top: 1px solid var(--border-dim);
  padding: 24px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--white-60);
}
.footer-links { display: flex; gap: 24px; }
.footer-links a { transition: var(--transition); }
.footer-links a:hover { color: var(--green); }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 28px;
  width: 48px; height: 48px;
  background: var(--green);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  z-index: 900;
  opacity: 0;
  transform: translateY(16px);
  transition: var(--transition);
  pointer-events: none;
  box-shadow: 0 4px 16px rgba(57,255,20,0.3);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.back-to-top:hover { transform: translateY(-4px); }

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  background: var(--navy-3);
  border: 1px solid var(--green);
  border-radius: 12px;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 500;
  z-index: 9999;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
}
.toast i { color: var(--green); font-size: 1.2rem; }
.toast.show {
  transform: translateX(-50%) translateY(0);
  visibility: visible;
  opacity: 1;
  pointer-events: all;
}

/* ===== CHAT WIDGET ===== */
.chat-widget { position: fixed; bottom: 28px; right: 28px; z-index: 800; }
.chat-bubble {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: var(--navy);
  padding: 14px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(57,255,20,0.4);
  transition: var(--transition);
}
.chat-bubble i { font-size: 1.3rem; }
.chat-bubble:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(57,255,20,0.5); }
.chat-popup {
  display: none;
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 320px;
  background: var(--navy-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.chat-popup.open { display: block; animation: fadeInUp 0.3s ease; }
.cp-header {
  background: linear-gradient(135deg, var(--navy-3), var(--navy-4));
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border-dim);
}
.cp-avatar {
  width: 44px; height: 44px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.cp-header strong { display: block; font-size: 0.9rem; }
.cp-header span { font-size: 0.75rem; color: var(--white-60); display: flex; align-items: center; gap: 4px; }
.cp-close {
  margin-left: auto;
  color: var(--white-60);
  font-size: 1rem;
  transition: var(--transition);
}
.cp-close:hover { color: var(--white); }
.cp-body { padding: 20px; }
.cp-msg p {
  font-size: 0.88rem;
  color: var(--white-80);
  background: var(--navy);
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 8px;
  line-height: 1.6;
}
.cp-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--green);
  color: var(--navy);
  font-weight: 700;
  padding: 16px;
  text-align: center;
  transition: var(--transition);
}
.cp-cta:hover { background: var(--green-2); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-counters { grid-template-columns: repeat(3, 1fr); }
  .hero { grid-template-columns: 1fr; padding: 120px 40px 80px; }
  .hero-dashboard { display: none; }
}
@media (max-width: 900px) {
  .about-grid,
  .contact-grid,
  .partner-tiers { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-flow { flex-direction: column; align-items: center; }
  .process-arrow { transform: rotate(90deg); margin: 0; }
  .ind-panel { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #0a0f2e;
    z-index: 9990;
    padding: 6px 0 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.45);
    border-top: 1px solid rgba(255,255,255,0.07);
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links li { width: 100%; text-align: left; }
  .nav-links li a {
    font-size: 0.82rem;
    display: block;
    padding: 9px 22px;
    width: 100%;
    color: rgba(255,255,255,0.82);
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .nav-links li:last-child a { border-bottom: none; }
  .nav-links li a.nav-cta {
    margin: 8px 16px 2px;
    width: auto;
    text-align: center;
    border-radius: 6px;
    padding: 8px 16px;
    font-size: 0.8rem;
  }
  .hamburger { display: flex; z-index: 9995; position: relative; }
  .hero { padding: 100px 24px 60px; text-align: center; }
  .hero-ctas { justify-content: center; }
  .hero-stats { justify-content: center; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-counters { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .partner-tiers { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .industry-tabs { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 8px; }
  .footer-bottom .container { flex-direction: column; gap: 12px; text-align: center; }
  .chat-label { display: none; }
  .chat-bubble { padding: 14px; border-radius: 50%; }
  .ft-author { flex-direction: column; align-items: flex-start; }
  .ft-badge { margin-left: 0; margin-top: 12px; }
}

/* ===== TECH VISUAL / CANVAS HERO ===== */
.hero {
  grid-template-columns: 1fr 1fr;
}
.hero-tech-visual {
  position: relative;
  width: 100%;
  height: 520px;
  z-index: 1;
}
#techCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  opacity: 0.85;
}
.floating-nodes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.fnode {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(26, 36, 64, 0.85);
  border: 1px solid rgba(245, 166, 35, 0.35);
  backdrop-filter: blur(12px);
  border-radius: 50px;
  padding: 10px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white-80);
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3), 0 0 16px rgba(245,166,35,0.1);
}
.fnode i { color: var(--green); font-size: 1rem; }
.fnode-1 { top: 8%;  left: 10%; animation: floatNode 6s ease-in-out infinite; }
.fnode-2 { top: 22%; right: 5%; animation: floatNode 7s ease-in-out infinite 1s; }
.fnode-3 { top: 45%; left: 5%; animation: floatNode 5.5s ease-in-out infinite 0.5s; }
.fnode-4 { bottom: 25%; right: 8%; animation: floatNode 6.5s ease-in-out infinite 1.5s; }
.fnode-5 { bottom: 8%;  left: 20%; animation: floatNode 7s ease-in-out infinite 2s; }

@keyframes floatNode {
  0%, 100% { transform: translateY(0px) translateX(0px); }
  33%       { transform: translateY(-10px) translateX(4px); }
  66%       { transform: translateY(6px) translateX(-4px); }
}

/* ===== GLOBAL PARTICLE CANVAS (background) ===== */
#globalParticles {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
}

/* ===== GLOWING CURSOR TRAIL ===== */
.cursor-trail {
  position: fixed;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease;
  box-shadow: 0 0 12px var(--green), 0 0 24px rgba(245,166,35,0.4);
  mix-blend-mode: screen;
}
.cursor-ring {
  position: fixed;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1.5px solid rgba(245,166,35,0.5);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all 0.12s ease;
}

/* ===== SECTION GLOW DIVIDERS ===== */
.section::before {
  content: '';
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,166,35,0.3), transparent);
  margin-bottom: 0;
}

/* ===== ANIMATED GRADIENT HERO BG ===== */
.hero-bg {
  background: radial-gradient(ellipse at 70% 50%, rgba(245,166,35,0.06) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(245,200,66,0.04) 0%, transparent 50%);
  animation: shiftBg 12s ease-in-out infinite alternate;
}
@keyframes shiftBg {
  from { opacity: 0.8; }
  to   { opacity: 1; }
}

/* ===== CARD GLOW ON HOVER ===== */
.service-card:hover,
.why-card:hover,
.tcard:hover {
  box-shadow: 0 0 0 1px rgba(245,166,35,0.2), 0 20px 60px rgba(0,0,0,0.4), 0 0 30px rgba(245,166,35,0.08);
}

/* ===== TYPEWRITER CURSOR ===== */
.hero-title .highlight::after {
  content: '|';
  color: var(--green);
  animation: blink 1s step-end infinite;
  margin-left: 2px;
  font-weight: 300;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

/* ===== RESPONSIVE TECH VISUAL ===== */
@media (max-width: 1100px) {
  .hero-tech-visual { height: 380px; }
}
@media (max-width: 768px) {
  .hero-tech-visual { display: none; }
  .cursor-trail, .cursor-ring { display: none; }
}

/* ===== Z-INDEX LAYERING FOR GLOBAL CANVAS ===== */
.navbar, .hero, .about, .services, .industries, .benefits,
.why, .process, .statistics, .testimonials, .partnership,
.contact, .footer {
  position: relative;
  z-index: 1;
}

/* ===== LOGO IMAGE ===== */
.logo-img {
  height: 42px;
  width: 42px;
  object-fit: contain;
  border-radius: 10px;
  flex-shrink: 0;
}
.footer .logo-img {
  height: 48px;
  width: 48px;
  border-radius: 12px;
}
.logo-text {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.logo-text span { color: var(--green); }

/* ===== CLEAN LOGO IMAGE — blends into navbar/footer ===== */
.logo-img {
  height: 46px;
  width: 46px;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(245,166,35,0.35));
}
.footer .logo-img {
  height: 52px;
  width: 52px;
}

/* ===== FINAL LOGO — dark bg blends into navbar ===== */
.logo-img {
  height: 48px;
  width: 48px;
  object-fit: contain;
  border-radius: 12px;
  flex-shrink: 0;
  mix-blend-mode: lighten;
  filter: drop-shadow(0 0 6px rgba(245,166,35,0.3));
}
.footer-brand .logo-img {
  height: 54px;
  width: 54px;
  border-radius: 14px;
}
