/* ============================================
   HOME PAGE STYLES
   ============================================ */

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--color-white);
  padding-top: var(--nav-height);
  position: relative;
  overflow: hidden;
}

.hero__bg-dots {
  position: absolute;
  top: 80px;
  right: 0;
  width: 320px;
  height: 320px;
  background-image: radial-gradient(var(--color-teal-light) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  opacity: 0.18;
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--space-xl);
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}

.hero__greeting {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-teal);
  margin-bottom: 1rem;
}

.hero__headline {
  color: var(--color-navy);
}

.hero__italic {
  font-style: italic;
  color: var(--color-teal);
  font-family: var(--font-display);
}

.hero__body {
  max-width: 480px;
}

.hero__actions {
  margin-top: var(--space-lg);
}

.hero__badges {
  display: flex;
  gap: 0;
  margin-top: var(--space-lg);
  background: var(--color-beige);
  border: 1px solid var(--color-beige-dark);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.hero__badge {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-align: center;
  border-right: 1px solid var(--color-beige-dark);
}

.hero__badge:last-child {
  border-right: none;
}

.hero__badge svg {
  width: 22px;
  height: 22px;
  stroke: var(--color-teal);
  fill: none;
  stroke-width: 1.5;
}

/* Hero image */
.hero__image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero__image-bg {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 380px;
  height: 460px;
  background: var(--color-beige);
  border-radius: 60% 60% 50% 50%;
  z-index: 0;
}

.hero__dot-grid {
  position: absolute;
  top: 20px;
  right: -10px;
  width: 160px;
  height: 160px;
  background-image: radial-gradient(var(--color-teal) 1.5px, transparent 1.5px);
  background-size: 18px 18px;
  opacity: 0.15;
  z-index: 0;
}

.hero__image-container {
  position: relative;
  z-index: 1;
  width: 380px;
  height: 480px;
}

.hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 40% 40% 36% 36%;
  box-shadow: var(--shadow-lg);
}

/* Services */
.services__grid {
  margin-top: var(--space-xl);
}

.services__card {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.services__card-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(26,143,160,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
}

.services__card-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--color-teal);
  fill: none;
  stroke-width: 1.5;
}

.services__title {
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.9rem;
}

.services__learn-more {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  padding-top: var(--space-md);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-teal);
  transition: gap var(--transition);
}

.services__learn-more:hover {
  color: var(--color-teal-dark);
  letter-spacing: 0.02em;
}

/* ============================================
   RESPONSIVE - HOME
   ============================================ */
@media (max-width: 860px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__body {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    display: flex;
    justify-content: center;
  }

  .hero__badges {
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__image-wrap {
    order: -1;
  }

  .hero__image-container {
    width: 280px;
    height: 340px;
  }

  .hero__image-bg {
    width: 280px;
    height: 340px;
  }

  .hero__bg-dots {
    display: none;
  }

  .divider {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: var(--nav-height);
  }

  .hero__inner {
    gap: var(--space-lg);
    padding-top: var(--space-lg);
    padding-bottom: var(--space-lg);
  }

  .hero__headline {
    padding-right: 0.5rem;
  }

  .hero__body {
    max-width: 100%;
    padding-right: 0.5rem;
  }

  .hero__badge {
    padding: 0.75rem 0.4rem;
    font-size: 0.7rem;
    gap: 0.35rem;
  }

  .hero__badge svg {
    width: 18px;
    height: 18px;
  }

  .hero__badges {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
