*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #070b14;
  --bg2: #0d1220;
  --bg3: #111827;
  --card: #0f1623;
  --card-border: #1e2a3a;
  --cyan: #00d4d4;
  --cyan-dark: #00aaaa;
  --text: #e8eaf0;
  --muted: #8a95a8;
  --white: #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 64px;
  background: rgba(7, 11, 20, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(30, 42, 58, 0.5);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
}

.nav-logo .logo-icon {
  width: 36px; height: 36px;
  background: var(--cyan);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

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

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color .2s;
}

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

.nav-cta {
  background: var(--cyan);
  color: var(--bg) !important;
  padding: 9px 22px;
  border-radius: 8px;
  font-weight: 600 !important;
  font-size: 14px !important;
  text-decoration: none;
  transition: background .2s, transform .15s;
}

.nav-cta:hover { background: var(--cyan-dark); transform: translateY(-1px); }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 48px 80px;
  background: radial-gradient(ellipse 60% 50% at 70% 50%, rgba(0, 212, 212, 0.07) 0%, transparent 70%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 20%; right: 15%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0, 212, 212, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 212, 212, 0.1);
  border: 1px solid rgba(0, 212, 212, 0.25);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 13px;
  color: var(--cyan);
  margin-bottom: 32px;
  width: fit-content;
}

.hero-badge::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--cyan);
  border-radius: 50%;
}

.hero h1 {
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 8px;
}

.hero h1 .accent { color: var(--cyan); display: block; }

.hero p {
  max-width: 520px;
  color: var(--muted);
  font-size: 16px;
  margin: 20px 0 40px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cyan);
  color: var(--bg);
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: background .2s, transform .15s, box-shadow .2s;
}

.btn-primary:hover {
  background: var(--cyan-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 212, 212, 0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text);
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid var(--card-border);
  transition: border-color .2s, color .2s, transform .15s;
}

.btn-secondary:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  transform: translateY(-2px);
}

/* STATS */
.stats {
  display: flex;
  gap: 80px;
  margin-top: 80px;
}

.stat-value {
  font-size: 42px;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  color: var(--muted);
  margin-top: 6px;
}

/* SECTIONS */
section { padding: 100px 48px; }

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

.section-header h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
}

.section-header p {
  color: var(--muted);
  font-size: 16px;
  max-width: 500px;
  margin: 0 auto;
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}

.service-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 36px;
  transition: border-color .25s, transform .2s, box-shadow .25s;
}

.service-card:hover {
  border-color: rgba(0, 212, 212, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.service-icon {
  width: 52px; height: 52px;
  background: rgba(0, 212, 212, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--cyan);
}

.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.service-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

/* CTA SECTION */
.cta-section {
  background: var(--bg2);
}

.cta-inner {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 56px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.cta-inner h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.cta-inner p {
  color: var(--muted);
  font-size: 15px;
}

.contact-cards { display: flex; flex-direction: column; gap: 16px; }

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg3);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 20px 24px;
  text-decoration: none;
  transition: border-color .2s, transform .15s;
}

.contact-card:hover {
  border-color: rgba(0, 212, 212, 0.4);
  transform: translateX(4px);
}

.contact-card-icon {
  width: 44px; height: 44px;
  background: rgba(0, 212, 212, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-size: 18px;
  flex-shrink: 0;
}

.contact-card-label {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 3px;
}

.contact-card-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
}

/* FOOTER */
footer {
  background: var(--bg);
  border-top: 1px solid var(--card-border);
  padding: 56px 48px 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .nav-logo { margin-bottom: 12px; }
.footer-brand p { color: var(--muted); font-size: 14px; }

.footer-col h4 {
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

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

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  transition: color .2s;
}

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

.footer-contact { display: flex; flex-direction: column; gap: 10px; }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
  transition: color .2s;
}

.footer-contact-item:hover { color: var(--cyan); }

.footer-contact-item span:first-child { font-size: 16px; }

.footer-bottom {
  border-top: 1px solid var(--card-border);
  padding-top: 24px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}

/* LEGAL PAGES */
.legal-hero {
  padding: 140px 48px 60px;
  background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(0, 212, 212, 0.06) 0%, transparent 70%);
  text-align: center;
}

.legal-hero .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 212, 212, 0.1);
  border: 1px solid rgba(0, 212, 212, 0.25);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 13px;
  color: var(--cyan);
  margin-bottom: 24px;
}

.legal-hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.legal-hero .updated {
  color: var(--muted);
  font-size: 14px;
}

.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 48px 100px;
}

.legal-tldr {
  background: rgba(0, 212, 212, 0.07);
  border: 1px solid rgba(0, 212, 212, 0.2);
  border-radius: 14px;
  padding: 24px 28px;
  margin-bottom: 48px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.7;
}

.legal-tldr strong { color: var(--cyan); }

.legal-section { margin-bottom: 44px; }

.legal-section h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.legal-section h2 .num {
  width: 28px; height: 28px;
  background: rgba(0, 212, 212, 0.12);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--cyan);
  flex-shrink: 0;
}

.legal-section p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.legal-cta {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 36px;
  text-align: center;
  margin-top: 60px;
}

.legal-cta h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.legal-cta p { color: var(--muted); font-size: 15px; margin-bottom: 20px; }

.legal-cta a {
  color: var(--cyan);
  text-decoration: none;
  font-weight: 600;
}

.legal-cta a:hover { text-decoration: underline; }

/* RESPONSIVE */
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  section, .hero { padding-left: 20px; padding-right: 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; padding: 36px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats { gap: 40px; flex-wrap: wrap; }
  .legal-content { padding-left: 20px; padding-right: 20px; }
  .legal-hero { padding-left: 20px; padding-right: 20px; }
}
