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

:root {
  --navy:    #050d1a;
  --dark:    #0a1628;
  --mid:     #0f2240;
  --accent:  #0e7aff;
  --accent2: #00c4ff;
  --gold:    #f0a500;
  --text:    #c8d8f0;
  --white:   #ffffff;
  --card-bg: rgba(14, 34, 64, 0.75);
  --border:  rgba(14, 122, 255, 0.25);
  --radius:  10px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  background: var(--navy);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

a { color: var(--accent2); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--white); }

img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  color: var(--white);
  line-height: 1.25;
  font-weight: 700;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

p { margin-bottom: 1rem; }

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

.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }

.label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 1rem;
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== NAVIGATION ===== */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 1.25rem 0;
  transition: background var(--transition), box-shadow var(--transition);
}

nav.scrolled {
  background: rgba(5, 13, 26, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-90deg);
  font-size: 1rem;
  font-weight: 900;
  color: white;
}

.logo span { color: var(--accent2); }

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

.nav-links a {
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color var(--transition);
}

.nav-links a:hover,
.nav-links a.active { color: var(--white); }

.nav-links a.active {
  border-bottom: 2px solid var(--accent2);
  padding-bottom: 2px;
}

.nav-actions { display: flex; align-items: center; gap: 1rem; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.4rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text);
}

.btn-outline:hover {
  border-color: var(--accent2);
  color: var(--white);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(14, 122, 255, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(14, 122, 255, 0.5);
  color: var(--white);
}

.btn-large {
  padding: 0.9rem 2rem;
  font-size: 1rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.hero-bg video,
.hero-bg .hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stars {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(14, 122, 255, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(0, 196, 255, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(14, 122, 255, 0.06) 0%, transparent 40%);
}

.star-field {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 10% 15%, rgba(255,255,255,0.8) 0%, transparent 100%),
    radial-gradient(1px 1px at 25% 40%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 45% 10%, rgba(255,255,255,0.9) 0%, transparent 100%),
    radial-gradient(1px 1px at 60% 35%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 75% 60%, rgba(255,255,255,0.7) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 90% 20%, rgba(255,255,255,0.8) 0%, transparent 100%),
    radial-gradient(1px 1px at 15% 70%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 35% 85%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 55% 55%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 80% 90%, rgba(255,255,255,0.7) 0%, transparent 100%),
    radial-gradient(1px 1px at 5% 50%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 95% 45%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 40% 25%, rgba(255,255,255,0.7) 0%, transparent 100%),
    radial-gradient(1px 1px at 70% 75%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 20% 95%, rgba(255,255,255,0.6) 0%, transparent 100%);
}

.globe-visual {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 55vw;
  max-width: 800px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%,
    rgba(14, 122, 255, 0.35) 0%,
    rgba(0, 50, 120, 0.55) 40%,
    rgba(5, 13, 26, 0.85) 70%,
    transparent 100%
  );
  box-shadow:
    inset -40px -40px 80px rgba(0,0,0,0.6),
    0 0 80px rgba(14, 122, 255, 0.2),
    0 0 160px rgba(14, 122, 255, 0.1);
  overflow: hidden;
}

.globe-grid {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 29px, rgba(14,122,255,0.12) 30px),
    repeating-linear-gradient(90deg, transparent, transparent 29px, rgba(14,122,255,0.12) 30px);
  border-radius: 50%;
  animation: rotate 60s linear infinite;
}

.globe-arc {
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(0, 196, 255, 0.2);
  border-radius: 50%;
  animation: pulse-ring 4s ease-in-out infinite;
}

.globe-arc:nth-child(2) { inset: 25%; animation-delay: 1.3s; border-color: rgba(14, 122, 255, 0.2); }
.globe-arc:nth-child(3) { inset: 40%; animation-delay: 2.6s; border-color: rgba(0, 196, 255, 0.15); }

@keyframes rotate { to { transform: rotate(360deg); } }
@keyframes pulse-ring {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.02); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 650px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(14, 122, 255, 0.1);
  border: 1px solid rgba(14, 122, 255, 0.3);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent2);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent2);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}

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

.hero h1 { margin-bottom: 1.25rem; }

.hero-sub {
  font-size: 1.15rem;
  color: var(--text);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.hero-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.hero-stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.82rem;
  color: var(--text);
  margin-top: 0.3rem;
  opacity: 0.8;
}

/* ===== TICKER ===== */
.ticker {
  background: rgba(14, 122, 255, 0.07);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.85rem 0;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  gap: 3rem;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--accent2);
  text-transform: uppercase;
  opacity: 0.75;
  flex-shrink: 0;
}

.ticker-dot { width: 4px; height: 4px; background: var(--accent); border-radius: 50%; }

@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== SECTION DIVIDERS ===== */
.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

/* ===== TWO-COL LAYOUT ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

/* ===== VISUAL CARDS ===== */
.visual-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.visual-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent2), transparent);
}

/* ===== DATA VISUAL ===== */
.data-bars {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.data-bar-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.data-bar-label {
  font-size: 0.78rem;
  color: var(--text);
  width: 90px;
  flex-shrink: 0;
}

.data-bar-track {
  flex: 1;
  height: 8px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  overflow: hidden;
}

.data-bar-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  animation: bar-grow 1.5s ease-out forwards;
  transform-origin: left;
}

@keyframes bar-grow { from { width: 0 !important; } }

.data-bar-val {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent2);
  width: 36px;
  text-align: right;
}

.chart-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

/* ===== PULSE NETWORK ===== */
.network-visual {
  position: relative;
  height: 320px;
}

.network-node {
  position: absolute;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
}

.network-node.hub {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 30px rgba(14, 122, 255, 0.5);
  font-size: 0.7rem;
  animation: hub-pulse 3s ease-in-out infinite;
}

@keyframes hub-pulse {
  0%, 100% { box-shadow: 0 0 30px rgba(14,122,255,0.5); }
  50% { box-shadow: 0 0 60px rgba(14,122,255,0.8), 0 0 100px rgba(0,196,255,0.3); }
}

.network-node.sat {
  width: 78px;
  height: 78px;
  background: var(--mid);
  border: 1.5px solid var(--accent);
  font-size: 0.62rem;
  line-height: 1.2;
  padding: 4px;
}

.network-node.sat:nth-child(2)  { top: 2%;    left: 40.7%; }
.network-node.sat:nth-child(3)  { top: 12.9%; left: 67.3%; }
.network-node.sat:nth-child(4)  { top: 46.7%; left: 73.9%; }
.network-node.sat:nth-child(5)  { top: 73.8%; left: 55.5%; }
.network-node.sat:nth-child(6)  { top: 73.8%; left: 25.9%; }
.network-node.sat:nth-child(7)  { top: 46.7%; left: 7.5%; }
.network-node.sat:nth-child(8)  { top: 12.9%; left: 14.1%; }

.network-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, rgba(14,122,255,0.5), transparent);
  transform-origin: left center;
  animation: line-pulse 3s ease-in-out infinite;
}

@keyframes line-pulse { 0%, 100% { opacity: 0.4; } 50% { opacity: 0.9; } }

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.service-card:hover {
  border-color: rgba(14, 122, 255, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(14, 122, 255, 0.15);
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

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

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(14, 122, 255, 0.12);
  border: 1px solid rgba(14, 122, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.service-card h3 { font-size: 1.05rem; margin-bottom: 0.75rem; }
.service-card p { font-size: 0.88rem; color: var(--text); opacity: 0.85; margin: 0; }

/* ===== STATS BAND ===== */
.stats-band {
  background: linear-gradient(135deg, rgba(14, 34, 64, 0.9), rgba(10, 22, 40, 0.9));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-num {
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--white), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text);
  opacity: 0.75;
}

/* ===== APPROACH SECTION ===== */
.approach-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.approach-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.approach-num {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(14, 122, 255, 0.12);
  border: 1px solid rgba(14, 122, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--accent2);
  flex-shrink: 0;
}

.approach-text h4 { font-size: 1rem; margin-bottom: 0.4rem; }
.approach-text p { font-size: 0.88rem; margin: 0; opacity: 0.8; }

/* ===== FOUNDERS PAGE ===== */
.founders-hero {
  padding: 160px 0 80px;
  text-align: center;
}

.founders-hero h1 { margin-bottom: 1.25rem; }
.founders-hero p { font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

.founders-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.founder-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all var(--transition);
  backdrop-filter: blur(8px);
}

.founder-card:hover {
  border-color: rgba(14, 122, 255, 0.5);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(14, 122, 255, 0.15);
}

.founder-avatar {
  width: 100%;
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
}

.founder-avatar-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.founder-initials {
  font-size: 4rem;
  font-weight: 800;
  color: rgba(255,255,255,0.15);
}

.founder-info { padding: 2rem; }

.founder-role {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent2);
  background: rgba(14, 122, 255, 0.1);
  border: 1px solid rgba(14, 122, 255, 0.2);
  border-radius: 4px;
  padding: 0.25rem 0.7rem;
  margin-bottom: 0.75rem;
}

.founder-info h3 { font-size: 1.3rem; margin-bottom: 0.75rem; }
.founder-bio { font-size: 0.88rem; line-height: 1.75; opacity: 0.85; margin-bottom: 1.5rem; }

.founder-links { display: flex; gap: 0.75rem; }

.founder-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--text);
  transition: all var(--transition);
}

.founder-link:hover {
  background: rgba(14, 122, 255, 0.15);
  border-color: var(--accent2);
  color: var(--accent2);
}

.founder-card.ceo .founder-avatar { background: linear-gradient(135deg, #0e3580 0%, #050d1a 100%); }
.founder-card.cpo .founder-avatar { background: linear-gradient(135deg, #0a4d6e 0%, #050d1a 100%); }
.founder-card.cso .founder-avatar { background: linear-gradient(135deg, #1a1550 0%, #050d1a 100%); }

/* ===== SOLUTIONS PAGE ===== */
.page-hero {
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
}

.page-hero h1 { margin-bottom: 1.25rem; }
.page-hero p { font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

.solutions-list { display: flex; flex-direction: column; gap: 2rem; }

.solution-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  align-items: start;
  transition: all var(--transition);
  backdrop-filter: blur(8px);
}

.solution-item:hover {
  border-color: rgba(14, 122, 255, 0.4);
  box-shadow: 0 8px 30px rgba(14, 122, 255, 0.1);
}

.solution-num {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(14, 122, 255, 0.2);
  line-height: 1;
}

.solution-body h3 { margin-bottom: 0.75rem; }
.solution-body p { font-size: 0.92rem; opacity: 0.85; margin-bottom: 1rem; }

.solution-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }

.tag {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 4px;
  background: rgba(14, 122, 255, 0.1);
  border: 1px solid rgba(14, 122, 255, 0.2);
  color: var(--accent2);
}

/* ===== DATA PRIVACY PAGE ===== */
.privacy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.privacy-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  backdrop-filter: blur(8px);
}

.privacy-card h3 { font-size: 1.1rem; margin-bottom: 0.75rem; }
.privacy-card p { font-size: 0.88rem; opacity: 0.85; margin: 0; }

/* ===== CTA BAND ===== */
.cta-band {
  background: linear-gradient(135deg, rgba(14, 122, 255, 0.12) 0%, rgba(0, 196, 255, 0.06) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 0;
  text-align: center;
}

.cta-band h2 { margin-bottom: 1rem; }
.cta-band p { font-size: 1.05rem; max-width: 520px; margin: 0 auto 2rem; }

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}

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

.footer-brand p {
  font-size: 0.88rem;
  opacity: 0.7;
  margin: 1rem 0 1.5rem;
  max-width: 280px;
}

.footer-social { display: flex; gap: 0.75rem; }

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  color: var(--text);
  transition: all var(--transition);
}

.social-link:hover {
  border-color: var(--accent2);
  color: var(--accent2);
  background: rgba(14, 122, 255, 0.1);
}

.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a { font-size: 0.88rem; color: var(--text); opacity: 0.7; transition: all var(--transition); }
.footer-links a:hover { opacity: 1; color: var(--accent2); }

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

.footer-newsletter { margin-top: 1.5rem; }
.footer-newsletter p { font-size: 0.82rem; opacity: 0.7; margin-bottom: 0.75rem; }

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.6rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--white);
  font-size: 0.85rem;
  outline: none;
  transition: border-color var(--transition);
}

.newsletter-form input:focus { border-color: var(--accent); }
.newsletter-form input::placeholder { color: rgba(200,216,240,0.4); }

.newsletter-form button {
  padding: 0.6rem 1.2rem;
  background: var(--accent);
  border: none;
  border-radius: 6px;
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
}

.newsletter-form button:hover { background: var(--accent2); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .two-col { grid-template-columns: 1fr; gap: 3rem; }
  .two-col.reverse { direction: ltr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .founders-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
  nav.menu-open .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(5, 13, 26, 0.98);
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border);
  }
  nav.menu-open .nav-actions {
    display: flex;
    position: fixed;
    top: calc(70px + 200px);
    left: 0;
    right: 0;
    background: rgba(5, 13, 26, 0.98);
    padding: 1rem 2rem 2rem;
    border-bottom: 1px solid var(--border);
    flex-direction: column;
  }
  .section { padding: 60px 0; }
  .hero-stats { gap: 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .founders-grid { grid-template-columns: 1fr; }
  .privacy-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .globe-visual { width: 80vw; right: -30%; opacity: 0.4; }
  .solution-item { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}
