﻿:root {
  color-scheme: light;
  --bg: #050816;
  --card: rgba(14, 25, 57, 0.78);
  --accent: #39d0ff;
  --accent-2: #ff7cf0;
  --text: #f5f7ff;
  --muted: #b8c0ff;
  --highlight: #111c3f;
  --glow: 0 0 32px rgba(57, 208, 255, 0.4);
}

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

body {
  font-family: "Manrope", sans-serif;
  background: radial-gradient(circle at top, #0b1a3b 0%, #050816 55%, #03040c 100%);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

.bg-orb {
  position: fixed;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  z-index: 0;
  animation: float 18s ease-in-out infinite;
}

.orb-1 {
  background: radial-gradient(circle, #3ad4ff, #1a5dfb);
  top: -120px;
  left: -120px;
}

.orb-2 {
  background: radial-gradient(circle, #ff7cf0, #7a2cf6);
  bottom: -160px;
  right: -120px;
  animation-delay: 2s;
}

.hero {
  position: relative;
  padding: 32px 6vw 80px;
  z-index: 1;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 48px;
}

.logo {
  font-weight: 800;
  letter-spacing: 0.5px;
  font-size: 1.1rem;
}

.nav-actions {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-link {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--text);
}

.hero-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 42px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 18px;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 4rem);
  line-height: 1.05;
  margin-bottom: 22px;
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 28px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  background: linear-gradient(135deg, var(--accent), #2f7bff);
  color: #04101f;
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
  box-shadow: var(--glow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 40px rgba(57, 208, 255, 0.6);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: none;
}

.btn-small {
  padding: 10px 18px;
  font-size: 0.9rem;
}

.hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.badge {
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  color: var(--muted);
}

.hero-card {
  position: relative;
  padding: 28px;
  background: var(--card);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(2, 8, 32, 0.45);
}

.hero-card-glow {
  position: absolute;
  width: 220px;
  height: 220px;
  top: -80px;
  right: -60px;
  background: radial-gradient(circle, rgba(57, 208, 255, 0.4), transparent 70%);
  filter: blur(10px);
}

.hero-card h2 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.hero-metrics {
  display: flex;
  gap: 28px;
  margin-top: 22px;
}

.metric {
  font-size: 1.6rem;
  font-weight: 800;
}

.metric-label {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
}

.scroll-indicator {
  margin-top: 48px;
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: var(--muted);
  animation: pulse 2.4s ease-in-out infinite;
}

.section {
  padding: 80px 6vw;
  position: relative;
  z-index: 1;
}

.section-header {
  max-width: 720px;
  margin-bottom: 36px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
}

.section-header p {
  color: var(--muted);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
}

.card {
  background: rgba(9, 16, 40, 0.85);
  border-radius: 20px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 360px;
}

.card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 18px;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.highlight {
  background: linear-gradient(120deg, rgba(57, 208, 255, 0.08), rgba(255, 124, 240, 0.08));
}

.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.step {
  background: rgba(7, 13, 32, 0.7);
  padding: 22px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.step span {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #030414;
  font-weight: 700;
  margin-bottom: 12px;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.testimonial {
  background: rgba(11, 20, 46, 0.8);
  padding: 22px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
}

.testimonial::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  opacity: 0.6;
}

.testimonial span {
  display: block;
  margin-top: 14px;
  color: var(--muted);
}

.contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px;
  align-items: center;
}

.contact-card {
  background: rgba(9, 16, 40, 0.85);
  padding: 32px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-card h2 {
  margin-bottom: 14px;
}

.contact-phone {
  font-size: 1.6rem;
  font-weight: 800;
  margin: 12px 0 22px;
}

.contact-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.contact-image img {
  width: 100%;
  border-radius: 24px;
  height: 340px;
  object-fit: cover;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.footer {
  padding: 30px 6vw 50px;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer a {
  color: var(--accent);
  text-decoration: none;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(30px, -20px) scale(1.05);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
}

@media (max-width: 860px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-actions {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 24px;
  }
  .hero-metrics {
    flex-direction: column;
  }
  .scroll-indicator {
    display: none;
  }
}
