* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #0a0b1a;
  --bg-alt: #12142a;
  --primary: #42e8ff;
  --secondary: #ff5cc9;
  --accent: #ffd84f;
  --text: #f6f6ff;
  --muted: rgba(246, 246, 255, 0.7);
  --card: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.15);
  --shadow: 0 20px 50px rgba(15, 20, 40, 0.4);
}

body {
  font-family: "Outfit", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top, rgba(66, 232, 255, 0.25), #0a0b1a 55%),
    radial-gradient(circle at bottom, rgba(255, 92, 201, 0.2), transparent 60%);
  min-height: 100vh;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 20px;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1200px, 90%);
  margin: 0 auto;
}

.bg-glow {
  position: fixed;
  width: 45vw;
  height: 45vw;
  background: radial-gradient(
    circle,
    rgba(66, 232, 255, 0.35),
    rgba(255, 92, 201, 0.15) 40%,
    transparent 70%
  );
  top: -10%;
  right: -5%;
  filter: blur(20px);
  z-index: -1;
  animation: drift 12s ease-in-out infinite alternate;
}

@keyframes drift {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-10%, 10%);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(10, 11, 26, 0.7);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(130deg, var(--primary), var(--secondary));
  box-shadow: 0 0 20px rgba(92, 240, 255, 0.6);
}

.logo-title {
  font-weight: 700;
  font-family: "Space Grotesk", sans-serif;
}

.logo-subtitle {
  font-size: 0.85rem;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 24px;
  font-weight: 500;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #0a0b1a;
  box-shadow: 0 15px 30px rgba(92, 240, 255, 0.3);
}

.btn-ghost {
  border-color: var(--border);
  color: var(--text);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 18px 5%;
  background: rgba(10, 11, 26, 0.95);
  border-bottom: 1px solid var(--border);
}

.hero {
  padding: 90px 0 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(2.4rem, 3vw, 3.6rem);
  font-family: "Space Grotesk", sans-serif;
  margin-bottom: 18px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.8rem;
  color: var(--accent);
  margin-bottom: 18px;
}

.lead {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 18px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.hero-highlights {
  display: grid;
  gap: 18px;
}

.hero-highlights h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.hero-highlights p {
  color: var(--muted);
}

.hero-visual {
  position: relative;
}

.image-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 0.8s ease;
}

.image-card:hover img {
  transform: scale(1.15);
}

.image-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  padding: 12px 18px;
  background: rgba(10, 11, 26, 0.7);
  border-radius: 999px;
  font-weight: 600;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.metrics div {
  background: var(--card);
  padding: 20px;
  border-radius: 18px;
  border: 1px solid var(--border);
  text-align: center;
}

.metrics h2 {
  font-size: 2rem;
  color: var(--primary);
}

.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: clamp(2rem, 2.4vw, 2.8rem);
  font-family: "Space Grotesk", sans-serif;
  margin-bottom: 10px;
}

.section-title p {
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.card {
  background: var(--card);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transform: translateY(0);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 50px rgba(92, 240, 255, 0.2);
}

.card-body {
  padding: 24px;
}

.card-body h3 {
  margin-bottom: 10px;
}

.card-body p {
  color: var(--muted);
}

.process {
  background: linear-gradient(135deg, rgba(92, 240, 255, 0.1), transparent);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.steps {
  display: grid;
  gap: 24px;
  margin: 30px 0;
}

.step {
  display: flex;
  gap: 18px;
  background: var(--card);
  padding: 20px;
  border-radius: 18px;
  border: 1px solid var(--border);
}

.step span {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
}

.process-visual {
  position: relative;
}

.badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(10, 11, 26, 0.85);
  padding: 14px 18px;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.results {
  background: var(--bg-alt);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin: 20px 0 30px;
}

.gallery-strip img {
  border-radius: 18px;
  height: 190px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.result-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: 20px;
}

.result-card h3 {
  margin-bottom: 12px;
}

.result-card p {
  color: var(--muted);
  margin-bottom: 16px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: start;
}

.contact-card {
  margin-top: 24px;
  display: grid;
  gap: 18px;
  background: var(--card);
  padding: 24px;
  border-radius: 20px;
  border: 1px solid var(--border);
}

.contact-image {
  margin: 20px 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.label {
  color: var(--muted);
  font-size: 0.85rem;
}

.contact-form {
  background: var(--card);
  padding: 30px;
  border-radius: 24px;
  border: 1px solid var(--border);
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(92, 240, 255, 0.6);
}

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
}

.site-footer {
  padding: 40px 0 20px;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.footer-note {
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .mobile-menu.show {
    display: flex;
  }
}

@media (max-width: 700px) {
  .hero {
    padding-top: 60px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
}
