/* CSS Reset & Variables */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --background: #ffffff;
  --foreground: #01012b;
  --primary: #01012b;
  --accent: #ff2a6d;
}

@media (prefers-color-scheme: dark) {
  :root {
    --background: #01012b;
    --foreground: #ffffff;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--background);
  color: var(--foreground);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  line-height: 1.6;
}

/* Utilities */
.container {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.center {
  text-align: center;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(1, 1, 43, 0.95);
  backdrop-filter: blur(8px);
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
}

@media (min-width: 768px) {
  .logo {
    font-size: 1.875rem;
  }
}

/* Hero Section */
.hero {
  padding: 8rem 1.5rem 5rem;
}

.hero-content {
  text-align: center;
}

.hero-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(1, 1, 43, 0.7);
  max-width: 48rem;
  margin: 0 auto;
}

@media (prefers-color-scheme: dark) {
  .hero-subtitle {
    color: rgba(255, 255, 255, 0.7);
  }
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.5rem;
  }
}

.hero-cta {
  margin-top: 2.5rem;
}

.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.3s;
}

.btn-primary:hover {
  opacity: 0.9;
}

/* Benefits Section */
.benefits {
  padding: 5rem 1.5rem;
  background: rgba(1, 1, 43, 0.05);
}

@media (prefers-color-scheme: dark) {
  .benefits {
    background: rgba(255, 255, 255, 0.05);
  }
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.benefit-item {
  text-align: center;
}

.benefit-number {
  font-size: 2.25rem;
  font-weight: bold;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.benefit-text {
  color: rgba(1, 1, 43, 0.7);
}

@media (prefers-color-scheme: dark) {
  .benefit-text {
    color: rgba(255, 255, 255, 0.7);
  }
}

.benefits-content {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.section-title {
  font-size: 1.875rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

.section-text {
  font-size: 1.125rem;
  color: rgba(1, 1, 43, 0.7);
  margin-bottom: 1rem;
}

@media (prefers-color-scheme: dark) {
  .section-text {
    color: rgba(255, 255, 255, 0.7);
  }
}

/* Services Section */
.services {
  padding: 5rem 1.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-card {
  padding: 2rem;
  border: 1px solid rgba(1, 1, 43, 0.1);
  border-radius: 1rem;
  transition: border-color 0.3s;
}

@media (prefers-color-scheme: dark) {
  .service-card {
    border-color: rgba(255, 255, 255, 0.1);
  }
}

.service-card:hover {
  border-color: var(--accent);
}

.service-icon {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.service-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.75rem;
}

.service-description {
  color: rgba(1, 1, 43, 0.7);
}

@media (prefers-color-scheme: dark) {
  .service-description {
    color: rgba(255, 255, 255, 0.7);
  }
}

/* Contact Section */
.contact {
  padding: 5rem 1.5rem;
  background: rgba(1, 1, 43, 0.05);
}

@media (prefers-color-scheme: dark) {
  .contact {
    background: rgba(255, 255, 255, 0.05);
  }
}

.contact-content {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.3s;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .contact-email {
    font-size: 1.875rem;
  }
}

.contact-email:hover {
  opacity: 0.7;
}

/* Footer */
.footer {
  padding: 3rem 1.5rem;
  border-top: 1px solid rgba(1, 1, 43, 0.1);
}

@media (prefers-color-scheme: dark) {
  .footer {
    border-top-color: rgba(255, 255, 255, 0.1);
  }
}

.footer-content {
  text-align: center;
  color: rgba(1, 1, 43, 0.6);
}

@media (prefers-color-scheme: dark) {
  .footer-content {
    color: rgba(255, 255, 255, 0.6);
  }
}

.footer-locations {
  margin-bottom: 1.5rem;
}

.footer-heading {
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.locations-list {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.875rem;
}

.footer-copyright {
  margin-bottom: 1rem;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.footer-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-link:hover {
  color: var(--accent);
}
