@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap");

:root {
  color-scheme: light;
  --bg: #f7f3ff;
  --dark: #0b1b1f;
  --accent: #1dd3f8;
  --accent-2: #ff4fd8;
  --accent-3: #7c6bff;
  --white: #ffffff;
  --shadow: 0 20px 40px rgba(11, 27, 31, 0.18);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  background: radial-gradient(circle at top, #ffffff 0%, var(--bg) 45%, #e9f6ff 100%);
  color: var(--dark);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.75);
  border-bottom: 1px solid rgba(11, 27, 31, 0.08);
}

.nav {
  max-width: 1160px;
  margin: 0 auto;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  gap: 22px;
  font-weight: 600;
  color: rgba(11, 27, 31, 0.7);
}

.nav-links a {
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease,
    color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: var(--white);
  box-shadow: 0 16px 30px rgba(29, 211, 248, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 20px 38px rgba(255, 79, 216, 0.35);
}

.btn-outline {
  border: 2px solid rgba(11, 27, 31, 0.15);
  background: var(--white);
}

.btn-ghost {
  border: 1px dashed rgba(11, 27, 31, 0.25);
}

.hero {
  max-width: 1160px;
  margin: 0 auto;
  padding: 72px 32px 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin: 12px 0 16px;
}

.hero-sub {
  font-size: 1.1rem;
  opacity: 0.85;
}

.eyebrow {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--accent-2);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 26px 0 24px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-badges span {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(29, 211, 248, 0.18);
  font-weight: 600;
  font-size: 0.85rem;
}

.hero-visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transform: rotate(-2deg);
  animation: float 6s ease-in-out infinite;
}

.hero-visual img {
  height: 100%;
  object-fit: cover;
}

.metrics {
  max-width: 1100px;
  margin: 30px auto 0;
  padding: 0 32px 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.metric-card {
  padding: 24px;
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid rgba(11, 27, 31, 0.06);
}

.metric-card h3 {
  margin-bottom: 8px;
  color: var(--accent-2);
}

.services,
.gallery,
.cta {
  max-width: 1160px;
  margin: 0 auto;
  padding: 60px 32px 20px;
}

.section-title {
  text-align: center;
  margin-bottom: 32px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.service-card {
  padding: 26px;
  border-radius: 18px;
  background: linear-gradient(145deg, #ffffff 0%, #f5f3ff 100%);
  border: 1px solid rgba(11, 27, 31, 0.08);
  box-shadow: 0 16px 30px rgba(11, 27, 31, 0.12);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.gallery-item {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transform: translateY(10px);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.gallery-item.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.cta-card {
  background: linear-gradient(120deg, var(--accent-2), var(--accent));
  color: var(--white);
  padding: 36px;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 24px 40px rgba(255, 79, 216, 0.35);
}

.cta-card p {
  opacity: 0.9;
  margin-top: 8px;
}

.site-footer {
  max-width: 1160px;
  margin: 0 auto;
  padding: 40px 32px 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-10px) rotate(-2deg);
  }
}

@media (max-width: 768px) {
  .nav {
    padding: 16px 20px;
    flex-wrap: wrap;
  }

  .nav-links {
    width: 100%;
    order: 3;
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero {
    padding-top: 48px;
  }

  .cta-card {
    flex-direction: column;
    align-items: flex-start;
  }
}
