@import url("https://fonts.googleapis.com/css2?family=Source+Serif+4:opsz,wght@8..60,200..900&family=Be+Vietnam+Pro:wght@300;400;500;600;700&display=swap");

:root {
  --sl-pure-white:    #FFFEFE;
  --sl-rich-black:    #131612;
  --sl-calm-green:    #F2F4EF;
  --sl-care-green:    #33482C;
  --sl-care-green-hover: #1F2E1A;

  --sl-font-serif: "Source Serif 4", "Source Serif Pro", Georgia, "Times New Roman", serif;
  --sl-font-sans:  "Be Vietnam Pro", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --sl-ease-soft: cubic-bezier(.22,.61,.36,1);
}

html, body { margin: 0; padding: 0; }

body {
  background: var(--sl-calm-green);
  color: var(--sl-rich-black);
  font-family: var(--sl-font-sans);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.sl-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 28px 0;
}

.sl-welcome {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin: 0 0 32px;
}

.sl-welcome-eyebrow {
  font-family: var(--sl-font-sans);
  font-size: 18px;
  font-weight: 500;
  color: var(--sl-care-green);
  letter-spacing: 0.005em;
  margin: 0;
}

.sl-welcome-logo {
  height: 52px;
  width: auto;
  display: block;
}

.sl-headline {
  font-family: var(--sl-font-serif);
  font-weight: 400;
  font-size: clamp(40px, 5.4vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--sl-care-green);
  margin: 0 0 20px;
  text-wrap: balance;
}

.sl-subtitle {
  font-size: 19px;
  line-height: 1.55;
  color: rgba(19, 22, 18, 0.72);
  max-width: 620px;
  margin: 0 0 16px;
  text-wrap: pretty;
}

.sl-subtitle-callout {
  font-family: var(--sl-font-sans);
  font-size: 19px;
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--sl-rich-black);
  max-width: 620px;
  margin: 0 0 64px;
}

.sl-section-title {
  font-family: var(--sl-font-serif);
  font-weight: 400;
  font-size: 28px;
  letter-spacing: -0.01em;
  color: var(--sl-care-green);
  margin: 0 0 28px;
}

.sl-steps {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 44px;
  margin: 0 0 72px;
}

.sl-step {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sl-step-body {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.sl-step-num {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--sl-care-green);
  color: var(--sl-calm-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sl-font-serif);
  font-size: 16px;
  line-height: 1;
  margin-top: 2px;
}

.sl-step-text { flex: 1 1 auto; }

.sl-step-title {
  font-family: var(--sl-font-sans);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.3;
  color: var(--sl-rich-black);
  margin: 0 0 6px;
  letter-spacing: -0.005em;
}

.sl-step-desc {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(19, 22, 18, 0.7);
  text-wrap: pretty;
}

.sl-step-image {
  width: 100%;
  aspect-ratio: 2660 / 591;
  object-fit: cover;
  border-radius: 16px;
  background: var(--sl-pure-white);
  display: block;
}

.sl-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid rgba(51, 72, 44, 0.14);
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.sl-trust-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sl-trust-row {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--sl-rich-black);
  font-size: 15px;
  opacity: 0.78;
}

.sl-trust-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  color: var(--sl-care-green);
}

.sl-cta-section {
  position: sticky;
  bottom: 0;
  background: linear-gradient(180deg, rgba(242,244,239,0) 0%, var(--sl-calm-green) 24%);
  padding: 32px 28px 28px;
  margin-top: 32px;
  z-index: 5;
}

.sl-cta-inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.sl-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--sl-care-green);
  color: var(--sl-calm-green);
  font-family: var(--sl-font-sans);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 16px 36px;
  min-width: 220px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 12px 28px -14px rgba(51, 72, 44, 0.45);
  transition: transform .18s var(--sl-ease-soft), background-color .18s var(--sl-ease-soft);
}

.sl-cta-button:hover {
  background: var(--sl-care-green-hover);
  transform: translateY(-1px);
}

.sl-cta-arrow {
  font-size: 18px;
  line-height: 1;
  transform: translateY(-1px);
}

@media (max-width: 560px) {
  .sl-page { padding: 36px 20px 0; }
  .sl-headline { font-size: 38px; }
  .sl-subtitle { font-size: 17px; margin-bottom: 14px; }
  .sl-subtitle-callout { font-size: 17px; margin-bottom: 48px; }
  .sl-steps { gap: 36px; }
  .sl-step-image { aspect-ratio: 16 / 9; }
  .sl-trust { flex-direction: column; align-items: flex-start; }
  .sl-cta-section { padding: 24px 20px 20px; }
}
