:root {
  --teal: #315d66;
  --teal-deep: #073e48;
  --teal-action: #0f7b78;
  --gold: #e8b64f;
  --cream: #fcfaf6;
  --cream-deep: #f5efe5;
  --ink: #173f48;
  --muted: #617176;
  --line: #e7e2d7;
  --white: #ffffff;
  --shadow: 0 14px 34px rgba(13, 65, 73, .09);
}

* { box-sizing: border-box; }
html { background: var(--cream); scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 50% -10%, #ffffff 0, #fffdf9 30%, transparent 52%),
    linear-gradient(180deg, #fffdf9 0%, var(--cream) 55%, var(--cream-deep) 100%);
}
img { display: block; max-width: 100%; }
a { -webkit-tap-highlight-color: transparent; }

.promo-bar {
  padding: 9px 14px;
  text-align: center;
  background: var(--teal);
  color: #fff;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .01em;
}

.page {
  width: min(100%, 760px);
  margin: 0 auto;
  padding: 18px 14px 108px;
}

.hero {
  text-align: center;
  padding: 10px 0 4px;
}

.logo {
  width: min(230px, 66vw);
  margin: 0 auto 18px;
}

.audience-tag,
.section-kicker {
  margin: 0;
  color: var(--teal-action);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .055em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--teal-deep);
  letter-spacing: -.025em;
}

h1 {
  max-width: 12ch;
  margin: 11px auto 0;
  font-size: clamp(2.25rem, 9vw, 3.75rem);
  line-height: 1.02;
}

h2 {
  font-size: clamp(1.65rem, 6.6vw, 2.45rem);
  line-height: 1.12;
}

.hero-copy {
  max-width: 610px;
  margin: 16px auto 0;
  color: #31525a;
  font-size: 1.01rem;
  line-height: 1.58;
}

.cta {
  width: min(100%, 480px);
  min-height: 60px;
  margin: 20px auto 0;
  padding: 15px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border-radius: 999px;
  background: linear-gradient(180deg, #148982 0%, #0c706d 100%);
  box-shadow: 0 14px 28px rgba(12, 112, 109, .22);
  color: #fff;
  text-decoration: none;
  font-size: 1.08rem;
  font-weight: 800;
  transition: transform .18s ease, box-shadow .18s ease;
}
.cta:hover { transform: translateY(-1px); box-shadow: 0 17px 31px rgba(12, 112, 109, .28); }
.cta:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }
.arrow { color: var(--gold); font-size: 1.35em; line-height: 1; }

.cta-note {
  max-width: 530px;
  margin: 9px auto 0;
  color: var(--muted);
  font-size: .73rem;
  line-height: 1.45;
}

.brand-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 22px auto 0;
}

.brand-facts article {
  min-width: 0;
  padding: 13px 7px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 9px 22px rgba(13, 65, 73, .05);
}
.brand-facts strong {
  display: block;
  color: var(--teal-deep);
  font-size: .94rem;
  line-height: 1.1;
}
.brand-facts span {
  display: block;
  margin-top: 4px;
  color: #657579;
  font-size: .66rem;
  line-height: 1.25;
}

.visual-section,
.why-section,
.how-section,
.testimonial-wrap,
.final-section {
  margin-top: 34px;
}

.section-heading {
  max-width: 620px;
  margin: 0 auto 17px;
  text-align: center;
}
.section-heading h2 { margin-top: 7px; }
.section-heading > p:last-child {
  margin: 9px auto 0;
  color: #5a6b70;
  font-size: .93rem;
  line-height: 1.52;
}
.section-heading.compact { margin-bottom: 15px; }

.profiles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.profile-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(220, 216, 207, .9);
  border-radius: 16px;
  background: #e2e7e6;
  box-shadow: var(--shadow);
}
.profile-card img {
  width: 100%;
  aspect-ratio: .9 / 1;
  object-fit: cover;
}
.crop-a img { object-position: 50% 42%; }
.crop-b img { object-position: 50% 45%; }
.crop-c img { object-position: 52% 42%; }
.crop-d img { object-position: 48% 42%; }
.crop-e img { object-position: 50% 44%; }
.crop-f img { object-position: 50% 44%; }

.cta-mid { margin-top: 17px; }

.benefits {
  display: grid;
  gap: 10px;
}
.benefit-card {
  display: flex;
  gap: 11px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 10px 24px rgba(13, 65, 73, .06);
}
.benefit-icon {
  flex: 0 0 27px;
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e7f4f2;
  color: var(--teal-action);
  font-weight: 900;
}
.benefit-card strong,
.steps strong {
  display: block;
  margin-bottom: 4px;
  color: var(--teal-deep);
  font-size: .93rem;
}
.benefit-card p,
.steps p {
  margin: 0;
  color: #5c6c71;
  font-size: .82rem;
  line-height: 1.48;
}

.steps {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
  list-style: none;
}
.steps li {
  display: flex;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255,255,255,.84);
}
.steps li > span {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-size: .76rem;
  font-weight: 800;
}

.testimonial {
  margin: 0;
  padding: 23px 18px 19px;
  position: relative;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, #fffaf0 0%, #fff 100%);
  box-shadow: var(--shadow);
}
.testimonial::before {
  content: "“";
  position: absolute;
  top: 0;
  left: 15px;
  color: rgba(232,182,79,.42);
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 1;
}
.testimonial p {
  position: relative;
  margin: 8px 0 10px;
  padding-left: 10px;
  color: #264750;
  font-size: .94rem;
  font-style: italic;
  line-height: 1.58;
}
.testimonial cite,
.testimonial small {
  display: block;
  padding-left: 10px;
}
.testimonial cite {
  color: var(--teal-action);
  font-size: .82rem;
  font-style: normal;
  font-weight: 800;
}
.testimonial small {
  margin-top: 6px;
  color: #728083;
  font-size: .69rem;
  line-height: 1.4;
}

.final-section {
  padding: 24px 16px;
  border: 1px solid #dce4e1;
  border-radius: 20px;
  background: linear-gradient(180deg, #f3faf8 0%, #fff 100%);
  text-align: center;
  box-shadow: var(--shadow);
}
.final-section h2 { margin-top: 7px; }
.final-section > p:not(.section-kicker):not(.final-disclosure) {
  max-width: 560px;
  margin: 9px auto 0;
  color: #5a6b70;
  font-size: .9rem;
  line-height: 1.5;
}

footer {
  margin-top: 25px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: #6c777a;
  text-align: center;
  font-size: .65rem;
}
footer p { max-width: 650px; margin: 0 auto 9px; line-height: 1.45; }
footer nav { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; }
footer a { color: inherit; text-decoration: none; }
footer a:hover { text-decoration: underline; }

.sticky-wrap {
  position: fixed;
  z-index: 50;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, rgba(252,250,246,0) 0%, rgba(252,250,246,.96) 30%, #fcfaf6 100%);
}
.sticky-cta {
  min-height: 52px;
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(180deg, #148982 0%, #0c706d 100%);
  box-shadow: 0 13px 27px rgba(12,112,109,.24);
  color: #fff;
  text-decoration: none;
  font-size: .98rem;
  font-weight: 800;
}

.contact-card {
  min-height: calc(100vh - 38px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.contact-card h1 { margin-bottom: 18px; }
.contact-card p { font-size: 1.02rem; line-height: 1.6; }
.contact-email { color: var(--teal-action); font-weight: 800; }
.small-copy { max-width: 560px; margin: 18px auto; color: var(--muted); font-size: .9rem !important; }
.back-link { color: var(--teal-deep); font-weight: 700; margin-top: 18px; }

@media (min-width: 720px) {
  .page { padding-inline: 22px; }
  .benefits { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .steps { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .steps.steps-two { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 620px; margin-inline: auto; }
  .steps li { display: block; }
  .steps li > span { margin-bottom: 10px; }
}

@media (max-width: 390px) {
  .page { padding-inline: 11px; }
  .logo { width: min(210px, 64vw); }
  h1 { font-size: 2.12rem; }
  .hero-copy { font-size: .95rem; }
  .cta { min-height: 57px; font-size: 1rem; padding: 14px 17px; }
  .brand-facts article { padding-inline: 4px; }
  .brand-facts strong { font-size: .82rem; }
  .brand-facts span { font-size: .59rem; }
  .profiles { gap: 8px; }
  .profile-card { border-radius: 14px; }
}
