:root {
  --bg: #f7f8f6;
  --surface: #ffffff;
  --text: #1d2a2a;
  --muted: #5f6e6b;
  --accent: #2d8f85;
  --accent-dark: #1f6a62;
  --border: #e5ece8;
  --radius: 22px;
  --shadow: 0 12px 35px rgba(21, 49, 45, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 10%, #eef5f2 0%, transparent 44%),
    radial-gradient(circle at 90% 0%, #edf3ef 0%, transparent 38%),
    var(--bg);
  line-height: 1.55;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 12;
  background: rgba(247, 248, 246, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(229, 236, 232, 0.8);
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 0;
}

.brand {
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  text-decoration: none;
  padding: 0.88rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(120deg, var(--accent), #3fa79c);
  box-shadow: 0 10px 24px rgba(45, 143, 133, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.3s ease;
}

.cta:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 16px 30px rgba(45, 143, 133, 0.32);
  background: linear-gradient(120deg, var(--accent-dark), #37968d);
}

.cta:active {
  transform: translateY(0);
}

.cta-small {
  padding: 0.65rem 1rem;
  font-size: 0.94rem;
}

.hero-cta {
  padding: 1rem 1.45rem;
  background: linear-gradient(120deg, #1f9388, #47b3a7);
  box-shadow: 0 18px 34px rgba(38, 129, 119, 0.3);
}

.section-cta {
  margin-top: 0.65rem;
}

.hero {
  padding: 2.6rem 0 1.2rem;
}

.hero-grid {
  display: grid;
  gap: 1.2rem;
}

.hero-photo-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 320px;
}

.hero-photo {
  height: 100%;
  object-fit: cover;
}

.eyebrow {
  color: var(--accent-dark);
  font-weight: 700;
  margin: 0 0 0.4rem;
}

h1 {
  margin: 0;
  font-size: clamp(1.9rem, 8vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.2rem, 4.8vw, 2rem);
  letter-spacing: -0.02em;
}

.lead {
  color: var(--muted);
  font-size: clamp(1rem, 3.5vw, 1.2rem);
}

.micro-comfort {
  width: fit-content;
  background: #edf6ef;
  border: 1px solid #dbeadf;
  border-radius: 14px;
  padding: 0.72rem 0.9rem;
  margin: 0.95rem 0;
}

.micro-comfort p {
  margin: 0;
  font-size: 0.95rem;
}

.meta-list {
  padding-left: 1.2rem;
  color: var(--text);
}

.section {
  padding: 0.7rem 0;
}

.card,
.img-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card {
  padding: 1.25rem;
}

.card ul {
  margin: 0 0 0.95rem;
  padding-left: 1.1rem;
}

.card p {
  margin: 0 0 0.85rem;
}

.fit-grid {
  display: grid;
  gap: 0.8rem;
  margin: 0 0 1rem;
}

.fit-item,
.meeting-card,
.step-item {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fbfdfb;
  padding: 1rem 1.05rem;
  box-shadow: 0 8px 20px rgba(22, 54, 50, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.fit-item:hover,
.meeting-card:hover,
.step-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 13px 24px rgba(22, 54, 50, 0.11);
}

.fit-item {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}

.fit-item p,
.meeting-card p,
.step-item p {
  margin: 0;
}

.icon-badge {
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 999px;
  background: #e8f4f2;
  color: var(--accent-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-weight: 800;
  line-height: 1;
  margin-top: 0.08rem;
}

.meeting-grid {
  display: grid;
  gap: 0.85rem;
  margin: 0 0 1rem;
}

.meeting-card h3 {
  margin: 0.45rem 0 0.4rem;
  font-size: 1.06rem;
}

.steps-grid {
  display: grid;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.step-head {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.55rem;
}

.step-label {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--accent-dark);
  letter-spacing: 0.06em;
}

.step-num {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  background: #edf6ef;
  color: var(--accent-dark);
  border: 1px solid #dbeadf;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.84rem;
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 0.65rem;
  margin: 0 0 1rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fcfdfc;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 0.9rem 1rem;
  font-weight: 700;
  position: relative;
  padding-right: 2.4rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--accent-dark);
  border-bottom: 2px solid var(--accent-dark);
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-60%) rotate(45deg);
  transition: transform 0.25s ease;
}

.faq-item[open] summary::after {
  transform: translateY(-30%) rotate(225deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.faq-item[open] .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer p {
  overflow: hidden;
  margin: 0;
  padding: 0 1rem 0.95rem;
  color: var(--muted);
}

.faq-section .card {
  background: #f3f7f4;
  border-color: #dde8e2;
}

.faq-section {
  padding: 0.8rem 0;
}

.final-cta-card {
  text-align: center;
}

.split-card {
  display: grid;
  gap: 1rem;
}

.img-card {
  overflow: hidden;
  min-height: 230px;
}

.img-card img {
  height: 100%;
  object-fit: cover;
}

.img-caption {
  margin: 0;
  padding: 0.75rem 0.95rem 0.9rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.host-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0.25rem 0 0.85rem;
}

.stat-badge {
  background: #edf6ef;
  color: #2d5d58;
  border: 1px solid #dbeadf;
  border-radius: 999px;
  padding: 0.38rem 0.72rem;
  font-size: 0.88rem;
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.mobile-sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 0.9rem;
  transform: translateX(-50%);
  width: min(94%, 460px);
  text-align: center;
  z-index: 20;
  text-decoration: none;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(120deg, var(--accent), #3fa79c);
  padding: 0.95rem;
  border-radius: 999px;
  box-shadow: 0 16px 32px rgba(31, 106, 98, 0.25);
}

@media (min-width: 740px) {
  .hero {
    padding-top: 3.4rem;
  }

  .fit-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem;
  }

  .meeting-grid {
    grid-template-columns: 1fr 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-grid,
  .split-card {
    grid-template-columns: 1.2fr 1fr;
    gap: 1.25rem;
    align-items: stretch;
  }

  .card {
    padding: 1.55rem;
  }

  .mobile-sticky-cta {
    display: none;
  }
}

@media (min-width: 1080px) {
  .section {
    padding: 0.9rem 0;
  }

  .meeting-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .card {
    padding: 1.8rem;
  }

  .hero-grid {
    gap: 1.8rem;
  }
}

@media (max-width: 739px) {
  .micro-comfort {
    margin-left: auto;
    margin-right: auto;
  }
}
