@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

html, body {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
}

.hero-section {
  height: 100vh;
  height: 100svh;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-top: 96px;
  overflow: hidden;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1.5rem;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, transparent 100%);
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(11,11,11,0.95);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 1rem 1.5rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.services-grid .bg-white {
    display: flex;
    flex-direction: column;
}

.services-grid .bg-white > div {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.services-grid p {
    flex-grow: 1;
}

.services-grid a {
    margin-top: 0.5rem;
    width: fit-content;
}

.nav__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 2px;
  text-decoration: none;
}

.nav__brand-text {
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: white;
}

.nav__brand-text--primary {
  color: #03b0f2;
}

.nav__links {
  display: none;
  align-items: center;
  gap: 3rem;
}

.nav__link {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #03b0f2;
  transition: width 0.2s ease;
}

.nav__link:hover {
  color: white;
}

.nav__link:hover::after {
  width: 100%;
}

.nav__cta {
  background: #03b0f2;
  color: white;
  text-decoration: none;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: all 0.2s ease;
}

.nav__cta:hover {
  background: white;
  color: #03b0f2;
  transform: translateY(-1px);
}

.nav__menu-btn {
  display: block;
  background: none;
  border: none;
  color: white;
  padding: 0.5rem;
  cursor: pointer;
  transition: color 0.2s ease;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(11,11,11,0.98);
  backdrop-filter: blur(12px);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 60;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu__close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  color: rgba(255,255,255,0.9);
  padding: 0.5rem;
  cursor: pointer;
  transition: color 0.2s ease;
}

.mobile-menu__content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  padding: 2rem;
}

.mobile-menu__link {
  color: white;
  text-decoration: none;
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
}

.mobile-menu__cta {
  background: #03b0f2;
  color: white;
  text-decoration: none;
  padding: 1rem 2.5rem;
  border-radius: 12px;
  font-size: 1.25rem;
  font-weight: 500;
  margin-top: 1.5rem;
  transition: all 0.2s ease;
}

@media (min-width: 1024px) {
  .nav__links {
    display: flex;
  }
  
  .nav__menu-btn {
    display: none;
  }
}

@media (max-width: 1024px) {
  .header {
    padding: 1rem;
  }
  
  .nav {
    background: rgba(11,11,11,0.98);
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding-top: 84px;
  }
}

@supports (-webkit-touch-callout: none) {
  .hero-section {
    height: -webkit-fill-available;
  }
}