@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ═══════════════════════════════════════════════════════
   BIZ24 GROUPS — PREMIUM DESIGN SYSTEM
   Dark Mode | Glassmorphism | Rich Animations
═══════════════════════════════════════════════════════ */

:root {
  /* --- Core Dark Palette --- */
  --bg-base:        #050810;
  --bg-surface:     #0a0d1a;
  --bg-elevated:    #0f1323;
  --bg-card:        rgba(255,255,255,0.04);
  --bg-card-hover:  rgba(255,255,255,0.07);
  --bg-glass:       rgba(10,13,26,0.7);

  /* --- Brand Gradient Palette --- */
  --brand-1:        #6c63ff;   /* Electric Violet */
  --brand-2:        #00d4ff;   /* Cyan */
  --brand-3:        #ff6b6b;   /* Coral */
  --brand-gold:     #f5c842;   /* Gold accent */
  --brand-green:    #22c55e;   /* Success green */

  /* --- Text Hierarchy --- */
  --text-primary:   #f1f5ff;
  --text-secondary: #8892b0;
  --text-muted:     #4a5568;
  --text-accent:    #6c63ff;

  /* --- Borders & Dividers --- */
  --border:         rgba(255,255,255,0.07);
  --border-glow:    rgba(108,99,255,0.35);
  --border-active:  rgba(0,212,255,0.4);

  /* --- Gradient Definitions --- */
  --grad-primary:   linear-gradient(135deg, #6c63ff 0%, #00d4ff 100%);
  --grad-accent:    linear-gradient(135deg, #ff6b6b 0%, #f5c842 100%);
  --grad-hero:      linear-gradient(135deg, rgba(108,99,255,0.15) 0%, rgba(0,212,255,0.05) 100%);
  --grad-card:      linear-gradient(145deg, rgba(108,99,255,0.08) 0%, rgba(0,212,255,0.03) 100%);
  --grad-text:      linear-gradient(135deg, #6c63ff 0%, #00d4ff 60%, #f5c842 100%);

  /* --- Shadows & Glows --- */
  --glow-primary:   0 0 40px rgba(108,99,255,0.25);
  --glow-cyan:      0 0 40px rgba(0,212,255,0.2);
  --glow-card:      0 20px 60px rgba(0,0,0,0.4), 0 1px 0 rgba(255,255,255,0.05);
  --shadow-btn:     0 8px 32px rgba(108,99,255,0.35);

  /* --- Typography --- */
  --font-heading:   'Space Grotesk', sans-serif;
  --font-body:      'Inter', sans-serif;

  /* --- Motion --- */
  --ease-out:       cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:    cubic-bezier(0.4, 0, 0.2, 1);
  --duration-fast:  0.18s;
  --duration-mid:   0.35s;
  --duration-slow:  0.65s;

  /* --- Layout --- */
  --max-width:      1200px;
  --nav-height:     76px;
}

/* ─── BASE RESETS ─────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
  background: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: color var(--duration-fast) var(--ease-out); }
img { display: block; max-width: 100%; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-base); }
::-webkit-scrollbar-thumb { background: var(--brand-1); border-radius: 3px; }

/* ─── LAYOUT UTILITIES ───────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 7rem 0;
  position: relative;
}

.text-center { text-align: center; }

/* ─── GRADIENT TEXT ───────────────────────────────── */
.gradient-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.accent-text {
  background: var(--grad-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── ANIMATED BACKGROUND ────────────────────────── */
.bg-mesh {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.bg-mesh::before {
  content: '';
  position: absolute;
  width: 900px; height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108,99,255,0.12) 0%, transparent 65%);
  top: -200px; left: -200px;
  animation: pulse-blob 12s ease-in-out infinite alternate;
}

.bg-mesh::after {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,212,255,0.1) 0%, transparent 65%);
  bottom: -150px; right: -150px;
  animation: pulse-blob 16s ease-in-out infinite alternate-reverse;
}

.bg-mesh-dot {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,200,66,0.06) 0%, transparent 65%);
  top: 40%; left: 40%;
  animation: pulse-blob 20s ease-in-out infinite;
}

@keyframes pulse-blob {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(80px, 60px) scale(1.08); }
  100% { transform: translate(-40px, -80px) scale(0.95); }
}

/* Grid dots overlay */
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

/* Particle Canvas */
#particleCanvas {
  position: fixed;
  inset: 0;
  width: 100vw; height: 100vh;
  pointer-events: none;
  z-index: 1;
}

/* Cursor glow */
.cursor-glow {
  position: fixed;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108,99,255,0.06) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 2;
  transition: opacity 0.4s;
  opacity: 0;
}

/* ─── NAVIGATION ──────────────────────────────────── */
header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  transition: all var(--duration-mid) var(--ease-out);
}

header.scrolled {
  background: rgba(5,8,16,0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 40px rgba(0,0,0,0.3);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo-wrapper { display: flex; align-items: center; gap: 0.75rem; }

.logo-img {
  height: 42px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: brightness(1.05);
  transition: transform var(--duration-mid) var(--ease-out);
}

.logo-wrapper:hover .logo-img { transform: scale(1.04); }

/* Footer logo - different size */
.footer-brand .logo-img {
  height: 42px;
  width: auto;
  max-width: 130px;
  margin-bottom: 1.2rem;
  filter: none;
}

.logo-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.3px;
  display: none; /* hide text name — logo image is sufficient */
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0.45rem 1rem;
  border-radius: 8px;
  transition: all var(--duration-fast) var(--ease-out);
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-primary);
  background: rgba(255,255,255,0.06);
}

.nav-cta {
  background: var(--grad-primary);
  color: #fff !important;
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all var(--duration-mid) var(--ease-out);
  box-shadow: var(--shadow-btn);
  margin-left: 0.5rem;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(108,99,255,0.45);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  z-index: 1100;
}

.mobile-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  margin: 5px 0;
  transition: all var(--duration-mid) var(--ease-out);
}

.mobile-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── BUTTONS ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2.2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--duration-mid) var(--ease-out);
  border: none;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: var(--shadow-btn);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(108,99,255,0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-glow);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--brand-1);
  border: 1px solid rgba(108,99,255,0.4);
}

.btn-outline:hover {
  background: rgba(108,99,255,0.1);
  border-color: var(--brand-1);
  transform: translateY(-2px);
}

/* ─── SECTION HEADERS ────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--brand-1);
  margin-bottom: 1.2rem;
}

.section-label::before {
  content: '';
  width: 18px; height: 2px;
  background: var(--grad-primary);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.2rem;
  letter-spacing: -0.5px;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ─── PAGE HEADER ────────────────────────────────── */
.page-header {
  padding: 9rem 0 4.5rem;
  text-align: center;
  position: relative;
  z-index: 3;
}

.page-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ─── SCROLL REVEAL ───────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal.slide-left  { transform: translateX(-40px); }
.reveal.slide-right { transform: translateX(40px); }
.reveal.slide-left.active,
.reveal.slide-right.active { transform: translateX(0); }

/* ─── HERO SECTION ────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  position: relative;
  z-index: 3;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-hero);
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 5rem;
  align-items: center;
  min-height: calc(100vh - var(--nav-height));
  padding-top: 2rem;
  padding-bottom: 4rem;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(108,99,255,0.12);
  border: 1px solid rgba(108,99,255,0.25);
  color: var(--brand-1);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  margin-bottom: 2rem;
}

.hero-eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand-1);
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 1.8rem;
}

.hero-desc {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 540px;
  margin-bottom: 3rem;
  line-height: 1.85;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

/* Hero Stats Strip */
.hero-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.hero-stat { display: flex; flex-direction: column; }

.stat-val {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.stat-lbl {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.25rem;
}

/* Hero Graphic */
.hero-graphic {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-orb-wrap {
  position: relative;
  width: 420px;
  height: 420px;
}

.orb-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(108,99,255,0.15);
  animation: spin-slow 25s linear infinite;
}

.orb-ring:nth-child(2) {
  inset: 30px;
  border-color: rgba(0,212,255,0.12);
  animation-duration: 18s;
  animation-direction: reverse;
}

.orb-ring:nth-child(3) {
  inset: 70px;
  border-color: rgba(245,200,66,0.1);
  animation-duration: 35s;
}

.orb-ring::after {
  content: '';
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--brand-1);
  top: 50%; left: 0;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 12px var(--brand-1);
}

.orb-ring:nth-child(2)::after {
  background: var(--brand-2);
  box-shadow: 0 0 12px var(--brand-2);
  top: 0; left: 50%;
  transform: translate(-50%, -50%);
}

.orb-ring:nth-child(3)::after {
  background: var(--brand-gold);
  box-shadow: 0 0 12px var(--brand-gold);
  top: 100%; left: 50%;
  transform: translate(-50%, -50%);
}

.orb-core {
  position: absolute;
  inset: 90px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(108,99,255,0.4), rgba(0,212,255,0.2), rgba(5,8,16,0.9));
  box-shadow: var(--glow-primary), inset 0 0 60px rgba(108,99,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.4rem;
}

.orb-core-text {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.orb-core-sub {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-float-cards {
  position: absolute;
  inset: 0;
}

.float-card {
  position: absolute;
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.8rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: var(--glow-card);
  animation: float 6s ease-in-out infinite;
}

.float-card:nth-child(1) { top: 12%; right: -5%; animation-delay: 0s; }
.float-card:nth-child(2) { bottom: 20%; left: -8%; animation-delay: 1.5s; }
.float-card:nth-child(3) { top: 55%; right: -10%; animation-delay: 3s; }

.float-card .fcard-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.float-card:nth-child(1) .fcard-dot { background: var(--brand-1); box-shadow: 0 0 8px var(--brand-1); }
.float-card:nth-child(2) .fcard-dot { background: var(--brand-2); box-shadow: 0 0 8px var(--brand-2); }
.float-card:nth-child(3) .fcard-dot { background: var(--brand-gold); box-shadow: 0 0 8px var(--brand-gold); }

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ─── SECTION DIVIDER ────────────────────────────── */
.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0;
}

/* ─── ABOUT / STATS ───────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 6rem;
  align-items: center;
}

.about-label { margin-bottom: 1.5rem; }

.about-text .section-title { margin-bottom: 1.5rem; }

.about-text p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  line-height: 1.85;
}

.about-features { list-style: none; margin: 2.5rem 0; }

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  transition: all var(--duration-mid) var(--ease-out);
}

.about-feature-item:last-child { border-bottom: none; }

.about-feature-item:hover { padding-left: 0.5rem; }

.feature-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(108,99,255,0.12);
  border: 1px solid rgba(108,99,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--brand-1);
  flex-shrink: 0;
  transition: all var(--duration-mid) var(--ease-out);
}

.about-feature-item:hover .feature-icon {
  background: var(--brand-1);
  color: #fff;
  box-shadow: 0 0 20px rgba(108,99,255,0.4);
}

.feature-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.feature-text strong { color: var(--text-primary); display: block; font-size: 0.98rem; margin-bottom: 0.1rem; }

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all var(--duration-mid) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-card);
  opacity: 0;
  transition: opacity var(--duration-mid) var(--ease-out);
}

.stat-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-5px);
  box-shadow: var(--glow-card);
}

.stat-card:hover::before { opacity: 1; }

.stat-card .stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.15;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 1;
}

.stat-card .stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.5rem;
  position: relative;
  z-index: 1;
}

/* ─── COMPANIES GRID (HOME PREVIEW) ──────────────── */
.companies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.company-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all var(--duration-mid) var(--ease-out);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.company-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-primary);
  opacity: 0;
  transition: opacity var(--duration-mid) var(--ease-out);
}

.company-card:hover {
  border-color: rgba(108,99,255,0.25);
  transform: translateY(-6px);
  background: var(--bg-card-hover);
  box-shadow: 0 30px 70px rgba(0,0,0,0.4), 0 0 0 1px rgba(108,99,255,0.1);
}

.company-card:hover::before { opacity: 1; }

.card-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.card-icon-1 { background: rgba(108,99,255,0.15); color: var(--brand-1); }
.card-icon-2 { background: rgba(0,212,255,0.12); color: var(--brand-2); }
.card-icon-3 { background: rgba(245,200,66,0.12); color: var(--brand-gold); }
.card-icon-4 { background: rgba(255,107,107,0.12); color: var(--brand-3); }

.company-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  background: rgba(108,99,255,0.1);
  border: 1px solid rgba(108,99,255,0.2);
  color: var(--brand-1);
  align-self: flex-start;
}

.company-badge.cyan { background: rgba(0,212,255,0.08); border-color: rgba(0,212,255,0.2); color: var(--brand-2); }
.company-badge.gold { background: rgba(245,200,66,0.08); border-color: rgba(245,200,66,0.2); color: var(--brand-gold); }
.company-badge.coral { background: rgba(255,107,107,0.08); border-color: rgba(255,107,107,0.2); color: var(--brand-3); }

.company-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}

.company-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  flex-grow: 1;
}

.company-services {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.company-services li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.company-services li i {
  color: var(--brand-1);
  font-size: 0.75rem;
}

.company-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-1);
  margin-top: 0.5rem;
  transition: gap var(--duration-fast) var(--ease-out);
}

.company-link:hover { gap: 0.9rem; }

/* ─── WHY CHOOSE US GRID ─────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.why-card {
  padding: 2.5rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  transition: all var(--duration-mid) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-primary);
  transform: scaleX(0);
  transition: transform var(--duration-mid) var(--ease-out);
}

.why-card:hover {
  border-color: rgba(108,99,255,0.2);
  transform: translateY(-5px);
  background: var(--bg-card-hover);
}

.why-card:hover::after { transform: scaleX(1); }

.why-icon-box {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(108,99,255,0.12);
  border: 1px solid rgba(108,99,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--brand-1);
  margin-bottom: 1.5rem;
  transition: all var(--duration-mid) var(--ease-out);
}

.why-card:hover .why-icon-box {
  background: var(--brand-1);
  color: #fff;
  box-shadow: 0 0 25px rgba(108,99,255,0.5);
  border-color: transparent;
}

.why-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.why-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ─── COMPANIES DETAIL PAGE ───────────────────────── */
.portfolio-section { padding: 4rem 0 7rem; }

.company-detail-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 4rem;
  margin-bottom: 4rem;
  position: relative;
  overflow: hidden;
  transition: border-color var(--duration-mid) var(--ease-out);
}

.company-detail-block::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-primary);
}

.company-detail-block:hover { border-color: rgba(108,99,255,0.2); }

.company-detail-block.cyan::before { background: linear-gradient(90deg, var(--brand-2), var(--brand-1)); }
.company-detail-block.gold::before { background: var(--grad-accent); }

.company-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 1.5rem;
}

.company-brand-icon {
  width: 66px; height: 66px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.icon-violet { background: rgba(108,99,255,0.15); }
.icon-cyan { background: rgba(0,212,255,0.12); }
.icon-gold { background: rgba(245,200,66,0.12); }
.icon-coral { background: rgba(255,107,107,0.12); }

.company-brand-name h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.company-brand-name p {
  font-size: 1rem;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

.company-detail-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.9;
  max-width: 820px;
  margin-bottom: 3rem;
}

.company-subgrids {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3.5rem;
}

.subgrid-column h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  padding-left: 1rem;
  border-left: 3px solid var(--brand-1);
}

.services-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 0.85rem;
  list-style: none;
}

.services-list-grid li {
  position: relative;
  padding: 0.65rem 1rem 0.65rem 2.2rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: all var(--duration-fast) var(--ease-out);
}

.services-list-grid li:hover {
  border-color: rgba(108,99,255,0.2);
  background: rgba(108,99,255,0.06);
  color: var(--text-primary);
}

.services-list-grid li::before {
  content: '✓';
  position: absolute;
  left: 0.75rem;
  color: var(--brand-1);
  font-weight: 700;
}

.upcoming-service-list li::before { content: '⏳'; color: var(--brand-gold); }

.info-cards-stack { display: flex; flex-direction: column; gap: 1.5rem; }

.info-subcard {
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem;
}

.info-subcard h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--brand-1);
  margin-bottom: 1.1rem;
}

.pills-container { display: flex; flex-wrap: wrap; gap: 0.6rem; }

.pill-item {
  background: rgba(108,99,255,0.08);
  border: 1px solid rgba(108,99,255,0.15);
  color: var(--text-secondary);
  font-size: 0.82rem;
  padding: 0.35rem 0.9rem;
  border-radius: 6px;
  transition: all var(--duration-fast) var(--ease-out);
}

.pill-item:hover {
  background: rgba(108,99,255,0.18);
  border-color: var(--brand-1);
  color: var(--brand-1);
}

/* ─── TIMELINE (ROADMAP PAGE) ────────────────────── */
.timeline {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0; bottom: 0;
  width: 2px;
  background: var(--border);
  z-index: 1;
}

.timeline-progress-bar {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: 2px;
  background: var(--grad-primary);
  z-index: 2;
  box-shadow: 0 0 15px rgba(108,99,255,0.5);
  height: 0%;
  transition: height 0.15s ease-out;
}

.timeline-container {
  position: relative;
  width: 50%;
  padding: 0 3.5rem 3rem;
  z-index: 3;
}

.timeline-container::after {
  content: '';
  position: absolute;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--bg-base);
  border: 2.5px solid var(--border);
  right: -8px; top: 30px;
  z-index: 4;
  transition: all var(--duration-mid) var(--ease-out);
}

.timeline-container.active-node::after {
  border-color: var(--brand-1);
  box-shadow: 0 0 15px rgba(108,99,255,0.6);
  background: var(--brand-1);
}

.left-container  { left: 0; }
.right-container { left: 50%; }
.right-container::after { left: -8px; }

.timeline-content {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2.5rem;
  transition: all var(--duration-mid) var(--ease-out);
}

.timeline-container:hover .timeline-content {
  border-color: rgba(108,99,255,0.25);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.timeline-date {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--brand-1);
  margin-bottom: 0.75rem;
}

.timeline-content h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.timeline-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.timeline-status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.3rem 0.7rem;
  border-radius: 50px;
  margin-top: 1rem;
}

.status-active { background: rgba(34,197,94,0.12); border: 1px solid rgba(34,197,94,0.25); color: var(--brand-green); }
.status-planned { background: rgba(108,99,255,0.1); border: 1px solid rgba(108,99,255,0.2); color: var(--brand-1); }
.status-upcoming { background: rgba(245,200,66,0.1); border: 1px solid rgba(245,200,66,0.2); color: var(--brand-gold); }

.status-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
}

.status-active .status-dot { background: var(--brand-green); }
.status-planned .status-dot { background: var(--brand-1); }
.status-upcoming .status-dot { background: var(--brand-gold); }

/* ─── CTA BANNER ─────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, rgba(108,99,255,0.15) 0%, rgba(0,212,255,0.08) 100%);
  border: 1px solid rgba(108,99,255,0.2);
  border-radius: 28px;
  padding: 6rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(108,99,255,0.1) 0%, transparent 70%);
}

.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  position: relative;
  z-index: 1;
}

.cta-banner-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ─── CONTACT PAGE ────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 4rem;
  align-items: start;
}

.contact-info-panel { display: flex; flex-direction: column; gap: 1.5rem; }

.contact-info-panel h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.contact-info-panel > p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.contact-details { display: flex; flex-direction: column; gap: 1.2rem; }

.contact-detail-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.25rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: all var(--duration-mid) var(--ease-out);
}

.contact-detail-item:hover {
  border-color: rgba(108,99,255,0.25);
  background: var(--bg-card-hover);
}

.contact-detail-icon {
  width: 40px; height: 40px;
  min-width: 40px;
  border-radius: 10px;
  background: rgba(108,99,255,0.12);
  border: 1px solid rgba(108,99,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--brand-1);
}

.contact-detail-text h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}

.contact-detail-text p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.social-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: all var(--duration-mid) var(--ease-out);
}

.social-icon:hover {
  background: rgba(108,99,255,0.15);
  border-color: var(--brand-1);
  color: var(--brand-1);
  transform: translateY(-3px);
}

/* Contact Form */
.contact-form-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 3rem;
}

.form-group { margin-bottom: 1.5rem; }

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-control {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.85rem 1.2rem;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: all var(--duration-fast) var(--ease-out);
  appearance: none;
  -webkit-appearance: none;
}

.form-control:focus {
  border-color: var(--brand-1);
  background: rgba(108,99,255,0.06);
  box-shadow: 0 0 0 3px rgba(108,99,255,0.12);
}

.form-control::placeholder { color: var(--text-muted); }

select.form-control { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238892b0' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }

select.form-control option { background: var(--bg-surface); color: var(--text-primary); }

textarea.form-control { resize: vertical; min-height: 130px; }

.submit-btn {
  width: 100%;
  padding: 1rem;
  border-radius: 50px;
  background: var(--grad-primary);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all var(--duration-mid) var(--ease-out);
  box-shadow: var(--shadow-btn);
  letter-spacing: 0.3px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(108,99,255,0.5);
}

.submit-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* Success Message */
.form-success-message {
  display: none;
  text-align: center;
  padding: 3rem;
}

.success-icon-box {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(34,197,94,0.12);
  border: 2px solid rgba(34,197,94,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--brand-green);
  margin: 0 auto 1.5rem;
}

.form-success-message h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.form-success-message p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ─── FAQ SECTION ────────────────────────────────── */
.faq-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
}

.faq-container { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color var(--duration-mid) var(--ease-out);
}

.faq-item.active { border-color: rgba(108,99,255,0.3); }

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.4rem 1.75rem;
  cursor: pointer;
  transition: background var(--duration-fast) var(--ease-out);
}

.faq-question:hover { background: rgba(255,255,255,0.03); }

.faq-question h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.faq-icon {
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: transform var(--duration-mid) var(--ease-out);
  flex-shrink: 0;
}

.faq-item.active .faq-icon { transform: rotate(180deg); color: var(--brand-1); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.faq-answer-inner {
  padding: 0 1.75rem 1.5rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ─── FOOTER ─────────────────────────────────────── */
footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding: 5rem 0 2rem;
  position: relative;
  z-index: 5;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand .logo-img { height: 44px; margin-bottom: 1.2rem; }

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 280px;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--duration-fast) var(--ease-out);
}

.footer-links a:hover { color: var(--text-primary); }

.footer-contact-info { list-style: none; display: flex; flex-direction: column; gap: 0.85rem; }

.footer-contact-info li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.footer-contact-info li i {
  color: var(--brand-1);
  font-size: 0.8rem;
  margin-top: 0.2rem;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p { font-size: 0.85rem; color: var(--text-muted); }

.footer-bottom-links { display: flex; gap: 2rem; }

.footer-bottom-links a {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: color var(--duration-fast) var(--ease-out);
}

.footer-bottom-links a:hover { color: var(--brand-1); }

/* ─── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; gap: 4rem; text-align: center; }
  .hero-desc { max-width: 100%; }
  .hero-ctas { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-graphic { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .company-subgrids { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .section { padding: 5rem 0; }
  .nav-menu { display: none; flex-direction: column; position: fixed; inset: 0; background: rgba(5,8,16,0.98); backdrop-filter: blur(24px); padding: 6rem 2rem 2rem; gap: 0.5rem; align-items: center; justify-content: center; }
  .nav-menu.open { display: flex; }
  .nav-link { font-size: 1.2rem; padding: 0.75rem 1.5rem; }
  .mobile-toggle { display: block; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .companies-grid { grid-template-columns: 1fr; }
  .form-group-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .timeline::before, .timeline-progress-bar { left: 20px; }
  .timeline-container { width: 100%; left: 0; padding-left: 50px; padding-right: 0; }
  .timeline-container::after { left: 12px; right: auto; }
  .right-container { left: 0; }
  .company-detail-block { padding: 2.5rem 2rem; }
}

/* ─── EXPANDED NAV (more links) ──────────────────── */
.nav-menu { gap: 0.1rem; }
.nav-link { font-size: 0.8rem; padding: 0.4rem 0.75rem; }
.nav-cta { padding: 0.5rem 1.15rem; font-size: 0.8rem; margin-left: 0.25rem; }

/* ─── COMPANY CARDS GRID (companies page) ─────────── */
.companies-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2rem;
}

.company-ext-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  transition: all var(--duration-mid) var(--ease-out);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.company-ext-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-primary);
  opacity: 0;
  transition: opacity var(--duration-mid) var(--ease-out);
}

.company-ext-card:hover {
  border-color: rgba(108,99,255,0.3);
  transform: translateY(-8px);
  background: var(--bg-card-hover);
  box-shadow: 0 30px 70px rgba(0,0,0,0.4);
}

.company-ext-card:hover::before { opacity: 1; }

.ext-link-badge {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  background: rgba(108,99,255,0.12);
  border: 1px solid rgba(108,99,255,0.2);
  border-radius: 50px;
  padding: 0.2rem 0.6rem;
  font-size: 0.68rem;
  color: var(--brand-1);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.learn-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: auto;
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  background: var(--grad-primary);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all var(--duration-mid) var(--ease-out);
  width: fit-content;
  box-shadow: var(--shadow-btn);
}

.learn-more-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 35px rgba(108,99,255,0.45); }

/* ─── SERVICES SECTIONS ────────────────────────────── */
.services-tabs {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3.5rem;
}

.service-tab {
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-out);
  font-family: var(--font-body);
}

.service-tab.active, .service-tab:hover {
  background: var(--grad-primary);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-btn);
}

.services-3col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-column {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all var(--duration-mid) var(--ease-out);
}

.service-column:hover {
  border-color: rgba(108,99,255,0.2);
  transform: translateY(-5px);
}

.service-column-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.service-column-title i { color: var(--brand-1); }

.service-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }

.service-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  transition: color var(--duration-fast) var(--ease-out);
}

.service-list li:hover { color: var(--text-primary); }
.service-list li i { color: var(--brand-1); font-size: 0.75rem; flex-shrink: 0; }

/* ─── INDUSTRIES GRID ──────────────────────────────── */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.industry-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all var(--duration-mid) var(--ease-out);
  cursor: default;
}

.industry-card:hover {
  border-color: rgba(108,99,255,0.25);
  transform: translateY(-6px);
  background: var(--bg-card-hover);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.industry-icon {
  width: 70px; height: 70px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1.5rem;
  transition: all var(--duration-mid) var(--ease-out);
}

.industry-card:hover .industry-icon {
  transform: scale(1.1) rotate(-5deg);
}

.industry-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.industry-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── CAREERS PAGE ──────────────────────────────────── */
.job-opening-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  transition: all var(--duration-mid) var(--ease-out);
  margin-bottom: 1.2rem;
}

.job-opening-card:hover {
  border-color: rgba(108,99,255,0.25);
  transform: translateX(6px);
}

.job-tag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  background: rgba(108,99,255,0.1);
  border: 1px solid rgba(108,99,255,0.2);
  color: var(--brand-1);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ─── COMING SOON PAGE ──────────────────────────────── */
.coming-soon-wrap {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
}

.coming-soon-icon {
  font-size: 4rem;
  margin-bottom: 2rem;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── MAP EMBED ──────────────────────────────────────── */
.map-wrap {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  height: 320px;
  background: var(--bg-card);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: invert(0.9) hue-rotate(180deg) saturate(0.7);
}

/* ─── FOOTER EXPANDED ────────────────────────────────── */
.footer-grid {
  grid-template-columns: 1.8fr 1fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
}

.footer-social {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}

.footer-social-icon {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: all var(--duration-fast) var(--ease-out);
}

.footer-social-icon:hover {
  background: var(--brand-1);
  border-color: var(--brand-1);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(108,99,255,0.4);
}

/* WhatsApp green */
.footer-social-icon.wa:hover { background: #25d366; border-color: #25d366; box-shadow: 0 6px 20px rgba(37,211,102,0.4); }
/* YouTube red */
.footer-social-icon.yt:hover { background: #ff0000; border-color: #ff0000; box-shadow: 0 6px 20px rgba(255,0,0,0.4); }
/* LinkedIn blue */
.footer-social-icon.li:hover { background: #0077b5; border-color: #0077b5; box-shadow: 0 6px 20px rgba(0,119,181,0.4); }

@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .companies-card-grid { grid-template-columns: 1fr; }
  .services-3col { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
