@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --bg: #080a0f;
  --bg-muted: #0f1320;
  --primary: #43d9ff;
  --secondary: #8b5cf6;
  --accent: #ff7eb3;
  --text: #e2e8f0;
  --muted: #94a3b8;
  --border: rgba(255, 255, 255, 0.08);
  --card-blur: rgba(15, 19, 32, 0.7);
}

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

body {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(67, 217, 255, 0.2), transparent 35%),
    radial-gradient(circle at 80% 0%, rgba(139, 92, 246, 0.25), transparent 45%),
    radial-gradient(circle at 50% 80%, rgba(255, 126, 179, 0.2), transparent 40%),
    linear-gradient(135deg, #05080f 0%, #080a0f 60%, #11152a 100%);
}

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

img {
  max-width: 100%;
  height: auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(5, 8, 15, 0.8);
  border-bottom: 1px solid var(--border);
}

.container {
  width: min(1200px, 90%);
  margin: 0 auto;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.nav-links {
  display: flex;
  gap: 2rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.nav-links a {
  position: relative;
  padding-bottom: 0.3rem;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.hero {
  min-height: 90vh;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: center;
  padding: 5rem 0 3rem;
}

.hero-copy h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
  background: linear-gradient(120deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 34rem;
}

.hero-cta {
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: transform 0.3s ease, border-color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #010409;
}

.btn-secondary {
  border-color: var(--border);
  color: var(--text);
}

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

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
}

.glass {
  background: var(--card-blur);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(24px);
  position: relative;
  overflow: hidden;
}

.glass::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(67, 217, 255, 0.1), transparent 45%, rgba(255, 126, 179, 0.1));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.glass:hover::after {
  opacity: 1;
}

.hero-panel {
  display: grid;
  gap: 1.25rem;
}

.hero-panel .stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
}

.hero-panel .stat strong {
  font-size: 1.8rem;
  color: var(--primary);
}

.orbital {
  position: relative;
  height: 320px;
  border-radius: 999px;
  border: 1px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.orbital span {
  position: absolute;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  animation: float 9s ease-in-out infinite;
  font-size: 0.9rem;
}

.orbital span:nth-child(1) {
  top: 25%;
  left: 15%;
  animation-delay: 0s;
}

.orbital span:nth-child(2) {
  top: 10%;
  right: 20%;
  animation-delay: 1.5s;
}

.orbital span:nth-child(3) {
  bottom: 20%;
  left: 20%;
  animation-delay: 3s;
}

.orbital span:nth-child(4) {
  bottom: 15%;
  right: 15%;
  animation-delay: 4.2s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

section {
  padding: 4rem 0;
}

.section-title {
  font-size: 1rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.2rem;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

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

.grid {
  display: grid;
  gap: 1.75rem;
}

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

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.service-card h3 {
  margin-top: 0;
  font-size: 1.3rem;
}

.service-card p {
  color: var(--muted);
  margin-bottom: 1.2rem;
}

.tag {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: rgba(67, 217, 255, 0.1);
  color: var(--primary);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-right: 0.4rem;
}

.process {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.process-step {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1.5rem;
  align-items: center;
}

.process-number {
  font-size: 3rem;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px var(--border);
}

.testimonial {
  position: relative;
  padding-top: 1rem;
}

.testimonial::before {
  content: '“';
  position: absolute;
  top: -1.5rem;
  left: 0;
  font-size: 4rem;
  color: var(--secondary);
  opacity: 0.3;
}

.cta {
  text-align: center;
  padding: 4rem 2rem;
  border-radius: 2rem;
  background: radial-gradient(circle at top, rgba(67, 217, 255, 0.25), transparent 60%),
    var(--card-blur);
  border: 1px solid var(--border);
}

footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
  margin-top: 4rem;
}

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

.footer-col h4 {
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  color: var(--muted);
}

.footer-bottom {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.legal-links {
  display: flex;
  gap: 1.2rem;
}

.page-hero {
  padding: 6rem 0 3rem;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  margin-bottom: 1rem;
}

.page-hero p {
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}

.content {
  background: rgba(5, 8, 15, 0.7);
  border: 1px solid var(--border);
  border-radius: 2rem;
  padding: 3rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  margin-bottom: 4rem;
}

.content h2 {
  margin-top: 2rem;
  font-size: 1.6rem;
}

.content p,
.content li {
  color: var(--muted);
}

.content ul {
  padding-left: 1.2rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

form {
  display: grid;
  gap: 1rem;
}

input,
textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(67, 217, 255, 0.2);
}

.thank-you {
  text-align: center;
  padding: 5rem 0;
}

.thank-you h1 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
}

.thank-you p {
  max-width: 540px;
  margin: 1rem auto;
  color: var(--muted);
}

@media (max-width: 720px) {
  .nav-links {
    gap: 1rem;
    font-size: 0.8rem;
  }

  .hero {
    padding-top: 3rem;
  }

  .process-step {
    grid-template-columns: 1fr;
  }

  .content {
    padding: 2rem;
  }
}

