/* 1. Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* 2. Base reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; overflow-x: hidden; color: #134e4a; }
h1, h2, h3, h4, h5, h6 { font-family: 'Space Grotesk', sans-serif; }

/* 3. Sticky nav */
#site-header {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #ccfbf1;
  transition: box-shadow 0.3s ease;
}
#site-header.nav-scrolled {
  box-shadow: 0 2px 24px rgba(13,148,136,0.12);
}

/* 4. CTA Buttons */
.cta-orange {
  background: linear-gradient(135deg, #f97316, #ea580c);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.cta-orange:hover { opacity: 0.9; transform: translateY(-1px); }

.cta-teal {
  background: linear-gradient(135deg, #0d9488, #0f766e);
  transition: opacity 0.2s ease;
}
.cta-teal:hover { opacity: 0.9; }

/* 5. Badge */
.badge-teal {
  display: inline-block;
  background: #ccfbf1;
  color: #0f766e;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 9999px;
  border: 1px solid #99f6e4;
}

/* 6. Service Cards */
.service-card {
  background: #fff;
  border: 1px solid #e2f8f5;
  border-top: 3px solid #0d9488;
  border-radius: 1.25rem;
  padding: 2rem 1.75rem;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  cursor: pointer;
}
.service-card:hover {
  box-shadow: 0 10px 36px rgba(13,148,136,0.13);
  transform: translateY(-3px);
}

/* 7. Testimonial Cards */
.testimonial-card {
  background: #fff;
  border: 1px solid #e2f8f5;
  border-radius: 1.25rem;
  padding: 2rem 2rem 1.75rem;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 0.75rem;
  left: 1.5rem;
  font-size: 4.5rem;
  color: #ccfbf1;
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}

/* 8. Value Cards */
.value-card {
  background: #fff;
  border: 1px solid #e2f8f5;
  border-top: 3px solid #0d9488;
  border-radius: 1.25rem;
  padding: 2rem 1.75rem;
}

/* 9. Lead Form Card */
.lead-form-card {
  background: #fff;
  border-radius: 1.5rem;
  padding: 2.25rem;
  box-shadow: 0 24px 64px rgba(13,148,136,0.22);
}

/* 10. Form Inputs */
.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #99f6e4;
  border-radius: 0.625rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: #134e4a;
  background: #f0fdfa;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-input:focus {
  border-color: #0d9488;
  box-shadow: 0 0 0 3px rgba(13,148,136,0.15);
  background: #fff;
}

/* 11. Accent line */
.accent-line {
  display: block;
  width: 3rem;
  height: 0.25rem;
  border-radius: 9999px;
  background: linear-gradient(90deg, #0d9488, #f97316);
  margin-bottom: 1.25rem;
}

/* 12. Trust badge (hero) */
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 0.75rem;
}

/* 13. Step number */
.step-number {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, #0d9488, #0f766e);
  color: white;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(13,148,136,0.35);
}

/* 14. Address block */
.site-addr.hidden { display: none; }

/* 15. Prose (legal pages) */
.prose h2 {
  font-family: 'Space Grotesk', sans-serif;
  color: #134e4a;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.prose p {
  line-height: 1.85;
  color: #374151;
  margin-bottom: 0.5rem;
}

/* 16. Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
