:root {
  --bg: #020617;
  --panel: rgba(255, 255, 255, 0.05);
  --panel-strong: rgba(15, 23, 42, 0.8);
  --text: #ffffff;
  --muted: #94a3b8;
  --line: rgba(255, 255, 255, 0.10);
  --accent: #7dd3fc;
  --accent-strong: #38bdf8;
  --success: #6ee7b7;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  background:
    radial-gradient(circle at top right, rgba(56, 189, 248, 0.12), transparent 28%),
    radial-gradient(circle at bottom left, rgba(34, 211, 238, 0.08), transparent 25%),
    var(--bg);
  color: var(--text);
}

a { color: inherit; text-decoration: none; }

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  padding: 5rem 0 4rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

.eyebrow,
.section-tag {
  display: inline-block;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(125, 211, 252, 0.25);
  background: rgba(125, 211, 252, 0.08);
  color: #c8effe;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.section-tag { 
  text-transform: uppercase; 
  letter-spacing: 0.18em; 
  font-size: 0.75rem; 
  padding: 0;
  background: none;
  border: none;
  color: var(--accent);
}

.section-tag.light { color: #d8f3ff; }

h1 {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: 1.05;
  margin: 1rem 0 0;
  letter-spacing: -0.03em;
}

h1 span,
h2 span { color: var(--accent); }

.hero-text,
.section-head p,
.trust-panel > div:first-child p:last-child,
.contact-card > p + h2 + p {
  color: #cbd5e1;
  font-size: 1.08rem;
  line-height: 1.8;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.4rem;
  border-radius: 1rem;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.18s ease, background 0.18s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--accent-strong);
  color: #082032;
  box-shadow: 0 12px 30px rgba(56, 189, 248, 0.22);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent;
}

.dashboard-card,
.service-card,
.info-card,
.highlight,
.contact-chip {
  border: 1px solid var(--line);
  background: var(--panel);
}

.dashboard-card {
  padding: 1.5rem;
  border-radius: 1.8rem;
  backdrop-filter: blur(8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.dashboard-inner {
  background: var(--panel-strong);
  border: 1px solid var(--line);
  border-radius: 1.3rem;
  padding: 1.5rem;
}

.dashboard-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.status-badge {
  border-radius: 0.8rem;
  padding: 0.5rem 0.8rem;
  background: rgba(110, 231, 183, 0.12);
  color: #a7f3d0;
  font-size: 0.9rem;
}

.dashboard-grid,
.services-grid,
.highlights {
  display: grid;
  gap: 1rem;
}

.dashboard-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mini-card,
.highlight {
  border-radius: 1rem;
  padding: 1rem;
}

.muted {
  color: var(--muted);
  margin: 0 0 0.4rem;
  font-size: 0.9rem;
}

.strong {
  margin: 0;
  font-weight: 700;
  font-size: 1.05rem;
}

.section {
  padding: 2rem 0 4rem;
}

.highlights {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 2.2rem 0 1.5rem;
}

.highlight {
  color: #e2e8f0;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.section-head {
  max-width: 720px;
  margin-bottom: 2.2rem;
}

.section-head h2,
.trust-panel h2,
.contact-card h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin: 0.5rem 0 1rem;
  letter-spacing: -0.02em;
}

.services-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card {
  border-radius: 1.6rem;
  padding: 1.6rem;
  box-shadow: 0 14px 35px rgba(0,0,0,0.18);
}

.service-card .icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  margin: 0 0 0.8rem;
  font-size: 1.2rem;
}

.service-card p {
  margin: 0;
  color: #cbd5e1;
  line-height: 1.75;
}

.trust-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  border: 1px solid var(--line);
  border-radius: 1.9rem;
  padding: 2rem;
  background: linear-gradient(90deg, rgba(255,255,255,0.04), rgba(56, 189, 248, 0.08));
}

.info-card {
  border-radius: 1.5rem;
  padding: 1.5rem;
  background: rgba(15, 23, 42, 0.72);
}

.info-card > div + div { margin-top: 1.2rem; }

.contact-section {
  padding-bottom: 5rem;
}

.contact-card {
  text-align: center;
  border: 1px solid rgba(125, 211, 252, 0.2);
  border-radius: 1.9rem;
  padding: 2.5rem 1.5rem;
  background: rgba(56, 189, 248, 0.1);
  box-shadow: 0 20px 50px rgba(56, 189, 248, 0.12);
}

.contact-row {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.contact-chip {
  border-radius: 1rem;
  padding: 0.9rem 1.1rem;
  color: #e2e8f0;
}

footer {
  border-top: 1px solid var(--line);
  text-align: center;
  color: var(--muted);
  padding: 1.8rem 1rem 2.4rem;
  font-size: 0.95rem;
}

.bg-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.18;
}

.orb-1 {
  width: 300px;
  height: 300px;
  background: #38bdf8;
  top: -80px;
  right: -80px;
}

.orb-2 {
  width: 320px;
  height: 320px;
  background: #22d3ee;
  bottom: 0;
  left: -120px;
}

@media (max-width: 960px) {
  .grid-2,
  .trust-panel,
  .services-grid,
  .highlights {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3rem;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(1120px, calc(100% - 1.25rem));
  }

  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .cta-row {
    flex-direction: column;
  }
}
