/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #04070d;
  color: #d9e6f2;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }

/* ---------- Background layers ---------- */
.bg-grid {
  position: fixed; inset: 0;
  background-image:
    linear-gradient(rgba(0,224,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,224,255,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 30%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, #000 30%, transparent 80%);
  z-index: -3;
  pointer-events: none;
}
.bg-scan {
  position: fixed; inset: 0;
  background: repeating-linear-gradient(
    0deg, rgba(255,255,255,0.015) 0 1px, transparent 1px 3px
  );
  z-index: -2;
  pointer-events: none;
}
#particles {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
}
body::before {
  content: '';
  position: fixed;
  top: -20%; left: 50%;
  width: 1200px; height: 800px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(0,120,255,0.25), transparent 60%);
  filter: blur(60px);
  z-index: -2; pointer-events: none;
}
body::after {
  content: '';
  position: fixed;
  bottom: -30%; right: -10%;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(120,0,255,0.18), transparent 60%);
  filter: blur(80px);
  z-index: -2; pointer-events: none;
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(4,7,13,0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,224,255,0.1);
}
.nav-inner {
  max-width: 1320px; margin: 0 auto; padding: 18px 32px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-text {
  font-family: 'Orbitron', sans-serif;
  font-weight: 800; font-size: 15px;
  letter-spacing: 0.5px;
  white-space: nowrap;
  background: linear-gradient(90deg, #fff, #00e0ff);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.nav-links { display: flex; gap: 36px; }
.nav-links a {
  font-size: 14px; font-weight: 500;
  color: rgba(217,230,242,0.7);
  position: relative;
  transition: color 0.25s;
}
.nav-links a::after {
  content: ''; position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px; background: #00e0ff;
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s;
}
.nav-links a:hover { color: #00e0ff; }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.lang-switch {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: rgba(0,224,255,0.08);
  border: 1px solid rgba(0,224,255,0.25);
  border-radius: 999px;
  color: #d9e6f2; font-size: 13px; font-weight: 600;
  cursor: pointer;
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 1px;
  transition: all 0.25s;
}
.lang-switch:hover {
  background: rgba(0,224,255,0.18);
  border-color: rgba(0,224,255,0.5);
  box-shadow: 0 0 16px rgba(0,224,255,0.3);
}
.lang-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #00e0ff;
  box-shadow: 0 0 8px #00e0ff;
}
.cta-mini {
  padding: 8px 18px;
  background: linear-gradient(135deg, #00e0ff, #0066ff);
  color: #04070d;
  border-radius: 999px;
  font-size: 13px; font-weight: 700;
  transition: transform 0.2s, box-shadow 0.2s;
}
.cta-mini:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,224,255,0.4);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 160px 32px 100px;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-ring {
  position: absolute;
  top: 50%; left: 50%;
  width: 700px; height: 700px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(0,224,255,0.15);
  border-radius: 50%;
  animation: spin 60s linear infinite;
}
.hero-ring::before, .hero-ring::after {
  content: ''; position: absolute;
  width: 8px; height: 8px; border-radius: 50%;
  background: #00e0ff;
  box-shadow: 0 0 16px #00e0ff;
}
.hero-ring::before { top: -4px; left: 50%; }
.hero-ring::after { bottom: -4px; right: 30%; }
.hero-ring.r2 {
  width: 1000px; height: 1000px;
  border-color: rgba(0,224,255,0.07);
  border-style: dashed;
  animation: spin 90s linear infinite reverse;
}
@keyframes spin { to { transform: translate(-50%,-50%) rotate(360deg); } }

.hero-inner { position: relative; z-index: 2; max-width: 1000px; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 18px;
  background: rgba(0,224,255,0.06);
  border: 1px solid rgba(0,224,255,0.2);
  border-radius: 999px;
  font-size: 13px; font-weight: 500;
  color: #8fd8ff;
  margin-bottom: 32px;
}
.hero-tag .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #00ff9d;
  box-shadow: 0 0 10px #00ff9d;
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(0.85)} }

.hero-title {
  font-family: 'Orbitron', 'Noto Sans SC', sans-serif;
  font-size: clamp(40px, 7vw, 86px);
  line-height: 1.05;
  font-weight: 900;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-title .line {
  display: block;
  color: #fff;
}
.hero-title .glow {
  background: linear-gradient(120deg, #00e0ff 0%, #0078ff 50%, #a25aff 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 30px rgba(0,224,255,0.45));
}
.hero-sub {
  font-size: clamp(15px, 1.4vw, 18px);
  color: rgba(217,230,242,0.75);
  max-width: 680px; margin: 0 auto 40px;
}
.hero-cta { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; margin-bottom: 80px; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #00e0ff, #0066ff);
  color: #04070d;
  border-radius: 999px;
  font-size: 15px; font-weight: 700;
  transition: all 0.3s;
  position: relative; overflow: hidden;
}
.btn-primary em {
  font-style: normal;
  transition: transform 0.3s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(0,224,255,0.5);
}
.btn-primary:hover em { transform: translateX(4px); }
.btn-ghost {
  padding: 16px 32px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(0,224,255,0.3);
  color: #d9e6f2;
  border-radius: 999px;
  font-size: 15px; font-weight: 600;
  transition: all 0.25s;
}
.btn-ghost:hover {
  background: rgba(0,224,255,0.1);
  border-color: rgba(0,224,255,0.6);
}

/* Live data strip */
.live-strip {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 28px 36px;
  background: rgba(8,14,28,0.6);
  border: 1px solid rgba(0,224,255,0.15);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 20px 60px rgba(0,30,80,0.4);
}
.live-item { text-align: center; }
.live-label {
  font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px;
  color: rgba(143,216,255,0.7);
  margin-bottom: 6px;
}
.live-num {
  font-family: 'Orbitron', sans-serif;
  font-size: 22px; font-weight: 700;
  color: #00e0ff;
  text-shadow: 0 0 12px rgba(0,224,255,0.5);
}
.live-sep {
  width: 1px; height: 30px;
  background: linear-gradient(180deg, transparent, rgba(0,224,255,0.3), transparent);
}
@media (max-width: 820px) {
  .live-strip {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .live-sep { display: none; }
}

/* ---------- Section Heads ---------- */
.section-head { text-align: center; margin-bottom: 64px; }
.badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(0,224,255,0.08);
  border: 1px solid rgba(0,224,255,0.25);
  border-radius: 999px;
  font-family: 'Orbitron', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 2px;
  color: #00e0ff;
  margin-bottom: 18px;
}
.section-head h2 {
  font-family: 'Orbitron', 'Noto Sans SC', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.section-head p {
  color: rgba(217,230,242,0.6);
  font-size: 15px;
  max-width: 620px;
  margin: 0 auto;
}

/* ---------- Stats ---------- */
.stats { padding: 100px 0; }
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat-card {
  position: relative;
  padding: 36px 24px;
  background: linear-gradient(180deg, rgba(0,40,80,0.25), rgba(0,10,30,0.4));
  border: 1px solid rgba(0,224,255,0.15);
  border-radius: 18px;
  text-align: center;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}
.stat-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0, rgba(0,224,255,0.18), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s;
}
.stat-card:hover { transform: translateY(-4px); border-color: rgba(0,224,255,0.4); }
.stat-card:hover::before { opacity: 1; }
.stat-num {
  font-family: 'Orbitron', sans-serif;
  font-size: 42px; font-weight: 800;
  background: linear-gradient(135deg, #fff, #00e0ff);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  margin-bottom: 8px;
  position: relative;
}
.stat-label {
  font-size: 13px;
  color: rgba(143,216,255,0.7);
  letter-spacing: 1px;
  position: relative;
}
@media (max-width: 820px) { .stat-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Services ---------- */
.services { padding: 100px 0; }
.srv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.srv-card {
  position: relative;
  padding: 32px 28px;
  background: linear-gradient(180deg, rgba(10,20,40,0.55), rgba(4,8,18,0.7));
  border: 1px solid rgba(0,224,255,0.12);
  border-radius: 18px;
  transition: all 0.35s;
  overflow: hidden;
}
.srv-card::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  background: linear-gradient(135deg, transparent, rgba(0,224,255,0.4), transparent);
  border-radius: 18px;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s;
}
.srv-card::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0,224,255,0.08), transparent);
  transition: left 0.7s;
}
.srv-card:hover { transform: translateY(-6px); border-color: rgba(0,224,255,0.35); box-shadow: 0 20px 60px rgba(0,40,100,0.3); }
.srv-card:hover::after { left: 130%; }
.srv-ico {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,224,255,0.08);
  border: 1px solid rgba(0,224,255,0.2);
  border-radius: 14px;
  color: #00e0ff;
  margin-bottom: 20px;
  transition: all 0.3s;
}
.srv-ico svg { width: 28px; height: 28px; }
.srv-card:hover .srv-ico {
  background: rgba(0,224,255,0.18);
  box-shadow: 0 0 20px rgba(0,224,255,0.4);
}
.srv-card h3 {
  font-family: 'Orbitron', 'Noto Sans SC', sans-serif;
  font-size: 19px; font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.srv-card p {
  font-size: 14px;
  color: rgba(217,230,242,0.65);
  line-height: 1.65;
  margin-bottom: 18px;
}
.srv-tag {
  display: inline-block;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #00e0ff;
  background: rgba(0,224,255,0.06);
  border: 1px solid rgba(0,224,255,0.18);
  border-radius: 999px;
}
@media (max-width: 980px) { .srv-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .srv-grid { grid-template-columns: 1fr; } }

/* ---------- Product Categories ---------- */
.products { padding: 80px 0 40px; }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.cat-card {
  padding: 24px 18px;
  text-align: center;
  background: linear-gradient(180deg, rgba(0,30,70,0.3), rgba(0,8,20,0.5));
  border: 1px solid rgba(0,224,255,0.12);
  border-radius: 14px;
  transition: all 0.3s;
}
.cat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,224,255,0.4);
  box-shadow: 0 10px 30px rgba(0,40,100,0.3);
}
.cat-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 11px;
  letter-spacing: 0.5px;
  color: #00e0ff;
}
.cat-grid .cat-group {
  grid-column: span 6;
  text-align: left;
}
.cat-group-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.cat-group-head .cat-ico {
  font-size: 28px;
  margin-bottom: 0;
}
.cat-group-head h4 {
  font-size: 15px;
  margin-bottom: 4px;
}
.cat-group-head p {
  font-size: 12px;
  line-height: 1.5;
}
.app-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.app-item {
  display: flex;
  flex-direction: column;
  padding: 18px;
  border-radius: 12px;
  background: rgba(0, 20, 45, 0.45);
  border: 1px solid rgba(0, 224, 255, 0.12);
  text-decoration: none;
  color: inherit;
  transition: all 0.3s;
}
.app-item:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 224, 255, 0.4);
  box-shadow: 0 10px 30px rgba(0, 40, 100, 0.3);
}
.app-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.app-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  flex: 0 0 auto;
  box-shadow: 0 6px 18px rgba(0, 40, 100, 0.45);
}
.app-title {
  flex: 1 1 auto;
  min-width: 0;
}
.app-title h4 {
  margin-bottom: 4px;
}
.app-sub {
  font-size: 11px;
  color: rgba(0, 224, 255, 0.7);
  letter-spacing: 0.3px;
}
.app-badge {
  flex: 0 0 auto;
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 999px;
  color: #00e0ff;
  border: 1px solid rgba(0, 224, 255, 0.35);
  background: rgba(0, 224, 255, 0.08);
}
.app-card p {
  margin-bottom: 14px;
}
.app-meta {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
  margin: 0;
}
.app-meta li {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 11px;
  padding-bottom: 5px;
  border-bottom: 1px dashed rgba(0, 224, 255, 0.12);
}
.app-k {
  color: rgba(217, 230, 242, 0.45);
}
.app-v {
  color: #d9e6f2;
  text-align: right;
}
.app-item .cat-link {
  margin-top: 14px;
}
@media (max-width: 980px) {
  .cat-grid .cat-group {
    grid-column: span 3;
  }
}
@media (max-width: 560px) {
  .cat-grid .cat-group {
    grid-column: span 2;
  }
  .app-list {
    grid-template-columns: 1fr;
  }
  .app-meta {
    grid-template-columns: 1fr;
  }
}
.cat-ico {
  font-size: 32px;
  margin-bottom: 10px;
  filter: drop-shadow(0 0 8px rgba(0,224,255,0.5));
}
.cat-card h4 {
  font-family: 'Orbitron', 'Noto Sans SC', sans-serif;
  font-size: 14px;
  color: #fff;
  margin-bottom: 6px;
  font-weight: 700;
}
.cat-card p {
  font-size: 11px;
  color: rgba(217,230,242,0.55);
  line-height: 1.4;
}
@media (max-width: 980px) { .cat-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Inquiry form ---------- */
.inquiry { padding: 80px 0 60px; }
.inquiry-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  padding: 50px;
  background: linear-gradient(135deg, rgba(0,40,100,0.3), rgba(20,0,60,0.25));
  border: 1px solid rgba(0,224,255,0.25);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}
.inquiry-card::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,224,255,0.18), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}
.inquiry-left { position: relative; z-index: 1; }
.inquiry-left .badge { margin-bottom: 14px; }
.inquiry-left h2 {
  font-family: 'Orbitron', 'Noto Sans SC', sans-serif;
  font-size: clamp(22px, 2.6vw, 30px);
  color: #fff;
  margin-bottom: 12px;
  font-weight: 800;
}
.inquiry-left > p {
  color: rgba(217,230,242,0.7);
  font-size: 14px;
  margin-bottom: 22px;
}
.inq-perks {
  list-style: none;
  margin-bottom: 28px;
}
.inq-perks li {
  padding: 8px 0;
  font-size: 13px;
  color: rgba(217,230,242,0.85);
  border-bottom: 1px dashed rgba(0,224,255,0.1);
}
.inq-perks li:last-child { border-bottom: none; }
.inq-contact {
  padding: 16px 18px;
  background: rgba(0,224,255,0.06);
  border: 1px solid rgba(0,224,255,0.15);
  border-radius: 12px;
  font-size: 13px;
  color: #8fd8ff;
  font-family: 'Inter', sans-serif;
}
.inq-contact div { margin: 4px 0; }
.inq-contact span { color: rgba(217,230,242,0.6); margin-right: 4px; }

.inquiry-form { position: relative; z-index: 1; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.form-field { display: flex; flex-direction: column; margin-bottom: 14px; }
.form-row .form-field { margin-bottom: 0; }
.form-field label {
  font-size: 12px;
  color: rgba(143,216,255,0.85);
  margin-bottom: 6px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.form-field input,
.form-field select,
.form-field textarea {
  padding: 12px 14px;
  background: rgba(4,10,22,0.6);
  border: 1px solid rgba(0,224,255,0.18);
  border-radius: 10px;
  color: #d9e6f2;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: all 0.2s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(0,224,255,0.6);
  box-shadow: 0 0 0 3px rgba(0,224,255,0.1);
  background: rgba(4,10,22,0.85);
}
.form-field textarea { resize: vertical; min-height: 90px; }
.form-field select option { background: #04070d; color: #d9e6f2; }
.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
  border: none;
  cursor: pointer;
  padding: 14px 32px;
  font-family: inherit;
}
.form-note {
  margin-top: 12px;
  font-size: 11px;
  color: rgba(217,230,242,0.45);
  text-align: center;
}
@media (max-width: 880px) {
  .inquiry-card { grid-template-columns: 1fr; padding: 32px 24px; gap: 30px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-row .form-field { margin-bottom: 14px; }
}

/* ---------- Network Map ---------- */
.network { padding: 100px 0 120px; }
.map-wrap {
  position: relative;
  background: linear-gradient(180deg, rgba(0,20,50,0.4), rgba(0,5,15,0.5));
  border: 1px solid rgba(0,224,255,0.15);
  border-radius: 24px;
  padding: 30px;
  overflow: hidden;
}
.map-wrap::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(0,224,255,0.12), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(120,0,255,0.1), transparent 50%);
  pointer-events: none;
}
.world-map { width: 100%; height: auto; display: block; position: relative; z-index: 1; }
.world-map circle.node-pulse {
  animation: nodePulse 2s ease-in-out infinite;
  transform-origin: center;
  transform-box: fill-box;
}
@keyframes nodePulse {
  0%,100% { opacity: 0.9; }
  50% { opacity: 0.3; }
}
.world-map .arc-path {
  stroke-dasharray: 6 8;
  animation: dash 3s linear infinite;
}
@keyframes dash { to { stroke-dashoffset: -100; } }
.map-legend {
  position: absolute;
  bottom: 22px; left: 30px;
  display: flex; gap: 22px;
  padding: 12px 18px;
  background: rgba(4,10,22,0.7);
  border: 1px solid rgba(0,224,255,0.15);
  border-radius: 12px;
  backdrop-filter: blur(12px);
  font-size: 12px;
  z-index: 2;
}
.leg-item { display: flex; align-items: center; gap: 8px; color: rgba(217,230,242,0.8); }
.leg-item i { width: 10px; height: 10px; border-radius: 50%; }
.dot-blue { background: #0066ff; box-shadow: 0 0 8px #0066ff; }
.dot-cyan { background: #00e0ff; box-shadow: 0 0 8px #00e0ff; }
.dot-line { width: 18px !important; height: 1px !important; background: #00e0ff; border-radius: 0 !important; }

/* ---------- CTA ---------- */
.cta { padding: 80px 0; }
.cta-card {
  position: relative;
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px;
  padding: 50px 60px;
  background: linear-gradient(135deg, rgba(0,60,150,0.35), rgba(50,0,120,0.25));
  border: 1px solid rgba(0,224,255,0.3);
  border-radius: 24px;
  overflow: hidden;
}
.cta-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(0,224,255,0.25), transparent 50%);
}
.cta-orb {
  position: absolute;
  right: -100px; top: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,224,255,0.4), transparent 60%);
  filter: blur(30px);
}
.cta-text { position: relative; z-index: 1; }
.cta-text h2 {
  font-family: 'Orbitron', 'Noto Sans SC', sans-serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.cta-text p { color: rgba(217,230,242,0.75); font-size: 15px; }
.cta-actions { position: relative; z-index: 1; }
@media (max-width: 768px) {
  .cta-card { flex-direction: column; text-align: center; padding: 40px 30px; }
}

/* ---------- Footer ---------- */
.footer {
  padding: 70px 0 24px;
  border-top: 1px solid rgba(0,224,255,0.1);
  background: rgba(2,5,10,0.6);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.foot-col h4 {
  font-family: 'Orbitron', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  color: #00e0ff;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.foot-col p, .foot-col a {
  display: block;
  font-size: 13px;
  color: rgba(217,230,242,0.6);
  margin-bottom: 10px;
  transition: color 0.2s;
}
.foot-col a:hover { color: #00e0ff; }
.foot-col .logo-text { margin-bottom: 14px; }
.foot-bottom {
  border-top: 1px solid rgba(0,224,255,0.08);
  padding-top: 22px;
  display: flex; justify-content: space-between;
  font-size: 12px;
  color: rgba(217,230,242,0.4);
  max-width: 1240px; margin: 0 auto;
  padding-left: 32px; padding-right: 32px;
}
.foot-mini { font-family: 'Orbitron', sans-serif; letter-spacing: 1.5px; }
@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .foot-bottom { flex-direction: column; gap: 10px; }
  .nav-links { display: none; }
}

/* ---------- Fade on scroll ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
