/* stylelint-disable */
:root {
  --bg: #ffffff;
  --bg-muted: #f7f5f2;
  --text: #111111;
  --text-muted: #5c5c5c;
  --border: #e4e0db;
  --accent: #111111;
  --accent-light: #f1ede7;
  --accent-contrast: #ffffff;
  --shadow: 0 18px 40px rgba(17, 17, 17, 0.08);
  --transition: 0.3s ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
}

h1,
h2,
h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  line-height: 1.2;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
}

.section-muted {
  background: var(--bg-muted);
}

.section-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 3rem;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-muted);
}

.section-note {
  text-align: center;
  font-weight: 600;
  margin-top: 2rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.navbar {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  z-index: 10;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  gap: 1.5rem;
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.9rem;
}

.hero {
  padding: 6rem 0 4rem;
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.hero-text h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1rem;
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.hero-media {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.hero-media img {
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.button-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  border: 1px solid var(--accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  background: transparent;
  color: var(--accent);
}

.btn-primary {
  background: var(--accent);
  color: var(--accent-contrast);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-secondary:hover {
  background: var(--accent-light);
}

.grid {
  display: grid;
  gap: 1.75rem;
}

.grid.two {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.grid.three {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.grid.four {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.card,
.stat-card,
.service-card,
.step-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.75rem;
  box-shadow: var(--shadow);
}

.stat-card img,
.step-card img {
  width: 42px;
  margin-bottom: 1rem;
}

.services-grid {
  align-items: start;
}

.service-card h3 {
  margin-bottom: 0.5rem;
}

.service-subtitle {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.service-card ul {
  list-style: none;
  display: grid;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.service-card li::before {
  content: "•";
  margin-right: 0.5rem;
}

.service-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-weight: 600;
}

.step-card p,
.stat-card p,
.card p {
  color: var(--text-muted);
}

.community-cta {
  margin-top: 3rem;
  background: var(--accent-light);
  padding: 2rem;
  border-radius: 20px;
}

.community-cta ul {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.75rem;
}

.cta {
  text-align: center;
}

.cta p {
  max-width: 720px;
  margin: 1rem auto 2rem;
  color: var(--text-muted);
}

.cta-footer {
  margin-top: 2rem;
  font-weight: 600;
}

.footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  text-decoration: none;
  color: var(--text);
}

.footer-note {
  text-align: center;
  margin-top: 1.5rem;
  color: var(--text-muted);
}

.calendly-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 1rem;
}

.calendly-modal-content {
  background: #ffffff;
  border-radius: 18px;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  position: relative;
}

.calendly-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
}

.calendly-close {
  border: none;
  background: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.calendly-inline-widget {
  height: 70vh;
}

.whatsapp-float {
  position: fixed;
  right: 16px;
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  background: #25d366;
  color: #ffffff;
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.25);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 999;
}

.whatsapp-float:hover {
  transform: translateY(-50%) translateX(0) scale(1.02);
}

.whatsapp-float.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-50%) translateX(0);
}

@media (max-width: 900px) {
  .nav-links {
    justify-content: center;
  }
}

@media (max-width: 700px) {
  .nav-links {
    display: none;
  }

  .hero {
    padding-top: 4rem;
  }

  .calendly-inline-widget {
    height: 60vh;
  }
}
