@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,650;9..144,750&family=Outfit:wght@400;500;600;700;800&display=swap");

:root {
  --green-deep: #0f4f37;
  --green-leaf: #3e8e62;
  --coral: #f2716e;
  --cream: #f7f2ea;
  --sand: #ede4d6;
  --ink: #123429;
  --muted: #62756d;
  --white: #fffaf4;
  --shadow: 0 26px 70px rgba(15, 79, 55, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Outfit", Arial, sans-serif;
}

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

a {
  color: inherit;
  text-decoration: none;
}

main {
  overflow: hidden;
}

.hero {
  align-items: center;
  background:
    radial-gradient(circle at 9% 18%, rgba(242, 113, 110, 0.12), transparent 25%),
    linear-gradient(112deg, var(--cream) 0 58%, var(--sand) 58% 100%);
  display: grid;
  gap: clamp(28px, 4vw, 64px);
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.95fr);
  min-height: 92vh;
  padding: clamp(32px, 6vw, 86px);
  position: relative;
}

.hero::before {
  background: var(--white);
  border-bottom-right-radius: 52% 45%;
  content: "";
  height: 76%;
  left: -18vw;
  opacity: 0.9;
  position: absolute;
  top: 0;
  width: 72vw;
}

.hero__content,
.hero__visual,
.trust-row {
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

h1,
h2 {
  color: var(--green-deep);
  font-family: "Fraunces", Georgia, serif;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1;
  margin: 0;
}

h1 {
  font-size: clamp(2.45rem, 6.1vw, 5.9rem);
  max-width: 940px;
}

h2 {
  font-size: clamp(2.05rem, 4.3vw, 4.6rem);
  max-width: 860px;
}

h3,
p {
  margin: 0;
}

.hero__subtitle {
  color: #34584b;
  font-size: clamp(1.05rem, 1.45vw, 1.3rem);
  line-height: 1.62;
  margin-top: 28px;
  max-width: 760px;
}

.hero__actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
}

.hero__actions span {
  color: var(--muted);
  font-size: 0.98rem;
  max-width: 250px;
}

.button {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

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

.button--primary {
  background: var(--coral);
  box-shadow: 0 16px 34px rgba(242, 113, 110, 0.32);
  color: white;
}

.button--secondary {
  background: var(--green-deep);
  color: white;
}

.trust-row {
  border-left: 2px solid var(--green-leaf);
  display: grid;
  grid-column: 1;
  gap: 12px;
  max-width: 760px;
  padding-left: 18px;
}

.trust-row span {
  color: var(--green-deep);
  font-weight: 700;
}

.hero-note {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.45;
  margin: 0;
}

.hero-note--mobile {
  display: none;
}

.hero__visual {
  aspect-ratio: 1 / 1;
  border-radius: 32px 8px 32px 8px;
  grid-column: 2;
  grid-row: 1 / span 2;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero__visual img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.wave {
  height: 72px;
  margin-top: -2px;
}

.wave svg {
  height: 100%;
  width: 100%;
}

.wave--cream {
  background: var(--cream);
}

.wave--cream path {
  fill: var(--white);
}

.wave--green {
  background: var(--white);
}

.wave--green path {
  fill: var(--green-deep);
}

.wave--sand {
  background: var(--white);
}

.wave--sand path {
  fill: var(--sand);
}

.section {
  padding: clamp(64px, 8vw, 116px) clamp(22px, 6vw, 86px);
}

.section__heading {
  margin: 0 auto clamp(34px, 5vw, 62px);
  max-width: 1060px;
}

.section__heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.22rem);
  line-height: 1.65;
  margin-top: 18px;
  max-width: 720px;
}

.section__heading--light h2,
.section__heading--light p {
  color: white;
}

.section__heading--light p:not(.eyebrow) {
  color: rgba(255, 250, 244, 0.82);
}

.results,
.differentials,
.testimonials {
  background: var(--white);
}

.result-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1240px;
}

.result-card,
.testimonial {
  background: #fff;
  border: 1px solid rgba(15, 79, 55, 0.1);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(15, 79, 55, 0.08);
  overflow: hidden;
}

.result-card > div:last-child {
  padding: 20px;
}

.result-card h3 {
  color: var(--green-deep);
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.result-card p {
  color: var(--muted);
  line-height: 1.52;
}

.before-after {
  aspect-ratio: 1 / 1;
  background: #d6d0c7;
  overflow: hidden;
  position: relative;
}

.before-after img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.center-cta {
  margin-top: 34px;
  text-align: center;
}

.process {
  background:
    linear-gradient(180deg, rgba(15, 79, 55, 0.96), rgba(15, 79, 55, 1)),
    var(--green-deep);
}

.timeline {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  list-style: none;
  margin: 0 auto;
  max-width: 1220px;
  padding: 0;
}

.timeline li {
  background: rgba(255, 250, 244, 0.1);
  border: 1px solid rgba(255, 250, 244, 0.16);
  border-radius: 8px;
  color: white;
  min-height: 190px;
  padding: 22px;
  transform: translateY(var(--step-offset));
}

.timeline span {
  color: var(--coral);
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-size: 2.2rem;
  font-weight: 750;
  line-height: 1;
  margin-bottom: 32px;
}

.timeline p {
  line-height: 1.45;
}

.feature-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1120px;
}

.feature {
  align-items: center;
  background: var(--cream);
  border: 1px solid rgba(15, 79, 55, 0.09);
  border-radius: 8px;
  display: flex;
  gap: 14px;
  min-height: 96px;
  padding: 20px;
}

.feature span {
  align-items: center;
  background: var(--green-leaf);
  border-radius: 999px;
  color: white;
  display: flex;
  flex: 0 0 34px;
  font-weight: 900;
  height: 34px;
  justify-content: center;
}

.feature h3 {
  color: var(--green-deep);
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.25;
}

.combos {
  align-items: center;
  background: var(--sand);
  display: grid;
  gap: clamp(30px, 5vw, 72px);
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
}

.combo-copy p:not(.eyebrow) {
  color: #52675e;
  font-size: 1.14rem;
  line-height: 1.65;
  margin: 20px 0 30px;
  max-width: 620px;
}

.combo-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.combo-list span {
  background: var(--white);
  border: 1px solid rgba(15, 79, 55, 0.1);
  border-radius: 999px;
  color: var(--green-deep);
  font-weight: 800;
  padding: 13px 17px;
}

.testimonial-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1160px;
}

.testimonial {
  padding: 24px;
}

.stars {
  color: var(--coral);
  font-size: 1rem;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

.testimonial blockquote {
  color: var(--ink);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.18rem, 1.6vw, 1.42rem);
  line-height: 1.32;
  margin: 0 0 24px;
}

.testimonial p {
  display: grid;
  gap: 4px;
}

.testimonial strong {
  color: var(--green-deep);
}

.testimonial span {
  color: var(--muted);
  font-size: 0.92rem;
}

.final-cta {
  align-items: center;
  background:
    radial-gradient(circle at 85% 20%, rgba(242, 113, 110, 0.22), transparent 26%),
    var(--green-deep);
  color: white;
  display: grid;
  gap: 26px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: clamp(54px, 8vw, 96px) clamp(22px, 6vw, 86px);
}

.final-cta h2 {
  color: white;
}

.final-cta p:not(.eyebrow) {
  color: rgba(255, 250, 244, 0.82);
  font-size: 1.14rem;
  line-height: 1.6;
  margin-top: 18px;
  max-width: 720px;
}

.mobile-whatsapp {
  background: var(--coral);
  border-radius: 8px;
  bottom: 14px;
  box-shadow: 0 15px 32px rgba(15, 79, 55, 0.25);
  color: white;
  display: none;
  font-weight: 900;
  left: 14px;
  min-height: 52px;
  padding: 15px 18px;
  position: fixed;
  right: 14px;
  text-align: center;
  z-index: 20;
}

@media (max-width: 1040px) {
  .hero,
  .combos,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero::before {
    width: 105vw;
  }

  .hero__visual {
    aspect-ratio: 16 / 10;
    grid-column: auto;
    grid-row: auto;
  }

  .result-grid,
  .feature-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .timeline li {
    min-height: 0;
    transform: none;
  }

  .timeline span {
    margin-bottom: 18px;
  }
}

@media (max-width: 700px) {
  .hero,
  .section,
  .final-cta {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero {
    background: var(--cream);
    padding-top: 30px;
  }

  .hero__actions,
  .button {
    width: 100%;
  }

  .hero__actions span {
    display: none;
  }

  .trust-row {
    background: rgba(255, 250, 244, 0.72);
    border: 1px solid rgba(15, 79, 55, 0.1);
    border-left: 0;
    border-radius: 8px;
    margin-top: 30px;
    padding: 16px;
  }

  .hero-note--mobile {
    display: block;
  }

  .result-grid,
  .feature-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

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

  .combo-list span {
    flex: 1 1 calc(50% - 12px);
    text-align: center;
  }

  .final-cta {
    padding-bottom: 96px;
  }

  .mobile-whatsapp {
    display: block;
  }
}
