*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --navy: #0b1024;
  --indigo: #13c6ff;
  --mint: #17e1ff;
  --sunset: #ff7ccf;
  --rose: #ff4fd8;
  --mist: #f4f6ff;
  --card: rgba(255, 255, 255, 0.9);
  --shadow: 0 20px 50px rgba(14, 18, 46, 0.18);
}

body {
  margin: 0;
  font-family: "Urbanist", system-ui, sans-serif;
  background: radial-gradient(circle at top, #ffffff 0%, #e6faff 35%, #ffe8f6 100%);
  color: var(--navy);
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 6vw;
  gap: 24px;
  position: sticky;
  top: 0;
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.85);
  z-index: 10;
  border-bottom: 1px solid rgba(61, 66, 255, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--indigo), var(--rose));
  color: white;
  display: grid;
  place-items: center;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: "Space Grotesk", system-ui, sans-serif;
}

.brand-name {
  margin: 0;
  font-weight: 700;
}

.brand-tag {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(11, 16, 36, 0.6);
}

.nav-links {
  display: flex;
  gap: 24px;
  font-weight: 600;
}

.nav-links a {
  text-decoration: none;
  color: inherit;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--indigo), var(--mint));
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.cta {
  background: linear-gradient(135deg, var(--indigo), var(--mint));
  color: white;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 20px 40px rgba(61, 66, 255, 0.35);
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding: 40px 6vw 80px;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(2.4rem, 3.5vw, 3.8rem);
  margin: 16px 0;
  font-family: "Space Grotesk", system-ui, sans-serif;
}

.hero-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(11, 16, 36, 0.7);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(61, 66, 255, 0.1);
  color: var(--indigo);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 24px 0 32px;
}

.secondary {
  border: 2px solid rgba(61, 66, 255, 0.2);
  color: var(--indigo);
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  background: white;
  transition: border 0.3s ease, transform 0.3s ease;
}

.secondary:hover {
  transform: translateY(-2px);
  border-color: var(--indigo);
}

.hero-stats {
  display: grid;
  gap: 18px;
}

.stat {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.stat-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--indigo);
  font-family: "Space Grotesk", system-ui, sans-serif;
}

.stat-label {
  color: rgba(11, 16, 36, 0.6);
  font-weight: 500;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
}

.image-card {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transform: rotate(-2deg);
  animation: float 6s ease-in-out infinite;
}

.image-card img {
  width: 100%;
  max-width: 520px;
  display: block;
}

.floating-card {
  position: absolute;
  bottom: 20px;
  right: 10%;
  background: white;
  padding: 16px 20px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  animation: drift 5s ease-in-out infinite;
}

.floating-card p {
  margin: 0;
  font-weight: 700;
}

.floating-card span {
  font-size: 0.9rem;
  color: rgba(11, 16, 36, 0.6);
}

.section-heading h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin: 0 0 12px;
  font-family: "Space Grotesk", system-ui, sans-serif;
}

.section-heading p {
  margin: 0;
  color: rgba(11, 16, 36, 0.65);
  max-width: 600px;
}

.service-grid,
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.service-card,
.step {
  padding: 24px;
  border-radius: 24px;
  background: var(--card);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.service-card:hover,
.step:hover {
  transform: translateY(-6px);
}

.service-card h3 {
  margin-top: 0;
  font-family: "Space Grotesk", system-ui, sans-serif;
}

.process {
  background: linear-gradient(135deg, rgba(19, 198, 255, 0.12), rgba(255, 79, 216, 0.12));
  padding: 50px;
  border-radius: 32px;
}

.step-number {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--sunset);
}

.gallery-grid {
  margin-top: 32px;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.gallery-card {
  border-radius: 22px;
  box-shadow: var(--shadow);
  background: white;
  padding: 16px;
  display: grid;
  gap: 12px;
  align-content: start;
  opacity: 0;
  transform: translateY(18px);
  min-height: 200px;
}

.gallery-thumb {
  border-radius: 18px;
  padding: 10px;
  background: linear-gradient(135deg, rgba(19, 198, 255, 0.18), rgba(255, 79, 216, 0.15));
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 3;
}

.gallery-thumb.cyan {
  background: linear-gradient(135deg, rgba(19, 198, 255, 0.22), rgba(19, 198, 255, 0.06));
}

.gallery-thumb.pink {
  background: linear-gradient(135deg, rgba(255, 79, 216, 0.22), rgba(255, 79, 216, 0.06));
}

.gallery-thumb.green {
  background: linear-gradient(135deg, rgba(32, 212, 168, 0.2), rgba(32, 212, 168, 0.05));
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  background: white;
  padding: 0;
  transition: transform 0.4s ease;
}

.gallery-card:hover img {
  transform: scale(1.04);
}

.gallery-text {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 4px 6px 6px;
  font-size: 0.95rem;
  line-height: 1.4;
  color: rgba(11, 16, 36, 0.8);
  font-weight: 600;
}

.gallery-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  display: inline-block;
  flex-shrink: 0;
}

.gallery-dot.cyan {
  background: var(--indigo);
}

.gallery-dot.pink {
  background: var(--rose);
}

.gallery-dot.green {
  background: #20d4a8;
}

.contact {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.contact-card {
  background: linear-gradient(140deg, rgba(61, 66, 255, 0.15), rgba(255, 94, 220, 0.18));
  padding: 32px;
  border-radius: 30px;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(18px);
}

.contact-details {
  display: grid;
  gap: 16px;
  margin: 24px 0;
}

.label {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  color: rgba(11, 16, 36, 0.5);
  display: block;
  margin-bottom: 6px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.contact-panel {
  background: white;
  padding: 32px;
  border-radius: 30px;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(18px);
}

.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.contact-panel ul {
  padding-left: 20px;
  color: rgba(11, 16, 36, 0.7);
}

.map-card {
  margin-top: 30px;
  background: var(--navy);
  color: white;
  padding: 20px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.map-title {
  margin: 0;
  font-weight: 700;
}

.map-subtitle {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.map-badge {
  background: var(--mint);
  color: var(--navy);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 700;
}

.site-footer {
  padding: 24px 6vw 40px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: rgba(11, 16, 36, 0.6);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-14px) rotate(-1deg);
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 900px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    flex-wrap: wrap;
  }

  .hero-visual {
    order: -1;
  }
}

@media (max-width: 600px) {
  .site-header {
    position: static;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .process {
    padding: 32px;
  }
}
